diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 3773562e54..4cadf33ac4 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -17,6 +17,7 @@ - [Drago96](https://github.com/drago-96) - [ViXXoR](https://github.com/ViXXoR) - [nkmerrill] (https://github.com/nkmerrill) + - [TtheCreator] (https://github.com/Tthecreator) # Emby Contributors diff --git a/src/addplugin.html b/src/addplugin.html index c8b1d4ecff..efdfbcc3d3 100644 --- a/src/addplugin.html +++ b/src/addplugin.html @@ -1,4 +1,4 @@ -
+
diff --git a/src/appservices.html b/src/appservices.html index c473911ffa..43f37a0980 100644 --- a/src/appservices.html +++ b/src/appservices.html @@ -1,4 +1,4 @@ -
+
diff --git a/src/bower_components/emby-apiclient/cameraroll.js b/src/bower_components/emby-apiclient/cameraroll.js deleted file mode 100644 index fddd1a1850..0000000000 --- a/src/bower_components/emby-apiclient/cameraroll.js +++ /dev/null @@ -1,8 +0,0 @@ -define([], function() { - "use strict"; - - function CameraRoll() {} - return CameraRoll.prototype.getFiles = function() { - return Promise.resolve([]) - }, new CameraRoll -}); \ No newline at end of file diff --git a/src/bower_components/emby-apiclient/sync/contentuploader.js b/src/bower_components/emby-apiclient/sync/contentuploader.js deleted file mode 100644 index e08dbe4dd2..0000000000 --- a/src/bower_components/emby-apiclient/sync/contentuploader.js +++ /dev/null @@ -1,57 +0,0 @@ -define(["localassetmanager", "cameraRoll"], function(localAssetManager, cameraRoll) { - "use strict"; - - function getFilesToUpload(files, uploadHistory) { - return files.filter(function(file) { - if (!file) return !1; - var uploadId = getUploadId(file); - return 0 === uploadHistory.FilesUploaded.filter(function(u) { - return uploadId === u.Id - }).length - }) - } - - function getUploadId(file) { - return btoa(file.Id + "1") - } - - function uploadNext(files, index, server, apiClient, resolve, reject) { - var length = files.length; - if (index >= length) return void resolve(); - uploadFile(files[index], apiClient).then(function() { - uploadNext(files, index + 1, server, apiClient, resolve, reject) - }, function() { - uploadNext(files, index + 1, server, apiClient, resolve, reject) - }) - } - - function uploadFile(file, apiClient) { - return new Promise(function(resolve, reject) { - require(["fileupload"], function(FileUpload) { - var url = apiClient.getUrl("Devices/CameraUploads", { - DeviceId: apiClient.deviceId(), - Name: file.Name, - Album: "Camera Roll", - Id: getUploadId(file), - api_key: apiClient.accessToken() - }); - console.log("Uploading file to " + url), (new FileUpload).upload(file, url).then(resolve, reject) - }) - }) - } - - function ContentUploader() {} - return ContentUploader.prototype.uploadImages = function(connectionManager, server) { - return cameraRoll.getFiles().then(function(photos) { - if (!photos.length) return Promise.resolve(); - var apiClient = connectionManager.getApiClient(server.Id); - return apiClient.getContentUploadHistory().then(function(uploadHistory) { - return photos = getFilesToUpload(photos, uploadHistory), console.log("Found " + photos.length + " files to upload"), new Promise(function(resolve, reject) { - uploadNext(photos, 0, server, apiClient, resolve, reject) - }) - }, function() { - return Promise.resolve() - }) - }) - }, ContentUploader -}); \ No newline at end of file diff --git a/src/bower_components/emby-apiclient/sync/serversync.js b/src/bower_components/emby-apiclient/sync/serversync.js index 4299091c27..34a1b11e8e 100644 --- a/src/bower_components/emby-apiclient/sync/serversync.js +++ b/src/bower_components/emby-apiclient/sync/serversync.js @@ -12,11 +12,7 @@ define([], function() { } function uploadContent(connectionManager, server, options) { - return new Promise(function(resolve, reject) { - require(["contentuploader"], function(ContentUploader) { - (new ContentUploader).uploadImages(connectionManager, server).then(resolve, reject) - }) - }) + return new Promise().reject(); } function syncMedia(connectionManager, server, options) { diff --git a/src/bower_components/emby-webcomponents/actionsheet/actionsheet.js b/src/bower_components/emby-webcomponents/actionsheet/actionsheet.js index 067d427aef..87ee6e35fa 100644 --- a/src/bower_components/emby-webcomponents/actionsheet/actionsheet.js +++ b/src/bower_components/emby-webcomponents/actionsheet/actionsheet.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'layoutManager', 'globalize', 'browser', 'dom', 'emby-button', 'css!./actionsheet', 'material-icons', 'scrollStyles', 'listViewStyle'], function (dialogHelper, layoutManager, globalize, browser, dom) { +define(['dialogHelper', 'layoutManager', 'globalize', 'browser', 'dom', 'emby-button', 'css!./actionsheet', 'material-icons', 'scrollStyles', 'listViewStyle'], function (dialogHelper, layoutManager, globalize, browser, dom) { 'use strict'; function getOffsets(elems) { diff --git a/src/bower_components/emby-webcomponents/alphanumericshortcuts/alphanumericshortcuts.js b/src/bower_components/emby-webcomponents/alphanumericshortcuts/alphanumericshortcuts.js index 8517d1c3df..03d0118cbe 100644 --- a/src/bower_components/emby-webcomponents/alphanumericshortcuts/alphanumericshortcuts.js +++ b/src/bower_components/emby-webcomponents/alphanumericshortcuts/alphanumericshortcuts.js @@ -1,4 +1,4 @@ -define(['dom', 'focusManager'], function (dom, focusManager) { +define(['dom', 'focusManager'], function (dom, focusManager) { 'use strict'; var inputDisplayElement; diff --git a/src/bower_components/emby-webcomponents/appfooter/appfooter.css b/src/bower_components/emby-webcomponents/appfooter/appfooter.css index 320d34a4a9..789bc1db20 100644 --- a/src/bower_components/emby-webcomponents/appfooter/appfooter.css +++ b/src/bower_components/emby-webcomponents/appfooter/appfooter.css @@ -1,4 +1,4 @@ -.appfooter { +.appfooter { position: fixed; left: 0; right: 0; diff --git a/src/bower_components/emby-webcomponents/appfooter/appfooter.js b/src/bower_components/emby-webcomponents/appfooter/appfooter.js index 3f69efc573..4387ca8b77 100644 --- a/src/bower_components/emby-webcomponents/appfooter/appfooter.js +++ b/src/bower_components/emby-webcomponents/appfooter/appfooter.js @@ -1,4 +1,4 @@ -define(['browser', 'css!./appfooter'], function (browser) { +define(['browser', 'css!./appfooter'], function (browser) { 'use strict'; function render(options) { diff --git a/src/bower_components/emby-webcomponents/backdrop/backdrop.js b/src/bower_components/emby-webcomponents/backdrop/backdrop.js index 12a077c68c..2187daac85 100644 --- a/src/bower_components/emby-webcomponents/backdrop/backdrop.js +++ b/src/bower_components/emby-webcomponents/backdrop/backdrop.js @@ -1,4 +1,4 @@ -define(['browser', 'connectionManager', 'playbackManager', 'dom', 'css!./style'], function (browser, connectionManager, playbackManager, dom) { +define(['browser', 'connectionManager', 'playbackManager', 'dom', 'css!./style'], function (browser, connectionManager, playbackManager, dom) { 'use strict'; function enableAnimation(elem) { diff --git a/src/bower_components/emby-webcomponents/browser.js b/src/bower_components/emby-webcomponents/browser.js index cace0cb891..6329bbbd13 100644 --- a/src/bower_components/emby-webcomponents/browser.js +++ b/src/bower_components/emby-webcomponents/browser.js @@ -1,4 +1,4 @@ -define([], function () { +define([], function () { 'use strict'; function isTv() { diff --git a/src/bower_components/emby-webcomponents/chromecast/chromecasthelpers.js b/src/bower_components/emby-webcomponents/chromecast/chromecasthelpers.js index 4950f6540e..c86233207d 100644 --- a/src/bower_components/emby-webcomponents/chromecast/chromecasthelpers.js +++ b/src/bower_components/emby-webcomponents/chromecast/chromecasthelpers.js @@ -1,4 +1,4 @@ -define(['events'], function (events) { +define(['events'], function (events) { 'use strict'; // LinkParser diff --git a/src/bower_components/emby-webcomponents/chromecast/chromecastplayer.js b/src/bower_components/emby-webcomponents/chromecast/chromecastplayer.js index 4f8b4cf952..d276bb4de2 100644 --- a/src/bower_components/emby-webcomponents/chromecast/chromecastplayer.js +++ b/src/bower_components/emby-webcomponents/chromecast/chromecastplayer.js @@ -1,4 +1,4 @@ -define(['appSettings', 'userSettings', 'playbackManager', 'connectionManager', 'globalize', 'events', 'require', 'castSenderApiLoader'], function (appSettings, userSettings, playbackManager, connectionManager, globalize, events, require, castSenderApiLoader) { +define(['appSettings', 'userSettings', 'playbackManager', 'connectionManager', 'globalize', 'events', 'require', 'castSenderApiLoader'], function (appSettings, userSettings, playbackManager, connectionManager, globalize, events, require, castSenderApiLoader) { 'use strict'; // Based on https://github.com/googlecast/CastVideos-chrome/blob/master/CastVideos.js diff --git a/src/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js b/src/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js index 8e526fa114..e2381e6914 100644 --- a/src/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js +++ b/src/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'loading', 'apphost', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'emby-checkbox', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (dialogHelper, loading, appHost, layoutManager, connectionManager, appRouter, globalize) { +define(['dialogHelper', 'loading', 'apphost', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'emby-checkbox', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (dialogHelper, loading, appHost, layoutManager, connectionManager, appRouter, globalize) { 'use strict'; var currentServerId; diff --git a/src/bower_components/emby-webcomponents/datetime.js b/src/bower_components/emby-webcomponents/datetime.js index 15d0c64865..a7ee1d946a 100644 --- a/src/bower_components/emby-webcomponents/datetime.js +++ b/src/bower_components/emby-webcomponents/datetime.js @@ -1,4 +1,4 @@ -define(['globalize'], function (globalize) { +define(['globalize'], function (globalize) { 'use strict'; function parseISO8601Date(s, toLocal) { diff --git a/src/bower_components/emby-webcomponents/dialog/dialog.template.html b/src/bower_components/emby-webcomponents/dialog/dialog.template.html index cc1843fde4..eae210d14e 100644 --- a/src/bower_components/emby-webcomponents/dialog/dialog.template.html +++ b/src/bower_components/emby-webcomponents/dialog/dialog.template.html @@ -1,4 +1,4 @@ -
+

diff --git a/src/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js b/src/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js index 48aa006215..36bb23bfd7 100644 --- a/src/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js +++ b/src/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js @@ -1,4 +1,4 @@ -define(['appRouter', 'focusManager', 'browser', 'layoutManager', 'inputManager', 'dom', 'css!./dialoghelper.css', 'scrollStyles'], function (appRouter, focusManager, browser, layoutManager, inputManager, dom) { +define(['appRouter', 'focusManager', 'browser', 'layoutManager', 'inputManager', 'dom', 'css!./dialoghelper.css', 'scrollStyles'], function (appRouter, focusManager, browser, layoutManager, inputManager, dom) { 'use strict'; var globalOnOpenCallback; diff --git a/src/bower_components/emby-webcomponents/displaysettings/displaysettings.template.html b/src/bower_components/emby-webcomponents/displaysettings/displaysettings.template.html index ad82c07edb..987a54b4d7 100644 --- a/src/bower_components/emby-webcomponents/displaysettings/displaysettings.template.html +++ b/src/bower_components/emby-webcomponents/displaysettings/displaysettings.template.html @@ -1,4 +1,4 @@ -
+

${Display} diff --git a/src/bower_components/emby-webcomponents/emby-button/emby-button.js b/src/bower_components/emby-webcomponents/emby-button/emby-button.js index 173d21b9bd..99a6aea925 100644 --- a/src/bower_components/emby-webcomponents/emby-button/emby-button.js +++ b/src/bower_components/emby-webcomponents/emby-button/emby-button.js @@ -1,4 +1,4 @@ -define(['browser', 'dom', 'layoutManager', 'shell', 'appRouter', 'apphost', 'css!./emby-button', 'registerElement'], function (browser, dom, layoutManager, shell, appRouter, appHost) { +define(['browser', 'dom', 'layoutManager', 'shell', 'appRouter', 'apphost', 'css!./emby-button', 'registerElement'], function (browser, dom, layoutManager, shell, appRouter, appHost) { 'use strict'; var EmbyButtonPrototype = Object.create(HTMLButtonElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js b/src/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js index b3b5c5aee3..70304ffc24 100644 --- a/src/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js +++ b/src/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'css!./emby-button', 'registerElement'], function (layoutManager) { +define(['layoutManager', 'css!./emby-button', 'registerElement'], function (layoutManager) { 'use strict'; var EmbyButtonPrototype = Object.create(HTMLButtonElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.js b/src/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.js index 5d350612a4..9afb67bc02 100644 --- a/src/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.js +++ b/src/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.js @@ -1,4 +1,4 @@ -define(['browser', 'dom', 'css!./emby-checkbox', 'registerElement'], function (browser, dom) { +define(['browser', 'dom', 'css!./emby-checkbox', 'registerElement'], function (browser, dom) { 'use strict'; var EmbyCheckboxPrototype = Object.create(HTMLInputElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js b/src/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js index 198278e1d7..09b8c70d8f 100644 --- a/src/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js +++ b/src/bower_components/emby-webcomponents/emby-collapse/emby-collapse.js @@ -1,4 +1,4 @@ -define(['browser', 'css!./emby-collapse', 'registerElement', 'emby-button'], function (browser) { +define(['browser', 'css!./emby-collapse', 'registerElement', 'emby-button'], function (browser) { 'use strict'; var EmbyButtonPrototype = Object.create(HTMLDivElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-input/emby-input.js b/src/bower_components/emby-webcomponents/emby-input/emby-input.js index 9481b89225..acc9154318 100644 --- a/src/bower_components/emby-webcomponents/emby-input/emby-input.js +++ b/src/bower_components/emby-webcomponents/emby-input/emby-input.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'browser', 'dom', 'css!./emby-input', 'registerElement'], function (layoutManager, browser, dom) { +define(['layoutManager', 'browser', 'dom', 'css!./emby-input', 'registerElement'], function (layoutManager, browser, dom) { 'use strict'; var EmbyInputPrototype = Object.create(HTMLInputElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-itemrefreshindicator/emby-itemrefreshindicator.js b/src/bower_components/emby-webcomponents/emby-itemrefreshindicator/emby-itemrefreshindicator.js index 502af23542..be50abeb87 100644 --- a/src/bower_components/emby-webcomponents/emby-itemrefreshindicator/emby-itemrefreshindicator.js +++ b/src/bower_components/emby-webcomponents/emby-itemrefreshindicator/emby-itemrefreshindicator.js @@ -1,4 +1,4 @@ -define(['emby-progressring', 'dom', 'serverNotifications', 'events', 'registerElement'], function (EmbyProgressRing, dom, serverNotifications, events) { +define(['emby-progressring', 'dom', 'serverNotifications', 'events', 'registerElement'], function (EmbyProgressRing, dom, serverNotifications, events) { 'use strict'; function addNotificationEvent(instance, name, handler) { diff --git a/src/bower_components/emby-webcomponents/emby-itemscontainer/emby-itemscontainer.js b/src/bower_components/emby-webcomponents/emby-itemscontainer/emby-itemscontainer.js index cd2cab827b..2b002c70e8 100644 --- a/src/bower_components/emby-webcomponents/emby-itemscontainer/emby-itemscontainer.js +++ b/src/bower_components/emby-webcomponents/emby-itemscontainer/emby-itemscontainer.js @@ -1,4 +1,4 @@ -define(['itemShortcuts', 'inputManager', 'connectionManager', 'playbackManager', 'imageLoader', 'layoutManager', 'browser', 'dom', 'loading', 'focusManager', 'serverNotifications', 'events', 'registerElement'], function (itemShortcuts, inputManager, connectionManager, playbackManager, imageLoader, layoutManager, browser, dom, loading, focusManager, serverNotifications, events) { +define(['itemShortcuts', 'inputManager', 'connectionManager', 'playbackManager', 'imageLoader', 'layoutManager', 'browser', 'dom', 'loading', 'focusManager', 'serverNotifications', 'events', 'registerElement'], function (itemShortcuts, inputManager, connectionManager, playbackManager, imageLoader, layoutManager, browser, dom, loading, focusManager, serverNotifications, events) { 'use strict'; var ItemsContainerProtoType = Object.create(HTMLDivElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.css b/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.css index 11c05ab518..7bef7c35f7 100644 --- a/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.css +++ b/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.css @@ -1,4 +1,4 @@ -.progressring { +.progressring { position: relative; width: 2.6em; height: 2.6em; diff --git a/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.js b/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.js index feb4ddb20d..7148079a19 100644 --- a/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.js +++ b/src/bower_components/emby-webcomponents/emby-progressring/emby-progressring.js @@ -1,4 +1,4 @@ -define(['require', 'css!./emby-progressring', 'registerElement'], function (require) { +define(['require', 'css!./emby-progressring', 'registerElement'], function (require) { 'use strict'; var EmbyProgressRing = Object.create(HTMLDivElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-radio/emby-radio.js b/src/bower_components/emby-webcomponents/emby-radio/emby-radio.js index 6e3b6b9bf4..3c72f91521 100644 --- a/src/bower_components/emby-webcomponents/emby-radio/emby-radio.js +++ b/src/bower_components/emby-webcomponents/emby-radio/emby-radio.js @@ -1,4 +1,4 @@ -define(['css!./emby-radio', 'registerElement'], function () { +define(['css!./emby-radio', 'registerElement'], function () { 'use strict'; var EmbyRadioPrototype = Object.create(HTMLInputElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-scrollbuttons/emby-scrollbuttons.js b/src/bower_components/emby-webcomponents/emby-scrollbuttons/emby-scrollbuttons.js index cd285a8769..c325ad9fd5 100644 --- a/src/bower_components/emby-webcomponents/emby-scrollbuttons/emby-scrollbuttons.js +++ b/src/bower_components/emby-webcomponents/emby-scrollbuttons/emby-scrollbuttons.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'dom', 'css!./emby-scrollbuttons', 'registerElement', 'paper-icon-button-light'], function (layoutManager, dom) { +define(['layoutManager', 'dom', 'css!./emby-scrollbuttons', 'registerElement', 'paper-icon-button-light'], function (layoutManager, dom) { 'use strict'; var EmbyScrollButtonsPrototype = Object.create(HTMLDivElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-scroller/emby-scroller.js b/src/bower_components/emby-webcomponents/emby-scroller/emby-scroller.js index 6237fd99f6..d3718cedf3 100644 --- a/src/bower_components/emby-webcomponents/emby-scroller/emby-scroller.js +++ b/src/bower_components/emby-webcomponents/emby-scroller/emby-scroller.js @@ -1,4 +1,4 @@ -define(['scroller', 'dom', 'layoutManager', 'inputManager', 'focusManager', 'browser', 'registerElement'], function (scroller, dom, layoutManager, inputManager, focusManager, browser) { +define(['scroller', 'dom', 'layoutManager', 'inputManager', 'focusManager', 'browser', 'registerElement'], function (scroller, dom, layoutManager, inputManager, focusManager, browser) { 'use strict'; var ScrollerProtoType = Object.create(HTMLDivElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-select/emby-select.js b/src/bower_components/emby-webcomponents/emby-select/emby-select.js index 6783f2f48c..80e34677f7 100644 --- a/src/bower_components/emby-webcomponents/emby-select/emby-select.js +++ b/src/bower_components/emby-webcomponents/emby-select/emby-select.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'browser', 'actionsheet', 'css!./emby-select', 'registerElement'], function (layoutManager, browser, actionsheet) { +define(['layoutManager', 'browser', 'actionsheet', 'css!./emby-select', 'registerElement'], function (layoutManager, browser, actionsheet) { 'use strict'; var EmbySelectPrototype = Object.create(HTMLSelectElement.prototype); diff --git a/src/bower_components/emby-webcomponents/emby-slider/emby-slider.css b/src/bower_components/emby-webcomponents/emby-slider/emby-slider.css index 9617c6be49..179270e22f 100644 --- a/src/bower_components/emby-webcomponents/emby-slider/emby-slider.css +++ b/src/bower_components/emby-webcomponents/emby-slider/emby-slider.css @@ -10,7 +10,7 @@ _:-ms-input-placeholder { -moz-appearance: none; -ms-appearance: none; appearance: none; - height: .2em; + height: 150%;/*150% is needed, else ie and edge won't display the thumb properly*/ background: transparent; -webkit-user-select: none; -moz-user-select: none; @@ -49,10 +49,12 @@ _:-ms-input-placeholder { .mdl-slider::-moz-range-track { background: #444; border: none; + width: calc(100% - 20px); } .mdl-slider::-moz-range-progress { background: #00a4dc; + width: calc(100% - 20px); } .mdl-slider::-ms-track { @@ -83,7 +85,6 @@ _:-ms-input-placeholder { } .mdl-slider-hoverthumb::-webkit-slider-thumb { - margin-left: -.12em; transform: scale(.7, .7); } @@ -97,13 +98,14 @@ _:-ms-input-placeholder { .mdl-slider::-moz-range-thumb { -moz-appearance: none; - width: 1.8em; - height: 1.8em; + width: 0.9em; + height: 0.9em; box-sizing: border-box; border-radius: 50%; background-image: none; background: #00a4dc; border: none; + transform: Scale(1.4, 1.4); } .mdl-slider::-ms-thumb { @@ -114,6 +116,7 @@ _:-ms-input-placeholder { border-radius: 50%; background: #00a4dc; border: none; + transform: scale(.9, .9); transition: transform 300ms 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); } @@ -154,11 +157,20 @@ _:-ms-input-placeholder { flex-direction: row; } +.mdl-slider-background-flex-container { + padding-left: 10px; + padding-right: 10px; + width: 100%; + box-sizing: border-box; + margin-top: -.05em; + top: 50%; + position: absolute; +} + .mdl-slider-background-flex { background: #333; - position: absolute; height: .2em; - margin-top: -.1em; + margin-top: -.08em; width: 100%; top: 50%; left: 0; diff --git a/src/bower_components/emby-webcomponents/emby-slider/emby-slider.js b/src/bower_components/emby-webcomponents/emby-slider/emby-slider.js index 06fcdcfea1..3daaf8841d 100644 --- a/src/bower_components/emby-webcomponents/emby-slider/emby-slider.js +++ b/src/bower_components/emby-webcomponents/emby-slider/emby-slider.js @@ -1,4 +1,4 @@ -define(['browser', 'dom', 'layoutManager', 'css!./emby-slider', 'registerElement', 'emby-input'], function (browser, dom, layoutManager) { +define(['browser', 'dom', 'layoutManager', 'css!./emby-slider', 'registerElement', 'emby-input'], function (browser, dom, layoutManager) { 'use strict'; var EmbySliderPrototype = Object.create(HTMLInputElement.prototype); @@ -89,6 +89,7 @@ var htmlToInsert = ''; if (!supportsNativeProgressStyle) { + htmlToInsert += '
'; htmlToInsert += '
'; htmlToInsert += '
'; @@ -103,6 +104,7 @@ htmlToInsert += '
'; htmlToInsert += '
'; + htmlToInsert += '
'; } htmlToInsert += '
'; diff --git a/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css b/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css index 49881994bd..3a542ee7e6 100644 --- a/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css +++ b/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css @@ -1,4 +1,4 @@ -.emby-tab-button { +.emby-tab-button { background: transparent; box-shadow: none; cursor: pointer; diff --git a/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js b/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js index 3642facd2a..d88b111060 100644 --- a/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js +++ b/src/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js @@ -1,4 +1,4 @@ -define(['dom', 'scroller', 'browser', 'layoutManager', 'focusManager', 'registerElement', 'css!./emby-tabs', 'scrollStyles'], function (dom, scroller, browser, layoutManager, focusManager) { +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); diff --git a/src/bower_components/emby-webcomponents/emby-textarea/emby-textarea.js b/src/bower_components/emby-webcomponents/emby-textarea/emby-textarea.js index 130d6c3980..7dec1f0955 100644 --- a/src/bower_components/emby-webcomponents/emby-textarea/emby-textarea.js +++ b/src/bower_components/emby-webcomponents/emby-textarea/emby-textarea.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'browser', 'css!./emby-textarea', 'registerElement', 'emby-input'], function (layoutManager, browser) { +define(['layoutManager', 'browser', 'css!./emby-textarea', 'registerElement', 'emby-input'], function (layoutManager, browser) { 'use strict'; function autoGrow(textarea, maxLines) { diff --git a/src/bower_components/emby-webcomponents/emby-toggle/emby-toggle.js b/src/bower_components/emby-webcomponents/emby-toggle/emby-toggle.js index d6d31957b2..08597164b2 100644 --- a/src/bower_components/emby-webcomponents/emby-toggle/emby-toggle.js +++ b/src/bower_components/emby-webcomponents/emby-toggle/emby-toggle.js @@ -1,4 +1,4 @@ -define(['css!./emby-toggle', 'registerElement'], function () { +define(['css!./emby-toggle', 'registerElement'], function () { 'use strict'; var EmbyTogglePrototype = Object.create(HTMLInputElement.prototype); diff --git a/src/bower_components/emby-webcomponents/fetchhelper.js b/src/bower_components/emby-webcomponents/fetchhelper.js index 64bd5159a5..bb7f21e75e 100644 --- a/src/bower_components/emby-webcomponents/fetchhelper.js +++ b/src/bower_components/emby-webcomponents/fetchhelper.js @@ -1,4 +1,4 @@ -define([], function () { +define([], function () { 'use strict'; function getFetchPromise(request) { diff --git a/src/bower_components/emby-webcomponents/filedownloader.js b/src/bower_components/emby-webcomponents/filedownloader.js index ebd004da68..c8e3011be2 100644 --- a/src/bower_components/emby-webcomponents/filedownloader.js +++ b/src/bower_components/emby-webcomponents/filedownloader.js @@ -1,4 +1,4 @@ -define(['multi-download'], function (multiDownload) { +define(['multi-download'], function (multiDownload) { 'use strict'; return { diff --git a/src/bower_components/emby-webcomponents/filtermenu/filtermenu.js b/src/bower_components/emby-webcomponents/filtermenu/filtermenu.js index e405cc0943..4495e07c86 100644 --- a/src/bower_components/emby-webcomponents/filtermenu/filtermenu.js +++ b/src/bower_components/emby-webcomponents/filtermenu/filtermenu.js @@ -1,4 +1,4 @@ -define(['require', 'dom', 'focusManager', 'dialogHelper', 'loading', 'apphost', 'inputManager', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'userSettings', 'emby-checkbox', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (require, dom, focusManager, dialogHelper, loading, appHost, inputManager, layoutManager, connectionManager, appRouter, globalize, userSettings) { +define(['require', 'dom', 'focusManager', 'dialogHelper', 'loading', 'apphost', 'inputManager', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'userSettings', 'emby-checkbox', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (require, dom, focusManager, dialogHelper, loading, appHost, inputManager, layoutManager, connectionManager, appRouter, globalize, userSettings) { 'use strict'; function onSubmit(e) { diff --git a/src/bower_components/emby-webcomponents/globalize.js b/src/bower_components/emby-webcomponents/globalize.js index c36dea1910..206113c761 100644 --- a/src/bower_components/emby-webcomponents/globalize.js +++ b/src/bower_components/emby-webcomponents/globalize.js @@ -6,7 +6,6 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana var currentDateTimeCulture; function getCurrentLocale() { - return currentCulture; } @@ -15,9 +14,7 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } function getDefaultLanguage() { - var culture = document.documentElement.getAttribute('data-culture'); - if (culture) { return culture; } @@ -36,12 +33,11 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } function updateCurrentCulture() { - var culture; try { culture = userSettings.language(); } catch (err) { - + console.log('no language set in user settings'); } culture = culture || getDefaultLanguage(); @@ -51,43 +47,38 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana try { dateTimeCulture = userSettings.dateTimeLocale(); } catch (err) { - + console.log('no date format set in user settings'); } if (dateTimeCulture) { currentDateTimeCulture = normalizeLocaleName(dateTimeCulture); - } - else { + } else { currentDateTimeCulture = currentCulture; } - ensureTranslations(currentCulture); } function ensureTranslations(culture) { - for (var i in allTranslations) { ensureTranslation(allTranslations[i], culture); } } function ensureTranslation(translationInfo, culture) { - if (translationInfo.dictionaries[culture]) { return Promise.resolve(); } return loadTranslation(translationInfo.translations, culture).then(function (dictionary) { - translationInfo.dictionaries[culture] = dictionary; }); } function normalizeLocaleName(culture) { - + // TODO remove normalizations culture = culture.replace('_', '-'); - // If it's de-DE, convert to just de + // convert de-DE to de var parts = culture.split('-'); if (parts.length === 2) { if (parts[0].toLowerCase() === parts[1].toLowerCase()) { @@ -96,7 +87,6 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } var lower = culture.toLowerCase(); - if (lower === 'ca-es') { return 'ca'; } @@ -109,23 +99,20 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana return lower; } - function getDictionary(module) { - + function getDictionary(module, locale) { if (!module) { module = defaultModule(); } var translations = allTranslations[module]; - if (!translations) { return {}; } - return translations.dictionaries[getCurrentLocale()]; + return translations.dictionaries[locale]; } function register(options) { - allTranslations[options.name] = { translations: options.strings || options.translations, dictionaries: {} @@ -133,9 +120,7 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } function loadStrings(options) { - var locale = getCurrentLocale(); - if (typeof options === 'string') { return ensureTranslation(allTranslations[options], locale); } else { @@ -146,9 +131,7 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana var cacheParam = new Date().getTime(); function loadTranslation(translations, lang) { - lang = normalizeLocaleName(lang); - var filtered = translations.filter(function (t) { return normalizeLocaleName(t.lang) === lang; }); @@ -160,7 +143,6 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } return new Promise(function (resolve, reject) { - if (!filtered.length) { resolve(); return; @@ -190,7 +172,6 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } function translateKey(key) { - var parts = key.split('#'); var module; @@ -203,53 +184,43 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana } function translateKeyFromModule(key, module) { - - var dictionary = getDictionary(module); - + var dictionary = getDictionary(module, getCurrentLocale()); + if (!dictionary || !dictionary[key]) { + dictionary = getDictionary(module, 'en-us'); + } if (!dictionary) { return key; } - return dictionary[key] || key; } function replaceAll(str, find, replace) { - return str.split(find).join(replace); } function translate(key) { - var val = translateKey(key); - for (var i = 1; i < arguments.length; i++) { - val = replaceAll(val, '{' + (i - 1) + '}', arguments[i]); - } - return val; } function translateHtml(html, module) { - if (!module) { module = defaultModule(); } - if (!module) { throw new Error('module cannot be null or empty'); } var startIndex = html.indexOf('${'); - if (startIndex === -1) { return html; } startIndex += 2; var endIndex = html.indexOf('}', startIndex); - if (endIndex === -1) { return html; } @@ -263,12 +234,9 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana var _defaultModule; function defaultModule(val) { - if (val) { - _defaultModule = val; } - return _defaultModule; } @@ -292,4 +260,4 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana getCurrentDateTimeLocale: getCurrentDateTimeLocale, register: register }; -}); \ No newline at end of file +}); diff --git a/src/bower_components/emby-webcomponents/guide/guide-settings.js b/src/bower_components/emby-webcomponents/guide/guide-settings.js index e95d750c9a..8de0edba95 100644 --- a/src/bower_components/emby-webcomponents/guide/guide-settings.js +++ b/src/bower_components/emby-webcomponents/guide/guide-settings.js @@ -1,4 +1,4 @@ -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) { +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) { diff --git a/src/bower_components/emby-webcomponents/guide/guide-settings.template.html b/src/bower_components/emby-webcomponents/guide/guide-settings.template.html index d3395992d4..605c408a85 100644 --- a/src/bower_components/emby-webcomponents/guide/guide-settings.template.html +++ b/src/bower_components/emby-webcomponents/guide/guide-settings.template.html @@ -1,4 +1,4 @@ -
+

${Settings} diff --git a/src/bower_components/emby-webcomponents/guide/guide.js b/src/bower_components/emby-webcomponents/guide/guide.js index 0924339ff2..ebbdddc805 100644 --- a/src/bower_components/emby-webcomponents/guide/guide.js +++ b/src/bower_components/emby-webcomponents/guide/guide.js @@ -1,4 +1,4 @@ -define(['require', 'inputManager', 'browser', 'globalize', 'connectionManager', 'scrollHelper', 'serverNotifications', 'loading', 'datetime', 'focusManager', 'playbackManager', 'userSettings', 'imageLoader', 'events', 'layoutManager', 'itemShortcuts', 'dom', 'css!./guide.css', 'programStyles', 'material-icons', 'scrollStyles', 'emby-button', 'paper-icon-button-light', 'emby-tabs', 'emby-scroller', 'flexStyles', 'registerElement'], function (require, inputManager, browser, globalize, connectionManager, scrollHelper, serverNotifications, loading, datetime, focusManager, playbackManager, userSettings, imageLoader, events, layoutManager, itemShortcuts, dom) { +define(['require', 'inputManager', 'browser', 'globalize', 'connectionManager', 'scrollHelper', 'serverNotifications', 'loading', 'datetime', 'focusManager', 'playbackManager', 'userSettings', 'imageLoader', 'events', 'layoutManager', 'itemShortcuts', 'dom', 'css!./guide.css', 'programStyles', 'material-icons', 'scrollStyles', 'emby-button', 'paper-icon-button-light', 'emby-tabs', 'emby-scroller', 'flexStyles', 'registerElement'], function (require, inputManager, browser, globalize, connectionManager, scrollHelper, serverNotifications, loading, datetime, focusManager, playbackManager, userSettings, imageLoader, events, layoutManager, itemShortcuts, dom) { 'use strict'; function showViewSettings(instance) { diff --git a/src/bower_components/emby-webcomponents/guide/tvguide.template.html b/src/bower_components/emby-webcomponents/guide/tvguide.template.html index d6416facf7..c5f76696c5 100644 --- a/src/bower_components/emby-webcomponents/guide/tvguide.template.html +++ b/src/bower_components/emby-webcomponents/guide/tvguide.template.html @@ -1,4 +1,4 @@ -
+
diff --git a/src/bower_components/emby-webcomponents/homescreensettings/homescreensettings.template.html b/src/bower_components/emby-webcomponents/homescreensettings/homescreensettings.template.html index b8c1e6cde6..6295af0dfa 100644 --- a/src/bower_components/emby-webcomponents/homescreensettings/homescreensettings.template.html +++ b/src/bower_components/emby-webcomponents/homescreensettings/homescreensettings.template.html @@ -1,4 +1,4 @@ - +
diff --git a/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.js b/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.js index 3962ccf239..ce1e06faa4 100644 --- a/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.js +++ b/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'layoutManager', 'globalize', 'require', 'events', 'homescreenSettings', 'paper-icon-button-light', 'css!./../formdialog'], function (dialogHelper, layoutManager, globalize, require, events, HomescreenSettings) { +define(['dialogHelper', 'layoutManager', 'globalize', 'require', 'events', 'homescreenSettings', 'paper-icon-button-light', 'css!./../formdialog'], function (dialogHelper, layoutManager, globalize, require, events, HomescreenSettings) { 'use strict'; function centerFocus(elem, horiz, on) { diff --git a/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.template.html b/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.template.html index ccb383b1e4..d707fcdfb4 100644 --- a/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.template.html +++ b/src/bower_components/emby-webcomponents/homescreensettings/homescreensettingsdialog.template.html @@ -1,4 +1,4 @@ -
+

${HeaderDisplaySettings} diff --git a/src/bower_components/emby-webcomponents/homesections/homesections.css b/src/bower_components/emby-webcomponents/homesections/homesections.css index 7bb561ee01..647a9500d4 100644 --- a/src/bower_components/emby-webcomponents/homesections/homesections.css +++ b/src/bower_components/emby-webcomponents/homesections/homesections.css @@ -1,4 +1,4 @@ -.homeLibraryButton { +.homeLibraryButton { min-width: 18%; margin: .5em !important; } diff --git a/src/bower_components/emby-webcomponents/homesections/homesections.js b/src/bower_components/emby-webcomponents/homesections/homesections.js index a92fa975ed..4807fd5151 100644 --- a/src/bower_components/emby-webcomponents/homesections/homesections.js +++ b/src/bower_components/emby-webcomponents/homesections/homesections.js @@ -1,4 +1,4 @@ -define(['connectionManager', 'cardBuilder', 'registrationServices', 'appSettings', 'dom', 'apphost', 'layoutManager', 'imageLoader', 'globalize', 'itemShortcuts', 'itemHelper', 'appRouter', 'emby-button', 'paper-icon-button-light', 'emby-itemscontainer', 'emby-scroller', 'emby-linkbutton', 'css!./homesections'], function (connectionManager, cardBuilder, registrationServices, appSettings, dom, appHost, layoutManager, imageLoader, globalize, itemShortcuts, itemHelper, appRouter) { +define(['connectionManager', 'cardBuilder', 'registrationServices', 'appSettings', 'dom', 'apphost', 'layoutManager', 'imageLoader', 'globalize', 'itemShortcuts', 'itemHelper', 'appRouter', 'emby-button', 'paper-icon-button-light', 'emby-itemscontainer', 'emby-scroller', 'emby-linkbutton', 'css!./homesections'], function (connectionManager, cardBuilder, registrationServices, appSettings, dom, appHost, layoutManager, imageLoader, globalize, itemShortcuts, itemHelper, appRouter) { 'use strict'; function getDefaultSection(index) { diff --git a/src/bower_components/emby-webcomponents/htmlvideoplayer/plugin.js b/src/bower_components/emby-webcomponents/htmlvideoplayer/plugin.js index 16381d4462..10d32bc9bd 100644 --- a/src/bower_components/emby-webcomponents/htmlvideoplayer/plugin.js +++ b/src/bower_components/emby-webcomponents/htmlvideoplayer/plugin.js @@ -1,4 +1,4 @@ -define(['browser', 'require', 'events', 'apphost', 'loading', 'dom', 'playbackManager', 'appRouter', 'appSettings', 'connectionManager', 'htmlMediaHelper', 'itemHelper'], function (browser, require, events, appHost, loading, dom, playbackManager, appRouter, appSettings, connectionManager, htmlMediaHelper, itemHelper) { +define(['browser', 'require', 'events', 'apphost', 'loading', 'dom', 'playbackManager', 'appRouter', 'appSettings', 'connectionManager', 'htmlMediaHelper', 'itemHelper'], function (browser, require, events, appHost, loading, dom, playbackManager, appRouter, appSettings, connectionManager, htmlMediaHelper, itemHelper) { "use strict"; var mediaManager; diff --git a/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.js b/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.js index d6df237273..56636ef19c 100644 --- a/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.js +++ b/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.js @@ -1,4 +1,4 @@ -define(['loading', 'apphost', 'dialogHelper', 'connectionManager', 'imageLoader', 'browser', 'layoutManager', 'scrollHelper', 'globalize', 'require', 'emby-checkbox', 'emby-button', 'paper-icon-button-light', 'emby-linkbutton', 'formDialogStyle', 'cardStyle'], function (loading, appHost, dialogHelper, connectionManager, imageLoader, browser, layoutManager, scrollHelper, globalize, require) { +define(['loading', 'apphost', 'dialogHelper', 'connectionManager', 'imageLoader', 'browser', 'layoutManager', 'scrollHelper', 'globalize', 'require', 'emby-checkbox', 'emby-button', 'paper-icon-button-light', 'emby-linkbutton', 'formDialogStyle', 'cardStyle'], function (loading, appHost, dialogHelper, connectionManager, imageLoader, browser, layoutManager, scrollHelper, globalize, require) { 'use strict'; var currentItemId; diff --git a/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.template.html b/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.template.html index 3d3ae67144..831e882ed9 100644 --- a/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.template.html +++ b/src/bower_components/emby-webcomponents/imagedownloader/imagedownloader.template.html @@ -1,4 +1,4 @@ -
+

${Search} diff --git a/src/bower_components/emby-webcomponents/imageeditor/imageeditor.css b/src/bower_components/emby-webcomponents/imageeditor/imageeditor.css index 724b9ffb0f..d45400cac9 100644 --- a/src/bower_components/emby-webcomponents/imageeditor/imageeditor.css +++ b/src/bower_components/emby-webcomponents/imageeditor/imageeditor.css @@ -1,4 +1,4 @@ -.imageEditor-buttons { +.imageEditor-buttons { display: flex; align-items: center; margin: 1em 0 1em; diff --git a/src/bower_components/emby-webcomponents/imageeditor/imageeditor.js b/src/bower_components/emby-webcomponents/imageeditor/imageeditor.js index 339e7a0f32..45124cf3a1 100644 --- a/src/bower_components/emby-webcomponents/imageeditor/imageeditor.js +++ b/src/bower_components/emby-webcomponents/imageeditor/imageeditor.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'connectionManager', 'loading', 'dom', 'layoutManager', 'focusManager', 'globalize', 'scrollHelper', 'imageLoader', 'require', 'browser', 'apphost', 'cardStyle', 'formDialogStyle', 'emby-button', 'paper-icon-button-light', 'css!./imageeditor'], function (dialogHelper, connectionManager, loading, dom, layoutManager, focusManager, globalize, scrollHelper, imageLoader, require, browser, appHost) { +define(['dialogHelper', 'connectionManager', 'loading', 'dom', 'layoutManager', 'focusManager', 'globalize', 'scrollHelper', 'imageLoader', 'require', 'browser', 'apphost', 'cardStyle', 'formDialogStyle', 'emby-button', 'paper-icon-button-light', 'css!./imageeditor'], function (dialogHelper, connectionManager, loading, dom, layoutManager, focusManager, globalize, scrollHelper, imageLoader, require, browser, appHost) { 'use strict'; var currentItem; diff --git a/src/bower_components/emby-webcomponents/imageeditor/imageeditor.template.html b/src/bower_components/emby-webcomponents/imageeditor/imageeditor.template.html index 0c9ba9b5d1..e25dc8789b 100644 --- a/src/bower_components/emby-webcomponents/imageeditor/imageeditor.template.html +++ b/src/bower_components/emby-webcomponents/imageeditor/imageeditor.template.html @@ -1,4 +1,4 @@ -
+

${HeaderEditImages} diff --git a/src/bower_components/emby-webcomponents/imageuploader/imageuploader.js b/src/bower_components/emby-webcomponents/imageuploader/imageuploader.js index eb68505118..d679530a82 100644 --- a/src/bower_components/emby-webcomponents/imageuploader/imageuploader.js +++ b/src/bower_components/emby-webcomponents/imageuploader/imageuploader.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'connectionManager', 'dom', 'loading', 'scrollHelper', 'layoutManager', 'globalize', 'require', 'emby-button', 'emby-select', 'formDialogStyle', 'css!./style'], function (dialogHelper, connectionManager, dom, loading, scrollHelper, layoutManager, globalize, require) { +define(['dialogHelper', 'connectionManager', 'dom', 'loading', 'scrollHelper', 'layoutManager', 'globalize', 'require', 'emby-button', 'emby-select', 'formDialogStyle', 'css!./style'], function (dialogHelper, connectionManager, dom, loading, scrollHelper, layoutManager, globalize, require) { 'use strict'; var currentItemId; diff --git a/src/bower_components/emby-webcomponents/imageuploader/imageuploader.template.html b/src/bower_components/emby-webcomponents/imageuploader/imageuploader.template.html index 19edc80cc2..f01dd90433 100644 --- a/src/bower_components/emby-webcomponents/imageuploader/imageuploader.template.html +++ b/src/bower_components/emby-webcomponents/imageuploader/imageuploader.template.html @@ -1,4 +1,4 @@ -
+

${HeaderUploadImage} diff --git a/src/bower_components/emby-webcomponents/imageuploader/style.css b/src/bower_components/emby-webcomponents/imageuploader/style.css index e259b4b7dc..bd86d8bff3 100644 --- a/src/bower_components/emby-webcomponents/imageuploader/style.css +++ b/src/bower_components/emby-webcomponents/imageuploader/style.css @@ -1,4 +1,4 @@ -.imageEditor-dropZone { +.imageEditor-dropZone { border: .2em dashed currentcolor; border-radius: .25em; /* padding: 1.6em; */ diff --git a/src/bower_components/emby-webcomponents/input/gamepadtokey.js b/src/bower_components/emby-webcomponents/input/gamepadtokey.js index e8667bef27..5dafb2828b 100644 --- a/src/bower_components/emby-webcomponents/input/gamepadtokey.js +++ b/src/bower_components/emby-webcomponents/input/gamepadtokey.js @@ -1,4 +1,4 @@ -// # The MIT License (MIT) +// # The MIT License (MIT) // # // # Copyright (c) 2016 Microsoft. All rights reserved. // # diff --git a/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.js b/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.js index 0107ca4097..78a7a9a1fe 100644 --- a/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.js +++ b/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'loading', 'connectionManager', 'require', 'globalize', 'scrollHelper', 'layoutManager', 'focusManager', 'browser', 'emby-input', 'emby-checkbox', 'paper-icon-button-light', 'css!./../formdialog', 'material-icons', 'cardStyle'], function (dialogHelper, loading, connectionManager, require, globalize, scrollHelper, layoutManager, focusManager, browser) { +define(['dialogHelper', 'loading', 'connectionManager', 'require', 'globalize', 'scrollHelper', 'layoutManager', 'focusManager', 'browser', 'emby-input', 'emby-checkbox', 'paper-icon-button-light', 'css!./../formdialog', 'material-icons', 'cardStyle'], function (dialogHelper, loading, connectionManager, require, globalize, scrollHelper, layoutManager, focusManager, browser) { 'use strict'; var currentItem; diff --git a/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.template.html b/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.template.html index d5a7f7585b..e9ba163a02 100644 --- a/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.template.html +++ b/src/bower_components/emby-webcomponents/itemidentifier/itemidentifier.template.html @@ -1,4 +1,4 @@ -
+

${Identify} diff --git a/src/bower_components/emby-webcomponents/itemsrefresher.js b/src/bower_components/emby-webcomponents/itemsrefresher.js index 3bdd61236d..d9bef95b4b 100644 --- a/src/bower_components/emby-webcomponents/itemsrefresher.js +++ b/src/bower_components/emby-webcomponents/itemsrefresher.js @@ -1,4 +1,4 @@ -define(['playbackManager', 'serverNotifications', 'events'], function (playbackManager, serverNotifications, events) { +define(['playbackManager', 'serverNotifications', 'events'], function (playbackManager, serverNotifications, events) { 'use strict'; function onUserDataChanged(e, apiClient, userData) { diff --git a/src/bower_components/emby-webcomponents/loadingdialog/loadingdialog.js b/src/bower_components/emby-webcomponents/loadingdialog/loadingdialog.js index 5f176399db..2c4d5d345f 100644 --- a/src/bower_components/emby-webcomponents/loadingdialog/loadingdialog.js +++ b/src/bower_components/emby-webcomponents/loadingdialog/loadingdialog.js @@ -1,4 +1,4 @@ -define(['loading', 'events', 'dialogHelper', 'dom', 'layoutManager', 'scrollHelper', 'globalize', 'require', 'material-icons', 'emby-button', 'paper-icon-button-light', 'emby-input', 'formDialogStyle', 'flexStyles'], function (loading, events, dialogHelper, dom, layoutManager, scrollHelper, globalize, require) { +define(['loading', 'events', 'dialogHelper', 'dom', 'layoutManager', 'scrollHelper', 'globalize', 'require', 'material-icons', 'emby-button', 'paper-icon-button-light', 'emby-input', 'formDialogStyle', 'flexStyles'], function (loading, events, dialogHelper, dom, layoutManager, scrollHelper, globalize, require) { 'use strict'; function showDialog(instance, options, template) { diff --git a/src/bower_components/emby-webcomponents/maintabsmanager.js b/src/bower_components/emby-webcomponents/maintabsmanager.js index 07f575c11c..b8da631df9 100644 --- a/src/bower_components/emby-webcomponents/maintabsmanager.js +++ b/src/bower_components/emby-webcomponents/maintabsmanager.js @@ -1,4 +1,4 @@ -define(['dom', 'browser', 'events', 'emby-tabs', 'emby-button', 'emby-linkbutton'], function (dom, browser, events) { +define(['dom', 'browser', 'events', 'emby-tabs', 'emby-button', 'emby-linkbutton'], function (dom, browser, events) { 'use strict'; var tabOwnerView; diff --git a/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.js b/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.js index 5ba7689ceb..d08796dcf7 100644 --- a/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.js +++ b/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.js @@ -1,4 +1,4 @@ -define(['itemHelper', 'dom', 'layoutManager', 'dialogHelper', 'datetime', 'loading', 'focusManager', 'connectionManager', 'globalize', 'require', 'shell', 'emby-checkbox', 'emby-input', 'emby-select', 'listViewStyle', 'emby-textarea', 'emby-button', 'paper-icon-button-light', 'css!./../formdialog', 'clearButtonStyle', 'flexStyles'], function (itemHelper, dom, layoutManager, dialogHelper, datetime, loading, focusManager, connectionManager, globalize, require, shell) { +define(['itemHelper', 'dom', 'layoutManager', 'dialogHelper', 'datetime', 'loading', 'focusManager', 'connectionManager', 'globalize', 'require', 'shell', 'emby-checkbox', 'emby-input', 'emby-select', 'listViewStyle', 'emby-textarea', 'emby-button', 'paper-icon-button-light', 'css!./../formdialog', 'clearButtonStyle', 'flexStyles'], function (itemHelper, dom, layoutManager, dialogHelper, datetime, loading, focusManager, connectionManager, globalize, require, shell) { 'use strict'; var currentContext; diff --git a/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.template.html b/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.template.html index ed1bb2100e..bb6e0bbcbd 100644 --- a/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.template.html +++ b/src/bower_components/emby-webcomponents/metadataeditor/metadataeditor.template.html @@ -1,4 +1,4 @@ -
+

${Edit} diff --git a/src/bower_components/emby-webcomponents/metadataeditor/personeditor.js b/src/bower_components/emby-webcomponents/metadataeditor/personeditor.js index 7cfee43005..838abc379b 100644 --- a/src/bower_components/emby-webcomponents/metadataeditor/personeditor.js +++ b/src/bower_components/emby-webcomponents/metadataeditor/personeditor.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'layoutManager', 'globalize', 'require', 'paper-icon-button-light', 'emby-input', 'emby-select', 'css!./../formdialog'], function (dialogHelper, layoutManager, globalize, require) { +define(['dialogHelper', 'layoutManager', 'globalize', 'require', 'paper-icon-button-light', 'emby-input', 'emby-select', 'css!./../formdialog'], function (dialogHelper, layoutManager, globalize, require) { 'use strict'; function centerFocus(elem, horiz, on) { diff --git a/src/bower_components/emby-webcomponents/metadataeditor/personeditor.template.html b/src/bower_components/emby-webcomponents/metadataeditor/personeditor.template.html index 6c5c8e0d8d..6a808db1f4 100644 --- a/src/bower_components/emby-webcomponents/metadataeditor/personeditor.template.html +++ b/src/bower_components/emby-webcomponents/metadataeditor/personeditor.template.html @@ -1,4 +1,4 @@ -
+

${Edit} diff --git a/src/bower_components/emby-webcomponents/multiselect/multiselect.css b/src/bower_components/emby-webcomponents/multiselect/multiselect.css index 2026f8aa8b..9c2a58cd20 100644 --- a/src/bower_components/emby-webcomponents/multiselect/multiselect.css +++ b/src/bower_components/emby-webcomponents/multiselect/multiselect.css @@ -1,4 +1,4 @@ -.itemSelectionPanel { +.itemSelectionPanel { position: absolute; bottom: 0; left: 0; diff --git a/src/bower_components/emby-webcomponents/multiselect/multiselect.js b/src/bower_components/emby-webcomponents/multiselect/multiselect.js index e720a005ae..764247c50c 100644 --- a/src/bower_components/emby-webcomponents/multiselect/multiselect.js +++ b/src/bower_components/emby-webcomponents/multiselect/multiselect.js @@ -1,4 +1,4 @@ -define(['browser', 'appStorage', 'apphost', 'loading', 'connectionManager', 'globalize', 'appRouter', 'dom', 'css!./multiselect'], function (browser, appStorage, appHost, loading, connectionManager, globalize, appRouter, dom) { +define(['browser', 'appStorage', 'apphost', 'loading', 'connectionManager', 'globalize', 'appRouter', 'dom', 'css!./multiselect'], function (browser, appStorage, appHost, loading, connectionManager, globalize, appRouter, dom) { 'use strict'; var selectedItems = []; diff --git a/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.css b/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.css index 1a6972e049..1392541e16 100644 --- a/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.css +++ b/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.css @@ -1,4 +1,4 @@ -.nowPlayingBarInfoContainer { +.nowPlayingBarInfoContainer { display: flex; align-items: center; height: 100%; diff --git a/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.js b/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.js index 3d55a342e5..8ac00f13d7 100644 --- a/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.js +++ b/src/bower_components/emby-webcomponents/nowplayingbar/nowplayingbar.js @@ -1,4 +1,4 @@ -define(['require', 'datetime', 'itemHelper', 'events', 'browser', 'imageLoader', 'layoutManager', 'playbackManager', 'nowPlayingHelper', 'apphost', 'dom', 'connectionManager', 'paper-icon-button-light', 'emby-ratingbutton'], function (require, datetime, itemHelper, events, browser, imageLoader, layoutManager, playbackManager, nowPlayingHelper, appHost, dom, connectionManager) { +define(['require', 'datetime', 'itemHelper', 'events', 'browser', 'imageLoader', 'layoutManager', 'playbackManager', 'nowPlayingHelper', 'apphost', 'dom', 'connectionManager', 'paper-icon-button-light', 'emby-ratingbutton'], function (require, datetime, itemHelper, events, browser, imageLoader, layoutManager, playbackManager, nowPlayingHelper, appHost, dom, connectionManager) { 'use strict'; var currentPlayer; diff --git a/src/bower_components/emby-webcomponents/playback/brightnessosd.js b/src/bower_components/emby-webcomponents/playback/brightnessosd.js index 4885d2e4e1..1797463f29 100644 --- a/src/bower_components/emby-webcomponents/playback/brightnessosd.js +++ b/src/bower_components/emby-webcomponents/playback/brightnessosd.js @@ -1,4 +1,4 @@ -define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'material-icons'], function (events, playbackManager, dom, browser) { +define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'material-icons'], function (events, playbackManager, dom, browser) { 'use strict'; var currentPlayer; diff --git a/src/bower_components/emby-webcomponents/playback/iconosd.css b/src/bower_components/emby-webcomponents/playback/iconosd.css index 3d0c8e5805..b2c4fca91a 100644 --- a/src/bower_components/emby-webcomponents/playback/iconosd.css +++ b/src/bower_components/emby-webcomponents/playback/iconosd.css @@ -1,4 +1,4 @@ -.iconOsd { +.iconOsd { position: fixed; top: 7%; right: 3%; diff --git a/src/bower_components/emby-webcomponents/playback/mediasession.js b/src/bower_components/emby-webcomponents/playback/mediasession.js index 8198a95520..8e2f7d0c01 100644 --- a/src/bower_components/emby-webcomponents/playback/mediasession.js +++ b/src/bower_components/emby-webcomponents/playback/mediasession.js @@ -1,4 +1,4 @@ -define(['playbackManager', 'nowPlayingHelper', 'events', 'connectionManager'], function (playbackManager, nowPlayingHelper, events, connectionManager) { +define(['playbackManager', 'nowPlayingHelper', 'events', 'connectionManager'], function (playbackManager, nowPlayingHelper, events, connectionManager) { "use strict"; // Reports media playback to the device for lock screen control diff --git a/src/bower_components/emby-webcomponents/playback/playbackmanager.js b/src/bower_components/emby-webcomponents/playback/playbackmanager.js index db70313ca0..5521b06452 100644 --- a/src/bower_components/emby-webcomponents/playback/playbackmanager.js +++ b/src/bower_components/emby-webcomponents/playback/playbackmanager.js @@ -1,4 +1,4 @@ -define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'playQueueManager', 'userSettings', 'globalize', 'connectionManager', 'loading', 'apphost', 'fullscreenManager'], function (events, datetime, appSettings, itemHelper, pluginManager, PlayQueueManager, userSettings, globalize, connectionManager, loading, apphost, fullscreenManager) { +define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'playQueueManager', 'userSettings', 'globalize', 'connectionManager', 'loading', 'apphost', 'fullscreenManager'], function (events, datetime, appSettings, itemHelper, pluginManager, PlayQueueManager, userSettings, globalize, connectionManager, loading, apphost, fullscreenManager) { 'use strict'; function enableLocalPlaylistManagement(player) { diff --git a/src/bower_components/emby-webcomponents/playback/playbackorientation.js b/src/bower_components/emby-webcomponents/playback/playbackorientation.js index 30997dbdac..731d9c3c42 100644 --- a/src/bower_components/emby-webcomponents/playback/playbackorientation.js +++ b/src/bower_components/emby-webcomponents/playback/playbackorientation.js @@ -1,4 +1,4 @@ -define(['playbackManager', 'layoutManager', 'events'], function (playbackManager, layoutManager, events) { +define(['playbackManager', 'layoutManager', 'events'], function (playbackManager, layoutManager, events) { "use strict"; var orientationLocked; diff --git a/src/bower_components/emby-webcomponents/playback/playerselection.js b/src/bower_components/emby-webcomponents/playback/playerselection.js index 86a0b9daab..ef7332d04b 100644 --- a/src/bower_components/emby-webcomponents/playback/playerselection.js +++ b/src/bower_components/emby-webcomponents/playback/playerselection.js @@ -1,4 +1,4 @@ -define(['appSettings', 'events', 'browser', 'loading', 'playbackManager', 'appRouter', 'globalize', 'apphost'], function (appSettings, events, browser, loading, playbackManager, appRouter, globalize, appHost) { +define(['appSettings', 'events', 'browser', 'loading', 'playbackManager', 'appRouter', 'globalize', 'apphost'], function (appSettings, events, browser, loading, playbackManager, appRouter, globalize, appHost) { 'use strict'; function mirrorItem(info, player) { diff --git a/src/bower_components/emby-webcomponents/playback/playmethodhelper.js b/src/bower_components/emby-webcomponents/playback/playmethodhelper.js index 2caae0d4cc..58458aa399 100644 --- a/src/bower_components/emby-webcomponents/playback/playmethodhelper.js +++ b/src/bower_components/emby-webcomponents/playback/playmethodhelper.js @@ -1,4 +1,4 @@ -define([], function () { +define([], function () { 'use strict'; function getDisplayPlayMethod(session) { diff --git a/src/bower_components/emby-webcomponents/playback/playqueuemanager.js b/src/bower_components/emby-webcomponents/playback/playqueuemanager.js index a804af0ec5..2cbaf1d9f4 100644 --- a/src/bower_components/emby-webcomponents/playback/playqueuemanager.js +++ b/src/bower_components/emby-webcomponents/playback/playqueuemanager.js @@ -1,4 +1,4 @@ -define([], function () { +define([], function () { 'use strict'; var currentId = 0; diff --git a/src/bower_components/emby-webcomponents/playback/remotecontrolautoplay.js b/src/bower_components/emby-webcomponents/playback/remotecontrolautoplay.js index 5fecf48537..d8316b87ef 100644 --- a/src/bower_components/emby-webcomponents/playback/remotecontrolautoplay.js +++ b/src/bower_components/emby-webcomponents/playback/remotecontrolautoplay.js @@ -1,4 +1,4 @@ -define(['events', 'playbackManager'], function (events, playbackManager) { +define(['events', 'playbackManager'], function (events, playbackManager) { 'use strict'; function transferPlayback(oldPlayer, newPlayer) { diff --git a/src/bower_components/emby-webcomponents/playback/volumeosd.js b/src/bower_components/emby-webcomponents/playback/volumeosd.js index c967a34fe2..c7a3438d54 100644 --- a/src/bower_components/emby-webcomponents/playback/volumeosd.js +++ b/src/bower_components/emby-webcomponents/playback/volumeosd.js @@ -1,4 +1,4 @@ -define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'material-icons'], function (events, playbackManager, dom, browser) { +define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'material-icons'], function (events, playbackManager, dom, browser) { 'use strict'; var currentPlayer; diff --git a/src/bower_components/emby-webcomponents/playbacksettings/playbacksettings.template.html b/src/bower_components/emby-webcomponents/playbacksettings/playbacksettings.template.html index b0e716358f..046c9da5d1 100644 --- a/src/bower_components/emby-webcomponents/playbacksettings/playbacksettings.template.html +++ b/src/bower_components/emby-webcomponents/playbacksettings/playbacksettings.template.html @@ -1,4 +1,4 @@ - +

diff --git a/src/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js b/src/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js index a2fd9a1a33..9d89dc7f40 100644 --- a/src/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js +++ b/src/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js @@ -1,4 +1,4 @@ -define(['shell', 'dialogHelper', 'loading', 'layoutManager', 'playbackManager', 'connectionManager', 'userSettings', 'appRouter', 'globalize', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button'], function (shell, dialogHelper, loading, layoutManager, playbackManager, connectionManager, userSettings, appRouter, globalize) { +define(['shell', 'dialogHelper', 'loading', 'layoutManager', 'playbackManager', 'connectionManager', 'userSettings', 'appRouter', 'globalize', 'emby-input', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button'], function (shell, dialogHelper, loading, layoutManager, playbackManager, connectionManager, userSettings, appRouter, globalize) { 'use strict'; var currentServerId; diff --git a/src/bower_components/emby-webcomponents/polyfills/objectassign.js b/src/bower_components/emby-webcomponents/polyfills/objectassign.js index 79568f8cba..2ea96b188d 100644 --- a/src/bower_components/emby-webcomponents/polyfills/objectassign.js +++ b/src/bower_components/emby-webcomponents/polyfills/objectassign.js @@ -1,4 +1,4 @@ -if (typeof Object.assign != 'function') { +if (typeof Object.assign != 'function') { (function () { Object.assign = function (target) { 'use strict'; diff --git a/src/bower_components/emby-webcomponents/polyfills/raf.js b/src/bower_components/emby-webcomponents/polyfills/raf.js index a856f6a76a..2c7c433329 100644 --- a/src/bower_components/emby-webcomponents/polyfills/raf.js +++ b/src/bower_components/emby-webcomponents/polyfills/raf.js @@ -1,4 +1,4 @@ -// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ +// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel diff --git a/src/bower_components/emby-webcomponents/prompt/prompt.template.html b/src/bower_components/emby-webcomponents/prompt/prompt.template.html index 0438381c30..200c98b116 100644 --- a/src/bower_components/emby-webcomponents/prompt/prompt.template.html +++ b/src/bower_components/emby-webcomponents/prompt/prompt.template.html @@ -1,4 +1,4 @@ -
+
diff --git a/src/bower_components/emby-webcomponents/qualityoptions.js b/src/bower_components/emby-webcomponents/qualityoptions.js index df88f0fac8..1cc215ef8a 100644 --- a/src/bower_components/emby-webcomponents/qualityoptions.js +++ b/src/bower_components/emby-webcomponents/qualityoptions.js @@ -1,4 +1,4 @@ -define(['globalize'], function (globalize) { +define(['globalize'], function (globalize) { 'use strict'; function getVideoQualityOptions(options) { diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingbutton.js b/src/bower_components/emby-webcomponents/recordingcreator/recordingbutton.js index 93c4c13abc..ef4645e6bb 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingbutton.js +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingbutton.js @@ -1,4 +1,4 @@ -define(['globalize', 'connectionManager', 'require', 'loading', 'apphost', 'dom', 'recordingHelper', 'events', 'registrationServices', 'paper-icon-button-light', 'emby-button', 'css!./recordingfields'], function (globalize, connectionManager, require, loading, appHost, dom, recordingHelper, events, registrationServices) { +define(['globalize', 'connectionManager', 'require', 'loading', 'apphost', 'dom', 'recordingHelper', 'events', 'registrationServices', 'paper-icon-button-light', 'emby-button', 'css!./recordingfields'], function (globalize, connectionManager, require, loading, appHost, dom, recordingHelper, events, registrationServices) { 'use strict'; function onRecordingButtonClick(e) { diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js b/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js index 2821946b6a..550f0240c9 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'datetime', 'imageLoader', 'recordingFields', 'events', 'emby-checkbox', 'emby-button', 'emby-collapse', 'emby-input', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, datetime, imageLoader, recordingFields, events) { +define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'datetime', 'imageLoader', 'recordingFields', 'events', 'emby-checkbox', 'emby-button', 'emby-collapse', 'emby-input', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, datetime, imageLoader, recordingFields, events) { 'use strict'; var currentDialog; diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.template.html b/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.template.html index de1f2f35ce..386aa149cc 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.template.html +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingcreator.template.html @@ -1,4 +1,4 @@ -
+

diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.js b/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.js index 4082e56d27..2da8b3389e 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.js +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'imageLoader', 'scrollStyles', 'emby-button', 'emby-collapse', 'emby-input', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons', 'flexStyles'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, imageLoader) { +define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'imageLoader', 'scrollStyles', 'emby-button', 'emby-collapse', 'emby-input', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons', 'flexStyles'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, imageLoader) { 'use strict'; var currentDialog; diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html b/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html index 6e36de2e49..e36dda3f57 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html @@ -1,4 +1,4 @@ -
+

${HeaderRecordingOptions} diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.js b/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.js index fd4b2c288a..48d725b09e 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.js +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.js @@ -1,4 +1,4 @@ -define(['globalize', 'connectionManager', 'serverNotifications', 'require', 'loading', 'apphost', 'dom', 'recordingHelper', 'events', 'registrationServices', 'paper-icon-button-light', 'emby-button', 'css!./recordingfields', 'flexStyles'], function (globalize, connectionManager, serverNotifications, require, loading, appHost, dom, recordingHelper, events, registrationServices) { +define(['globalize', 'connectionManager', 'serverNotifications', 'require', 'loading', 'apphost', 'dom', 'recordingHelper', 'events', 'registrationServices', 'paper-icon-button-light', 'emby-button', 'css!./recordingfields', 'flexStyles'], function (globalize, connectionManager, serverNotifications, require, loading, appHost, dom, recordingHelper, events, registrationServices) { 'use strict'; function getRegistration(apiClient, feature) { diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.template.html b/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.template.html index f07db7294b..4e4fb4878b 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.template.html +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordingfields.template.html @@ -1,4 +1,4 @@ -
+

${HeaderConvertYourRecordings}

${PromoConvertRecordingsToStreamingFormat}

diff --git a/src/bower_components/emby-webcomponents/recordingcreator/recordinghelper.js b/src/bower_components/emby-webcomponents/recordingcreator/recordinghelper.js index 363111a9a9..67bb503c47 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/recordinghelper.js +++ b/src/bower_components/emby-webcomponents/recordingcreator/recordinghelper.js @@ -1,4 +1,4 @@ -define(['globalize', 'loading', 'connectionManager', 'registrationServices'], function (globalize, loading, connectionManager, registrationServices) { +define(['globalize', 'loading', 'connectionManager', 'registrationServices'], function (globalize, loading, connectionManager, registrationServices) { 'use strict'; function changeRecordingToSeries(apiClient, timerId, programId, confirmTimerCancellation) { diff --git a/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js b/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js index bb92877fc4..c037d20f51 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js +++ b/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'imageLoader', 'datetime', 'scrollStyles', 'emby-button', 'emby-checkbox', 'emby-input', 'emby-select', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons', 'flexStyles'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, imageLoader, datetime) { +define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'imageLoader', 'datetime', 'scrollStyles', 'emby-button', 'emby-checkbox', 'emby-input', 'emby-select', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons', 'flexStyles'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, imageLoader, datetime) { 'use strict'; var currentDialog; diff --git a/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html b/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html index 0460546a76..54133ebbbb 100644 --- a/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html +++ b/src/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html @@ -1,4 +1,4 @@ -
+

${HeaderSeriesOptions} diff --git a/src/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js b/src/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js index 2165960d78..caa56d043a 100644 --- a/src/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js +++ b/src/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js @@ -1,4 +1,4 @@ -define(['shell', 'dialogHelper', 'loading', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'emby-input', 'emby-checkbox', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button'], function (shell, dialogHelper, loading, layoutManager, connectionManager, appRouter, globalize) { +define(['shell', 'dialogHelper', 'loading', 'layoutManager', 'connectionManager', 'appRouter', 'globalize', 'emby-input', 'emby-checkbox', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button'], function (shell, dialogHelper, loading, layoutManager, connectionManager, appRouter, globalize) { 'use strict'; function parentWithClass(elem, className) { diff --git a/src/bower_components/emby-webcomponents/registrationservices/registrationservices.js b/src/bower_components/emby-webcomponents/registrationservices/registrationservices.js index e753054a16..f5b4094213 100644 --- a/src/bower_components/emby-webcomponents/registrationservices/registrationservices.js +++ b/src/bower_components/emby-webcomponents/registrationservices/registrationservices.js @@ -1,4 +1,4 @@ -define(['appSettings', 'loading', 'apphost', 'events', 'shell', 'globalize', 'dialogHelper', 'connectionManager', 'layoutManager', 'emby-button', 'emby-linkbutton'], function (appSettings, loading, appHost, events, shell, globalize, dialogHelper, connectionManager, layoutManager) { +define(['appSettings', 'loading', 'apphost', 'events', 'shell', 'globalize', 'dialogHelper', 'connectionManager', 'layoutManager', 'emby-button', 'emby-linkbutton'], function (appSettings, loading, appHost, events, shell, globalize, dialogHelper, connectionManager, layoutManager) { 'use strict'; function validateFeature(feature, options) { diff --git a/src/bower_components/emby-webcomponents/sanitizefilename.js b/src/bower_components/emby-webcomponents/sanitizefilename.js index fbc387836b..843ab31f04 100644 --- a/src/bower_components/emby-webcomponents/sanitizefilename.js +++ b/src/bower_components/emby-webcomponents/sanitizefilename.js @@ -1,4 +1,4 @@ -// From https://github.com/parshap/node-sanitize-filename +// From https://github.com/parshap/node-sanitize-filename define([], function () { 'use strict'; diff --git a/src/bower_components/emby-webcomponents/search/searchfields.css b/src/bower_components/emby-webcomponents/search/searchfields.css index 4dea76771b..01981ed998 100644 --- a/src/bower_components/emby-webcomponents/search/searchfields.css +++ b/src/bower_components/emby-webcomponents/search/searchfields.css @@ -1,4 +1,4 @@ -.searchFieldsInner { +.searchFieldsInner { max-width: 60em; margin: 0 auto; } diff --git a/src/bower_components/emby-webcomponents/search/searchfields.js b/src/bower_components/emby-webcomponents/search/searchfields.js index 7468dffbd9..dc6af32ffe 100644 --- a/src/bower_components/emby-webcomponents/search/searchfields.js +++ b/src/bower_components/emby-webcomponents/search/searchfields.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'globalize', 'require', 'events', 'browser', 'alphaPicker', 'emby-input', 'flexStyles', 'material-icons', 'css!./searchfields'], function (layoutManager, globalize, require, events, browser, AlphaPicker) { +define(['layoutManager', 'globalize', 'require', 'events', 'browser', 'alphaPicker', 'emby-input', 'flexStyles', 'material-icons', 'css!./searchfields'], function (layoutManager, globalize, require, events, browser, AlphaPicker) { 'use strict'; function onSearchTimeout() { diff --git a/src/bower_components/emby-webcomponents/search/searchresults.js b/src/bower_components/emby-webcomponents/search/searchresults.js index f27c44bcd9..bac783918e 100644 --- a/src/bower_components/emby-webcomponents/search/searchresults.js +++ b/src/bower_components/emby-webcomponents/search/searchresults.js @@ -1,4 +1,4 @@ -define(['layoutManager', 'globalize', 'require', 'events', 'connectionManager', 'cardBuilder', 'appRouter', 'emby-scroller', 'emby-itemscontainer', 'emby-linkbutton'], function (layoutManager, globalize, require, events, connectionManager, cardBuilder, appRouter) { +define(['layoutManager', 'globalize', 'require', 'events', 'connectionManager', 'cardBuilder', 'appRouter', 'emby-scroller', 'emby-itemscontainer', 'emby-linkbutton'], function (layoutManager, globalize, require, events, connectionManager, cardBuilder, appRouter) { 'use strict'; function loadSuggestions(instance, context, apiClient) { diff --git a/src/bower_components/emby-webcomponents/serverrestartdialog/serverrestartdialog.js b/src/bower_components/emby-webcomponents/serverrestartdialog/serverrestartdialog.js index 70747ee804..9f08d4a43c 100644 --- a/src/bower_components/emby-webcomponents/serverrestartdialog/serverrestartdialog.js +++ b/src/bower_components/emby-webcomponents/serverrestartdialog/serverrestartdialog.js @@ -1,4 +1,4 @@ -define(['loading', 'events', 'dialogHelper', 'dom', 'layoutManager', 'scrollHelper', 'globalize', 'require', 'material-icons', 'emby-button', 'paper-icon-button-light', 'emby-input', 'formDialogStyle', 'flexStyles'], function (loading, events, dialogHelper, dom, layoutManager, scrollHelper, globalize, require) { +define(['loading', 'events', 'dialogHelper', 'dom', 'layoutManager', 'scrollHelper', 'globalize', 'require', 'material-icons', 'emby-button', 'paper-icon-button-light', 'emby-input', 'formDialogStyle', 'flexStyles'], function (loading, events, dialogHelper, dom, layoutManager, scrollHelper, globalize, require) { 'use strict'; var currentApiClient; diff --git a/src/bower_components/emby-webcomponents/sessionplayer.js b/src/bower_components/emby-webcomponents/sessionplayer.js index 0b6aa0e54d..adcaab2674 100644 --- a/src/bower_components/emby-webcomponents/sessionplayer.js +++ b/src/bower_components/emby-webcomponents/sessionplayer.js @@ -1,4 +1,4 @@ -define(['playbackManager', 'events', 'serverNotifications', 'connectionManager'], function (playbackManager, events, serverNotifications, connectionManager) { +define(['playbackManager', 'events', 'serverNotifications', 'connectionManager'], function (playbackManager, events, serverNotifications, connectionManager) { 'use strict'; function getActivePlayerId() { diff --git a/src/bower_components/emby-webcomponents/sortmenu/sortmenu.js b/src/bower_components/emby-webcomponents/sortmenu/sortmenu.js index 2dd08cf481..95a0b85761 100644 --- a/src/bower_components/emby-webcomponents/sortmenu/sortmenu.js +++ b/src/bower_components/emby-webcomponents/sortmenu/sortmenu.js @@ -1,4 +1,4 @@ -define(['require', 'dom', 'focusManager', 'dialogHelper', 'loading', 'layoutManager', 'connectionManager', 'globalize', 'userSettings', 'emby-select', 'paper-icon-button-light', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (require, dom, focusManager, dialogHelper, loading, layoutManager, connectionManager, globalize, userSettings) { +define(['require', 'dom', 'focusManager', 'dialogHelper', 'loading', 'layoutManager', 'connectionManager', 'globalize', 'userSettings', 'emby-select', 'paper-icon-button-light', 'material-icons', 'css!./../formdialog', 'emby-button', 'emby-linkbutton', 'flexStyles'], function (require, dom, focusManager, dialogHelper, loading, layoutManager, connectionManager, globalize, userSettings) { 'use strict'; function onSubmit(e) { diff --git a/src/bower_components/emby-webcomponents/strings/ar.json b/src/bower_components/emby-webcomponents/strings/ar.json index 70e3b7cf96..65e9316238 100644 --- a/src/bower_components/emby-webcomponents/strings/ar.json +++ b/src/bower_components/emby-webcomponents/strings/ar.json @@ -1,680 +1,14 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "الغاء", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "الجمعة", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", "LabelCountry": "البلد:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "اللغة:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "الاثنين", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "السبت", "Save": "تخزين", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "الاحد", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "الخميس", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "الثلاثاء", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "الاربعاء", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/be-by.json b/src/bower_components/emby-webcomponents/strings/be-by.json index e8d394ddd6..dcfd5cde6b 100644 --- a/src/bower_components/emby-webcomponents/strings/be-by.json +++ b/src/bower_components/emby-webcomponents/strings/be-by.json @@ -1,680 +1,3 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Адмяніць", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", - "LabelCountry": "Country:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", - "LabelLanguage": "Language:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", - "ParentalRating": "Parental rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", - "Save": "Save", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/bg-bg.json b/src/bower_components/emby-webcomponents/strings/bg-bg.json index 4f98fb470a..50a9de3e73 100644 --- a/src/bower_components/emby-webcomponents/strings/bg-bg.json +++ b/src/bower_components/emby-webcomponents/strings/bg-bg.json @@ -1,222 +1,102 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Актьор", "Add": "Добавяне", "AddToCollection": "Добавяне към колекция", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Добавяне към списък", "AddedOnValue": "Добавено на {0}", "Advanced": "Разширени", "AirDate": "Дата на излъчване", "Aired": "Излъчено", "Albums": "Албуми", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", "AllowSeasonalThemes": "Автоматични сезонни облици", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", "Art": "Картина", "Artists": "Изпълнители", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "Нови", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", "Auto": "Автоматично", "AutoBasedOnLanguageSetting": "Автоматично (според езика)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", "AutomaticallySyncNewContent": "Автоматично сваляне на ново съдържание", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", "Backdrop": "Фон", "Backdrops": "Фонове", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", "Books": "Книги", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Отмяна", "ButtonGotIt": "Добре", "ButtonOk": "Добре", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "Повторно пускане", - "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonTryAgain": "Опитайте отново", "ButtonUnlockPrice": "Отключване на {0}", "ButtonUnlockWithPurchase": "Отключване с покупка", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "Collections": "Колекции", - "ColorPrimaries": "Color primaries", "ColorSpace": "Цветово пространство", - "ColorTransfer": "Color transfer", "CommunityRating": "Обществена ощенка", "Composer": "Съчинител", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", "ConfirmDeleteImage": "Изтриване на изображението?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", "Continue": "Продължаване", "ContinueInSecondsValue": "Продължаване след {0} секунди.", "ContinueWatching": "Продължаване на гледането", "Continuing": "Продължаващо", "Convert": "Преобразуване", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Държави", "CriticRating": "Оценка на критиците", "DateAdded": "Дата на добавяне", "DatePlayed": "Дата на пускане", "Days": "Дни", "Default": "По подразбиране", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Изтриване", "DeleteMedia": "Изтриване на медията", - "Depressed": "Depressed", - "Descending": "Descending", "Desktop": "Работен плот", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Режисьор", "DirectorValue": "Режисьор: {0}", "DirectorsValue": "Режисьори: {0}", "Disc": "Диск", - "Disconnect": "Disconnect", "Dislike": "Нехаресване", "Display": "Показване", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", "Download": "Изтегляне", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Изтеглени", "Downloading": "Изтегляне", "DownloadingDots": "Изтегляне...", "Downloads": "Изтегляния", "DownloadsValue": "{0} изтегляния", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Редактиране", "EditImages": "Редактиране на изображенията", "EditMetadata": "Редактиране на метаданните", "EditSubtitles": "Редактиране на субтитрите", "EnableBackdrops": "Фонове", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "Включване на режим \"Киносалон\"", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", "EnableThemeSongs": "Тематични песни", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Приключило", "EndsAtValue": "Свършва на {0}", "Episodes": "Епизоди", "Error": "Грешка", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", "ExtraLarge": "Много голям", "Extras": "Екстри", "Favorite": "В любими", "Favorites": "Любими", "FeatureRequiresJellyfinPremiere": "Функцията изисква активен абонамент за премиерното издание на Емби.", - "Features": "Features", "File": "Файл", - "Fill": "Fill", "Filters": "Филтри", - "Folders": "Folders", "FormatValue": "Формат: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Петък", "GenreValue": "Жанр: {0}", "Genres": "Жанрове", "GenresValue": "Жанрове: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "Групиране на версиите", "GuestStar": "Гостуваща звезда", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", "Guide": "Справочник", "HDPrograms": "Програми с висока разделителна способност", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Добавяне към колекция", "HeaderAddToPlaylist": "Добавяне към списък", "HeaderAddUpdateImage": "Добавяне/редактиране на изображение", "HeaderAlbumArtists": "Изпълнители на албуми", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", "HeaderAudioSettings": "Настройки на звука", "HeaderBecomeProjectSupporter": "Вземете премиерното издание", "HeaderBenefitsJellyfinPremiere": "Предимства на премиерното издание", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", "HeaderCinemaMode": "Режим \"Киносалон\"", "HeaderCloudSync": "Синхронизиране в облака", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", "HeaderContinueListening": "Продължаване на слушането", "HeaderContinueWatching": "Продължаване на гледането", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", "HeaderDisplaySettings": "Настройки на показване", - "HeaderDownloadSettings": "Download Settings", "HeaderEditImages": "Редактиране на изображенията", "HeaderEnabledFields": "Включени полета", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", "HeaderFavoriteAlbums": "Любими албуми", "HeaderFavoriteArtists": "Любими изпълнители", "HeaderFavoriteCollections": "Любими колекции", @@ -227,17 +107,10 @@ "HeaderFavoriteShows": "Любими предавания", "HeaderFavoriteSongs": "Любими песни", "HeaderFavoriteVideos": "Любими клипове", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderHomeScreen": "Начален екран", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderInvitationSent": "Поканата е изпратена", "HeaderJellyfinAccountAdded": "Сметката в Емби е добавена", "HeaderJellyfinAccountRemoved": "Сметката в Емби е премахната", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", "HeaderLatestMedia": "Последни медии", "HeaderLatestRecordings": "Последни записи", "HeaderLearnMore": "Научете повече", @@ -251,72 +124,36 @@ "HeaderNewRecording": "Нов запис", "HeaderNextEpisodePlayingInValue": "Следващият епизод ще се пусне след {0}", "HeaderNextUp": "Следва", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", "HeaderOnNow": "На живо сега", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", "HeaderPlayOn": "Пускане на", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", "HeaderSecondsValue": "{0} секунди", "HeaderSelectDate": "Избиране на дата", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderStartNow": "Пускане веднага", - "HeaderStopRecording": "Stop Recording", "HeaderSubtitleAppearance": "Облик на субтитрите", "HeaderSubtitleSettings": "Настройки на субтитрите", "HeaderSyncRequiresSub": "Изтеглянето изисква активен абонамент за премиерното издание.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", "HeaderUnlockFeature": "Отключване на функцията", "HeaderUploadImage": "Качване на изображение", "HeaderVideoQuality": "Качество на видеото", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", "Help": "Помощ", "Hide": "Скриване", "HideWatchedContentFromLatestMedia": "Скриване на гледаното съдържание от последната медия", "Home": "Начало", "Horizontal": "Водоравно", - "HowDidYouPay": "How did you pay?", "IHaveJellyfinPremiere": "Имам премиерно издание", - "IPurchasedThisApp": "I purchased this app", "Identify": "Разпознаване", "Images": "Изображения", "ImdbRating": "Оценка в IMDb", "InstallingPackage": "Инсталиране на {0}", "InstantMix": "Пускане на подобни", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", "Label3DFormat": "Триизмерен формат:", "LabelAirDays": "Дни на излъчване:", "LabelAirTime": "Час на излъчване:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", "LabelAlbum": "Албум:", "LabelAlbumArtists": "Изпълнители на албума:", "LabelArtists": "Изпълнители:", "LabelArtistsHelp": "Отделете няколко с ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Предпочитан език на звука:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", "LabelCollection": "Колекция:", "LabelCommunityRating": "Обществена оценка", "LabelContentType": "Тип на съдържанието:", @@ -327,234 +164,114 @@ "LabelDashboardTheme": "Облик на сървърното табло:", "LabelDateAdded": "Дата на добавяне:", "LabelDateTimeLocale": "Местоположение за дата и час:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", "LabelDisplayLanguage": "Език на показване:", "LabelDisplayLanguageHelp": "Превеждането на Емби е текущ проект.", "LabelDisplayMode": "Режим на показване:", "LabelDisplayOrder": "Ред на показване:", "LabelDropImageHere": "Пуснете изображение тук или щракнете за разглеждане.", "LabelDropShadow": "Сянка:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Електронна поща:", - "LabelEndDate": "End date:", "LabelEpisodeNumber": "Номер на епизода:", "LabelFont": "Шрифт:", "LabelHomeNetworkQuality": "Качество на домашната мрежа:", "LabelHomeScreenSectionValue": "Раздел {0} на началния екран:", "LabelImageType": "Вид изображение:", "LabelInternetQuality": "Качество на интернетната връзка:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Език:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Предпочитан език на сваляне:", "LabelName": "Име:", - "LabelNumber": "Number:", "LabelOriginalAspectRatio": "Оригинално съотношение:", "LabelOriginalTitle": "Оригинално заглавие:", "LabelOverview": "Обобщение:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Родителска оценка:", "LabelPath": "Път:", "LabelPersonRole": "Роля:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", "LabelPlaceOfBirth": "Рождено място:", "LabelPlayDefaultAudioTrack": "Да се пуска първоначалната звукова пътечка независимо от езика", "LabelPlaylist": "Списък:", "LabelPreferredSubtitleLanguage": "Предпочитан език на субтитрите:", - "LabelProfile": "Profile:", "LabelQuality": "Качество:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", "LabelReleaseDate": "Дата на издаване:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "Номер на сезона:", - "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.", "LabelShortOverview": "Кратко обобщение:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", "LabelSortBy": "Подреждане по:", "LabelSortOrder": "Ред на подреждане", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "Състояние:", - "LabelStopWhenPossible": "Stop when possible:", "LabelSubtitlePlaybackMode": "Режим на субтитрите:", "LabelSubtitles": "Субтитри:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Синхронизиране към:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", "LabelTextColor": "Цвят на текста:", "LabelTextSize": "Размер на текста:", "LabelTheme": "Облик:", "LabelTitle": "Заглавие:", - "LabelTrackNumber": "Track number:", "LabelType": "Вид:", "LabelVersion": "Версия:", - "LabelVideo": "Video:", "LabelWebsite": "Сайт:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "Година:", "Large": "Голям", "LatestFromLibrary": "Последни {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Научете повече", "Like": "Харесване", "LinksValue": "Препратки: {0}", "List": "Списък", "Live": "На живо", - "LiveBroadcasts": "Live broadcasts", "LiveTV": "Телевизия на живо", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "Телевизията на живо изисква активен абонамент за премиерното издание.", "Logo": "Логотип", - "ManageRecording": "Manage recording", "MarkPlayed": "Отбелязване като пускано", "MarkUnplayed": "Отбелязване като непускано", "MarkWatched": "Отбелязване като изгледано", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", "Menu": "Меню", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", "MessageNoSyncJobsFound": "Няма изтегляния. Създайте задачи чрез копчетата за сваляне.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", "MinutesAfter": "минути след", "MinutesBefore": "минути преди", "Mobile": "Мобилно устройство", "Monday": "Понеделник", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", "Movies": "Филми", "MySubtitles": "Моите субтитри", "Name": "Име", "NewCollection": "Нова колекция", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Пример: колекция Междузвездни войни", "NewEpisodes": "Нови епизоди", "NewEpisodesOnly": "Само нови епизоди", "News": "Новини", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", "NoSubtitleSearchResultsFound": "Няма намерени резултати.", "NoSubtitles": "Без субтитри", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", "None": "Нищо", "Normal": "Нормален", "Off": "Изключено", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Отваряне", "OptionNew": "Нов...", - "Original": "Original", "OriginalAirDateValue": "Дата на първоначално излъчване: {0}", "Overview": "Обобщение", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Родителска оценка", "People": "Хора", - "PerfectMatch": "Perfect match", "Photos": "Снимки", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "Пускане", "PlayAllFromHere": "Пускане на всичко от тук", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", "PlayNextEpisodeAutomatically": "Автоматично пускане на следващия епизод", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Пускано", "Playlists": "Списъци", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseRestartServerName": "Моля, пуснете сървъра отново - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", "Premiere": "Премиера", "Premieres": "Премиери", - "Previous": "Previous", "Primary": "Главно", - "PrivacyPolicy": "Privacy policy", "Producer": "Продуцент", - "ProductionLocations": "Production locations", "Programs": "Програми", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", "Quality": "Качество", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", "RecentlyWatched": "Скоро гледани", "Record": "Записване", - "RecordSeries": "Record series", "RecordingCancelled": "Записването е отказано.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Опресняване", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", "RefreshMetadata": "Опресняване на метаданните", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", "ReleaseDate": "Дата на издаване", - "RemoveDownload": "Remove download", "RemoveFromCollection": "Премахване от колекцията", "RemoveFromPlaylist": "Премахване от списъка", - "RemovingFromDevice": "Removing from device", "Repeat": "Повтаряне", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Продължаване от {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", "Runtime": "Времетраене", "Saturday": "Събота", "Save": "Запазване", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", "Schedule": "Разписание", "Screenshot": "Снимка на екрана", "Screenshots": "Снимки на екрана", @@ -562,12 +279,6 @@ "SearchForCollectionInternetMetadata": "Търсене в интернет за картини и метаданни", "SearchForMissingMetadata": "Търсене за лисващи метаданни", "SearchForSubtitles": "Търсене на субтитри", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", "SeriesYearToPresent": "{0} - Настояще", "ServerNameIsRestarting": "Сървърно издание Емби - {0} се пуска повторно.", "ServerNameIsShuttingDown": "Сървърно издание Емби - {0} се изключва.", @@ -575,32 +286,17 @@ "Settings": "Настройки", "SettingsSaved": "Настройките са запазени.", "Share": "Споделяне", - "ShowIndicatorsFor": "Show indicators for:", "ShowTitle": "Показване на заглавието", "ShowYear": "Показване на годината", "Shows": "Предавания", "Shuffle": "Пускане в разбъркан ред", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", "Small": "Малък", - "SmallCaps": "Small caps", - "Smaller": "Smaller", "Smart": "Умни", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", "Songs": "Песни", "Sort": "Подреждане", "SortByValue": "Подреждане по {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", "Sports": "Спортни", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "Студиа", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Субтитри", "Suggestions": "Предложения", "Sunday": "Неделя", @@ -614,14 +310,9 @@ "SyncJobItemStatusSynced": "Изтеглено", "SyncJobItemStatusSyncedMarkForRemoval": "Премахване от устройството", "SyncJobItemStatusTransferring": "Прехвърляне", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", "TV": "Телевизор", "Tags": "Етикети", "TagsValue": "Етикети: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", "ThemeSongs": "Фонови песни", "ThemeVideos": "Фонови видеоклипове", "TheseSettingsAffectSubtitlesOnThisDevice": "Тези настройки променят субтитрите на текущото устройство", @@ -630,17 +321,8 @@ "TrackCount": "{0} песни", "Trailer": "Трейлър", "Trailers": "Трейлъри", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Вторник", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", "Unplayed": "Непускано", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", "Upload": "Качване", "ValueAlbumCount": "{0} албума", "ValueDiscNumber": "Диск {0}", @@ -652,7 +334,6 @@ "ValueOneAlbum": "1 албум", "ValueOneEpisode": "1 епизод", "ValueOneGame": "1 игра", - "ValueOneItem": "1 item", "ValueOneMovie": "1 филм", "ValueOneMusicVideo": "1 музикален клип", "ValueOneSeries": "1 сериал", @@ -662,19 +343,9 @@ "ValueSongCount": "{0} песни", "ValueSpecialEpisodeName": "Специални - {0}", "Vertical": "Отвесно", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "Преглед на албума", "ViewArtist": "Преглед на изпълнителя", - "VoiceInput": "Voice Input", "Watched": "Изгледано", "Wednesday": "Сряда", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Писател", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/ca.json b/src/bower_components/emby-webcomponents/strings/ca.json index bc7cf2dd38..0c2f4c5c1f 100644 --- a/src/bower_components/emby-webcomponents/strings/ca.json +++ b/src/bower_components/emby-webcomponents/strings/ca.json @@ -1,205 +1,75 @@ { - "Absolute": "Absolute", "Accept": "Accepta", "AccessRestrictedTryAgainLater": "L'accés està restringit actualment. Intenta-ho de nou més tard si et plau.", - "Actor": "Actor", "Add": "Afegeix", "AddToCollection": "Afegeix a col·lecció", "AddToPlayQueue": "Afegeix a la llista de reproducció", "AddToPlaylist": "Afegeix a la llista de reproducció", - "AddedOnValue": "Added {0}", "Advanced": "Avançat", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", "AllChannels": "Tots els canals", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Tots els episodis", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", "AlwaysPlaySubtitles": "Reprodueix sempre amb subtítols", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", "AroundTime": "Cap a les {0}", - "Art": "Art", "Artists": "Artistes", "AsManyAsPossible": "Tants com sigui possible", - "Ascending": "Ascending", "AspectRatio": "Relació d'aspecte", "AttributeNew": "Nou", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", "AutomaticallySyncNewContent": "Descarrega nou contingut automàticament", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", "BestFit": "Millor ajustament", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancel·la", "ButtonGotIt": "Entesos", "ButtonOk": "D'acord", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "Reiniciar", "ButtonRestorePreviousPurchase": "Restaura Compra", "ButtonTryAgain": "Intenta-ho de nou", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", "CancelDownload": "Cancel·la descàrrega", "CancelRecording": "Cancel·la enregistrament", "CancelSeries": "Cancel·la sèrie", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CloudSyncFeatureDescription": "Sincronitza els teus mitjans amb el núvol per a copiar, arxivar i convertir fàcilment.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "Compositor", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", "ConfirmDeleteImage": "Esborrar imatge?", - "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?", "ConfirmDeletion": "Confirma supressió", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", "Connect": "Connecta", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", "Continue": "Continua", "ContinueInSecondsValue": "Continua en {0} segons", - "ContinueWatching": "Continue watching", "Continuing": "Continuant", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Països", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Dies", - "Default": "Default", "DefaultErrorMessage": "Hi ha hagut un error processant la petició. Intenta-ho més tard si et plau.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Esborra", "DeleteMedia": "Esborra", - "Depressed": "Depressed", - "Descending": "Descending", "Desktop": "Escriptori", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", "Disconnect": "Desconnecta", "Dislike": "No m'agrada", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", "DisplayMissingEpisodesWithinSeasons": "Mostra també els episodis que no tingui a les temporades", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", "DisplayModeHelp": "Selecciona el tipus de pantalla en el que tens Jellyfin funcionant.", "DoNotRecord": "No enregistris", "Down": "Avall", "Download": "Descarrega", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Descarregat", "Downloading": "Descarregant", "DownloadingDots": "Descarregant...", "Downloads": "Descàrregues", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", "DvrFeatureDescription": "Programa enregistraments de TV en directe individuals, de sèries i molt més amb Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Edita", "EditImages": "Edita imatges", - "EditMetadata": "Edit metadata", "EditSubtitles": "Edita subtítols", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "Habilitar mode cinema", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", "EnableDisplayMirroring": "Habilita la vista de mirall", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Acabades", "EndsAtValue": "Acabaria a les {0}", "Episodes": "Episodis", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Favorit", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", "File": "Fitxer", "Fill": "Omplir", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Divendres", - "GenreValue": "Genre: {0}", "Genres": "Gèneres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", "GuestStar": "Artista convidat", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "Programes HD", "HeaderActiveRecordings": "Enregistraments Actius", "HeaderAddToCollection": "Afegir a Col·lecció", "HeaderAddToPlaylist": "Afegir a la llista de reproducció", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "Obtenir Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", "HeaderCancelRecording": "Cancel·lar Enregistrament", "HeaderCancelSeries": "Cancel·lar Sèries", "HeaderCinemaMode": "Mode Cinema", @@ -207,36 +77,17 @@ "HeaderConfirmRecordingCancellation": "Confirmar Cancel·lació de l'Enregistrament", "HeaderContinueListening": "Continua Escoltant", "HeaderContinueWatching": "Continua Veient", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Esborrar Ítem", - "HeaderDeleteItems": "Delete Items", "HeaderDisplaySettings": "Opcions de Visualització", "HeaderDownloadSettings": "Preferències de descàrregues", "HeaderEditImages": "Edita Imatges", "HeaderEnabledFields": "Camps Habilitats", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", "HeaderExternalIds": "Identificadors externs:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", "HeaderFavoritePlaylists": "Llistes de Reproducció Preferides", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", "HeaderHomeScreen": "Pàgina d'Inici", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", "HeaderKeepRecording": "Continuar Enregistrant", "HeaderKeepSeries": "Mantenir Sèries", "HeaderLatestChannelItems": "Darrers ítems del canal", - "HeaderLatestChannelMedia": "Latest Channel Items", "HeaderLatestFrom": "Novetats a {0}", "HeaderLatestMedia": "Darrers MItjans", "HeaderLatestRecordings": "Darrers Enregistraments", @@ -244,7 +95,6 @@ "HeaderLibraryFolders": "Directoris de la Llibreria", "HeaderLibraryOrder": "Ordre de la llibreria", "HeaderMetadataSettings": "Preferències de Metadades", - "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "El meu dispositiu", "HeaderMyMedia": "Els meus mitjans", "HeaderMyMediaSmall": "Els meus mitjans (petit)", @@ -255,199 +105,101 @@ "HeaderOfflineDownloads": "Mitjans Sense Connexió", "HeaderOfflineDownloadsDescription": "Descarrega mitjans als teus dispositius per a un fàcil ús fora de línia.", "HeaderOnNow": "En Directe Ara", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "Error de Reproducció", "HeaderRecordingOptions": "Opcions d'Enregistrament", "HeaderRemoteControl": "Control Remot", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "Digues alguna cosa com...", "HeaderSecondsValue": "{0} segons", "HeaderSelectDate": "Seleccionar Data", "HeaderSeriesOptions": "Opcions de Sèries", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderStartNow": "Començar Ara", - "HeaderStopRecording": "Stop Recording", "HeaderSubtitleAppearance": "Apariència de subtítols", "HeaderSubtitleSettings": "Preferències de subtítols", "HeaderSyncRequiresSub": "Descarregar requereix una subscripció activa d'Jellyfin Premiere.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Esperant Wifi", "HeaderYouSaid": "Has dit...", "Help": "Ajuda", "Hide": "Amaga", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", "Identify": "Identifica", "Images": "Imatges", - "ImdbRating": "IMDb rating", "InstallingPackage": "Instal·lant {0}", "InstantMix": "Mescla instantània", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} ítems", - "Items": "Items", - "KeepDownload": "Keep download", "KeepOnDevice": "Mantingues al dispositiu", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", "LabelAlbum": "Àlbum:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "Artistes:", "LabelArtistsHelp": "Separa'n varis emprant ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "Data de naixement:", "LabelBirthYear": "Any de naixement:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Canals:", "LabelCollection": "Col·lecció:", "LabelCommunityRating": "Valoració de la comunitat:", "LabelContentType": "Tipus de contingut:", - "LabelConvertTo": "Convert to:", "LabelCountry": "País:", "LabelCriticRating": "Valoració crítica:", - "LabelCustomRating": "Custom rating:", "LabelDashboardTheme": "Tema del tauler de control del servidor:", "LabelDateAdded": "Data afegit:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Data de defunció:", - "LabelDefaultScreen": "Default screen:", "LabelDiscNumber": "Disc:", "LabelDisplayLanguage": "Idioma de visualització:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Ordre de visualització:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", "LabelDynamicExternalId": "Identificador {0}:", "LabelEmailAddress": "Correu electrònic:", "LabelEndDate": "Data de finalització:", "LabelEpisodeNumber": "Episodi:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", "LabelHomeScreenSectionValue": "Secció {0} de la pàgina d'inici:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", "LabelKeepUpTo": "Mantingues fins a:", "LabelLanguage": "Idioma:", "LabelLockItemToPreventChanges": "Bloca aquest ítem per evitar canvis futurs", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Idioma preferit de descàrrega:", "LabelName": "Nom:", "LabelNumber": "Nombre:", "LabelOriginalAspectRatio": "Relació d'aspecte original:", "LabelOriginalTitle": "Títol original:", "LabelOverview": "Sinopsi:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", "LabelPath": "Directori:", "LabelPersonRole": "Rol:", "LabelPersonRoleHelp": "Exemple: Conductor de camió de gelats", "LabelPlaceOfBirth": "Lloc de naixement:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Llista de rep.:", "LabelPreferredSubtitleLanguage": "Idioma preferit de subtítols:", "LabelProfile": "Perfil:", "LabelQuality": "Qualitat:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "Enregistra:", "LabelRefreshMode": "Mode de refresc:", "LabelReleaseDate": "Data de publicació:", - "LabelRuntimeMinutes": "Run time (minutes):", "LabelScreensaver": "Salva pantalla:", "LabelSeasonNumber": "Temporada:", "LabelSelectFolderGroups": "Agrupa automàticament el contingut de les següents carpetes en col·leccions com Pel·lícules, Música i TV:", "LabelSelectFolderGroupsHelp": "Les carpetes desmarcades serán mostrades individualment en la seva pròpia vista.", "LabelShortOverview": "Sinopsi curta:", "LabelSkin": "Aspecte:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Títol d'endreçat:", "LabelSoundEffects": "Efectes de so:", - "LabelSource": "Source:", "LabelStartWhenPossible": "Inicia quan sigui possible:", "LabelStatus": "Estat:", "LabelStopWhenPossible": "Atura quan sigui possible:", "LabelSubtitlePlaybackMode": "Mode de subtítol:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Sincronitza a:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", "LabelTheme": "Tema:", "LabelTitle": "Títol:", "LabelTrackNumber": "Pista:", "LabelType": "Tipus:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "Any:", - "Large": "Large", "LatestFromLibrary": "Novetats a {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", "Like": "M'agrada", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Directe", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "Live TV requereix una subscripció d'Jellyfin Premiere activa", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "Marca com a reproduït", "MarkUnplayed": "Marca com a no reproduït", "MarkWatched": "Marca com a vist", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", "MessageAreYouSureDeleteSubtitles": "Estàs segur que vols eliminar aquest fitxer de subtítols?", "MessageConfirmRecordingCancellation": "Estàs segur que vols cancel·lar aquest enregistrament?", "MessageDownloadQueued": "Descàrrega encuada.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Ítem desat.", "MessageItemsAdded": "Ítems afegits.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageNoDownloadsFound": "No s'han trobat descàrregues sense connexió. Descarrega mitjans per reproduir sense connexió emprant els botons de \"Descarrega\" que trobaràs per tota l'app.", - "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.", "MessageNoSyncJobsFound": "No s'han trobat descàrregues. Crea noves tasques de descàrrega emprant els botons de \"Descarrega\" que trobaràs per tota l'app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "Si tens una subscripció activa d'Jellyfin Premiere assegura't que l'has configurat al teu tauler de control de l'Jellyfin Server, on pots accedir clicant a l'opció d'Jellyfin Premiere al menú principal.", "MessageUnlockAppWithPurchaseOrSupporter": "Activa aquesta funcionalitat amb un únic pagament, o amb una subscripció activa d'Jellyfin Premiere.", "MessageUnlockAppWithSupporter": "Activa aquesta funcionalitat amb una subscripció activa d'Jellyfin Premiere.", @@ -459,7 +211,6 @@ "More": "Més", "MoveLeft": "Moure a l'esquerra", "MoveRight": "Moure a la dreta", - "Movies": "Movies", "MySubtitles": "Els meus subtítols", "Name": "Nom", "NewCollection": "Nova Col·lecció", @@ -467,140 +218,71 @@ "NewCollectionNameExample": "Exemple: Col·leció Star Wars", "NewEpisodes": "Nous episodis", "NewEpisodesOnly": "Només nous episodis", - "News": "News", - "Next": "Next", - "No": "No", "NoItemsFound": "No s'han trobat ítems.", "NoSubtitleSearchResultsFound": "No s'han trobat resultats.", "NoSubtitles": "Sense subtítols", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", "None": "Cap", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", "OnlyForcedSubtitles": "Només subtítols forçats", "OnlyForcedSubtitlesHelp": "Només es carregaran aquells subtítols marcats com a forçats.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Obre", "OptionNew": "Nou...", - "Original": "Original", "OriginalAirDateValue": "Data original d'emissió: {0}", - "Overview": "Overview", "PackageInstallCancelled": "Instal·lació {0} cancel·lada.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Valoració Parental", "People": "Gent", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "Reprodueix", "PlayAllFromHere": "Reprodueix tots des d'aquí", - "PlayCount": "Play count", "PlayFromBeginning": "Reprodueix des de l'inici", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Reproduït", "Playlists": "Llistes de reproducció", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseRestartServerName": "Reinicia el Servidor d'Jellyfin si et plau - {0}.", "PleaseSelectDeviceToSyncTo": "Selecciona el dispositiu on ho vulguis descarregar.", - "PleaseSelectTwoItems": "Please select at least two items.", "Premiere": "Première", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "Productor", - "ProductionLocations": "Production locations", "Programs": "Programes", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", "Quality": "Qualitat", "QueueAllFromHere": "Afegeix tots a la cua des d'aquí", - "Raised": "Raised", "RecentlyWatched": "Reproduït recentment", "Record": "Grava", "RecordSeries": "Enregistra la sèrie", "RecordingCancelled": "Enregistrament cancel·lat.", "RecordingScheduled": "Enregistrament programat.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Refresca", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", "RefreshMetadata": "Refresca metadades", "RefreshQueued": "Actualització encuada.", "Reject": "Rebutja", "ReleaseDate": "Data de publicació", - "RemoveDownload": "Remove download", "RemoveFromCollection": "Elimina de la col·lecció", "RemoveFromPlaylist": "Esborra de la llista de reproducció", "RemovingFromDevice": "Eliminant del dispositiu", "Repeat": "Repeteix", - "RepeatAll": "Repeat all", "RepeatEpisodes": "Repetir episodis", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", "ReplaceAllMetadata": "Reemplaça totes les metadades", "ReplaceExistingImages": "Reemplaça imatges existents", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Reprodueix des de {0}", "Retry": "Reintenta", "RunAtStartup": "Arrenca en iniciar", - "Runtime": "Runtime", "Saturday": "Dissabte", "Save": "Desa", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", "Screenshots": "Captures de pantalla", "Search": "Cerca", "SearchForCollectionInternetMetadata": "Cerca a internet artwork i metadades", "SearchForMissingMetadata": "Cerca metadades perdudes", "SearchForSubtitles": "Cerca Subtítols", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "Sèrie cancel·lada.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Enregistrament de la sèrie programat.", "SeriesSettings": "Preferències de la sèrie", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", "ServerUpdateNeeded": "El Servidor Jellyfin necessita ser actualitzat. Per descarregar la darrera versió, si et plau, visita {0}", "Settings": "Preferències", "SettingsSaved": "Preferències desades.", "Share": "Comparteix", "ShowIndicatorsFor": "Mostra indicadors per a:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "Aleatori", "SkipEpisodesAlreadyInMyLibrary": "No enregistris episodis que ja estan a la meva biblioteca", "SkipEpisodesAlreadyInMyLibraryHelp": "Els episodis es compararan emprant la temporada i el nombre d'episodi quan siguin disponibles.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", "SortName": "Nom per endreçar:", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "Estudis", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", "SubtitleCodecNotSupported": "Format de subtítol no suportat", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Subtítols", "Suggestions": "Suggerències", "Sunday": "Diumenge", @@ -616,65 +298,25 @@ "SyncJobItemStatusTransferring": "Transferint", "SyncUnwatchedVideosOnly": "Descarrega només els vídeos no vists", "SyncUnwatchedVideosOnlyHelp": "Només els vídeos no vists seran descarregats, i els vídeos seran eliminats del dispositiu un cop s'hagin vist.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Etiquetes", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", "TheseSettingsAffectSubtitlesOnThisDevice": "Aquestes preferències afecten els subtítols d'aquest dispositiu", - "Thumb": "Thumb", "Thursday": "Dijous", "TrackCount": "{0} pistes", "Trailer": "Tràiler", - "Trailers": "Trailers", - "Transcoding": "Transcoding", "TryMultiSelect": "Prova el Multi-Select", "TryMultiSelectMessage": "Per editar múltiples mitjans multimèdia simplement fes clic i mantingues premut sobre qualsevol cartell i després selecciona els ítems que vulguis gestionar. Prova-ho!", "Tuesday": "Dimarts", - "Uniform": "Uniform", "UnlockGuide": "Guia de desbloqueig", - "Unplayed": "Unplayed", "Unrated": "Sense valorar", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", "Up": "Amunt", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} episodis", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", "ValueMusicVideoCount": "{0} vídeos musicals", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", "ValueOneMusicVideo": "1 vídeo musical", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", "ValueSpecialEpisodeName": "Especial - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "Veure àlbum", "ViewArtist": "Veure artista", - "VoiceInput": "Voice Input", "Watched": "Vists", "Wednesday": "Dimecres", "WifiRequiredToDownload": "Es requereix una connexió Wifi per continuar descarregant.", "Writer": "Escriptor", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/cs.json b/src/bower_components/emby-webcomponents/strings/cs.json index 76d670aa7b..8da0b4f551 100644 --- a/src/bower_components/emby-webcomponents/strings/cs.json +++ b/src/bower_components/emby-webcomponents/strings/cs.json @@ -1,5 +1,4 @@ { - "Absolute": "Absolute", "Accept": "Přijmout", "AccessRestrictedTryAgainLater": "Přístup je v současné době omezen. Prosím zkuste to znovu později.", "Actor": "Herec", @@ -9,55 +8,37 @@ "AddToPlaylist": "Přidat do playlistu", "AddedOnValue": "Přidáno {0}", "Advanced": "Pokročilé", - "AirDate": "Air date", - "Aired": "Aired", "Albums": "Alba", "All": "Vše", "AllChannels": "Všechny kanály", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Všechny epizody", "AllLanguages": "Všechny jazyky", "AllowSeasonalThemes": "Povolit automatická sezónní témata", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", "AlwaysPlaySubtitles": "Vždy zobrazit titulky", "AlwaysPlaySubtitlesHelp": "Titulky odpovídající jazykové předvolbě se načtou bez ohledu na jazyk audia.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", "Anytime": "Kdykoliv", "AroundTime": "Okolo {0}", "Art": "Umění", "Artists": "Umělci", "AsManyAsPossible": "Tolikrát jak je možné", - "Ascending": "Ascending", "AspectRatio": "Poměr stran", "AttributeNew": "Nové", - "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Datový tok audia není podporován", "AudioChannelsNotSupported": "Audio kanály nejsou podporovány", "AudioCodecNotSupported": "Audio kodek není podporován", "AudioProfileNotSupported": "Audio profil není podporován", - "AudioSampleRateNotSupported": "Audio sample rate not supported", "Auto": "Automatizovat", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", "AutomaticallySyncNewContent": "Automaticky stahovat nový obsah", "AutomaticallySyncNewContentHelp": "Nový obsah přidaný do této složky bude automaticky stažen do zařízení.", "Backdrop": "Pozadí", "Backdrops": "Pozadí", - "Banner": "Banner", - "BestFit": "Best fit", "BirthLocation": "Místo narození", "Books": "Knihy", "Box": "Pouzdro", "BoxRear": "Zadní část pouzdra", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Zrušit", "ButtonGotIt": "Mám to", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Přehrát jednu minutu", - "ButtonRestart": "Restart", "ButtonRestorePreviousPurchase": "Obnovit nákup", "ButtonTryAgain": "Zkusit znovu", "ButtonUnlockPrice": "Odemknout {0}", @@ -72,9 +53,6 @@ "CinemaModeFeatureDescription": "S režimem Kino získate funkci, která před hlavním programem přehraje trailery a uživatelská intra.", "CloudSyncFeatureDescription": "Synchronizujte vaše média na cloud pro jednodušší zálohování, archivaci a konverzi.", "Collections": "Kolekce", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", "CommunityRating": "Hodnocení komunity", "Composer": "Skladatel", "ConfigureDateAdded": "Konfigurace přidání data je definována v nastavení knihovny v ovládacím panelu", @@ -85,19 +63,12 @@ "ConfirmEndPlayerSession": "Chcete vypnout Jellyfin na {0}?", "ConfirmRemoveDownload": "Odebrat stažení?", "Connect": "Připojit", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", "ContainerNotSupported": "Kontejner není podporován", "Continue": "Pokračovat", "ContinueInSecondsValue": "Pokračovat za {0} sekund.", "ContinueWatching": "Pokračovat ve sledování", "Continuing": "Pokračování", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Země", - "CriticRating": "Critic rating", "DateAdded": "Datum přidání", "DatePlayed": "Datum přehrání", "Days": "Dny", @@ -106,41 +77,29 @@ "DefaultSubtitlesHelp": "Titulky jsou načteny na základě výchozích a vynucených nastavení ve vložených metadatech. Jazykové preference jsou vzaty v úvahu, pokud je k dispozici více možností.", "Delete": "Odstranit", "DeleteMedia": "Odstranit média", - "Depressed": "Depressed", - "Descending": "Descending", "Desktop": "PC", - "DirectPlayError": "Direct play error", "DirectPlaying": "Přímé přehrání", "DirectStreamHelp1": "Médium je kompatibilní se zařízením, pokud jde o rozlišení a typ média (H.264, AC3, atd.), ale je v nekompatibilním kontejneru (.mkv, .avi, .wmv, atd.). Video bude za běhu přebaleno než bude streamováno do zařízení.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", "DirectStreaming": "Přímé streamování", "Director": "Režisér", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", "Disc": "Disk", "Disconnect": "Odpojit", "Dislike": "Nemám rád", "Display": "Zobrazení", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", "DisplayMissingEpisodesWithinSeasons": "Zobrazit chybějící epizody", "DisplayMissingEpisodesWithinSeasonsHelp": "Musí být zapnuto pro knihovny TV v nastavení Jellyfin Server", "DisplayModeHelp": "Zvolte typ obrazovky, na které používáte Jellyfin.", "DoNotRecord": "Nenahrávat", "Down": "Dolů", "Download": "Stáhnout", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Staženo", "Downloading": "Stahování", "DownloadingDots": "Stahování...", "Downloads": "Stahování", - "DownloadsValue": "{0} downloads", "DropShadow": "Vrhat stín", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR vyžaduje aktivní předplatné Jellyfin Premiere.", "Edit": "Upravit", "EditImages": "Editace obrázků", - "EditMetadata": "Edit metadata", "EditSubtitles": "Editovat titulky", "EnableBackdrops": "Povolit pozadí", "EnableBackdropsHelp": "Pokud je povoleno, pozadí je zobrazeno pro některé stránky při procházení vaší knihovny.", @@ -148,9 +107,7 @@ "EnableColorCodedBackgrounds": "Aktivovat barevně označené pozadí", "EnableDisplayMirroring": "Povolit zrcadlení obrazu", "EnableExternalVideoPlayers": "Povolit externí video přehrávače", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", "EnableNextVideoInfoOverlay": "Povolit informaci o následujícím videu během přehrávání", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", "EnableThemeSongs": "Povolit tématickou hudbu na pozadí", "EnableThemeSongsHelp": "Pokud povolíte, bude při procházení knihovny na pozadí přehrávána tématická melodie.", "EnableThemeVideos": "Povolit tématické video", @@ -163,27 +120,18 @@ "ErrorAddingGuestAccount2": "Pokud stále máte problémy, pošlete prosím e-mail na adresu {0} a přiložte Vaši i jejich e-mailovou adresu.", "ErrorAddingJellyfinConnectAccount1": "Nastala chyba při přidávání účtu Jellyfin Connect. Opravdu máte vytvořen účet u Jellyfin? Přihlaste se zde {0}.", "ErrorAddingJellyfinConnectAccount2": "Pokud stále máte problémy, pošlete prosím e-mail na adresu {0} z e-mailové adresy použité na účtu Jellyfin.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", "ErrorDeletingItem": "Nastala chyba při mazání položky z Jellyfin Serveru. Zkontrolujte prosím, že Jellyfin Server má oprávnění k zápisu do složky médií a zkuste to prosím znovu.", "ErrorReachingJellyfinConnect": "Došlo k chybě při navázání spojení k serveru Jellyfin Connect. Ujistěte se, zda je funkční připojení k internetu a zkuste to znovu.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", "ExtraLarge": "Extra velký", - "Extras": "Extras", "Favorite": "Oblíbené", "Favorites": "Oblíbené", "FeatureRequiresJellyfinPremiere": "Tato funkce vyžaduje aktivní předplatné Jellyfin Premiere.", - "Features": "Features", "File": "Soubor", "Fill": "Vyplnit", - "Filters": "Filters", - "Folders": "Folders", "FormatValue": "Formát: {0}", "FreeAppsFeatureDescription": "Užijte si výběr Jellyfin aplikací zdarma pro vaše zařízení.", "Friday": "Pátek", - "GenreValue": "Genre: {0}", "Genres": "Žánry", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "Skupinové verze", "GuestStar": "Hostující hvězda", "GuestUserNotFound": "Uživatel nenalezen. Prosím, ujistěte se, že název je správný a zkuste to znovu, nebo zkuste zadat jejich e-mailovou adresu.", @@ -195,7 +143,6 @@ "HeaderAddUpdateImage": "Přidat/Aktualizovat obrázek", "HeaderAlbumArtists": "Umělci alba", "HeaderAlreadyPaid": "Již zaplaceno?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Audio knihy", "HeaderAudioSettings": "Nastavení zvuku", "HeaderBecomeProjectSupporter": "Získat Jellyfin Premiere", @@ -208,7 +155,6 @@ "HeaderContinueListening": "Pokračovat v poslechu", "HeaderContinueWatching": "Pokračovat ve sledování", "HeaderConvertYourRecordings": "Konverze vašich nahrávek", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Smazat položku", "HeaderDeleteItems": "Odstranit položky", "HeaderDisplaySettings": "Nastavení zobrazení", @@ -216,17 +162,6 @@ "HeaderEditImages": "Editace obrázků", "HeaderEnabledFields": "Povolené pole", "HeaderEnabledFieldsHelp": "Zrušte zaškrtnutí, abyste zabránily změnám dat.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Jellyfin Apps zdarma", "HeaderHomeScreen": "Domovská obrazovka", "HeaderIdentifyItemHelp": "Zadejte jedno nebo více vyhledávacích kritérií. Odstraňte kritéria pro vyhledání více výsledků.", @@ -255,9 +190,7 @@ "HeaderOfflineDownloads": "Offline média", "HeaderOfflineDownloadsDescription": "Stáhnout média do vašeho zařízení pro snadné použití offline.", "HeaderOnNow": "Právě teď", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Přehrát moje Média", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "Chyba přehrávání", "HeaderRecordingOptions": "Nastavení nahrávání", "HeaderRemoteControl": "Dálkový ovladač", @@ -266,10 +199,8 @@ "HeaderSecondsValue": "{0} sekund", "HeaderSelectDate": "Vyber datum", "HeaderSeriesOptions": "Nastavení seriálu", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Infromace o speciální epizodě", "HeaderStartNow": "Začít teď", - "HeaderStopRecording": "Stop Recording", "HeaderSubtitleAppearance": "Vzhled titulků", "HeaderSubtitleSettings": "Nastavení titulků", "HeaderSyncRequiresSub": "Stahování vyžaduje aktivní předplatné Jellyfin Premiere.", @@ -278,14 +209,12 @@ "HeaderUnlockFeature": "Odemknout funkci", "HeaderUploadImage": "Nahrát obrázek", "HeaderVideoQuality": "Kvalita videa", - "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Čekání na Wifi", "HeaderYouSaid": "Zmínil ses...", "Help": "Nápověda", "Hide": "Skrýt", "HideWatchedContentFromLatestMedia": "Skrýt přehrané položky ze seznamu nejnovějších médií", "Home": "Domů", - "Horizontal": "Horizontal", "HowDidYouPay": "Jak chcete platit?", "IHaveJellyfinPremiere": "Již mám Jellyfin Premiere", "IPurchasedThisApp": "Tuto aplikaci mám již zaplacenu", @@ -297,7 +226,6 @@ "InterlacedVideoNotSupported": "Prokládané video není podporováno", "ItemCount": "{0} položek", "Items": "Položky", - "KeepDownload": "Keep download", "KeepOnDevice": "Ponechat na zařízení", "Kids": "Dětské", "Label3DFormat": "3D formát:", @@ -306,7 +234,6 @@ "LabelAirsAfterSeason": "Vysíláno po sezóně:", "LabelAirsBeforeEpisode": "Vysíláno před epizodou:", "LabelAirsBeforeSeason": "Vysíláno před sezónou:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Alba umělce:", "LabelArtists": "Úmělci", "LabelArtistsHelp": "Odděl pomocí ;", @@ -315,20 +242,16 @@ "LabelBirthDate": "Datum narození:", "LabelBirthYear": "Rok narození:", "LabelBitrateMbps": "Datový tok (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Kanály:", "LabelCollection": "Kolekce:", "LabelCommunityRating": "Hodnocení komunity:", "LabelContentType": "Typ obsahu:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Země:", "LabelCriticRating": "Hodnocení kritiků:", "LabelCustomRating": "Vlastní hodnocení:", "LabelDashboardTheme": "Téma hlavní nabídky serveru:", "LabelDateAdded": "Datum přidání:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Datum úmrtí:", - "LabelDefaultScreen": "Default screen:", "LabelDiscNumber": "Číslo disku:", "LabelDisplayLanguage": "Jazyk rozhraní:", "LabelDisplayLanguageHelp": "Překlad Jellyfin je projekt ve fázi neustálého vývoje.", @@ -336,15 +259,12 @@ "LabelDisplayOrder": "Pořadí zobrazení:", "LabelDropImageHere": "Sem přetáhněte obrázek nebo klikněte pro procházení.", "LabelDropShadow": "Vrhat stín:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-mailová adresa:", "LabelEndDate": "Datum ukončení:", "LabelEpisodeNumber": "Číslo epizody:", "LabelFont": "Písmo:", - "LabelHomeNetworkQuality": "Home network quality:", "LabelHomeScreenSectionValue": "Domovská obrazovka sekce {0}", "LabelImageType": "Typ obrázku:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "Limit položek:", "LabelKeep:": "Udržet:", "LabelKeepUpTo": "Aktualizovat k:", @@ -360,15 +280,12 @@ "LabelParentNumber": "Číslo rodičovského prvku", "LabelParentalRating": "Rodičovské hodnocení:", "LabelPath": "Cesta k souboru:", - "LabelPersonRole": "Role:", "LabelPersonRoleHelp": "Příklad: Řidič kamiónu se zmrzlinou", "LabelPlaceOfBirth": "Místo narození:", "LabelPlayDefaultAudioTrack": "Přehrávat defaultní audio stopu bez ohledu na jazyk", - "LabelPlaylist": "Playlist:", "LabelPreferredSubtitleLanguage": "Preferovaný jazyk titulků:", "LabelProfile": "Profil:", "LabelQuality": "Kvalita:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "Záznam:", "LabelRefreshMode": "Mód obnovy:", "LabelReleaseDate": "Datum vydání:", @@ -378,11 +295,8 @@ "LabelSelectFolderGroups": "Automaticky seskupit obsah z následujících složek do zobrazení, jako jsou Filmy, Hudba a TV:", "LabelSelectFolderGroupsHelp": "Složky, které nejsou zaškrtnuty budou zobrazeny ve vlastním pohledu.", "LabelShortOverview": "Hlavní linie:", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Délka posunu zpět:", "LabelSkipForwardLength": "Délka posunu vpřed:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Třídit dle názvu:", "LabelSoundEffects": "Zvukové efekty:", "LabelSource": "Zdroj:", @@ -392,9 +306,7 @@ "LabelSubtitlePlaybackMode": "Mód titulků:", "LabelSubtitles": "Titulky:", "LabelSyncJobName": "Název Sync úlohy:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Sync do:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Slogan:", "LabelTextBackgroundColor": "Barva pozadí textu:", "LabelTextColor": "Barva textu:", @@ -404,7 +316,6 @@ "LabelTrackNumber": "Číslo stopy:", "LabelType": "Typ:", "LabelVersion": "Verze:", - "LabelVideo": "Video:", "LabelWebsite": "Webové stránky:", "LabelWindowBackgroundColor": "Barva pozadí textu:", "LabelYear": "Rok:", @@ -413,19 +324,14 @@ "LearnHowYouCanContribute": "Zjistěte, jak můžete přispět.", "LearnMore": "Zjistit více", "Like": "Mám rád", - "LinksValue": "Links: {0}", "List": "Seznam", "Live": "Živě", "LiveBroadcasts": "Přímé přenosy", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "Live TV vyžaduje aktivní předplatné Jellyfin Premiere.", - "Logo": "Logo", "ManageRecording": "Spravovat nahrávání", "MarkPlayed": "Označit přehrané", "MarkUnplayed": "Označit nepřehrané", "MarkWatched": "Označit jako shlédnuté", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", "Medium": "Střední", "Menu": "Nabídka", "MessageActiveSubscriptionRequiredSeriesRecordings": "Aktivní předplatné Jellyfin Premiere je zapotřebí pro vytvoření automatického nahrávání řad.", @@ -434,8 +340,6 @@ "MessageDownloadQueued": "Stažení zařazeno.", "MessageFileReadError": "Došlo k chybě při čtení souboru. Prosím zkuste to znovu.", "MessageIfYouBlockedVoice": "Pokud byl Váš přístup odepřen pomocí hlasové aplikace, budete ji muset překonfigurovat před dalším pokusem.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "E-mail byl odeslán na adresu {0} s výzvou k registraci s Jellyfin.", "MessageInvitationSentToUser": "E-mail byl odeslán na adresu {0} a přijmutím této pozvnánky akceptujete vaší pozvánku ke sdílení.", "MessageItemSaved": "Položka uložena.", @@ -443,9 +347,7 @@ "MessageJellyfinAccontRemoved": "Účet Jellyfin byl odstraněn pro tohoto uživatele.", "MessageJellyfinAccountAdded": "Jellyfin účet byl přidáno k tomuto uživateli.", "MessageLeaveEmptyToInherit": "Při ponechání prázdné položky bude zděděno nastavení z položky nadřazené nebo z globální defaultní hodnoty.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", "MessageNoServersAvailableToConnect": "Žádné servery nejsou k dispozici. Pokud jste byli pozváni na sdílený server, ujistěte se, že jste pozvánku níže akceptovali nebo klikly na odkaz v e-mailu.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", "MessagePendingJellyfinAccountAdded": "Účet Jellyfin byl přidán pro tohoto uživatele. E-mail bude zaslán majiteli účtu. Pozvánku bude nutné potvrdit kliknutím na odkaz uvnitř e-mailu.", "MessagePlayAccessRestricted": "Přehrávání tohoto obsahu je momentálně omezeno. Pro více informací kontaktujte prosím Vašeho správce Jellyfin Serveru.", "MessageToValidateSupporter": "Pokud máte aktivní předplatné Jellyfin Premiere, ujistěte se, že máte nastaven Jellyfin Premiere v panelu Nastavení pod Nápověda -> Jellyfin Premiere.", @@ -480,7 +382,6 @@ "OneChannel": "Jeden kanál", "OnlyForcedSubtitles": "Pouze vynucené titulky", "OnlyForcedSubtitlesHelp": "Jen vynucené titulky budou nahrány.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Otevřít", "OptionNew": "Nový...", "Original": "Originál", @@ -503,13 +404,10 @@ "PlaybackErrorNoCompatibleStream": "Žádné kompatibilní streamy nejsou v současné době k dispozici. Zkuste to prosím později nebo pro více podrobností kontaktujte svého správce systému", "PlaybackErrorNotAllowed": "V současné době nejste oprávněni přehrávat tento obsah. Pro více informací se obraťte se na správce systému.", "PlaybackErrorPlaceHolder": "Pro přehrání videa nejdříve vložte disk", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Přehráno", "Playlists": "Playlisty", "PleaseEnterNameOrId": "Prosím, zadejte název nebo externí Id.", "PleaseRestartServerName": "Prosím, restartujte Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Vyberte nejméně dvě položky prosím.", "Premiere": "Premiéra", "Premieres": "Premiéry", @@ -522,14 +420,12 @@ "PromoConvertRecordingsToStreamingFormat": "Automaticky konvertovat nahrávky do doporučeného streamovacího formátu s Jellyfin Premiere. Nahrávky budou při přehrávání konvertovány do MP4 nebo MKV - dle nastavení Jellyfin server.", "Quality": "Kvalita", "QueueAllFromHere": "Zařadit vše do fronty", - "Raised": "Raised", "RecentlyWatched": "Nedávno shlédnuté", "Record": "Nahrávat", "RecordSeries": "Nahrát série", "RecordingCancelled": "Nahrávání zrušeno.", "RecordingScheduled": "Plán nahrávání.", "Recordings": "Nahrávky", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Obnovit", "RefreshDialogHelp": "Metadata se aktualizují na základě nastavení a internetových služeb, které jsou povoleny v nastavení Jellyfin Server.", "RefreshMetadata": "Obnovit metadata", @@ -565,7 +461,6 @@ "SearchResults": "Výsledky vyhledávání", "SecondaryAudioNotSupported": "Přepínání audio stopy není podporováno", "SeriesCancelled": "Série zrušena.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Plán nahrávání seriálu.", "SeriesSettings": "Nastavení seriálu", "SeriesYearToPresent": "{0} - Současnost", @@ -576,31 +471,21 @@ "SettingsSaved": "Nastavení uloženo.", "Share": "Sdílet", "ShowIndicatorsFor": "Zobrazit indikátor pro:", - "ShowTitle": "Show title", - "ShowYear": "Show year", "Shows": "Seriály", "Shuffle": "Náhodně", "SkipEpisodesAlreadyInMyLibrary": "Přeskočit nahrávání epizod, které jsou v knihovně", "SkipEpisodesAlreadyInMyLibraryHelp": "Epizody budou porovnávány s použitím období a čísla epizody, pokud jsou k dispozici.", "Small": "Malý", - "SmallCaps": "Small caps", - "Smaller": "Smaller", "Smart": "Chytrý", "SmartSubtitlesHelp": "Titulky budou načteny po porovnání s preferovaným jazykem, pokud je zvuk v cizím jazyce.", "Songs": "Skladby", - "Sort": "Sort", "SortByValue": "Třídit dle {0}", "SortChannelsBy": "Třídit kanály dle:", "SortName": "Setřídit dle názvu", "Sports": "Sport", - "StatsForNerds": "Stats for nerds", "StopRecording": "Zastavit nahrávání", "Studios": "Studia", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", "SubtitleCodecNotSupported": "Formát titulků není podporován", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Titulky", "Suggestions": "Návrhy", "Sunday": "Neděle", @@ -616,27 +501,19 @@ "SyncJobItemStatusTransferring": "Přenášení", "SyncUnwatchedVideosOnly": "Stáhnout pouze neshlédnutá videa", "SyncUnwatchedVideosOnlyHelp": "Pouze neshlédnutá videa budou stažena a budou odstraněna ze zařízení, jakmile je zhlédnete.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Tagy", - "TagsValue": "Tags: {0}", "TermsOfUse": "Podmínky použití", "ThankYouForTryingEnjoyOneMinute": "Prosím užijte si jednu minutu přehrávání. Děkujeme vám za vyzkoušení Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", "TheseSettingsAffectSubtitlesOnThisDevice": "Tato nastavení ovlivní titulky na tomto zařízení", "Thumb": "Miniatura", "Thursday": "Čtvrtek", "TrackCount": "{0} stop", "Trailer": "Ukázka/trailer", - "Trailers": "Trailers", "Transcoding": "Překódování", "TryMultiSelect": "Vyzkoušej multi-výběr", "TryMultiSelectMessage": "Chcete-li upravit více mediálních položek, stačí kliknout a podržet na kterémkoliv plakátu. Poté můžete vybrat více položek, které chcete spravovat. Zkus to!", "Tuesday": "Úterý", - "Uniform": "Uniform", "UnlockGuide": "Průvodce pro odemčení", - "Unplayed": "Unplayed", "Unrated": "Nehodnoceno", "UntilIDelete": "Dokud nesmažu", "UntilSpaceNeeded": "Do potřebného prostoru", @@ -646,35 +523,27 @@ "ValueDiscNumber": "Disk {0}", "ValueEpisodeCount": "{0} epizod", "ValueGameCount": "{0} her", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmů", "ValueMusicVideoCount": "{0} hudebních klipů", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 epizoda", "ValueOneGame": "1 hra", "ValueOneItem": "1 položka", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 hudební klip", "ValueOneSeries": "1 seriál", - "ValueOneSong": "1 song", "ValueSeconds": "{0} sekund", "ValueSeriesCount": "{0} seriálů", "ValueSongCount": "{0} songů", "ValueSpecialEpisodeName": "Speciál - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", "VideoCodecNotSupported": "Video kodek není podporován", "VideoFramerateNotSupported": "Snímková frekvence videa není podporována", - "VideoLevelNotSupported": "Video level not supported", "VideoProfileNotSupported": "Video profil není podporován", - "VideoRange": "Video range", "VideoResolutionNotSupported": "Rozlišení videa není podporováno", "ViewAlbum": "Zobrazit album", "ViewArtist": "Zobrazit úmělce", "VoiceInput": "Hlasový vstup", "Watched": "Shlédnuto", "Wednesday": "Středa", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Napsal", "Yes": "Ano" } diff --git a/src/bower_components/emby-webcomponents/strings/da.json b/src/bower_components/emby-webcomponents/strings/da.json index 61cfe345aa..3e1d8e9196 100644 --- a/src/bower_components/emby-webcomponents/strings/da.json +++ b/src/bower_components/emby-webcomponents/strings/da.json @@ -1,7 +1,5 @@ { - "Absolute": "Absolute", "Accept": "Godkend", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Skuespiller", "Add": "Tilføj", "AddToCollection": "Tilføj til samling", @@ -9,53 +7,17 @@ "AddToPlaylist": "Tilføj til afspilningsliste", "AddedOnValue": "Tilføjet {0}", "Advanced": "Avanceret", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", "AllChannels": "Alle kanaler", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Alle episoder", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", "Anytime": "Altid", "AroundTime": "Omkring {0}", - "Art": "Art", - "Artists": "Artists", "AsManyAsPossible": "Så mange som muligt", - "Ascending": "Ascending", "AspectRatio": "Billedformat", "AttributeNew": "Ny", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", "BestFit": "Bedste tilpasning", "BirthLocation": "Fødselslokation", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Annuller", "ButtonGotIt": "Forstået", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Afspil Ét Minut", "ButtonRestart": "Genstart", "ButtonRestorePreviousPurchase": "Genskab Indkøb", @@ -68,136 +30,50 @@ "Categories": "Kategorier", "ChannelNameOnly": "Udelukkende kanal {0}", "ChannelNumber": "Kanalnummer", - "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.", "CinemaModeFeatureDescription": "Biograftilstand giver dig den ægte biografoplevelse med trailers og brugertilpassede introer, før selve filmen.", "CloudSyncFeatureDescription": "Synk dine medier til skyen for nem backup, arkivering og konvertering.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "Komponist", "ConfigureDateAdded": "Konfigurer hvordan tilføjet-dato bestemmes, under Jellyfin Server-kontrolpanelet under Biblioteksindstillinger", "ConfirmDeleteImage": "Slet billede?", "ConfirmDeleteItem": "Hvis dette element slettes, fjernes det både fra dit filsystem samt din mediebibliotek. Er du sikker på du ønsker at fortsætte?", "ConfirmDeleteItems": "Sletning af disse emner vil både fjerne dem fra filsystemet og dit mediebibliotek. Er du sikker på at du vil fortsætte?", "ConfirmDeletion": "Bekræft sletning", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", "ConfirmRemoveDownload": "Fjern download?", "Connect": "Forbind", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", "Continue": "Fortsæt", "ContinueInSecondsValue": "Fortsæt om {0} sekunder.", - "ContinueWatching": "Continue watching", "Continuing": "Forsættes", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Lande", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Dage", - "Default": "Default", "DefaultErrorMessage": "Det opstod en fejl ved behandlingen af forespørgslen. Prøv igen senere.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Slet", "DeleteMedia": "Slet medie", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Instruktør", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", "Disconnect": "Afbryd", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "Optag ikke", - "Down": "Down", "Download": "Hent", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR påkræver et aktivt Jellyfin Premiere abonnement.", "Edit": "Rediger", "EditImages": "Rediger billeder", - "EditMetadata": "Edit metadata", "EditSubtitles": "Rediger undertekster", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "Aktiver biograftilstand", "EnableColorCodedBackgrounds": "Aktiver farvekodet baggrunde", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Færdig", "EndsAtValue": "Slutter {0}", - "Episodes": "Episodes", "Error": "Fejl", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Favorit", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "Denne funktion kræver et aktivt Jellyfin Premiere abonnement.", - "Features": "Features", "File": "Fil", "Fill": "Udfyld", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "God fornøjelse med gratis adgang til Jellyfin apps til dine enheder.", "Friday": "Fredag", - "GenreValue": "Genre: {0}", "Genres": "Genre", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "Grupér versioner", "GuestStar": "Gæsteskuespiller", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "HD-programmer", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Tilføj til samling", "HeaderAddToPlaylist": "Tilføj til afspilningsliste", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", "HeaderAlreadyPaid": "Allerede Betalt?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "Få Jellyfin Premiere", "HeaderBenefitsJellyfinPremiere": "Fordele ved Jellyfin Premiere", "HeaderCancelRecording": "Annuller Optagelse", @@ -205,152 +81,76 @@ "HeaderCinemaMode": "Biograftilstand", "HeaderCloudSync": "Sky-Synk", "HeaderConfirmRecordingCancellation": "Bekræft annullering af optagelse", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", "HeaderConvertYourRecordings": "Konverter Dine Optagelser", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Slet element", "HeaderDeleteItems": "Slet emner", "HeaderDisplaySettings": "Visningsindstillinger", - "HeaderDownloadSettings": "Download Settings", "HeaderEditImages": "Rediger billeder", "HeaderEnabledFields": "Aktivér Felter", "HeaderEnabledFieldsHelp": "Fjern fluebenet fra et felt for at låse det og forhindre dets data fra at blive ændret.", "HeaderExternalIds": "Eksterne ID'er:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Gratis Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", "HeaderIdentifyItemHelp": "Indtast et eller flere søgekriterier.Fjern kriterier for at få flere søgeresultater.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", "HeaderKeepRecording": "Bevar Optagelse", "HeaderKeepSeries": "Bevar Serie", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLearnMore": "Lær Mere", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", "HeaderMetadataSettings": "Indstillinger for metadata", - "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "Min Enhed", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "Ny optagelse", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "Offline Medie", "HeaderOfflineDownloadsDescription": "Download medier til dine enheder for nem offline-brug.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Afspil mit Medie", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "Fejl i afspilning", "HeaderRecordingOptions": "Optagelsesindstillinger", "HeaderRemoteControl": "Fjernbetjening", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "Sig noget i stil med...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Vælg dato", "HeaderSeriesOptions": "Serieindstillinger", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Information om specialepisoder", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", "HeaderTryPlayback": "Prøv Afspilning", "HeaderUnlockFeature": "Lås op for Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", "HeaderYouSaid": "Du sagde...", "Help": "Hjælp", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "Hvordan betalte du?", "IHaveJellyfinPremiere": "Jeg har Jellyfin Premiere", "IPurchasedThisApp": "Jeg købte denne app", "Identify": "Identificer", "Images": "Billeder", - "ImdbRating": "IMDb rating", "InstallingPackage": "Installerer {0}", "InstantMix": "Instant Mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} elementer", "Items": "emner", - "KeepDownload": "Keep download", "KeepOnDevice": "Bevar på enhed", "Kids": "Børn", - "Label3DFormat": "3D format:", "LabelAirDays": "Sendedage:", "LabelAirTime": "Sendetid:", "LabelAirsAfterSeason": "Sendes efter sæson:", "LabelAirsBeforeEpisode": "Sendes før episode:", "LabelAirsBeforeSeason": "Sendes før sæson:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Albumartister:", "LabelArtists": "Artister:", "LabelArtistsHelp": "Angiv flere ved at sætte ; mellem dem.", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "Fødselsdato:", "LabelBirthYear": "Fødselsår:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Kanaler:", "LabelCollection": "Samling:", "LabelCommunityRating": "Fællesskabsvurdering:", "LabelContentType": "Indholdstype:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Land:", "LabelCriticRating": "Kritikervurdering:", "LabelCustomRating": "Brugerdefineret bedømmelse:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Dato for tilføjelse:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Dødsdato:", - "LabelDefaultScreen": "Default screen:", "LabelDiscNumber": "Disk-nummer", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Visningsorden:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Email-adresse:", "LabelEndDate": "Slutdato:", "LabelEpisodeNumber": "Episodenummer:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "Maks. filer:", "LabelKeep:": "Bevar:", "LabelKeepUpTo": "Bevar op til:", "LabelLanguage": "Sprog:", "LabelLockItemToPreventChanges": "Lås for at undgå fremtidige ændringer", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Foretrukket sprog for nedhentning:", "LabelName": "Navn:", "LabelNumber": "Nummer:", @@ -363,100 +163,42 @@ "LabelPersonRole": "Rolle:", "LabelPersonRoleHelp": "Eksempel: Isbilschauffør", "LabelPlaceOfBirth": "Fødselssted:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Afspilningsliste:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "Profil:", "LabelQuality": "Kvalitet:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "Optag:", "LabelRefreshMode": "Genopfrisk tilstand:", "LabelReleaseDate": "Udgivelsesdato:", "LabelRuntimeMinutes": "Spilletid (minutter):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "Sæsonnummer:", - "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.", "LabelShortOverview": "Kort oversigt:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Sortér titel:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", "LabelStartWhenPossible": "Start når muligt:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stop når muligt:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "Navn til synkroniserings job:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Synkroniser til:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", "LabelTitle": "Titel:", "LabelTrackNumber": "Spor nummer:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "Hjemmeside:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Lær mere", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", "LiveBroadcasts": "Live-udsending", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "Markér som afspillet", "MarkUnplayed": "Markér som ikke afspillet", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Et aktivt Jellyfin Premiere abonnement er nødvendigt for at oprette automatiserede optagelser af serier.", "MessageAreYouSureDeleteSubtitles": "Er du sikker på du ønsker at slette denne undertekstfil?", "MessageConfirmRecordingCancellation": "Er du sikker på du ønsker at annullere denne optagelse?", "MessageDownloadQueued": "Download sat i kø.", - "MessageFileReadError": "There was an error reading the file. Please try again.", "MessageIfYouBlockedVoice": "Hvis du afslog adgang til tale for appen, skal du re-konfigurere før du prøver igen.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Element gemt.", "MessageItemsAdded": "Emne tilføjet.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "Efterlad tom for at arve indstillinger fra en overliggende post eller den globale standardværdi.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "Hvis du har et aktivt Jellyfin Premiere abonnement, skal du være sikker på at Jellyfin Premiere er konfigureret i dit Jellyfin Server-kontrolpanel, som kan tilgåes ved at klikke på Jellyfin Premiere i hovedmenuen.", "MessageUnlockAppWithPurchaseOrSupporter": "Lås op for dette feature med en lille enkeltstående betaling, eller med et aktivt Jellyfin Premiere abonnement.", "MessageUnlockAppWithSupporter": "Lås op for dette feature med et aktivt Jellyfin Premiere abonnement.", "MessageWeDidntRecognizeCommand": "Beklager, men vi genkendte ikke denne kommando.", "MinutesAfter": "minutter efter", "MinutesBefore": "minutter før", - "Mobile": "Mobile / Tablet", "Monday": "Mandag", - "More": "More", "MoveLeft": "Flyt mod venstre", "MoveRight": "Flyt mod højre", "Movies": "Film", @@ -468,19 +210,9 @@ "NewEpisodes": "Nye episoder", "NewEpisodesOnly": "Kun nye episoder", "News": "Nyheder", - "Next": "Next", - "No": "No", "NoItemsFound": "Ingen emner fundet.", "NoSubtitleSearchResultsFound": "Ingen resultater fundet.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", "OneChannel": "En kanal", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Åben", "OptionNew": "Ny...", "Original": "Standard", @@ -491,48 +223,27 @@ "PackageInstallFailed": "{0} installationen mislykkedes.", "ParentalRating": "Parental Rating", "People": "Personer", - "PerfectMatch": "Perfect match", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Placer favoritkanaler i begyndelsen", "Play": "Afspil", "PlayAllFromHere": "Afspil alt fra her", - "PlayCount": "Play count", "PlayFromBeginning": "Afspil fra begyndelsen", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Afspillet", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Indtast venligst et navn eller eksternt Id.", "PleaseRestartServerName": "Genstart venligst Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Vælg venligst mindst to elementer.", - "Premiere": "Premiere", "Premieres": "Premiere", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "Producent", "ProductionLocations": "Produktionslokationer", - "Programs": "Programs", "PromoConvertRecordingsToStreamingFormat": "Konverter automatisk optagelser til streaming-venlige formater med Jellyfin Premiere. Optagelser bliver konverteret on-the-fly til MP4 eller MKV, afhængigt af dine Jellyfin serverindstillinger.", "Quality": "Kvalitet", "QueueAllFromHere": "Set alt her i kø", - "Raised": "Raised", "RecentlyWatched": "Nyligt sete", "Record": "Optag", "RecordSeries": "Optag serie", "RecordingCancelled": "Optagelse annulleret.", "RecordingScheduled": "Optagelse planlagt.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Opdater", "RefreshDialogHelp": "Metadata opdateres alt efter hvilke indstillinger og internet-servicer der er aktiveret i Jellyfin Server-kontrolpanelet.", - "RefreshMetadata": "Refresh metadata", "RefreshQueued": "Opdatering sat i kø", "Reject": "Afvis", "ReleaseDate": "Udgivelsesdato", @@ -541,31 +252,21 @@ "RemoveFromPlaylist": "Fjer fra afspilningsliste", "RemovingFromDevice": "Fjerner fra enhed", "Repeat": "Gentag", - "RepeatAll": "Repeat all", "RepeatEpisodes": "Gentag episoder", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", "ReplaceAllMetadata": "Erstat alle metadata", "ReplaceExistingImages": "Erstat eksisterende billeder", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Genoptag fra {0}", "Retry": "Prøv igen", - "RunAtStartup": "Run at startup", "Runtime": "Afspilningstid", "Saturday": "Lørdag", "Save": "Gem", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", "Screenshots": "Skærmbilleder", "Search": "Søg", "SearchForCollectionInternetMetadata": "Søg på internettet efter billeder og metadata", "SearchForMissingMetadata": "Søg efter manglende metadata", "SearchForSubtitles": "Søg efter undertekster", "SearchResults": "Søgeresultater", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "Serie annulleret.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Optagning af serie planlagt.", "SeriesSettings": "Serieindstillinger", "SeriesYearToPresent": "{0} - Nuværende", @@ -573,36 +274,16 @@ "ServerNameIsShuttingDown": "Jellyfin Server - {0} lukker ned.", "ServerUpdateNeeded": "Denne Jellyfin server bør opdateres. For at downloade den nyeste version besøg venligst {0}", "Settings": "Indstillinger", - "SettingsSaved": "Settings saved.", "Share": "Del", "ShowIndicatorsFor": "Vis indikatorer for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "Bland", "SkipEpisodesAlreadyInMyLibrary": "Optag ikke episoder som allerede findes i mit bibliotek", "SkipEpisodesAlreadyInMyLibraryHelp": "Episoder bliver sammenlignet på sæson og episodenummer, når muligt.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", "SortChannelsBy": "Sortér kanaler efter:", "SortName": "Sorteringsnavn", "Sports": "Sport", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "Studier", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Undertekster", - "Suggestions": "Suggestions", "Sunday": "Søndag", "Sync": "Synk", "SyncJobItemStatusCancelled": "Annulleret", @@ -614,67 +295,33 @@ "SyncJobItemStatusSynced": "Downloadet", "SyncJobItemStatusSyncedMarkForRemoval": "Fjerner fra enhed", "SyncJobItemStatusTransferring": "Overfører", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", "ThankYouForTryingEnjoyOneMinute": "Nyd venligst et minuts afspilning. Tak fordi du prøver Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Torsdag", "TrackCount": "{0} numre", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", "TryMultiSelect": "Prøv Multi-Valg", "TryMultiSelectMessage": "For at redigere adskillige emner, skal du blot klikke og holde på hvilken som helst plakat og vælge de emner du vil administrere. Prøv det!", "Tuesday": "Tirsdag", - "Uniform": "Uniform", "UnlockGuide": "Oplås guide", - "Unplayed": "Unplayed", "Unrated": "Ingen bedømmelse", "UntilIDelete": "Til jeg sletter", "UntilSpaceNeeded": "Til pladsen er nødvendig", - "Up": "Up", - "Upload": "Upload", "ValueAlbumCount": "{0} album", "ValueDiscNumber": "Disk {0}", "ValueEpisodeCount": "{0} episoder", "ValueGameCount": "{0} spil", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} film", "ValueMusicVideoCount": "{0} musikvideoer", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", "ValueOneGame": "1 spil", "ValueOneItem": "1 emne", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 musikvideo", "ValueOneSeries": "1 serie", "ValueOneSong": "1 sang", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} serier", "ValueSongCount": "{0} sange", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "Vis album", "ViewArtist": "Vis kunstner", "VoiceInput": "Taleinput", - "Watched": "Watched", "Wednesday": "Onsdag", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Forfatter", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/de.json b/src/bower_components/emby-webcomponents/strings/de.json index 7d1a1acc51..c378a98a40 100644 --- a/src/bower_components/emby-webcomponents/strings/de.json +++ b/src/bower_components/emby-webcomponents/strings/de.json @@ -26,7 +26,6 @@ "AnyLanguage": "Jede Sprache", "Anytime": "Jederzeit", "AroundTime": "Um {0}", - "Art": "Art", "Artists": "Interpreten", "AsManyAsPossible": "So viele wie möglich", "Ascending": "Aufsteigend", @@ -38,7 +37,6 @@ "AudioCodecNotSupported": "Audio Codec nicht unterstützt", "AudioProfileNotSupported": "Audio Profil nicht unterstützt", "AudioSampleRateNotSupported": "Audio Sample Rate nicht unterstützt", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Automatisch (basierend auf Spracheinstellung)", "AutomaticallyConvertNewContent": "Konvertiere neue Inhalte automatisch", "AutomaticallyConvertNewContentHelp": "Neue Inhalte in diesem Ordner werden automatisch konveriert.", @@ -46,16 +44,13 @@ "AutomaticallySyncNewContentHelp": "Neu zu diesem Ordner hinzugefügte Inhalte werden automatisch auf das Gerät heruntergeladen.", "Backdrop": "Hintergrund", "Backdrops": "Hintergründe", - "Banner": "Banner", "BestFit": "Beste Übereinstimmung", "BirthLocation": "Geburtsort", "Books": "Bücher", - "Box": "Box", "BoxRear": "Box (Rückseite)", "BurnSubtitlesHelp": "Legt fest, ob der Server die Untertitel basierend auf deren Format einbrennen soll während der Videokonvertierung. Die Vermeidung des Einbrennen von Untertiteln verbessert die Serverperformance. Wähle Auto, um Bildfomate (z.B. VOBSUB, PGS, SUB/IDX, etc.) sowie bestimmte ASS/SSA-Untertitel einbrennen zu lassen.", "ButtonCancel": "Abbrechen", "ButtonGotIt": "Verstanden", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Eine Minute wiedergeben", "ButtonRestart": "Neustart", "ButtonRestorePreviousPurchase": "Kauf wiederherstellen", @@ -72,9 +67,7 @@ "CinemaModeFeatureDescription": "Der Cinema Mode bringt das richtige Kinogefühl mit Trailern und eigenen Intros vor dem Hauptfilm.", "CloudSyncFeatureDescription": "Synchronisiere deine Medien in die Cloud für ein Backup, eine Archivierung und Konvertierung.", "Collections": "Sammlungen", - "ColorPrimaries": "Color primaries", "ColorSpace": "Farbraum", - "ColorTransfer": "Color transfer", "CommunityRating": "Community Bewertung", "Composer": "Komponist", "ConfigureDateAdded": "Bestimme in den Bibliotheks-Einstellungen des Jellyfin Server Dashboards, wie das Feld \"Hinzugefügt am\" interpretiert werden soll.", @@ -108,7 +101,6 @@ "DeleteMedia": "Medien löschen", "Depressed": "Gedrückt", "Descending": "Absteigend", - "Desktop": "Desktop", "DirectPlayError": "Fehler bei der direkten Wiedergabe", "DirectPlaying": "Direktes Abspielen", "DirectStreamHelp1": "Das Medium ist mit dem Abspielgerät kompatibel bzgl. Auflösung und Codecs (H.264, AC3, etc.), besitzt jedoch einen inkompatiblen Dateicontainer (.mkv, .avi, .wmv, etc.). Das Video wird in Echtzeit neugepackt bevor es zum Abspielgerät gestreamt wird.", @@ -128,12 +120,10 @@ "DisplayModeHelp": "Bitte wähle den Typ des Bildschirms auf dem Du Jellyfin verwendest.", "DoNotRecord": "Nicht aufnehmen", "Down": "Runter", - "Download": "Download", "DownloadItemLimitHelp": "Optional. Lege die maximale Anzahl der herunterzuladenden Dateien fest.", "Downloaded": "Heruntergeladen", "Downloading": "Lädt herunter", "DownloadingDots": "Lädt herunter...", - "Downloads": "Downloads", "DownloadsValue": "{0} Downloads", "DropShadow": "Schlagschatten", "DvrFeatureDescription": "Plane individuelle Aufnahmen von Live-TV, Serien und mehr mit Jellyfin DVR.", @@ -168,21 +158,15 @@ "ErrorReachingJellyfinConnect": "Fehler bei der Verbindung zum Jellyfin Connect Server. Stelle bitte sicher, dass du über eine aktive Internetverbindung verfügst und versuche es erneut.", "ErrorRemovingJellyfinConnectAccount": "Fehler beim Entfernen des Jellyfin Connect Kontos. Bitte stelle sicher, dass du über eine aktive Internetverbindung verfügst und versuche es erneut.", "ExtraLarge": "Extragroß", - "Extras": "Extras", "Favorite": "Favorit", "Favorites": "Favoriten", "FeatureRequiresJellyfinPremiere": "Dieses Feature benötigt eine aktive Jellyfin Premiere Mitgliedschaft.", - "Features": "Features", "File": "Datei", "Fill": "Ausfüllen", "Filters": "Filter", "Folders": "Verzeichnisse", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Genieße Zugriff auf kostenlose Jellyfin Apps für deine Geräte.", "Friday": "Freitag", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", "GroupBySeries": "Nach Serien gruppieren", "GroupVersions": "Gruppiere Versionen", "GuestStar": "Gaststar", @@ -284,8 +268,6 @@ "Help": "Hilfe", "Hide": "Verstecke", "HideWatchedContentFromLatestMedia": "Verberge gesehene Inhalte von neuesten Medien.", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "Wie hast Du bezahlt?", "IHaveJellyfinPremiere": "Ich besitze Jellyfin Premiere", "IPurchasedThisApp": "Ich habe diese App gekauft", @@ -306,15 +288,12 @@ "LabelAirsAfterSeason": "Ausstrahlungen nach Staffel:", "LabelAirsBeforeEpisode": "Ausstrahlungen vor Episode:", "LabelAirsBeforeSeason": "Ausstrahlungen vor Staffel:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Alben Interpreten:", "LabelArtists": "Interpreten:", "LabelArtistsHelp": "Trenne mehrere Einträge durch ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Bevorzugte Audiosprache:", "LabelBirthDate": "Geburtsdatum:", "LabelBirthYear": "Geburtsjahr:", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBurnSubtitles": "Untertitel einbrennen:", "LabelChannels": "Kanäle:", "LabelCollection": "Sammlung:", @@ -336,7 +315,6 @@ "LabelDisplayOrder": "Anzeigereihenfolge:", "LabelDropImageHere": "Fotos hierher ziehen oder klicken im zu browsen.", "LabelDropShadow": "Schlagschatten:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-Mail Adresse:", "LabelEndDate": "Endzeit:", "LabelEpisodeNumber": "Episodennummer:", @@ -352,7 +330,6 @@ "LabelLockItemToPreventChanges": "Sperre diesen Eintrag um zukünftige Änderungen zu verhindern", "LabelMaxChromecastBitrate": "Max Chromcast Datenrate:", "LabelMetadataDownloadLanguage": "Bevorzugte Sprache für Downloads:", - "LabelName": "Name:", "LabelNumber": "Nummer:", "LabelOriginalAspectRatio": "Original Seitenverhältnis:", "LabelOriginalTitle": "Original Titel:", @@ -378,7 +355,6 @@ "LabelSelectFolderGroups": "Gruppiere Inhalte von folgenden Verzeichnissen automatisch zu Ansichten wie beispielsweise Filme, Musik und TV:", "LabelSelectFolderGroupsHelp": "Verzeichnisse die nicht markiert sind werden alleine mit ihren eigenen Ansichten angezeigt.", "LabelShortOverview": "Kurzübersicht:", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Sprungweite rückwärts:", "LabelSkipForwardLength": "Sprungweite vorwärts:", "LabelSortBy": "Sortiert nach:", @@ -387,7 +363,6 @@ "LabelSoundEffects": "Soundeffekte:", "LabelSource": "Quelle:", "LabelStartWhenPossible": "Starte wenn möglich:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stoppe wenn möglich", "LabelSubtitlePlaybackMode": "Untertitelmodus:", "LabelSubtitles": "Untertitel:", @@ -395,17 +370,12 @@ "LabelSyncNoTargetsHelp": "Es sieht so aus als würdest du aktuell keine Apps verwenden, die Offline-Downloads unterstützen.", "LabelSyncTo": "Synchronisiere mit:", "LabelTVHomeScreen": "TV-Mode Startseite", - "LabelTagline": "Tagline:", "LabelTextBackgroundColor": "Hintergrundfarbe des Textes:", "LabelTextColor": "Textfarbe:", "LabelTextSize": "Textgröße", - "LabelTheme": "Theme:", "LabelTitle": "Titel:", "LabelTrackNumber": "Stück Nummer:", "LabelType": "Typ:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", "LabelWindowBackgroundColor": "Hintergrundfarbe des Textes:", "LabelYear": "Jahr:", "Large": "Groß", @@ -413,14 +383,10 @@ "LearnHowYouCanContribute": "Erfahre, wie du unterstützen kannst.", "LearnMore": "Erfahre mehr", "Like": "Mag ich", - "LinksValue": "Links: {0}", "List": "Liste", - "Live": "Live", "LiveBroadcasts": "Liveübertragungen", - "LiveTV": "Live TV", "LiveTvFeatureDescription": "Streame Live TV zu jeder Jellyfin App mit einem kompatiblen TV Tuner , der auf deinem Jellyfin Server installiert ist.", "LiveTvRequiresUnlock": "Live TV benötigt eine aktive Jellyfin Premiere Mitgliedschaft.", - "Logo": "Logo", "ManageRecording": "Aufnahme verwalten", "MarkPlayed": "Markiere \"als gesehen\"", "MarkUnplayed": "Markiere \"als ungesehen\"", @@ -434,8 +400,6 @@ "MessageDownloadQueued": "Download eingereiht.", "MessageFileReadError": "Es gab einen Fehler beim Lesen der Datei. Bitte versuche es erneut.", "MessageIfYouBlockedVoice": "Wenn du die Sprachsteuerung für die App nicht erlaubt hast, musst du dies vor einem erneuten Versuch ändern.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Eine Email wurde an {0} mit einer Einladung zur Anmeldung an Jellyfin gesendet.", "MessageInvitationSentToUser": "Eine E-Mail mit der Einladung zum Sharing ist an {0} geschickt worden.", "MessageItemSaved": "Element gespeichert", @@ -461,7 +425,6 @@ "MoveRight": "Nach rechts bewegen", "Movies": "Filme", "MySubtitles": "Meine Untertitel", - "Name": "Name", "NewCollection": "Neue Collection", "NewCollectionHelp": "Sammlungen ermöglichen personallisierte Gruppen von Filmen oder anderen Medien.", "NewCollectionNameExample": "Beispiel: Star Wars Collection", @@ -475,7 +438,6 @@ "NoSubtitles": "Keine Untertitel", "NoSubtitlesHelp": "Untertitel werden standardmäßig nicht geladen. Sie können aber während der Wiedergabe manuell aktiviert werden.", "None": "Keines", - "Normal": "Normal", "Off": "Aus", "OneChannel": "Ein Kanal", "OnlyForcedSubtitles": "Nur erzwungene Untertitel", @@ -483,7 +445,6 @@ "OnlyImageFormats": "Nur Bildformate (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Öffnen", "OptionNew": "Neu...", - "Original": "Original", "OriginalAirDateValue": "Erstausstrahlung: {0}", "Overview": "Übersicht", "PackageInstallCancelled": "{0} Installation abgebrochen", @@ -503,7 +464,6 @@ "PlaybackErrorNoCompatibleStream": "Derzeit sind keine kompatiblen Stream verfügbar. Bitte versuche es später nochmal oder kontaktiere deinen Systemadministrator für weitere Informationen.", "PlaybackErrorNotAllowed": "Die verfügst derzeit über keine Berechtigung um diesen Inhalt abzuspielen. Bitte kontaktiere deinen Systemadministrator für weitere Informationen.", "PlaybackErrorPlaceHolder": "Bitte lege die Disc ein um das Video abzuspielen.", - "PlaybackSettings": "Playback settings", "PlaybackSettingsIntro": "Um die Wiedergabeeinstellungen zu ändern, stoppen Sie die Wiedergabe und klicken Sie auf Ihr Benutzer-Icon in der oberen rechten Ecke der App.", "Played": "Gesehen", "Playlists": "Wiedergabelisten", @@ -511,7 +471,6 @@ "PleaseRestartServerName": "Bitte starte Jellyfin Server - {0} neu.", "PleaseSelectDeviceToSyncTo": "Bitte wähle ein Download-Zielgerät.", "PleaseSelectTwoItems": "Bitte wähle mindestens zwei Optionen aus.", - "Premiere": "Premiere", "Premieres": "Premieren", "Previous": "Vorheriges", "Primary": "Primär", @@ -557,7 +516,6 @@ "ScanForNewAndUpdatedFiles": "Scanne nach neuen und aktualisierten Dateien", "Schedule": "Zeitplan", "Screenshot": "Bildschirmfoto", - "Screenshots": "Screenshots", "Search": "Suche", "SearchForCollectionInternetMetadata": "Suche im Internet nach Bildmaterial und Metadaten", "SearchForMissingMetadata": "Suche nach fehlenden Metadaten", @@ -585,9 +543,7 @@ "Small": "Klein", "SmallCaps": "Kapitälchen", "Smaller": "Kleiner", - "Smart": "Smart", "SmartSubtitlesHelp": "Untertitel, die den Spracheinstellungen entsprechen, werden nur bei einer Tonspur in fremder Sprache heruntergeladen.", - "Songs": "Songs", "Sort": "Sortieren", "SortByValue": "Sortieren nach {0}", "SortChannelsBy": "Sortiere Kanäle nach:", @@ -595,11 +551,9 @@ "Sports": "Sport", "StatsForNerds": "Statistiken für Tüftler", "StopRecording": "Aufnahme stoppen", - "Studios": "Studios", "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Diese Einstellungen werden auch auf jede Chromecast-Wiedergabe angewendet, die von diesem Gerät gestartet wird.", "SubtitleAppearanceSettingsDisclaimer": "Diese Einstellungen werden nicht auf grafische Untertitel (PGS, DVD, etc.) oder Untertitel mit eingebettetem Style-Elementen (ASS/SSA) angewendet.", "SubtitleCodecNotSupported": "Untertitelformat nicht unterstützt", - "SubtitleSettings": "Subtitle settings", "SubtitleSettingsIntro": "Um das Aussehen der Untertitel und die Spracheinstellungen zu ändern, stoppen Sie die Wiedergabe und klicken Sie auf Ihr Benutzer-Icon in der oberen rechten Ecke der App.", "Subtitles": "Untertitel", "Suggestions": "Empfehlungen", @@ -617,20 +571,14 @@ "SyncUnwatchedVideosOnly": "Lade nur ungesehene Videos herunter", "SyncUnwatchedVideosOnlyHelp": "Nur ungesehene Video werden heruntergeladen. Videos werden entfernt sobald diese auf dem Gerät angeschaut wurden.", "SyncingDots": "Synchronisieren...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", "TermsOfUse": "Nutzungsbedingungen", "ThankYouForTryingEnjoyOneMinute": "Genieße eine Minute Wiedergabe. Danke, dass du Jellyfin ausprobierst.", "ThemeSongs": "Titelsongs", "ThemeVideos": "Titelvideos", "TheseSettingsAffectSubtitlesOnThisDevice": "Diese Einstellungen beeinflussen Untertitel auf diesem Gerät", - "Thumb": "Thumb", "Thursday": "Donnerstag", "TrackCount": "{0} Titel", - "Trailer": "Trailer", "Trailers": "Trailer", - "Transcoding": "Transcoding", "TryMultiSelect": "Versuche Mehrfachauswahl", "TryMultiSelectMessage": "Für eine Mehrfachauswahl klicke und halte ein Poster. Wähle die Einträge die du bearbeiten möchten. Versuch es!", "Tuesday": "Dienstag", @@ -643,7 +591,6 @@ "Up": "Hoch", "Upload": "Hochladen", "ValueAlbumCount": "{0} Alben", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} Episoden", "ValueGameCount": "{0} Spiele", "ValueMinutes": "{0} Minuten", @@ -660,14 +607,12 @@ "ValueSeconds": "{0} Sekunden", "ValueSeriesCount": "{0} Serien", "ValueSongCount": "{0} Lieder", - "ValueSpecialEpisodeName": "Special - {0}", "Vertical": "Vertikal", "VideoBitDepthNotSupported": "Videobittiefe nicht unterstützt", "VideoCodecNotSupported": "Video Codec nicht unterstützt", "VideoFramerateNotSupported": "Videoframerate nicht unterstützt", "VideoLevelNotSupported": "Video Level nicht unterstützt", "VideoProfileNotSupported": "Videoprofil nicht unterstützt", - "VideoRange": "Video range", "VideoResolutionNotSupported": "Video Auflösung nicht unterstützt", "ViewAlbum": "Zeige Album", "ViewArtist": "Zeige Darsteller", diff --git a/src/bower_components/emby-webcomponents/strings/el.json b/src/bower_components/emby-webcomponents/strings/el.json index 2997301643..7c9536a419 100644 --- a/src/bower_components/emby-webcomponents/strings/el.json +++ b/src/bower_components/emby-webcomponents/strings/el.json @@ -51,11 +51,9 @@ "BirthLocation": "Τόπος γέννησης:", "Books": "Βιβλία", "Box": "Κουτί", - "BoxRear": "Box (rear)", "BurnSubtitlesHelp": "Καθορίζει αν ο διακομιστής πρέπει να εγγράψει στους υπότιτλους κατά τη μετατροπή βίντεο ανάλογα με τη μορφή των υπότιτλων. Η αποφυγή της εγγραφής στους υπότιτλους θα βελτιώσει την απόδοση του διακομιστή. Επιλέξτε Αυτόματα για να εγγράψετε μορφές βασισμένες σε εικόνες (π.χ. VOBSUB, PGS, SUB / IDX κ.λπ.) καθώς και ορισμένους υπότιτλους ASS / SSA", "ButtonCancel": "Ακύρωση ", "ButtonGotIt": "Το κατάλαβα", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Αναπαραγωγή για ένα λεπτό", "ButtonRestart": "Επανεκκίνηση", "ButtonRestorePreviousPurchase": "Επαναφορά αγοράς", @@ -72,7 +70,6 @@ "CinemaModeFeatureDescription": "Η λειτουργία Κινηματογράφου σάς προσφέρει την πραγματική κινηματογραφική εμπειρία με ρυμουλκούμενα και προσαρμοσμένες intros πριν από τη λειτουργία.", "CloudSyncFeatureDescription": "Συγχρονίστε τα πολυμέσα σας στο cloud για εύκολη δημιουργία αντιγράφων ασφαλείας, αρχειοθέτηση και μετατροπή.", "Collections": "Συλλογές", - "ColorPrimaries": "Color primaries", "ColorSpace": "Χρωματικός χώρος", "ColorTransfer": "Μεταφορά χρώματος", "CommunityRating": "Βαθμολογία Κοινότητας", @@ -303,9 +300,6 @@ "Label3DFormat": "Τρισδιάστατη φόρμα", "LabelAirDays": "Ημέρες κυκλοφορίας:", "LabelAirTime": "Ώρα κυκλοφορίας", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", "LabelAlbum": "Άλμπουμ", "LabelAlbumArtists": "Άλμπουμ Καλλιτέχνες", "LabelArtists": "Καλλιτέχνες:", @@ -314,7 +308,6 @@ "LabelAudioLanguagePreference": "Προτιμώμενη γλώσσα ήχου:", "LabelBirthDate": "Ημερομηνία Γενεθλίων:", "LabelBirthYear": "Έτος Γέννησης:", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBurnSubtitles": "Εγγραφή υπότιτλων:", "LabelChannels": "Κανάλια:", "LabelCollection": "Συλλογή:", @@ -336,7 +329,6 @@ "LabelDisplayOrder": "Σειρά εμφάνισης:", "LabelDropImageHere": "Κάντε κλικ εδώ, ή κάντε κλικ για να περιηγηθείτε.", "LabelDropShadow": "Σκίαση:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Διεύθυνση E-mail", "LabelEndDate": "Ημερομηνία Λήξης:", "LabelEpisodeNumber": "Νούμερο Επεισοδίου:", @@ -378,7 +370,6 @@ "LabelSelectFolderGroups": "Αυτόματη ομαδοποίηση περιεχομένου από τους ακόλουθους φακέλους σε προβολές όπως ταινίες, μουσική και τηλεόραση:", "LabelSelectFolderGroupsHelp": "Οι φάκελοι που δεν έχουν επιλεγεί θα εμφανίζονται από μόνοι τους στη δική τους άποψη.", "LabelShortOverview": "Σύντομη Επισκόπηση", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Παράλειψη πίσω μήκους:", "LabelSkipForwardLength": "Παράλειψη προς τα εμπρός:", "LabelSortBy": "Ταξινόμηση κατά:", @@ -434,8 +425,6 @@ "MessageDownloadQueued": "Η λήψη προγραμματίστηκε.", "MessageFileReadError": "Παρουσιάστηκε σφάλμα κατά την ανάγνωση του αρχείου. Παρακαλώ προσπάθησε ξανά.", "MessageIfYouBlockedVoice": "Αν αρνηθήκατε τη φωνητική πρόσβαση στην εφαρμογή, θα χρειαστεί να επαναρυθμίσετε τη ρύθμιση πριν δοκιμάσετε ξανά.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Έγινε αποστολή ενός μηνύματος ηλεκτρονικού ταχυδρομείου στο {0}, καλώντας τα να εγγραφούν στο Jellyfin.", "MessageInvitationSentToUser": "Ένα μήνυμα ηλεκτρονικού ταχυδρομείου έχει σταλεί στο {0}, καλώντας τα να αποδεχθούν την πρόσκληση κοινής χρήσης.", "MessageItemSaved": "Το στοιχείο αποθηκεύτηκε", @@ -503,7 +492,6 @@ "PlaybackErrorNoCompatibleStream": "Δεν υπάρχουν επί του παρόντος διαθέσιμες συμβατές ροές. Δοκιμάστε ξανά αργότερα ή επικοινωνήστε με τον διαχειριστή του συστήματος για λεπτομέρειες.", "PlaybackErrorNotAllowed": "Δεν είστε επί του παρόντος εξουσιοδοτημένος να αναπαράγετε αυτό το περιεχόμενο. Επικοινωνήστε με το διαχειριστή του συστήματός σας για λεπτομέρειες.", "PlaybackErrorPlaceHolder": "Εισαγάγετε τον δίσκο για να παίξετε αυτό το βίντεο.", - "PlaybackSettings": "Playback settings", "PlaybackSettingsIntro": "Για να ρυθμίσετε τις προεπιλεγμένες ρυθμίσεις αναπαραγωγής, σταματήστε την αναπαραγωγή βίντεο και στη συνέχεια, κάντε κλικ στο εικονίδιο χρήστη στην επάνω δεξιά ενότητα της εφαρμογής.", "Played": "Έγινε Αναπαραγωγή", "Playlists": "Λίστες αναπαραγωγής", @@ -565,7 +553,6 @@ "SearchResults": "Αποτελέσματα αναζήτησης", "SecondaryAudioNotSupported": "Η εναλλαγή της γραμμής ήχου δεν υποστηρίζεται", "SeriesCancelled": "Η Σειρά ακυρώθηκε.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Προγραμματισμός εγγραφών Σειρών", "SeriesSettings": "Ρυθμίσεις Σειρών", "SeriesYearToPresent": "{0} - εμφανίστηκε", @@ -599,7 +586,6 @@ "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Αυτές οι ρυθμίσεις ισχύουν επίσης για οποιαδήποτε αναπαραγωγή του Chromecast που ξεκίνησε από αυτήν τη συσκευή.", "SubtitleAppearanceSettingsDisclaimer": "Αυτές οι ρυθμίσεις δεν θα ισχύουν για γραφικούς υποτίτλους (PGS, DVD, κ.λπ.) ή για υπότιτλους που έχουν ενσωματωμένο το δικό τους στυλ (ASS / SSA).", "SubtitleCodecNotSupported": "Η μορφή υποτίτλων δεν υποστηρίζεται", - "SubtitleSettings": "Subtitle settings", "SubtitleSettingsIntro": "Για να ρυθμίσετε την προεπιλεγμένη εμφάνιση υπότιτλων και τις ρυθμίσεις γλώσσας, σταματήστε την αναπαραγωγή βίντεο και, στη συνέχεια, κάντε κλικ στο εικονίδιο χρήστη στην επάνω δεξιά ενότητα της εφαρμογής.", "Subtitles": "Υπότιτλοι", "Suggestions": "Προτάσεις", @@ -625,7 +611,6 @@ "ThemeSongs": "Θεματικά τραγούδια", "ThemeVideos": "Θεματικά βίντεο", "TheseSettingsAffectSubtitlesOnThisDevice": "Αυτές οι ρυθμίσεις επηρεάζουν τους υπότιτλους αυτής της συσκευής", - "Thumb": "Thumb", "Thursday": "Πέμπτη", "TrackCount": "{0} κομμάτια", "Trailer": "Τρέϊλερ", @@ -667,7 +652,6 @@ "VideoFramerateNotSupported": "Το βίντεο καρέ δεν υποστηρίζεται", "VideoLevelNotSupported": "Το επίπεδο βίντεο δεν υποστηρίζεται", "VideoProfileNotSupported": "Το προφίλ βίντεο δεν υποστηρίζεται", - "VideoRange": "Video range", "VideoResolutionNotSupported": "Η ανάλυση βίντεο δεν υποστηρίζεται", "ViewAlbum": "Προβολή άλμπουμ", "ViewArtist": "Εμφάνιση Καλλιτέχνη", diff --git a/src/bower_components/emby-webcomponents/strings/en-gb.json b/src/bower_components/emby-webcomponents/strings/en-gb.json index 7100ecf6e5..43bbaac677 100644 --- a/src/bower_components/emby-webcomponents/strings/en-gb.json +++ b/src/bower_components/emby-webcomponents/strings/en-gb.json @@ -1,220 +1,19 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active Internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", - "ButtonCancel": "Cancel", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", "CinemaModeConfigurationHelp": "Cinema mode brings the theatre experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", "ColorPrimaries": "Colour primaries", "ColorSpace": "Colour space", "ColorTransfer": "Colour transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", "EnableColorCodedBackgrounds": "Enable colour-coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", "ErrorAddingGuestAccount2": "If you're still having an issue, please send an e-mail to {0}, and include your e-mail address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an e-mail to {0} from the e-mail address used with the Jellyfin account.", "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active Internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active Internet connection and try again.", "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active Internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Favourite", "Favorites": "Favourites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", "GuestUserNotFound": "User not found. Please ensure the name is correct and try again. Alternatively, try entering their e-mail address.", - "Guide": "Guide", "HDPrograms": "HD programmes", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", "HeaderEnabledFieldsHelp": "Untick a field to lock it and prevent its data from being changed.", "HeaderExternalIds": "External IDs:", "HeaderFavoriteAlbums": "Favourite Albums", @@ -227,454 +26,23 @@ "HeaderFavoriteShows": "Favourite Shows", "HeaderFavoriteSongs": "Favourite Songs", "HeaderFavoriteVideos": "Favourite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wi-Fi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", - "LabelCountry": "Country:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", "LabelDateTimeLocale": "Date/time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", - "LabelLanguage": "Language:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", "LabelSelectFolderGroupsHelp": "Folders that are unticked will be displayed by themselves in their own view.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", "LabelTextBackgroundColor": "Text background colour:", "LabelTextColor": "Text colour:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", "LabelWindowBackgroundColor": "Text background colour:", "LabelYear": "Year", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "An email has been sent to {0}, inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", "MessagePendingJellyfinAccountAdded": "The Jellyfin account has been added to this user. An e-mail will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the e-mail.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognise that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", "NewCollectionHelp": "Collections allow you to create personalised groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", - "ParentalRating": "Parental rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Place favourite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", "PlaybackErrorNotAllowed": "You're currently not authorised to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Please enter a name or an external ID.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", "Programs": "Programmes", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", - "Save": "Save", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", "SeriesDisplayOrderHelp": "Order episodes by air date, DVD order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc.) or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", "WifiRequiredToDownload": "A Wi-Fi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/es-ar.json b/src/bower_components/emby-webcomponents/strings/es-ar.json index 4f5b3022c6..cd95668bd1 100644 --- a/src/bower_components/emby-webcomponents/strings/es-ar.json +++ b/src/bower_components/emby-webcomponents/strings/es-ar.json @@ -1,680 +1,4 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", - "ButtonCancel": "Cancel", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", - "LabelCountry": "Country:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", - "LabelLanguage": "Language:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Ejemplo: Colección de Star Wars", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", - "Save": "Save", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/es-mx.json b/src/bower_components/emby-webcomponents/strings/es-mx.json index 49aaf8b50f..7a1328a146 100644 --- a/src/bower_components/emby-webcomponents/strings/es-mx.json +++ b/src/bower_components/emby-webcomponents/strings/es-mx.json @@ -2,7 +2,6 @@ "Absolute": "Absoluto", "Accept": "Aceptar", "AccessRestrictedTryAgainLater": "El acceso esta restringido en este momento. Por favor intente de nuevo mas tarde.", - "Actor": "Actor", "Add": "Agregar", "AddToCollection": "Agregar a Colección.", "AddToPlayQueue": "Agregar a la cola de reproduccion", @@ -38,7 +37,6 @@ "AudioCodecNotSupported": "Codec de audio no soportado", "AudioProfileNotSupported": "Perfil de audio no soportado", "AudioSampleRateNotSupported": "Muestreo (sample) de audio no soportado", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Auto (basado en la configuración del lenguaje)", "AutomaticallyConvertNewContent": "Convertir contenidos nuevos automáticamente", "AutomaticallyConvertNewContentHelp": "Los contenidos nuevos agregados a esta carpeta serán convertidos automáticamente.", @@ -55,7 +53,6 @@ "BurnSubtitlesHelp": "Determina si el servidor debería quemar los subtitulos al convertir el video dependiendo en el formato de los subtitulos. Evitar los subtitulos quemados mejorara el rendimiento del servidor. Elija \"Auto\" para quemar los formatos basados en imágenes (por ejemplo VOBSUB, PGS, SUB/IDX, etc.) así como ciertos subtitulos ASS/SSA", "ButtonCancel": "Cancelar", "ButtonGotIt": "Hecho", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Reproducir un minuto", "ButtonRestart": "Reiniciar", "ButtonRestorePreviousPurchase": "Restaurar Compra", @@ -114,8 +111,6 @@ "DirectStreamHelp1": "El medio es compatible con el dispositivo en cuanto a la resolución y tipo de medio (H.264, AC3, etc.), pero es un es un contenedor de archivo incompatible (.mkv, .avi, .wmv, etc.). El video sera re empaquetado al vuelo antes de transmitirlo al dispositivo.", "DirectStreamHelp2": "La Transmisión Directa de un archivo usa muy poco poder de procesamiento sin ninguna perdida en la calidad de video.", "DirectStreaming": "Transmisión Directa", - "Director": "Director", - "DirectorValue": "Director: {0}", "DirectorsValue": "Directores: {0}", "Disc": "DIsco", "Disconnect": "Desconectar", @@ -158,7 +153,6 @@ "Ended": "Finalizado", "EndsAtValue": "Termina a las {0}", "Episodes": "Episodios", - "Error": "Error", "ErrorAddingGuestAccount1": "Hubo un error agregando la cuenta de Jellyfin Connect. ¿Su invitado ya ha creado una cuenta de Jellyfin Connect? Puede registrarse en {0}.", "ErrorAddingGuestAccount2": "Si continua teniendo problemas, escriba un correo electrónico a {0}, e incluya su dirección de correo electrónico ademas de la de su invitado.", "ErrorAddingJellyfinConnectAccount1": "Hubo un error agregando la cuenta de Jellyfin Connect. ¿Ya ha creado una cuenta de Jellyfin? Registrese en {0}.", @@ -168,7 +162,6 @@ "ErrorReachingJellyfinConnect": "Hubo un error al tratar de contactar el servidor de Jellyfin Connect. Por favor asegúrese de que tiene una conexión activa de internet e intente de nuevo.", "ErrorRemovingJellyfinConnectAccount": "Hubo un error retirando la cuenta de Jellyfin Connect. Por favor asegúrese que su conexión a internet esta activa e intente de nuevo.", "ExtraLarge": "Extra grande", - "Extras": "Extras", "Favorite": "Favorito", "Favorites": "Favoritos", "FeatureRequiresJellyfinPremiere": "Esta característica requiere de una suscripción activa de Jellyfin Premiere.", @@ -285,7 +278,6 @@ "Hide": "Ocultar", "HideWatchedContentFromLatestMedia": "Ocultar contenido ya visto de Agregadas Recientemente", "Home": "Inicio", - "Horizontal": "Horizontal", "HowDidYouPay": "¿Cual sera su forma de pago?", "IHaveJellyfinPremiere": "Ya cuento con Jellyfin Premiere", "IPurchasedThisApp": "Ya he comprado esta app", @@ -310,7 +302,6 @@ "LabelAlbumArtists": "Artistas del álbum:", "LabelArtists": "Artistas:", "LabelArtistsHelp": "Separar múltiples empleando:", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Idioma preferido de audio:", "LabelBirthDate": "Fecha de Nacimiento:", "LabelBirthYear": "Año de nacimiento:", @@ -336,7 +327,6 @@ "LabelDisplayOrder": "Orden para mostrar:", "LabelDropImageHere": "Arrastre la imagen aquí, o de clic para navegar.", "LabelDropShadow": "Mostrar sombra:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Dirección de correo:", "LabelEndDate": "Fecha de Fin:", "LabelEpisodeNumber": "Episodio numero:", @@ -404,7 +394,6 @@ "LabelTrackNumber": "Número de Pista:", "LabelType": "Tipo:", "LabelVersion": "Versión:", - "LabelVideo": "Video:", "LabelWebsite": "Sitio web:", "LabelWindowBackgroundColor": "Color de fondo para el texto:", "LabelYear": "Año:", @@ -434,8 +423,6 @@ "MessageDownloadQueued": "Descargar cola.", "MessageFileReadError": "Hubo un error al leer el archivo. Por favor intente de nuevo.", "MessageIfYouBlockedVoice": "Si ha negado el acceso a la voz a la aplicación necesitara reconfigurar antes de intentarlo de nuevo.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Un correo electrónico se ha enviado a {0} invitándolos a registrarse en Jellyfin.", "MessageInvitationSentToUser": "Se ha enviado un correo electrónico a {0}, invitándolo a aceptar tu invitación para compartir.", "MessageItemSaved": "Ítem guardado.", @@ -469,13 +456,11 @@ "NewEpisodesOnly": "Solo episodios nuevos", "News": "Noticias", "Next": "Siguiente", - "No": "No", "NoItemsFound": "No se encontraron ítems.", "NoSubtitleSearchResultsFound": "No se encontraron resultados.", "NoSubtitles": "Sin Subtitulos", "NoSubtitlesHelp": "Los subtítulos no serán cargados por defecto. Pero pueden ser activados manualmente durante la reproducción.", "None": "Ninguno", - "Normal": "Normal", "Off": "Apagar", "OneChannel": "Un canal", "OnlyForcedSubtitles": "Únicamente subtítulos forzados", @@ -483,7 +468,6 @@ "OnlyImageFormats": "Solo formato de imagen (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Abrir", "OptionNew": "Nuevo...", - "Original": "Original", "OriginalAirDateValue": "Fecha de emisión original: {0}", "Overview": "Sinopsis", "PackageInstallCancelled": "{0} instalación cancelada.", @@ -617,7 +601,6 @@ "SyncUnwatchedVideosOnly": "Descargar únicamente videos no vistos", "SyncUnwatchedVideosOnlyHelp": "Solamente los videos aún no vistos serán descargados, se eliminarán los videos del dispositivo conforme éstos sean vistos.", "SyncingDots": "Sincronizando...", - "TV": "TV", "Tags": "Etiquetas", "TagsValue": "Etiquetas: {0}", "TermsOfUse": "Términos de uso", @@ -628,7 +611,6 @@ "Thumb": "Miniatura", "Thursday": "Jueves", "TrackCount": "{0} Pistas", - "Trailer": "Trailer", "Trailers": "Tráilers", "Transcoding": "Transcodificando", "TryMultiSelect": "Intente Multi-Selección", @@ -646,7 +628,6 @@ "ValueDiscNumber": "Disco {0}", "ValueEpisodeCount": "{0} episodios", "ValueGameCount": "{0} juegos", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} películas", "ValueMusicVideoCount": "{0} videos musicales", "ValueOneAlbum": "1 álbum", @@ -658,10 +639,8 @@ "ValueOneSeries": "1 serie", "ValueOneSong": "1 canción", "ValueSeconds": "{0} segundos", - "ValueSeriesCount": "{0} series", "ValueSongCount": "{0} canciones", "ValueSpecialEpisodeName": "Especial - {0}", - "Vertical": "Vertical", "VideoBitDepthNotSupported": "Profundidad de bits de Video no soportado", "VideoCodecNotSupported": "Codec de video no soportado", "VideoFramerateNotSupported": "Tasa de Cuadros por Segundo del video no soportado", diff --git a/src/bower_components/emby-webcomponents/strings/es.json b/src/bower_components/emby-webcomponents/strings/es.json index 86cae6abf1..89c566a1db 100644 --- a/src/bower_components/emby-webcomponents/strings/es.json +++ b/src/bower_components/emby-webcomponents/strings/es.json @@ -1,61 +1,38 @@ { - "Absolute": "Absolute", "Accept": "Aceptar", "AccessRestrictedTryAgainLater": "El acceso está restringido actualmente. Por favor inténtalo más tarde.", - "Actor": "Actor", "Add": "Añadir", "AddToCollection": "Añadir a la colección", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Añadir a la lista de reproducción", "AddedOnValue": "Añadido {0}", "Advanced": "Avanzado", - "AirDate": "Air date", - "Aired": "Aired", "Albums": "Álbumes", "All": "Todo", "AllChannels": "Todos los canales", "AllComplexFormats": "Todos los formatos complejos (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Todos los episodios", "AllLanguages": "Todos los idiomas", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", "AlwaysPlaySubtitles": "Mostrar siempre subtítulos", "AlwaysPlaySubtitlesHelp": "Los subtítulos que concuerden con la preferencia de idioma se cargarán independientemente del idioma de audio.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", "Art": "Arte", "Artists": "Artistas", "AsManyAsPossible": "Tantos como sea posible", - "Ascending": "Ascending", "AspectRatio": "Relación de aspecto", "AttributeNew": "Nuevo", "AudioBitDepthNotSupported": "Profundidad de bits de audio no soportada", - "AudioBitrateNotSupported": "Audio bitrate not supported", "AudioChannelsNotSupported": "Canales de audio no soportados", "AudioCodecNotSupported": "Codec de audio no soportado", "AudioProfileNotSupported": "Perfil de audio no soportado", "AudioSampleRateNotSupported": "Frecuencia de muestreo de audio no soportada", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", "AutomaticallySyncNewContent": "Descargar automáticamente contenido nuevo", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", "Backdrop": "Imagen de fondo", "Backdrops": "Imágenes de fondo", - "Banner": "Banner", - "BestFit": "Best fit", "BirthLocation": "Lugar de nacimiento", "Books": "Libros", "Box": "Caja", "BoxRear": "Caja (trasera)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancelar", "ButtonGotIt": "Lo tengo", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Reproducir un minuto", "ButtonRestart": "Reiniciar", "ButtonRestorePreviousPurchase": "Recuperar compra", @@ -72,10 +49,6 @@ "CinemaModeFeatureDescription": "El Modo Cine te da la verdadera experiencia de cine con tráilers e intros personalizadas antes de la función principal.", "CloudSyncFeatureDescription": "Sincroniza tus medios en la nube para una copia de seguridad, archivado y conversión fácil.", "Collections": "Colecciones", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "Compositor", "ConfigureDateAdded": "Configura como la fecha añadida se determina en el Panel de Control del servidor Jellyfin en los ajustes de la biblioteca.", "ConfirmDeleteImage": "Borrar imagen", @@ -85,105 +58,56 @@ "ConfirmEndPlayerSession": "¿Quieres cerrar Jellyfin en el dispositivo?", "ConfirmRemoveDownload": "¿Quieres eliminar la descarga?", "Connect": "Conectar", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", "ContainerNotSupported": "Contenedor no soportado", "Continue": "Continuar", "ContinueInSecondsValue": "Continuar en {0} segundos", - "ContinueWatching": "Continue watching", "Continuing": "Continuando", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Países", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Días", "Default": "Por defecto", "DefaultErrorMessage": "Ha habido un error procesando la solicitud. Por favor inténtalo más tarde.", "DefaultSubtitlesHelp": "Los subtítulos se activan en función de los ajustes por defecto y etiquetas en los metadatos integrados. Los ajustes de idioma se tienen en cuenta cuando hay varias opciones disponibles.", "Delete": "Borrar", "DeleteMedia": "Eliminar medios", - "Depressed": "Depressed", - "Descending": "Descending", "Desktop": "Escritorio", - "DirectPlayError": "Direct play error", "DirectPlaying": "Reproducción directa", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", "DirectStreaming": "Streaming directo", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", "Disc": "Disco", "Disconnect": "Desconectar", "Dislike": "No me gusta", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", "DisplayModeHelp": "Seleccione el tipo de pantalla que está ejecutando Jellyfin.", "DoNotRecord": "No grabar", "Down": "Abajo", "Download": "Descargar", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Descargado", "Downloading": "Descargando", "DownloadingDots": "Descargando", "Downloads": "Descargas", "DownloadsValue": "Descargas: {0}", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Editar", "EditImages": "Editar imágenes", - "EditMetadata": "Edit metadata", "EditSubtitles": "Editar subtítulos", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "Activar modo cine", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", "EnableDisplayMirroring": "Activar mirroring de la pantalla", "EnableExternalVideoPlayers": "Activar reproductores externos", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", "EnableNextVideoInfoOverlay": "Activar la información del siguiente video durante la reproducción", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "EnableThemeVideos": "Habilitar temas videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Finalizado", "EndsAtValue": "Termina a las {0}", "Episodes": "Episodios", - "Error": "Error", "ErrorAddingGuestAccount1": "Se ha producido un error al agregar la cuenta Jellyfin Connect. ¿Ha creado su invitado una cuenta de Jellyfin? Pueden registrarse en {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", "ErrorAddingJellyfinConnectAccount1": "Ha habido un error añadiendo la cuenta de Jellyfin Connect. ¿Te has creado una cuenta de Jellyfin primero? Regístrate en {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", "ErrorReachingJellyfinConnect": "Ha habido un error accediendo al servidor Jellyfin Connect. Por favor, asegúrate de que tienes conexión a internet e inténtalo de nuevo.", "ErrorRemovingJellyfinConnectAccount": "Ha habido un error quitando la cuenta de Jellyfin Connect. Por favor asegúrate de que tienes una conexión a internet activa e inténtalo otra vez.", "ExtraLarge": "Extragrande", - "Extras": "Extras", "Favorite": "Favorito", "Favorites": "Favoritos", "FeatureRequiresJellyfinPremiere": "Esta característica necesita una suscripción a Jellyfin Premiere.", - "Features": "Features", "File": "Archivo", "Fill": "Llenar", - "Filters": "Filters", - "Folders": "Folders", "FormatValue": "Formato: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Viernes", - "GenreValue": "Genre: {0}", "Genres": "Géneros", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "Agrupar versiones", "GuestStar": "Estrella invitada", "GuestUserNotFound": "Usuario no encontrado. Asegúrese de que el nombre es correcto y vuelva a intentarlo o intente ingresar su dirección de correo electrónico.", @@ -193,9 +117,7 @@ "HeaderAddToCollection": "Agregar a la colección", "HeaderAddToPlaylist": "Añadir a la lista", "HeaderAddUpdateImage": "Añadir/Actualizar imagen", - "HeaderAlbumArtists": "Album Artists", "HeaderAlreadyPaid": "¿Ya has pagado?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Audiolibros", "HeaderAudioSettings": "Ajustes de audio", "HeaderBecomeProjectSupporter": "Consigue Jellyfin Premiere", @@ -207,8 +129,6 @@ "HeaderConfirmRecordingCancellation": "Confirmar la cancelación de la grabación", "HeaderContinueListening": "Continuar escuchando", "HeaderContinueWatching": "Continuar viendo", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Borrar elemento", "HeaderDeleteItems": "Borrar ítems", "HeaderDisplaySettings": "Opciones de pantalla", @@ -217,16 +137,6 @@ "HeaderEnabledFields": "Campos activados", "HeaderEnabledFieldsHelp": "Desmarca un campo para bloquearlo y evitar que se cambie su contenido.", "HeaderExternalIds": "Ids externos:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Apps de Jellyfin gratuitas", "HeaderHomeScreen": "Pantalla de inicio", "HeaderIdentifyItemHelp": "Asigna uno o más criterios de búsqueda. Quita criterios para aumentar el número de resultados de búsqueda", @@ -244,7 +154,6 @@ "HeaderLibraryFolders": "Carpetas de la Biblioteca", "HeaderLibraryOrder": "Orden de la Biblioteca", "HeaderMetadataSettings": "Ajustes de metadatos", - "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "Mi dispositivo", "HeaderMyMedia": "Mis Contenidos", "HeaderMyMediaSmall": "Mis Contenidos (pequeño)", @@ -255,43 +164,34 @@ "HeaderOfflineDownloads": "Medios fuera de línea", "HeaderOfflineDownloadsDescription": "Descargue los medios a sus dispositivos para un uso sin conexión.", "HeaderOnNow": "Transmitiendo Ahora", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Reproducir mis contenidos", "HeaderPlayOn": "Reproducir en", "HeaderPlaybackError": "Error de reproducción", "HeaderRecordingOptions": "Ajustes de grabación", "HeaderRemoteControl": "Control remoto", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "Di algo como...", "HeaderSecondsValue": "{0} segundos", "HeaderSelectDate": "Seleccionar Fecha", "HeaderSeriesOptions": "Opciones de Series", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Información del episodio especial", "HeaderStartNow": "Empezar ahora", - "HeaderStopRecording": "Stop Recording", "HeaderSubtitleAppearance": "Apariencia de los subtítulos", "HeaderSubtitleSettings": "Ajustes de subtítulos", "HeaderSyncRequiresSub": "La descarga requiere de una suscripción activa de Jellyfin Premiere.", "HeaderTermsOfPurchase": "Términos de compra", "HeaderTryPlayback": "Reproducción de prueba", - "HeaderUnlockFeature": "Unlock Feature", "HeaderUploadImage": "Subir imagen", "HeaderVideoQuality": "Calidad de Video", - "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Esperando a la red Wifi", "HeaderYouSaid": "Dijiste...", "Help": "Ayuda", "Hide": "Esconder", "HideWatchedContentFromLatestMedia": "Esconder medios vistos de los medios más recientes", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "¿Cómo has pagado?", "IHaveJellyfinPremiere": "Tengo Jellyfin Premiere", "IPurchasedThisApp": "He comprado esta aplicación", "Identify": "Identificar", "Images": "Imágenes", - "ImdbRating": "IMDb rating", "InstallingPackage": "Instalando {0}", "InstantMix": "Mix instantáneo", "InterlacedVideoNotSupported": "Entrelazamiento de video no soportado", @@ -310,38 +210,28 @@ "LabelAlbumArtists": "Artistas de los álbumes", "LabelArtists": "Artistas:", "LabelArtistsHelp": "Separar multiples usando ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Idioma de audio preferido", "LabelBirthDate": "Fecha de nacimiento:", "LabelBirthYear": "Año de nacimiento:", "LabelBitrateMbps": "Tasa de bits (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Canales", "LabelCollection": "Colección:", "LabelCommunityRating": "Puntuación de la comunidad", "LabelContentType": "Tipo de contenido:", - "LabelConvertTo": "Convert to:", "LabelCountry": "País:", "LabelCriticRating": "Valoración de la crítica:", "LabelCustomRating": "Valoración pesonalizada:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Fecha añadido:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Fecha de muerte:", - "LabelDefaultScreen": "Default screen:", "LabelDiscNumber": "Número de disco:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", "LabelDisplayMode": "Modo de visualización:", "LabelDisplayOrder": "Mostrar orden:", "LabelDropImageHere": "Soltar imagen aquí, o pulsar para navegar.", - "LabelDropShadow": "Drop shadow:", "LabelDynamicExternalId": "{0} id:", "LabelEmailAddress": "Dirección de correo", "LabelEndDate": "Fecha de fin:", "LabelEpisodeNumber": "Episodio número:", "LabelFont": "Fuente:", - "LabelHomeNetworkQuality": "Home network quality:", "LabelHomeScreenSectionValue": "Sección de la pantalla de inicio {0}:", "LabelImageType": "Tipo de imagen:", "LabelInternetQuality": "Calidad en internet:", @@ -357,11 +247,9 @@ "LabelOriginalAspectRatio": "Relación de aspecto original:", "LabelOriginalTitle": "Título original", "LabelOverview": "Resumen:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Clasificación parental:", "LabelPath": "Ruta:", "LabelPersonRole": "Rol:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", "LabelPlaceOfBirth": "Lugar de nacimiento:", "LabelPlayDefaultAudioTrack": "Reproducir pista de audio predeterminado, independientemente del idioma", "LabelPlaylist": "Lista:", @@ -378,54 +266,35 @@ "LabelSelectFolderGroups": "Agrupar contenido automáticamente desde las siguientes carpetas en vistas como Películas, Música y Series:", "LabelSelectFolderGroupsHelp": "Las carpetas sin seleccionar se mostrarán ellas mismas en su propia vista.", "LabelShortOverview": "Resumen corto:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Clasificar por título:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", "LabelStartWhenPossible": "Empezar cuando sea posible:", "LabelStatus": "Estado:", "LabelStopWhenPossible": "Parar cuando sea posible:", "LabelSubtitlePlaybackMode": "Modo de subtítulo:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "Nombre del trabajo de sincronización:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Sincronizar en:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Lema:", "LabelTextBackgroundColor": "Color de fondo del texto:", "LabelTextColor": "Color del texto:", "LabelTextSize": "Tamaño del texto:", - "LabelTheme": "Theme:", "LabelTitle": "Título", "LabelTrackNumber": "Número de pista:", "LabelType": "Tipo:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "Sitio web:", "LabelWindowBackgroundColor": "Color de fondo del texto:", "LabelYear": "Año:", "Large": "Grande", "LatestFromLibrary": "Últimas {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Aprende más", "Like": "Me gusta", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Directo", "LiveBroadcasts": "Emisiones en vivo", "LiveTV": "TV en vivo", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "TV en vivo requiere de una suscripción activa de Jellyfin Premiere.", - "Logo": "Logo", "ManageRecording": "Gestionar grabación", "MarkPlayed": "Marcar como reproducido", "MarkUnplayed": "Marcar como no reproducido", "MarkWatched": "Marcar como visto", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", "Medium": "Mediano", "Menu": "Menú", "MessageActiveSubscriptionRequiredSeriesRecordings": "Se necesita una suscripción a Jellyfin Premiere para poder crear grabaciones automáticas.", @@ -434,8 +303,6 @@ "MessageDownloadQueued": "Descarga en cola.", "MessageFileReadError": "Ha habido un error leyendo el fichero. Por favor inténtalo más tarde.", "MessageIfYouBlockedVoice": "Si has denegado el acceso a la voz a la aplicación tendrás que reconfigurarlo antes de intentarlo de nuevo.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Se le ha enviado un correo a {0}, invitándolo a que se registre en Jellyfin.", "MessageInvitationSentToUser": "Se le ha enviado un correo a {0}, invitándolo a que acepte lo que has compartido.", "MessageItemSaved": "Elemento grabado.", @@ -443,11 +310,8 @@ "MessageJellyfinAccontRemoved": "Se ha eliminado la cuenta de Jellyfin para este usuario.", "MessageJellyfinAccountAdded": "Se ha añadido la cuenta de Jellyfin a este usuario", "MessageLeaveEmptyToInherit": "Dejar en blanco para heredar la configuración de un elemento principal, o el valor predeterminado global.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", "MessageNoServersAvailableToConnect": "No hay servidores disponibles para conectarse. Si te han invitado a unirte a un servidor, asegúrate de aceptar aquí abajo o haciendo clic en el enlace del correo.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", "MessagePendingJellyfinAccountAdded": "Se ha añadido una cuenta de Jellyfin a este usuario. Se va a enviar un correo al dueño de la cuenta. La invitación necesita confirmarse haciendo clic en el enlace del correo.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "Si tienes una suscripción a Jellyfin Premiere asegúrate de que la has configurado en el Panel de Control de tu servidor Jellyfin en Ayuda -> Jellyfin Premiere.", "MessageUnlockAppWithPurchaseOrSupporter": "Desbloquea esta característica con una pequeña compra una vez o con una suscripción a Jellyfin Premiere.", "MessageUnlockAppWithSupporter": "Desbloquea esta característica con una suscripción a Jellyfin Premiere.", @@ -463,27 +327,22 @@ "MySubtitles": "Mis Subtitulos", "Name": "Nombre", "NewCollection": "Nueva colección", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Ejemplo: Colección de Star Wars", "NewEpisodes": "Nuevos episodios", "NewEpisodesOnly": "Solo nuevos episodios", "News": "Noticias", "Next": "Siguiente", - "No": "No", "NoItemsFound": "No se han encontrado ítems", "NoSubtitleSearchResultsFound": "No se han encontrado resultados.", "NoSubtitles": "Sin subtítulos", "NoSubtitlesHelp": "Los subtítulos no se cargarán de forma predeterminada. Tienen que ser activados manualmente durante la reproducción.", "None": "Nada", - "Normal": "Normal", - "Off": "Off", "OneChannel": "Un canal", "OnlyForcedSubtitles": "Sólo subtítulos forzados", "OnlyForcedSubtitlesHelp": "Sólo se cargarán los subtítulos marcados como forzados.", "OnlyImageFormats": "Solo formatos de imagen (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Abrir", "OptionNew": "Nuevo...", - "Original": "Original", "OriginalAirDateValue": "Fecha de emisión original: {0}", "Overview": "Sinopsis", "PackageInstallCancelled": "{0} instalación cancelada.", @@ -491,27 +350,19 @@ "PackageInstallFailed": "{0} instalación fallida.", "ParentalRating": "Parental Rating", "People": "Gente", - "PerfectMatch": "Perfect match", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Situar los canales favoritos al principio", "Play": "Reproducir", "PlayAllFromHere": "Reproducir todos desde aquí", - "PlayCount": "Play count", "PlayFromBeginning": "Iniciar desde el principio", "PlayNext": "Reproducir siguiente", "PlayNextEpisodeAutomatically": "Reproducir siguiente episodio automáticamente", "PlaybackErrorNoCompatibleStream": "No tienes disponible ninguna calidad por ahora. Inténtalo más tarde o contacta con el administrador para más detalles.", "PlaybackErrorNotAllowed": "No estás autorizado a reproducir este contenido. Contacta con el administrador para más detalles.", "PlaybackErrorPlaceHolder": "El contenido elegido no se puede reproducir desde este dispositivo.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Reproducido", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Introduzca un nombre o un identificador externo.", "PleaseRestartServerName": "Por favor, reinicie el Servidor de Jellyfin - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Seleccione al menos dos elementos.", - "Premiere": "Premiere", "Premieres": "Estrenos", "Previous": "Anterior", "Primary": "Principal", @@ -519,10 +370,8 @@ "Producer": "Productor", "ProductionLocations": "Localizaciones de producción", "Programs": "Programas", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", "Quality": "Calidad", "QueueAllFromHere": "En cola todos desde aquí", - "Raised": "Raised", "RecentlyWatched": "Vistos recientemente", "Record": "Grabar", "RecordSeries": "Grabar serie", @@ -531,7 +380,6 @@ "Recordings": "Grabaciones", "RefFramesNotSupported": "Número de cuadros de referencia de video no soportados", "Refresh": "Refrescar", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", "RefreshMetadata": "Actualizar metadatos", "RefreshQueued": "Actualiza la cola", "Reject": "Rechazar", @@ -547,10 +395,8 @@ "RepeatOne": "Repetir uno", "ReplaceAllMetadata": "Reemplazar todos los metadatos", "ReplaceExistingImages": "Reemplazar imágenes existentes", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Continuar desde {0}", "Retry": "Reintentar", - "RunAtStartup": "Run at startup", "Runtime": "Tiempo de Ejecución", "Saturday": "Sábado", "Save": "Grabar", @@ -565,7 +411,6 @@ "SearchResults": "Resultados de la Búsqueda", "SecondaryAudioNotSupported": "Cambio de pista de audio no soportado", "SeriesCancelled": "Serie cancelada.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Grabación de series programada.", "SeriesSettings": "Ajustes de series", "SeriesYearToPresent": "{0} - Actualidad", @@ -576,31 +421,21 @@ "SettingsSaved": "Configuración guardada.", "Share": "Compartir", "ShowIndicatorsFor": "Mostrar indicaciones para:", - "ShowTitle": "Show title", - "ShowYear": "Show year", "Shows": "Series", "Shuffle": "Mezclar", "SkipEpisodesAlreadyInMyLibrary": "No grabar episodios que ya están en mi libreria", "SkipEpisodesAlreadyInMyLibraryHelp": "Los episodios serán comparados usando el número de temporada y de episodio, cuando estén disponibles.", "Small": "Pequeño", - "SmallCaps": "Small caps", - "Smaller": "Smaller", "Smart": "Listo", "SmartSubtitlesHelp": "Los subtítulos que coincidan con el idioma preferido se activarán cuando el audio esté en otro idioma.", "Songs": "Canciones", - "Sort": "Sort", - "SortByValue": "Sort by {0}", "SortChannelsBy": "Ordenar canales por:", "SortName": "Ordenar por nombre", "Sports": "Deportes", "StatsForNerds": "Estadísticas para Frikis", "StopRecording": "Parar grabación", "Studios": "Estudios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", "SubtitleCodecNotSupported": "Formato de subtítulos no soportado", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Subtítulos", "Suggestions": "Sugerencias", "Sunday": "Domingo", @@ -614,29 +449,17 @@ "SyncJobItemStatusSynced": "Descargado", "SyncJobItemStatusSyncedMarkForRemoval": "Quitar del dispositivo", "SyncJobItemStatusTransferring": "Transfiriendo", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Etiquetas", - "TagsValue": "Tags: {0}", "TermsOfUse": "Términos de uso", "ThankYouForTryingEnjoyOneMinute": "Disfruta de un minuto de reproducción. Gracias por probar Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", "TheseSettingsAffectSubtitlesOnThisDevice": "Estas opciones afectan a los subtítulos en este dispositivo", "Thumb": "Miniatura", "Thursday": "Jueves", "TrackCount": "{0} pistas", "Trailer": "Tráiler", - "Trailers": "Trailers", "Transcoding": "Transcodificación", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Martes", - "Uniform": "Uniform", "UnlockGuide": "Guía de desbloqueo", - "Unplayed": "Unplayed", "Unrated": "Sin clasificar", "UntilIDelete": "Hasta que lo elimine", "UntilSpaceNeeded": "Hasta que necesite espacio", @@ -646,7 +469,6 @@ "ValueDiscNumber": "Disco {0}", "ValueEpisodeCount": "{0} episodios", "ValueGameCount": "{0} juegos", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} películas", "ValueMusicVideoCount": "{0} vídeos musicales", "ValueOneAlbum": "1 álbum", @@ -658,16 +480,12 @@ "ValueOneSeries": "1 serie", "ValueOneSong": "1 canción", "ValueSeconds": "{0} segundos", - "ValueSeriesCount": "{0} series", "ValueSongCount": "{0} canciones", "ValueSpecialEpisodeName": "Especial - {0}", - "Vertical": "Vertical", "VideoBitDepthNotSupported": "Profundidad de bits de video no soportados", "VideoCodecNotSupported": "Codec de video no soportado", "VideoFramerateNotSupported": "Cuadros por segundo de video no soportados", - "VideoLevelNotSupported": "Video level not supported", "VideoProfileNotSupported": "Perfil de video no soportado", - "VideoRange": "Video range", "VideoResolutionNotSupported": "Resolución de video no soportada", "ViewAlbum": "Ver album", "ViewArtist": "Ver artista", diff --git a/src/bower_components/emby-webcomponents/strings/fi.json b/src/bower_components/emby-webcomponents/strings/fi.json index e8502275d8..baa659c2a1 100644 --- a/src/bower_components/emby-webcomponents/strings/fi.json +++ b/src/bower_components/emby-webcomponents/strings/fi.json @@ -1,680 +1,7 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Lopeta", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Maa:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Kieli:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", "Save": "Tallenna", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/fr-ca.json b/src/bower_components/emby-webcomponents/strings/fr-ca.json index 31d1b932c8..6f3d73edd6 100644 --- a/src/bower_components/emby-webcomponents/strings/fr-ca.json +++ b/src/bower_components/emby-webcomponents/strings/fr-ca.json @@ -1,680 +1,87 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", "Add": "Ajouter", "AddToCollection": "Ajouter à la collection", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Ajouter à la liste de lecture", - "AddedOnValue": "Added {0}", "Advanced": "Avancé", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "Nouveau", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Annuler", "ButtonGotIt": "J'ai compris", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "Redémarrer", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", "CinemaModeFeatureDescription": "Le Mode Cinéma vous donne la véritable expérience cinématographique avec des bandes annonces et des intros personnalisés avant le film.", "CloudSyncFeatureDescription": "Synchronisez vos médias avec le Cloud pour faciliter la sauvegarde, l'archivage et la conversion.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", "ConfirmDeleteItem": "La suppression de cet élément le supprimera à la fois du système de fichiers et de votre médiathèque. Êtes-vous sûr de vouloir continuer?", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Jours", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Supprimer", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", "Disconnect": "Se déconnecter", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", "Download": "Télécharger", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Modifier", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", "EnableDisplayMirroring": "Activer l'affichage mirroir", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", "EndsAtValue": "Se termine à {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "Cette fonctionnalité nécessite un abonnement Jellyfin Première actif.", - "Features": "Features", "File": "Fichier", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Profitez de l'accès gratuit aux applications Jellyfin pour vos appareils.", "Friday": "Vendredi", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Ajouter à la Collection", "HeaderAddToPlaylist": "Ajouter à la liste de lecture", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "Obtenez Jellyfin Première", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", "HeaderCinemaMode": "Mode Cinéma", "HeaderCloudSync": "Synchronisation Cloud", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", "HeaderContinueWatching": "Continuer à regarder", "HeaderConvertYourRecordings": "Convertir vos enregistrements", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Supprimer l'élément", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Applications Jellyfin gratuites", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", "HeaderMyMedia": "Mes Médias", "HeaderMyMediaSmall": "Mes médias (petit)", "HeaderNewRecording": "Nouvel enregistrement", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", "HeaderNextUp": "À Suivre", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "Média hors ligne", "HeaderOfflineDownloadsDescription": "Téléchargez le média sur vos appareils pour une utilisation hors ligne facile.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Jouer mon média", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", "HeaderRemoteControl": "Télécommande", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Sélectionner une date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", "Help": "Aide", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} articles", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", - "LabelCountry": "Country:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Adresse courriel:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Langage:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", "LabelName": "Nom:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Liste de lecture:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "Année:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", "Live": "En direct", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Un abonnement Jellyfin Première actif est nécessaire pour créer des enregistrements automatiques en série.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", "MessageItemsAdded": "Éléments ajoutés.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "Si vous avez un abonnement Jellyfin Première actif, assurez-vous d'avoir installé Jellyfin Première sur le tableau de bord de votre serveur Jellyfin, auquel vous pouvez accéder en cliquant sur Jellyfin Première dans le menu principal.", "MessageUnlockAppWithPurchaseOrSupporter": "Déverrouillez cette fonctionnalité avec un petit achat unique ou avec un abonnement Jellyfin Premiere actif.", "MessageUnlockAppWithSupporter": "Déverrouillez cette fonctionnalité avec un abonnement Jellyfin Première actif.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Lundi", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", "NewCollection": "Nouvelle Collection", "NewCollectionHelp": "Les collections vous permettent de créer des regroupements personnalisés de films et d'autres contenus de la bibliothèque.", "NewCollectionNameExample": "Exemple: Collection Star Wars", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", "NoSubtitleSearchResultsFound": "Aucun résultat trouvé.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", "OptionNew": "Nouveau...", - "Original": "Original", "OriginalAirDateValue": "Date de diffusion originale: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Classement parentale", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", "Premiere": "Première", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", "PromoConvertRecordingsToStreamingFormat": "Convertissez automatiquement des enregistrements en un format convivial avec Jellyfin Première. Les enregistrements seront rapidement convertis en MP4 ou MKV, en fonction des paramètres du serveur Jellyfin.", "Quality": "Qualité", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "Enregistrement", - "RecordSeries": "Record series", "RecordingCancelled": "Enregistrement annulé.", "RecordingScheduled": "Enregistrement programmé.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Rafraîchir", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", "RefreshQueued": "Rafraîchir la file d'attente.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", "Repeat": "Répéter", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "Samedi", "Save": "Sauvegarder", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", "Search": "Rechercher", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", "SearchForSubtitles": "Rechercher des sous-titres", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "Série annulée.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Enregistrement en série programmé.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", "ServerUpdateNeeded": "Ce serveur Jellyfin doit être mis à jour. Pour télécharger la dernière version, veuillez visiter {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", "Share": "Partager", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Sous-titres", - "Suggestions": "Suggestions", "Sunday": "Dimanche", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Jeudi", "TrackCount": "{0} pistes", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Mardi", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", "ValueSpecialEpisodeName": "Spécial - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "Mercredi", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/fr.json b/src/bower_components/emby-webcomponents/strings/fr.json index 53be76fc9c..9a1eec7498 100644 --- a/src/bower_components/emby-webcomponents/strings/fr.json +++ b/src/bower_components/emby-webcomponents/strings/fr.json @@ -11,7 +11,6 @@ "Advanced": "Avancé", "AirDate": "Date de diffusion", "Aired": "Diffusé", - "Albums": "Albums", "All": "Tout", "AllChannels": "Toutes les chaînes", "AllComplexFormats": "Tous les formats complexes (ASS, SSA, VOBSUB, PGS, SUB/IDX etc)", @@ -26,7 +25,6 @@ "AnyLanguage": "N'importe quel langage", "Anytime": "N'importe quand", "AroundTime": "Aux environs de {0}", - "Art": "Art", "Artists": "Artistes", "AsManyAsPossible": "Autant que possible", "Ascending": "Croissant", @@ -38,7 +36,6 @@ "AudioCodecNotSupported": "Codec audio non supporté", "AudioProfileNotSupported": "Profil audio non pris en charge", "AudioSampleRateNotSupported": "Taux d'échantillonnage audio non pris en charge", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Auto (basé sur le réglage de la langue)", "AutomaticallyConvertNewContent": "Convertir automatiquement les nouveaux contenus", "AutomaticallyConvertNewContentHelp": "Les nouveaux contenus seront automatiquement convertis", @@ -71,7 +68,6 @@ "CinemaModeConfigurationHelp": "Le mode cinéma apporte l'expérience du cinéma directement dans votre salon grâce à la possibilité de lire des bandes-annonces et des introductions personnalisées avant le film principal.", "CinemaModeFeatureDescription": "Le mode cinéma apporte l'expérience du cinéma directement dans votre salon grâce à la possibilité de lire des bandes-annonces et des introductions personnalisées avant le film principal.", "CloudSyncFeatureDescription": "Synchronisez vos médias vers le cloud pour le sauvegarder, l'archiver et le convertir facilement.", - "Collections": "Collections", "ColorPrimaries": "Couleurs primaires", "ColorSpace": "Espace colorimétrique", "ColorTransfer": "Transfert de couleur", @@ -168,7 +164,6 @@ "ErrorReachingJellyfinConnect": "Une erreur est survenue pendant la connexion au serveur Jellyfin Connect. Veuillez vous assurer que vous avez une connexion internet active puis réessayez.", "ErrorRemovingJellyfinConnectAccount": "Une erreur est survenue pendant la suppression du compte Jellyfin Connect. Veuillez vous assurer que vous avez une connexion internet active puis réessayez.", "ExtraLarge": "Très grand", - "Extras": "Extras", "Favorite": "Favori", "Favorites": "Favoris", "FeatureRequiresJellyfinPremiere": "Cette fonctionnalité nécessite un abonnement Jellyfin Premiere.", @@ -180,14 +175,9 @@ "FormatValue": "Format : {0}", "FreeAppsFeatureDescription": "Profitez d'un accès gratuit aux applications Jellyfin pour vos appareils.", "Friday": "Vendredi", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", "GroupBySeries": "Grouper par séries", "GroupVersions": "Grouper les versions", - "GuestStar": "Guest star", "GuestUserNotFound": "Utilisateur non trouvé. Veuillez vérifier que le nom est correct et essayez à nouveau, ou essayez de renseigner l'adresse courriel.", - "Guide": "Guide", "HDPrograms": "Programmes HD", "HeaderActiveRecordings": "Enregistrements actifs", "HeaderAddToCollection": "Ajouter à la collection", @@ -285,12 +275,10 @@ "Hide": "Cacher", "HideWatchedContentFromLatestMedia": "Masquer le contenu déjà vu dans les derniers médias", "Home": "Accueil", - "Horizontal": "Horizontal", "HowDidYouPay": "Comment avez-vous payé ?", "IHaveJellyfinPremiere": "J'ai Jellyfin Premiere", "IPurchasedThisApp": "J'ai acheté cette application", "Identify": "Identifier", - "Images": "Images", "ImdbRating": "Note IMDb", "InstallingPackage": "Installation de {0}", "InstantMix": "Mix instantané", @@ -310,7 +298,6 @@ "LabelAlbumArtists": "Artistes de l'album :", "LabelArtists": "Artistes :", "LabelArtistsHelp": "Séparer les différents éléments par ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Langue audio préférée :", "LabelBirthDate": "Date de naissance :", "LabelBirthYear": "Année de naissance :", @@ -385,7 +372,6 @@ "LabelSortOrder": "Ordre de tri :", "LabelSortTitle": "Titre de tri :", "LabelSoundEffects": "Effets sonores :", - "LabelSource": "Source:", "LabelStartWhenPossible": "Commencer si possible :", "LabelStatus": "État :", "LabelStopWhenPossible": "Arrêter si possible :", @@ -420,22 +406,18 @@ "LiveTV": "TV en direct", "LiveTvFeatureDescription": "Diffuser la TV en direct vers n'importe quelle application Jellyfin avec un tuner TV compatible installé sur votre serveur Jellyfin.", "LiveTvRequiresUnlock": "La TV en direct nécessite un abonnement Jellyfin Premiere.", - "Logo": "Logo", "ManageRecording": "Gérer l'enregistrement", "MarkPlayed": "Marquer comme lu", "MarkUnplayed": "Marquer comme non lu", "MarkWatched": "Marquer comme lu", "MediaIsBeingConverted": "Le média est converti en un format compatible avec l'appareil qui lit le média.", "Medium": "Moyen", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Un abonnement Jellyfin Premiere est nécessaire pour créer des enregistrements de séries automatiques.", "MessageAreYouSureDeleteSubtitles": "Voulez-vous vraiment supprimer ce fichier de sous-titres ?", "MessageConfirmRecordingCancellation": "Annuler l'enregistrement ?", "MessageDownloadQueued": "Téléchargement mis en file d'attente.", "MessageFileReadError": "Une erreur est survenue lors de la lecture du fichier. Veuillez réessayer.", "MessageIfYouBlockedVoice": "Si vous avez supprimé l'accès par commande vocale à l'application, vous devrez le reconfigurer avant de réessayer.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Un courriel a été envoyé à {0}, les invitant à s'inscrire à Jellyfin.", "MessageInvitationSentToUser": "Un courriel a été envoyé à {0} avec votre invitation de partage.", "MessageItemSaved": "Élément enregistré.", @@ -475,7 +457,6 @@ "NoSubtitles": "Pas de sous-titres", "NoSubtitlesHelp": "Les sous-titres ne seront pas chargés par défaut. Ils peuvent toujours être activés manuellement pendant la lecture.", "None": "Aucun", - "Normal": "Normal", "Off": "Désactivés", "OneChannel": "Une chaîne", "OnlyForcedSubtitles": "Seulement les sous-titres forcés", @@ -483,7 +464,6 @@ "OnlyImageFormats": "Seulement les formats image (VOBSUB, PGS, SUB/IDX etc)", "Open": "Ouvrir", "OptionNew": "Nouveau...", - "Original": "Original", "OriginalAirDateValue": "Date de diffusion originale : {0}", "Overview": "Synopsis", "PackageInstallCancelled": "L'installation de {0} a été annulée.", @@ -492,7 +472,6 @@ "ParentalRating": "Classification parentale", "People": "Personnes", "PerfectMatch": "Correspondance parfaite", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Mettre vos chaînes favorites au début", "Play": "Lire", "PlayAllFromHere": "Tout lire à partir d'ici", @@ -511,7 +490,6 @@ "PleaseRestartServerName": "Veuillez redémarrer le serveur Jellyfin - {0}.", "PleaseSelectDeviceToSyncTo": "Veuillez sélectionner l'appareil auquel le téléchargement doit être envoyé.", "PleaseSelectTwoItems": "Veuillez sélectionner au moins deux éléments.", - "Premiere": "Premiere", "Premieres": "Inédits", "Previous": "Précédent", "Primary": "Principal", @@ -592,17 +570,14 @@ "SortByValue": "Trier par {0}", "SortChannelsBy": "Trier les chaînes par :", "SortName": "Nom de tri", - "Sports": "Sports", "StatsForNerds": "Statistiques pour les geeks", "StopRecording": "Arrêter l'enregistrement", - "Studios": "Studios", "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Ces paramètres s'appliquent également à toute lecture Chromecast démarrée par cet appareil.", "SubtitleAppearanceSettingsDisclaimer": "Ces paramètres ne s'appliqueront pas aux sous-titres graphiques (PGS, DVD etc) ou aux sous-titres qui ont leurs propres styles incorporés (ASS/SSA).", "SubtitleCodecNotSupported": "Format des sous-titres non pris en charge", "SubtitleSettings": "Paramètres des sous-titres", "SubtitleSettingsIntro": "Pour configurer l'apparence des sous-titres et la langue par défaut, arrêtez la lecture de la vidéo, puis cliquez sur votre icône utilisateur située en haut à droite dans l'application.", "Subtitles": "Sous-titres", - "Suggestions": "Suggestions", "Sunday": "Dimanche", "Sync": "Synchroniser", "SyncJobItemStatusCancelled": "Annulé", @@ -617,7 +592,6 @@ "SyncUnwatchedVideosOnly": "Télécharger seulement les vidéos non lues", "SyncUnwatchedVideosOnlyHelp": "Seule les vidéos non lues seront téléchargées et les vidéos seront supprimées de l'appareil au fur et à mesure que vous les regardez.", "SyncingDots": "Synchronisation...", - "TV": "TV", "Tags": "Étiquettes", "TagsValue": "Mots clés: {0}", "TermsOfUse": "Conditions d'utilisation", @@ -642,14 +616,11 @@ "UntilSpaceNeeded": "Jusqu'à ce que l'espace disque soit nécessaire", "Up": "Haut", "Upload": "Envoyer", - "ValueAlbumCount": "{0} albums", "ValueDiscNumber": "Disque {0}", "ValueEpisodeCount": "{0} épisodes", "ValueGameCount": "{0} jeux", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} films", "ValueMusicVideoCount": "{0} vidéos musicales", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 épisode", "ValueOneGame": "1 jeu", "ValueOneItem": "1 élément", diff --git a/src/bower_components/emby-webcomponents/strings/gsw.json b/src/bower_components/emby-webcomponents/strings/gsw.json index 37c3694ad5..3b3f468af2 100644 --- a/src/bower_components/emby-webcomponents/strings/gsw.json +++ b/src/bower_components/emby-webcomponents/strings/gsw.json @@ -1,680 +1,21 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Abbreche", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "Fortlaufend", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Beendent", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Friitig", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "Artist:", "LabelArtistsHelp": "Trenn mehreri iisträg dur es ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", "LabelContentType": "Date Art:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Land:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Sproch:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Mäntig", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Biispell: Star Wars Sammlig", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "Samstig", "Save": "Speichere", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", "SearchForCollectionInternetMetadata": "Dursuechs Internet nach Bilder und Metadate", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "Sonntig", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Donnstig", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Tsischtig", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "Mittwoch", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/he.json b/src/bower_components/emby-webcomponents/strings/he.json index a7529722b4..73fbb47e4d 100644 --- a/src/bower_components/emby-webcomponents/strings/he.json +++ b/src/bower_components/emby-webcomponents/strings/he.json @@ -1,203 +1,68 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "שחקן", "Add": "הוסף", "AddToCollection": "להוסיף לאוסף", "AddToPlayQueue": "הוסף לתור הפעלה", "AddToPlaylist": "הוסף לרשימת ניגון", - "AddedOnValue": "Added {0}", "Advanced": "מתקדם", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", "AllChannels": "כל הערוצים", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "כל הפרקים", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", "Anytime": "בכל עת", "AroundTime": "בסביבות {0}", - "Art": "Art", - "Artists": "Artists", "AsManyAsPossible": "כמה שיותר", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "חדש", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", "AutomaticallySyncNewContentHelp": "תוכן חדש שנוסף לתיקיה זו יוריד באופן אוטומטי למכשיר.", - "Backdrop": "Backdrop", "Backdrops": "תפאורות", - "Banner": "Banner", - "BestFit": "Best fit", "BirthLocation": "מיקום לידה", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "בטל", "ButtonGotIt": "הבנתי", "ButtonOk": "בסדר", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "איתחול", "ButtonRestorePreviousPurchase": "שחזר רכישה", "ButtonTryAgain": "נסה שנית", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", "CancelRecording": "ביטול הקלטה", "CancelSeries": "בטל סדרה", "Categories": "קטגוריות", "ChannelNameOnly": "ערוץ {0} בלבד", "ChannelNumber": "מספר ערוץ", - "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.", "CinemaModeFeatureDescription": "מצב קולנוע נותן לך את החוויה הקולנוע אמיתי עם קדימונים מותאמים אישית לפני התכונה.", "CloudSyncFeatureDescription": "סנכרן את המדיה שלך לענן לצורך גיבוי קל, אחסון בארכיון והמרה.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "מלחין", "ConfigureDateAdded": "הגדר כיצד תאריך התוספת נקבע בלוח המחוונים של שרת Amby תחת הגדרות ספריה", "ConfirmDeleteImage": "למחוק את התמונה?", "ConfirmDeleteItem": "מחיקת פריט זה תמחק אותו הן ממערכת הקבצים והן מספריית המדיה שלך. האם אתה בטוח שברצונך להמשיך?", "ConfirmDeleteItems": "מחיקת פריטים אלה תמחק אותם הן ממערכת הקבצים והן מספריית המדיה שלך. האם אתה בטוח שברצונך להמשיך?", "ConfirmDeletion": "אשר מחיקה", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "ממשיך", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "מדינות", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "ימים", - "Default": "Default", "DefaultErrorMessage": "אירעה שגיאה בעיבוד הבקשה. בבקשה נסה שוב מאוחר יותר.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "מחק", "DeleteMedia": "מחק מדיה", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "מנהל", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "לא אוהב", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "אל תקליט", - "Down": "Down", "Download": "הורדה", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", "Downloads": "הורדות", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", "DvrSubscriptionRequired": "אמבי DVR דורשת מנוי פעיל של Jellyfin Premiere.", "Edit": "ערוך", "EditImages": "ערוך תמונות", - "EditMetadata": "Edit metadata", "EditSubtitles": "ערוך כתוביות", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", "EnableColorCodedBackgrounds": "אפשר רקע בצבע מקודד", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "הסתיים", "EndsAtValue": "מסתיים ב {0}", - "Episodes": "Episodes", "Error": "שגיאה", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "מועדף", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "תכונה זו דורשת מנוי פעיל של Jellyfin Premiere.", - "Features": "Features", "File": "קובץ", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "באפשרותך ליהנות מגישה חופשית ליישומי Jellyfin עבור המכשירים שלך.", "Friday": "שישי", - "GenreValue": "Genre: {0}", "Genres": "ז'אנרים", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "גרסאות קבוצתיות", "GuestStar": "כוכב אורח", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "תוכניות HD", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "להוסיף לאוסף", "HeaderAddToPlaylist": "הוסף לרשימת ניגון", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "קבל Jellyfin Premiere", "HeaderBenefitsJellyfinPremiere": "היתרונות של אמבי Premiere", "HeaderCancelRecording": "ביטול הקלטה", @@ -205,100 +70,39 @@ "HeaderCinemaMode": "מצב קולנוע", "HeaderCloudSync": "סנכרון ענן", "HeaderConfirmRecordingCancellation": "אשר ביטול הקלטה", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", "HeaderConvertYourRecordings": "המרת הקלטות שלך", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "מחק פריט", "HeaderDeleteItems": "מחיקת פריטים", "HeaderDisplaySettings": "הגדרות תצוגה", - "HeaderDownloadSettings": "Download Settings", "HeaderEditImages": "ערוך תמונות", "HeaderEnabledFields": "שדות זמינים", "HeaderEnabledFieldsHelp": "בטל את הסימון בשדה כדי לנעול אותו ולמנוע שינוי בנתונים.", "HeaderExternalIds": "מזהים חיצוניים:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "אפליקציות אמבי בחינם", - "HeaderHomeScreen": "Home Screen", "HeaderIdentifyItemHelp": "הזן קריטריון חיפוש אחד או יותר. הסר קריטריונים כדי להגדיל את תוצאות החיפוש.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", "HeaderKeepRecording": "שמור על הקלטה", "HeaderKeepSeries": "שמור סדרה", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLearnMore": "למד עוד", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", "HeaderMetadataSettings": "הגדרות מטא נתונים", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "הקלטה חדשה", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "מדיה לא מקוונת", "HeaderOfflineDownloadsDescription": "הורד מדיה למכשירים שלך לשימוש לא מקוון בקלות.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", "HeaderRecordingOptions": "אפשרויות הקלטה", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "תגיד משהו כמו ...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "בחר תאריך", "HeaderSeriesOptions": "אפשרויות סדרה", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "פרטי אפיזודות מיוחדות", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", "HeaderTryPlayback": "נסה הפעלה", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", "HeaderYouSaid": "אתה אמרת...", "Help": "עזרה", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "איך שילמת?", "IHaveJellyfinPremiere": "יש לי אמבי Premiere", "IPurchasedThisApp": "רכשתי את האפליקציה הזו", "Identify": "לזהות", "Images": "תמונות", - "ImdbRating": "IMDb rating", "InstallingPackage": "מתקין {0}", "InstantMix": "מיקס מיידי", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "פריטים {0}", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", "Kids": "ילדים", "Label3DFormat": "פורמט תלת-ממדי:", "LabelAirDays": "ימי אויר:", @@ -310,47 +114,29 @@ "LabelAlbumArtists": "אלבום אומנים:", "LabelArtists": "אומנים:", "LabelArtistsHelp": "הפרד מרובים באמצעות;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "תאריך לידה:", "LabelBirthYear": "שנת לידה:", "LabelBitrateMbps": "קצב סיביות (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "ערוצים:", "LabelCollection": "אוספים:", "LabelCommunityRating": "דירוג הקהילה:", "LabelContentType": "סוג התוכן", - "LabelConvertTo": "Convert to:", "LabelCountry": "מדינה:", "LabelCriticRating": "דירוג ביקורת:", "LabelCustomRating": "דירוג מותאם אישית:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "תאריך הוסף:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "תאריך המוות:", - "LabelDefaultScreen": "Default screen:", "LabelDiscNumber": "מספר דיסק:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "סדר תצוגה:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", "LabelDynamicExternalId": "{0} תעודת זהות:", "LabelEmailAddress": "כתובת דוא\"ל:", "LabelEndDate": "תאריך סיום:", "LabelEpisodeNumber": "מספר פרק:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "מגבלת פריט:", "LabelKeep:": "שמור:", "LabelKeepUpTo": "שמור עד ל:", "LabelLanguage": "שפה:", "LabelLockItemToPreventChanges": "נעל פריט זה כדי למנוע שינויים עתידיים", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "שפת הורדה מועדפת:", "LabelName": "שם:", "LabelNumber": "מספר:", @@ -363,100 +149,48 @@ "LabelPersonRole": "תפקיד:", "LabelPersonRoleHelp": "דוגמה: נהג משאית גלידה", "LabelPlaceOfBirth": "מקום לידה:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "רשימת ניגון:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "פרופיל:", "LabelQuality": "איכות:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "הקלטה:", "LabelRefreshMode": "מצב רענון:", "LabelReleaseDate": "תאריך הוצאה:", "LabelRuntimeMinutes": "זמן ריצה (דקות):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "מספר עונה:", - "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.", "LabelShortOverview": "סקירה קצרה:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "מיין כותרת:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", "LabelStartWhenPossible": "התחל ברגע שניתן:", "LabelStatus": "סטטוס:", "LabelStopWhenPossible": "הפסק ברגע שאפשר", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "סנכרן את שם העבודה:", "LabelSyncNoTargetsHelp": "נראה שאין לך כרגע אפליקציות התומכות בהורדה במצב לא מקוון.", "LabelSyncTo": "סנכרן ל:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "שורת תיוג:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", "LabelTitle": "כותרת:", "LabelTrackNumber": "קטע מספר:", "LabelType": "סוג:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "אתר:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "שנה:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "למד עוד", "Like": "אוהב", - "LinksValue": "Links: {0}", - "List": "List", "Live": "שידור חי", "LiveBroadcasts": "שידורים חיים", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "סמן נוגן", "MarkUnplayed": "סמן לא נוגן", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", "MessageAreYouSureDeleteSubtitles": "האם אתה בטוח שברצונך למחוק קובץ כתובית זה?", "MessageConfirmRecordingCancellation": "האם אתה בטוח שברצונך לבטל הקלטה זו?", "MessageDownloadQueued": "הורד תור", - "MessageFileReadError": "There was an error reading the file. Please try again.", "MessageIfYouBlockedVoice": "אם מנעת גישה קולית לאפליקציה שתצטרך להגדיר מחדש לפני שתנסה שוב.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "הפריט נשמר.", "MessageItemsAdded": "פריטים נוספו.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "השאר ריק כדי לרשת את ההגדרות מפריט אב, או את ערך ברירת המחדל הגלובלי.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "אם יש לך מנוי פעיל של Jellyfin Premiere, ודא שהגדרת את Jellyfin Premiere במרכז השליטה של ​​אמבי שרת, שבו באפשרותך לגשת על-ידי לחיצה על Jellyfin Premiere בתפריט הראשי.", "MessageUnlockAppWithPurchaseOrSupporter": "נעילת תכונה זו עם רכישה חד פעמית קטנה, או עם מנוי פעיל Premiere אמבי.", "MessageUnlockAppWithSupporter": "ביטול נעילה של תכונה זו עם מנוי פעיל של Jellyfin Premiere.", "MessageWeDidntRecognizeCommand": "אנחנו מצטערים, לא זיהינו את הפקודה הזאת.", "MinutesAfter": "דקות אחרי", "MinutesBefore": "דקות לפני", - "Mobile": "Mobile / Tablet", "Monday": "שני", - "More": "More", "MoveLeft": "זוז שמאלה", "MoveRight": "זוז ימינה", "Movies": "סרטים", @@ -468,104 +202,55 @@ "NewEpisodes": "פרקים חדשים", "NewEpisodesOnly": "פרקים חדשים בלבד", "News": "חדשות", - "Next": "Next", - "No": "No", "NoItemsFound": "לא נמצאו פריטים", "NoSubtitleSearchResultsFound": "לא נמצאו תוצאות.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "פתח", "OptionNew": "חדש...", - "Original": "Original", "OriginalAirDateValue": "תאריך אוויר מקורי: {0}", "Overview": "סקירה כללית", "PackageInstallCancelled": "{0} ההתקנה בוטלה.", - "PackageInstallCompleted": "{0} installation completed.", "PackageInstallFailed": "ההתקנה {0} נכשלה.", "ParentalRating": "דירוג ההורים", "People": "אנשים", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "נגן", "PlayAllFromHere": "נגן הכל מכאן", - "PlayCount": "Play count", "PlayFromBeginning": "נגן מהתחלה", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", "PleaseEnterNameOrId": "הזן שם או מזהה חיצוני.", "PleaseRestartServerName": "אנא הפעל מחדש את שרת Jellyfin - {0}.", "PleaseSelectDeviceToSyncTo": "בחר מכשיר להורדה אליו.", "PleaseSelectTwoItems": "בחר לפחות שני פריטים.", "Premiere": "הקרנת בכורה", "Premieres": "בכורות", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "במאי", "ProductionLocations": "מיקומי ייצור", - "Programs": "Programs", "PromoConvertRecordingsToStreamingFormat": "להמיר באופן אוטומטי הקלטות בפורמט זורם ידידותי עם אמבי Premiere. הקלטות יומרו על לטוס ל MP4 או MKV, בהתבסס על הגדרות שרת אמבי.", - "Quality": "Quality", "QueueAllFromHere": "הוסף הכל מכאן לתור", - "Raised": "Raised", "RecentlyWatched": "נצפה לאחרונה", "Record": "הקלט", "RecordSeries": "הקלט סדרה", "RecordingCancelled": "בטל הקלטה", "RecordingScheduled": "ההקלטה מתוזמנת.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "רענון", "RefreshDialogHelp": "המטא נתונים מתרעננים על סמך הגדרות ושירותי אינטרנט שמופעלים בלוח המחוונים של מרכז אמבי.", - "RefreshMetadata": "Refresh metadata", "RefreshQueued": "רענן תור.", - "Reject": "Reject", "ReleaseDate": "תאריך שיחרור", - "RemoveDownload": "Remove download", "RemoveFromCollection": "הסר מאוספים", "RemoveFromPlaylist": "הסר מרשימת הניגון", - "RemovingFromDevice": "Removing from device", "Repeat": "חזור", - "RepeatAll": "Repeat all", "RepeatEpisodes": "חזור על פרקים", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", "ReplaceAllMetadata": "החלף את כל המטא נתונים", "ReplaceExistingImages": "החלף תמונות קיימות", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "המשך מ {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", "Runtime": "זמן ריצה", "Saturday": "שבת", "Save": "שמור", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", "Screenshots": "צילומי מסך", "Search": "חיפוש", "SearchForCollectionInternetMetadata": "חפש באינרנט אחרי מידע ותמונות", "SearchForMissingMetadata": "חפש מטא נתונים חסרים", "SearchForSubtitles": "חיפוש של כתוביות", "SearchResults": "תוצאות חיפוש", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "בטל סדרות", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "הקלטת סדרה מתוזמנת.", "SeriesSettings": "הגדרות סדרה", "SeriesYearToPresent": "{0} - היום", @@ -573,75 +258,31 @@ "ServerNameIsShuttingDown": "שרת Jellyfin - {0} נכבה.", "ServerUpdateNeeded": "שרת אמבי זה צריך להיות מעודכן. כדי להוריד את הגרסה העדכנית ביותר, בקר בכתובת {0}", "Settings": "הגדרות", - "SettingsSaved": "Settings saved.", "Share": "שיתוף", "ShowIndicatorsFor": "הצג מחוונים עבור:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "ערבב", "SkipEpisodesAlreadyInMyLibrary": "אל תקליטו פרקים שכבר נמצאים בספרייה שלי", "SkipEpisodesAlreadyInMyLibraryHelp": "פרקים יושוו באמצעות העונה ואת הפרק פרק, כאשר זמין.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", "SortChannelsBy": "מיין ערוצים לפי:", "SortName": "מיין לפי שם", "Sports": "ספורט", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "אולפני", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "כתוביות", - "Suggestions": "Suggestions", "Sunday": "ראשון", "Sync": "סנכרן", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", "SyncUnwatchedVideosOnlyHelp": "רק סרטונים שלא הורדו יורדו, וסרטונים יוסרו מהמכשיר כפי שהם צפו.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "תגים", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", "ThankYouForTryingEnjoyOneMinute": "אנא ליהנות דקה אחת של השמעה. תודה שניסית את אמבי.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "חמישי", "TrackCount": "שירים {0}", "Trailer": "קטעי סרט", - "Trailers": "Trailers", - "Transcoding": "Transcoding", "TryMultiSelect": "נסה בחירה מרובה", "TryMultiSelectMessage": "כדי לערוך פריטי מדיה מרובים, פשוט לחץ לחיצה ארוכה על כל פוסטר ובחר את הפריטים שברצונך לנהל. נסה זאת!", "Tuesday": "שלישי", - "Uniform": "Uniform", "UnlockGuide": "נעילת מדריך", - "Unplayed": "Unplayed", "Unrated": "אין דירוג", "UntilIDelete": "עד שאמחק", "UntilSpaceNeeded": "עד הצורך במרחב", - "Up": "Up", - "Upload": "Upload", "ValueAlbumCount": "{0} אלבומים", "ValueDiscNumber": "דיסק {0}", "ValueEpisodeCount": "{0} פרקים", @@ -657,24 +298,12 @@ "ValueOneMusicVideo": "וידאו קליפ 1", "ValueOneSeries": "1 סדרה", "ValueOneSong": "שיר 1", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} סדרות", "ValueSongCount": "{0} שירים", "ValueSpecialEpisodeName": "מיוחד- {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "צפה באלבום", "ViewArtist": "צפה באמן", "VoiceInput": "קלט קולי", - "Watched": "Watched", "Wednesday": "רביעי", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "כותב", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/hr.json b/src/bower_components/emby-webcomponents/strings/hr.json index b9d30e828c..2cf2e4cfd9 100644 --- a/src/bower_components/emby-webcomponents/strings/hr.json +++ b/src/bower_components/emby-webcomponents/strings/hr.json @@ -1,58 +1,17 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Glumac", "Add": "Dodaj", "AddToCollection": "Dodaj u kolekciju", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Dodaj u popis", - "AddedOnValue": "Added {0}", "Advanced": "Napredno", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", "AllChannels": "Svi kanali", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Sve epizode", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", "Anytime": "Bilo kada", "AroundTime": "Oko {0}", - "Art": "Art", - "Artists": "Artists", "AsManyAsPossible": "Što više je moguće", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "Novo", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", "Backdrops": "Pozadine", - "Banner": "Banner", - "BestFit": "Best fit", "BirthLocation": "Lokacije rođenja", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Odustani", "ButtonGotIt": "Shvaćam", "ButtonOk": "U redu", @@ -62,142 +21,48 @@ "ButtonTryAgain": "Pokušajte ponovo", "ButtonUnlockPrice": "Otključaj {0}", "ButtonUnlockWithPurchase": "Otključaj s kupovinom", - "CancelDownload": "Cancel download", "CancelRecording": "Prekini snimanje", "CancelSeries": "Odustani od serije", "Categories": "Kategorije", "ChannelNameOnly": "Kanali {0} samo", "ChannelNumber": "Broj kanala", - "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.", "CinemaModeFeatureDescription": "Kino način vam daje pravi doživljaj kina s kratkim filmovima i prilagođenim isječcima prije odabrane značajke.", "CloudSyncFeatureDescription": "Sinkronizirajte svoje medije na oblaku za jednostavni backup, arhiviranje i konvertiranje.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "Kompozitor", "ConfigureDateAdded": "Podesite kako se datum dodavanja određuje na nadzornoj ploči Jellyfin Server-a u postavkama biblioteke", "ConfirmDeleteImage": "Izbriši sliku?", "ConfirmDeleteItem": "Brisanjem ove stavke će je izbrisati iz oba datotečnog sustava i medijskoj biblioteci. Jeste li sigurni da želite nastaviti?", "ConfirmDeleteItems": "Brisanjem ove stavke će se izbrisati iz oba datotečnog sustava i medijskoj biblioteci. Jeste li sigurni da želite nastaviti?", "ConfirmDeletion": "Potvrdite brisanje", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "Nastavlja se", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Zemlje", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Dani", - "Default": "Default", "DefaultErrorMessage": "Došlo je do pogreške prilikom obrade zahtjeva. Molimo pokušajte ponovo kasnije.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Izbriši", "DeleteMedia": "Izbriši medij", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Režiser", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "Ne sviđa mi se", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "Ne snimi", - "Down": "Down", "Download": "Preuzimanje", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR zahtijeva aktivnu pretplatu Jellyfin Premijere.", "Edit": "Izmjeni", "EditImages": "Uređivanje slika", - "EditMetadata": "Edit metadata", "EditSubtitles": "Uredi titlove", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", "EnableColorCodedBackgrounds": "Omogući kodirane boje pozadine", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Završeno", "EndsAtValue": "Završava u {0}", - "Episodes": "Episodes", "Error": "Greška", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Omiljeni", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "Ova značajka zahtijeva aktivnu pretplatu Jellyfin Premijere.", - "Features": "Features", "File": "Datoteka", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Uživajte u slobodnom pristupu Jellyfin aplikacija za svoje uređaje.", "Friday": "Petak", - "GenreValue": "Genre: {0}", "Genres": "Žanrovi", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "Verzija grupe", "GuestStar": "Zvijezda gost", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "HD programi", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Dodaj u kolekciju", "HeaderAddToPlaylist": "Dodaj u popis", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "Nabavite Jellyfin Premijeru", "HeaderBenefitsJellyfinPremiere": "Prednosti Jellyfin premijere", "HeaderCancelRecording": "Prekini snimanje", @@ -205,258 +70,121 @@ "HeaderCinemaMode": "Kino način", "HeaderCloudSync": "Sink. preko oblaka", "HeaderConfirmRecordingCancellation": "Potvrdi otkazivanje snimanja", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", "HeaderConvertYourRecordings": "Konvertiraj snimke", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Izbriši stavku", "HeaderDeleteItems": "Brisanje stavki", "HeaderDisplaySettings": "Postavke prikaza", - "HeaderDownloadSettings": "Download Settings", "HeaderEditImages": "Uređivanje slika", "HeaderEnabledFields": "Omogući polja", "HeaderEnabledFieldsHelp": "Poništi polje za zaključavanje i spriječi njihove podatke od toga da budu promijenjeni.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Besplatne Jellyfin aplikacije", - "HeaderHomeScreen": "Home Screen", "HeaderIdentifyItemHelp": "Unesite jednu ili više kriterija pretraživanja. Uklonite kriterije za povećanje rezultata pretraživanja.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", "HeaderKeepRecording": "Zadrži snimanje", "HeaderKeepSeries": "Zadrži serije", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLearnMore": "Nauči još", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", "HeaderMetadataSettings": "Postavke meta-podataka", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "Nova snimka", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "Izvanmrežni mediji", "HeaderOfflineDownloadsDescription": "Preuzimanje medija na svojim uređajima za jednostavnu upotrebu izvan mreže.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Reproduciraj moje medije", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", "HeaderRecordingOptions": "Opcije snimanja", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "Reci nešto poput...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Odaberi datum", "HeaderSeriesOptions": "Opcije serija", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Posebni podaci o epizodi", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", "HeaderTryPlayback": "Isprobajte reprodukciju", "HeaderUnlockFeature": "Otključaj značajke", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", "HeaderYouSaid": "Rekao si...", "Help": "Pomoć", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "Kako ste platili?", "IHaveJellyfinPremiere": "Imam Jellyfin Premijeru", "IPurchasedThisApp": "Kupio sam ovu aplikaciju", "Identify": "Identificiraj", "Images": "Slike", - "ImdbRating": "IMDb rating", "InstallingPackage": "Instaliranje {0}", "InstantMix": "Trenutno miješanje", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} stavaka", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", "Kids": "Djeca", - "Label3DFormat": "3D format:", "LabelAirDays": "Dani emitiranja:", "LabelAirTime": "Vrijeme emitiranja:", "LabelAirsAfterSeason": "Emitiranje nakon sezona:", "LabelAirsBeforeEpisode": "Emitiranje prije epizoda:", "LabelAirsBeforeSeason": "Emitiranje prije sezone:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Izvođači albuma", "LabelArtists": "Izvođači:", "LabelArtistsHelp": "Odvoji višestruko koristeći ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "Datum rođenja:", "LabelBirthYear": "Godina rođenja:", "LabelBitrateMbps": "Brzina prijenosa (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Kanali:", "LabelCollection": "Kolekcija:", "LabelCommunityRating": "Ocjene zajednice:", "LabelContentType": "Tip sadržaja:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Zemlja:", "LabelCriticRating": "Ocjene kritike:", "LabelCustomRating": "Prilagođena ocjena:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Datumu dodavanja", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Datum smrti:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Poredak prikaza:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-mail adresa:", "LabelEndDate": "Datum završetka:", "LabelEpisodeNumber": "Broj epizode:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "Ograničenje stavke:", "LabelKeep:": "Zadrži:", "LabelKeepUpTo": "Drži se na:", "LabelLanguage": "Jezik:", "LabelLockItemToPreventChanges": "Zaključajte ovu stavku kako bi se spriječile buduće promjene", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Željeni jezik za preuzimanje:", "LabelName": "Ime:", "LabelNumber": "Broj:", "LabelOriginalAspectRatio": "Originalni omjer gledanja:", "LabelOriginalTitle": "Originalni naslov:", "LabelOverview": "Pregled:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Roditeljska ocjena:", "LabelPath": "Putanja:", "LabelPersonRole": "Uloga:", "LabelPersonRoleHelp": "Primjer: vozač kamiona sa sladoledom", "LabelPlaceOfBirth": "Datum rođenja:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Popis:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "Profil:", "LabelQuality": "Kvaliteta:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "Snimka:", "LabelRefreshMode": "Način osvježavanja:", "LabelReleaseDate": "Datum izdavanja:", "LabelRuntimeMinutes": "Vrijeme izvođenja (minuta):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "Broj sezone:", - "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.", "LabelShortOverview": "Kratki pregled:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Naziv vrste:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", "LabelStartWhenPossible": "Počni kada je moguće:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Zaustavi kada je moguće:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "Ime sinkronizacijskog posla:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Sinkroniziraj na:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Slogan:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", "LabelTitle": "Naslov:", "LabelTrackNumber": "Broj pjesme:", "LabelType": "Tip:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "Web stranica:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Nauči još", "Like": "Sviđa mi se", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Uživo", "LiveBroadcasts": "Emitiranja uživo", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "Označi pogledan", "MarkUnplayed": "Označi nepogledan", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Aktivna pretplata Jellyfin Premijere je potrebna kako bi se napravilo automatsko snimanje serija.", "MessageAreYouSureDeleteSubtitles": "Da li ste sigurni da želite izbrisati ove titlove prijevoda?", "MessageConfirmRecordingCancellation": "Jeste li sigurni da želite poništiti ovu snimku?", "MessageDownloadQueued": "Preuzimanje na čekanju", - "MessageFileReadError": "There was an error reading the file. Please try again.", "MessageIfYouBlockedVoice": "Ako ste zabranili glasovni pristup aplikaciji morate ponovo podesiti prije ponovnog pokušaja.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Stavka je snimljena.", "MessageItemsAdded": "Stavke su dodane", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "Ostavite prazno da naslijedi postavke od roditelja stavke ili globalnu zadanu vrijednost.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "Ako imate aktivnu pretplatu Jellyfin Premijere provjerite dali ste postavili Jellyfin Premijeru u svojoj nadzornoj ploči Jellyfin Server-a kojoj možete pristupiti klikom Jellyfin Premijera u glavnom izborniku.", "MessageUnlockAppWithPurchaseOrSupporter": "Otključaj ovu mogućnost s malom jednokratnom kupnjom ili s aktivnom pretplatom Jellyfin Premijere.", "MessageUnlockAppWithSupporter": "Otključaj ovu mogućnost sa pretplatom Jellyfin Premijere.", "MessageWeDidntRecognizeCommand": "Nažalost, nismo prepoznali tu naredbu.", "MinutesAfter": "Minuta nakon", "MinutesBefore": "Minuta prije", - "Mobile": "Mobile / Tablet", "Monday": "Ponedjeljak", - "More": "More", "MoveLeft": "Pomakni ulijevo", "MoveRight": "Pomakni udesno", "Movies": "Filmovi", @@ -468,22 +196,10 @@ "NewEpisodes": "Nove epizode", "NewEpisodesOnly": "Samo nove epizode", "News": "Vijesti", - "Next": "Next", - "No": "No", "NoItemsFound": "Nije ništa pronađeno.", "NoSubtitleSearchResultsFound": "Nije ništa pronađeno.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Otvori", "OptionNew": "Novo...", - "Original": "Original", "OriginalAirDateValue": "Originalni datum prikazivanja: {0}", "Overview": "Pregled", "PackageInstallCancelled": "{0} instaliranje otkazano.", @@ -491,81 +207,45 @@ "PackageInstallFailed": "{0} instaliranje neuspjelo.", "ParentalRating": "Parental Rating", "People": "Ljudi", - "PerfectMatch": "Perfect match", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Postavi omiljene kanale na početak", "Play": "Pokreni", "PlayAllFromHere": "Pokreni sve odavde", - "PlayCount": "Play count", "PlayFromBeginning": "Igraj od početka", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Unesite naziv ili vanjski Id.", "PleaseRestartServerName": "Ponovno pokrenite Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Molimo odaberite najmanje dvije stavke.", "Premiere": "Premijera", "Premieres": "Premijere", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "Producent", "ProductionLocations": "Lokacije proizvodnje", - "Programs": "Programs", "PromoConvertRecordingsToStreamingFormat": "Automatski pretvoriti snimke na prijateljskom formatu strujanja s Jellyfin Premijerom. Snimke će se pretvoriti u letu u MP4 ili MKV na temelju postavki Jellyfin poslužitelja.", - "Quality": "Quality", "QueueAllFromHere": "Stavi u red čekanja sve odavde", - "Raised": "Raised", "RecentlyWatched": "Nedavno pogledano", "Record": "Snimi", "RecordSeries": "Snimi serije", "RecordingCancelled": "Snimka je otkazana.", "RecordingScheduled": "Snimka je zakazana.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Osviježi", "RefreshDialogHelp": "Meta-podaci se osvježavaju na temelju postavki i internet usluga koje su omogućene u nadzornoj ploči Jellyfin Server-a.", - "RefreshMetadata": "Refresh metadata", "RefreshQueued": "Osviježi stavke na čekanju", - "Reject": "Reject", "ReleaseDate": "Datum izdavanja", - "RemoveDownload": "Remove download", "RemoveFromCollection": "Ukloni iz kolekcije", "RemoveFromPlaylist": "Ukloni iz popisa", - "RemovingFromDevice": "Removing from device", "Repeat": "Ponovi", - "RepeatAll": "Repeat all", "RepeatEpisodes": "Reprize", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", "ReplaceAllMetadata": "Zamijeni sve mate-podatke", "ReplaceExistingImages": "Zamijeni postojeće slike", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Nastavi od {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", "Runtime": "Trajanje", "Saturday": "Subota", "Save": "Snimi", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", "Screenshots": "Isječci slika", "Search": "Traži", "SearchForCollectionInternetMetadata": "Potraži na internetu grafike i metadata", "SearchForMissingMetadata": "Potraga za meta-podacima koji nedostaju", "SearchForSubtitles": "Traži titlove prijevoda", "SearchResults": "Rezultati pretraživanja", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "Serija je otkazana.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Snimanje serije je zakazano.", "SeriesSettings": "Postavke serija", "SeriesYearToPresent": "{0} - sada", @@ -573,75 +253,29 @@ "ServerNameIsShuttingDown": "Jellyfin Server - {0} se gasi.", "ServerUpdateNeeded": "Jellyfin Server treba ažurirati. Da biste preuzeli najnoviju verziju, posjetite {0}", "Settings": "Postavke", - "SettingsSaved": "Settings saved.", "Share": "Dijeli", "ShowIndicatorsFor": "Prikaži pokazatelja za:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "Miješaj", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", "SkipEpisodesAlreadyInMyLibraryHelp": "Epizode će se usporediti pomoću sezone i broja epizode, kada su dostupni.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", "SortChannelsBy": "Složi kanale po:", "SortName": "Ime vrste", "Sports": "Sportovi", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "Studija", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Titlovi", - "Suggestions": "Suggestions", "Sunday": "Nedjelja", "Sync": "Sink.", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Oznake", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", "ThankYouForTryingEnjoyOneMinute": "Molimo Vas da uživate u jednoj minuti reprodukcije. Hvala što ste isprobali Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Četvrtak", "TrackCount": "{0} pjesme", "Trailer": "Kratki video", - "Trailers": "Trailers", - "Transcoding": "Transcoding", "TryMultiSelect": "Pokušajte višestruki odabir", "TryMultiSelectMessage": "Da biste uredili više medijskih stavaka, samo kliknite i držite bilo koji plakat i odaberite stavke kojima želite upravljati. Probaj!", "Tuesday": "Utorak", - "Uniform": "Uniform", "UnlockGuide": "Otključaj vodič", - "Unplayed": "Unplayed", "Unrated": "Neocijenjeno", "UntilIDelete": "Dok ne izbrišem", "UntilSpaceNeeded": "Dok ne treba prostora", - "Up": "Up", - "Upload": "Upload", "ValueAlbumCount": "{0} albuma", "ValueDiscNumber": "Disk {0}", "ValueEpisodeCount": "{0} epizoda", @@ -649,32 +283,18 @@ "ValueMinutes": "{0} minuta", "ValueMovieCount": "{0} filmova", "ValueMusicVideoCount": "{0} glazbenih videa", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 epizoda", "ValueOneGame": "1 igra", - "ValueOneItem": "1 item", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 glazbeni video", "ValueOneSeries": "1 serija", "ValueOneSong": "1 pjesma", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} serija", "ValueSongCount": "{0} pjesma", "ValueSpecialEpisodeName": "Specijal - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "Pogledaj album", "ViewArtist": "Pogledaj umjetnika", "VoiceInput": "Ulazni glas", - "Watched": "Watched", "Wednesday": "Srijeda", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Pisac", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/hu.json b/src/bower_components/emby-webcomponents/strings/hu.json index c4ea5df5c0..e94ea9804d 100644 --- a/src/bower_components/emby-webcomponents/strings/hu.json +++ b/src/bower_components/emby-webcomponents/strings/hu.json @@ -1,680 +1,242 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", "Add": "Hozzáad", "AddToCollection": "Hozzáadás gyűjteményhez", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Lejátszási listához adni", "AddedOnValue": "Hozzáadva {0}", "Advanced": "Haladó", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Összes epizód", "AllLanguages": "Összes nyelv", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", "Ascending": "Növekvő", - "AspectRatio": "Aspect ratio", "AttributeNew": "Új", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", "AudioProfileNotSupported": "Audió profil nem támogatott", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Automatikus (a nyelvi beállítások alapján)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", "Books": "Könyvek", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Mégsem", "ButtonGotIt": "Értettem", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Egy perc lejátszása", "ButtonRestart": "Újraindítás", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", "CinemaModeFeatureDescription": "A Cinema Mode igazi mozi élményt nyújt előzetessel és egyedi intróval a film vetítése előtt.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "Collections": "Gyűjtemények", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", "CommunityRating": "Közösségi értékelés", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", "Connect": "Kapcsolódás", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", "Continue": "Tovább", "ContinueInSecondsValue": "Tovább {0} mp múlva.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", "Convert": "Átkonvertál", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", "ConvertUnwatchedVideosOnly": "Csak a nem látott videók konvertálása", "ConvertUnwatchedVideosOnlyHelp": "Csak a nem látott videók lesznek konvertálva.", "ConvertingDots": "Átkonvertálás...", - "Countries": "Countries", - "CriticRating": "Critic rating", "DateAdded": "Hozzáadva", "DatePlayed": "Lejátszás dátuma", "Days": "Nap", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Törlés", "DeleteMedia": "Média törlés", - "Depressed": "Depressed", "Descending": "Csökkenő", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Rendező", "DirectorValue": "Rendező: {0}", "DirectorsValue": "Rendezők: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "Nem tettszik", "Display": "Megjelenítés", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", "DisplayMissingEpisodesWithinSeasons": "Hiányzó évad epizódok megjelenítése", "DisplayMissingEpisodesWithinSeasonsHelp": "Ezt engedélyezni kell az Jellyfin Szerver beállításban lévő TV könyvtárak esetében is.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", "Down": "Le", "Download": "Letöltés", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Letöltött", "Downloading": "Letöltés", "DownloadingDots": "Letöltés...", "Downloads": "Letöltések", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Szerkesztés", "EditImages": "Képek szerkesztése", "EditMetadata": "Metaadat szerkesztés", "EditSubtitles": "Feliratok szerkesztése", "EnableBackdrops": "Háttérképek engedélyezve", "EnableBackdropsHelp": "Ha engedélyezve van, akkor a háttérképek a könyvtár böngészése közben néhány oldal hátterében jelennek meg.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", "EnableThemeSongs": "Főcím dalok engedélyezése", "EnableThemeSongsHelp": "Ha engedélyezve van, a főcím dalok a háttérben játszódnak le a könyvtár böngészése közben.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", "EndsAtValue": "Várható befejezés {0}", "Episodes": "Epizódok", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Kedvenc", "Favorites": "Kedvencek", "FeatureRequiresJellyfinPremiere": "Ez a szolgáltatás aktív Jellyfin Premier előfizetést igényel.", "Features": "Jellemzők", - "File": "File", - "Fill": "Fill", "Filters": "Szűrők", "Folders": "Mappák", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Péntek", - "GenreValue": "Genre: {0}", "Genres": "Műfajok", "GenresValue": "Műfajok: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Hozzáadás gyűjteményhez", "HeaderAddToPlaylist": "Lejátszási listához adni", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", "HeaderAlreadyPaid": "Már Fizetve?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Hangos könyvek", "HeaderAudioSettings": "Audió Beállítások", "HeaderBecomeProjectSupporter": "Jellyfin Premiere beszerzése", "HeaderBenefitsJellyfinPremiere": "Jellyfin Premiere előnyei", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", "HeaderCloudSync": "Felhőszinkronizáció ", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", "HeaderContinueWatching": "Vetítés(ek) folytatása", - "HeaderConvertYourRecordings": "Convert Your Recordings", "HeaderCustomizeHomeScreen": "Kezdőképernyő testreszabása", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", "HeaderDisplaySettings": "Képernyő beállítások", "HeaderDownloadSettings": "Letöltés beállítások", "HeaderEditImages": "Képek szerkesztése", "HeaderEnabledFields": "Engedélyezett mezők", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", "HeaderExternalIds": "Külső id-k:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", "HeaderFavoriteEpisodes": "Kedvenc Epizódok", - "HeaderFavoriteGames": "Favorite Games", "HeaderFavoriteMovies": "Kedvenc Filmek", - "HeaderFavoritePlaylists": "Favorite Playlists", "HeaderFavoriteShows": "Kedvenc Műsorok", "HeaderFavoriteSongs": "Kedvenc Dalok", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Ingyenes Jellyfin alkalmazások", "HeaderHomeScreen": "Kezdőképernyő", "HeaderIdentifyItemHelp": "Adj meg egy vagy több keresési kritériumot. Távolítsd el a kritériumokat a keresési eredmények növelése érdekében.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", "HeaderLatestFrom": "Legújabb innen {0}", "HeaderLatestMedia": "Legújabb média", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", "HeaderLibraryFolders": "Könyvtár mappák", "HeaderLibraryOrder": "Médiatár rendezés", "HeaderMetadataSettings": "Metaadat Beállítások", - "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "Jelenlegi eszköz", "HeaderMyMedia": "Médiatáram", "HeaderMyMediaSmall": "Médiatáram (kicsi)", "HeaderNewRecording": "Új Felvétel", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", "HeaderNextUp": "Következik", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "Offline Média", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", "HeaderPlayOn": "Vetítés itt", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Válassz dátumot", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", "HeaderSubtitleSettings": "Felirat Beállítások", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", "HeaderUnlockFeature": "Funkció feloldása", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Videó típusa:", "HeaderWaitingForWifi": "Wifi-re vár", - "HeaderYouSaid": "You Said...", "Help": "Segítség", - "Hide": "Hide", "HideWatchedContentFromLatestMedia": "A megtekintett tartalom elrejtése a legújabb médiából", "Home": "Kezdőlap", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", "Identify": "Azonosítás", "Images": "Képek", - "ImdbRating": "IMDb rating", "InstallingPackage": "{0} Telepítése", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", "Label3DFormat": "3D formátum:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "Előadók:", - "LabelArtistsHelp": "Separate multiple using ;", "LabelAudio": "Audió:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", "LabelBirthYear": "Születési év:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", "LabelCollection": "Gyűjtemény:", "LabelCommunityRating": "Közösségi értékelés:", "LabelContentType": "Tartalom típusa:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Ország:", "LabelCriticRating": "Kritikusok értékelése", "LabelCustomRating": "Egyéni értékelés:", "LabelDashboardTheme": "Szerver vezérlőpult kinézet:", "LabelDateAdded": "Hozzáadva:", "LabelDateTimeLocale": "Földrajzi dátum:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Megjelenítési sorrend:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-mail cím:", - "LabelEndDate": "End date:", "LabelEpisodeNumber": "Epizód száma:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", "LabelHomeScreenSectionValue": "Kezdőképernyő blokk {0}:", "LabelImageType": "Kép típusa:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "Elemszám limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Nyelv:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Elsődleges letöltendő nyelv:", "LabelName": "Név:", - "LabelNumber": "Number:", "LabelOriginalAspectRatio": "Eredeti képarány:", "LabelOriginalTitle": "Eredeti cím:", "LabelOverview": "Tartalom:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Korhatár besorolás:", "LabelPath": "Útvonal:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Lejátszási lista:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "Profil:", "LabelQuality": "Minőség:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", "LabelRefreshMode": "Frissítési mód:", "LabelReleaseDate": "Megjelenés dátuma:", "LabelRuntimeMinutes": "Játékidő (perc):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "Évad száma:", "LabelSelectFolderGroups": "Automatikusan csoportosítsa a következő mappák tartalmát olyan nézetekre, mint a Filmek, a Zene és a TV:", "LabelSelectFolderGroupsHelp": "A ki nem választott mappák önmagukban, saját nézetben jelennek meg.", "LabelShortOverview": "Rövid tartalom:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", "LabelSortBy": "Rendezés:", "LabelSortOrder": "Sorrend:", "LabelSortTitle": "ABC szerinti cím:", - "LabelSoundEffects": "Sound effects:", "LabelSource": "Forrás:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "Státusz:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", "LabelSubtitles": "Feliratok:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Címke:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", "LabelTheme": "Kinézet:", "LabelTitle": "Cím:", - "LabelTrackNumber": "Track number:", "LabelType": "Típus:", - "LabelVersion": "Version:", "LabelVideo": "Videó:", "LabelWebsite": "Weboldal:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "Év:", - "Large": "Large", "LatestFromLibrary": "Legújabb {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", "Like": "Tettszik", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Élő", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "A Live TV aktív Jellyfin Premiere előfizetést igényel.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", "MarkWatched": "Megtekintett", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", "MessageUnlockAppWithSupporter": "Engedélyezd ezt a funkciót aktív Jellyfin Premiere előfizetéssel.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Hétfő", "More": "Tovább", - "MoveLeft": "Move left", - "MoveRight": "Move right", "Movies": "Filmek", "MySubtitles": "Feliratok", "Name": "Név", "NewCollection": "Új Gyűjtemény", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Például: Star Wars Gyűjtemény", "NewEpisodes": "Új epizódok", "NewEpisodesOnly": "Csak új epizódok", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", "NoSubtitleSearchResultsFound": "Nincs találat.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", "None": "Nincs", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Megnyitás", "OptionNew": "Új...", - "Original": "Original", "OriginalAirDateValue": "Eredeti vetítés dátuma: {0}", - "Overview": "Overview", "PackageInstallCancelled": "{0} telepítése megszakítva.", "PackageInstallCompleted": "{0} telepítése befejezve.", "PackageInstallFailed": "{0} telepítése nem sikerült.", "ParentalRating": "Korhatár besorolás", "People": "Személyek", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "Lejátszás", "PlayAllFromHere": "Összes vetítése innen", "PlayCount": "Lejátszások száma", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Megnézett", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", "PleaseRestartServerName": "Kérlek indítsd újra az Jellyfin Szerver-t - {0}.", "PleaseSelectDeviceToSyncTo": "Válassz egy eszközt a letöltéshez.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", "Quality": "Minőség", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "Felvétel", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Frissítés", "RefreshDialogHelp": "A metaadatok frissítése az Jellyfin Server vezérlőpultjában engedélyezett beállítások és internetszolgáltatások alapján történik.", "RefreshMetadata": "Metaadat frissítés", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", "ReleaseDate": "Megjelenés dátuma", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", "Repeat": "Ismétlés", "RepeatAll": "Folyamatos ismétlés ", - "RepeatEpisodes": "Repeat episodes", "RepeatMode": "Ismétlő mód", "RepeatOne": "Ismétlés egyszer", "ReplaceAllMetadata": "Összes metaadat cseréje", "ReplaceExistingImages": "Cserélje ki a meglévő képeket", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", "Runtime": "Játékidő", "Saturday": "Szombat", "Save": "Mentés", "ScanForNewAndUpdatedFiles": "Keresés az új és frissített fileokra", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", "Search": "Keresés", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", "SearchForMissingMetadata": "Keresés a hiányzó metaadatokra", "SearchForSubtitles": "Felirat keresése", "SearchResults": "A keresés eredménye", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", "SeriesYearToPresent": "{0} - Napjainkig", "ServerNameIsRestarting": "Jellyfin Szerver - {0} újraindul.", "ServerNameIsShuttingDown": "Jellyfin Server - {0} leáll.", "ServerUpdateNeeded": "Ezt az Jellyfin Sertvert frissíteni kell. A legújabb verzió letöltéséhez kérjük, látogass el ide {0}", "Settings": "Beállítások", - "SettingsSaved": "Settings saved.", "Share": "Megosztás", - "ShowIndicatorsFor": "Show indicators for:", "ShowTitle": "Név megjelenítése", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "Keverés", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", "SkipEpisodesAlreadyInMyLibraryHelp": "Az epizódokat összehasonlítjuk az évad és az epizód számával, ha rendelkezésre állnak.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", "Sort": "Rendezés: ", "SortByValue": "Rendezés {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", "StatsForNerds": "Szakértői statisztika", - "StopRecording": "Stop recording", "Studios": "Stúdiók", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Feliratok", "Suggestions": "Javaslatok", "Sunday": "Vasárnap", "Sync": "Szinkronizál", - "SyncJobItemStatusCancelled": "Cancelled", "SyncJobItemStatusConverting": "Átkonvertálás", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Címkék", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Csütörtök", - "TrackCount": "{0} tracks", "Trailer": "Előzetes", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Kedd", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", "Up": "Fel", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} epizód", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} film", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", "VideoProfileNotSupported": "Videó profil nem támogatott", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", "Watched": "Megtekintett", "Wednesday": "Szerda", "WifiRequiredToDownload": "Wifi kapcsolat szükséges a letöltés folytatásához.", "Writer": "Író", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/id.json b/src/bower_components/emby-webcomponents/strings/id.json index 9dc97a0b36..6f32d39252 100644 --- a/src/bower_components/emby-webcomponents/strings/id.json +++ b/src/bower_components/emby-webcomponents/strings/id.json @@ -1,680 +1,6 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", - "ButtonCancel": "Cancel", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", "LabelContentType": "Tipe konten:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Negara:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Bahasa:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", - "Save": "Save", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/it.json b/src/bower_components/emby-webcomponents/strings/it.json index 8842e91080..2f8d67eb68 100644 --- a/src/bower_components/emby-webcomponents/strings/it.json +++ b/src/bower_components/emby-webcomponents/strings/it.json @@ -26,7 +26,6 @@ "AnyLanguage": "Qualsiasi lingua", "Anytime": "In qualsiasi momento", "AroundTime": "Circa {0}", - "Art": "Art", "Artists": "Artisti", "AsManyAsPossible": "Tutto il possibile", "Ascending": "Crescente", @@ -38,7 +37,6 @@ "AudioCodecNotSupported": "Il codec audio non è supportato", "AudioProfileNotSupported": "Profilo audio non supportato", "AudioSampleRateNotSupported": "Il tasso di campionamento audio non è supportato", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Auto (basato sull'impostazione della lingua)", "AutomaticallyConvertNewContent": "Converti automaticamente i nuovi contenuti", "AutomaticallyConvertNewContentHelp": "I nuovi contenuti aggiunti in questa cartella verranno automaticamente convertiti.", @@ -46,16 +44,13 @@ "AutomaticallySyncNewContentHelp": "I nuovi contenuti aggiunti verranno scaricati automaticamente al dispositivo.", "Backdrop": "Sfondo", "Backdrops": "Sfondi", - "Banner": "Banner", "BestFit": "Adatta", "BirthLocation": "Luogo di nascita", "Books": "Libri", - "Box": "Box", "BoxRear": "Box (retro)", "BurnSubtitlesHelp": "Determina se il server deve applicare i sottotitoli quando si converte i video in base al formato dei sottotitoli. Evitando di applicare i sottotitoli migliorerà le prestazioni del server. Selezionare Auto per applicare formati basati sull'immagine (ad esempio VOBSUB, PGS, SUB / IDX, ecc.) così come alcuni sottotitoli ASS / SSA", "ButtonCancel": "Annulla", "ButtonGotIt": "Ho capito", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Riproduci un minuto", "ButtonRestart": "Riavvia", "ButtonRestorePreviousPurchase": "Ripristina Acquisto", @@ -95,7 +90,6 @@ "ConvertItemLimitHelp": "Opzionale. Impostare un limite al numero di elementi che verranno convertiti.", "ConvertUnwatchedVideosOnly": "Converti solo video non visti", "ConvertUnwatchedVideosOnlyHelp": "Verranno convertiti solo video non visti", - "ConvertingDots": "Converting...", "Countries": "Nazioni", "CriticRating": "Voto della critica", "DateAdded": "Aggiunto il", @@ -134,7 +128,6 @@ "Downloading": "In scaricamento", "DownloadingDots": "In scaricamento...", "Downloads": "Scaricamenti", - "DownloadsValue": "{0} downloads", "DropShadow": "Ombreggiato", "DvrFeatureDescription": "Pianifica le registrazioni di Live TV, registrazioni di serie e altro ancora con Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR richiede un abbonamento ad Jellyfin Premiere.", @@ -173,7 +166,6 @@ "Favorites": "Preferiti", "FeatureRequiresJellyfinPremiere": "Questa funzionalità richiede un abbonamento ad Jellyfin Premiere.", "Features": "Caratteristiche", - "File": "File", "Fill": "Riempi", "Filters": "Filtri", "Folders": "Cartelle", @@ -195,7 +187,6 @@ "HeaderAddUpdateImage": "Aggiungi/aggiorna Immagine", "HeaderAlbumArtists": "Artisti Album", "HeaderAlreadyPaid": "Hai già pagato?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Audiolibri", "HeaderAudioSettings": "Impostazioni audio", "HeaderBecomeProjectSupporter": "Ottieni Jellyfin Premiere", @@ -208,7 +199,6 @@ "HeaderContinueListening": "Continua ad ascoltare", "HeaderContinueWatching": "Continua a guardare", "HeaderConvertYourRecordings": "Converti le tue Registrazioni", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Elimina Elemento", "HeaderDeleteItems": "Elimina Elementi", "HeaderDisplaySettings": "Impostazioni Video", @@ -284,7 +274,6 @@ "Help": "Aiuto", "Hide": "Nascondi", "HideWatchedContentFromLatestMedia": "Nascondi i contenuti già visti dagli Ultimi Media", - "Home": "Home", "Horizontal": "Orizzontale", "HowDidYouPay": "Come hai pagato?", "IHaveJellyfinPremiere": "Sono abbonato ad Jellyfin Premiere", @@ -306,15 +295,12 @@ "LabelAirsAfterSeason": "In onda dopo la stagione:", "LabelAirsBeforeEpisode": "In onda prima dell'episodio:", "LabelAirsBeforeSeason": "In onda prima della stagione:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Artisti album:", "LabelArtists": "Artisti:", "LabelArtistsHelp": "Separa valori multipli usando ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Lingua audio preferita:", "LabelBirthDate": "Data di nascita:", "LabelBirthYear": "Anno di nascita:", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBurnSubtitles": "Applica sottotitoli:", "LabelChannels": "Canali:", "LabelCollection": "Collezione:", @@ -336,11 +322,9 @@ "LabelDisplayOrder": "Ordine di visualizzazione:", "LabelDropImageHere": "Rilasciare l'immagine qui, oppure clicca per sfogliare.", "LabelDropShadow": "Ombreggiatura:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Indirizzo e-mail:", "LabelEndDate": "Data di fine:", "LabelEpisodeNumber": "Numero espisodio:", - "LabelFont": "Font:", "LabelHomeNetworkQuality": "Qualità della rete domestica:", "LabelHomeScreenSectionValue": "Pagina iniziale Sezione {0}:", "LabelImageType": "Tipo immagine:", @@ -364,7 +348,6 @@ "LabelPersonRoleHelp": "Esempio: Autista di chiosco dei gelati", "LabelPlaceOfBirth": "Luogo di nascita:", "LabelPlayDefaultAudioTrack": "Riprodurre la traccia audio di default indipendentemente dalla lingua", - "LabelPlaylist": "Playlist:", "LabelPreferredSubtitleLanguage": "Lingua dei sottotitoli preferita:", "LabelProfile": "Profilo:", "LabelQuality": "Qualità:", @@ -378,7 +361,6 @@ "LabelSelectFolderGroups": "Raggruppa i contenuti delle seguenti cartelle in viste come Film, Musica e Serie TV", "LabelSelectFolderGroupsHelp": "Le cartelle non selezionate verranno mostrate come se stesse nelle proprie viste", "LabelShortOverview": "Trama breve:", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Durata salta indietro:", "LabelSkipForwardLength": "Durata salta avanti:", "LabelSortBy": "Ordina per:", @@ -404,7 +386,6 @@ "LabelTrackNumber": "Numero traccia:", "LabelType": "Tipo:", "LabelVersion": "Versione:", - "LabelVideo": "Video:", "LabelWebsite": "Sito Web:", "LabelWindowBackgroundColor": "Colore di sfondo del testo:", "LabelYear": "Anno:", @@ -420,7 +401,6 @@ "LiveTV": "Diretta TV", "LiveTvFeatureDescription": "Stream Live TV a qualsiasi applicazione Jellyfin, con un dispositivo di sintonizzatore TV compatibile installato sul server Jellyfin.", "LiveTvRequiresUnlock": "La TV in diretta richiede un abbonamento Jellyfin Premiere attivo.", - "Logo": "Logo", "ManageRecording": "Gestisci registrazione", "MarkPlayed": "Segna visto", "MarkUnplayed": "Segna non visto", @@ -434,8 +414,6 @@ "MessageDownloadQueued": "Scaricamento programmato.", "MessageFileReadError": "Si è verificato un errore durante la lettura del file. Si prega di riprovare.", "MessageIfYouBlockedVoice": "Se hai negato l'accesso vocale all'app dovrai riconfigurarlo prima di riprovare di nuovo.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Un'email è stata inviata a {0} invitandolo a registrarsi a Jellyfin", "MessageInvitationSentToUser": "Una e-mail è stata inviata a {0}, invitandoli ad accettare l'invito di condivisione.", "MessageItemSaved": "Elemento salvato.", @@ -454,7 +432,6 @@ "MessageWeDidntRecognizeCommand": "Ci dispiace, non riconosciamo il comando.", "MinutesAfter": "minuti dopo", "MinutesBefore": "minuti prima", - "Mobile": "Mobile / Tablet", "Monday": "Lunedì", "More": "Dettagli", "MoveLeft": "Sposta a sinistra", @@ -469,7 +446,6 @@ "NewEpisodesOnly": "Solo i nuovi episodi", "News": "Notizie", "Next": "Prossimo", - "No": "No", "NoItemsFound": "Nessun elemento trovato.", "NoSubtitleSearchResultsFound": "Nessun risultato.", "NoSubtitles": "Nessun Sottotitolo", @@ -503,8 +479,6 @@ "PlaybackErrorNoCompatibleStream": "Nessuna trasmissione compatibile è al momento disponibile. Per favore riprova in seguito o contatta il tuo Amministratore di sistema per chiarimenti", "PlaybackErrorNotAllowed": "Al momento non sei autorizzato a riprodurre questo contenuto. Per favore contatta l'amministratore del sistema per ulteriori dettagli", "PlaybackErrorPlaceHolder": "Per favore inserisci i dischi nell'ordine per riprodurre questo video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Visto", "Playlists": "Playlist", "PleaseEnterNameOrId": "Per favore inserisci un nome o un id esterno.", @@ -584,7 +558,6 @@ "SkipEpisodesAlreadyInMyLibraryHelp": "Gli episodi verranno confrontati usando la stagione ed il numero dell'episodio, quando disponibili.", "Small": "Piccolo", "SmallCaps": "Maiuscoletto", - "Smaller": "Smaller", "Smart": "Intelligente", "SmartSubtitlesHelp": "I sottotitoli che coincidono con la lingua nelle preferenze verranno caricati quando l'audio sarà in una lingua straniera.", "Songs": "Canzoni", @@ -595,12 +568,9 @@ "Sports": "Sport", "StatsForNerds": "Statistiche per nerds", "StopRecording": "Ferma registrazione", - "Studios": "Studios", "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Queste impostazioni si applicano anche a qualsiasi riproduzione di Chromecast avviata da questo dispositivo.", "SubtitleAppearanceSettingsDisclaimer": "Queste impostazioni non si applicano a sottotitoli grafici (PGS, DVD, ecc.), o sottotitoli che hanno i propri stili incorporati (ASS / SSA).", "SubtitleCodecNotSupported": "Il formato del sottotitolo non è supportato", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Sottotitoli", "Suggestions": "Suggerimenti", "Sunday": "Domenica", @@ -616,10 +586,7 @@ "SyncJobItemStatusTransferring": "Trasferendo", "SyncUnwatchedVideosOnly": "Scarica solo i video non visti", "SyncUnwatchedVideosOnlyHelp": "Solo i video non visti verranno scaricati, e verranno rimossi dal dispositivo non appena visti.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Tag", - "TagsValue": "Tags: {0}", "TermsOfUse": "Termini di utilizzo", "ThankYouForTryingEnjoyOneMinute": "Siamo lieti di offrirti un minuto di riproduzione. Grazie per aver provato Jellyfin.", "ThemeSongs": "Temi canzoni", @@ -628,7 +595,6 @@ "Thumb": "Miniatura", "Thursday": "Giovedì", "TrackCount": "{0} tracce", - "Trailer": "Trailer", "Trailers": "Trailer", "Transcoding": "Trascodifica", "TryMultiSelect": "Prova la selezione multipla", @@ -646,10 +612,8 @@ "ValueDiscNumber": "Disco {0}", "ValueEpisodeCount": "{0} episodi", "ValueGameCount": "{0} giochi", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} film", "ValueMusicVideoCount": "{0} video musicali", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 episodio", "ValueOneGame": "1 gioco", "ValueOneItem": "1 elemento", diff --git a/src/bower_components/emby-webcomponents/strings/kk.json b/src/bower_components/emby-webcomponents/strings/kk.json index 0c21b9e8c9..aa8c04be4d 100644 --- a/src/bower_components/emby-webcomponents/strings/kk.json +++ b/src/bower_components/emby-webcomponents/strings/kk.json @@ -336,7 +336,6 @@ "LabelDisplayOrder": "Бейнелеу реті:", "LabelDropImageHere": "Суретті мұнда сүйретіңіз немесе шарлау үшін нұқыңыз.", "LabelDropShadow": "Жиектер:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Э-пошта мекенжайы:", "LabelEndDate": "Аяқталу күні:", "LabelEpisodeNumber": "Бөлім нөмірі:", @@ -434,8 +433,6 @@ "MessageDownloadQueued": "Жүктеп алу кезекте.", "MessageFileReadError": "Файл оқу кезінде қате орын алды. Әрекетті кейін қайталаңыз.", "MessageIfYouBlockedVoice": "Егер қолданбаға дауыстық қатынаудан бас тартсаңыз, қайта әрекеттенуіңізден алдынан қайта теңшеуіңіз қажет болады.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Jellyfin үшін тіркелу шақыруыңыз, э-пошта {0} үшін жіберілді.", "MessageInvitationSentToUser": "Оларға ортақтасу шақыруыңызды қабылдау ұсынысымен, э-пошта {0} арнап жіберілді.", "MessageItemSaved": "Тармақ сақталды.", @@ -503,7 +500,6 @@ "PlaybackErrorNoCompatibleStream": "Ағымда ешқандай сыйысымды ағындар қолжетімді емес. Әрекетті кейін қайталаңыз немесе толық мәліметтер үшін жүйелік әкімшіңізге байланысыңыз.", "PlaybackErrorNotAllowed": "Осы мазмұнды ойнату үшін ағымда сізге рұқсат етілмеген. Толық мәліметтер үшін жүйелік әкімшіңізге байланысыңыз.", "PlaybackErrorPlaceHolder": "Осы бейнені ойнату үшін дискіні енгізіңіз.", - "PlaybackSettings": "Playback settings", "PlaybackSettingsIntro": "Әдепкі ойнату параметрлерін теңшеу үшін бейне ойнатуды тоқтатыңыз, содан кейін қолданбаның жоғарғы оң жақ бөлігіндегі пайдаланушы белгішесін басыңыз.", "Played": "Ойнатылған", "Playlists": "Ойнату тізімдері", @@ -599,7 +595,6 @@ "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Бұл параметрлер осы құрылғы арқылы іске қосылған кез-келген Chromecast ойнатуына қолданылады.", "SubtitleAppearanceSettingsDisclaimer": "Бұл параметрлер графикалық субтитрлерге (PGS, DVD ж.т.б.) немесе өз мәнері бар ендірілген субтитрлерге (ASS/SSA) қолданылмайды.", "SubtitleCodecNotSupported": "Субтитрлер пішім үшін қолдау көрсетілмейді", - "SubtitleSettings": "Subtitle settings", "SubtitleSettingsIntro": "Әдепкі субтитр көрінісін және тіл параметрлерін теңшеу үшін бейне ойнатуды тоқтатыңыз, содан кейін қолданбаның жоғарғы оң жақ бөлігіндегі пайдаланушы белгішесін басыңыз.", "Subtitles": "Субтитрлер", "Suggestions": "Ұсыныстар", diff --git a/src/bower_components/emby-webcomponents/strings/ko.json b/src/bower_components/emby-webcomponents/strings/ko.json index ce76774d9a..312244560d 100644 --- a/src/bower_components/emby-webcomponents/strings/ko.json +++ b/src/bower_components/emby-webcomponents/strings/ko.json @@ -1,647 +1,135 @@ { - "Absolute": "Absolute", - "Accept": "Accept", "AccessRestrictedTryAgainLater": "접근이 제한되었습니다. 다시 시도하세요.", "Actor": "배우", "Add": "추가", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "재생목록에 추가", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", "All": "모두", "AllChannels": "모든 채널", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "모든 에피소드", "AllLanguages": "모든 언어", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "신규", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", "Backdrops": "배경", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "취소", "ButtonGotIt": "그럴게요.", "ButtonOk": "OK", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "다시 시작", - "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonTryAgain": "다시 시도하세요", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "작곡가", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", "ConfirmDeleteItem": "이 항목을 삭제하면 파일 시스템과 라이브러리 모두에서 삭제됩니다. 계속하겠습니까?", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeletion": "삭제 확인", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", "Connect": "접속", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "일", - "Default": "Default", "DefaultErrorMessage": "요구 처리 과정에 오류가 발생하였습니다. 다시 시도하세요.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "삭제", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "감독", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "싫어함", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", "Download": "다운로드", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "편집", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", "EditSubtitles": "자막 편집", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "시네마 모드 사용", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", "Error": "오류", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "금요일", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "컬렉션에 추가", "HeaderAddToPlaylist": "재생목록에 추가", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", "HeaderConfirmRecordingCancellation": "녹화 취소 확인", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "항목 삭제", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", "HeaderMetadataSettings": "메타데이터 설정", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "내 미디어 (작음)", "HeaderNewRecording": "신규 녹화", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "재생 오류", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "날짜 선택", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "스페셜 에피소드 정보", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", "Help": "도움말", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", "Images": "이미지", - "ImdbRating": "IMDb rating", "InstallingPackage": "{0} 설치 중", "InstantMix": "인스턴트 믹스", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} 항목", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", "Label3DFormat": "3D 형식:", "LabelAirDays": "방영일:", "LabelAirTime": "방영 시각:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", "LabelAlbum": "앨범", "LabelAlbumArtists": "앨범 아티스트:", "LabelArtists": "아티스트:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "생일:", "LabelBirthYear": "생년:", "LabelBitrateMbps": "비트레이트 (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", "LabelCommunityRating": "커뮤니티 평점:", "LabelContentType": "콘텐츠 종류:", - "LabelConvertTo": "Convert to:", "LabelCountry": "국가:", "LabelCriticRating": "Critic 평점:", "LabelCustomRating": "사용자 평점:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "추가한 날짜:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "사망일:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "표시 순서:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "항목 제한:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "언어:", "LabelLockItemToPreventChanges": "변경할 수 없게 항목 잠금", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "다운로드 선호 언어:", - "LabelName": "Name:", "LabelNumber": "번호:", "LabelOriginalAspectRatio": "원 화면비율:", - "LabelOriginalTitle": "Original title:", "LabelOverview": "줄거리:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "등급:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", "LabelPlaceOfBirth": "출생지:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "재생목록:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "프로파일:", "LabelQuality": "품질:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", "LabelReleaseDate": "개봉일:", "LabelRuntimeMinutes": "상영 시간 (분):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", "LabelShortOverview": "줄거리 요약:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "상태:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "동기화 작업 이름:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "동기화 장치:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "태그라인:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", "LabelTrackNumber": "트랙 번호:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "웹사이트:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "더 알아보기", "Like": "좋아함", - "LinksValue": "Links: {0}", - "List": "List", "Live": "라이브", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "자동 시리즈 녹화를 예약하려면 Jellyfin 프리미어 가입이 필요합니다.", "MessageAreYouSureDeleteSubtitles": "이 자막 파일을 삭제하겠습니까?", "MessageConfirmRecordingCancellation": "이 녹화를 취소하겠습니까?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "항목이 저장되었습니다.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "월요일", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", "NewCollection": "새 컬렉션", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", "NoItemsFound": "항목이 없습니다.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "열기", - "OptionNew": "New...", - "Original": "Original", "OriginalAirDateValue": "최초 방송일: {0}", - "Overview": "Overview", "PackageInstallCancelled": "{0} 설치 취소.", "PackageInstallCompleted": "{0} 설치 완료.", "PackageInstallFailed": "{0} 설치 실패.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "재생", "PlayAllFromHere": "여기부터 모두 재생", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "재생함", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "최소 두 개의 항목을 선택하세요.", "Premiere": "프리미어", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "프로듀서", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", "QueueAllFromHere": "여기부터 모두 대기열에 추가", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "녹화", "RecordSeries": "시리즈 녹화", "RecordingCancelled": "녹화가 취소되었습니다.", "RecordingScheduled": "녹화가 예약되었습니다.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "새로 고침", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", "RemoveFromPlaylist": "재생목록에서 제거", - "RemovingFromDevice": "Removing from device", "Repeat": "반복", "RepeatAll": "모두 반복", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", "ReplaceExistingImages": "현재 이미지 교체", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "토요일", "Save": "저장", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", "Search": "찾기", "SearchForCollectionInternetMetadata": "인터넷에서 아트워크와 메타데이터 검색", - "SearchForMissingMetadata": "Search for missing metadata", "SearchForSubtitles": "자막 검색", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "시리즈가 취소되었습니다.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "시리즈 녹화가 예약되었습니다.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", "Settings": "설정", - "SettingsSaved": "Settings saved.", "Share": "공유", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", "Small": "작음", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", "SortName": "정렬 제목", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "일요일", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "태그", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "목요일", "TrackCount": "{0} 트랙", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "화요일", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", "ValueAlbumCount": "{0} 앨범", "ValueDiscNumber": "디스크 {0}", "ValueEpisodeCount": "{0} 에피소드", @@ -652,29 +140,16 @@ "ValueOneAlbum": "1 앨범", "ValueOneEpisode": "1 에피소드", "ValueOneGame": "1 게임", - "ValueOneItem": "1 item", "ValueOneMovie": "1 영화", "ValueOneMusicVideo": "1 뮤직 비디오", "ValueOneSeries": "1 시리즈", "ValueOneSong": "1 노래", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} 시리즈", "ValueSongCount": "{0} 노래", "ValueSpecialEpisodeName": "특별편 - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "앨범 보기", "ViewArtist": "아티스트 보기", - "VoiceInput": "Voice Input", "Watched": "시청함", "Wednesday": "수요일", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "작가", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/lt-lt.json b/src/bower_components/emby-webcomponents/strings/lt-lt.json index 895d52f0c8..196cfb73ba 100644 --- a/src/bower_components/emby-webcomponents/strings/lt-lt.json +++ b/src/bower_components/emby-webcomponents/strings/lt-lt.json @@ -1,58 +1,17 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Aktorius", "Add": "Pridėti", "AddToCollection": "Pridėti į kolekciją", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Pridėti į grojaraštį", - "AddedOnValue": "Added {0}", "Advanced": "Smulkiau", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", "AllChannels": "Visi kanalai", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Visas serijas", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", "Anytime": "Bet kada", "AroundTime": "Maždaug {0}", - "Art": "Art", - "Artists": "Artists", "AsManyAsPossible": "Kiek tik įmanoma", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "Naujas", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", "Backdrops": "Fonai", - "Banner": "Banner", - "BestFit": "Best fit", "BirthLocation": "Gimimo vieta", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Atšaukti", "ButtonGotIt": "Supratau", "ButtonOk": "OK", @@ -62,142 +21,49 @@ "ButtonTryAgain": "Bandyti dar", "ButtonUnlockPrice": "Atrakinti {0}", "ButtonUnlockWithPurchase": "Atrakinti perkant", - "CancelDownload": "Cancel download", "CancelRecording": "Atšaukti įrašymą", "CancelSeries": "Atšaukti laidą", "Categories": "Kategorijos", "ChannelNameOnly": "Kanalas tik {0}", "ChannelNumber": "Kanalo numeris", - "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.", "CinemaModeFeatureDescription": "Kinoteatro režimas papildomai rodo anonsus ir kitą medžiagą prieš filmą.", "CloudSyncFeatureDescription": "Sinchronizuokite savo mediją su debesimi lengvam išsaugojimui, archyvavimui ir konvertavimui.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "Kompozitorius", "ConfigureDateAdded": "Pakeisti, kaip nustatoma pridėjimo data galima Jellyfin Serveryje prie Bibliotekos nustatymų", "ConfirmDeleteImage": "Trinti paveikslą?", "ConfirmDeleteItem": "Tai atlikus elementas bus ištrintas ir iš bibliotekos, ir iš failų sistemos. Ar tikrai norite tęsti?", "ConfirmDeleteItems": "Tai atlikus šie elementai bus ištrinti ir iš bibliotekos, ir iš failų sistemos. Ar tikrai norite tęsti?", "ConfirmDeletion": "Patvirtinti trynimą", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "Tęsiamas", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Šalys", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Dienos", - "Default": "Default", "DefaultErrorMessage": "Įvyko klaida vykdant užklausą. Pabandykite vėliau.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Ištrinti", "DeleteMedia": "Trinti mediją", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Režisierius", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "Nepatinka", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "Neįrašyti", - "Down": "Down", "Download": "Siųstis", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", "Downloads": "Atsiuntimai", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR reikalauja aktyvios Jellyfin Premiere prenumeratos.", "Edit": "Redaguoti", "EditImages": "Redaguoti paveikslus", - "EditMetadata": "Edit metadata", "EditSubtitles": "Redaguoti subtitrus", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", "EnableColorCodedBackgrounds": "Įjungti spalvotus fonus", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Pasibaigė", "EndsAtValue": "Baigiasi {0}", - "Episodes": "Episodes", "Error": "Klaida", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Mėgstamas", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "Šiai funkcijai reikia aktyvios Jellyfin Serverio prenumeratos.", - "Features": "Features", "File": "Failas", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Gaukite nemokamas Jellyfin programėles savo įrenginiams.", "Friday": "Penktadienis", - "GenreValue": "Genre: {0}", "Genres": "Žanrai", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", "GroupVersions": "Grupuoti versijas", "GuestStar": "Kviestinė žvaigždė", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "HD laidoms", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Pridėti į Kolekciją", "HeaderAddToPlaylist": "Pridėti į Grojaraštį", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "Gauti Jellyfin Premiere", "HeaderBenefitsJellyfinPremiere": "Jellyfin Premiere privalumai", "HeaderCancelRecording": "Atšaukti įrašą", @@ -205,100 +71,40 @@ "HeaderCinemaMode": "Kinoteatro režimas", "HeaderCloudSync": "Sinch. su debesimi", "HeaderConfirmRecordingCancellation": "Patvirtinti įrašo atšaukimą", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", "HeaderConvertYourRecordings": "Konvertuokite savo įrašus", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Ištrinti elementą", "HeaderDeleteItems": "Ištrinti elementus", "HeaderDisplaySettings": "Rodymo nustatymai", - "HeaderDownloadSettings": "Download Settings", "HeaderEditImages": "Redaguoti paveikslus", "HeaderEnabledFields": "Įjungti laukeliai", "HeaderEnabledFieldsHelp": "Nuimkite varnelę nuo lauko kad jį užrakinti ir neleisti keisti jo duomenų.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Nemokamos Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", "HeaderIdentifyItemHelp": "Įveskite vieną ar daugiau paieškos kriterijų. Pašalinkite kriterijų jei norite gauti daugiau paieškos rezultatų.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", "HeaderKeepRecording": "Palikti įrašą", "HeaderKeepSeries": "Palikti laidą", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLearnMore": "Sužinoti daugiau", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", "HeaderMetadataSettings": "Metaduomenų nustatymai", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "Naujas įrašas", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "Vietinė medija", "HeaderOfflineDownloadsDescription": "Atsisiųsti mediją į savo įrenginius lengvai prieigai be interneto.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Atkurti mano mediją", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", "HeaderRecordingOptions": "Įrašymo nustatymai", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "Pasakykite maždaug...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Pasirinkite datą", "HeaderSeriesOptions": "Laidų nustatymai", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Ypatingos serijos info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", "HeaderTryPlayback": "Bandomasis atkūrimas", "HeaderUnlockFeature": "Atrakinti funkciją", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", "HeaderYouSaid": "Jūs pasakėte:", "Help": "Padėti", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "Kaip sumokėjote?", "IHaveJellyfinPremiere": "Turiu Jellyfin Premiere", "IPurchasedThisApp": "Pirkau šią programėlę", "Identify": "Identifikuoti", "Images": "Paveiksliukai", - "ImdbRating": "IMDb rating", "InstallingPackage": "Įdiegiu {0}", "InstantMix": "Leisti miksą", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} elementų", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", "Kids": "Vaikams", "Label3DFormat": "3D formatas:", "LabelAirDays": "Eterio dienos:", @@ -310,153 +116,81 @@ "LabelAlbumArtists": "Albumo atlikėjai:", "LabelArtists": "Atlikėjai:", "LabelArtistsHelp": "Atskirti kelis naudojant:", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "Gimimo data:", "LabelBirthYear": "Gimimo metai:", "LabelBitrateMbps": "Kokybė (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Kanalai:", "LabelCollection": "Kolekcija:", "LabelCommunityRating": "Bendruomenės vertinimas:", "LabelContentType": "Turinio tipas:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Šalis:", "LabelCriticRating": "Kritikų vertinimas:", "LabelCustomRating": "Kitoks vertinimas:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Pridėjimo data:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Mirties data:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Rodymo tvarka:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", "LabelDynamicExternalId": "{0} ID:", "LabelEmailAddress": "E-pašto adresas:", "LabelEndDate": "Pabaigos data:", "LabelEpisodeNumber": "Serijos numeris:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "Elementų limitas:", "LabelKeep:": "Laikyti:", "LabelKeepUpTo": "Spėti iki:", "LabelLanguage": "Kalba:", "LabelLockItemToPreventChanges": "Uždrausti šio elemento pakeitimus", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Pageidaujama siuntimo kalba:", "LabelName": "Pavadinimas:", "LabelNumber": "Numeris:", "LabelOriginalAspectRatio": "Originalus formatas:", "LabelOriginalTitle": "Originalus pavadinimas:", "LabelOverview": "Apžvalga:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Tėvų reitingas:", "LabelPath": "Kelias:", "LabelPersonRole": "Vaidmuo:", "LabelPersonRoleHelp": "Pavyzdys: Ledų mašinos vairuotojas", "LabelPlaceOfBirth": "Gimimo vieta:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Grojaraštis:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "Profilis:", "LabelQuality": "Kokybė:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "Įrašyti:", "LabelRefreshMode": "Atnaujinimo režimas:", "LabelReleaseDate": "Išleidimo data:", "LabelRuntimeMinutes": "Trukmė (min.):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "Sezono numeris:", - "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.", "LabelShortOverview": "Trumpa apžvalga:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Rūšiavimo pavadinimas:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", "LabelStartWhenPossible": "Jei galima, pradėti:", "LabelStatus": "Būklė:", "LabelStopWhenPossible": "Jei galima, nutraukti:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "Sinchronizavimo darbo pavadinimas:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Sinchronizuoti į:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Šūkis:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", "LabelTitle": "Pavadinimas:", "LabelTrackNumber": "Dainos numeris:", "LabelType": "Tipas:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "Tinklapis:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "Metai:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Sužinoti daugiau", "Like": "Patinka", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Tiesiogiai", "LiveBroadcasts": "Tiesioginėms transliacijoms", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "Žymėti rodytu", "MarkUnplayed": "Žymėti nerodytu", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Norint kurti automatinius laidos įrašus reikia aktyvios Jellyfin Premiere prenumeratos.", "MessageAreYouSureDeleteSubtitles": "Ar tikrai norite ištrinti šį subtitrų failą?", "MessageConfirmRecordingCancellation": "Ar tikrai norite atšaukti šį įrašą?", "MessageDownloadQueued": "Siuntimas užsakytas.", - "MessageFileReadError": "There was an error reading the file. Please try again.", "MessageIfYouBlockedVoice": "Jei neleidote programėlei naudoti mikrofono, pakeiskite nustatymus ir bandykite dar kartą.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Elementas išsaugotas.", "MessageItemsAdded": "Elementai pridėti.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "Palikite tuščią kad paveldėtų nustatymus nuo tėviško elemento arba globalias standartines reikšmes.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "Jei turite aktyvią Jellyfin Premiere prenumeratą, sutvarkykite Jellyfin Premiere savo Jellyfin Serverio skydelyje. Tai galite atlikti paspaudė Jellyfin Premiere užrašą pagrindiniame meniu.", "MessageUnlockAppWithPurchaseOrSupporter": "Atrakinkite šią funkciją nedideliu vienkartiniu mokesčiu arba įsigiję Jellyfin Premiere prenumeratą.", "MessageUnlockAppWithSupporter": "Atrakinkite šią funkciją įsigiję Jellyfin Premiere prenumeratą.", "MessageWeDidntRecognizeCommand": "Deja, nepažinome šios komandos.", "MinutesAfter": "min. po", "MinutesBefore": "min. prieš", - "Mobile": "Mobile / Tablet", "Monday": "Pirmadienis", - "More": "More", "MoveLeft": "Perkelti kairėn", "MoveRight": "Perkelti dešinėn", "Movies": "Filmai", @@ -468,22 +202,10 @@ "NewEpisodes": "Naujoms serijoms", "NewEpisodesOnly": "Tik naujas serijas", "News": "Naujienos", - "Next": "Next", - "No": "No", "NoItemsFound": "Nieko nerasta.", "NoSubtitleSearchResultsFound": "Nieko neradau.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Atidaryti", "OptionNew": "Naujas...", - "Original": "Original", "OriginalAirDateValue": "Pirmo eterio data: {0}", "Overview": "Apžvalga", "PackageInstallCancelled": "{0} įdiegimas atšauktas.", @@ -491,81 +213,45 @@ "PackageInstallFailed": "{0} įdiegimas nepavyko.", "ParentalRating": "Tėvų reitingas", "People": "Žmonės", - "PerfectMatch": "Perfect match", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Mėgstamiausius kanalus į pradžią", "Play": "Leisti", "PlayAllFromHere": "Leisti viską nuo čia", - "PlayCount": "Play count", "PlayFromBeginning": "Leisti nuo pradžių", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Įveskite vardą arba išorinį ID.", "PleaseRestartServerName": "Prašau paleisti Jellyfin Serverį iš naujo - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Pasirinkite bent du elementus.", "Premiere": "Premiera", "Premieres": "Premieras", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "Prodiuseris", "ProductionLocations": "Filmavimo vietos", - "Programs": "Programs", "PromoConvertRecordingsToStreamingFormat": "Su Jellyfin Premiere automatiškai paverčia įrašus į transliavimui patogius formatus. Įrašai bus iš karto konvertuojami į MP4 arba MKV priklausomai nuo nustatymų.", - "Quality": "Quality", "QueueAllFromHere": "Į eilę viską nuo čia", - "Raised": "Raised", "RecentlyWatched": "Nesenai žiūrėta", "Record": "Įrašyti", "RecordSeries": "Įrašyti laidą", "RecordingCancelled": "Įrašas atšauktas.", "RecordingScheduled": "Įrašas numatytas.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Atnaujinti", "RefreshDialogHelp": "Metaduomenys atnaujinami pagal Jellyfin Serverio nustatymus ir įjungtas interneto paslaugas.", - "RefreshMetadata": "Refresh metadata", "RefreshQueued": "Atnaujinimas užsakytas.", - "Reject": "Reject", "ReleaseDate": "Išleidimo data", - "RemoveDownload": "Remove download", "RemoveFromCollection": "Pašalinti iš kolekcijos", "RemoveFromPlaylist": "Pašalinti iš grojaraščio", - "RemovingFromDevice": "Removing from device", "Repeat": "Kartojimas", - "RepeatAll": "Repeat all", "RepeatEpisodes": "Kartojamoms serijoms", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", "ReplaceAllMetadata": "Pakeisti visus metaduomenis", "ReplaceExistingImages": "Pakeisti esamus paveikslus", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Tęsti nuo {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", "Runtime": "Trukmė", "Saturday": "Šeštadienis", "Save": "Saugoti", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", "Screenshots": "Ekrano nuotraukos", "Search": "Ieškoti", "SearchForCollectionInternetMetadata": "Ieškoti internete iliustracijų ir metaduomenų", "SearchForMissingMetadata": "Ieškoti trūkstamų metaduomenų", "SearchForSubtitles": "Ieškoti subtitrų", "SearchResults": "Paieškos rezultatai", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "Laida atšaukta.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Laidos įrašas numatytas.", "SeriesSettings": "Laidų nustatymai", "SeriesYearToPresent": "{0} - dabar", @@ -573,75 +259,29 @@ "ServerNameIsShuttingDown": "Jellyfin Serveris - {0} išsijungia.", "ServerUpdateNeeded": "Šį Jellyfin serverį reikia atnaujinti. Naujausią versiją atsisiųsti galite {0}", "Settings": "Nustatymai", - "SettingsSaved": "Settings saved.", "Share": "Dalintis", "ShowIndicatorsFor": "Rodyti indikatorius:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "Atsitiktinai", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", "SkipEpisodesAlreadyInMyLibraryHelp": "Kai įmanoma serijos bus lyginamos pagal sezonų ir serijų skaičius.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", "SortChannelsBy": "Rūšiuoti kanalus pagal:", "SortName": "Rūšiavimo vardas", "Sports": "Sportas", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "Studijos", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Subtitrai", - "Suggestions": "Suggestions", "Sunday": "Sekmadienis", "Sync": "Sinchronizuoti", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Žymės", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", "ThankYouForTryingEnjoyOneMinute": "Išbandykite vieną minutę atkūrimo. Ačiū kad bandote Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Ketvirtadienis", "TrackCount": "{0} dainų", "Trailer": "Anonsas", - "Trailers": "Trailers", - "Transcoding": "Transcoding", "TryMultiSelect": "Pabandykite Multi-Select", "TryMultiSelectMessage": "Kelių elementų redagavimui paspauskite ir palaikykite ant bet kurio plakato, o tada pasirinkite norimus redaguoti elementus. Pabandykite!", "Tuesday": "Antradienis", - "Uniform": "Uniform", "UnlockGuide": "Atrakinti gidą", - "Unplayed": "Unplayed", "Unrated": "Nevertinta", "UntilIDelete": "Kol ištrinsiu", "UntilSpaceNeeded": "Kol pritrūks vietos", - "Up": "Up", - "Upload": "Upload", "ValueAlbumCount": "{0} albumų", "ValueDiscNumber": "Diskas {0}", "ValueEpisodeCount": "{0} serijų", @@ -652,29 +292,16 @@ "ValueOneAlbum": "1 albumas", "ValueOneEpisode": "1 serija", "ValueOneGame": "1 žaidimas", - "ValueOneItem": "1 item", "ValueOneMovie": "1 filmas", "ValueOneMusicVideo": "1 muzikinis video", "ValueOneSeries": "1 laida", "ValueOneSong": "1 daina", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} laidų", "ValueSongCount": "{0} dainų", "ValueSpecialEpisodeName": "Ypatinga - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "Žiūrėti albumą", "ViewArtist": "Žiūrėti atlikėją", "VoiceInput": "Balso komandos", - "Watched": "Watched", "Wednesday": "Trečiadienis", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Rašytojas", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/ms.json b/src/bower_components/emby-webcomponents/strings/ms.json index fe299fa836..1c32b2455d 100644 --- a/src/bower_components/emby-webcomponents/strings/ms.json +++ b/src/bower_components/emby-webcomponents/strings/ms.json @@ -1,680 +1,3 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", - "ButtonCancel": "Cancel", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", - "LabelCountry": "Country:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", - "LabelLanguage": "Language:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", - "Save": "Save", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/nb.json b/src/bower_components/emby-webcomponents/strings/nb.json index 7dc2a640f2..02a11788b6 100644 --- a/src/bower_components/emby-webcomponents/strings/nb.json +++ b/src/bower_components/emby-webcomponents/strings/nb.json @@ -1,7 +1,6 @@ { "Absolute": "Absolutt", "Accept": "Aksepter", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Skuespiller", "Add": "Legg til", "AddToCollection": "Legg til i samling", @@ -9,53 +8,23 @@ "AddToPlaylist": "Legg til spilleliste", "AddedOnValue": "Lagt til {0}", "Advanced": "Avansert", - "AirDate": "Air date", "Aired": "Sendt tidligere", "Albums": "Album", - "All": "All", "AllChannels": "Alle kanaler", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", "AllEpisodes": "Alle episoder", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", "AndroidUnlockRestoreHelp": "For å gjenopprette tidligere kjøp, må du forsikre deg om at du er logget på enheten med samme Google- (eller Amazonkonto) som opprinnelig gjorde kjøpet. Pass på at appbutikken er aktivert og ikke begrenset av foreldrekontroll,samt sørg for at du har en aktiv internettforbindelse. Du må bare gjøre dette en gang for å gjenopprette ditt tidligere kjøp.", - "AnyLanguage": "Any language", "Anytime": "Enhver tid", "AroundTime": "Rundt {0}", - "Art": "Art", "Artists": "Artister", "AsManyAsPossible": "Så mange som mulig", - "Ascending": "Ascending", "AspectRatio": "Størrelsesforholdet", "AttributeNew": "Ny", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", "Auto": "Automatisk", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", "BestFit": "Passer best", "BirthLocation": "Fødelesested", "Books": "Bøker", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Avbryt", "ButtonGotIt": "Skjønner", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Spill av et minutt", "ButtonRestart": "Omstart", "ButtonRestorePreviousPurchase": "Gjenopprett kjøp", @@ -68,14 +37,12 @@ "Categories": "Kategorier", "ChannelNameOnly": "Kun kanal {0}", "ChannelNumber": "Kanal nummer", - "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.", "CinemaModeFeatureDescription": "Kinomodus gir deg den ekte kinoopplevelsen med trailere og tilpassede introer før funksjonen.", "CloudSyncFeatureDescription": "Synkroniser mediene til skyen for sikkerhetskopiering, arkivering og konvertering.", "Collections": "Samlinger", "ColorPrimaries": "Primærfarger", "ColorSpace": "Fargeutvalg", "ColorTransfer": "Overføring av farger", - "CommunityRating": "Community rating", "Composer": "Komponist", "ConfigureDateAdded": "Konfigurer hvordan dato er fastsatt i Jellyfin Server sitt dashbord under Bibliotek innstillinger", "ConfirmDeleteImage": "Slett bilde?", @@ -85,117 +52,50 @@ "ConfirmEndPlayerSession": "Vill du stenge Jellyfin på denne enheten?", "ConfirmRemoveDownload": "Fjern nedlastet?", "Connect": "Koble til", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", "Continue": "Forsett", "ContinueInSecondsValue": "Forsett om {0} sekunder", "ContinueWatching": "Fortsett å se på", "Continuing": "Fortsetter", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Land", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Dager", - "Default": "Default", "DefaultErrorMessage": "Det skjedde en feil under behandling av forespørselen. Vennligst prøv igjen senere.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Slett", "DeleteMedia": "Slett elementet", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Regissør", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", "Disconnect": "Koble fra", "Dislike": "Misliker", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "Ikke ta opp", "Down": "Ned", "Download": "Nedlasting", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Nedlastet", "Downloading": "Laster ned", - "DownloadingDots": "Downloading...", "Downloads": "Nedlastinger", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", "DvrFeatureDescription": "Planlegg enkelt Live opptak, serieopptak og mer med Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR krever et aktivt Jellyfin Premiere-abonnement.", "Edit": "Rediger", "EditImages": "Endre bilder", - "EditMetadata": "Edit metadata", "EditSubtitles": "Endre undertekster", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "Aktiver kino mode", "EnableColorCodedBackgrounds": "Aktiver fargekoder for bakgrunn", "EnableDisplayMirroring": "Aktivert skjermspeiling", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Avsluttet", "EndsAtValue": "Slutter klokken {0}", "Episodes": "Episoder", "Error": "Feil", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Favoritt", "Favorites": "Favoritter", "FeatureRequiresJellyfinPremiere": "Denne funksjonen krever et aktivt Jellyfin Premiere abonnement.", - "Features": "Features", "File": "Fil", "Fill": "Fyll ut", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Nyt gratis tilgang til Jellyfin Applikasjoner på din enhet", "Friday": "Fredag", - "GenreValue": "Genre: {0}", "Genres": "Sjanger", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", "GuestStar": "Gjeste skuespiller", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "HD Programmer", "HeaderActiveRecordings": "Aktive opptak", "HeaderAddToCollection": "Legg til samling", "HeaderAddToPlaylist": "Legg til Spilleliste", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", "HeaderAlreadyPaid": "Allerede betalt?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Lydbøker", "HeaderAudioSettings": "Lyd inntilligner", "HeaderBecomeProjectSupporter": "Skaff Jellyfin Premiere", @@ -208,31 +108,16 @@ "HeaderContinueListening": "Forsett og høre på", "HeaderContinueWatching": "Forsett og se på", "HeaderConvertYourRecordings": "Konverter dine opptak", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Slett element", "HeaderDeleteItems": "Slett elementer", "HeaderDisplaySettings": "Skjerminnstillinger", - "HeaderDownloadSettings": "Download Settings", "HeaderEditImages": "Endre bilder", "HeaderEnabledFields": "Aktiverte felt", "HeaderEnabledFieldsHelp": "Fjern merket et felt for å låse den og hindre sine data blir endret.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", "HeaderFavoritePlaylists": "Favorittspillelister", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", "HeaderFreeApps": "Gratis Jellyfin Applikasjoner", "HeaderHomeScreen": "Hjemskjerm", "HeaderIdentifyItemHelp": "Oppgi ett eller flere søke kriterier. Fjern kriterie for å øke søke resultater.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", "HeaderKeepRecording": "Behold opptak", "HeaderKeepSeries": "Behold serie", "HeaderLatestChannelItems": "Siste kanal elementer", @@ -244,209 +129,124 @@ "HeaderLibraryFolders": "Bibliotek mapper", "HeaderLibraryOrder": "Bibliotekenes rekkefølge", "HeaderMetadataSettings": "Metadata innstilinger", - "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "Min enhet", "HeaderMyMedia": "Min Media", "HeaderMyMediaSmall": "Min Media (liten)", "HeaderNewRecording": "Nye opptak:", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", "HeaderNextUp": "Neste", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "Nedlastede media", "HeaderOfflineDownloadsDescription": "Last ned media til din enhet for enkel offline bruk", "HeaderOnNow": "På Nå", - "HeaderPhotoAlbums": "Photo Albums", "HeaderPlayMyMedia": "Spill min media", "HeaderPlayOn": "Forsett avspilling", "HeaderPlaybackError": "Avspillingsfeil", "HeaderRecordingOptions": "Opptak innstillinger", "HeaderRemoteControl": "Fjernkontroll", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "Si noenting slik som...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Velg dato", "HeaderSeriesOptions": "Serie innstillinger", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Spesial Episode info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", "HeaderSubtitleSettings": "Undertekster innstillinger", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", "HeaderTermsOfPurchase": "Kjøps betingelser", "HeaderTryPlayback": "Prøv tilbakespilling", "HeaderUnlockFeature": "Lås opp funksjon", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", "HeaderYouSaid": "Du sa...", "Help": "Hjelp", - "Hide": "Hide", "HideWatchedContentFromLatestMedia": "Skjul sett innhold fra nyeste media", - "Home": "Home", - "Horizontal": "Horizontal", "HowDidYouPay": "Hvordan betalte du?", "IHaveJellyfinPremiere": "Jeg har Jellyfin Premiere", "IPurchasedThisApp": "Jeg har kjøpt denne appen", "Identify": "Identifiser", "Images": "Bilder", - "ImdbRating": "IMDb rating", "InstallingPackage": "Installerer {0}", "InstantMix": "Direktemiks", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} elementer", "Items": "Elementer", "KeepDownload": "Behold nedlasting", "KeepOnDevice": "Behold på enhet", "Kids": "Barn", - "Label3DFormat": "3D format:", "LabelAirDays": "Sendings dager:", "LabelAirTime": "Sendings tid:", "LabelAirsAfterSeason": "Sendt etter sesong:", "LabelAirsBeforeEpisode": "Sendt før episode:", "LabelAirsBeforeSeason": "Send før sesong:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Album artister:", "LabelArtists": "Artister:", "LabelArtistsHelp": "Skill flere med semikolon ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "Fødselsdato:", "LabelBirthYear": "Fødselsår:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Kanal", "LabelCollection": "Samling:", "LabelCommunityRating": "Fellesskap anmeldelse:", "LabelContentType": "Innholdstype:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Land:", "LabelCriticRating": "Kritiker anmeldelse:", "LabelCustomRating": "Kunde anmeldelse:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Dato lagt til:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Dødsdato:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", "LabelDisplayLanguageHelp": "Oversettelse av Jellyfin pågår.", "LabelDisplayMode": "Visningsmodus:", "LabelDisplayOrder": "Visningsrekkefølge:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-postadresse:", "LabelEndDate": "Slutt dato:", "LabelEpisodeNumber": "Episode nummer:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", "LabelHomeScreenSectionValue": "Hjemskjerm seksjon {0}", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", "LabelItemLimit": "Begrenset antall:", "LabelKeep:": "Behold", "LabelKeepUpTo": "Hold opptil", "LabelLanguage": "Språk:", "LabelLockItemToPreventChanges": "Lås dette elementet for å hindre fremtidige endringer", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Foretrukket nedlastingsspråk:", "LabelName": "Navn", "LabelNumber": "Nummer:", "LabelOriginalAspectRatio": "Originalt sideforhold:", "LabelOriginalTitle": "Original tittel:", "LabelOverview": "Oversikt:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Foreldresensur:", "LabelPath": "Sti:", "LabelPersonRole": "Rolle:", "LabelPersonRoleHelp": "Eksempel: Is bil fører", "LabelPlaceOfBirth": "Fødested:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "Spilleliste", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", "LabelProfile": "Profil:", "LabelQuality": "Kvalitet:", - "LabelReasonForTranscoding": "Reason for transcoding:", "LabelRecord": "Opptak:", "LabelRefreshMode": "Oppdatering modus:", "LabelReleaseDate": "Utgivelsesdato:", "LabelRuntimeMinutes": "Spilletid (minutter):", - "LabelScreensaver": "Screensaver:", "LabelSeasonNumber": "Sesong nummer:", "LabelSelectFolderGroups": "Gruppér innhold automatisk etter følgende grupper til visninger som filmer, musikk og TV:", "LabelSelectFolderGroupsHelp": "Mapper som ikke er merket vil kun bli vist i sin egen visning.", "LabelShortOverview": "Kort oversikt:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", "LabelSortTitle": "Forkortet tittel:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", "LabelStartWhenPossible": "Start når mulig:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stop når mulig:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", "LabelSyncJobName": "Navn på synkroniseringsjobb:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", "LabelSyncTo": "Synkroniser til:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Slagord:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", "LabelTitle": "Tittel:", "LabelTrackNumber": "Spor nummer:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "Nettsted:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", "LatestFromLibrary": "Siste {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Lære mer", "Like": "Liker", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Direkte", "LiveBroadcasts": "Direkte sending", "LiveTV": "Direkte TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "Live TV krever et aktivt Jellyfin Premium-abonnement.", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "Merker som sett", "MarkUnplayed": "Merker som usett", "MarkWatched": "Marker som sett", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Et aktivt Jellyfin Premiere abonnement er påkrevd for å kunne automatisere serieopptak.", "MessageAreYouSureDeleteSubtitles": "Er du sikker på at du vil slette denne undertekst filen?", "MessageConfirmRecordingCancellation": "Er du sikker på at du vil avbryte dette opptaket?", "MessageDownloadQueued": "Nedlasting satt til i kø", - "MessageFileReadError": "There was an error reading the file. Please try again.", "MessageIfYouBlockedVoice": "Hvis du nektet tale tilgang til applikasjonen må du rekonfigurere før du prøver igjen.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Element lagret.", "MessageItemsAdded": "Elementer lagt til.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "La være blank for å arve innstillinger fra et foreldre element, eller den globale standard verdien.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", "MessageNoServersAvailableToConnect": "Ingen servere tilgjengelig for å koble til. Hvis du har blitt invitert til å dele en server, må du akseptere den nedenfor eller ved å klikke på lenken i e-posten.", "MessageNoSyncJobsFound": "Ingen nedlastinger funnet. Opprett nedlastingsjobber ved hjelp av Lastn ed knappene som finnes i hele appen.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", "MessagePlayAccessRestricted": "Avspilling av dette innholdet er for tiden begrenset. Ta kontakt med Jellyfin Server-administratoren for mer informasjon.", "MessageToValidateSupporter": "Hvis du har et aktivt Jellyfin Premiere-abonnement, må du sørge for at du har konfigurert Jellyfin Premiere i Jellyfin Server Dashboard, som du får tilgang til ved å klikke Jellyfin Premiere i hovedmenyen.", "MessageUnlockAppWithPurchaseOrSupporter": "Lås opp denne funksjonen med et engangskjøp, eller med et aktivt Jellyfin Premiere-abonnement.", @@ -454,7 +254,6 @@ "MessageWeDidntRecognizeCommand": "Vi beklager, Vi kunne ikke forstå denne kommandoen.", "MinutesAfter": "Minutter etter", "MinutesBefore": "Minutter før", - "Mobile": "Mobile / Tablet", "Monday": "Mandag", "More": "Mere", "MoveLeft": "Flytt venstre", @@ -468,22 +267,13 @@ "NewEpisodes": "Nye episoder", "NewEpisodesOnly": "Kun nye episoder", "News": "Nyheter", - "Next": "Next", "No": "Nei", "NoItemsFound": "Ingen elementer funnet", "NoSubtitleSearchResultsFound": "Ingen resulterer funnet.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", "None": "Ingen", - "Normal": "Normal", - "Off": "Off", "OneChannel": "En kanal", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Åpne", "OptionNew": "Ny...", - "Original": "Original", "OriginalAirDateValue": "Original utgivelsedato: {0}", "Overview": "Oversikt", "PackageInstallCancelled": "{0} installasjon avbrutt.", @@ -491,30 +281,20 @@ "PackageInstallFailed": "{0} installasjon feilet.", "ParentalRating": "Parental Rating", "People": "Mennesker", - "PerfectMatch": "Perfect match", - "Photos": "Photos", "PlaceFavoriteChannelsAtBeginning": "Plasser favorittkanaler i starten", "Play": "Spill", "PlayAllFromHere": "Spill alt herfra", - "PlayCount": "Play count", "PlayFromBeginning": "Start fra starten", "PlayNext": "Spill av neste", "PlayNextEpisodeAutomatically": "Spill av neste episode automatisk", "PlaybackErrorNoCompatibleStream": "Ingen kompatible strømmer er tilgjengelige for øyeblikket. Prøv igjen senere eller kontakt systemadministratoren for detaljer.", "PlaybackErrorNotAllowed": "Du er for øyeblikket ikke autorisert til avspilling dette innholdet. Ta kontakt med systemadministratoren for detaljer.", "PlaybackErrorPlaceHolder": "Sett inn disken for å spille av denne filmen.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Spilt", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Vennligst skriv ett navn eller en ekstern id.", "PleaseRestartServerName": "Vennligst start gjør en omstart av Jellyfin Server - {0}", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Vennligst velg minst to elementer.", - "Premiere": "Premiere", "Premieres": "Premierer", - "Previous": "Previous", - "Primary": "Primary", "PrivacyPolicy": "Personvern regler", "Producer": "Produsent", "ProductionLocations": "Produksjon lokasjoner", @@ -522,14 +302,12 @@ "PromoConvertRecordingsToStreamingFormat": "Konverter opptak automatisk til et streaming-vennlig format med Jellyfin Premiere. Opptakene konverteres på rappen til MP4 eller MKV, basert på dine Jellyfin-serverinnstillinger.", "Quality": "Kvalitet", "QueueAllFromHere": "Kø alt herfra", - "Raised": "Raised", "RecentlyWatched": "Nylig sett", "Record": "Ta opp", "RecordSeries": "Ta opp serien", "RecordingCancelled": "Opptak er avbrutt.", "RecordingScheduled": "Opptak planlagt.", "Recordings": "Opptak", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Oppdater", "RefreshDialogHelp": "Metadata er oppdatert basert på innstillinger og internett-tjenester som er aktivert i Jellyfin Server dashbordet", "RefreshMetadata": "Frisk opp metadata", @@ -547,28 +325,23 @@ "RepeatOne": "Repetering en", "ReplaceAllMetadata": "Erstatt all metadata", "ReplaceExistingImages": "Bytt ut eksisterende bilder", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "Forsett fra {0}", "Retry": "Prøv igjen", - "RunAtStartup": "Run at startup", "Runtime": "Spilletid", "Saturday": "Lørdag", "Save": "Lagre", "ScanForNewAndUpdatedFiles": "Se etter nye og oppdaterte filer", "Schedule": "Planlegg", - "Screenshot": "Screenshot", "Screenshots": "Skjermbilder", "Search": "Søk", "SearchForCollectionInternetMetadata": "Søk på internet for artwork og metadata", "SearchForMissingMetadata": "Søk etter manglende metadata", "SearchForSubtitles": "Søk etter undertekster", "SearchResults": "Søkeresultater", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "Serie avbrutt.", "SeriesDisplayOrderHelp": "Sorter episoder etter sendt dato, DVD-rekkefølge eller nummerering.", "SeriesRecordingScheduled": "Serieopptak planlagt.", "SeriesSettings": "Serie innstillinger", - "SeriesYearToPresent": "{0} - Present", "ServerNameIsRestarting": "Jellyfin Server - {0} starter om.", "ServerNameIsShuttingDown": "Jellyfin Server - {0} avsluttes.", "ServerUpdateNeeded": "Denne Jellyfin serveren må oppdateres. For å laste ned siste versjonen, vennligst besøk: {0}", @@ -576,31 +349,14 @@ "SettingsSaved": "Innstillinger lagret", "Share": "Del", "ShowIndicatorsFor": "Vis indikatorer for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", "Shows": "Programmer", - "Shuffle": "Shuffle", "SkipEpisodesAlreadyInMyLibrary": "Ikke ta opp episoder som allerede finnes i biblioteket mitt", "SkipEpisodesAlreadyInMyLibraryHelp": "Episoder vil bli sammenlignet med sesong- og episode nummer når de er tilgjengelige.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", "Songs": "Sanger", - "Sort": "Sort", - "SortByValue": "Sort by {0}", "SortChannelsBy": "Sorter kanaler etter", "SortName": "Sorterings navn", "Sports": "Sport", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "Studioer", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Undertekster", "Suggestions": "Forslag", "Sunday": "Søndag", @@ -614,34 +370,19 @@ "SyncJobItemStatusSynced": "Ned lastet", "SyncJobItemStatusSyncedMarkForRemoval": "Fjern fra enhet", "SyncJobItemStatusTransferring": "Overfører", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Tagger", - "TagsValue": "Tags: {0}", "TermsOfUse": "Bruks betingelser", "ThankYouForTryingEnjoyOneMinute": "Vennligst nyt ett minutt av avspilling. Takk for at du prøver Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Torsdag", "TrackCount": "{0} spor", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", "TryMultiSelect": "Prøv flervalg", "TryMultiSelectMessage": "Hvis du vil redigere flere medier elementer, klikker du bare og hold en plakat og velg elementene du ønsker å administrere. Prøv det!", "Tuesday": "Tirsdag", - "Uniform": "Uniform", "UnlockGuide": "Lås opp Guide", - "Unplayed": "Unplayed", "Unrated": "Uvurdert", "UntilIDelete": "Inntil jeg sletter", "UntilSpaceNeeded": "Inntil lagringsplass er nødvendig", "Up": "Opp", - "Upload": "Upload", "ValueAlbumCount": "{0} album", "ValueDiscNumber": "Disk {0}", "ValueEpisodeCount": "{0} episoder", @@ -649,32 +390,21 @@ "ValueMinutes": "{0} minutter", "ValueMovieCount": "{0} filmer", "ValueMusicVideoCount": "{0} musikkvideoer", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", "ValueOneGame": "1 spill", "ValueOneItem": "et element", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 musikkvideo", "ValueOneSeries": "1 serie", "ValueOneSong": "1 sang", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} serier", "ValueSongCount": "{0} sanger", "ValueSpecialEpisodeName": "Spesial - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", "VideoRange": "Videoområde", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "Vis album", "ViewArtist": "Vis artist", "VoiceInput": "Stemme input", "Watched": "Sett", "Wednesday": "Onsdag", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Manus", "Yes": "Ja" } diff --git a/src/bower_components/emby-webcomponents/strings/nl.json b/src/bower_components/emby-webcomponents/strings/nl.json index 5419b5d2b6..20c130fec3 100644 --- a/src/bower_components/emby-webcomponents/strings/nl.json +++ b/src/bower_components/emby-webcomponents/strings/nl.json @@ -11,7 +11,6 @@ "Advanced": "Geavanceerd", "AirDate": "Uitzenddatum", "Aired": "Uitgezonden", - "Albums": "Albums", "All": "Alle", "AllChannels": "Alle kanalen", "AllComplexFormats": "Alle complexe formaten (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", @@ -26,7 +25,6 @@ "AnyLanguage": "Elke taal", "Anytime": "Op elk moment", "AroundTime": "Rond {0}", - "Art": "Art", "Artists": "Artiesten", "AsManyAsPossible": "Zo veel als mogelijk", "Ascending": "Oplopend", @@ -46,16 +44,13 @@ "AutomaticallySyncNewContentHelp": "Aan deze map toegevoegde nieuwe inhoud automatisch naar het apparaat downloaden.", "Backdrop": "Achtergrond", "Backdrops": "Achtergronden", - "Banner": "Banner", "BestFit": "Best passend", "BirthLocation": "Geboorte Locatie", "Books": "Boeken", - "Box": "Box", "BoxRear": "Box (achterkant)", "BurnSubtitlesHelp": "Bepaalt of de server ondertitels moet inbranden wanneer video's op basis van het ondertitel formaat geconverteerd moeten worden. Inbranden van ondertitels hebben een negatief effect op de server performance. Selecteer Automatisch om op afbeelding gebaseerde formaten (bijv. VOBSUB, PGS, SUB/IDX etc.) en bepaalde ASS/SSA ondertitels in te branden.", "ButtonCancel": "Annuleren", "ButtonGotIt": "Begrepen", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Speel één minuut", "ButtonRestart": "Herstart", "ButtonRestorePreviousPurchase": "Herstel Aankoop", @@ -108,7 +103,6 @@ "DeleteMedia": "Verwijder media", "Depressed": "Onderdrukt", "Descending": "Aflopend", - "Desktop": "Desktop", "DirectPlayError": "Direct Afspelen fout", "DirectPlaying": "Direct afspelen", "DirectStreamHelp1": "De media is compatible met het apparaat wat betreft resolutie en media type (H.264, AC3 etc.), maar is in een incompatible bestandscontainer (.mkv, .avi, .wmv etc.). De video zal on the fly opnieuw worden verpakt voordat deze naar het apparaat wordt gestreamd.", @@ -133,8 +127,6 @@ "Downloaded": "Gedownload", "Downloading": "Downloaden", "DownloadingDots": "Downloaden...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", "DropShadow": "Schaduw", "DvrFeatureDescription": "Plan individuele Live TV opnames, serie opnames en meer met Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR vereist een actief Jellyfin Premiere abonnement.", @@ -175,14 +167,10 @@ "Features": "Kenmerken", "File": "Bestande", "Fill": "Vullen", - "Filters": "Filters", "Folders": "Mappen", "FormatValue": "Formaat: {0}", "FreeAppsFeatureDescription": "Geniet van gratis toegang tot Jellyfin apps voor uw apparaten.", "Friday": "Vrijdag", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", "GroupBySeries": "Groeperen op serie", "GroupVersions": "Versies groeperen", "GuestStar": "Gast ster", @@ -252,7 +240,6 @@ "HeaderNextEpisodePlayingInValue": "Volgende Aflevering over {0}", "HeaderNextUp": "Volgende", "HeaderNextVideoPlayingInValue": "Volgende Afgespeeld over {0}", - "HeaderOfflineDownloads": "Offline Media", "HeaderOfflineDownloadsDescription": "Download media naar uw apparaten voor gemakkelijk offline gebruik.", "HeaderOnNow": "Aan het spelen", "HeaderPhotoAlbums": "Foto-albums", @@ -293,10 +280,7 @@ "Images": "Afbeeldingen", "ImdbRating": "IMDb-beoordeling", "InstallingPackage": "Installeren van {0}", - "InstantMix": "Instant mix", "InterlacedVideoNotSupported": "Interlaced video niet ondersteund", - "ItemCount": "{0} items", - "Items": "Items", "KeepDownload": "Download bewaren", "KeepOnDevice": "Bewaar op apparaat", "Kids": "Kinderen", @@ -306,15 +290,12 @@ "LabelAirsAfterSeason": "Uitgezonden na seizoen:", "LabelAirsBeforeEpisode": "Uitgezonden voor aflevering:", "LabelAirsBeforeSeason": "Uitgezonden voor seizoen:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Album artiesten:", "LabelArtists": "Artiest:", "LabelArtistsHelp": "Scheidt meerdere met een ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Voorkeurs audiotaal:", "LabelBirthDate": "Geboortedatum:", "LabelBirthYear": "Geboorte jaar:", - "LabelBitrateMbps": "Bitrate (Mbps):", "LabelBurnSubtitles": "Ondertitels inbranden:", "LabelChannels": "Kanalen:", "LabelCollection": "Collectie", @@ -336,7 +317,6 @@ "LabelDisplayOrder": "Weergave volgorde:", "LabelDropImageHere": "Sleep de afbeelding hierheen of klik om te bladeren.", "LabelDropShadow": "Schaduw:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-mailadres:", "LabelEndDate": "Eind datum|", "LabelEpisodeNumber": "Afleveringsnummer:", @@ -378,7 +358,6 @@ "LabelSelectFolderGroups": "De inhoud van de volgende mappen automatisch groeperen in secties zoals Films, Muziek en TV:", "LabelSelectFolderGroupsHelp": "Mappen die niet aangevinkt zijn worden getoond in hun eigen weergave.", "LabelShortOverview": "Kort overzicht:", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Terugspoellengte", "LabelSkipForwardLength": "Vooruitspoellengte", "LabelSortBy": "Sorteren op:", @@ -387,7 +366,6 @@ "LabelSoundEffects": "Geluidseffecten:", "LabelSource": "Bron:", "LabelStartWhenPossible": "Start indien mogelijk:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stop indien mogelijk:", "LabelSubtitlePlaybackMode": "Ondertitel mode:", "LabelSubtitles": "Ondertitels:", @@ -395,17 +373,13 @@ "LabelSyncNoTargetsHelp": "Het lijkt erop dat u momenteel geen apps heeft die offline downloaden ondersteunen.", "LabelSyncTo": "Synchroniseer naar:", "LabelTVHomeScreen": "TV mode begin scherm", - "LabelTagline": "Tagline:", "LabelTextBackgroundColor": "Tekst achtergrond kleur:", "LabelTextColor": "Tekst kleur:", "LabelTextSize": "Tekst grootte:", "LabelTheme": "Thema:", "LabelTitle": "Titel:", "LabelTrackNumber": "Tracknummer:", - "LabelType": "Type:", "LabelVersion": "Versie:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", "LabelWindowBackgroundColor": "Tekst achtergrond kleur:", "LabelYear": "Jaar:", "Large": "Groot", @@ -413,29 +387,22 @@ "LearnHowYouCanContribute": "Lees meer over hoe u kunt bijdragen.", "LearnMore": "Meer informatie", "Like": "Leuk", - "LinksValue": "Links: {0}", "List": "Lijst", - "Live": "Live", "LiveBroadcasts": "Live uitzendingen", - "LiveTV": "Live TV", "LiveTvFeatureDescription": "Stream Live TV naar een Jellyfin app, met een compatible TV tuner apparaat in uw Jellyfin Server.", "LiveTvRequiresUnlock": "Live TV vereist een actief Jellyfin Premiere lidmaatschap", - "Logo": "Logo", "ManageRecording": "Beheren opnames", "MarkPlayed": "Markeren als Afgespeeld", "MarkUnplayed": "Markeren als Niet Afgespeeld", "MarkWatched": "Markeer als bekeken", "MediaIsBeingConverted": "De media wordt geconverteerd naar een formaat dat compatible is met het apparaat dat wordt gebruikt om de media af te spelen.", "Medium": "Gemiddeld", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Er is een actief Jellyfin Premiere abonnement benodigd om een automatische serie opname aan te maken.", "MessageAreYouSureDeleteSubtitles": "Weet u zeker dat u dit ondertitelbestand wilt verwijderen?", "MessageConfirmRecordingCancellation": "Opnemen annuleren?", "MessageDownloadQueued": "Download in de wachtrij geplaatst.", "MessageFileReadError": "Er is een fout opgetreden bij het lezen van het bestand. Probeer het opnieuw.", "MessageIfYouBlockedVoice": "Als u spraak toegang uitgeschakeld heeft moet u dit opnieuw configureren voordat u verder gaat.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Een email is verzonden naar {0} met een uitnodiging om aan te melden bij Jellyfin.", "MessageInvitationSentToUser": "Een email is verzonden naar {0} met een uitnodiging om uw uitnodiging te accepteren.", "MessageItemSaved": "Item opgeslagen.", @@ -503,7 +470,6 @@ "PlaybackErrorNoCompatibleStream": "Geen compatibele streams beschikbaar. Probeer het later opnieuw of neem contact op met de serverbeheerder.", "PlaybackErrorNotAllowed": "U bent niet bevoegd om deze content af te spelen. Neem contact op met uw systeembeheerder voor meer informatie.", "PlaybackErrorPlaceHolder": "De gekozen content is niet af te spelen vanaf dit apparaat. Plaats de schijf.", - "PlaybackSettings": "Playback settings", "PlaybackSettingsIntro": "Om de standaard afspeelinstellingen te configureren, stopt u het afspelen van de video. Vervolgens klikt u op het gebruikersicoon in de rechterbovenhoek van de app.", "Played": "Afgespeeld", "Playlists": "Afspeellijsten", @@ -511,7 +477,6 @@ "PleaseRestartServerName": "Herstart Jellyfin Server - {0} aub.", "PleaseSelectDeviceToSyncTo": "Selecteer een apparaat om naar te downloaden", "PleaseSelectTwoItems": "Selecteer ten minste twee items.", - "Premiere": "Premiere", "Premieres": "Premières", "Previous": "Vorige", "Primary": "Primair", @@ -557,7 +522,6 @@ "ScanForNewAndUpdatedFiles": "Scan op nieuwe en bijgewerkte bestanden", "Schedule": "Schema", "Screenshot": "Schermafdruk", - "Screenshots": "Screenshots", "Search": "Zoeken", "SearchForCollectionInternetMetadata": "Zoeken op het internet voor afbeeldingen en metadata", "SearchForMissingMetadata": "Zoeken naar missende metadata", @@ -592,14 +556,12 @@ "SortByValue": "Sorteren op {0}", "SortChannelsBy": "Sorteer kanalen op:", "SortName": "Sorteerbaar", - "Sports": "Sports", "StatsForNerds": "Statistieken voor nerds", "StopRecording": "Stop opname", "Studios": "Studio's", "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Deze instellingen hebben ook effect op afspelen naar een Chromecast wanneer deze vanaf dit apparaat worden gestart.", "SubtitleAppearanceSettingsDisclaimer": "Deze instellingen hebben geen invloed op grafische ondertitels (PGS, DVD etc.) en ondertitels die hun eigen stijl ingebouwd hebben (ASS/SSA).", "SubtitleCodecNotSupported": "Ondertitel formaat niet ondersteund", - "SubtitleSettings": "Subtitle settings", "SubtitleSettingsIntro": "Om de standaard ondertiteling- en taalinstellingen te configureren, stopt u het afspelen van de video. Vervolgens klikt u op het gebruikersicoon in de rechterbovenhoek van de app.", "Subtitles": "Ondertiteling", "Suggestions": "Suggesties", @@ -617,7 +579,6 @@ "SyncUnwatchedVideosOnly": "Alleen niet bekeken video's downloaden", "SyncUnwatchedVideosOnlyHelp": "Alleen niet bekeken video's zullen worden gedownload en de video's worden van het apparaat verwijderd nadat deze zijn bekeken.", "SyncingDots": "Synchroniseren...", - "TV": "TV", "Tags": "Labels", "TagsValue": "Labels: {0}", "TermsOfUse": "Gebruiksvoorwaarden", @@ -628,13 +589,10 @@ "Thumb": "Miniatuur", "Thursday": "Donderdag", "TrackCount": "{0} nummers", - "Trailer": "Trailer", - "Trailers": "Trailers", "Transcoding": "Transcoderen", "TryMultiSelect": "Probeer multi-select", "TryMultiSelectMessage": "Als u meerdere media-items wilt bewerken, klikt u er op een poster en hou even vast, selecteer nu de items die u wilt beheren. Probeer maar!", "Tuesday": "Dinsdag", - "Uniform": "Uniform", "UnlockGuide": "Gids vrijgeven", "Unplayed": "Niet afgespeeld", "Unrated": "Geen rating", @@ -642,23 +600,15 @@ "UntilSpaceNeeded": "Totdat de ruimte nodig is", "Up": "Omhoog", "Upload": "Uploaden", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} afleveringen", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} films", "ValueMusicVideoCount": "{0} muziek video's", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 aflevering", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", "ValueOneMovie": "1 film", "ValueOneMusicVideo": "1 muziek video", "ValueOneSeries": "1 serie", "ValueOneSong": "1 titel", "ValueSeconds": "{0} seconden", - "ValueSeriesCount": "{0} series", "ValueSongCount": "{0} titels", "ValueSpecialEpisodeName": "Speciaal - {0}", "Vertical": "Verticaal", diff --git a/src/bower_components/emby-webcomponents/strings/pl.json b/src/bower_components/emby-webcomponents/strings/pl.json index f031762a05..7fc0294427 100644 --- a/src/bower_components/emby-webcomponents/strings/pl.json +++ b/src/bower_components/emby-webcomponents/strings/pl.json @@ -55,7 +55,6 @@ "BurnSubtitlesHelp": "Określa czy serwer powinien wypalać napisy podczas konwersji wideo, w zależności od formatu napisów. Unikanie wypalania napisów poprawia wydajność serwera. Wybierz Automatycznie, w celu wypalania zarówno napisów w formatach graficznych (np. VOBSUB, PGS, SUB/IDX, itp.), jak i pewnych napisów ASS/SSA.", "ButtonCancel": "Anuluj", "ButtonGotIt": "Rozumiem", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Odtwarzaj jedną minutę", "ButtonRestart": "Uruchom ponownie", "ButtonRestorePreviousPurchase": "Przywróć zakup", @@ -177,7 +176,6 @@ "Fill": "Rozciągnij", "Filters": "Filtry", "Folders": "Foldery", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Korzystaj z darmowego dostępu do aplikacji Jellyfin na swoich urządzeniach.", "Friday": "Piątek", "GenreValue": "Gatunek: {0}", @@ -336,7 +334,6 @@ "LabelDisplayOrder": "Kolejność wyświetlania:", "LabelDropImageHere": "Upuść obraz tutaj lub naciśnij przycisk, aby przeglądać.", "LabelDropShadow": "Cień:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Adres pocztowy:", "LabelEndDate": "Data zakończenia:", "LabelEpisodeNumber": "Numer odcinka:", @@ -420,22 +417,18 @@ "LiveTV": "Telewizja", "LiveTvFeatureDescription": "Oglądaj transmisje telewizyjne z dowolną aplikacją Jellyfin, za pomocą zainstalowanego na serwerze Jellyfin tunera telewizyjnego.", "LiveTvRequiresUnlock": "Odbiór transmisji telewizyjnych wymaga aktywnej subskrypcji Jellyfin Premiere.", - "Logo": "Logo", "ManageRecording": "Zarządzaj nagrywaniem", "MarkPlayed": "Oznacz jako obejrzane", "MarkUnplayed": "Oznacz jako nieobejrzane", "MarkWatched": "Oznacz jako obejrzane", "MediaIsBeingConverted": "Media będą konwertowane do formatu kompatybilnego z urządzeniem, na który będą odtwarzane.", "Medium": "Średni", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Funkcja automatycznego nagrywania seriali wymaga aktywnej subskrypcji Jellyfin Premium.", "MessageAreYouSureDeleteSubtitles": "Czy jesteś pewien, że chcesz usunąć ten plik z napisami?", "MessageConfirmRecordingCancellation": "Anulować nagranie?", "MessageDownloadQueued": "Dodano do kolejki pobierania.", "MessageFileReadError": "Podczas wczytywania plików wystąpił błąd. Spróbuj ponownie później.", "MessageIfYouBlockedVoice": "Jeśli odmówisz aplikacji dostępu głosowego, będziesz musiał zmienić konfigurację przed ponownym urządzeniem.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Wiadomość pocztowa, z prośbą o rejestrację konta Jellyfin, została wysłana do {0}.", "MessageInvitationSentToUser": "Wiadomość pocztowa, z prośbą o akceptację zaproszenia współużytkowania, została wysłana do {0}.", "MessageItemSaved": "Obiekt zapisany.", @@ -646,10 +639,8 @@ "ValueDiscNumber": "Dysk {0}", "ValueEpisodeCount": "{0} odcinki", "ValueGameCount": "{0} gry", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmy", "ValueMusicVideoCount": "{0} teledyski", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 odcinek", "ValueOneGame": "1 gra", "ValueOneItem": "1 pozycja", diff --git a/src/bower_components/emby-webcomponents/strings/pt-br.json b/src/bower_components/emby-webcomponents/strings/pt-br.json index 42c0916ff2..42d18d351b 100644 --- a/src/bower_components/emby-webcomponents/strings/pt-br.json +++ b/src/bower_components/emby-webcomponents/strings/pt-br.json @@ -38,7 +38,6 @@ "AudioCodecNotSupported": "Codec de áudio não suportado", "AudioProfileNotSupported": "Perfil de áudio não suportado", "AudioSampleRateNotSupported": "Taxa de sample de áudio não suportada", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Automático (baseado na configuração do idioma)", "AutomaticallyConvertNewContent": "Converter novo conteúdo automaticamente", "AutomaticallyConvertNewContentHelp": "Novo conteúdo adicionado a esta pasta será automaticamente convertido.", @@ -46,7 +45,6 @@ "AutomaticallySyncNewContentHelp": "Novo conteúdo adicionado a esta pasta será automaticamente transferido para o dispositivo.", "Backdrop": "Imagem de Fundo", "Backdrops": "Imagens de Fundo", - "Banner": "Banner", "BestFit": "Mais provável", "BirthLocation": "Local de nascimento", "Books": "Livros", @@ -55,7 +53,6 @@ "BurnSubtitlesHelp": "Determina se o servidor deveria gravar as legendas no vídeo ao convertê-lo, dependendo do formato da legenda. Evitar a gravação da legenda irá melhorar a performance do servidor. Selecione Auto para gravar a imagem baseado nos formatos (ex. VOBSUB, PGS, SUB/IDX, etc.) assim como algumas legendas ASS/SSA.", "ButtonCancel": "Cancelar", "ButtonGotIt": "Feito", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Reproduzir Um Minuto", "ButtonRestart": "Reiniciar", "ButtonRestorePreviousPurchase": "Recuperar Compra", @@ -108,7 +105,6 @@ "DeleteMedia": "Excluir mídia", "Depressed": "Deprimido", "Descending": "Descendente", - "Desktop": "Desktop", "DirectPlayError": "Erro de reprodução direta", "DirectPlaying": "Reprodução direta", "DirectStreamHelp1": "A mídia é compatível com o dispositivo, independente da resolução e tipo de mídia (H.264, AC3, etc.), mas está em um contaminar incompatível (.mkv, .avi, .wmv, etc.). O vídeo será reempacotado em tempo real antes de transmitir para o dispositivo.", @@ -128,13 +124,10 @@ "DisplayModeHelp": "Selecione o tipo de tela para executar o Jellyfin.", "DoNotRecord": "Não gravar", "Down": "Para baixo", - "Download": "Download", "DownloadItemLimitHelp": "Opcional. Definir um limite para o número de itens que serão baixados.", "Downloaded": "Transferido(s)", "Downloading": "Transferindo", "DownloadingDots": "Transferindo...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", "DropShadow": "Sombra", "DvrFeatureDescription": "Agendar gravações individuais de TV ao vivo, gravações de séries e mais com o Jellyfin DVR.", "DvrSubscriptionRequired": "Jellyfin DVR requer uma assinatura ativa do Jellyfin Premiere", @@ -168,7 +161,6 @@ "ErrorReachingJellyfinConnect": "Ocorreu um erro ao acessar o servidor do Jellyfin Connect. Por favor, verifique se possui uma conexão com a internet e tente novamente.", "ErrorRemovingJellyfinConnectAccount": "Ocorreu um erro ao remover a conta do Jellyfin Connect. Por favor, verifique se possui conexão com a internet e tente novamente.", "ExtraLarge": "Extra grande", - "Extras": "Extras", "Favorite": "Favorito", "Favorites": "Favoritos", "FeatureRequiresJellyfinPremiere": "Este recurso requer uma subscrição ativa do Jellyfin Premiere", @@ -285,7 +277,6 @@ "Hide": "Ocultar", "HideWatchedContentFromLatestMedia": "Ocultar conteúdo assistido das mídias recentes", "Home": "Início", - "Horizontal": "Horizontal", "HowDidYouPay": "Como você pagou?", "IHaveJellyfinPremiere": "Eu tenho Jellyfin Premiere", "IPurchasedThisApp": "Eu comprei este app", @@ -378,7 +369,6 @@ "LabelSelectFolderGroups": "Agrupar automaticamente o conteúdo das seguintes pastas dentro das visualizações como Filmes, Músicas e TV:", "LabelSelectFolderGroupsHelp": "Pastas que não estão marcadas serão exibidas em sua própria visualização.", "LabelShortOverview": "Sinopse curta:", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Tamanho do intervalo para retroceder", "LabelSkipForwardLength": "Tamanho do intervalo para avançar", "LabelSortBy": "Classificar por:", @@ -387,7 +377,6 @@ "LabelSoundEffects": "Efeitos sonoros:", "LabelSource": "Fonte:", "LabelStartWhenPossible": "Iniciar quando possível:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Parar quando possível:", "LabelSubtitlePlaybackMode": "Modo de legendas:", "LabelSubtitles": "Legendas:", @@ -405,7 +394,6 @@ "LabelType": "Tipo:", "LabelVersion": "Versão:", "LabelVideo": "Vídeo:", - "LabelWebsite": "Website:", "LabelWindowBackgroundColor": "Cor de fundo do texto:", "LabelYear": "Ano:", "Large": "Grande", @@ -413,29 +401,24 @@ "LearnHowYouCanContribute": "Saiba como você pode contribuir.", "LearnMore": "Saiba mais", "Like": "Curti", - "LinksValue": "Links: {0}", "List": "Lista", "Live": "Ao vivo", "LiveBroadcasts": "Broadcasts ao vivo", "LiveTV": "TV ao Vivo", "LiveTvFeatureDescription": "Assistir TV ao vivo em qualquer app Jellyfin com um sintonizador de TV compatível, instalado em seu servidor Jellyfin.", "LiveTvRequiresUnlock": "A TV ao vivo exige uma assinatura ativa do Jellyfin Premiere.", - "Logo": "Logo", "ManageRecording": "Gerenciar gravação", "MarkPlayed": "Marcar como reproduzido", "MarkUnplayed": "Marcar como não-reproduzido", "MarkWatched": "Marcar como assisitido", "MediaIsBeingConverted": "A mídia está sendo convertida para um formato que é compatível com o dispositivo que reproduz a mídia.", "Medium": "Média", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Uma subscrição ativa do Jellyfin Premiere é requerida para criar a gravação automatizada de séries.", "MessageAreYouSureDeleteSubtitles": "Deseja realmente excluir este arquivo de legendas?", "MessageConfirmRecordingCancellation": "Cancelar gravação?", "MessageDownloadQueued": "Download enfileirado.", "MessageFileReadError": "Ocorreu um erro ao ler o arquivo. Por favor, tente novamente.", "MessageIfYouBlockedVoice": "Se você negou o acesso de voz ao app, você necessitará reconfigurar antes de tentar novamente.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Um email foi enviado para {0}, convidando-os a se registrarem no Jellyfin.", "MessageInvitationSentToUser": "Um email foi enviado para {0}, convidando-os para aceitar seu convite.", "MessageItemSaved": "Item salvo.", @@ -475,7 +458,6 @@ "NoSubtitles": "Sem Legenda", "NoSubtitlesHelp": "Legendas não serão carregadas por padrão. Elas podem ser carregadas manualmente durante a reprodução.", "None": "Nenhum(a)", - "Normal": "Normal", "Off": "Desligado", "OneChannel": "Um canal", "OnlyForcedSubtitles": "Apenas legendas forçadas", @@ -483,7 +465,6 @@ "OnlyImageFormats": "Apenas formatos de imagens (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Abrir", "OptionNew": "Nova...", - "Original": "Original", "OriginalAirDateValue": "Data de exibição original: {0}", "Overview": "Sinopse", "PackageInstallCancelled": "Instalação de {0} cancelada.", @@ -503,15 +484,12 @@ "PlaybackErrorNoCompatibleStream": "Não existem streams compatíveis. Por favor, tente novamente mais tarde ou contate o administrador do sistema para mais detalhes.", "PlaybackErrorNotAllowed": "Você não está autorizado a reproduzir este conteúdo. Por favor, contacte seu administrador do sistema para mais detalhes.", "PlaybackErrorPlaceHolder": "Por favor, insira o disco para reproduzir este vídeo.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Reproduzido", "Playlists": "Listas de Reprodução", "PleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.", "PleaseRestartServerName": "Por favor reinicie o Servidor Jellyfin - {0}.", "PleaseSelectDeviceToSyncTo": "Por favor, selecione um dispositivo para transferir.", "PleaseSelectTwoItems": "Por favor selecione pelo menos dois itens.", - "Premiere": "Premiere", "Premieres": "Estréias", "Previous": "Anterior", "Primary": "Capa", @@ -557,7 +535,6 @@ "ScanForNewAndUpdatedFiles": "Rastrear por arquivos novos e atualizados", "Schedule": "Agendar", "Screenshot": "Imagem da tela", - "Screenshots": "Screenshots", "Search": "Busca", "SearchForCollectionInternetMetadata": "Buscar artwork e metadados na internet", "SearchForMissingMetadata": "Buscar por metadados que faltam", @@ -599,8 +576,6 @@ "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Estas configurações também se aplicam para qualquer reprodução do Chromecast para este dispositivo.", "SubtitleAppearanceSettingsDisclaimer": "Estes ajustes não serão aplicados às legendas gráficas (PGS, DVD, etc) ou às legendas que têm seus próprios estilos embutidos (ASS/SSA).", "SubtitleCodecNotSupported": "Formato da legenda não suportado", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Legendas", "Suggestions": "Sugestões", "Sunday": "Domingo", @@ -617,9 +592,6 @@ "SyncUnwatchedVideosOnly": "Transferir apenas vídeos não assistidos", "SyncUnwatchedVideosOnlyHelp": "Apenas vídeos não assistidos serão transferidos, e os vídeos serão removidos do dispositivo assim que forem assistidos.", "SyncingDots": "Sincronizando...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", "TermsOfUse": "Termos de uso", "ThankYouForTryingEnjoyOneMinute": "Por favor aproveite um minuto de reprodução. Obrigado por testar Jellyfin.", "ThemeSongs": "Músicas Tema", @@ -628,8 +600,6 @@ "Thumb": "Ícone", "Thursday": "Quinta-feira", "TrackCount": "{0} faixas", - "Trailer": "Trailer", - "Trailers": "Trailers", "Transcoding": "Transcodificação", "TryMultiSelect": "Experimentar a Seleção Múltipla", "TryMultiSelectMessage": "Para editar itens múltiplos de mídia, basta clicar e segurar qualquer capa e selecionar os itens que gostaria de gerenciar. Experimente!", @@ -646,13 +616,11 @@ "ValueDiscNumber": "Disco {0}", "ValueEpisodeCount": "{0} episódios", "ValueGameCount": "{0} jogos", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmes", "ValueMusicVideoCount": "{0} vídeos musicais", "ValueOneAlbum": "1 álbum", "ValueOneEpisode": "1 episódio", "ValueOneGame": "1 jogo", - "ValueOneItem": "1 item", "ValueOneMovie": "1 filme", "ValueOneMusicVideo": "1 vídeo musical", "ValueOneSeries": "1 série", @@ -661,7 +629,6 @@ "ValueSeriesCount": "{0} séries", "ValueSongCount": "{0} músicas", "ValueSpecialEpisodeName": "Especial - {0}", - "Vertical": "Vertical", "VideoBitDepthNotSupported": "Profundidade de bit de vídeo não suportada", "VideoCodecNotSupported": "Codec de vídeo não suportado", "VideoFramerateNotSupported": "Taxa do vídeo não suportada", diff --git a/src/bower_components/emby-webcomponents/strings/pt-pt.json b/src/bower_components/emby-webcomponents/strings/pt-pt.json index 980ddbe503..59db31071b 100644 --- a/src/bower_components/emby-webcomponents/strings/pt-pt.json +++ b/src/bower_components/emby-webcomponents/strings/pt-pt.json @@ -1,305 +1,46 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Ator", "Add": "Adicionar", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", "AddToPlaylist": "Adicionar à lista de reprodução", - "AddedOnValue": "Added {0}", "Advanced": "Avançado", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "Novo", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", "Backdrops": "Imagens de Fundo", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancelar", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "Reiniciar", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", "Composer": "Compositor", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", "ConfirmDeleteItem": "Excluir este item o excluirá do sistema de arquivos e também da biblioteca multimédia. Deseja realmente continuar?", "ConfirmDeleteItems": "Ao excluir estes itens você os excluirá do sistema de arquivos e de sua biblioteca multimédia. Deseja realmente continuar?", "ConfirmDeletion": "Confirmar Exclusão", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", "Connect": "Conectar", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "A Continuar", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Dias", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Remover", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Diretor", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Editar", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "EnableCinemaMode": "Ativar modo cinema", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Terminado", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", "Error": "Erro", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "Este recurso requer uma subscrição ativa do Jellyfin Premiere", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Sexta", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Adicionar à Coleção", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", "HeaderAudioSettings": "Ajustes de Áudio", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", "HeaderConfirmRecordingCancellation": "Confirmar Cancelamento da Gravação", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Remover item", "HeaderDeleteItems": "Remover Itens", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", "HeaderEnabledFields": "Campos Ativados", "HeaderEnabledFieldsHelp": "Desmarque um campo para bloqueá-lo e evitar que seus dados sejam alterados.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", "HeaderIdentifyItemHelp": "Digite um ou mais critérios de busca. Exclua o critério para aumentar os resultados da busca.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", "HeaderMetadataSettings": "Ajustes dos Metadados", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "Nova Gravação", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "Erro na Reprodução", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Selecionar Data", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "Informação do Episódio Especial", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", "HeaderSubtitleSettings": "Ajustes de Legenda", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", "Help": "Ajuda", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", "Identify": "Identificar", "Images": "Imagens", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", "InstantMix": "Mix instântaneo", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} itens", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", "Label3DFormat": "Formato 3D:", "LabelAirDays": "Dias da exibição:", "LabelAirTime": "Horário:", @@ -310,371 +51,70 @@ "LabelAlbumArtists": "Artistas do Álbum:", "LabelArtists": "Artistas:", "LabelArtistsHelp": "Separa múltiplas com ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", "LabelCommunityRating": "Avaliação da comunidade:", "LabelContentType": "Tipo de conteúdo:", - "LabelConvertTo": "Convert to:", "LabelCountry": "País:", "LabelCriticRating": "Avaliação da crítica:", "LabelCustomRating": "Classificação personalizada:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Data adicionado:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Ordem de exibição:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", "LabelEndDate": "Data final:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Idioma:", "LabelLockItemToPreventChanges": "Bloquear este item para evitar alterações futuras", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "Idioma preferido para download:", "LabelName": "Nome:", - "LabelNumber": "Number:", "LabelOriginalAspectRatio": "Proporção da imagem original:", - "LabelOriginalTitle": "Original title:", "LabelOverview": "Sinopse:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Classificação parental:", "LabelPath": "Local:", "LabelPersonRole": "Personagem:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", "LabelPlaceOfBirth": "Local de nascimento:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", "LabelReleaseDate": "Data do lançamento:", "LabelRuntimeMinutes": "Duração (minutos):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", "LabelShortOverview": "Sinopse curta:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "Estado:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", "LabelTagline": "Slogan:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", "LabelType": "Tipo:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", "LearnMore": "Saiba mais", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "Uma subscrição Jellyfin Premiere é necessária para criar a gravação automática de séries.", "MessageAreYouSureDeleteSubtitles": "Deseja realmente remover este arquivo de legendas?", "MessageConfirmRecordingCancellation": "Deseja realmente cancelar esta gravação?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Item salvo.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "Deixar em branco para herdar os ajustes de um item superior, ou o valor padrão global", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Segunda", "More": "Mais", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", "NewCollection": "Nova Coleção", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Exemplo: Coleção Guerra das Estrelas", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Abrir", "OptionNew": "Nova...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "Reproduzir", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", "PlayNextEpisodeAutomatically": "Reproduzir próximo episódio automaticamente", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Por favor selecione pelo menos dois itens.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", "Producer": "Produtor", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "Gravar", - "RecordSeries": "Record series", "RecordingCancelled": "Gravação cancelada.", "RecordingScheduled": "Gravação agendada.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Atualizar", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", "Repeat": "Repetir", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", "ReplaceExistingImages": "Substituir imagens existentes", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "Sábado", "Save": "Guardar", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", "Search": "Busca", "SearchForCollectionInternetMetadata": "Procurar na internet por imagens e metadados", - "SearchForMissingMetadata": "Search for missing metadata", "SearchForSubtitles": "Buscar Legendas", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", "ServerUpdateNeeded": "Este Servidor Jellyfin precisa ser atualizado. Para fazer download da versão mais recente, por favor visite {0}", "Settings": "Ajustes", - "SettingsSaved": "Settings saved.", "Share": "Partilhar", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "Aleatório", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "Domingo", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Quinta", "TrackCount": "{0} faixas", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", "TryMultiSelectMessage": "Para editar múltiplos ficheiros de multimédia, basta clicar e segurar qualquer capa e selecionar os itens que gostaria de gerir. Experimente!", "Tuesday": "Terça", - "Uniform": "Uniform", "UnlockGuide": "Desbloquear Guia", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", "ValueSpecialEpisodeName": "Especial - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "Quarta", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", "Writer": "Escritor", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/ro.json b/src/bower_components/emby-webcomponents/strings/ro.json index d84b9c7325..8138f3b72f 100644 --- a/src/bower_components/emby-webcomponents/strings/ro.json +++ b/src/bower_components/emby-webcomponents/strings/ro.json @@ -1,680 +1,23 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Anuleaza", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "Continua", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "S-a sfarsit", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Vineri", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", "Help": "Ajutor", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "Artisti:", "LabelArtistsHelp": "Folosire separata multipla", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", "LabelContentType": "Tip continut:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Tara:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Limba:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", "LabelName": "Nume:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Luni", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Exemplu: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "Sambata", "Save": "Salveaza", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", "SearchForCollectionInternetMetadata": "Căutare pe internet pentru postere și metadate", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "Duminica", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Joi", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Marti", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "Miercuri", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/ru.json b/src/bower_components/emby-webcomponents/strings/ru.json index 37575ec9c6..cf6c01f209 100644 --- a/src/bower_components/emby-webcomponents/strings/ru.json +++ b/src/bower_components/emby-webcomponents/strings/ru.json @@ -336,7 +336,6 @@ "LabelDisplayOrder": "Порядок отображения:", "LabelDropImageHere": "Перетащите рисунок сюда или щёлкните для навигации", "LabelDropShadow": "Окантовка:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "Адрес Э-почты:", "LabelEndDate": "Конечная дата:", "LabelEpisodeNumber": "Номер эпизода:", @@ -434,8 +433,6 @@ "MessageDownloadQueued": "Загрузка в очереди.", "MessageFileReadError": "Произошла ошибка при считывании файла. Повторите попытку позже.", "MessageIfYouBlockedVoice": "Если отказано в голосовом доступе к приложению, перед новой попыткой вам необходимо переконфигурирование.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Письмо была отправлена к {0}, с предложением зарегистрироваться в Jellyfin.", "MessageInvitationSentToUser": "Письмо было отправлено к {0}, с предложением принять ваше приглашение на совместный доступ.", "MessageItemSaved": "Элемент сохранён.", @@ -503,7 +500,6 @@ "PlaybackErrorNoCompatibleStream": "В настоящее время совместимых потоков в наличии не имеется. Повторите попытку позже или за подробностями обратитесь к своему системному администратору.", "PlaybackErrorNotAllowed": "В настоящее время вы не авторизованы чтобы воспроизводить данное содержание. За подробностями обратитесь к своему системному администратору.", "PlaybackErrorPlaceHolder": "Вставьте диск, чтобы воспроизвести данное видео.", - "PlaybackSettings": "Playback settings", "PlaybackSettingsIntro": "Чтобы конфигурировать параметры воспроизведения по умолчанию, остановите воспроизведение видео, затем щелкните значок пользователя в правой верхней части приложения.", "Played": "Воспроизведено", "Playlists": "Плей-листы", @@ -599,7 +595,6 @@ "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Эти параметры также применимы к любому Chromecast-воспроизведению запущенному данным устройством.", "SubtitleAppearanceSettingsDisclaimer": "Данные параметры не применимы к графическим субтитрам (PGS, DVD и т.д.) или к субтитрам, которые имеют внедрённые свои собственные стили (ASS/SSA).", "SubtitleCodecNotSupported": "Формат субтитров не поддерживается", - "SubtitleSettings": "Subtitle settings", "SubtitleSettingsIntro": "Чтобы конфигурировать внешний вид субтитров и языковые настройки, остановите воспроизведение видео, затем щелкните значок пользователя в правой верхней части приложения.", "Subtitles": "Субтитры", "Suggestions": "Предлагаемое", diff --git a/src/bower_components/emby-webcomponents/strings/sk.json b/src/bower_components/emby-webcomponents/strings/sk.json index 803c1d5250..56a9ba3e6b 100644 --- a/src/bower_components/emby-webcomponents/strings/sk.json +++ b/src/bower_components/emby-webcomponents/strings/sk.json @@ -1,131 +1,72 @@ { - "Absolute": "Absolute", "Accept": "Prijať", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", "Actor": "Herec", "Add": "Pridať", "AddToCollection": "Pridať do zbierky", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", "Advanced": "Pokročilé", - "AirDate": "Air date", - "Aired": "Aired", "Albums": "Albumy", "All": "Všetko", "AllChannels": "Všetky kanály", "AllComplexFormats": "Všetky komplexné formáty (ASS, SSA, VOBSUB, PGS, SUB/IDX, a pod.)", "AllEpisodes": "Všetky epizódy", "AllLanguages": "Všetky jazyky", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", "AlwaysPlaySubtitles": "Vždy zobraziť titulky", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", "AnyLanguage": "Akýkoľvek jazyk", - "Anytime": "Anytime", "AroundTime": "Okolo {0}", - "Art": "Art", "Artists": "Umelci", "AsManyAsPossible": "Najviac ako je možné", "Ascending": "Vzostupne", "AspectRatio": "Pomer strán", "AttributeNew": "Nové", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", "AudioChannelsNotSupported": "Audio kanály nie sú podporované", "AudioCodecNotSupported": "Audio kodek nie je podporovaný", "AudioProfileNotSupported": "Audio profil nie je podporovaný", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Automaticky (na základe nastavenia jazyka)", "AutomaticallyConvertNewContent": "Automaticky konvertovať nový obsah", "AutomaticallyConvertNewContentHelp": "Nový obsah pridaný do tohto priečinka bude automaticky skonvertovaný.", "AutomaticallySyncNewContent": "Automaticky sťahovať nový obsah", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", "Backdrops": "Pozadie", - "Banner": "Banner", - "BestFit": "Best fit", "BirthLocation": "Miesto narodenia", "Books": "Knihy", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Zrušiť", "ButtonGotIt": "Rozumiem", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Prehrať jednu minútu", "ButtonRestart": "Reštartovať", "ButtonRestorePreviousPurchase": "Obnoviť nákup", "ButtonTryAgain": "Skúste znova", "ButtonUnlockPrice": "Odomknúť {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", "CancelDownload": "Zrušiť sťahovanie", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", "Categories": "Kategórie", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "Collections": "Zbierky", - "ColorPrimaries": "Color primaries", "ColorSpace": "Farebný priestor", - "ColorTransfer": "Color transfer", "CommunityRating": "Hodnotenie komunity", "Composer": "Skladateľ", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", "ConfirmDeleteImage": "Zmazať obrázok?", - "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?", "ConfirmDeletion": "Potvrdiť zmazanie", "ConfirmEndPlayerSession": "Chcete vypnúť Jellyfin na {0}?", - "ConfirmRemoveDownload": "Remove download?", "Connect": "Pripojiť", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", "ContainerNotSupported": "Kontajner nie je podporovaný", "Continue": "Pokračovať", - "ContinueInSecondsValue": "Continue in {0} seconds.", "ContinueWatching": "Pokračovať v pozeraní", - "Continuing": "Continuing", "Convert": "Konvertovať", "ConvertItemLimitHelp": "Voliteľné. Nastaviť limit položiek, ktoré budú konvertované.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", "Countries": "Krajiny", "CriticRating": "Hodnotenie kritikov", "DateAdded": "Dátum pridania", "DatePlayed": "Dátum prehrania", "Days": "Dni", - "Default": "Default", "DefaultErrorMessage": "Pri spracúvaní požiadavky došlo k chybe. Skúste prosím neskôr znova.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Zmazať", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", "Descending": "Zostupne", "Desktop": "Stolný počítač", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", "Director": "Režisér", "DirectorValue": "Režisér: {0}", "DirectorsValue": "Režiséri: {0}", "Disc": "Disk", "Disconnect": "Odpojiť", "Dislike": "Nepáči sa mi to", - "Display": "Display", "DisplayInMyMedia": "Zobraziť na domácej obrazovke", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", "DisplayMissingEpisodesWithinSeasons": "Zobraziť chýbajúce epizódy v rámci sezóny.", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "Nenahrávať", "Down": "Dole", "Download": "Stiahnuť", @@ -135,96 +76,49 @@ "DownloadingDots": "Sťahuje sa…", "Downloads": "Sťahovania", "DownloadsValue": "{0} stiahnutí", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Upraviť", "EditImages": "Upraviť obrázky", "EditMetadata": "Upraviť metadáta", "EditSubtitles": "Upraviť titulky", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", "EnableExternalVideoPlayers": "Povoliť externé video prehrávače", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", "EndsAtValue": "Končí o {0}", "Episodes": "Epizódy", "Error": "Chyba", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", "ExtraLarge": "Veľmi veľké", - "Extras": "Extras", "Favorite": "Obľúbené", "Favorites": "Obľúbené", "FeatureRequiresJellyfinPremiere": "Táto funkcia vyžaduje aktívne predplatné Jellyfin Premiere.", - "Features": "Features", "File": "Súbor", "Fill": "Vyplniť", "Filters": "Filtre", - "Folders": "Folders", "FormatValue": "Formát: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Piatok", "GenreValue": "Žáner: {0}", "Genres": "Žánre", "GenresValue": "Žánre: {0}", "GroupBySeries": "Zoskupiť podľa série", - "GroupVersions": "Group versions", "GuestStar": "Hosťujúca hviezda", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", "Guide": "Sprievodca", "HDPrograms": "HD programy", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Pridať do zbierky", - "HeaderAddToPlaylist": "Add to Playlist", "HeaderAddUpdateImage": "Pridať/nahrať obrázok", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Audio knihy", "HeaderAudioSettings": "Nastavenia zvuku", "HeaderBecomeProjectSupporter": "Získať Jellyfin Premiere", "HeaderBenefitsJellyfinPremiere": "Výhody Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", "HeaderContinueListening": "Pokračovať v počúvaní", "HeaderContinueWatching": "Pokračovať v pozeraní", - "HeaderConvertYourRecordings": "Convert Your Recordings", "HeaderCustomizeHomeScreen": "Prispôsobiť domovskú obrazovku", "HeaderDeleteItem": "Zmazať položku", "HeaderDeleteItems": "Zmazať položky", - "HeaderDisplaySettings": "Display Settings", "HeaderDownloadSettings": "Nastavenia sťahovania", "HeaderEditImages": "Upraviť obrázky", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", "HeaderFavoriteAlbums": "Obľúbené albumy", "HeaderFavoriteArtists": "Obľúbení umelci", "HeaderFavoriteCollections": "Obľúbené zbierky", "HeaderFavoriteEpisodes": "Obľúbené epizódy", "HeaderFavoriteGames": "Obľúbené hry", "HeaderFavoriteMovies": "Obľúbené filmy", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", "HeaderFavoriteSongs": "Obľúbené skladby", "HeaderFavoriteVideos": "Obľúbené videá", "HeaderFreeApps": "Jellyfin Apps zdarma", @@ -233,14 +127,8 @@ "HeaderInvitationSent": "Pozvánka odoslaná", "HeaderJellyfinAccountAdded": "Jellyfin účet pridaný", "HeaderJellyfinAccountRemoved": "Jellyfin účet odstránený", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", "HeaderLatestFrom": "Najnovšie od {0}", "HeaderLatestMedia": "Najnovšie médiá", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", "HeaderLibraryFolders": "Priečinky knižnice", "HeaderLibraryOrder": "Poradie knižnice", "HeaderMetadataSettings": "Nastavenia metadát", @@ -248,74 +136,42 @@ "HeaderMyDevice": "Moje zariadenie", "HeaderMyMedia": "Moje média", "HeaderMyMediaSmall": "Moje médiá (malé)", - "HeaderNewRecording": "New Recording", "HeaderNextEpisodePlayingInValue": "Ďalšia epizóda sa spustí o {0}", "HeaderNextUp": "Nasleduje", "HeaderNextVideoPlayingInValue": "Ďalšie video sa spustí o {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", "HeaderPhotoAlbums": "Albumy fotografií", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "Chyba prehrávania", - "HeaderRecordingOptions": "Recording Options", "HeaderRemoteControl": "Ďiaľkové ovládanie", "HeaderRestartingJellyfinServer": "Jellyfin Server sa reštartuje", - "HeaderSaySomethingLike": "Say Something Like...", "HeaderSecondsValue": "{0} sekúnd", "HeaderSelectDate": "Vyberte dátum", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", "HeaderStartNow": "Začať teraz", "HeaderStopRecording": "Zastaviť nahrávanie", "HeaderSubtitleAppearance": "Vzhľad titulkov", "HeaderSubtitleSettings": "Nastavenia titulkov", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", "HeaderUploadImage": "Nahrať obrázok", "HeaderVideoQuality": "Kvalita videa", - "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Čakám na WiFi", - "HeaderYouSaid": "You Said...", "Help": "Pomoc", "Hide": "Skryť", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", "Home": "Domov", "Horizontal": "Horizontálne", "HowDidYouPay": "Ako ste platili?", "IHaveJellyfinPremiere": "Už mám Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", "Identify": "Identifikovať", "Images": "Obrázky", "ImdbRating": "IMDb hodnotenie", "InstallingPackage": "Inštalujem {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} položiek", "Items": "Položky", - "KeepDownload": "Keep download", "KeepOnDevice": "Ponechať na zariadení", "Kids": "Detské", "Label3DFormat": "3D formát:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "Umelci:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "Uprednostňovaný jazyk zvuku:", "LabelBirthDate": "Dátum narodenia:", "LabelBirthYear": "Rok narodenia:", "LabelBitrateMbps": "Dátový tok (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", "LabelChannels": "Kanály:", "LabelCollection": "Zbierka:", "LabelCommunityRating": "Hodnotenie komunity:", @@ -323,33 +179,20 @@ "LabelConvertTo": "Konvertovať do:", "LabelCountry": "Krajina:", "LabelCriticRating": "Hodnotenie kritikov:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", "LabelDateAdded": "Dátum pridania:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Dátum úmrtia:", "LabelDefaultScreen": "Predvolená obrazovka:", "LabelDiscNumber": "Číslo disku:", "LabelDisplayLanguage": "Jazyk rozhrania:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", "LabelDisplayOrder": "Poradie zobrazenia:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "E-mailová adresa:", - "LabelEndDate": "End date:", "LabelEpisodeNumber": "Číslo epizódy:", "LabelFont": "Písmo:", - "LabelHomeNetworkQuality": "Home network quality:", "LabelHomeScreenSectionValue": "Sekcia domácej obrazovky {0}:", "LabelImageType": "Typ obrázku:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", "LabelKeep:": "Ponechať:", "LabelKeepUpTo": "Ponechať najviac:", "LabelLanguage": "Jazyk:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelMaxChromecastBitrate": "Maximálny dátový tok pre Chromecast:", "LabelMetadataDownloadLanguage": "Preferovaný jazyk:", "LabelName": "Meno:", @@ -357,55 +200,32 @@ "LabelOriginalAspectRatio": "Pôvodný pomer strán:", "LabelOriginalTitle": "Pôvodný názov:", "LabelOverview": "Prehľad:", - "LabelParentNumber": "Parent number:", "LabelParentalRating": "Rodičovské hodnotenie", "LabelPath": "Cesta:", "LabelPersonRole": "Úloha:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", "LabelPlaceOfBirth": "Miesto narodenia:", "LabelPlayDefaultAudioTrack": "Prehrať predvolenú zvukovú stopu bez ohľadu na jazyk", - "LabelPlaylist": "Playlist:", "LabelPreferredSubtitleLanguage": "Preferovaný jazyk titulkov:", "LabelProfile": "Profil:", "LabelQuality": "Kvalita:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", "LabelReleaseDate": "Dátum vydania:", "LabelRuntimeMinutes": "Dĺžka (minúty):", "LabelScreensaver": "Šetrič obrazokvy:", "LabelSeasonNumber": "Číslo sezóny:", - "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.", "LabelShortOverview": "Krátky prehľad:", - "LabelSkin": "Skin:", "LabelSkipBackLength": "Dĺžka skoku dozadu:", "LabelSkipForwardLength": "Dĺžka skoku dopredu:", "LabelSortBy": "Zoradiť podľa:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", "LabelSoundEffects": "Zvukové efekty:", "LabelSource": "Zdroj:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", "LabelSubtitles": "Titulky:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", "LabelTextBackgroundColor": "Farba pozadia textu:", "LabelTextColor": "Farba textu:", "LabelTextSize": "Veľkosť textu:", - "LabelTheme": "Theme:", "LabelTitle": "Názov:", "LabelTrackNumber": "Číslo stopy:", "LabelType": "Typ:", "LabelVersion": "Verzia:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", "LabelWindowBackgroundColor": "Farba pozadia textu:", "LabelYear": "Rok:", "Large": "Veľké", @@ -413,45 +233,19 @@ "LearnHowYouCanContribute": "Zistite ako môžete prispieť.", "LearnMore": "Zistiť viac", "Like": "Páči sa mi to", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Naživo", "LiveBroadcasts": "Živé vysielania", "LiveTV": "Živý TV prenos", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", "LiveTvRequiresUnlock": "Živá TV vyžaduje aktívne predplatné Jellyfin Premiere.", - "Logo": "Logo", "ManageRecording": "Spravovať nahrávanie", "MarkPlayed": "Označiť ako prehrané", "MarkUnplayed": "Označiť ako neprehrané", "MarkWatched": "Označiť ako prehrané", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", "Medium": "Stredné", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", "MessageAreYouSureDeleteSubtitles": "Ste si istý, že chcete zmazať súbor s titulkami?", "MessageConfirmRecordingCancellation": "Zrušiť nahrávanie?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "Položka uložená.", "MessageItemsAdded": "Položky pridané.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", "MinutesAfter": "minút po", "MinutesBefore": "minút pred", "Mobile": "Mobil / Tablet", @@ -463,7 +257,6 @@ "MySubtitles": "Moje titulky", "Name": "Meno", "NewCollection": "Nová zbierka", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "Príklad: Kolekcia Star Wars", "NewEpisodes": "Nové epizódy", "NewEpisodesOnly": "Iba nové epizódy", @@ -473,14 +266,11 @@ "NoItemsFound": "Žiadne výsledky.", "NoSubtitleSearchResultsFound": "Žiadne výsledky.", "NoSubtitles": "Žiadne titulky", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", "None": "Žiadne", "Normal": "Normálne", - "Off": "Off", "OneChannel": "Jeden kanál", "OnlyForcedSubtitles": "Iba vynútené titulky", "OnlyForcedSubtitlesHelp": "Budú zobrazené iba titulky označené ako vynútené.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Otvoriť", "OptionNew": "Nové...", "Original": "Originál", @@ -495,55 +285,33 @@ "Photos": "Fotky", "PlaceFavoriteChannelsAtBeginning": "Umiestniť obľúbené kanály na začiatok", "Play": "Prehrať", - "PlayAllFromHere": "Play all from here", "PlayCount": "Počet prehraní", "PlayFromBeginning": "Prehrať od začiatku", "PlayNext": "Prehrať ďalšie", "PlayNextEpisodeAutomatically": "Automaticky prehrať ďalšiu epizódu", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Prehrané", - "Playlists": "Playlists", "PleaseEnterNameOrId": "Zadajte meno alebo externé ID prosím.", "PleaseRestartServerName": "Prosím reštartujte Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", "PleaseSelectTwoItems": "Vyberte prosím aspoň dve položky.", "Premiere": "Premiéra", "Premieres": "Premiéry", "Previous": "Predchádzajúce", - "Primary": "Primary", "PrivacyPolicy": "Zásady ochrany osobných údajov", "Producer": "Producent", "ProductionLocations": "Miesta produkcie", "Programs": "Programy", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", "Quality": "Kvalita", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", "RecentlyWatched": "Nedávno pozreté", - "Record": "Record", - "RecordSeries": "Record series", "RecordingCancelled": "Nahrávanie zrušené.", "RecordingScheduled": "Plán nahrávania.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "Obnoviť", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", "RefreshMetadata": "Obnoviť metadáta", - "RefreshQueued": "Refresh queued.", "Reject": "Odmietnuť", "ReleaseDate": "Dátum vydania", - "RemoveDownload": "Remove download", "RemoveFromCollection": "Odobrať zo zbierky", - "RemoveFromPlaylist": "Remove from playlist", "RemovingFromDevice": "Odstraňuje sa zo zariadenia", "Repeat": "Opakovať", "RepeatAll": "Opakovať všetko", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", "RepeatOne": "Opakovať jedno", "ReplaceAllMetadata": "Nahradiť všetky metadáta", "ReplaceExistingImages": "Nahradiť existujúce obrázky", @@ -551,11 +319,9 @@ "ResumeAt": "Pokračovať od {0}", "Retry": "Skúsiť znova", "RunAtStartup": "Spustiť pri štarte", - "Runtime": "Runtime", "Saturday": "Sobota", "Save": "Uložiť", "ScanForNewAndUpdatedFiles": "Hľadať nové a aktualizované súbory", - "Schedule": "Schedule", "Screenshot": "Snímka obrazovky", "Screenshots": "Snímky obrazovky", "Search": "Hľadať", @@ -563,93 +329,50 @@ "SearchForMissingMetadata": "Hľadať chýbajúce metadáta", "SearchForSubtitles": "Hľadať titulky", "SearchResults": "Výsledky vyhľadávania", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", "SeriesSettings": "Nastavenia série", - "SeriesYearToPresent": "{0} - Present", "ServerNameIsRestarting": "Jellyfin Server - {0} sa reštartuje.", "ServerNameIsShuttingDown": "Jellyfin Server - {0} sa vypína.", "ServerUpdateNeeded": "Tento Jellyfin server treba aktualizovať. Najnovšiu verziu nájdete na {0}", "Settings": "Nastavenia", "SettingsSaved": "Nastavenia uložené.", "Share": "Zdieľať", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", "ShowYear": "Zobraz rok", "Shows": "Seriály", "Shuffle": "Zamiešať", "SkipEpisodesAlreadyInMyLibrary": "Nenahrávať epizódy, ktoré už sú v mojej knižnici", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", "Small": "Malé", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", "Songs": "Skladby", "Sort": "Zoradiť", "SortByValue": "Zoradiť podľa {0}", "SortChannelsBy": "Zoradiť kanály podľa:", - "SortName": "Sort name", "Sports": "Športy", - "StatsForNerds": "Stats for nerds", "StopRecording": "Zastaviť nahrávanie", "Studios": "Štúdiá", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", "SubtitleCodecNotSupported": "Formát titulkov nie je podporovaný", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Titulky", "Suggestions": "Návrhy", "Sunday": "Nedeľa", - "Sync": "Sync", "SyncJobItemStatusCancelled": "Zrušené", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", "SyncJobItemStatusRemovedFromDevice": "Odstránené zo zariadenia", "SyncJobItemStatusSynced": "Stiahnuté", "SyncJobItemStatusSyncedMarkForRemoval": "Odstraňuje sa zo zariadenia", "SyncJobItemStatusTransferring": "Prenáša sa", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", "TermsOfUse": "Podmienky použitia", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Štvrtok", "TrackCount": "{0} stôp", "Trailer": "Ukážka", "Trailers": "Ukážky", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Utorok", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", "Unplayed": "Neprehrané", "Unrated": "Nehodnotené", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", "Up": "Hore", "Upload": "Nahrať", "ValueAlbumCount": "{0} albumov", "ValueDiscNumber": "Disk {0}", "ValueEpisodeCount": "{0} epizód", "ValueGameCount": "{0} hier", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmov", "ValueMusicVideoCount": "{0} hudobných videí", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 epizóda", "ValueOneGame": "1 hra", "ValueOneItem": "1 položka", @@ -662,19 +385,12 @@ "ValueSongCount": "{0} skladieb", "ValueSpecialEpisodeName": "Špeciál - {0}", "Vertical": "Vertikálne", - "VideoBitDepthNotSupported": "Video bit depth not supported", "VideoCodecNotSupported": "Video kodek nie je podporovaný", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", "VideoProfileNotSupported": "Video profil nie je podporovaný", - "VideoRange": "Video range", "VideoResolutionNotSupported": "Nepodporované rozlíšenie videa", "ViewAlbum": "Zobraziť album", "ViewArtist": "Zobraziť umelca", "VoiceInput": "Hlasový vstup", - "Watched": "Watched", "Wednesday": "Streda", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", "Yes": "Áno" } diff --git a/src/bower_components/emby-webcomponents/strings/sl-si.json b/src/bower_components/emby-webcomponents/strings/sl-si.json index 5b96b3ed82..4443a541a7 100644 --- a/src/bower_components/emby-webcomponents/strings/sl-si.json +++ b/src/bower_components/emby-webcomponents/strings/sl-si.json @@ -1,680 +1,11 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", - "ButtonCancel": "Cancel", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "Uporaba te funkcionalnosti zahteva aktivno Jellyfin Premiere narocnino.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "Dodaj v Zbirko", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "Izvajalci:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", "LabelContentType": "Tip vsebine:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Drzava:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Jezik:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", "LabelQuality": "Kvaliteta:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", - "Save": "Save", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", "Settings": "Nastavitve", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/sv.json b/src/bower_components/emby-webcomponents/strings/sv.json index ee158a65fb..0458bd6436 100644 --- a/src/bower_components/emby-webcomponents/strings/sv.json +++ b/src/bower_components/emby-webcomponents/strings/sv.json @@ -1,5 +1,4 @@ { - "Absolute": "Absolute", "Accept": "Acceptera", "AccessRestrictedTryAgainLater": "Åtkomst är begränsad. Försök igen senare.", "Actor": "Skådespelare", @@ -29,7 +28,6 @@ "Art": "Grafik", "Artists": "Artister", "AsManyAsPossible": "Så många som möjligt", - "Ascending": "Ascending", "AspectRatio": "Bildförhållande", "AttributeNew": "Ny", "AudioBitDepthNotSupported": "Ljudets bitdjup stöds inte", @@ -38,7 +36,6 @@ "AudioCodecNotSupported": "Ljud codec stöds inte", "AudioProfileNotSupported": "Ljudprofil stöds inte", "AudioSampleRateNotSupported": "Ljudsamplingrate stöds inte", - "Auto": "Auto", "AutoBasedOnLanguageSetting": "Automatisk (baserad på språkinställning)", "AutomaticallyConvertNewContent": "Konvertera nytt innehåll automatiskt", "AutomaticallyConvertNewContentHelp": "Nytt innehåll till den här mappen kommer automatiskt att konverteras.", @@ -55,7 +52,6 @@ "BurnSubtitlesHelp": "Avgör ifall servern ska \"bränna in\" undertexterna under videokonverteringen, beroende på undertextsformatet. Att undvika inbränning av undertexter kommer att förbättra prestandan på servern. Välj Auto för att bränna image-baserade formats (ex. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA undertexter.", "ButtonCancel": "Avbryt", "ButtonGotIt": "Ok", - "ButtonOk": "Ok", "ButtonPlayOneMinute": "Spela en minut", "ButtonRestart": "Starta om", "ButtonRestorePreviousPurchase": "Återställ köp", @@ -72,9 +68,6 @@ "CinemaModeFeatureDescription": "Bioläget ger dig en bioupplevelse med trailers och anpassade intros före varje film.", "CloudSyncFeatureDescription": "Synka din media till molnet för lätttillgängligt backup, arkivering och konvertering.", "Collections": "Samlingar", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", "CommunityRating": "Användaromdöme", "Composer": "Kompositör", "ConfigureDateAdded": "Konfigurera hur tillagt datum bestäms i Jellyfin servern under Biblioteksinställningar", @@ -92,10 +85,8 @@ "ContinueWatching": "Fortsätt titta på", "Continuing": "Pågående", "Convert": "Konvertera", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", "ConvertUnwatchedVideosOnly": "Konvertera endast osedda videos", "ConvertUnwatchedVideosOnlyHelp": "Endast osedda videos kommer att konverteras.", - "ConvertingDots": "Converting...", "Countries": "Länder", "CriticRating": "Kritikerbetyg", "DateAdded": "Inlagd den", @@ -107,9 +98,7 @@ "Delete": "Ta bort", "DeleteMedia": "Ta bort media", "Depressed": "Nedsänkt", - "Descending": "Descending", "Desktop": "Skrivbord", - "DirectPlayError": "Direct play error", "DirectPlaying": "Direktuppspelning", "DirectStreamHelp1": "Innehållet är kompatibelt med enheten vad gäller upplösning och mediatyp (H.264, AC3, etc.) men det är en inkompatibel filkontainer (.mkv, .avi, .wmv etc.). Video-filen kommer att packas om live innan strömningen startar till enheten.", "DirectStreamHelp2": "Direktströmning av en fil använder väldigt lite resurser av CPU'n utan att bildkvaliten försämras.", @@ -129,7 +118,6 @@ "DoNotRecord": "Spela inte in", "Down": "Ner", "Download": "Ladda ned", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "Nedladdade", "Downloading": "Laddar ner", "DownloadingDots": "Laddar ner...", @@ -163,12 +151,10 @@ "ErrorAddingGuestAccount2": "Om du fortfarande upplever problem, vänligen skicka ett mail till {0}, och inkludera din emailadress tillsammans med deras.", "ErrorAddingJellyfinConnectAccount1": "Det gick inte att lägga till ditt Jellyfin Connect-konto. Har du ett Jellyfin Connect-konto? Du kan skapa ett på {0}", "ErrorAddingJellyfinConnectAccount2": "Om du fortfarande upplever problem, vänligen skicka ett mail till {0} från emailadressen som är kopplat till Jellyfin-kontot.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", "ErrorDeletingItem": "Det gick inte att ta bort det här objektet från Jellyfin-servern. Kontrollera att Jellyfin-servern har skrivrättigheter till media-mappen och försök igen.", "ErrorReachingJellyfinConnect": "Ett fel uppstod när Jellyfin Connect försökte nås. Se till att du har en aktiv internetuppkoppling och försök igen.", "ErrorRemovingJellyfinConnectAccount": "Ett fel uppstod när Jellyfin Connect-kontot försökte tas bort. Se till att du har en aktiv internetuppkoppling och försök igen.", "ExtraLarge": "Extra stor", - "Extras": "Extras", "Favorite": "Favorit", "Favorites": "Favoriter", "FeatureRequiresJellyfinPremiere": "Den här funktionen kräver en aktiv Jellyfin Premium prenumeration.", @@ -177,17 +163,14 @@ "Fill": "Fyll", "Filters": "Filter", "Folders": "Mappar", - "FormatValue": "Format: {0}", "FreeAppsFeatureDescription": "Få fri tillgång till Jellyfin appar för dina enheter.", "Friday": "Fredag", - "GenreValue": "Genre: {0}", "Genres": "Genrer", "GenresValue": "Genrer: {0}", "GroupBySeries": "Gruppera efter serie", "GroupVersions": "Gruppera versioner", "GuestStar": "Gästmedverkande", "GuestUserNotFound": "Användaren kunde inte hittas. Se till så att namnet är korrekt och försök igen, eller pröva att ange emailadressen istället.", - "Guide": "Guide", "HDPrograms": "HD-program", "HeaderActiveRecordings": "Pågående inspelningar", "HeaderAddToCollection": "Lägg till samling", @@ -195,7 +178,6 @@ "HeaderAddUpdateImage": "Lägg till/uppdatera bild", "HeaderAlbumArtists": "Albumartister", "HeaderAlreadyPaid": "Redan betalat?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "Ljudböcker", "HeaderAudioSettings": "Ljudinställningar", "HeaderBecomeProjectSupporter": "Skaffa Jellyfin Premium", @@ -208,7 +190,6 @@ "HeaderContinueListening": "Fortsätt lyssna på", "HeaderContinueWatching": "Fortsätt kolla på", "HeaderConvertYourRecordings": "Konvertera dina inspelningar", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "Radera objekt", "HeaderDeleteItems": "Ta bort objekt", "HeaderDisplaySettings": "Visningsinställningar", @@ -219,11 +200,9 @@ "HeaderExternalIds": "Externa ID'n:", "HeaderFavoriteAlbums": "Favoritalbum", "HeaderFavoriteArtists": "Favoritartister", - "HeaderFavoriteCollections": "Favorite Collections", "HeaderFavoriteEpisodes": "Favoritavsnitt", "HeaderFavoriteGames": "Favoritspel", "HeaderFavoriteMovies": "Favoritfilmer", - "HeaderFavoritePlaylists": "Favorite Playlists", "HeaderFavoriteShows": "Favoritserier", "HeaderFavoriteSongs": "Favoritlåtar", "HeaderFavoriteVideos": "Favoritvideos", @@ -269,7 +248,6 @@ "HeaderSeriesStatus": "Seriestatus", "HeaderSpecialEpisodeInfo": "Information om specialavsnitt", "HeaderStartNow": "Starta nu", - "HeaderStopRecording": "Stop Recording", "HeaderSubtitleAppearance": "Undertextutseende", "HeaderSubtitleSettings": "Inställningar för undertexter", "HeaderSyncRequiresSub": "Nedladdning kräver en aktiv Jellyfin Premiere-prenumeration.", @@ -306,7 +284,6 @@ "LabelAirsAfterSeason": "Sänds efter säsong:", "LabelAirsBeforeEpisode": "Sänds före avsnitt:", "LabelAirsBeforeSeason": "Sänds före säsong:", - "LabelAlbum": "Album:", "LabelAlbumArtists": "Albumartist:", "LabelArtists": "Artister:", "LabelArtistsHelp": "Separera med ; vid flera", @@ -387,7 +364,6 @@ "LabelSoundEffects": "Ljudeffekter:", "LabelSource": "Källa:", "LabelStartWhenPossible": "Starta när det är möjligt:", - "LabelStatus": "Status:", "LabelStopWhenPossible": "Stoppa när det är möjligt:", "LabelSubtitlePlaybackMode": "Undertextläge:", "LabelSubtitles": "Undertexter:", @@ -403,8 +379,6 @@ "LabelTitle": "Titel:", "LabelTrackNumber": "Spår nr", "LabelType": "Typ:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", "LabelWebsite": "Hemsida:", "LabelWindowBackgroundColor": "Bakgrundsfärg för text:", "LabelYear": "År:", @@ -415,7 +389,6 @@ "Like": "Gilla", "LinksValue": "Länkar: {0}", "List": "Lista", - "Live": "Live", "LiveBroadcasts": "Livesändningar", "LiveTV": "Live-TV", "LiveTvFeatureDescription": "Strömma Live TV till vilken Jellyfin app du vill, med en kompatibel TV-tuner enhet som är installerad på din Jellyfin Server.", @@ -426,7 +399,6 @@ "MarkUnplayed": "Markera som ospelad", "MarkWatched": "Markera som visad", "MediaIsBeingConverted": "Media håller på att konverteras till ett format som är kompatibelt med enheten som ska användas.", - "Medium": "Medium", "Menu": "Meny", "MessageActiveSubscriptionRequiredSeriesRecordings": "Ett aktivt Jellyfin Premium-medlemskap krävs för att skapa automatiska TV-serieinspelningar.", "MessageAreYouSureDeleteSubtitles": "Är du säker på att du vill radera den här undertextfilen?", @@ -434,8 +406,6 @@ "MessageDownloadQueued": "Nedladdning köad.", "MessageFileReadError": "Ett fel uppstod när filen lästes in. Var god försök igen.", "MessageIfYouBlockedVoice": "Om du nekade tillgång för röståtkomst till appen så behöver du konfigurerara om innan du försöker igen.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", "MessageInvitationSentToNewUser": "Ett mail har skickats till {0} med en inbjudan att registrera sig med Jellyfin.", "MessageInvitationSentToUser": "Ett mail har skickats till {0}, med en bekfräftelse för att acceptera din delade inbjudan.", "MessageItemSaved": "Objektet har sparats.", @@ -475,7 +445,6 @@ "NoSubtitles": "Inga undertexter", "NoSubtitlesHelp": "Undertexter kommer inte visas per standard. Det kan fortfarande sättas på manuellt under uppspelning.", "None": "Inga", - "Normal": "Normal", "Off": "Av", "OneChannel": "En kanal", "OnlyForcedSubtitles": "Endast tvingande undertexter", @@ -483,7 +452,6 @@ "OnlyImageFormats": "Endast image-format (VOBSUB, PGS, SUB/IDX, etc.)", "Open": "Öppna", "OptionNew": "Ny...", - "Original": "Original", "OriginalAirDateValue": "Ursprungligt sändningsdatum: {0}", "Overview": "Översikt", "PackageInstallCancelled": "Installationen av {0} avbröts.", @@ -503,8 +471,6 @@ "PlaybackErrorNoCompatibleStream": "Inga kompatibla strömmar finns att tillgå. Vänligen försök igen senare eller kontakta din systemadministratör för mer detaljer.", "PlaybackErrorNotAllowed": "Du har inte tillgång att spela upp det här innehållet. Kontakta din systemadministratör för mer detaljer.", "PlaybackErrorPlaceHolder": "Sätt in skivan för att kunna spela upp den här videon.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "Visad", "Playlists": "Spellistor", "PleaseEnterNameOrId": "Ange ett namn eller externt id.", @@ -565,7 +531,6 @@ "SearchResults": "Sökresultat", "SecondaryAudioNotSupported": "Ljudspårs-switching stöds inte", "SeriesCancelled": "Serieinspelningen har avbokats.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "Serieinspelning schemalagd.", "SeriesSettings": "Serieinställningar", "SeriesYearToPresent": "{0} - nu", @@ -584,8 +549,6 @@ "SkipEpisodesAlreadyInMyLibraryHelp": "Avsnitt kommer att jämföras med säsongs- och avsnittsnummer, när det finns.", "Small": "Liten", "SmallCaps": "Små bokstäver", - "Smaller": "Smaller", - "Smart": "Smart", "SmartSubtitlesHelp": "Undertexter som matchar förvalsspråket kommer visas när ljudspåret är på ett annat språk.", "Songs": "Låtar", "Sort": "Sortera", @@ -593,14 +556,11 @@ "SortChannelsBy": "Sortera kanaler efter:", "SortName": "Sorteringstitel", "Sports": "Sport", - "StatsForNerds": "Stats for nerds", "StopRecording": "Avbryt inspelning", "Studios": "Studior", "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Dessa inställningar gäller också för alla uppspelningar på Chromecast som startas av den här enheten.", "SubtitleAppearanceSettingsDisclaimer": "Dessa inställningar kommer inte gälla för grafiska undertexter (PGS, DVD, etc), eller undertexter som har en egen inbäddad stil (ASS/SSA).", "SubtitleCodecNotSupported": "Undertextsformatet stöds inte", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "Undertexter", "Suggestions": "Förslag", "Sunday": "Söndag", @@ -616,8 +576,6 @@ "SyncJobItemStatusTransferring": "Överför", "SyncUnwatchedVideosOnly": "Ladda ned endast osedda videor", "SyncUnwatchedVideosOnlyHelp": "Endast osedda videor kommer att laddas ned, och videorna kommer tas bort från enheten när de har setts.", - "SyncingDots": "Syncing...", - "TV": "TV", "Tags": "Etiketter", "TagsValue": "Etiketter: {0}", "TermsOfUse": "Användarvillkor", @@ -628,13 +586,10 @@ "Thumb": "Miniatyr", "Thursday": "Torsdag", "TrackCount": "{0} spår", - "Trailer": "Trailer", - "Trailers": "Trailers", "Transcoding": "Omkodning", "TryMultiSelect": "Pröva flervalsmarkering", "TryMultiSelectMessage": "För att redigera flera mediaobjekt, klicka och håll på ett omslag och markera sedan så många du vill. Pröva nu!", "Tuesday": "Tisdag", - "Uniform": "Uniform", "UnlockGuide": "Lås upp guide", "Unplayed": "Inte spelad", "Unrated": "Ej klassad", @@ -646,10 +601,8 @@ "ValueDiscNumber": "Skiva {0}", "ValueEpisodeCount": "{0} avsnitt", "ValueGameCount": "{0} spel", - "ValueMinutes": "{0} min", "ValueMovieCount": "{0} filmer", "ValueMusicVideoCount": "{0} musikvideor", - "ValueOneAlbum": "1 album", "ValueOneEpisode": "1 avsnitt", "ValueOneGame": "1 spel", "ValueOneItem": "1 objekt", @@ -667,7 +620,6 @@ "VideoFramerateNotSupported": "Videons framerate stöds inte", "VideoLevelNotSupported": "Videonivån stöds inte", "VideoProfileNotSupported": "Videoprofilen stöds inte", - "VideoRange": "Video range", "VideoResolutionNotSupported": "Bildupplösning stöds inte", "ViewAlbum": "Bläddra album", "ViewArtist": "Bläddra artist", diff --git a/src/bower_components/emby-webcomponents/strings/tr.json b/src/bower_components/emby-webcomponents/strings/tr.json index f224047293..13be436381 100644 --- a/src/bower_components/emby-webcomponents/strings/tr.json +++ b/src/bower_components/emby-webcomponents/strings/tr.json @@ -1,680 +1,32 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", "Add": "Ekle", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", "AttributeNew": "Yeni", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "İptal", - "ButtonGotIt": "Got It", "ButtonOk": "Tamam", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "Tekrar Başlat", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "Devam ediyor", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "Günler", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "Sil", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "Düzenle", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "Sonlandı", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "Cuma", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "Tarihi Seçin", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Ülke:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Dil:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", "LabelName": "İsim:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", "LabelType": "Tür:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", "LabelYear": "Yıl:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", "Live": "Canlı", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Pazartesi", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", "NewCollection": "Yeni Koleksiyon", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Ebeveyn değeri", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "Oynat", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "Kayıt", - "RecordSeries": "Record series", "RecordingCancelled": "Kayıt iptal edildi.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "Cumartesi", "Save": "Kaydet", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "Pazar", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "Perşembe", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "Salı", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "Çarşamba", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/uk.json b/src/bower_components/emby-webcomponents/strings/uk.json index 5e64cf97fe..3917d4c47d 100644 --- a/src/bower_components/emby-webcomponents/strings/uk.json +++ b/src/bower_components/emby-webcomponents/strings/uk.json @@ -1,647 +1,17 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", - "Add": "Add", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Скасувати", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "Не подобається", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "Улюблене", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", "LabelBirthDate": "Дата народження:", "LabelBirthYear": "Рік народження:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Країна:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", "LabelDeathDate": "Дата смерті:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Мова:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "LabelName": "Name:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", "LabelPath": "Шлях:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", "Like": "Подобається", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", - "Monday": "Monday", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", - "Saturday": "Saturday", "Save": "Зберігти", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", "Settings": "Налаштування", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", - "Sunday": "Sunday", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", "ValueAlbumCount": "{0} альбомів", "ValueDiscNumber": "Диск {0}", "ValueEpisodeCount": "{0} епізодів", @@ -652,29 +22,10 @@ "ValueOneAlbum": "1 альбом", "ValueOneEpisode": "1 епізод", "ValueOneGame": "1 гра", - "ValueOneItem": "1 item", "ValueOneMovie": "1 фільм", "ValueOneMusicVideo": "1 музичний кліп", "ValueOneSeries": "1 серія", "ValueOneSong": "1 пісня", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} серій", "ValueSongCount": "{0} пісень", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/vi.json b/src/bower_components/emby-webcomponents/strings/vi.json index 2db6e383b8..68711df23f 100644 --- a/src/bower_components/emby-webcomponents/strings/vi.json +++ b/src/bower_components/emby-webcomponents/strings/vi.json @@ -1,680 +1,12 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", "Add": "Thêm", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Thoát", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", - "Continuing": "Continuing", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", - "Days": "Days", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "Delete": "Delete", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", - "Edit": "Edit", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", - "Ended": "Ended", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", - "Friday": "Friday", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", - "HeaderSelectDate": "Select Date", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", - "Help": "Help", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", "LabelCountry": "Quốc gia:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "Ngôn ngữ", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", "LabelName": "Tên:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "Thứ Hai", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", - "NewCollection": "New Collection", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "NewCollectionNameExample": "Example: Star Wars Collection", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "Play": "Play", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", - "Record": "Record", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", - "Refresh": "Refresh", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "Thứ Bảy", "Save": "Lưu", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", - "SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "SearchForSubtitles": "Search for Subtitles", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "Chủ Nhật", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", - "Thursday": "Thursday", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "Tuesday": "Tuesday", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", - "Wednesday": "Wednesday", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/zh-cn.json b/src/bower_components/emby-webcomponents/strings/zh-cn.json index fe7efc1949..0bd480d039 100644 --- a/src/bower_components/emby-webcomponents/strings/zh-cn.json +++ b/src/bower_components/emby-webcomponents/strings/zh-cn.json @@ -1,5 +1,4 @@ { - "Absolute": "Absolute", "Accept": "接受", "AccessRestrictedTryAgainLater": "访问目前受限。请稍后再试。", "Actor": "演员", @@ -12,7 +11,6 @@ "AirDate": "播出日期", "Aired": "已发布", "Albums": "专辑", - "All": "All", "AllChannels": "所有频道", "AllComplexFormats": "所有复杂的格式(ASS, SSA, VOBSUB, PGS, SUB/IDX 等)", "AllEpisodes": "所有集", @@ -21,23 +19,14 @@ "AllowSeasonalThemesHelp": "如果启用,当季节性主题使用时会覆盖你的主题设置。", "AlwaysPlaySubtitles": "总是显示字幕", "AlwaysPlaySubtitlesHelp": "无论音频为何种语言,都将加载与语言偏好匹配的字幕。", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", "Anytime": "任何时间", "AroundTime": "{0} 左右", - "Art": "Art", "Artists": "艺术家", "AsManyAsPossible": "尽可能多", "Ascending": "升序", - "AspectRatio": "Aspect ratio", "AttributeNew": "新增", - "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "音频比特率不受支持", - "AudioChannelsNotSupported": "Audio channels not supported", "AudioCodecNotSupported": "音频编码不受支持", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", "Auto": "自动", "AutoBasedOnLanguageSetting": "自动(取决于语言设置)", "AutomaticallyConvertNewContent": "自动转换新内容", @@ -47,11 +36,8 @@ "Backdrop": "背景", "Backdrops": "背景", "Banner": "横幅", - "BestFit": "Best fit", "BirthLocation": "出生地", "Books": "书籍", - "Box": "Box", - "BoxRear": "Box (rear)", "BurnSubtitlesHelp": "根据字幕格式确定服务器在转换视频时是否应烧录字幕。避免烧录字幕会提高服务器性能。选择“自动”以烧录基于图像的字幕格式(如 VOBSUB, PGS, SUB/IDX 等)和一些复杂的 ASS/SSA 字幕。", "ButtonCancel": "取消", "ButtonGotIt": "知道了", @@ -67,35 +53,22 @@ "CancelSeries": "取消系列", "Categories": "分类", "ChannelNameOnly": "只在频道 {0}", - "ChannelNumber": "Channel number", "CinemaModeConfigurationHelp": "影院模式直接为您的客厅带来剧场级体验,同时还可以播放预告片和自定义介绍。", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CloudSyncFeatureDescription": "同步你的媒体到云以便于备份,存档和转换。", "Collections": "收藏", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", "CommunityRating": "公众评分", "Composer": "作曲家", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", "ConfirmDeleteImage": "删除图片?", - "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?", "ConfirmDeletion": "确认删除", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", "ConfirmRemoveDownload": "删除下载?", "Connect": "连接", "ContainerBitrateExceedsLimit": "媒体比特率超过限制。", - "ContainerNotSupported": "Container not supported", "Continue": "继续", - "ContinueInSecondsValue": "Continue in {0} seconds.", "ContinueWatching": "继续观看", "Continuing": "继续", "Convert": "转换", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", "ConvertUnwatchedVideosOnly": "仅转换未观看的视频", "ConvertUnwatchedVideosOnlyHelp": "只有未观看的视频会被转换。", - "ConvertingDots": "Converting...", "Countries": "国家", "CriticRating": "影评人评分", "DateAdded": "加入日期", @@ -106,17 +79,13 @@ "DefaultSubtitlesHelp": "字幕将基于内嵌元数据中的“默认”标志和“强制”标志来载入。当多个选项可用时,将根据语言偏好决定。", "Delete": "删除", "DeleteMedia": "删除媒体", - "Depressed": "Depressed", "Descending": "降序", "Desktop": "桌面", "DirectPlayError": "直接播放发生错误", "DirectPlaying": "直接播放", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", "DirectStreamHelp2": "直接串流一个文件仅仅会占用非常少的处理能力并且视频的品质不会有任何损失。", "DirectStreaming": "直接串流", "Director": "导演", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", "Disc": "光盘", "Disconnect": "断开连接", "Dislike": "不喜欢", @@ -125,19 +94,15 @@ "DisplayInOtherHomeScreenSections": "在“最新的媒体”和“继续观看“等主屏幕模块中显示", "DisplayMissingEpisodesWithinSeasons": "显示每季里缺少的剧集", "DisplayMissingEpisodesWithinSeasonsHelp": "必须在 Jellyfin 服务器的 TV 媒体库设置中也启用该功能。", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", "DoNotRecord": "不录制", "Down": "下", "Download": "下载", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", "Downloaded": "已下载", "Downloading": "下载中", "DownloadingDots": "正在下载...", "Downloads": "下载", "DownloadsValue": "{0} 下载", "DropShadow": "阴影", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "编辑", "EditImages": "修改图片", "EditMetadata": "编辑元数据", @@ -145,7 +110,6 @@ "EnableBackdrops": "启用背景图", "EnableBackdropsHelp": "如果启用,当浏览媒体库时背景图将作为一些页面的背景显示。", "EnableCinemaMode": "启用影院模式", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", "EnableDisplayMirroring": "开启显示镜像", "EnableExternalVideoPlayers": "启用外部播放器", "EnableExternalVideoPlayersHelp": "当你开始播放视频时,将会显示一个外部播放器菜单。", @@ -159,56 +123,32 @@ "EndsAtValue": "结束于 {0}", "Episodes": "剧集", "Error": "错误", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", "ExtraLarge": "特大", "Extras": "额外", "Favorite": "我的最爱", "Favorites": "我的最爱", "FeatureRequiresJellyfinPremiere": "这项功能需要一个有效的 Jellyfin Premiere 订阅。", - "Features": "Features", "File": "文件", - "Fill": "Fill", "Filters": "筛选", "Folders": "文件夹", "FormatValue": "格式:{0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "星期五", - "GenreValue": "Genre: {0}", "Genres": "风格", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", "GuestStar": "特邀明星", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", "HDPrograms": "高清节目", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "加入收藏", "HeaderAddToPlaylist": "添加到播放列表", "HeaderAddUpdateImage": "添加/更新 图片", "HeaderAlbumArtists": "专辑艺术家", "HeaderAlreadyPaid": "已付款?", - "HeaderAppearsOn": "Appears On", "HeaderAudioBooks": "有声读物", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "获取 Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", "HeaderCinemaMode": "影院模式", "HeaderCloudSync": "云同步", "HeaderConfirmRecordingCancellation": "确认取消录制", "HeaderContinueListening": "继续听", "HeaderContinueWatching": "继续观看", "HeaderConvertYourRecordings": "转换您的录制", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "删除项目", "HeaderDeleteItems": "删除项目", "HeaderDisplaySettings": "显示设置", @@ -230,75 +170,52 @@ "HeaderFreeApps": "免费 Jellyfin 应用", "HeaderHomeScreen": "主屏幕", "HeaderIdentifyItemHelp": "输入一个或多个搜索条件。删除条件可得到更多搜索结果。", - "HeaderInvitationSent": "Invitation Sent", "HeaderJellyfinAccountAdded": "Jellyfin 账户已添加", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", "HeaderLatestChannelItems": "最新频道项目", "HeaderLatestChannelMedia": "最新频道项目", "HeaderLatestFrom": "最新的 {0}", "HeaderLatestMedia": "最新媒体", - "HeaderLatestRecordings": "Latest Recordings", "HeaderLearnMore": "了解更多", - "HeaderLibraryFolders": "Library Folders", "HeaderLibraryOrder": "媒体库顺序", "HeaderMetadataSettings": "元数据设置", - "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "我的设备", "HeaderMyMedia": "我的媒体", "HeaderMyMediaSmall": "我的媒体 (小)", "HeaderNewRecording": "新录制", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", "HeaderNextUp": "下一个", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", "HeaderOfflineDownloads": "离线媒体", "HeaderOfflineDownloadsDescription": "下载媒体到你的设备上以便于离线使用。", - "HeaderOnNow": "On Now", "HeaderPhotoAlbums": "相册", "HeaderPlayMyMedia": "播放我的媒体", - "HeaderPlayOn": "Play On", "HeaderPlaybackError": "播放错误", "HeaderRecordingOptions": "录制选项", "HeaderRemoteControl": "远程控制", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "请说些什么,比如...", "HeaderSecondsValue": "{0} 秒", "HeaderSelectDate": "选择日期", "HeaderSeriesOptions": "系列选项", - "HeaderSeriesStatus": "Series Status", "HeaderSpecialEpisodeInfo": "特别剧集信息", "HeaderStartNow": "现在开始", - "HeaderStopRecording": "Stop Recording", "HeaderSubtitleAppearance": "字幕外观", "HeaderSubtitleSettings": "字幕设置", "HeaderSyncRequiresSub": "下载需要一个有效的 Jellyfin Premiere 订阅。", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", "HeaderUnlockFeature": "解锁功能", "HeaderUploadImage": "上传图片", "HeaderVideoQuality": "视频质量", - "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "等待 Wifi 连接", "HeaderYouSaid": "您说了...", "Help": "帮助", "Hide": "隐藏", "HideWatchedContentFromLatestMedia": "从最新媒体中隐藏已观看的内容", "Home": "首页", - "Horizontal": "Horizontal", "HowDidYouPay": "你想如何付款?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", "IPurchasedThisApp": "我已购买此应用", "Identify": "识别", "Images": "图片", "ImdbRating": "IMDb 评分", "InstallingPackage": "正在安装 {0}", "InstantMix": "即时混音", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0} 项", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", "Kids": "儿童", "Label3DFormat": "3D格式:", "LabelAirDays": "播出日期:", @@ -310,7 +227,6 @@ "LabelAlbumArtists": "专辑作家:", "LabelArtists": "艺术家:", "LabelArtistsHelp": "独立多功能;", - "LabelAudio": "Audio:", "LabelAudioLanguagePreference": "首选音频语言:", "LabelBirthDate": "出生日期:", "LabelBirthYear": "出生年份:", @@ -334,7 +250,6 @@ "LabelDisplayLanguageHelp": "Jellyfin的翻译工作是一个不断推进的工程项目。", "LabelDisplayMode": "显示模式:", "LabelDisplayOrder": "显示顺序:", - "LabelDropImageHere": "Drop image here, or click to browse.", "LabelDropShadow": "阴影:", "LabelDynamicExternalId": "{0} Id:", "LabelEmailAddress": "邮箱地址:", @@ -345,9 +260,7 @@ "LabelHomeScreenSectionValue": "主屏幕模块{0}:", "LabelImageType": "图片类型:", "LabelInternetQuality": "网络质量:", - "LabelItemLimit": "Item limit:", "LabelKeep:": "保留:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "语言:", "LabelLockItemToPreventChanges": "锁定此项目防止改动", "LabelMaxChromecastBitrate": "最大 Chromecast 比特率:", @@ -361,7 +274,6 @@ "LabelParentalRating": "家长分级:", "LabelPath": "路径:", "LabelPersonRole": "角色:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", "LabelPlaceOfBirth": "出生地:", "LabelPlayDefaultAudioTrack": "播放默认音轨无论是什么语言", "LabelPlaylist": "播放列表:", @@ -375,8 +287,6 @@ "LabelRuntimeMinutes": "播放时长(分钟):", "LabelScreensaver": "屏幕保护:", "LabelSeasonNumber": "季号:", - "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.", "LabelShortOverview": "简介:", "LabelSkin": "皮肤:", "LabelSkipBackLength": "跳过长度:", @@ -404,7 +314,6 @@ "LabelTrackNumber": "音轨号码:", "LabelType": "类型:", "LabelVersion": "版本:", - "LabelVideo": "Video:", "LabelWebsite": "网站:", "LabelWindowBackgroundColor": "文本背景色:", "LabelYear": "年份:", @@ -413,41 +322,21 @@ "LearnHowYouCanContribute": "学习如何构建。", "LearnMore": "了解更多", "Like": "喜欢", - "LinksValue": "Links: {0}", "List": "列表", "Live": "直播", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", "LiveTvFeatureDescription": "通过一个安装在你的 Jellyfin 服务器上的受兼容的电视协调器来串流你的电视直播至任何其他 Jellyfin 应用程序。", "LiveTvRequiresUnlock": "电视直播需要一个有效的 Jellyfin Premiere 订阅。", - "Logo": "Logo", - "ManageRecording": "Manage recording", "MarkPlayed": "标为已播放", "MarkUnplayed": "标为未播放", "MarkWatched": "标记为已观看", "MediaIsBeingConverted": "媒体正在被转换成与正在播放该媒体的设备兼容的格式。", "Medium": "标准", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", "MessageAreYouSureDeleteSubtitles": "你确定希望删除此字幕文件?", "MessageConfirmRecordingCancellation": "取消录制?", "MessageDownloadQueued": "下载已列队。", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageItemSaved": "项目已保存。", "MessageItemsAdded": "项目已添加。", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", "MessageLeaveEmptyToInherit": "留空则继承父项或全局默认值设置。", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", "MessageToValidateSupporter": "如果你已经拥有一个有效的 Jellyfin Premiere 订阅,请确保你已经在你 Jellyfin 服务器控制台的“Jellyfin Premiere”选项中配置了你的 Jellyfin Premiere,你可以在 Jellyfin 服务器控制台主菜单中找到“Jellyfin Premiere”选项。", "MessageUnlockAppWithPurchaseOrSupporter": "通过一次性付费或一个有效的 Jellyfin Premiere 订阅来解锁这项功能。", "MessageUnlockAppWithSupporter": "通过一个有效的 Jellyfin Premiere 订阅来解锁这项功能。", @@ -476,7 +365,6 @@ "NoSubtitlesHelp": "字幕将默认不被加载,但你仍然可以在播放时手动打开字幕。", "None": "无", "Normal": "普通", - "Off": "Off", "OneChannel": "一个频道", "OnlyForcedSubtitles": "只显示强制字幕", "OnlyForcedSubtitlesHelp": "只有被标记为“强制”的字幕会被加载。", @@ -493,18 +381,11 @@ "People": "人物", "PerfectMatch": "最佳匹配", "Photos": "照片", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "播放", "PlayAllFromHere": "这里的全部内容都开始播放", "PlayCount": "播放次数", "PlayFromBeginning": "从头播放", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", "PlaybackErrorPlaceHolder": "请插入光盘以播放此视频。", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", "Played": "已播放", "Playlists": "播放列表", "PleaseEnterNameOrId": "请输入一个名称或一个外部ID。", @@ -512,26 +393,18 @@ "PleaseSelectDeviceToSyncTo": "请选择要下载的设备。", "PleaseSelectTwoItems": "请至少选择2个项目。", "Premiere": "首映", - "Premieres": "Premieres", "Previous": "上一个", "Primary": "封面图", - "PrivacyPolicy": "Privacy policy", "Producer": "制片人", "ProductionLocations": "产地", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", "Quality": "质量", "QueueAllFromHere": "这里的全部内容都加入队列", - "Raised": "Raised", "RecentlyWatched": "最近观看", "Record": "录制", "RecordSeries": "录制电视剧", "RecordingCancelled": "录制已取消。", "RecordingScheduled": "录制计划", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "刷新", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", "RefreshMetadata": "刷新元数据", "RefreshQueued": "列队已刷新。", "Reject": "拒绝", @@ -542,12 +415,10 @@ "RemovingFromDevice": "从设备移除中", "Repeat": "重播", "RepeatAll": "全部循环", - "RepeatEpisodes": "Repeat episodes", "RepeatMode": "循环模式", "RepeatOne": "单项循环", "ReplaceAllMetadata": "覆盖所有元数据", "ReplaceExistingImages": "替换现有图片", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", "ResumeAt": "恢复播放于{0}", "Retry": "重试", "RunAtStartup": "开机时启动", @@ -555,17 +426,13 @@ "Saturday": "星期六", "Save": "储存", "ScanForNewAndUpdatedFiles": "扫描新的和有修改的文件", - "Schedule": "Schedule", - "Screenshot": "Screenshot", "Screenshots": "截图", "Search": "搜索", "SearchForCollectionInternetMetadata": "在互联网上搜索媒体图像和资料", "SearchForMissingMetadata": "搜索缺少的元数据", "SearchForSubtitles": "搜索字幕", "SearchResults": "搜索结果", - "SecondaryAudioNotSupported": "Audio track switching not supported", "SeriesCancelled": "电视剧已取消", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "电视剧录制计划", "SeriesSettings": "系列设定", "SeriesYearToPresent": "{0} - 现在", @@ -575,16 +442,10 @@ "Settings": "设置", "SettingsSaved": "设置已保存。", "Share": "共享", - "ShowIndicatorsFor": "Show indicators for:", "ShowTitle": "显示标题", - "ShowYear": "Show year", - "Shows": "Shows", "Shuffle": "随机播放", "SkipEpisodesAlreadyInMyLibrary": "不录制我的媒体库里已存在的剧集", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", "Small": "小", - "SmallCaps": "Small caps", - "Smaller": "Smaller", "Smart": "智能模式", "SmartSubtitlesHelp": "当音频为外语时,将加载与语言偏好匹配的字幕。", "Songs": "歌曲", @@ -593,14 +454,10 @@ "SortChannelsBy": "频道排序方式:", "SortName": "排序名称", "Sports": "体育", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", "Studios": "工作室", "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "这些设定也会被应用于任何通过此设备发起的 Chromecast 播放。", "SubtitleAppearanceSettingsDisclaimer": "这些设置将不会应用于图形字幕(如 PGS,DVD 等),或者一些有着自己的内置式样的字幕(ASS/SSA)。", "SubtitleCodecNotSupported": "字幕格式不被支持", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "字幕", "Suggestions": "建议", "Sunday": "星期天", @@ -616,12 +473,8 @@ "SyncJobItemStatusTransferring": "传输中", "SyncUnwatchedVideosOnly": "仅下载未观看的视频", "SyncUnwatchedVideosOnlyHelp": "只有未观看的视频会被下载,并且已经观看过的视频会从该设备上移除。", - "SyncingDots": "Syncing...", "TV": "电视", "Tags": "标签", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", "ThemeSongs": "主题曲", "ThemeVideos": "主题视频", "TheseSettingsAffectSubtitlesOnThisDevice": "这些设置仅影响该设备的字幕显示", @@ -631,10 +484,7 @@ "Trailer": "预告片", "Trailers": "预告片", "Transcoding": "转码", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "星期二", - "Uniform": "Uniform", "UnlockGuide": "解锁指南", "Unplayed": "未播放", "Unrated": "未分级", @@ -652,23 +502,14 @@ "ValueOneAlbum": "1张专辑", "ValueOneEpisode": "1 集", "ValueOneGame": "1 个游戏", - "ValueOneItem": "1 item", "ValueOneMovie": "1 个电影", "ValueOneMusicVideo": "1个音乐视频", "ValueOneSeries": "1 个系列", "ValueOneSong": "1首歌", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} 个系列", "ValueSongCount": "{0} 首歌", "ValueSpecialEpisodeName": "特典 - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", "VideoCodecNotSupported": "视频编码不受支持", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", "ViewAlbum": "查看专辑", "ViewArtist": "查看艺术家", "VoiceInput": "语音输入", diff --git a/src/bower_components/emby-webcomponents/strings/zh-hk.json b/src/bower_components/emby-webcomponents/strings/zh-hk.json index 8cd9950b82..8de9a6ce13 100644 --- a/src/bower_components/emby-webcomponents/strings/zh-hk.json +++ b/src/bower_components/emby-webcomponents/strings/zh-hk.json @@ -1,680 +1,50 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", "Add": "新增", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", - "Advanced": "Advanced", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "取消", - "ButtonGotIt": "Got It", - "ButtonOk": "Ok", - "ButtonPlayOneMinute": "Play One Minute", "ButtonRestart": "重新啟動", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonTryAgain": "Try Again", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", - "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?", - "ConfirmDeletion": "Confirm Deletion", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "繼續", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "錄影日", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "删除", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", - "Dislike": "Dislike", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", - "Download": "Download", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "編輯", - "EditImages": "Edit images", - "EditMetadata": "Edit metadata", "EditSubtitles": "編輯字幕", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "完成", - "EndsAtValue": "Ends at {0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", - "Favorite": "Favorite", - "Favorites": "Favorites", - "FeatureRequiresJellyfinPremiere": "This feature requires an active Jellyfin Premiere subscription.", - "Features": "Features", - "File": "File", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "星期五", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", "HeaderAddToCollection": "添加到收藏庫", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", - "HeaderBecomeProjectSupporter": "Get Jellyfin Premiere", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", - "HeaderDeleteItem": "Delete Item", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", - "HeaderNewRecording": "New Recording", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", - "HeaderSaySomethingLike": "Say Something Like...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "選擇日期", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderYouSaid": "You Said...", "Help": "幫助", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", - "ItemCount": "{0} items", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", "LabelAirsAfterSeason": "已播放劇集季度:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelAirsBeforeSeason": "尚未播放劇集季度:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", "LabelArtists": "藝人:", "LabelArtistsHelp": "分開多重使用", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", - "LabelCollection": "Collection:", "LabelCommunityRating": "討論區評分", "LabelContentType": "內容類型:", - "LabelConvertTo": "Convert to:", "LabelCountry": "國家:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "語言:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", "LabelMetadataDownloadLanguage": "偏好下載語言:", "LabelName": "名稱:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", "LabelPath": "路徑:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelPlaylist": "Playlist:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", - "LabelRefreshMode": "Refresh mode:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", "LabelStatus": "狀態:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", - "Like": "Like", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", - "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Jellyfin Premiere subscription is required in order to create automated series recordings.", "MessageAreYouSureDeleteSubtitles": "您確定希望刪除此字幕文件?", - "MessageConfirmRecordingCancellation": "Cancel recording?", - "MessageDownloadQueued": "Download queued.", - "MessageFileReadError": "There was an error reading the file. Please try again.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", - "MessageItemsAdded": "Items added.", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "星期一", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", - "MySubtitles": "My Subtitles", - "Name": "Name", "NewCollection": "新收藏庫", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "NewCollectionNameExample": "例如:星球大戰收藏庫", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", - "NoItemsFound": "No items found.", - "NoSubtitleSearchResultsFound": "No results found.", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", - "OptionNew": "New...", - "Original": "Original", - "OriginalAirDateValue": "Original air date: {0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "播放", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "錄影", - "RecordSeries": "Record series", - "RecordingCancelled": "Recording cancelled.", - "RecordingScheduled": "Recording scheduled.", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "重新整理", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Jellyfin Server dashboard.", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", - "ReplaceAllMetadata": "Replace all metadata", - "ReplaceExistingImages": "Replace existing images", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "星期六", "Save": "儲存", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", - "Search": "Search", "SearchForCollectionInternetMetadata": "從互聯網搜尋相關圖片和資料屬性", - "SearchForMissingMetadata": "Search for missing metadata", "SearchForSubtitles": "字幕搜索", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", - "ServerUpdateNeeded": "This Jellyfin Server needs to be updated. To download the latest version, please visit {0}", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", - "Share": "Share", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", - "Subtitles": "Subtitles", - "Suggestions": "Suggestions", "Sunday": "星期日", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "星期四", - "TrackCount": "{0} tracks", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "星期二", - "Uniform": "Uniform", - "UnlockGuide": "Unlock Guide", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", "ValueEpisodeCount": "{0} 劇集", "ValueGameCount": "{0} 遊戲", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", "ValueMusicVideoCount": "{0} 個 MV", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", "ValueOneMusicVideo": "1個 MV", "ValueOneSeries": "1 劇集", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", "ValueSeriesCount": "{0} 劇集", "ValueSongCount": "{0} 首歌", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "星期三", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/strings/zh-tw.json b/src/bower_components/emby-webcomponents/strings/zh-tw.json index 41a83e0908..adaaa52f76 100644 --- a/src/bower_components/emby-webcomponents/strings/zh-tw.json +++ b/src/bower_components/emby-webcomponents/strings/zh-tw.json @@ -1,680 +1,79 @@ { - "Absolute": "Absolute", - "Accept": "Accept", - "AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.", - "Actor": "Actor", "Add": "添加", - "AddToCollection": "Add to collection", - "AddToPlayQueue": "Add to play queue", - "AddToPlaylist": "Add to playlist", - "AddedOnValue": "Added {0}", "Advanced": "進階", - "AirDate": "Air date", - "Aired": "Aired", - "Albums": "Albums", - "All": "All", - "AllChannels": "All channels", - "AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB/IDX, etc.)", - "AllEpisodes": "All episodes", - "AllLanguages": "All languages", - "AllowSeasonalThemes": "Allow automatic seasonal themes", - "AllowSeasonalThemesHelp": "If enabled, seasonal themes will occasionally override your theme setting.", - "AlwaysPlaySubtitles": "Always play subtitles", - "AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "AnamorphicVideoNotSupported": "Anamorphic video not supported", - "AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.", - "AnyLanguage": "Any language", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "Art": "Art", - "Artists": "Artists", - "AsManyAsPossible": "As many as possible", - "Ascending": "Ascending", - "AspectRatio": "Aspect ratio", - "AttributeNew": "New", - "AudioBitDepthNotSupported": "Audio bit depth not supported", - "AudioBitrateNotSupported": "Audio bitrate not supported", - "AudioChannelsNotSupported": "Audio channels not supported", - "AudioCodecNotSupported": "Audio codec not supported", - "AudioProfileNotSupported": "Audio profile not supported", - "AudioSampleRateNotSupported": "Audio sample rate not supported", - "Auto": "Auto", - "AutoBasedOnLanguageSetting": "Auto (based on language setting)", - "AutomaticallyConvertNewContent": "Automatically convert new content", - "AutomaticallyConvertNewContentHelp": "New content added to this folder will be automatically converted.", - "AutomaticallySyncNewContent": "Automatically download new content", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.", - "Backdrop": "Backdrop", - "Backdrops": "Backdrops", - "Banner": "Banner", - "BestFit": "Best fit", - "BirthLocation": "Birth location", - "Books": "Books", - "Box": "Box", - "BoxRear": "Box (rear)", - "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "取消", "ButtonGotIt": "我知道了", "ButtonOk": "確定", - "ButtonPlayOneMinute": "Play One Minute", - "ButtonRestart": "Restart", - "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonTryAgain": "重試", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "CancelDownload": "Cancel download", - "CancelRecording": "Cancel recording", - "CancelSeries": "Cancel series", - "Categories": "Categories", - "ChannelNameOnly": "Channel {0} only", - "ChannelNumber": "Channel number", - "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.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "Collections": "Collections", - "ColorPrimaries": "Color primaries", - "ColorSpace": "Color space", - "ColorTransfer": "Color transfer", - "CommunityRating": "Community rating", - "Composer": "Composer", - "ConfigureDateAdded": "Configure how date added is determined in the Jellyfin Server dashboard under Library settings", - "ConfirmDeleteImage": "Delete image?", "ConfirmDeleteItem": "刪除此項目時,也會一併從檔案系統及媒體櫃中刪除。確定要刪除嗎?", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeletion": "確定刪除", - "ConfirmEndPlayerSession": "Would you like to shutdown Jellyfin on {0}?", - "ConfirmRemoveDownload": "Remove download?", - "Connect": "Connect", - "ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.", - "ContainerNotSupported": "Container not supported", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds.", - "ContinueWatching": "Continue watching", "Continuing": "持續", - "Convert": "Convert", - "ConvertItemLimitHelp": "Optional. Set a limit to the number of items that will be converted.", - "ConvertUnwatchedVideosOnly": "Convert unwatched videos only", - "ConvertUnwatchedVideosOnlyHelp": "Only unwatched videos will be converted.", - "ConvertingDots": "Converting...", - "Countries": "Countries", - "CriticRating": "Critic rating", - "DateAdded": "Date added", - "DatePlayed": "Date played", "Days": "錄影日", - "Default": "Default", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "Delete": "刪除", - "DeleteMedia": "Delete media", - "Depressed": "Depressed", - "Descending": "Descending", - "Desktop": "Desktop", - "DirectPlayError": "Direct play error", - "DirectPlaying": "Direct playing", - "DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.", - "DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.", - "DirectStreaming": "Direct streaming", - "Director": "Director", - "DirectorValue": "Director: {0}", - "DirectorsValue": "Directors: {0}", - "Disc": "Disc", - "Disconnect": "Disconnect", "Dislike": "不喜歡", - "Display": "Display", - "DisplayInMyMedia": "Display on home screen", - "DisplayInOtherHomeScreenSections": "Display in home screen sections such as latest media and continue watching", - "DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Jellyfin Server setup.", - "DisplayModeHelp": "Select the type of screen you're running Jellyfin on.", - "DoNotRecord": "Do not record", - "Down": "Down", "Download": "下載", - "DownloadItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.", - "Downloaded": "Downloaded", - "Downloading": "Downloading", - "DownloadingDots": "Downloading...", - "Downloads": "Downloads", - "DownloadsValue": "{0} downloads", - "DropShadow": "Drop shadow", - "DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Jellyfin DVR.", - "DvrSubscriptionRequired": "Jellyfin DVR requires an active Jellyfin Premiere subscription.", "Edit": "編輯", "EditImages": "編輯圖片", - "EditMetadata": "Edit metadata", - "EditSubtitles": "Edit subtitles", - "EnableBackdrops": "Enable backdrops", - "EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "EnableCinemaMode": "Enable cinema mode", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "EnableDisplayMirroring": "Enable display mirroring", - "EnableExternalVideoPlayers": "Enable external video players", - "EnableExternalVideoPlayersHelp": "An external player menu will be shown when starting video playback.", - "EnableNextVideoInfoOverlay": "Enable next video info during playback", - "EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.", - "EnableThemeSongs": "Enable theme songs", - "EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "EnableThemeVideos": "Enable theme videos", - "EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.", "Ended": "完結", "EndsAtValue": "完結於{0}", - "Episodes": "Episodes", - "Error": "Error", - "ErrorAddingGuestAccount1": "There was an error adding the Jellyfin Connect account. Has your guest created an Jellyfin account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.", - "ErrorAddingJellyfinConnectAccount1": "There was an error adding the Jellyfin Connect account. Have you created an Jellyfin account? Sign up at {0}.", - "ErrorAddingJellyfinConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Jellyfin account.", - "ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Jellyfin Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.", - "ErrorDeletingItem": "There was an error deleting the item from Jellyfin Server. Please check that Jellyfin Server has write access to the media folder and try again.", - "ErrorReachingJellyfinConnect": "There was an error reaching the Jellyfin Connect server. Please ensure you have an active internet connection and try again.", - "ErrorRemovingJellyfinConnectAccount": "There was an error removing the Jellyfin Connect account. Please ensure you have an active internet connection and try again.", - "ExtraLarge": "Extra large", - "Extras": "Extras", "Favorite": "加到最愛", - "Favorites": "Favorites", "FeatureRequiresJellyfinPremiere": "此功能需要有效的Jellyfin豪華版訂閱", - "Features": "Features", "File": "檔案", - "Fill": "Fill", - "Filters": "Filters", - "Folders": "Folders", - "FormatValue": "Format: {0}", - "FreeAppsFeatureDescription": "Enjoy free access to Jellyfin apps for your devices.", "Friday": "星期五", - "GenreValue": "Genre: {0}", - "Genres": "Genres", - "GenresValue": "Genres: {0}", - "GroupBySeries": "Group by series", - "GroupVersions": "Group versions", - "GuestStar": "Guest star", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Guide": "Guide", - "HDPrograms": "HD programs", - "HeaderActiveRecordings": "Active Recordings", - "HeaderAddToCollection": "Add to Collection", - "HeaderAddToPlaylist": "Add to Playlist", - "HeaderAddUpdateImage": "Add/Update Image", - "HeaderAlbumArtists": "Album Artists", - "HeaderAlreadyPaid": "Already Paid?", - "HeaderAppearsOn": "Appears On", - "HeaderAudioBooks": "Audio Books", - "HeaderAudioSettings": "Audio Settings", "HeaderBecomeProjectSupporter": "立即取得", - "HeaderBenefitsJellyfinPremiere": "Benefits of Jellyfin Premiere", - "HeaderCancelRecording": "Cancel Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "HeaderContinueListening": "Continue Listening", - "HeaderContinueWatching": "Continue Watching", - "HeaderConvertYourRecordings": "Convert Your Recordings", - "HeaderCustomizeHomeScreen": "Customize Home Screen", "HeaderDeleteItem": "刪除項目", - "HeaderDeleteItems": "Delete Items", - "HeaderDisplaySettings": "Display Settings", - "HeaderDownloadSettings": "Download Settings", - "HeaderEditImages": "Edit Images", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent its data from being changed.", - "HeaderExternalIds": "External Ids:", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteCollections": "Favorite Collections", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoritePlaylists": "Favorite Playlists", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderFavoriteVideos": "Favorite Videos", - "HeaderFreeApps": "Free Jellyfin Apps", - "HeaderHomeScreen": "Home Screen", - "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", - "HeaderInvitationSent": "Invitation Sent", - "HeaderJellyfinAccountAdded": "Jellyfin Account Added", - "HeaderJellyfinAccountRemoved": "Jellyfin Account Removed", - "HeaderKeepRecording": "Keep Recording", - "HeaderKeepSeries": "Keep Series", - "HeaderLatestChannelItems": "Latest Channel Items", - "HeaderLatestChannelMedia": "Latest Channel Items", - "HeaderLatestFrom": "Latest from {0}", - "HeaderLatestMedia": "Latest Media", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderLearnMore": "Learn More", - "HeaderLibraryFolders": "Library Folders", - "HeaderLibraryOrder": "Library Order", - "HeaderMetadataSettings": "Metadata Settings", - "HeaderMusicQuality": "Music Quality", - "HeaderMyDevice": "My Device", - "HeaderMyMedia": "My Media", - "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "新錄製", - "HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}", - "HeaderNextUp": "Next Up", - "HeaderNextVideoPlayingInValue": "Next Video Playing in {0}", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "HeaderOnNow": "On Now", - "HeaderPhotoAlbums": "Photo Albums", - "HeaderPlayMyMedia": "Play my Media", - "HeaderPlayOn": "Play On", - "HeaderPlaybackError": "Playback Error", - "HeaderRecordingOptions": "Recording Options", - "HeaderRemoteControl": "Remote Control", - "HeaderRestartingJellyfinServer": "Restarting Jellyfin Server", "HeaderSaySomethingLike": "說點東西,像是...", - "HeaderSecondsValue": "{0} Seconds", "HeaderSelectDate": "選擇日期", - "HeaderSeriesOptions": "Series Options", - "HeaderSeriesStatus": "Series Status", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderStartNow": "Start Now", - "HeaderStopRecording": "Stop Recording", - "HeaderSubtitleAppearance": "Subtitle Appearance", - "HeaderSubtitleSettings": "Subtitle Settings", - "HeaderSyncRequiresSub": "Downloading requires an active Jellyfin Premiere subscription.", - "HeaderTermsOfPurchase": "Terms of Purchase", - "HeaderTryPlayback": "Try Playback", - "HeaderUnlockFeature": "Unlock Feature", - "HeaderUploadImage": "Upload Image", - "HeaderVideoQuality": "Video Quality", - "HeaderVideoType": "Video Type", - "HeaderWaitingForWifi": "Waiting for Wifi", "HeaderYouSaid": "您是指...", "Help": "說明", - "Hide": "Hide", - "HideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "Home": "Home", - "Horizontal": "Horizontal", - "HowDidYouPay": "How did you pay?", - "IHaveJellyfinPremiere": "I have Jellyfin Premiere", - "IPurchasedThisApp": "I purchased this app", - "Identify": "Identify", - "Images": "Images", - "ImdbRating": "IMDb rating", - "InstallingPackage": "Installing {0}", - "InstantMix": "Instant mix", - "InterlacedVideoNotSupported": "Interlaced video not supported", "ItemCount": "{0}個項目", - "Items": "Items", - "KeepDownload": "Keep download", - "KeepOnDevice": "Keep on device", - "Kids": "Kids", - "Label3DFormat": "3D format:", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAlbum": "Album:", - "LabelAlbumArtists": "Album artists:", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "LabelAudio": "Audio:", - "LabelAudioLanguagePreference": "Preferred audio language:", - "LabelBirthDate": "Birth date:", - "LabelBirthYear": "Birth year:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "LabelBurnSubtitles": "Burn subtitles:", - "LabelChannels": "Channels:", "LabelCollection": "收藏櫃:", - "LabelCommunityRating": "Community rating:", - "LabelContentType": "Content type:", - "LabelConvertTo": "Convert to:", "LabelCountry": "國家:", - "LabelCriticRating": "Critic rating:", - "LabelCustomRating": "Custom rating:", - "LabelDashboardTheme": "Server dashboard theme:", - "LabelDateAdded": "Date added:", - "LabelDateTimeLocale": "Date time locale:", - "LabelDeathDate": "Death date:", - "LabelDefaultScreen": "Default screen:", - "LabelDiscNumber": "Disc number:", - "LabelDisplayLanguage": "Display language:", - "LabelDisplayLanguageHelp": "Translating Jellyfin is an ongoing project.", - "LabelDisplayMode": "Display mode:", - "LabelDisplayOrder": "Display order:", - "LabelDropImageHere": "Drop image here, or click to browse.", - "LabelDropShadow": "Drop shadow:", - "LabelDynamicExternalId": "{0} Id:", - "LabelEmailAddress": "E-mail address:", - "LabelEndDate": "End date:", - "LabelEpisodeNumber": "Episode number:", - "LabelFont": "Font:", - "LabelHomeNetworkQuality": "Home network quality:", - "LabelHomeScreenSectionValue": "Home screen section {0}:", - "LabelImageType": "Image type:", - "LabelInternetQuality": "Internet quality:", - "LabelItemLimit": "Item limit:", - "LabelKeep:": "Keep:", - "LabelKeepUpTo": "Keep up to:", "LabelLanguage": "語言:", - "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", - "LabelMaxChromecastBitrate": "Chromecast streaming quality:", - "LabelMetadataDownloadLanguage": "Preferred download language:", "LabelName": "名字:", - "LabelNumber": "Number:", - "LabelOriginalAspectRatio": "Original aspect ratio:", - "LabelOriginalTitle": "Original title:", - "LabelOverview": "Overview:", - "LabelParentNumber": "Parent number:", - "LabelParentalRating": "Parental rating:", - "LabelPath": "Path:", - "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", - "LabelPlaceOfBirth": "Place of birth:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", "LabelPlaylist": "播放清單:", - "LabelPreferredSubtitleLanguage": "Preferred subtitle language:", - "LabelProfile": "Profile:", - "LabelQuality": "Quality:", - "LabelReasonForTranscoding": "Reason for transcoding:", - "LabelRecord": "Record:", "LabelRefreshMode": "更新模式:", - "LabelReleaseDate": "Release date:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelScreensaver": "Screensaver:", - "LabelSeasonNumber": "Season number:", - "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.", - "LabelShortOverview": "Short overview:", - "LabelSkin": "Skin:", - "LabelSkipBackLength": "Skip back length:", - "LabelSkipForwardLength": "Skip forward length:", - "LabelSortBy": "Sort by:", - "LabelSortOrder": "Sort order:", - "LabelSortTitle": "Sort title:", - "LabelSoundEffects": "Sound effects:", - "LabelSource": "Source:", - "LabelStartWhenPossible": "Start when possible:", - "LabelStatus": "Status:", - "LabelStopWhenPossible": "Stop when possible:", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelSubtitles": "Subtitles:", - "LabelSyncJobName": "Sync job name:", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.", - "LabelSyncTo": "Sync to:", - "LabelTVHomeScreen": "TV mode home screen:", - "LabelTagline": "Tagline:", - "LabelTextBackgroundColor": "Text background color:", - "LabelTextColor": "Text color:", - "LabelTextSize": "Text size:", - "LabelTheme": "Theme:", - "LabelTitle": "Title:", - "LabelTrackNumber": "Track number:", - "LabelType": "Type:", - "LabelVersion": "Version:", - "LabelVideo": "Video:", - "LabelWebsite": "Website:", - "LabelWindowBackgroundColor": "Text background color:", - "LabelYear": "Year:", - "Large": "Large", - "LatestFromLibrary": "Latest {0}", - "LearnHowYouCanContribute": "Learn how you can contribute.", - "LearnMore": "Learn more", "Like": "喜歡", - "LinksValue": "Links: {0}", - "List": "List", - "Live": "Live", - "LiveBroadcasts": "Live broadcasts", - "LiveTV": "Live TV", - "LiveTvFeatureDescription": "Stream Live TV to any Jellyfin app, with a compatible TV tuner device installed on your Jellyfin Server.", - "LiveTvRequiresUnlock": "Live TV requires an active Jellyfin Premiere subscription.", - "Logo": "Logo", - "ManageRecording": "Manage recording", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "MarkWatched": "Mark watched", - "MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.", - "Medium": "Medium", - "Menu": "Menu", "MessageActiveSubscriptionRequiredSeriesRecordings": "要使用自動錄製系列的功能,需要有效的Jellyfin豪華版訂閱", "MessageAreYouSureDeleteSubtitles": "您真的要刪除這個字幕檔嗎?", - "MessageConfirmRecordingCancellation": "Cancel recording?", "MessageDownloadQueued": "需要下載", - "MessageFileReadError": "There was an error reading the file. Please try again.", "MessageIfYouBlockedVoice": "如果您拒絕程式使用語音辨識,您將需要在重試之前再次設定", - "MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.", - "MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Jellyfin.", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageItemSaved": "Item saved.", "MessageItemsAdded": "已新增項目", - "MessageJellyfinAccontRemoved": "The Jellyfin account has been removed from this user.", - "MessageJellyfinAccountAdded": "The Jellyfin account has been added to this user.", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.", - "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.", - "MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.", - "MessagePendingJellyfinAccountAdded": "The Jellyfin 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.", - "MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Jellyfin Server administrator for more information.", - "MessageToValidateSupporter": "If you have an active Jellyfin Premiere subscription, ensure you've setup Jellyfin Premiere in your Jellyfin Server Dashboard, which you can access by clicking Jellyfin Premiere within the main menu.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Jellyfin Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Jellyfin Premiere subscription.", "MessageWeDidntRecognizeCommand": "很抱歉,我們無法辨識此指令", - "MinutesAfter": "minutes after", - "MinutesBefore": "minutes before", - "Mobile": "Mobile / Tablet", "Monday": "星期一", - "More": "More", - "MoveLeft": "Move left", - "MoveRight": "Move right", - "Movies": "Movies", "MySubtitles": "我的字幕", - "Name": "Name", "NewCollection": "新合集", "NewCollectionHelp": "收藏櫃讓您能夠建立個人化的影音及其他媒體的分類", "NewCollectionNameExample": "例子:星球大戰合集", - "NewEpisodes": "New episodes", - "NewEpisodesOnly": "New episodes only", - "News": "News", - "Next": "Next", - "No": "No", "NoItemsFound": "無項目", "NoSubtitleSearchResultsFound": "無結果", - "NoSubtitles": "No subtitles", - "NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.", - "None": "None", - "Normal": "Normal", - "Off": "Off", - "OneChannel": "One channel", - "OnlyForcedSubtitles": "Only forced subtitles", - "OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB/IDX, etc.)", - "Open": "Open", "OptionNew": "新增...", - "Original": "Original", "OriginalAirDateValue": "原始播出日期:{0}", - "Overview": "Overview", - "PackageInstallCancelled": "{0} installation cancelled.", - "PackageInstallCompleted": "{0} installation completed.", - "PackageInstallFailed": "{0} installation failed.", "ParentalRating": "Parental Rating", - "People": "People", - "PerfectMatch": "Perfect match", - "Photos": "Photos", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "Play": "播放", - "PlayAllFromHere": "Play all from here", - "PlayCount": "Play count", - "PlayFromBeginning": "Play from beginning", - "PlayNext": "Play next", - "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "PlaybackSettings": "Playback settings", - "PlaybackSettingsIntro": "To configure default playback settings, stop video playback, then click your user icon in the top right section of the app.", - "Played": "Played", - "Playlists": "Playlists", - "PleaseEnterNameOrId": "Please enter a name or an external Id.", - "PleaseRestartServerName": "Please restart Jellyfin Server - {0}.", - "PleaseSelectDeviceToSyncTo": "Please select a device to download to.", - "PleaseSelectTwoItems": "Please select at least two items.", - "Premiere": "Premiere", - "Premieres": "Premieres", - "Previous": "Previous", - "Primary": "Primary", - "PrivacyPolicy": "Privacy policy", - "Producer": "Producer", - "ProductionLocations": "Production locations", - "Programs": "Programs", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Jellyfin Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Jellyfin server settings.", - "Quality": "Quality", - "QueueAllFromHere": "Queue all from here", - "Raised": "Raised", - "RecentlyWatched": "Recently watched", "Record": "開始錄影", "RecordSeries": "錄製整個系列", "RecordingCancelled": "已取消排程錄製", "RecordingScheduled": "已排程錄製", - "Recordings": "Recordings", - "RefFramesNotSupported": "Number of video reference frames not supported", "Refresh": "重新整理", "RefreshDialogHelp": "詳細資料的更新方式會依據Jellyfin的設定及已經啟用的網路服務來進行", - "RefreshMetadata": "Refresh metadata", - "RefreshQueued": "Refresh queued.", - "Reject": "Reject", - "ReleaseDate": "Release date", - "RemoveDownload": "Remove download", - "RemoveFromCollection": "Remove from collection", - "RemoveFromPlaylist": "Remove from playlist", - "RemovingFromDevice": "Removing from device", - "Repeat": "Repeat", - "RepeatAll": "Repeat all", - "RepeatEpisodes": "Repeat episodes", - "RepeatMode": "Repeat mode", - "RepeatOne": "Repeat one", "ReplaceAllMetadata": "取代所有詳細資料", "ReplaceExistingImages": "取代現有圖片", - "RestartPleaseWaitMessage": "Please wait while Jellyfin Server shuts down and restarts. This may take a minute or two.", - "ResumeAt": "Resume from {0}", - "Retry": "Retry", - "RunAtStartup": "Run at startup", - "Runtime": "Runtime", "Saturday": "星期六", "Save": "保存", - "ScanForNewAndUpdatedFiles": "Scan for new and updated files", - "Schedule": "Schedule", - "Screenshot": "Screenshot", - "Screenshots": "Screenshots", "Search": "搜尋", "SearchForCollectionInternetMetadata": "在互聯網上搜索媒體圖像和資料", "SearchForMissingMetadata": "搜尋遺失的詳細資料", "SearchForSubtitles": "搜尋字幕", - "SearchResults": "Search Results", - "SecondaryAudioNotSupported": "Audio track switching not supported", - "SeriesCancelled": "Series cancelled.", - "SeriesDisplayOrderHelp": "Order episodes by air date, dvd order, or absolute numbering.", "SeriesRecordingScheduled": "已排程錄製整個系列", - "SeriesSettings": "Series settings", - "SeriesYearToPresent": "{0} - Present", - "ServerNameIsRestarting": "Jellyfin Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Jellyfin Server - {0} is shutting down.", "ServerUpdateNeeded": "此Jellyfin伺服器需要更新,請至{0}取得最新版本", - "Settings": "Settings", - "SettingsSaved": "Settings saved.", "Share": "分享", - "ShowIndicatorsFor": "Show indicators for:", - "ShowTitle": "Show title", - "ShowYear": "Show year", - "Shows": "Shows", - "Shuffle": "Shuffle", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "Small": "Small", - "SmallCaps": "Small caps", - "Smaller": "Smaller", - "Smart": "Smart", - "SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "Songs": "Songs", - "Sort": "Sort", - "SortByValue": "Sort by {0}", - "SortChannelsBy": "Sort channels by:", - "SortName": "Sort name", - "Sports": "Sports", - "StatsForNerds": "Stats for nerds", - "StopRecording": "Stop recording", - "Studios": "Studios", - "SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.", - "SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS/SSA).", - "SubtitleCodecNotSupported": "Subtitle format not supported", - "SubtitleSettings": "Subtitle settings", - "SubtitleSettingsIntro": "To configure default subtitle appearance and language settings, stop video playback, then click your user icon in the top right section of the app.", "Subtitles": "字幕", - "Suggestions": "Suggestions", "Sunday": "星期天", - "Sync": "Sync", - "SyncJobItemStatusCancelled": "Cancelled", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusTransferring": "Transferring", - "SyncUnwatchedVideosOnly": "Download unwatched videos only", - "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.", - "SyncingDots": "Syncing...", - "TV": "TV", - "Tags": "Tags", - "TagsValue": "Tags: {0}", - "TermsOfUse": "Terms of use", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Jellyfin.", - "ThemeSongs": "Theme songs", - "ThemeVideos": "Theme videos", - "TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device", - "Thumb": "Thumb", "Thursday": "星期四", "TrackCount": "{0}個曲目", - "Trailer": "Trailer", - "Trailers": "Trailers", - "Transcoding": "Transcoding", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "Tuesday": "星期二", - "Uniform": "Uniform", "UnlockGuide": "解鎖方式", - "Unplayed": "Unplayed", - "Unrated": "Unrated", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Up": "Up", - "Upload": "Upload", - "ValueAlbumCount": "{0} albums", - "ValueDiscNumber": "Disc {0}", - "ValueEpisodeCount": "{0} episodes", - "ValueGameCount": "{0} games", - "ValueMinutes": "{0} min", - "ValueMovieCount": "{0} movies", - "ValueMusicVideoCount": "{0} music videos", - "ValueOneAlbum": "1 album", - "ValueOneEpisode": "1 episode", - "ValueOneGame": "1 game", - "ValueOneItem": "1 item", - "ValueOneMovie": "1 movie", - "ValueOneMusicVideo": "1 music video", - "ValueOneSeries": "1 series", - "ValueOneSong": "1 song", - "ValueSeconds": "{0} seconds", - "ValueSeriesCount": "{0} series", - "ValueSongCount": "{0} songs", - "ValueSpecialEpisodeName": "Special - {0}", - "Vertical": "Vertical", - "VideoBitDepthNotSupported": "Video bit depth not supported", - "VideoCodecNotSupported": "Video codec not supported", - "VideoFramerateNotSupported": "Video framerate not supported", - "VideoLevelNotSupported": "Video level not supported", - "VideoProfileNotSupported": "Video profile not supported", - "VideoRange": "Video range", - "VideoResolutionNotSupported": "Video resolution not supported", - "ViewAlbum": "View album", - "ViewArtist": "View artist", - "VoiceInput": "Voice Input", - "Watched": "Watched", "Wednesday": "星期三", - "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", - "Writer": "Writer", - "Yes": "Yes" } diff --git a/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css b/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css index c805f54a2c..a97b20b38a 100644 --- a/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css +++ b/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css @@ -1,3 +1,3 @@ -.originalSubtitleFileLabel { +.originalSubtitleFileLabel { margin-right: 1em; } \ No newline at end of file diff --git a/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.js b/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.js index 4f5047989d..14cb58a80f 100644 --- a/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.js +++ b/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.js @@ -1,4 +1,4 @@ -define(['dialogHelper', 'require', 'layoutManager', 'globalize', 'userSettings', 'connectionManager', 'loading', 'focusManager', 'dom', 'apphost', 'emby-select', 'listViewStyle', 'paper-icon-button-light', 'css!./../formdialog', 'material-icons', 'css!./subtitleeditor', 'emby-button', 'flexStyles'], function (dialogHelper, require, layoutManager, globalize, userSettings, connectionManager, loading, focusManager, dom, appHost) { +define(['dialogHelper', 'require', 'layoutManager', 'globalize', 'userSettings', 'connectionManager', 'loading', 'focusManager', 'dom', 'apphost', 'emby-select', 'listViewStyle', 'paper-icon-button-light', 'css!./../formdialog', 'material-icons', 'css!./subtitleeditor', 'emby-button', 'flexStyles'], function (dialogHelper, require, layoutManager, globalize, userSettings, connectionManager, loading, focusManager, dom, appHost) { 'use strict'; var currentItem; diff --git a/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html b/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html index b975f059b7..9338a3823a 100644 --- a/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html +++ b/src/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html @@ -1,4 +1,4 @@ -
+

${Subtitles}

diff --git a/src/bower_components/emby-webcomponents/subtitlesettings/subtitlesettings.template.html b/src/bower_components/emby-webcomponents/subtitlesettings/subtitlesettings.template.html index f6d01c8252..f6fae59ecf 100644 --- a/src/bower_components/emby-webcomponents/subtitlesettings/subtitlesettings.template.html +++ b/src/bower_components/emby-webcomponents/subtitlesettings/subtitlesettings.template.html @@ -1,4 +1,4 @@ - +
diff --git a/src/bower_components/emby-webcomponents/sync/sync.js b/src/bower_components/emby-webcomponents/sync/sync.js index c57fc5255a..0271775ec8 100644 --- a/src/bower_components/emby-webcomponents/sync/sync.js +++ b/src/bower_components/emby-webcomponents/sync/sync.js @@ -1,4 +1,4 @@ -define(['apphost', 'globalize', 'connectionManager', 'layoutManager', 'focusManager', 'scrollHelper', 'appSettings', 'registrationServices', 'dialogHelper', 'paper-icon-button-light', 'formDialogStyle'], function (appHost, globalize, connectionManager, layoutManager, focusManager, scrollHelper, appSettings, registrationServices, dialogHelper) { +define(['apphost', 'globalize', 'connectionManager', 'layoutManager', 'focusManager', 'scrollHelper', 'appSettings', 'registrationServices', 'dialogHelper', 'paper-icon-button-light', 'formDialogStyle'], function (appHost, globalize, connectionManager, layoutManager, focusManager, scrollHelper, appSettings, registrationServices, dialogHelper) { 'use strict'; var currentDialogOptions; diff --git a/src/bower_components/emby-webcomponents/sync/syncjobeditor.js b/src/bower_components/emby-webcomponents/sync/syncjobeditor.js deleted file mode 100644 index 7a23490ce2..0000000000 --- a/src/bower_components/emby-webcomponents/sync/syncjobeditor.js +++ /dev/null @@ -1,504 +0,0 @@ -define(['connectionManager', 'serverNotifications', 'events', 'datetime', 'dom', 'imageLoader', 'loading', 'globalize', 'apphost', 'layoutManager', 'scrollHelper', 'dialogHelper', 'listViewStyle', 'paper-icon-button-light', 'emby-button', 'formDialogStyle', 'emby-linkbutton'], function (connectionManager, serverNotifications, events, datetime, dom, imageLoader, loading, globalize, appHost, layoutManager, scrollHelper, dialogHelper) { - 'use strict'; - - function syncNow() { - require(['localsync'], function (localSync) { - localSync.sync(); - }); - } - - function renderJob(context, job, dialogOptions) { - - require(['syncDialog'], function (syncDialog) { - syncDialog.renderForm({ - elem: context.querySelector('.syncJobFormContent'), - dialogOptions: dialogOptions, - dialogOptionsFn: getTargetDialogOptionsFn(dialogOptions), - readOnlySyncTarget: true - }).then(function () { - fillJobValues(context, job, dialogOptions); - }); - }); - } - - function getTargetDialogOptionsFn(dialogOptions) { - - return function (targetId) { - - return Promise.resolve(dialogOptions); - }; - } - - function getJobItemHtml(jobItem, apiClient, index) { - - var html = ''; - var status = jobItem.Status; - - var nextAction; - - if (status === 'Failed') { - nextAction = 'retry'; - } - else if (status === 'Cancelled') { - nextAction = 'retry'; - } - else if (status === 'Queued' || status === 'Transferring' || status === 'Converting' || status === 'ReadyToTransfer') { - nextAction = 'cancel'; - } - else if (status === 'Synced' && !jobItem.IsMarkedForRemoval) { - nextAction = 'remove'; - } - - var listItemClass = 'listItem listItem-border'; - if (layoutManager.tv && nextAction) { - listItemClass += ' btnJobItemMenu'; - } - - if (layoutManager.tv) { - listItemClass += ' listItem-button'; - } - - var tagName = layoutManager.tv ? 'button' : 'div'; - html += '<' + tagName + ' type="button" class="' + listItemClass + '" data-itemid="' + jobItem.Id + '" data-status="' + jobItem.Status + '" data-action="' + nextAction + '">'; - - var imgUrl; - - if (jobItem.PrimaryImageItemId) { - - imgUrl = apiClient.getImageUrl(jobItem.PrimaryImageItemId, { - type: "Primary", - width: 80, - tag: jobItem.PrimaryImageTag, - minScale: 1.5 - }); - } - - if (imgUrl) { - html += '
'; - } - else { - html += 'sync'; - } - - html += '
'; - - html += '

'; - html += jobItem.ItemName; - html += '

'; - - if (jobItem.Status === 'Failed') { - html += '
'; - } else { - html += '
'; - } - html += globalize.translate('sharedcomponents#SyncJobItemStatus' + jobItem.Status); - if (jobItem.Status === 'Synced' && jobItem.IsMarkedForRemoval) { - html += '
'; - html += globalize.translate('sharedcomponents#RemovingFromDevice'); - } - html += '
'; - - html += '
'; - html += '
'; - html += '
'; - - html += '
'; - - var moreIcon = ''; - - if (!layoutManager.tv) { - - if (nextAction === 'retry') { - html += ''; - } - else if (nextAction === 'cancel') { - html += ''; - } - else if (nextAction === 'remove') { - html += ''; - } - } - - html += ''; - return html; - } - - function renderJobItems(context, items, apiClient) { - - var html = ''; - - html += '

' + globalize.translate('sharedcomponents#Items') + '

'; - - html += '
'; - - var index = 0; - html += items.map(function (i) { - - return getJobItemHtml(i, apiClient, index++); - - }).join(''); - - html += '
'; - - var elem = context.querySelector('.jobItems'); - elem.innerHTML = html; - imageLoader.lazyChildren(elem); - } - - function parentWithClass(elem, className) { - - while (!elem.classList || !elem.classList.contains(className)) { - elem = elem.parentNode; - - if (!elem) { - return null; - } - } - - return elem; - } - - function showJobItemMenu(elem, jobId, apiClient) { - - var action = elem.getAttribute('data-action'); - var context = parentWithClass(elem, 'formDialog'); - var listItem = parentWithClass(elem, 'listItem'); - var jobItemId = listItem.getAttribute('data-itemid'); - - var menuItems = []; - - if (action === 'retry') { - retryJobItem(context, jobId, jobItemId, apiClient); - } - else if (action === 'cancel' || action === 'remove') { - cancelJobItem(context, jobId, jobItemId, apiClient); - } - } - - function cancelJobItem(context, jobId, jobItemId, apiClient) { - - showRemoveConfirm(function () { - loading.show(); - - apiClient.ajax({ - - type: "DELETE", - url: apiClient.getUrl('Sync/JobItems/' + jobItemId) - - }).then(function () { - - // TODO this should check editor options.mode === 'download' - if (appHost.supports('sync')) { - syncNow(); - } - - loadJob(context, jobId, apiClient); - }); - }); - } - - function retryJobItem(context, jobId, jobItemId, apiClient) { - - showRetryConfirm(function () { - apiClient.ajax({ - - type: "POST", - url: apiClient.getUrl('Sync/JobItems/' + jobItemId + '/Enable') - - }).then(function () { - - // TODO this should check editor options.mode === 'download' - if (appHost.supports('sync')) { - syncNow(); - } - - loadJob(context, jobId, apiClient); - }); - }); - } - - function showRetryConfirm(callback) { - - // TODO Implement this as a retry dialog - require(['confirm'], function (confirm) { - - confirm({ - - text: globalize.translate('sharedcomponents#ConfirmRemoveDownload'), - confirmText: globalize.translate('sharedcomponents#RemoveDownload'), - cancelText: globalize.translate('sharedcomponents#KeepDownload'), - primary: 'cancel' - - }).then(callback); - }); - } - - function showRemoveConfirm(callback) { - - require(['confirm'], function (confirm) { - - confirm({ - - text: globalize.translate('sharedcomponents#ConfirmRemoveDownload'), - confirmText: globalize.translate('sharedcomponents#RemoveDownload'), - cancelText: globalize.translate('sharedcomponents#KeepDownload'), - primary: 'cancel' - - }).then(callback); - }); - } - - function showConfirm(text, callback) { - - require(['confirm'], function (confirm) { - - confirm(text).then(callback); - }); - } - - function fillJobValues(context, job, editOptions) { - - var selectProfile = context.querySelector('#selectProfile'); - if (selectProfile) { - selectProfile.value = job.Profile || ''; - } - - var selectQuality = context.querySelector('#selectQuality'); - if (selectQuality) { - selectQuality.value = job.Quality || ''; - } - - var chkUnwatchedOnly = context.querySelector('#chkUnwatchedOnly'); - if (chkUnwatchedOnly) { - chkUnwatchedOnly.checked = job.UnwatchedOnly; - } - - var chkSyncNewContent = context.querySelector('#chkSyncNewContent'); - if (chkSyncNewContent) { - chkSyncNewContent.checked = job.SyncNewContent; - } - - var txtItemLimit = context.querySelector('#txtItemLimit'); - if (txtItemLimit) { - txtItemLimit.value = job.ItemLimit; - } - - var txtBitrate = context.querySelector('#txtBitrate'); - if (job.Bitrate) { - txtBitrate.value = job.Bitrate / 1000000; - } else { - txtBitrate.value = ''; - } - - var target = editOptions.Targets.filter(function (t) { - return t.Id === job.TargetId; - })[0]; - var targetName = target ? target.Name : ''; - - var selectSyncTarget = context.querySelector('#selectSyncTarget'); - if (selectSyncTarget) { - selectSyncTarget.value = targetName; - } - } - - var _jobOptions; - function loadJob(context, id, apiClient) { - - loading.show(); - - apiClient.getJSON(apiClient.getUrl('Sync/Jobs/' + id)).then(function (job) { - - apiClient.getJSON(apiClient.getUrl('Sync/Options', { - - UserId: job.UserId, - ItemIds: (job.RequestedItemIds && job.RequestedItemIds.length ? job.RequestedItemIds.join('') : null), - - ParentId: job.ParentId, - Category: job.Category, - TargetId: job.TargetId - - })).then(function (options) { - - _jobOptions = options; - renderJob(context, job, options); - loading.hide(); - }); - }); - - apiClient.getJSON(apiClient.getUrl('Sync/JobItems', { - - JobId: id, - AddMetadata: true - - })).then(function (result) { - - renderJobItems(context, result.Items, apiClient); - loading.hide(); - }); - } - - function loadJobInfo(context, job, jobItems, apiClient) { - - //renderJob(page, job, _jobOptions); - renderJobItems(context, jobItems, apiClient); - loading.hide(); - } - - function saveJob(context, id, apiClient) { - - loading.show(); - - apiClient.getJSON(apiClient.getUrl('Sync/Jobs/' + id)).then(function (job) { - - require(['syncDialog'], function (syncDialog) { - syncDialog.setJobValues(job, context); - - apiClient.ajax({ - - url: apiClient.getUrl('Sync/Jobs/' + id), - type: 'POST', - data: JSON.stringify(job), - contentType: "application/json" - - }).then(function () { - - // TODO this should check editor options.mode === 'download' - if (appHost.supports('sync')) { - syncNow(); - } - - loading.hide(); - dialogHelper.close(context); - }); - }); - }); - - } - - function startListening(apiClient, jobId) { - - var startParams = "0,1500"; - - startParams += "," + jobId; - - apiClient.sendMessage("SyncJobStart", startParams); - } - - function stopListening(apiClient) { - - apiClient.sendMessage("SyncJobStop", ""); - } - - function bindEvents(context, jobId, apiClient) { - context.querySelector('.jobItems').addEventListener('click', function (e) { - var btnJobItemMenu = dom.parentWithClass(e.target, 'btnJobItemMenu'); - if (btnJobItemMenu) { - showJobItemMenu(btnJobItemMenu, jobId, apiClient); - } - }); - } - - function showEditor(options) { - - var apiClient = connectionManager.getApiClient(options.serverId); - var id = options.jobId; - - var dlgElementOptions = { - removeOnClose: true, - scrollY: false, - autoFocus: false - }; - - if (layoutManager.tv) { - dlgElementOptions.size = 'fullscreen'; - } else { - dlgElementOptions.size = 'medium'; - } - - var dlg = dialogHelper.createDialog(dlgElementOptions); - - dlg.classList.add('formDialog'); - - var html = ''; - html += '
'; - html += ''; - html += '

'; - html += globalize.translate('sharedcomponents#Sync'); - html += '

'; - - if (appHost.supports('externallinks')) { - html += 'info' + globalize.translate('sharedcomponents#Help') + ''; - } - - html += '
'; - - html += '
'; - html += '
'; - - html += ''; - - html += '
'; - - html += '
'; - - html += '
'; - html += ''; - html += '
'; - - html += ''; - - html += '
'; - html += '
'; - - dlg.innerHTML = html; - - var submitted = false; - - dlg.querySelector('form').addEventListener('submit', function (e) { - - saveJob(dlg, id, apiClient); - e.preventDefault(); - return false; - }); - - dlg.querySelector('.btnCancel').addEventListener('click', function () { - dialogHelper.close(dlg); - }); - - if (layoutManager.tv) { - scrollHelper.centerFocus.on(dlg.querySelector('.formDialogContent'), false); - } - - function onSyncJobMessage(e, apiClient, msg) { - loadJobInfo(dlg, msg.Job, msg.JobItems, apiClient); - } - - loadJob(dlg, id, apiClient); - bindEvents(dlg, id, apiClient); - - var promise = dialogHelper.open(dlg); - - startListening(apiClient, id); - events.on(serverNotifications, "SyncJob", onSyncJobMessage); - - return promise.then(function () { - - stopListening(apiClient); - events.off(serverNotifications, "SyncJob", onSyncJobMessage); - - if (layoutManager.tv) { - scrollHelper.centerFocus.off(dlg.querySelector('.formDialogContent'), false); - } - - if (submitted) { - return Promise.resolve(); - } - return Promise.reject(); - }); - } - - return { - show: showEditor - }; - -}); \ No newline at end of file diff --git a/src/bower_components/emby-webcomponents/sync/syncjoblist.js b/src/bower_components/emby-webcomponents/sync/syncjoblist.js deleted file mode 100644 index 5deaf6ddb9..0000000000 --- a/src/bower_components/emby-webcomponents/sync/syncjoblist.js +++ /dev/null @@ -1,455 +0,0 @@ -define(['serverNotifications', 'events', 'loading', 'connectionManager', 'imageLoader', 'dom', 'globalize', 'registrationServices', 'layoutManager', 'listViewStyle'], function (serverNotifications, events, loading, connectionManager, imageLoader, dom, globalize, registrationServices, layoutManager) { - 'use strict'; - - function onSyncJobCreated(e, apiClient, data) { - var listInstance = this; - fetchData(listInstance); - } - function onSyncJobUpdated(e, apiClient, data) { - var listInstance = this; - - refreshJob(listInstance, data); - } - function onSyncJobCancelled(e, apiClient, data) { - var listInstance = this; - fetchData(listInstance); - } - - function refreshList(listInstance, jobs) { - for (var i = 0, length = jobs.length; i < length; i++) { - - var job = jobs[i]; - refreshJob(listInstance, job); - } - } - - function syncNow() { - require(['localsync'], function (localSync) { - localSync.sync(); - }); - } - - function cancelJob(listInstance, id) { - - require(['confirm'], function (confirm) { - - var msg = globalize.translate('sharedcomponents#ConfirmRemoveDownload'); - - confirm({ - - text: msg, - primary: 'cancel' - - }).then(function () { - - loading.show(); - var apiClient = getApiClient(listInstance); - - apiClient.ajax({ - - url: apiClient.getUrl('Sync/Jobs/' + id), - type: 'DELETE' - - }).then(function () { - - if (listInstance.options.mode === 'download') { - syncNow(); - } - - fetchData(listInstance); - }); - }); - }); - } - - function refreshJob(listInstance, job) { - - var listItem = listInstance.options.element.querySelector('.listItem[data-id=\'' + job.Id + '\']'); - - if (!listItem) { - return; - } - - listItem.querySelector('.jobStatus').innerHTML = getProgressText(job); - } - - function getProgressText(job) { - - var status = job.Status; - - if (status === 'Completed') { - status = 'Synced'; - } - - var html = globalize.translate('sharedcomponents#SyncJobItemStatus' + status); - - if (job.Status === 'Transferring' || job.Status === 'Converting' || job.Status === 'Completed') { - html += ' '; - - var progress = job.Progress || 0; - if (progress > 0 && progress < 100) { - progress = progress.toFixed(1); - } - html += progress + '%'; - } - - return html; - } - - function getSyncJobHtml(listInstance, job, apiClient) { - - var html = ''; - - var tagName = layoutManager.tv ? 'button' : 'div'; - var typeAttribute = tagName === 'button' ? ' type="button"' : ''; - - var listItemClass = 'listItem listItem-border'; - - if (layoutManager.tv) { - listItemClass += ' listItem-button listItem-focusscale'; - - listItemClass += ' btnJobMenu'; - } - - var canEdit = (job.ItemCount || 1) > 1 || job.Status === 'Queued'; - html += '<' + tagName + typeAttribute + ' class="' + listItemClass + '" data-canedit="' + canEdit + '" data-id="' + job.Id + '" data-status="' + job.Status + '">'; - - var imgUrl; - - if (job.PrimaryImageItemId) { - - imgUrl = apiClient.getImageUrl(job.PrimaryImageItemId, { - type: "Primary", - width: 80, - tag: job.PrimaryImageTag, - minScale: 1.5 - }); - } - - if (imgUrl) { - html += '
'; - html += '
'; - } - else { - html += 'file_download'; - } - - var textLines = []; - - var name = job.Name; - - if (job.ParentName) { - name += ' - ' + job.ParentName; - } - - textLines.push(name); - - if (job.ItemCount === 1) { - //textLines.push(globalize.translate('sharedcomponents#ValueOneItem')); - } else { - textLines.push(globalize.translate('sharedcomponents#ItemCount', job.ItemCount)); - } - - html += '
'; - - for (var i = 0, length = textLines.length; i < length; i++) { - - if (i === 0) { - html += '

'; - html += textLines[i]; - html += '

'; - } else { - html += '
'; - html += textLines[i]; - html += '
'; - } - } - - html += '
'; - html += getProgressText(job); - html += '
'; - - html += '
'; - - if (!layoutManager.tv) { - - if (canEdit) { - html += ''; - } else { - html += ''; - } - } - - html += ''; - - return html; - } - - function renderList(listInstance, jobs, apiClient) { - - if ((new Date().getTime() - listInstance.lastDataLoad) < 60000) { - refreshList(listInstance, jobs); - return; - } - - listInstance.lastDataLoad = new Date().getTime(); - - var html = ''; - var lastTargetName = ''; - - var mode = listInstance.options.mode; - var showTargetName = mode !== 'download'; - - var hasOpenSection = false; - - for (var i = 0, length = jobs.length; i < length; i++) { - - var job = jobs[i]; - if (showTargetName) { - var targetName = job.TargetName || 'Unknown'; - - if (targetName !== lastTargetName) { - - if (lastTargetName) { - html += '
'; - html += '
'; - hasOpenSection = false; - } - - lastTargetName = targetName; - - html += '
'; - html += '
'; - - html += '

' + targetName + '

'; - - html += '
'; - html += '
'; - hasOpenSection = true; - } - } - - html += getSyncJobHtml(listInstance, job, apiClient); - } - - if (hasOpenSection) { - html += '
'; - html += '
'; - } - - var elem = listInstance.options.element.querySelector('.syncJobListContent'); - - if (!html) { - if (mode === 'download') { - html = '
' + globalize.translate('sharedcomponents#MessageNoDownloadsFound') + '
'; - } else { - html = '
' + globalize.translate('sharedcomponents#MessageNoSyncJobsFound') + '
'; - } - } - - elem.innerHTML = html; - - imageLoader.lazyChildren(elem); - } - - function fetchData(listInstance) { - - listInstance.lastDataLoad = 0; - loading.show(); - - var options = {}; - var apiClient = getApiClient(listInstance); - - if (listInstance.options.userId) { - options.UserId = listInstance.options.userId; - } - - if (listInstance.options.mode === 'download') { - options.TargetId = apiClient.deviceId(); - } - - return apiClient.getJSON(apiClient.getUrl('Sync/Jobs', options)).then(function (response) { - - renderList(listInstance, response.Items, apiClient); - loading.hide(); - }); - } - - function getApiClient(listInstance) { - return connectionManager.getApiClient(listInstance.options.serverId); - } - - function showJobMenu(listInstance, elem) { - - var item = dom.parentWithClass(elem, 'listItem'); - var jobId = item.getAttribute('data-id'); - var status = item.getAttribute('data-status'); - - var menuItems = []; - - if (item.getAttribute('data-canedit') === 'true') { - menuItems.push({ - name: globalize.translate('sharedcomponents#Edit'), - id: 'edit' - }); - } - - var txt = globalize.translate('sharedcomponents#RemoveDownload'); - - menuItems.push({ - name: txt, - id: 'cancel' - }); - - require(['actionsheet'], function (actionsheet) { - - actionsheet.show({ - items: menuItems, - positionTo: elem, - callback: function (id) { - - switch (id) { - - case 'delete': - cancelJob(listInstance, jobId); - break; - case 'cancel': - cancelJob(listInstance, jobId); - break; - case 'edit': - showJobEditor(listInstance, elem); - break; - default: - break; - } - } - }); - - }); - } - - function onElementClick(e) { - - var listInstance = this; - - var btnJobMenu = dom.parentWithClass(e.target, 'btnJobMenu'); - if (btnJobMenu) { - showJobMenu(listInstance, btnJobMenu); - return; - } - - var btnCancelJob = dom.parentWithClass(e.target, 'btnCancelJob'); - if (btnCancelJob) { - var listItem = dom.parentWithClass(btnCancelJob, 'listItem'); - if (listItem) { - var jobId = listItem.getAttribute('data-id'); - cancelJob(listInstance, jobId); - } - return; - } - - showJobEditor(listInstance, e.target); - } - - function showJobEditor(listInstance, elem) { - - var listItem = dom.parentWithClass(elem, 'listItem'); - if (listItem && listItem.getAttribute('data-canedit') === 'true') { - var jobId = listItem.getAttribute('data-id'); - // edit job - require(['syncJobEditor'], function (syncJobEditor) { - syncJobEditor.show({ - - serverId: listInstance.options.serverId, - jobId: jobId, - mode: listInstance.options.mode - - }).then(function () { - fetchData(listInstance); - }); - }); - } - } - - function syncJobList(options) { - this.options = options; - - var onSyncJobCreatedHandler = onSyncJobCreated.bind(this); - this.onSyncJobCreatedHandler = onSyncJobCreatedHandler; - events.on(serverNotifications, 'SyncJobCreated', onSyncJobCreatedHandler); - - var onSyncJobCancelledHandler = onSyncJobCancelled.bind(this); - this.onSyncJobCancelledHandler = onSyncJobCancelledHandler; - events.on(serverNotifications, 'SyncJobCancelled', onSyncJobCancelledHandler); - - var onSyncJobUpdatedHandler = onSyncJobUpdated.bind(this); - this.onSyncJobUpdatedHandler = onSyncJobUpdatedHandler; - events.on(serverNotifications, 'SyncJobUpdated', onSyncJobUpdatedHandler); - - var onClickHandler = onElementClick.bind(this); - options.element.addEventListener('click', onClickHandler); - this.onClickHandler = onClickHandler; - - options.element.innerHTML = '
'; - - fetchData(this); - - initSupporterInfo(options.element, getApiClient(this)); - } - - function showSupporterInfo(context) { - - var html = '

${HeaderAccessSchedule} diff --git a/src/components/apphost.js b/src/components/apphost.js index 1bf7e32ff8..5ebb6fbf19 100644 --- a/src/components/apphost.js +++ b/src/components/apphost.js @@ -108,84 +108,131 @@ define(["appSettings", "browser", "events", "htmlMediaHelper"], function(appSett } function onAppVisible() { - _isHidden && (_isHidden = !1, console.log("triggering app resume event"), events.trigger(appHost, "resume")) + if (isHidden) { + isHidden = false; + console.log("triggering app resume event"); + events.trigger(appHost, "resume"); + } } function onAppHidden() { - _isHidden || (_isHidden = !0, console.log("app is hidden")) + if (!isHidden) { + isHidden = true; + console.log("app is hidden"); + } } - var htmlMediaAutoplayAppStorageKey = "supportshtmlmediaautoplay0", - supportedFeatures = function() { - var features = []; - return navigator.share && features.push("sharing"), browser.edgeUwp || browser.tv || browser.xboxOne || browser.ps4 || features.push("filedownload"), browser.operaTv || browser.tizen || browser.orsay || browser.web0s ? features.push("exit") : (features.push("exitmenu"), features.push("plugins")), browser.operaTv || browser.tizen || browser.orsay || browser.web0s || browser.ps4 || (features.push("externallinks"), features.push("externalpremium")), browser.operaTv || features.push("externallinkdisplay"), supportsVoiceInput() && features.push("voiceinput"), !browser.tv && !browser.xboxOne && browser.ps4, supportsHtmlMediaAutoplay() && (features.push("htmlaudioautoplay"), features.push("htmlvideoautoplay")), browser.edgeUwp && features.push("sync"), supportsFullscreen() && features.push("fullscreenchange"), (browser.chrome || browser.edge && !browser.slow) && (browser.noAnimation || browser.edgeUwp || browser.xboxOne || features.push("imageanalysis")), AppInfo.isNativeApp && features.push("multiserver"), (browser.tv || browser.xboxOne || browser.ps4 || browser.mobile) && features.push("physicalvolumecontrol"), browser.tv || browser.xboxOne || browser.ps4 || features.push("remotecontrol"), browser.operaTv || browser.tizen || browser.orsay || browser.web0s || browser.edgeUwp || features.push("remotevideo"), features.push("otherapppromotions"), features.push("targetblank"), browser.orsay || browser.tizen || browser.msie || !(browser.firefox || browser.ps4 || browser.edge || cueSupported()) || features.push("subtitleappearancesettings"), browser.orsay || browser.tizen || features.push("subtitleburnsettings"), browser.tv || browser.ps4 || browser.xboxOne || features.push("fileinput"), AppInfo.isNativeApp && features.push("displaylanguage"), browser.chrome && features.push("chromecast"), features - }(); - 1 === supportedFeatures.indexOf("htmlvideoautoplay") && !1 !== supportsHtmlMediaAutoplay() && require(["autoPlayDetect"], function(autoPlayDetect) { - autoPlayDetect.supportsHtmlMediaAutoplay().then(function() { - appSettings.set(htmlMediaAutoplayAppStorageKey, "true"), supportedFeatures.push("htmlvideoautoplay"), supportedFeatures.push("htmlaudioautoplay") - }, function() { - appSettings.set(htmlMediaAutoplayAppStorageKey, "false") - }) + + var htmlMediaAutoplayAppStorageKey = "supportshtmlmediaautoplay0"; + var supportedFeatures = function() { + var features = []; + navigator.share && features.push("sharing"); + browser.edgeUwp || browser.tv || browser.xboxOne || browser.ps4 || features.push("filedownload"); + browser.operaTv || browser.tizen || browser.orsay || browser.web0s + ? features.push("exit") + : (features.push("exitmenu"), features.push("plugins")); + browser.operaTv || browser.tizen || browser.orsay || browser.web0s || browser.ps4 || (features.push("externallinks"), features.push("externalpremium")); + browser.operaTv || features.push("externallinkdisplay"); + supportsVoiceInput() && features.push("voiceinput"); + !browser.tv && !browser.xboxOne && browser.ps4, supportsHtmlMediaAutoplay() && (features.push("htmlaudioautoplay"), features.push("htmlvideoautoplay")); + browser.edgeUwp && features.push("sync"); + supportsFullscreen() && features.push("fullscreenchange"); + (browser.chrome || browser.edge && !browser.slow) && (browser.noAnimation || browser.edgeUwp || browser.xboxOne || features.push("imageanalysis")); + (browser.tv || browser.xboxOne || browser.ps4 || browser.mobile) && features.push("physicalvolumecontrol"); + browser.tv || browser.xboxOne || browser.ps4 || features.push("remotecontrol"); + browser.operaTv || browser.tizen || browser.orsay || browser.web0s || browser.edgeUwp || features.push("remotevideo"); + features.push("otherapppromotions"); + features.push("targetblank"); + browser.orsay || browser.tizen || browser.msie || !(browser.firefox || browser.ps4 || browser.edge || cueSupported()) || features.push("subtitleappearancesettings"); + browser.orsay || browser.tizen || features.push("subtitleburnsettings"); + browser.tv || browser.ps4 || browser.xboxOne || features.push("fileinput"); + browser.chrome && features.push("chromecast"); + return features; + }(); + if (supportedFeatures.indexOf("htmlvideoautoplay") === -1 && supportsHtmlMediaAutoplay() !== false) { + require(["autoPlayDetect"], function(autoPlayDetect) { + autoPlayDetect.supportsHtmlMediaAutoplay().then(function() { + appSettings.set(htmlMediaAutoplayAppStorageKey, "true"); + supportedFeatures.push("htmlvideoautoplay"); + supportedFeatures.push("htmlaudioautoplay"); + }, function() { + appSettings.set(htmlMediaAutoplayAppStorageKey, "false"); + }); + } }); - var deviceId, deviceName, visibilityChange, visibilityState, appVersion = window.dashboardVersion || "3.0", - appHost = { - getWindowState: function() { - return document.windowState || "Normal" - }, - setWindowState: function(state) { - alert("setWindowState is not supported and should not be called") - }, - exit: function() { - if (browser.tizen) try { - tizen.application.getCurrentApplication().exit() - } catch (err) { - console.log("error closing application: " + err) - } else window.close() - }, - supports: function(command) { - return -1 !== supportedFeatures.indexOf(command.toLowerCase()) - }, - preferVisualCards: browser.android || browser.chrome, - moreIcon: browser.android ? "dots-vert" : "dots-horiz", - getSyncProfile: getSyncProfile, - getDefaultLayout: getDefaultLayout, - getDeviceProfile: getDeviceProfile, - init: function() { - return deviceName = getDeviceName(), getDeviceId().then(function(resolvedDeviceId) { - deviceId = resolvedDeviceId - }) - }, - deviceName: function() { - return deviceName - }, - deviceId: function() { - return deviceId - }, - appName: function() { - return "Jellyfin Web" - }, - appVersion: function() { - return appVersion - }, - getPushTokenInfo: function() { - return {} - }, - setThemeColor: function(color) { - var metaThemeColor = document.querySelector("meta[name=theme-color]"); - metaThemeColor && metaThemeColor.setAttribute("content", color) - }, - setUserScalable: function(scalable) { - if (!browser.tv) { - var att = scalable ? "width=device-width, initial-scale=1, minimum-scale=1, user-scalable=yes" : "width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"; - document.querySelector("meta[name=viewport]").setAttribute("content", att) - } - }, - deviceIconUrl: function() { - return browser.edgeUwp, browser.edgeUwp ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/windowsrt.png" : browser.opera || browser.operaTv ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/opera.png" : browser.orsay || browser.tizen ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/samsungtv.png" : browser.web0s ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/lgtv.png" : browser.ps4 ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/ps4.png" : browser.chromecast ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/chromecast.png" : browser.chrome ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/chrome.png" : browser.edge ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/edge.png" : browser.firefox ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/firefox.png" : browser.msie ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/internetexplorer.png" : browser.safari ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/safari.png" : "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/html5.png" + + var deviceId; + var deviceName; + var visibilityChange; + var visibilityState; + var appVersion = window.dashboardVersion || "3.0"; + var appHost = { + getWindowState: function() { + return document.windowState || "Normal" + }, + setWindowState: function(state) { + alert("setWindowState is not supported and should not be called") + }, + exit: function() { + if (browser.tizen) try { + tizen.application.getCurrentApplication().exit() + } catch (err) { + console.log("error closing application: " + err) + } else window.close() + }, + supports: function(command) { + return -1 !== supportedFeatures.indexOf(command.toLowerCase()) + }, + preferVisualCards: browser.android || browser.chrome, + moreIcon: browser.android ? "dots-vert" : "dots-horiz", + getSyncProfile: getSyncProfile, + getDefaultLayout: getDefaultLayout, + getDeviceProfile: getDeviceProfile, + init: function() { + return deviceName = getDeviceName(), getDeviceId().then(function(resolvedDeviceId) { + deviceId = resolvedDeviceId + }) + }, + deviceName: function() { + return deviceName + }, + deviceId: function() { + return deviceId + }, + appName: function() { + return "Jellyfin Web" + }, + appVersion: function() { + return appVersion + }, + getPushTokenInfo: function() { + return {} + }, + setThemeColor: function(color) { + var metaThemeColor = document.querySelector("meta[name=theme-color]"); + metaThemeColor && metaThemeColor.setAttribute("content", color) + }, + setUserScalable: function(scalable) { + if (!browser.tv) { + var att = scalable ? "width=device-width, initial-scale=1, minimum-scale=1, user-scalable=yes" : "width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"; + document.querySelector("meta[name=viewport]").setAttribute("content", att) } }, - doc = self.document; + deviceIconUrl: function() { + return browser.edgeUwp, browser.edgeUwp ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/windowsrt.png" : browser.opera || browser.operaTv ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/opera.png" : browser.orsay || browser.tizen ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/samsungtv.png" : browser.web0s ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/lgtv.png" : browser.ps4 ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/ps4.png" : browser.chromecast ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/chromecast.png" : browser.chrome ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/chrome.png" : browser.edge ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/edge.png" : browser.firefox ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/firefox.png" : browser.msie ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/internetexplorer.png" : browser.safari ? "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/safari.png" : "https://github.com/MediaBrowser/Emby.Resources/raw/master/images/devices/html5.png" + } + }; + + var doc = self.document; doc && (void 0 !== doc.visibilityState ? (visibilityChange = "visibilitychange", visibilityState = "hidden") : void 0 !== doc.mozHidden ? (visibilityChange = "mozvisibilitychange", visibilityState = "mozVisibilityState") : void 0 !== doc.msHidden ? (visibilityChange = "msvisibilitychange", visibilityState = "msVisibilityState") : void 0 !== doc.webkitHidden && (visibilityChange = "webkitvisibilitychange", visibilityState = "webkitVisibilityState")); - var _isHidden = !1; - return doc && doc.addEventListener(visibilityChange, function() { - document[visibilityState] ? onAppHidden() : onAppVisible() - }), self.addEventListener && (self.addEventListener("focus", onAppVisible), self.addEventListener("blur", onAppHidden)), appHost + var isHidden = false; + if (doc) { + doc.addEventListener(visibilityChange, function() { + document[visibilityState] ? onAppHidden() : onAppVisible() + }); + } + if (self.addEventListener) { + self.addEventListener("focus", onAppVisible); + self.addEventListener("blur", onAppHidden); + } + return appHost; }); diff --git a/src/components/guestinviter/guestinviter.template.html b/src/components/guestinviter/guestinviter.template.html index b5f30e1474..0c4ea3914f 100644 --- a/src/components/guestinviter/guestinviter.template.html +++ b/src/components/guestinviter/guestinviter.template.html @@ -1,4 +1,4 @@ -
+
diff --git a/src/components/imageoptionseditor/imageoptionseditor.template.html b/src/components/imageoptionseditor/imageoptionseditor.template.html index 165539af94..a247c773e7 100644 --- a/src/components/imageoptionseditor/imageoptionseditor.template.html +++ b/src/components/imageoptionseditor/imageoptionseditor.template.html @@ -1,4 +1,4 @@ -
+

${HeaderImageOptions} diff --git a/src/components/libraryoptionseditor/libraryoptionseditor.template.html b/src/components/libraryoptionseditor/libraryoptionseditor.template.html index 72506a7579..8a53ee556b 100644 --- a/src/components/libraryoptionseditor/libraryoptionseditor.template.html +++ b/src/components/libraryoptionseditor/libraryoptionseditor.template.html @@ -1,4 +1,4 @@ -