diff --git a/dashboard-ui/bower_components/iron-meta/.bower.json b/dashboard-ui/bower_components/iron-meta/.bower.json index e1304d174b..f4bfef4a7c 100644 --- a/dashboard-ui/bower_components/iron-meta/.bower.json +++ b/dashboard-ui/bower_components/iron-meta/.bower.json @@ -26,14 +26,14 @@ "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, "main": "iron-meta.html", - "homepage": "https://github.com/PolymerElements/iron-meta", + "homepage": "https://github.com/polymerelements/iron-meta", "_release": "1.1.1", "_resolution": { "type": "version", "tag": "v1.1.1", "commit": "e171ee234b482219c9514e6f9551df48ef48bd9f" }, - "_source": "git://github.com/PolymerElements/iron-meta.git", + "_source": "git://github.com/polymerelements/iron-meta.git", "_target": "^1.0.0", - "_originalSource": "PolymerElements/iron-meta" + "_originalSource": "polymerelements/iron-meta" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/iron-overlay-behavior/.bower.json b/dashboard-ui/bower_components/iron-overlay-behavior/.bower.json index 781650cdba..77b8d27811 100644 --- a/dashboard-ui/bower_components/iron-overlay-behavior/.bower.json +++ b/dashboard-ui/bower_components/iron-overlay-behavior/.bower.json @@ -1,6 +1,6 @@ { "name": "iron-overlay-behavior", - "version": "1.1.1", + "version": "1.1.2", "license": "http://polymer.github.io/LICENSE.txt", "description": "Provides a behavior for making an element an overlay", "private": true, @@ -34,11 +34,11 @@ }, "ignore": [], "homepage": "https://github.com/polymerelements/iron-overlay-behavior", - "_release": "1.1.1", + "_release": "1.1.2", "_resolution": { "type": "version", - "tag": "v1.1.1", - "commit": "1ed1603ce820456feab3f62ae86f8f3ec801d131" + "tag": "v1.1.2", + "commit": "40e39a971474f48f5c2c8ee7b8568a0ad5426bd8" }, "_source": "git://github.com/polymerelements/iron-overlay-behavior.git", "_target": "^1.0.0", diff --git a/dashboard-ui/bower_components/iron-overlay-behavior/.travis.yml b/dashboard-ui/bower_components/iron-overlay-behavior/.travis.yml index ee47b40d83..8bc31dc876 100644 --- a/dashboard-ui/bower_components/iron-overlay-behavior/.travis.yml +++ b/dashboard-ui/bower_components/iron-overlay-behavior/.travis.yml @@ -11,7 +11,7 @@ env: - secure: EaE1AUVgWyn0Y6kqkb54z5r39RvTJzAOmeM0lRl7wXzr5k0mq3VGlxTksJqCVd1PdJESXEhy8eldBnlkwZir/imDTNQxKm13k7ZiFC0000XAzpLZElkH2cLlYCRWcuM+vS7dA9hytV0UcGK2VGqbxfpcesB20dPSneDEUuc5X64= node_js: 4 addons: - firefox: '42.0' + firefox: latest apt: sources: - google-chrome diff --git a/dashboard-ui/bower_components/iron-overlay-behavior/bower.json b/dashboard-ui/bower_components/iron-overlay-behavior/bower.json index 006602755e..a21be7fe4c 100644 --- a/dashboard-ui/bower_components/iron-overlay-behavior/bower.json +++ b/dashboard-ui/bower_components/iron-overlay-behavior/bower.json @@ -1,6 +1,6 @@ { "name": "iron-overlay-behavior", - "version": "1.1.1", + "version": "1.1.2", "license": "http://polymer.github.io/LICENSE.txt", "description": "Provides a behavior for making an element an overlay", "private": true, diff --git a/dashboard-ui/bower_components/iron-overlay-behavior/iron-overlay-behavior.html b/dashboard-ui/bower_components/iron-overlay-behavior/iron-overlay-behavior.html index 0105b73700..c18cec68fb 100644 --- a/dashboard-ui/bower_components/iron-overlay-behavior/iron-overlay-behavior.html +++ b/dashboard-ui/bower_components/iron-overlay-behavior/iron-overlay-behavior.html @@ -140,7 +140,6 @@ context. You should place this element as a child of `` whenever possible. }, listeners: { - 'tap': '_onClick', 'iron-resize': '_onIronResize' }, @@ -162,6 +161,10 @@ context. You should place this element as a child of `` whenever possible. ready: function() { this._ensureSetup(); + }, + + attached: function() { + // Call _openedChanged here so that position can be computed correctly. if (this._callOpenedWhenReady) { this._openedChanged(); } @@ -393,20 +396,10 @@ context. You should place this element as a child of `` whenever possible. }, _onCaptureClick: function(event) { - // attempt to close asynchronously and prevent the close of a tap event is immediately heard - // on target. This is because in shadow dom due to event retargetting event.target is not - // useful. - if (!this.noCancelOnOutsideClick && (this._manager.currentOverlay() == this)) { - this._cancelJob = this.async(function() { - this.cancel(); - }, 10); - } - }, - - _onClick: function(event) { - if (this._cancelJob) { - this.cancelAsync(this._cancelJob); - this._cancelJob = null; + if (!this.noCancelOnOutsideClick && + this._manager.currentOverlay() === this && + Polymer.dom(event).path.indexOf(this) === -1) { + this.cancel(); } }, @@ -415,6 +408,7 @@ context. You should place this element as a child of `` whenever possible. if (!this.noCancelOnEscKey && (event.keyCode === ESC)) { this.cancel(); event.stopPropagation(); + event.stopImmediatePropagation(); } }, diff --git a/dashboard-ui/bower_components/iron-overlay-behavior/test/iron-overlay-behavior.html b/dashboard-ui/bower_components/iron-overlay-behavior/test/iron-overlay-behavior.html index 19bb9cc88d..08fbcb3000 100644 --- a/dashboard-ui/bower_components/iron-overlay-behavior/test/iron-overlay-behavior.html +++ b/dashboard-ui/bower_components/iron-overlay-behavior/test/iron-overlay-behavior.html @@ -20,7 +20,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN - + @@ -100,11 +100,22 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN assert.equal(getComputedStyle(overlay).display, 'none', 'overlay starts hidden'); }); - test('overlay open by default', function() { + test('overlay open by default', function(done) { overlay = fixture('opened'); - runAfterOpen(overlay, function() { + overlay.addEventListener('iron-overlay-opened', function() { assert.isTrue(overlay.opened, 'overlay starts opened'); assert.notEqual(getComputedStyle(overlay).display, 'none', 'overlay starts showing'); + done(); + }); + }); + + test('overlay positioned & sized properly', function(done) { + overlay = fixture('opened'); + overlay.addEventListener('iron-overlay-opened', function() { + var s = getComputedStyle(overlay); + assert.isTrue(parseFloat(s.left) === (window.innerWidth - overlay.offsetWidth)/2, 'centered horizontally'); + assert.isTrue(parseFloat(s.top) === (window.innerHeight - overlay.offsetHeight)/2, 'centered vertically'); + done(); }); }); @@ -181,7 +192,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN overlay.addEventListener('iron-overlay-canceled', function(event) { done(); }); - Polymer.Base.fire.call(document, 'click'); + MockInteractions.tap(document.body); }); }); @@ -191,7 +202,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN assert.isTrue(event.detail.canceled, 'overlay is canceled'); done(); }); - Polymer.Base.fire.call(document, 'click'); + MockInteractions.tap(document.body); }); }); @@ -204,7 +215,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN throw new Error('iron-overlay-closed should not fire'); }; overlay.addEventListener('iron-overlay-closed', closedListener); - Polymer.Base.fire.call(document, 'click'); + MockInteractions.tap(document.body); setTimeout(function() { overlay.removeEventListener('iron-overlay-closed', closedListener); done(); @@ -241,7 +252,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN overlay.addEventListener('iron-overlay-closed', function() { assert('iron-overlay-closed should not fire'); }); - Polymer.Base.fire.call(document, 'click'); + MockInteractions.tap(document.body); setTimeout(function() { done(); }, 10); @@ -282,6 +293,23 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN }); }); }); + + test('ESC closes only one opened overlay', function(done) { + runAfterOpen(overlays[0], function() { + runAfterOpen(overlays[1], function() { + // keydown is sync, keyup async (but no need to wait for it). + MockInteractions.pressAndReleaseKeyOn(document.body, 27); + // Ideally overlays[1] should be closed and overlays[0] still open, + // but in this test env overlays[0]._onCaptureKeydown gets called before + // overlays[1]._onCaptureKeydown. + // TODO investigate if this is because of CustomEvents in MockInteractions. + var opened0 = overlays[0].opened && !overlays[1].opened; + var opened1 = !overlays[0].opened && overlays[1].opened; + assert.isTrue(opened0 || opened1, 'only one overlay is still opened'); + done(); + }); + }); + }); }); suite('z-ordering', function() { diff --git a/dashboard-ui/bower_components/paper-button/.bower.json b/dashboard-ui/bower_components/paper-button/.bower.json index 30a745b376..2800113b1e 100644 --- a/dashboard-ui/bower_components/paper-button/.bower.json +++ b/dashboard-ui/bower_components/paper-button/.bower.json @@ -1,6 +1,6 @@ { "name": "paper-button", - "version": "1.0.10", + "version": "1.0.11", "description": "Material design button", "authors": [ "The Polymer Authors" @@ -39,11 +39,11 @@ "paper-styles": "polymerelements/paper-styles#^1.0.0" }, "ignore": [], - "_release": "1.0.10", + "_release": "1.0.11", "_resolution": { "type": "version", - "tag": "v1.0.10", - "commit": "53d833818fa738a5160177f9f834a08c839ab2be" + "tag": "v1.0.11", + "commit": "7d0f75300372d91835ae7298593d50987d4a610f" }, "_source": "git://github.com/PolymerElements/paper-button.git", "_target": "~1.0.1", diff --git a/dashboard-ui/bower_components/paper-button/bower.json b/dashboard-ui/bower_components/paper-button/bower.json index 0a2e87a267..bcb07a86c0 100644 --- a/dashboard-ui/bower_components/paper-button/bower.json +++ b/dashboard-ui/bower_components/paper-button/bower.json @@ -1,6 +1,6 @@ { "name": "paper-button", - "version": "1.0.10", + "version": "1.0.11", "description": "Material design button", "authors": [ "The Polymer Authors" diff --git a/dashboard-ui/bower_components/paper-button/paper-button.html b/dashboard-ui/bower_components/paper-button/paper-button.html index 52ac7b9bc2..c5a0d18431 100644 --- a/dashboard-ui/bower_components/paper-button/paper-button.html +++ b/dashboard-ui/bower_components/paper-button/paper-button.html @@ -154,7 +154,7 @@ Custom property | Description | Default _calculateElevation: function() { if (!this.raised) { - this.elevation = 0; + this._setElevation(0); } else { Polymer.PaperButtonBehaviorImpl._calculateElevation.apply(this); } diff --git a/dashboard-ui/bower_components/paper-button/test/paper-button.html b/dashboard-ui/bower_components/paper-button/test/paper-button.html index 03732a422b..54200e63f0 100644 --- a/dashboard-ui/bower_components/paper-button/test/paper-button.html +++ b/dashboard-ui/bower_components/paper-button/test/paper-button.html @@ -19,7 +19,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN - + @@ -52,6 +52,22 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN }, 1); }); + test('can be unraised after being raised imperatively', function(done) { + button.raised = true; + expect(button.hasAttribute('raised')).to.be.eql(true); + + Polymer.Base.async(function() { + expect(button.elevation).to.be.eql(1); + + button.raised = false; + expect(button.hasAttribute('raised')).to.be.eql(false); + Polymer.Base.async(function() { + expect(button.elevation).to.be.eql(0); + done(); + }, 1); + }, 1); + }); + test('can be disabled imperatively', function() { button.disabled = true; expect(button.getAttribute('aria-disabled')).to.be.eql('true'); diff --git a/dashboard-ui/bower_components/paper-radio-group/.bower.json b/dashboard-ui/bower_components/paper-radio-group/.bower.json index 9766bd1233..c0b2c7bf26 100644 --- a/dashboard-ui/bower_components/paper-radio-group/.bower.json +++ b/dashboard-ui/bower_components/paper-radio-group/.bower.json @@ -1,6 +1,6 @@ { "name": "paper-radio-group", - "version": "1.0.7", + "version": "1.0.8", "description": "A group of material design radio buttons", "authors": [ "The Polymer Authors" @@ -34,11 +34,11 @@ "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, "main": "paper-radio-group.html", - "_release": "1.0.7", + "_release": "1.0.8", "_resolution": { "type": "version", - "tag": "v1.0.7", - "commit": "5f0d8a159a545e4eca1aefa5716d29f230364499" + "tag": "v1.0.8", + "commit": "398bb090d50b1422ba1848ae531cff6e6aff753f" }, "_source": "git://github.com/PolymerElements/paper-radio-group.git", "_target": "~1.0.4", diff --git a/dashboard-ui/bower_components/paper-radio-group/bower.json b/dashboard-ui/bower_components/paper-radio-group/bower.json index 3e69635f99..f7d122af71 100644 --- a/dashboard-ui/bower_components/paper-radio-group/bower.json +++ b/dashboard-ui/bower_components/paper-radio-group/bower.json @@ -1,6 +1,6 @@ { "name": "paper-radio-group", - "version": "1.0.7", + "version": "1.0.8", "description": "A group of material design radio buttons", "authors": [ "The Polymer Authors" diff --git a/dashboard-ui/bower_components/paper-radio-group/paper-radio-group.html b/dashboard-ui/bower_components/paper-radio-group/paper-radio-group.html index 586dfff07c..8f71564fde 100644 --- a/dashboard-ui/bower_components/paper-radio-group/paper-radio-group.html +++ b/dashboard-ui/bower_components/paper-radio-group/paper-radio-group.html @@ -163,7 +163,7 @@ information about `paper-radio-button`. newIndex = (newIndex - 1 + length) % length; } while (this.items[newIndex].disabled) - this.select(this._indexToValue(newIndex)); + this._itemActivate(this._indexToValue(newIndex), this.items[newIndex]); }, /** @@ -178,7 +178,7 @@ information about `paper-radio-button`. newIndex = (newIndex + 1 + length) % length; } while (this.items[newIndex].disabled) - this.select(this._indexToValue(newIndex)); + this._itemActivate(this._indexToValue(newIndex), this.items[newIndex]); }, }); diff --git a/dashboard-ui/bower_components/paper-radio-group/test/basic.html b/dashboard-ui/bower_components/paper-radio-group/test/basic.html index b481121697..e3bad3a15a 100644 --- a/dashboard-ui/bower_components/paper-radio-group/test/basic.html +++ b/dashboard-ui/bower_components/paper-radio-group/test/basic.html @@ -206,6 +206,37 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN }, 1); }); + test('arrow keys cause iron-activate events', function(done) { + var g = fixture('WithSelection'); + + // Needs to be async since the underlying iron-selector uses observeNodes. + Polymer.Base.async(function() { + g.items[0].focus(); + + var i = 0; + g.addEventListener('iron-activate', function() { + switch (i++) { + case 0: + MockInteractions.pressAndReleaseKeyOn(g, 38); + break; + + case 1: + MockInteractions.pressAndReleaseKeyOn(g, 39); + break; + + case 2: + MockInteractions.pressAndReleaseKeyOn(g, 40); + break; + + default: + done(); + } + }); + + MockInteractions.pressAndReleaseKeyOn(g, 37); + }, 1); + }); + }); diff --git a/dashboard-ui/bower_components/paper-ripple/.bower.json b/dashboard-ui/bower_components/paper-ripple/.bower.json index 2f654d71c6..157225ee71 100644 --- a/dashboard-ui/bower_components/paper-ripple/.bower.json +++ b/dashboard-ui/bower_components/paper-ripple/.bower.json @@ -32,14 +32,14 @@ "iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0" }, "ignore": [], - "homepage": "https://github.com/polymerelements/paper-ripple", + "homepage": "https://github.com/PolymerElements/paper-ripple", "_release": "1.0.5", "_resolution": { "type": "version", "tag": "v1.0.5", "commit": "d72e7a9a8ab518b901ed18dde492df3b87a93be5" }, - "_source": "git://github.com/polymerelements/paper-ripple.git", + "_source": "git://github.com/PolymerElements/paper-ripple.git", "_target": "^1.0.0", - "_originalSource": "polymerelements/paper-ripple" + "_originalSource": "PolymerElements/paper-ripple" } \ No newline at end of file diff --git a/dashboard-ui/myprofile.html b/dashboard-ui/myprofile.html index 1a5f519f32..feec69c68e 100644 --- a/dashboard-ui/myprofile.html +++ b/dashboard-ui/myprofile.html @@ -14,7 +14,7 @@


- ${ButtonDeleteImage} + ${ButtonDeleteImage}
@@ -78,7 +78,7 @@ -
+

${HeaderEasyPinCode} diff --git a/dashboard-ui/scripts/mediaplayer.js b/dashboard-ui/scripts/mediaplayer.js index dc42965324..5bb265e0f7 100644 --- a/dashboard-ui/scripts/mediaplayer.js +++ b/dashboard-ui/scripts/mediaplayer.js @@ -311,12 +311,12 @@ Value: 'HE-AAC' } // Disabling this is going to require us to learn why it was disabled in the first place - , - { - Condition: 'NotEquals', - Property: 'AudioProfile', - Value: 'LC' - } + //, + //{ + // Condition: 'NotEquals', + // Property: 'AudioProfile', + // Value: 'LC' + //} ] }); } diff --git a/dashboard-ui/scripts/myprofile.js b/dashboard-ui/scripts/myprofile.js index 12282280ca..8c45337530 100644 --- a/dashboard-ui/scripts/myprofile.js +++ b/dashboard-ui/scripts/myprofile.js @@ -31,32 +31,34 @@ $('#fldImage', page).show().html('').html(""); - var showNewImageForm = false; + var showImageEditing = false; if (user.ConnectLinkType == 'Guest') { - $('#btnDeleteImage', page).hide(); $('.connectMessage', page).show(); } else if (user.PrimaryImageTag) { - $('#btnDeleteImage', page).show(); $('#headerUploadNewImage', page).show(); - showNewImageForm = true; + showImageEditing = true; $('.connectMessage', page).hide(); } else { - showNewImageForm = true; - $('#btnDeleteImage', page).hide(); + showImageEditing = true; $('#headerUploadNewImage', page).show(); $('.connectMessage', page).hide(); } - if (showNewImageForm && AppInfo.supportsFileInput) { - $('.newImageForm', page).show(); - } else { - $('.newImageForm', page).hide(); - } + Dashboard.getCurrentUser().then(function (loggedInUser) { + + if (showImageEditing && AppInfo.supportsFileInput && (loggedInUser.Policy.IsAdministrator || user.Policy.EnableUserPreferenceAccess)) { + $('.newImageForm', page).show(); + $('#btnDeleteImage', page).removeClass('hide'); + } else { + $('.newImageForm', page).hide(); + $('#btnDeleteImage', page).addClass('hide'); + } + }); Dashboard.hideLoadingMsg(); }); @@ -222,33 +224,47 @@ ApiClient.getUser(userid).then(function (user) { - Dashboard.setPageTitle(user.Name); + Dashboard.getCurrentUser().then(function(loggedInUser) { + + Dashboard.setPageTitle(user.Name); - if (user.ConnectLinkType == 'Guest') { - $('.localAccessSection', page).hide(); - $('.passwordSection', page).hide(); - } - else if (user.HasConfiguredPassword) { - $('#btnResetPassword', page).show(); - $('#fldCurrentPassword', page).show(); - $('.localAccessSection', page).show(); - $('.passwordSection', page).show(); - } else { - $('#btnResetPassword', page).hide(); - $('#fldCurrentPassword', page).hide(); - $('.localAccessSection', page).hide(); - $('.passwordSection', page).show(); - } + var showPasswordSection = true; + var showLocalAccessSection = false; + if (user.ConnectLinkType == 'Guest') { + $('.localAccessSection', page).hide(); + showPasswordSection = false; + } + else if (user.HasConfiguredPassword) { + $('#btnResetPassword', page).show(); + $('#fldCurrentPassword', page).show(); + showLocalAccessSection = true; + } else { + $('#btnResetPassword', page).hide(); + $('#fldCurrentPassword', page).hide(); + } - if (user.HasConfiguredEasyPassword) { - $('#txtEasyPassword', page).val('').attr('placeholder', '******'); - $('#btnResetEasyPassword', page).removeClass('hide'); - } else { - $('#txtEasyPassword', page).val('').attr('placeholder', ''); - $('#btnResetEasyPassword', page).addClass('hide'); - } + if (showPasswordSection && (loggedInUser.Policy.IsAdministrator || user.Policy.EnableUserPreferenceAccess)) { + $('.passwordSection', page).show(); + } else { + $('.passwordSection', page).hide(); + } - page.querySelector('.chkEnableLocalEasyPassword').checked = user.Configuration.EnableLocalPassword; + if (showLocalAccessSection && (loggedInUser.Policy.IsAdministrator || user.Policy.EnableUserPreferenceAccess)) { + $('.localAccessSection', page).show(); + } else { + $('.localAccessSection', page).hide(); + } + + if (user.HasConfiguredEasyPassword) { + $('#txtEasyPassword', page).val('').attr('placeholder', '******'); + $('#btnResetEasyPassword', page).removeClass('hide'); + } else { + $('#txtEasyPassword', page).val('').attr('placeholder', ''); + $('#btnResetEasyPassword', page).addClass('hide'); + } + + page.querySelector('.chkEnableLocalEasyPassword').checked = user.Configuration.EnableLocalPassword; + }); }); $('#txtCurrentPassword', page).val(''); diff --git a/dashboard-ui/scripts/site.js b/dashboard-ui/scripts/site.js index 54e560d903..67991348a2 100644 --- a/dashboard-ui/scripts/site.js +++ b/dashboard-ui/scripts/site.js @@ -748,7 +748,7 @@ var Dashboard = { html = ''; - if (user.localUser && user.localUser.Policy.EnableUserPreferenceAccess) { + if (user.localUser) { html += '

' + Globalize.translate('ButtonSettings') + ''; } diff --git a/dashboard-ui/strings/html/ca.json b/dashboard-ui/strings/html/ca.json index 5fd9d4d000..616c7c71e8 100644 --- a/dashboard-ui/strings/html/ca.json +++ b/dashboard-ui/strings/html/ca.json @@ -9,7 +9,7 @@ "LabelBrowseLibrary": "Examina la biblioteca", "LabelConfigureServer": "Configura Emby", "LabelOpenLibraryViewer": "Obrir el visor de la biblioteca", - "LabelRestartServer": "Reiniciar el servidor", + "LabelRestartServer": "Reiniciar Servidor", "LabelShowLogWindow": "Veure finestra de registre", "LabelPrevious": "Anterior", "LabelFinish": "Finalitzar", @@ -52,9 +52,9 @@ "HeaderAddUser": "Afegir Usuari", "LabelAddConnectSupporterHelp": "Per afegir un usuari que no estigui llistat primer necessitar\u00e0s vincular el seu compte a Emby Connect des del seu perfil d'usuari.", "LabelPinCode": "Codi pin:", - "OptionHideWatchedContentFromLatestMedia": "Oculta contingut ja visualitzat a darrers mitjans", + "OptionHideWatchedContentFromLatestMedia": "Oculta contingut ja visualitzat a darrers multim\u00e8dia", "HeaderSync": "Sync", - "ButtonOk": "Ok", + "ButtonOk": "D'acord", "ButtonCancel": "Cancel", "ButtonExit": "Surt", "ButtonNew": "New", @@ -78,32 +78,32 @@ "HeaderSyncRequiresSupporterMembership": "Sync requereix una membresia de col\u00b7laborador", "HeaderEnjoyDayTrial": "Gaudiu una Prova Gratu\u00efta de 14 Dies", "LabelSyncTempPath": "Directori de fitxers temporals:", - "LabelSyncTempPathHelp": "Especifica un directori de treball personalitzat per al sync. Els mitjans convertits durant el proc\u00e9s de sincronitzaci\u00f3 es desaran aqu\u00ed.", + "LabelSyncTempPathHelp": "Especifica un directori de treball personalitzat per al sync. Els multim\u00e8dia convertits durant el proc\u00e9s de sincronitzaci\u00f3 es desaran aqu\u00ed.", "LabelCustomCertificatePath": "Directori del certificat personalitzat:", "LabelCustomCertificatePathHelp": "Especifica el fitxer .pfx del teu propi certificat ssl. Si s'omet, el servidor crear\u00e0 un certificat auto-signat.", "TitleNotifications": "Notificacions", - "OptionDetectArchiveFilesAsMedia": "Detecta fitxers comprimits com a mitjans", - "OptionDetectArchiveFilesAsMediaHelp": "Si s'habilita, els fitxers amb extensions .rar i .zip es detectaran com a fitxers de mitjans.", + "OptionDetectArchiveFilesAsMedia": "Detecta fitxers comprimits com a multim\u00e8dia", + "OptionDetectArchiveFilesAsMediaHelp": "Si s'habilita, els fitxers amb extensions .rar i .zip es detectaran com a fitxers multim\u00e8dia.", "LabelEnterConnectUserName": "Nom d'usuari o e-mail:", "LabelEnterConnectUserNameHelp": "Aquest \u00e9s l'usuari o e-mail del teu compte en l\u00ednia d'Emby.", "LabelEnableEnhancedMovies": "Habilita la visualitzaci\u00f3 millorada de pel\u00b7l\u00edcules", "LabelEnableEnhancedMoviesHelp": "Si s'habilita, les pel\u00b7l\u00edcules es mostraran com a directoris per a incloure tr\u00e0ilers, extres, elenc i equip i qualsevol altre contingut relacionat.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Contingut mesclat", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", + "FolderTypeMovies": "Pel\u00b7l\u00edcules", + "FolderTypeMusic": "M\u00fasica", "FolderTypeAdultVideos": "Adult videos", "FolderTypePhotos": "Fotos", - "FolderTypeMusicVideos": "Music videos", + "FolderTypeMusicVideos": "V\u00eddeos musicals", "FolderTypeHomeVideos": "V\u00eddeos dom\u00e8stics", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", + "FolderTypeGames": "Jocs", + "FolderTypeBooks": "Llibres", "FolderTypeTvShows": "TV", "FolderTypeInherit": "Heretat", "LabelContentType": "Tipus de contingut:", "TitleScheduledTasks": "Tasques Programades", "HeaderSetupLibrary": "Configura les teves biblioteques multim\u00e8dia", - "ButtonAddMediaFolder": "Afegir directori de mitjans", + "ButtonAddMediaFolder": "Afegir directori multim\u00e8dia", "LabelFolderType": "Tipus de directori:", "ReferToMediaLibraryWiki": "Refer to the media library wiki.", "LabelCountry": "Pa\u00eds:", @@ -111,10 +111,10 @@ "LabelTimeLimitHours": "Temps l\u00edmit (en hores):", "ButtonJoinTheDevelopmentTeam": "Uneix-te a l'equip de desenvolupadors", "HeaderPreferredMetadataLanguage": "Idioma de metadades preferit", - "LabelSaveLocalMetadata": "Desa l'artwork i les metadades als directoris dels mitjans", - "LabelSaveLocalMetadataHelp": "Desar l'artwork i les metadades directament als directoris de mitjans els posar\u00e0 tots en llocs on podran ser editats f\u00e0cilment.", + "LabelSaveLocalMetadata": "Desa l'artwork i les metadades als directoris dels multim\u00e8dia", + "LabelSaveLocalMetadataHelp": "Desar l'artwork i les metadades directament als directoris dels multim\u00e8dia els posar\u00e0 tots en llocs on podran ser editats f\u00e0cilment.", "LabelDownloadInternetMetadata": "Descarrega artwork i metadades d'internet", - "LabelDownloadInternetMetadataHelp": "El Servidor d'Emby pot descarregar informaci\u00f3 dels teus mitjans habilitant unes millors presentacions.", + "LabelDownloadInternetMetadataHelp": "El Servidor d'Emby pot descarregar informaci\u00f3 dels teus multim\u00e8dia habilitant unes millors presentacions.", "TabPreferences": "Prefer\u00e8ncies", "TabPassword": "Contrasenya", "TabLibraryAccess": "Acc\u00e9s a la Biblioteca", @@ -149,7 +149,7 @@ "ButtonAddUser": "Afegir Usuari", "ButtonAddLocalUser": "Afegir Usuari Local", "ButtonInviteUser": "Convidar Usuari", - "ButtonSave": "Save", + "ButtonSave": "Desa", "ButtonResetPassword": "Reiniciar Contrasenya", "LabelNewPassword": "Nova contrasenya:", "LabelNewPasswordConfirm": "Confirma la nova contrasenya:", @@ -157,7 +157,7 @@ "LabelCurrentPassword": "Contrasenya actual:", "LabelMaxParentalRating": "Valoraci\u00f3 m\u00e0xima permesa de control parental:", "MaxParentalRatingHelp": "El contingut amb una valoraci\u00f3 superior no ser\u00e0 mostrat a l'usuari.", - "LibraryAccessHelp": "Selecciona els directoris de mitjans a compartir amb aquest usuari. Els administradors podran editar tots els directoris emprant el gestor de metadades.", + "LibraryAccessHelp": "Selecciona els directoris dels multim\u00e8dia a compartir amb aquest usuari. Els administradors podran editar tots els directoris emprant el gestor de metadades.", "ChannelAccessHelp": "Selecciona els canals a compartir amb aquest usuari. Els administradors podran editar tots els canals emprant el gestor de metadades.", "ButtonDeleteImage": "Esborra Imatge", "LabelSelectUsers": "Selecciona usuaris:", @@ -196,10 +196,10 @@ "TabAlbums": "Albums", "TabArtists": "Artistes:", "TabAlbumArtists": "Album Artists", - "TabMusicVideos": "Music Videos", - "ButtonSort": "Ordenar", - "HeaderSortBy": "Ordenar per:", - "HeaderSortOrder": "Ordre de classificaci\u00f3", + "TabMusicVideos": "V\u00eddeos musicals", + "ButtonSort": "Ordena", + "HeaderSortBy": "Ordena per:", + "HeaderSortOrder": "Ordre de Classificaci\u00f3:", "OptionPlayed": "Reprodu\u00eft", "OptionUnplayed": "No reprodu\u00eft", "OptionAscending": "Ascendent", @@ -254,9 +254,9 @@ "OptionHasTrailer": "Tr\u00e0iler", "OptionHasThemeSong": "Can\u00e7\u00f3 Tem\u00e0tica", "OptionHasThemeVideo": "V\u00eddeo Tem\u00e0tic", - "TabMovies": "Movies", + "TabMovies": "Pel\u00b7l\u00edcules", "TabStudios": "Estudis", - "TabTrailers": "Trailers", + "TabTrailers": "Tr\u00e0ilers", "LabelArtists": "Artistes:", "LabelArtistsHelp": "Separa'n varis emprant ;", "HeaderLatestMovies": "\u00daltimes pel\u00b7l\u00edcules", @@ -306,15 +306,15 @@ "ButtonHelp": "Ajuda", "OptionAllowUserToManageServer": "Permet aquest usuari gestionar el servidor", "HeaderFeatureAccess": "Acc\u00e9s a Funcions", - "OptionAllowMediaPlayback": "Permetre reproducci\u00f3 de mitjans", + "OptionAllowMediaPlayback": "Permetre reproducci\u00f3 multim\u00e8dia", "OptionAllowBrowsingLiveTv": "Permetre acc\u00e9s a TV en directe", - "OptionAllowDeleteLibraryContent": "Permetre supressi\u00f3 de mitjans", + "OptionAllowDeleteLibraryContent": "Permetre supressi\u00f3 de multim\u00e8dia", "OptionAllowManageLiveTv": "Permetre gestionar l'enregistrament de TV en directe", "OptionAllowRemoteControlOthers": "Permetre el control remot d'altres usuaris", "OptionAllowRemoteSharedDevices": "Permetre el control remot de dispositius compartits", "OptionAllowRemoteSharedDevicesHelp": "Els dispositius dlna es consideren compartits fins que un usuari comen\u00e7a a controlar-los.", "OptionAllowLinkSharing": "Permetre compartir els mitjans a les xarxes socials", - "OptionAllowLinkSharingHelp": "Nom\u00e9s les p\u00e0gines contenint informaci\u00f3 de mitjans son compartides. Els fitxers dels mitjans mai es comparteixen p\u00fablicament. Les comparticions estan limitades per temps i expiraran en funci\u00f3 de les teves prefer\u00e8ncies de compartici\u00f3.", + "OptionAllowLinkSharingHelp": "Nom\u00e9s les p\u00e0gines contenint informaci\u00f3 de multim\u00e8dia son compartides. Els fitxers multim\u00e8dia mai es comparteixen p\u00fablicament. Les comparticions estan limitades per temps i expiraran en funci\u00f3 de les teves prefer\u00e8ncies de compartici\u00f3.", "HeaderSharing": "Compartir", "HeaderRemoteControl": "Control Remot", "OptionMissingTmdbId": "Sense id de Tmdb", @@ -355,11 +355,11 @@ "LabelTranscodingTempPathHelp": "Aquest directori cont\u00e9 fitxers emprats pel transcodificador. Especifica un directori personalitzat o deixa-ho en blanc per emprar el per defecte dins el directori de dades del servidor.", "TabBasics": "B\u00e0sics", "TabTV": "TV", - "TabGames": "Games", + "TabGames": "Jocs", "TabMusic": "M\u00fasica", "TabOthers": "Altres", "HeaderExtractChapterImagesFor": "Extrau imatges d'episodis per a:", - "OptionMovies": "Movies", + "OptionMovies": "Pel\u00b7l\u00edcules", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Altres V\u00eddeos", "TitleMetadata": "Metadades", @@ -375,7 +375,7 @@ "LabelMetadataDownloadLanguage": "Idioma preferit de desc\u00e0rrega:", "ButtonAutoScroll": "Despla\u00e7ament autom\u00e0tic", "LabelImageSavingConvention": "Convenci\u00f3 del desat d'imatges:", - "LabelImageSavingConventionHelp": "L'Emby reconeix imatges de la major part d'aplicacions de mitjans. Escollir la teva convenci\u00f3 de desc\u00e0rrega \u00e9s pr\u00e0ctic si empreu altres productes.", + "LabelImageSavingConventionHelp": "L'Emby reconeix imatges de la major part d'aplicacions multim\u00e8dia. Escollir la teva convenci\u00f3 de desc\u00e0rrega \u00e9s pr\u00e0ctic si empreu altres productes.", "OptionImageSavingCompatible": "Compatible - Emby\/Kodi\/Plex", "OptionImageSavingStandard": "Est\u00e0ndard - MB2", "ButtonSignIn": "Inicia Sessi\u00f3", @@ -388,10 +388,10 @@ "TabGuide": "Guia", "TabChannels": "Canals", "TabCollections": "Col\u00b7leccions", - "HeaderChannels": "Channels", + "HeaderChannels": "Canals", "TabRecordings": "Enregistraments", "TabScheduled": "Programats", - "TabSeries": "Series", + "TabSeries": "S\u00e8ries", "TabFavorites": "Preferits", "TabMyLibrary": "La Meva Biblioteca", "ButtonCancelRecording": "Cancel\u00b7la enregistrament", @@ -429,7 +429,7 @@ "OptionAutomatic": "Auto", "HeaderServices": "Serveis", "LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.", - "LiveTvPluginRequiredHelp": "Si us plau, instali un dels nostres plugins disponibles, com PVR o ServerWmc.", + "LiveTvPluginRequiredHelp": "Si us plau, instal\u00b7la un dels nostres complements disponibles, com Next PVR o ServerWmc.", "LabelCustomizeOptionsPerMediaType": "Personalitza per al tipus de mitj\u00e0:", "OptionDownloadThumbImage": "Miniatura", "OptionDownloadMenuImage": "Men\u00fa", @@ -449,7 +449,7 @@ "LabelMinScreenshotDownloadWidth": "Amplada m\u00ednima de desc\u00e0rrega de la captura de pantalla:", "ButtonAddScheduledTaskTrigger": "Afegir Disparador", "HeaderAddScheduledTaskTrigger": "Afegir Disparador", - "ButtonAdd": "Add", + "ButtonAdd": "Afegeix", "LabelTriggerType": "Tipus de Disparador:", "OptionDaily": "Diari", "OptionWeekly": "Setmanal", @@ -472,14 +472,14 @@ "LabelSeasonZeroDisplayName": "Nom a mostrar a la temporada 0:", "LabelEnableRealtimeMonitor": "Habilitar el monitoratge a temps real", "LabelEnableRealtimeMonitorHelp": "Els canvis es processaran immediatament als sistemes que ho suportin.", - "ButtonScanLibrary": "Escanejar Llibreria", + "ButtonScanLibrary": "Escanejar Biblioteca", "HeaderNumberOfPlayers": "Reproductors:", "OptionAnyNumberOfPlayers": "Qualsevol", "Option1Player": "1+", "Option2Player": "2+", "Option3Player": "3+", "Option4Player": "4+", - "HeaderMediaFolders": "Media Folders", + "HeaderMediaFolders": "Directoris Multim\u00e8dia", "HeaderThemeVideos": "V\u00eddeos Tem\u00e0tics", "HeaderThemeSongs": "Can\u00e7ons Tem\u00e0tiques", "HeaderScenes": "Scenes", @@ -594,7 +594,7 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "ButtonEnterSupporterKey": "Introdueix la clau d'Emby Premiere", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", - "AutoOrganizeHelp": "Auto-organitza supervisa els teus directoris de desc\u00e0rregues en cerca de nous fitxers i els mou als teus directoris de mitjans.", + "AutoOrganizeHelp": "Auto-organitza supervisa els teus directoris de desc\u00e0rregues en cerca de nous fitxers i els mou als teus directoris multim\u00e8dia.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Directori a supervisar:", @@ -626,14 +626,14 @@ "HeaderActiveDevices": "Dispositius Actius", "HeaderPendingInstallations": "Instal\u00b7lacions Pendents", "HeaderServerInformation": "Informaci\u00f3 del Servidor", - "ButtonRestartNow": "Reiniciar ara", + "ButtonRestartNow": "Reinicia ara", "ButtonRestart": "Restart", - "ButtonShutdown": "Apagar", + "ButtonShutdown": "Atura", "ButtonUpdateNow": "Update Now", "TabHosting": "Hosting", "PleaseUpdateManually": "Please shutdown the server and update manually.", "NewServerVersionAvailable": "A new version of Emby Server is available!", - "ServerUpToDate": "Emby Server is up to date", + "ServerUpToDate": "L'Emby est\u00e0 actualitzat", "LabelComponentsUpdated": "The following components have been installed or updated:", "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", "LabelDownMixAudioScale": "Audio boost when downmixing:", @@ -689,8 +689,8 @@ "NotificationOptionGamePlaybackStopped": "Game playback stopped", "NotificationOptionTaskFailed": "Scheduled task failure", "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)", + "NotificationOptionNewLibraryContent": "Nou contingut afegit", + "NotificationOptionNewLibraryContentMultiple": "Nous continguts afegits", "NotificationOptionCameraImageUploaded": "Camera image uploaded", "NotificationOptionUserLockedOut": "User locked out", "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", @@ -743,8 +743,8 @@ "LabelGroupMoviesIntoCollections": "Agrupa pel\u00b7l\u00edcules a col\u00b7leccions", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", "NotificationOptionPluginError": "Plugin failure", - "ButtonVolumeUp": "Pujar el volum", - "ButtonVolumeDown": "Baixar el volum", + "ButtonVolumeUp": "Puja el volum", + "ButtonVolumeDown": "Baixa el volum", "ButtonMute": "Mute", "HeaderLatestMedia": "Darrers Multim\u00e8dia", "OptionSpecialFeatures": "Special Features", @@ -769,7 +769,7 @@ "OptionProfileAudio": "\u00c0udio", "OptionProfileVideoAudio": "Video Audio", "OptionProfilePhoto": "Foto", - "LabelUserLibrary": "User library:", + "LabelUserLibrary": "Biblioteca d'usuari:", "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", "OptionPlainStorageFolders": "Display all folders as plain storage folders", "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", @@ -832,7 +832,7 @@ "LabelTranscodingContainer": "Container:", "LabelTranscodingVideoCodec": "C\u00f2dec de v\u00eddeo:", "LabelTranscodingVideoProfile": "Perfil de v\u00eddeo:", - "LabelTranscodingAudioCodec": "C\u00f2dec d'audio", + "LabelTranscodingAudioCodec": "C\u00f2dec d'\u00e0udio", "OptionEnableM2tsMode": "Enable M2ts mode", "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", "OptionEstimateContentLength": "Estimate content length when transcoding", @@ -855,9 +855,9 @@ "ButtonRegister": "Registrar", "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "HeaderSendMessage": "Enviar el missatge", - "ButtonSend": "Enviar", - "LabelMessageText": "Missatge de text", + "HeaderSendMessage": "Enviar Missatge", + "ButtonSend": "Envia", + "LabelMessageText": "Text del missatge:", "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Cl\u00e0ssic", @@ -909,7 +909,7 @@ "MessageLoadingContent": "Carregant contingut...", "ButtonMarkRead": "Mark Read", "OptionDefaultSort": "Per defecte", - "OptionCommunityMostWatchedSort": "Els m\u00e9s vistos", + "OptionCommunityMostWatchedSort": "Els M\u00e9s Vistos", "TabNextUp": "A Continuaci\u00f3", "PlaceholderUsername": "Nom d'usuari", "HeaderBecomeProjectSupporter": "Obtenir Emby Premiere", @@ -957,23 +957,23 @@ "ViewTypeMovieLatest": "Darrers", "ViewTypeMovieMovies": "Pel\u00b7l\u00edcules", "ViewTypeMovieCollections": "Col\u00b7leccions", - "ViewTypeMovieFavorites": "Preferits", + "ViewTypeMovieFavorites": "Preferides", "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", + "ViewTypeMusicLatest": "Novetats", "ViewTypeMusicPlaylists": "Llistes de reproducci\u00f3", - "ViewTypeMusicAlbums": "Albums", + "ViewTypeMusicAlbums": "\u00c0lbums", "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Prefer\u00e8ncies de Visualitzaci\u00f3", - "ViewTypeMusicSongs": "Songs", - "ViewTypeMusicFavorites": "Preferits", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", + "ViewTypeMusicSongs": "Can\u00e7ons", + "ViewTypeMusicFavorites": "Preferides", + "ViewTypeMusicFavoriteAlbums": "\u00c0lbums Preferits", + "ViewTypeMusicFavoriteArtists": "Artistes Preferits", "ViewTypeMusicFavoriteSongs": "Can\u00e7ons Preferides", "HeaderMyViews": "My Views", "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", "OptionDisplayAdultContent": "Display adult content", - "OptionLibraryFolders": "Media folders", + "OptionLibraryFolders": "Directoris multim\u00e8dia", "TitleRemoteControl": "Control Remot", "OptionLatestTvRecordings": "Latest recordings", "LabelProtocolInfo": "Protocol info:", @@ -1010,7 +1010,7 @@ "LabelMetadata": "Metadata:", "LabelImagesByName": "Images by name:", "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "HeaderLatestMusic": "Latest Music", + "HeaderLatestMusic": "Darrera M\u00fasica", "HeaderBranding": "Branding", "HeaderApiKeys": "Api Keys", "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Emby Server. Keys are issued by logging in with an Emby account, or by manually granting the application a key.", @@ -1086,17 +1086,17 @@ "HeaderEpisodes": "Episodes:", "OptionSeason0": "Temporada 0", "LabelReport": "Report:", - "OptionReportSongs": "Songs", - "OptionReportSeries": "Series", + "OptionReportSongs": "Can\u00e7ons", + "OptionReportSeries": "S\u00e8ries", "OptionReportSeasons": "Temporades", - "OptionReportTrailers": "Trailers", + "OptionReportTrailers": "Tr\u00e0ilers", "OptionReportMusicVideos": "V\u00eddeos musicals", - "OptionReportMovies": "Movies", + "OptionReportMovies": "Pel\u00b7l\u00edcules", "OptionReportHomeVideos": "V\u00eddeos dom\u00e8stics", - "OptionReportGames": "Games", + "OptionReportGames": "Jocs", "OptionReportEpisodes": "Episodes", "OptionReportCollections": "Col\u00b7leccions", - "OptionReportBooks": "Books", + "OptionReportBooks": "Llibres", "OptionReportArtists": "Artists", "OptionReportAlbums": "Albums", "OptionReportAdultVideos": "V\u00eddeos per adults", @@ -1110,8 +1110,8 @@ "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", "ScheduledTaskFailedWithName": "{0} failed", - "ItemAddedWithName": "{0} was added to the library", - "ItemRemovedWithName": "{0} was removed from the library", + "ItemAddedWithName": "{0} afegit a la biblioteca", + "ItemRemovedWithName": "{0} eliminat de la biblioteca", "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", "DeviceOfflineWithName": "{0} has disconnected", @@ -1143,10 +1143,10 @@ "OptionComposers": "Composers", "OptionOthers": "Others", "HeaderDownloadPeopleMetadataForHelp": "Enabling additional options will provide more on-screen information but will result in slower library scans.", - "ViewTypeFolders": "Folders", + "ViewTypeFolders": "Directoris", "LabelDisplayFoldersView": "Display a folders view to show plain media folders", "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeLiveTvChannels": "Channels", + "ViewTypeLiveTvChannels": "Canals", "LabelEasyPinCode": "Easy pin code:", "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.", "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", @@ -1247,8 +1247,8 @@ "HeaderXmlDocumentAttributes": "Xml Document Attributes", "HeaderXmlDocumentAttribute": "Xml Document Attribute", "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", + "OptionSaveMetadataAsHidden": "Desa les metadades i les imatges com a fitxers ocults", + "LabelExtractChaptersDuringLibraryScan": "Extrau imatges dels episodis durant l'escaneig de la biblioteca", "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", "LabelConnectGuestUserName": "Their Emby username or email address:", "LabelConnectUserName": "Emby username\/email:", @@ -1278,7 +1278,7 @@ "TitlePlayback": "Reproducci\u00f3", "LabelEnableCinemaModeFor": "Enable cinema mode for:", "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", + "OptionTrailersFromMyMovies": "Inclou tr\u00e0ilers de pel\u00b7l\u00edcules a la meva biblioteca", "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelEnableIntroParentalControl": "Enable smart parental control", @@ -1297,7 +1297,7 @@ "LabelEnableCinemaMode": "Enable cinema mode", "HeaderCinemaMode": "Mode Cinema", "LabelDateAddedBehavior": "Date added behavior for new content:", - "OptionDateAddedImportTime": "Use date scanned into the library", + "OptionDateAddedImportTime": "Empra la data d'escaneig", "OptionDateAddedFileTime": "Use file creation date", "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", "LabelNumberTrailerToPlay": "Number of trailers to play:", @@ -1310,7 +1310,7 @@ "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", - "LabelCustomDeviceDisplayName": "Display name:", + "LabelCustomDeviceDisplayName": "Nom a mostrar:", "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", "HeaderInviteUser": "Invite User", "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.", @@ -1352,7 +1352,7 @@ "HeaderChannelAccess": "Channel Access", "HeaderLatestItems": "Latest Items", "LabelSelectLastestItemsFolders": "Include media from the following sections in Latest Items", - "HeaderShareMediaFolders": "Share Media Folders", + "HeaderShareMediaFolders": "Compartir Directoris Multim\u00e8dia", "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", "HeaderInvitations": "Invitations", "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", @@ -1423,7 +1423,7 @@ "ButtonChangeServer": "Change Server", "HeaderConnectToServer": "Connect to Server", "OptionReportList": "List View", - "OptionReportStatistics": "Statistics", + "OptionReportStatistics": "Estad\u00edstiques", "OptionReportGrouping": "Grouping", "HeaderExport": "Export", "HeaderColumns": "Columns", @@ -1437,7 +1437,7 @@ "LabelUsername": "Username:", "HeaderSignUp": "Sign Up", "LabelPasswordConfirm": "Password (confirm):", - "ButtonAddServer": "Add Server", + "ButtonAddServer": "Afegeix Servidor", "TabHomeScreen": "Home Screen", "HeaderDisplay": "Display", "HeaderNavigation": "Navigation", @@ -1450,8 +1450,8 @@ "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", - "ButtonAddDevice": "Add Device", - "HeaderAddDevice": "Add Device", + "ButtonAddDevice": "Afegeix Dispositiu", + "HeaderAddDevice": "Afegeix Dispositiu", "HeaderExternalServices": "External Services", "LabelTunerIpAddress": "Tuner IP Address:", "TabExternalServices": "External Services", @@ -1496,7 +1496,7 @@ "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", "HeaderMetadata": "Metadades", "HeaderRecordingOptions": "Recording Options", - "ButtonShare": "Compartir", + "ButtonShare": "Comparteix", "HeaderUpcomingForKids": "Upcoming for Kids", "HeaderSetupLiveTV": "Setup Live TV", "LabelTunerType": "Tuner type:", @@ -1523,6 +1523,6 @@ "ButtonClear": "Clear", "ButtonEditImages": "Edit Images", "LabelFolder": "Folder:", - "HeadersFolders": "Folders", + "HeadersFolders": "Directoris", "LabelDisplayName": "Display name:" } \ No newline at end of file diff --git a/dashboard-ui/strings/html/de.json b/dashboard-ui/strings/html/de.json index 4f56418d7b..9d50c52526 100644 --- a/dashboard-ui/strings/html/de.json +++ b/dashboard-ui/strings/html/de.json @@ -1513,8 +1513,8 @@ "OptionEnableVideoFrameAnalysis": "Aktiviere Bild per Bild Videoanalyse.", "OptionEnableVideoFrameAnalysisHelp": "Extrahiere detaillierte Videoinformationen um die Videotranskodierung so effizient wie m\u00f6glich zu machen. Das Erstellen der Bibliothek wird dadurch l\u00e4nger dauern. ", "LabelVideoFrameAnalysisLimit": "Limitiere die Bild per Bild Analyse auf weniger als:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "LabelHardwareAccelerationType": "Hardware Beschleunigung:", + "LabelHardwareAccelerationTypeHelp": "Nur auf unterst\u00fctzten Systemen verf\u00fcgbar.", "ButtonServerDashboard": "Server Dashboard", "HeaderAdmin": "Admin", "ButtonSignOut": "Abmelden", diff --git a/dashboard-ui/strings/html/es-MX.json b/dashboard-ui/strings/html/es-MX.json index b4983541e1..8d891df3ce 100644 --- a/dashboard-ui/strings/html/es-MX.json +++ b/dashboard-ui/strings/html/es-MX.json @@ -1513,8 +1513,8 @@ "OptionEnableVideoFrameAnalysis": "Habilitar an\u00e1lisis de video cuadro por cuadro", "OptionEnableVideoFrameAnalysisHelp": "Extrae informaci\u00f3n detallada de los videos que puede ser empleada para hacer la transcodificaci\u00f3n lo m\u00e1s eficiente posible. Esto ocasionar\u00e1 que la exploraci\u00f3n de la biblioteca tome m\u00e1s tiempo.", "LabelVideoFrameAnalysisLimit": "Limitar el an\u00e1lisis cuadro por cuadro a videos menores a:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "LabelHardwareAccelerationType": "Aceleraci\u00f3n por Hardware:", + "LabelHardwareAccelerationTypeHelp": "Disponible \u00fanicamente en sistemas soportados.", "ButtonServerDashboard": "Panel de Control del Servidor", "HeaderAdmin": "Admin", "ButtonSignOut": "Cerrar Sesi\u00f3n", diff --git a/dashboard-ui/strings/html/fr.json b/dashboard-ui/strings/html/fr.json index f8151897d3..f231df8c62 100644 --- a/dashboard-ui/strings/html/fr.json +++ b/dashboard-ui/strings/html/fr.json @@ -1513,8 +1513,8 @@ "OptionEnableVideoFrameAnalysis": "Activer l'analyse vid\u00e9o image par image", "OptionEnableVideoFrameAnalysisHelp": "Extraire des informations d\u00e9taill\u00e9es sur les vid\u00e9os pour rendre le transcodage le plus efficace possible. Cette option ralentira le scan de la biblioth\u00e8que.", "LabelVideoFrameAnalysisLimit": "Limiter l'analyse image par image aux vid\u00e9os inf\u00e9rieures \u00e0 :", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "LabelHardwareAccelerationType": "Acc\u00e9l\u00e9ration mat\u00e9rielle:", + "LabelHardwareAccelerationTypeHelp": "Disponible uniquement sur les syst\u00e8mes support\u00e9s.", "ButtonServerDashboard": "Tableau de bord du serveur", "HeaderAdmin": "Admin", "ButtonSignOut": "D\u00e9connexion", diff --git a/dashboard-ui/strings/html/he.json b/dashboard-ui/strings/html/he.json index ba2ad5d2ef..726ef941a8 100644 --- a/dashboard-ui/strings/html/he.json +++ b/dashboard-ui/strings/html/he.json @@ -4,10 +4,10 @@ "LabelGithub": "Github", "LabelSwagger": "Swagger", "LabelStandard": "\u05e8\u05d2\u05d9\u05dc", - "LabelApiDocumentation": "Api Documentation", + "LabelApiDocumentation": "\u05ea\u05d9\u05e2\u05d5\u05d3 API", "LabelDeveloperResources": "Developer Resources", - "LabelBrowseLibrary": "\u05d3\u05e4\u05d3\u05e3 \u05d1\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4", - "LabelConfigureServer": "Configure Emby", + "LabelBrowseLibrary": "\u05d3\u05e4\u05d3\u05e3 \u05d1\u05e1\u05e4\u05e8\u05d9\u05d4", + "LabelConfigureServer": "\u05e7\u05d1\u05e2 \u05ea\u05e6\u05d5\u05e8\u05ea Emby", "LabelOpenLibraryViewer": "\u05e4\u05ea\u05d7 \u05de\u05e6\u05d9\u05d2 \u05ea\u05d9\u05e7\u05d9\u05d5\u05ea", "LabelRestartServer": "\u05d0\u05ea\u05d7\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea", "LabelShowLogWindow": "\u05d4\u05e8\u05d0\u05d4 \u05d7\u05dc\u05d5\u05df \u05dc\u05d5\u05d2", @@ -15,7 +15,7 @@ "LabelFinish": "\u05e1\u05d9\u05d9\u05dd", "LabelNext": "\u05d4\u05d1\u05d0", "LabelYoureDone": "\u05e1\u05d9\u05d9\u05de\u05ea!", - "WelcomeToProject": "Welcome to Emby!", + "WelcomeToProject": "\u05d1\u05e8\u05d5\u05da \u05d4\u05d1\u05d0 \u05dc Emby", "ThisWizardWillGuideYou": "\u05d0\u05e9\u05e3 \u05d6\u05d4 \u05d9\u05e2\u05d6\u05d5\u05e8 \u05dc\u05da \u05d1\u05d4\u05ea\u05dc\u05d9\u05da \u05d4\u05d4\u05ea\u05e7\u05e0\u05d4.", "TellUsAboutYourself": "\u05e1\u05e4\u05e8 \u05dc\u05e0\u05d5 \u05e2\u05dc \u05e2\u05e6\u05de\u05da", "ButtonQuickStartGuide": "Quick start guide", @@ -34,41 +34,41 @@ "LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", "LabelEnableAutomaticPortMapping": "\u05d0\u05e4\u05e9\u05e8 \u05de\u05d9\u05e4\u05d5\u05d9 \u05e4\u05d5\u05e8\u05d8\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9", "LabelEnableAutomaticPortMappingHelp": "UPnP \u05de\u05d0\u05e4\u05e9\u05e8 \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05d5\u05ea \u05e9\u05dc \u05d4\u05e8\u05d0\u05d5\u05d8\u05e8 \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d2\u05d9\u05e9\u05d4 \u05de\u05e8\u05d5\u05d7\u05e7\u05ea \u05d1\u05e7\u05dc\u05d5\u05ea. \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5 \u05e2\u05dc\u05d5\u05dc\u05d4 \u05dc\u05d0 \u05dc\u05e2\u05d1\u05d5\u05d3 \u05e2\u05dd \u05db\u05dc \u05d3\u05d2\u05de\u05d9 \u05d4\u05e8\u05d0\u05d5\u05d8\u05e8\u05d9\u05dd.", - "HeaderTermsOfService": "Emby Terms of Service", - "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", - "OptionIAcceptTermsOfService": "I accept the terms of service", - "ButtonPrivacyPolicy": "Privacy policy", - "ButtonTermsOfService": "Terms of Service", - "HeaderDeveloperOptions": "Developer Options", - "OptionEnableWebClientResponseCache": "Enable web client response caching", + "HeaderTermsOfService": "\u05ea\u05e0\u05d0\u05d9 \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05e9\u05dc Emby", + "MessagePleaseAcceptTermsOfService": "\u05d0\u05e0\u05d0 \u05d0\u05e9\u05e8 \u05e7\u05d1\u05dc\u05ea \u05ea\u05e0\u05d0\u05d9 \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05d5\u05de\u05d3\u05d9\u05e0\u05d9\u05d5\u05ea \u05d4\u05e4\u05e8\u05d8\u05d9\u05d5\u05ea \u05dc\u05e4\u05e0\u05d9 \u05e9\u05ea\u05de\u05e9\u05d9\u05da.", + "OptionIAcceptTermsOfService": "\u05d0\u05e0\u05d9 \u05de\u05e7\u05d1\u05dc \u05d0\u05ea \u05ea\u05e0\u05d0\u05d9 \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea", + "ButtonPrivacyPolicy": "\u05de\u05d3\u05d9\u05e0\u05d9\u05d5\u05ea \u05d4\u05e4\u05e8\u05d8\u05d9\u05d5\u05ea", + "ButtonTermsOfService": "\u05ea\u05e0\u05d0\u05d9 \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea", + "HeaderDeveloperOptions": "\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05de\u05e4\u05ea\u05d7\u05d9\u05dd", + "OptionEnableWebClientResponseCache": "\u05d0\u05e4\u05e9\u05e8 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05de\u05d8\u05de\u05d5\u05df \u05d1\u05d6\u05de\u05df \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05d3\u05e4\u05d3\u05e4\u05df \u05d4\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8", "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web client resource minification", + "OptionEnableWebClientResourceMinification": "\u05d0\u05e4\u05e9\u05e8 \u05de\u05d9\u05d6\u05e2\u05d5\u05e8 \u05de\u05e9\u05d0\u05d1\u05d9\u05dd \u05d1\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05d3\u05e4\u05d3\u05e4\u05df \u05d4\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8", "LabelDashboardSourcePath": "Web client source path:", "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", - "ButtonConvertMedia": "Convert media", - "ButtonOrganize": "Organize", - "LinkedToEmbyConnect": "Linked to Emby Connect", + "ButtonConvertMedia": "\u05d4\u05de\u05e8 \u05de\u05d3\u05d9\u05d4", + "ButtonOrganize": "\u05d0\u05e8\u05d2\u05df", + "LinkedToEmbyConnect": "\u05de\u05d7\u05d5\u05d1\u05e8 \u05dc Emby Connect", "HeaderSupporterBenefits": "Emby Premiere Benefits", - "HeaderAddUser": "Add User", + "HeaderAddUser": "\u05d4\u05d5\u05e1\u05e3 \u05de\u05e9\u05ea\u05de\u05e9", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", - "LabelPinCode": "Pin code:", + "LabelPinCode": "\u05e7\u05d5\u05d3 \u05d0\u05d9\u05e9\u05d9", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", "HeaderSync": "Sync", "ButtonOk": "\u05d0\u05e9\u05e8", "ButtonCancel": "\u05d1\u05d8\u05dc", - "ButtonExit": "Exit", + "ButtonExit": "\u05d9\u05e6\u05d9\u05d0\u05d4", "ButtonNew": "\u05d7\u05d3\u05e9", - "HeaderTV": "TV", + "HeaderTV": "\u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4", "HeaderAudio": "Audio", "HeaderVideo": "Video", - "HeaderPaths": "Paths", - "CategorySync": "Sync", - "TabPlaylist": "Playlist", - "HeaderEasyPinCode": "Easy Pin Code", - "HeaderGrownupsOnly": "Grown-ups Only!", - "DividerOr": "-- or --", - "HeaderInstalledServices": "Installed Services", - "HeaderAvailableServices": "Available Services", + "HeaderPaths": "\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd", + "CategorySync": "\u05e1\u05e0\u05db\u05e8\u05df", + "TabPlaylist": "\u05e8\u05e9\u05d9\u05de\u05ea \u05e0\u05d2\u05d9\u05e0\u05d4", + "HeaderEasyPinCode": "\u05e7\u05d5\u05d3 \u05d0\u05d9\u05e9\u05d9 \u05e7\u05dc", + "HeaderGrownupsOnly": "\u05de\u05d1\u05d5\u05d2\u05e8\u05d9\u05dd \u05d1\u05dc\u05d1\u05d3!", + "DividerOr": "-- \u05d0\u05d5 --", + "HeaderInstalledServices": "\u05e9\u05d9\u05e8\u05d5\u05ea\u05d9\u05dd \u05de\u05d5\u05ea\u05e7\u05e0\u05d9\u05dd", + "HeaderAvailableServices": "\u05e9\u05d9\u05e8\u05d5\u05ea\u05d9\u05dd \u05d6\u05de\u05d9\u05e0\u05d9\u05dd", "MessageNoServicesInstalled": "No services are currently installed.", "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.", @@ -76,7 +76,7 @@ "HeaderAdultsReadHere": "Adults Read Here!", "RegisterWithPayPal": "Register with PayPal", "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", + "HeaderEnjoyDayTrial": "\u05ea\u05d4\u05e0\u05d4 \u05de 14 \u05d9\u05de\u05d9 \u05e0\u05e1\u05d9\u05d5\u05df \u05d7\u05d9\u05e0\u05dd", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -84,13 +84,13 @@ "TitleNotifications": "Notifications", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", - "LabelEnterConnectUserName": "Username or email:", + "LabelEnterConnectUserName": "\u05e9\u05dd \u05de\u05e9\u05ea\u05de\u05e9 \u05d0\u05d5 \u05d3\u05d5\u05d0\"\u05dc", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", "LabelEnableEnhancedMovies": "Enable enhanced movie displays", "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", - "FolderTypeMovies": "Movies", + "FolderTypeMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", "FolderTypeMusic": "Music", "FolderTypeAdultVideos": "Adult videos", "FolderTypePhotos": "Photos", @@ -98,18 +98,18 @@ "FolderTypeHomeVideos": "Home videos", "FolderTypeGames": "Games", "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", + "FolderTypeTvShows": "\u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4", "FolderTypeInherit": "Inherit", - "LabelContentType": "Content type:", - "TitleScheduledTasks": "Scheduled Tasks", + "LabelContentType": "\u05e1\u05d5\u05d2 \u05d4\u05ea\u05d5\u05db\u05df", + "TitleScheduledTasks": "\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05d5\u05ea", "HeaderSetupLibrary": "Setup your media libraries", "ButtonAddMediaFolder": "\u05d4\u05d5\u05e1\u05e3 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05de\u05d3\u05d9\u05d4", "LabelFolderType": "\u05e1\u05d5\u05d2 \u05d4\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4:", "ReferToMediaLibraryWiki": "\u05e4\u05e0\u05d4 \u05dc\u05de\u05d9\u05d3\u05e2 \u05d0\u05d5\u05d3\u05d5\u05ea \u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4.", "LabelCountry": "\u05de\u05d3\u05d9\u05e0\u05d4:", "LabelLanguage": "\u05e9\u05e4\u05d4:", - "LabelTimeLimitHours": "Time limit (hours):", - "ButtonJoinTheDevelopmentTeam": "Join the Development Team", + "LabelTimeLimitHours": "\u05d4\u05d2\u05d1\u05dc\u05ea \u05d6\u05de\u05df (\u05d1\u05e9\u05e2\u05d5\u05ea)", + "ButtonJoinTheDevelopmentTeam": "\u05d4\u05e6\u05d8\u05e8\u05e3 \u05dc\u05e6\u05d5\u05d5\u05ea \u05d4\u05e4\u05d9\u05ea\u05d5\u05d7", "HeaderPreferredMetadataLanguage": "\u05e9\u05e4\u05ea \u05de\u05d9\u05d3\u05e2 \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:", "LabelSaveLocalMetadata": "\u05e9\u05de\u05d5\u05e8 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05d5\u05de\u05d9\u05d3\u05e2 \u05d1\u05ea\u05d5\u05da \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4", "LabelSaveLocalMetadataHelp": "\u05e9\u05de\u05d9\u05e8\u05ea \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05d5\u05de\u05d9\u05d3\u05e2 \u05d9\u05e9\u05d9\u05e8\u05d5\u05ea \u05d1\u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05ea\u05d0\u05e4\u05e9\u05e8 \u05e2\u05e8\u05d9\u05db\u05d4 \u05e0\u05d5\u05d7\u05d4 \u05d5\u05e7\u05dc\u05d4 \u05e9\u05dc\u05d4\u05dd.", @@ -118,7 +118,7 @@ "TabPreferences": "\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea", "TabPassword": "\u05e1\u05d9\u05e1\u05de\u05d0", "TabLibraryAccess": "\u05d2\u05d9\u05e9\u05d4 \u05dc\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea", - "TabAccess": "Access", + "TabAccess": "\u05d2\u05d9\u05e9\u05d4", "TabImage": "\u05ea\u05de\u05d5\u05e0\u05d4", "TabProfile": "\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc", "TabMetadata": "Metadata", @@ -136,10 +136,10 @@ "HeaderPlaybackSettings": "\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05e0\u05d9\u05d2\u05d5\u05df", "LabelAudioLanguagePreference": "\u05e9\u05e4\u05ea \u05e7\u05d5\u05dc \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:", "LabelSubtitleLanguagePreference": "\u05e9\u05e4\u05ea \u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:", - "OptionDefaultSubtitles": "Default", + "OptionDefaultSubtitles": "\u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc", "OptionOnlyForcedSubtitles": "Only forced subtitles", "OptionAlwaysPlaySubtitles": "Always play subtitles", - "OptionNoSubtitles": "No Subtitles", + "OptionNoSubtitles": "\u05dc\u05dc\u05d0 \u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea", "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", @@ -147,7 +147,7 @@ "TabProfiles": "\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc\u05d9\u05dd", "TabSecurity": "\u05d1\u05d8\u05d9\u05d7\u05d5\u05ea", "ButtonAddUser": "\u05d4\u05d5\u05e1\u05e3 \u05de\u05e9\u05ea\u05de\u05e9", - "ButtonAddLocalUser": "Add Local User", + "ButtonAddLocalUser": "\u05d4\u05d5\u05e1\u05e3 \u05de\u05e9\u05ea\u05de\u05e9 \u05de\u05e7\u05d5\u05de\u05d9", "ButtonInviteUser": "Invite User", "ButtonSave": "\u05e9\u05de\u05d5\u05e8", "ButtonResetPassword": "\u05d0\u05d9\u05e4\u05d5\u05e1 \u05e1\u05d9\u05e1\u05de\u05d0", @@ -248,8 +248,8 @@ "LabelFeatures": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd:", "LabelService": "Service:", "LabelStatus": "Status:", - "LabelVersion": "Version:", - "LabelLastResult": "Last result:", + "LabelVersion": "\u05d2\u05d9\u05e8\u05e1\u05d4", + "LabelLastResult": "\u05ea\u05d5\u05e6\u05d0\u05d4 \u05e1\u05d5\u05e4\u05d9\u05ea", "OptionHasSubtitles": "\u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea", "OptionHasTrailer": "\u05d8\u05e8\u05d9\u05d9\u05dc\u05e8", "OptionHasThemeSong": "\u05e9\u05d9\u05e8 \u05e0\u05d5\u05e9\u05d0", @@ -257,7 +257,7 @@ "TabMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", "TabStudios": "\u05d0\u05d5\u05dc\u05e4\u05e0\u05d9\u05dd", "TabTrailers": "\u05d8\u05e8\u05d9\u05d9\u05dc\u05e8\u05d9\u05dd", - "LabelArtists": "Artists:", + "LabelArtists": "\u05d0\u05de\u05df", "LabelArtistsHelp": "Separate multiple using ;", "HeaderLatestMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd", "HeaderLatestTrailers": "\u05d8\u05e8\u05d9\u05d9\u05dc\u05d9\u05e8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd", @@ -278,8 +278,8 @@ "OptionThursday": "\u05d7\u05de\u05d9\u05e9\u05d9", "OptionFriday": "\u05e9\u05d9\u05e9\u05d9", "OptionSaturday": "\u05e9\u05d1\u05ea", - "HeaderManagement": "Management", - "LabelManagement": "Management:", + "HeaderManagement": "\u05e0\u05d9\u05d4\u05d5\u05dc", + "LabelManagement": "\u05e0\u05d9\u05d4\u05d5\u05dc", "OptionMissingImdbId": "\u05d7\u05e1\u05e8 \u05de\u05d6\u05d4\u05d4 IMBb", "OptionMissingTvdbId": "\u05d7\u05e1\u05e8 \u05de\u05d6\u05d4\u05d4 TheTVDB", "OptionMissingOverview": "\u05d7\u05e1\u05e8\u05d4 \u05e1\u05e7\u05d9\u05e8\u05d4", @@ -306,16 +306,16 @@ "ButtonHelp": "Help", "OptionAllowUserToManageServer": "\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05dc\u05e0\u05d4\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea", "HeaderFeatureAccess": "\u05d2\u05d9\u05e9\u05d4 \u05dc\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd", - "OptionAllowMediaPlayback": "Allow media playback", + "OptionAllowMediaPlayback": "\u05d4\u05e8\u05e9\u05d4 \u05e0\u05d2\u05d9\u05e0\u05ea \u05de\u05d3\u05d9\u05d4", "OptionAllowBrowsingLiveTv": "Allow Live TV access", "OptionAllowDeleteLibraryContent": "Allow media deletion", "OptionAllowManageLiveTv": "Allow Live TV recording management", "OptionAllowRemoteControlOthers": "Allow remote control of other users", "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowLinkSharing": "Allow social media sharing", + "OptionAllowLinkSharing": "\u05d0\u05e4\u05e9\u05e8 \u05e9\u05d9\u05ea\u05d5\u05e3 \u05d1\u05e8\u05e9\u05ea\u05d5\u05ea \u05d7\u05d1\u05e8\u05ea\u05d9\u05d5\u05ea", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.", - "HeaderSharing": "Sharing", + "HeaderSharing": "\u05e9\u05d9\u05ea\u05d5\u05e3", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "\u05d7\u05d6\u05e8 \u05de\u05d6\u05d4\u05d4 Tmdb", "OptionIsHD": "HD", @@ -345,7 +345,7 @@ "LabelCustomPaths": "\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea \u05d4\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05d4\u05e8\u05e6\u05d5\u05d9\u05d9\u05dd. \u05d4\u05e9\u05d0\u05e8 \u05e9\u05d3\u05d5\u05ea \u05e8\u05d9\u05e7\u05d9\u05dd \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05d1\u05e8\u05d9\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc.", "LabelCachePath": "\u05e0\u05ea\u05d9\u05d1 cache:", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelRecordingPath": "Recording path:", + "LabelRecordingPath": "\u05e0\u05ea\u05d9\u05d1 \u05d4\u05e7\u05dc\u05d8\u05d5\u05ea", "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelImagesByNamePath": "\u05e0\u05ea\u05d9\u05d1 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea Images by name:", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", @@ -354,7 +354,7 @@ "LabelTranscodingTempPath": "\u05e0\u05ea\u05d9\u05d1 \u05dc\u05e7\u05d9\u05d3\u05d5\u05d3 \u05d6\u05de\u05e0\u05d9:", "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", "TabBasics": "\u05db\u05dc\u05dc\u05d9", - "TabTV": "TV", + "TabTV": "\u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4", "TabGames": "\u05de\u05e9\u05d7\u05e7\u05d9\u05dd", "TabMusic": "\u05de\u05d5\u05e1\u05d9\u05e7\u05d4", "TabOthers": "\u05d0\u05d7\u05e8\u05d9\u05dd", @@ -393,7 +393,7 @@ "TabScheduled": "\u05dc\u05d5\u05d7 \u05d6\u05de\u05e0\u05d9\u05dd", "TabSeries": "\u05e1\u05d3\u05e8\u05d5\u05ea", "TabFavorites": "Favorites", - "TabMyLibrary": "My Library", + "TabMyLibrary": "\u05d4\u05e1\u05e4\u05e8\u05d9\u05d4 \u05e9\u05dc\u05d9", "ButtonCancelRecording": "\u05d1\u05d8\u05dc \u05d4\u05e7\u05dc\u05d8\u05d4", "HeaderPrePostPadding": "\u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05e7\u05d3\u05d9\u05dd\/\u05de\u05d0\u05d5\u05d7\u05e8", "LabelPrePaddingMinutes": "\u05d3\u05e7\u05d5\u05ea \u05e9\u05dc \u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05e7\u05d3\u05d9\u05dd:", @@ -408,7 +408,7 @@ "ButtonRefresh": "Refresh", "ButtonAdvancedRefresh": "Advanced Refresh", "OptionPriority": "\u05e2\u05d3\u05d9\u05e4\u05d5\u05ea", - "OptionRecordOnAllChannels": "Record on all channels", + "OptionRecordOnAllChannels": "\u05d4\u05e7\u05dc\u05d8 \u05d1\u05db\u05dc \u05d4\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "\u05d4\u05e7\u05dc\u05d8 \u05e8\u05e7 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd", "HeaderRepeatingOptions": "Repeating Options", @@ -540,17 +540,17 @@ "LinkApiDocumentation": "\u05de\u05e1\u05de\u05db\u05d9 \u05e2\u05e8\u05db\u05ea \u05e4\u05d9\u05ea\u05d5\u05d7", "LabelFriendlyServerName": "\u05e9\u05dd \u05e9\u05e8\u05ea \u05d9\u05d3\u05d9\u05d3\u05d5\u05ea\u05d9:", "LabelFriendlyServerNameHelp": "\u05d4\u05e9\u05dd \u05d9\u05ea\u05df \u05dc\u05d6\u05d9\u05d4\u05d5\u05d9 \u05d4\u05e9\u05e8\u05ea. \u05d0\u05dd \u05de\u05d5\u05e9\u05d0\u05e8 \u05e8\u05d9\u05e7, \u05e9\u05dd \u05d4\u05e9\u05e8\u05ea \u05d9\u05d4\u05d9\u05d4 \u05e9\u05dd \u05d4\u05de\u05d7\u05e9\u05d1.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", + "LabelPreferredDisplayLanguage": "\u05e9\u05e4\u05ea \u05de\u05de\u05e9\u05e7 \u05de\u05d5\u05e2\u05d3\u05e4\u05ea", + "LabelPreferredDisplayLanguageHelp": "\u05ea\u05e8\u05d2\u05d5\u05dd \u05d4\u05de\u05de\u05e9\u05e7 \u05e9\u05dc Emby \u05d4\u05d5\u05d0 \u05ea\u05d4\u05dc\u05d9\u05da \u05de\u05de\u05d5\u05e9\u05da", + "LabelReadHowYouCanContribute": "\u05dc\u05de\u05d3 \u05d0\u05d9\u05da \u05ea\u05d5\u05db\u05dc \u05dc\u05ea\u05e8\u05d5\u05dd", "HeaderNewCollection": "\u05d0\u05d5\u05e4\u05e1\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd", "ButtonSubmit": "Submit", "ButtonCreate": "\u05e6\u05d5\u05e8", - "LabelCustomCss": "Custom css:", + "LabelCustomCss": "CSS \u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea", "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelLocalHttpServerPortNumber": "Local http port number:", + "LabelLocalHttpServerPortNumber": "\u05de\u05e1\u05e4\u05e8 \u05e4\u05d5\u05e8\u05d8 HTTP \u05de\u05e7\u05d5\u05de\u05d9", "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.", - "LabelPublicHttpPort": "Public http port number:", + "LabelPublicHttpPort": "\u05de\u05e1\u05e4\u05e8 \u05e4\u05d5\u05e8\u05d8 HTTP \u05e4\u05d5\u05de\u05d1\u05d9", "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", "LabelPublicHttpsPort": "Public https port number:", "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", @@ -581,12 +581,12 @@ "HeaderProgram": "\u05ea\u05d5\u05db\u05e0\u05d4", "HeaderClients": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd", "LabelCompleted": "\u05d4\u05d5\u05e9\u05dc\u05dd", - "LabelFailed": "Failed", + "LabelFailed": "\u05e0\u05db\u05e9\u05dc", "LabelSkipped": "\u05d3\u05d5\u05dc\u05d2", "HeaderEpisodeOrganization": "\u05d0\u05d9\u05e8\u05d2\u05d5\u05df \u05e4\u05e8\u05e7\u05d9\u05dd", - "LabelSeries": "Series:", - "LabelSeasonNumber": "Season number", - "LabelEpisodeNumber": "Episode number", + "LabelSeries": "\u05e1\u05d3\u05e8\u05d4", + "LabelSeasonNumber": "\u05de\u05e1\u05e4\u05e8 \u05e2\u05d5\u05e0\u05d4", + "LabelEpisodeNumber": "\u05de\u05e1\u05e4\u05e8 \u05e4\u05e8\u05e7", "LabelEndingEpisodeNumber": "\u05de\u05e1\u05e4\u05e8 \u05e1\u05d9\u05d5\u05dd \u05e4\u05e8\u05e7:", "LabelEndingEpisodeNumberHelp": "\u05d4\u05db\u05e8\u05d7\u05d9 \u05e8\u05e7 \u05e2\u05d1\u05d5\u05e8 \u05e7\u05d1\u05e6\u05d9\u05dd \u05e9\u05dc \u05e4\u05e8\u05e7\u05d9\u05dd \u05de\u05d7\u05d5\u05d1\u05e8\u05d9\u05dd", "HeaderSupportTheTeam": "Support the Emby Team", @@ -625,7 +625,7 @@ "HeaderRunningTasks": "\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05e8\u05e6\u05d5\u05ea", "HeaderActiveDevices": "\u05de\u05db\u05e9\u05d9\u05e8\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd", "HeaderPendingInstallations": "\u05d4\u05ea\u05e7\u05e0\u05d5\u05ea \u05d1\u05d4\u05de\u05ea\u05e0\u05d4", - "HeaderServerInformation": "Server Information", + "HeaderServerInformation": "\u05de\u05d9\u05d3\u05e2 \u05e2\u05dc \u05d4\u05e9\u05e8\u05ea", "ButtonRestartNow": "\u05d4\u05ea\u05d7\u05dc \u05de\u05d7\u05d3\u05e9 \u05db\u05e2\u05d8", "ButtonRestart": "\u05d4\u05ea\u05d7\u05e8 \u05de\u05d7\u05d3\u05e9", "ButtonShutdown": "\u05db\u05d1\u05d4", @@ -633,7 +633,7 @@ "TabHosting": "Hosting", "PleaseUpdateManually": "\u05d0\u05e0\u05d0, \u05db\u05d1\u05d4 \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05d5\u05e2\u05d3\u05db\u05df \u05d9\u05d3\u05e0\u05d9\u05ea.", "NewServerVersionAvailable": "A new version of Emby Server is available!", - "ServerUpToDate": "Emby Server is up to date", + "ServerUpToDate": "\u05e9\u05e8\u05ea Emby \u05de\u05e2\u05d5\u05d3\u05db\u05df", "LabelComponentsUpdated": "\u05d4\u05e8\u05db\u05d9\u05d1\u05d9\u05dd \u05d4\u05d1\u05d0\u05d9\u05dd \u05d4\u05d5\u05ea\u05e7\u05e0\u05d5 \u05d0\u05d5 \u05e2\u05d5\u05d3\u05db\u05e0\u05d5:", "MessagePleaseRestartServerToFinishUpdating": "\u05d0\u05e0\u05d0 \u05d0\u05ea\u05d7\u05dc \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05dc\u05d1\u05d9\u05e6\u05d5\u05e2 \u05d4\u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd.", "LabelDownMixAudioScale": "Audio boost when downmixing:", @@ -664,7 +664,7 @@ "LabelDefaultUser": "\u05de\u05e9\u05ea\u05de\u05e9 \u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05e9:", "LabelDefaultUserHelp": "\u05de\u05d2\u05d3\u05d9\u05e8 \u05d0\u05d9\u05dc\u05d5 \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05de\u05e9\u05ea\u05de\u05e9 \u05d9\u05d5\u05e6\u05d2\u05d5 \u05d1\u05de\u05db\u05e9\u05d9\u05e8\u05d9\u05dd \u05de\u05d7\u05d5\u05d1\u05e8\u05d9\u05dd. \u05e0\u05d9\u05ea\u05df \u05dc\u05e2\u05e7\u05d5\u05e3 \u05d6\u05d0\u05ea \u05dc\u05db\u05dc \u05de\u05db\u05e9\u05d9\u05e8 \u05e2\u05dc \u05d9\u05d3\u05d9 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc\u05d9\u05dd.", "TitleDlna": "DLNA", - "TitleChannels": "Channels", + "TitleChannels": "\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd", "HeaderServerSettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e9\u05e8\u05ea", "LabelWeatherDisplayLocation": "\u05de\u05e7\u05d5\u05dd \u05d4\u05e6\u05d2\u05ea \u05de\u05d6\u05d2 \u05d4\u05d0\u05d5\u05d5\u05d9\u05e8:", "LabelWeatherDisplayLocationHelp": "\u05de\u05d9\u05e7\u05d5\u05d3 \u05d0\u05e8\u05d4\"\u05d1 \/ \u05e2\u05d9\u05e8, \u05de\u05d3\u05d9\u05e0\u05d4, \u05d0\u05e8\u05e5 \/ \u05e2\u05d9\u05e8, \u05d0\u05e8\u05e5", @@ -681,16 +681,16 @@ "NotificationOptionPluginUpdateInstalled": "\u05e2\u05d3\u05db\u05d5\u05df \u05ea\u05d5\u05e1\u05e3 \u05d4\u05d5\u05ea\u05e7\u05df", "NotificationOptionPluginInstalled": "\u05ea\u05d5\u05e1\u05e3 \u05d4\u05d5\u05ea\u05e7\u05df", "NotificationOptionPluginUninstalled": "\u05ea\u05d5\u05e1\u05e3 \u05d4\u05d5\u05e1\u05e8", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", + "NotificationOptionVideoPlayback": "\u05e0\u05d2\u05d9\u05e0\u05ea \u05d5\u05d9\u05d3\u05d0\u05d5 \u05d4\u05d7\u05dc\u05d4", + "NotificationOptionAudioPlayback": "\u05e0\u05d2\u05d9\u05e0\u05ea \u05e6\u05dc\u05d9\u05dc \u05d4\u05d7\u05dc\u05d4", "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", + "NotificationOptionVideoPlaybackStopped": "\u05e0\u05d2\u05d9\u05e0\u05ea \u05d5\u05d9\u05d3\u05d0\u05d5 \u05d4\u05d5\u05e4\u05e1\u05e7\u05d4", + "NotificationOptionAudioPlaybackStopped": "\u05e0\u05d2\u05d9\u05e0\u05ea \u05e6\u05dc\u05d9\u05dc \u05d4\u05d5\u05e4\u05e1\u05e7\u05d4", "NotificationOptionGamePlaybackStopped": "Game playback stopped", "NotificationOptionTaskFailed": "\u05de\u05e9\u05d9\u05de\u05d4 \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05ea \u05e0\u05db\u05e9\u05dc\u05d4", "NotificationOptionInstallationFailed": "\u05d4\u05ea\u05e7\u05e0\u05d4 \u05e0\u05db\u05e9\u05dc\u05d4", "NotificationOptionNewLibraryContent": "\u05ea\u05d5\u05db\u05df \u05d7\u05d3\u05e9 \u05e0\u05d5\u05e1\u05e3", - "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)", + "NotificationOptionNewLibraryContentMultiple": "\u05d4\u05ea\u05d5\u05d5\u05e1\u05e4\u05d5 \u05ea\u05db\u05e0\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd", "NotificationOptionCameraImageUploaded": "Camera image uploaded", "NotificationOptionUserLockedOut": "User locked out", "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", @@ -738,38 +738,38 @@ "ButtonNextTrack": "Next track", "ButtonStop": "Stop", "ButtonPause": "Pause", - "ButtonNext": "Next", - "ButtonPrevious": "Previous", + "ButtonNext": "\u05d4\u05d1\u05d0", + "ButtonPrevious": "\u05d4\u05e7\u05d5\u05d3\u05dd", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", - "ButtonVolumeUp": "Volume up", - "ButtonVolumeDown": "Volume down", + "NotificationOptionPluginError": "\u05ea\u05e7\u05dc\u05d4 \u05d1\u05ea\u05d5\u05e1\u05e3", + "ButtonVolumeUp": "\u05d4\u05e8\u05dd \u05e2\u05d5\u05e6\u05de\u05ea \u05e9\u05de\u05e2", + "ButtonVolumeDown": "\u05d4\u05d5\u05e8\u05d3 \u05e2\u05d5\u05e6\u05de\u05ea \u05e9\u05de\u05e2", "ButtonMute": "Mute", "HeaderLatestMedia": "Latest Media", "OptionSpecialFeatures": "Special Features", - "HeaderCollections": "Collections", + "HeaderCollections": "\u05d0\u05d5\u05e1\u05e4\u05d9\u05dd", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", "HeaderResponseProfile": "Response Profile", - "LabelType": "Type:", + "LabelType": "\u05e1\u05d5\u05d2", "LabelPersonRole": "Role:", "LabelPersonRoleHelp": "Role is generally only applicable to actors.", "LabelProfileContainer": "Container:", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", + "LabelProfileVideoCodecs": "\u05de\u05e7\u05d5\u05d3\u05d3\u05d9 \u05d5\u05d9\u05d3\u05d0\u05d5", + "LabelProfileAudioCodecs": "\u05de\u05e7\u05d5\u05d3\u05d3\u05d9 \u05e6\u05dc\u05d9\u05dc", + "LabelProfileCodecs": "\u05de\u05e7\u05d5\u05d3\u05d3\u05d9\u05dd", "HeaderDirectPlayProfile": "Direct Play Profile", "HeaderTranscodingProfile": "Transcoding Profile", "HeaderCodecProfile": "Codec Profile", "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", "HeaderContainerProfile": "Container Profile", "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "OptionProfileVideo": "Video", - "OptionProfileAudio": "Audio", - "OptionProfileVideoAudio": "Video Audio", - "OptionProfilePhoto": "Photo", - "LabelUserLibrary": "User library:", + "OptionProfileVideo": "\u05d5\u05d9\u05d3\u05d0\u05d5", + "OptionProfileAudio": "\u05e6\u05dc\u05d9\u05dc", + "OptionProfileVideoAudio": "\u05e6\u05dc\u05d9\u05dc \u05d5\u05d9\u05d3\u05d0\u05d5", + "OptionProfilePhoto": "\u05ea\u05de\u05d5\u05e0\u05d4", + "LabelUserLibrary": "\u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05de\u05e9\u05ea\u05de\u05e9", "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", "OptionPlainStorageFolders": "Display all folders as plain storage folders", "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", @@ -780,7 +780,7 @@ "HeaderIdentification": "Identification", "TabDirectPlay": "Direct Play", "TabContainers": "Containers", - "TabCodecs": "Codecs", + "TabCodecs": "\u05de\u05e7\u05d5\u05d3\u05d3\u05d9\u05dd", "TabResponses": "Responses", "HeaderProfileInformation": "Profile Information", "LabelEmbedAlbumArtDidl": "Embed album art in Didl", @@ -931,8 +931,8 @@ "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", "ButtonOptions": "Options", "ViewTypePlaylists": "Playlists", - "ViewTypeMovies": "Movies", - "ViewTypeTvShows": "TV", + "ViewTypeMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", + "ViewTypeTvShows": "\u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", "ViewTypeMusicGenres": "Genres", @@ -955,7 +955,7 @@ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", "ViewTypeMovieResume": "Resume", "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", + "ViewTypeMovieMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", "ViewTypeMovieCollections": "Collections", "ViewTypeMovieFavorites": "Favorites", "ViewTypeMovieGenres": "Genres", @@ -1091,7 +1091,7 @@ "OptionReportSeasons": "Seasons", "OptionReportTrailers": "Trailers", "OptionReportMusicVideos": "Music videos", - "OptionReportMovies": "Movies", + "OptionReportMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", "OptionReportHomeVideos": "Home videos", "OptionReportGames": "Games", "OptionReportEpisodes": "Episodes", @@ -1278,8 +1278,8 @@ "TitlePlayback": "Playback", "LabelEnableCinemaModeFor": "Enable cinema mode for:", "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", + "OptionTrailersFromMyMovies": "\u05db\u05dc\u05d5\u05dc \u05e7\u05d3\u05d9\u05de\u05d5\u05e0\u05d9\u05dd \u05de\u05e1\u05e8\u05d8\u05d9\u05dd \u05d1\u05e1\u05e4\u05e8\u05d9\u05d4 \u05e9\u05dc\u05d9", + "OptionUpcomingMoviesInTheaters": "\u05db\u05dc\u05d5\u05dc \u05e7\u05d3\u05d9\u05de\u05d5\u05e0\u05d9\u05dd \u05de\u05e1\u05e8\u05d8\u05d9\u05dd \u05d4\u05de\u05d2\u05d9\u05e2\u05d9\u05dd \u05dc\u05e7\u05d5\u05dc\u05e0\u05d5\u05e2", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", @@ -1295,7 +1295,7 @@ "LabelDisplayTrailersWithinMovieSuggestionsHelp": "Requires installation of the Trailer channel.", "CinemaModeConfigurationHelp2": "Emby apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", "LabelEnableCinemaMode": "Enable cinema mode", - "HeaderCinemaMode": "Cinema Mode", + "HeaderCinemaMode": "\u05de\u05e6\u05d1 \u05e7\u05d5\u05dc\u05e0\u05d5\u05e2", "LabelDateAddedBehavior": "Date added behavior for new content:", "OptionDateAddedImportTime": "Use date scanned into the library", "OptionDateAddedFileTime": "Use file creation date", @@ -1381,9 +1381,9 @@ "LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", - "OptionTVMovies": "TV Movies", - "HeaderUpcomingMovies": "Upcoming Movies", + "LabelEnableInternetMetadataForTvPrograms": "\u05d4\u05d5\u05e8\u05d3 \u05de\u05d4\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 \u05de\u05d9\u05d3\u05e2 \u05e2\u05dc", + "OptionTVMovies": "\u05e1\u05e8\u05d8\u05d9 \u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4", + "HeaderUpcomingMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05e2\u05ea\u05d9\u05d3\u05d9\u05d9\u05dd", "HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingPrograms": "Upcoming Programs", "ButtonMoreItems": "More", @@ -1443,7 +1443,7 @@ "HeaderNavigation": "Navigation", "LegendTheseSettingsShared": "These settings are shared on all devices", "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionOtherTrailers": "Include trailers from older movies", + "OptionOtherTrailers": "\u05db\u05dc\u05d5\u05dc \u05e7\u05d3\u05d9\u05de\u05d5\u05e0\u05d9\u05dd \u05de\u05e1\u05e8\u05d8\u05d9\u05dd \u05d9\u05e9\u05e0\u05d9\u05dd \u05d9\u05d5\u05ea\u05e8", "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", diff --git a/dashboard-ui/strings/html/hu.json b/dashboard-ui/strings/html/hu.json new file mode 100644 index 0000000000..cbd06dbfb4 --- /dev/null +++ b/dashboard-ui/strings/html/hu.json @@ -0,0 +1,1528 @@ +{ + "LabelExit": "Kil\u00e9p\u00e9s", + "LabelVisitCommunity": "K\u00f6z\u00f6ss\u00e9g", + "LabelGithub": "Github", + "LabelSwagger": "Swagger", + "LabelStandard": "Alap", + "LabelApiDocumentation": "Api dokument\u00e1ci\u00f3", + "LabelDeveloperResources": "Fejleszt\u0151i eszk\u00f6z\u00f6k", + "LabelBrowseLibrary": "M\u00e9diat\u00e1r tall\u00f3z\u00e1sa", + "LabelConfigureServer": "Emby konfigur\u00e1l\u00e1sa", + "LabelOpenLibraryViewer": "M\u00e9diat\u00e1r lej\u00e1tsz\u00f3 megnyit\u00e1sa", + "LabelRestartServer": "Szerver \u00fajraindit\u00e1sa", + "LabelShowLogWindow": "Bejelentkez\u00e9si ablak mutat\u00e1sa", + "LabelPrevious": "El\u0151z\u0151", + "LabelFinish": "Befejez", + "LabelNext": "K\u00f6vetkez\u0151", + "LabelYoureDone": "K\u00e9szen vagy!", + "WelcomeToProject": "\u00dcdv az Embyben!", + "ThisWizardWillGuideYou": "Ez a var\u00e1zsl\u00f3 v\u00e9gigvezet a telep\u00edt\u00e9sen. A kezd\u00e9shez v\u00e1lasz nyelvet.", + "TellUsAboutYourself": "Mondj valamit magadr\u00f3l", + "ButtonQuickStartGuide": "Gyorsbe\u00e1ll\u00edt\u00e1s var\u00e1zsl\u00f3", + "LabelYourFirstName": "Keresztneved:", + "MoreUsersCanBeAddedLater": "T\u00f6bb felhaszn\u00e1l\u00f3t a vez\u00e9rl\u0151pultban adhatsz hozz\u00e1.", + "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", + "LabelWindowsService": "Windows Service", + "AWindowsServiceHasBeenInstalled": "A Windows szolg\u00e1ltat\u00e1s telep\u00edtve lett.", + "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", + "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.", + "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", + "LabelConfigureSettings": "Be\u00e1ll\u00edt\u00e1sok szerkeszt\u00e9se", + "LabelEnableVideoImageExtraction": "Vide\u00f3 el\u0151n\u00e9zeti k\u00e9p enged\u00e9lyez\u00e9se", + "VideoImageExtractionHelp": "Azokhoz a vide\u00f3khoz amiknek nincs m\u00e9g el\u0151n\u00e9zeti k\u00e9pe \u00e9s nem tal\u00e1lhat\u00f3 internetes k\u00e9p. Tov\u00e1bb tart a m\u00e9diat\u00e1r kezdeti elemz\u00e9se, de sokkal szebb lesz a bemutat\u00e1s.", + "LabelEnableChapterImageExtractionForMovies": "El\u0151n\u00e9zeti k\u00e9p enged\u00e9lyez\u00e9se a vide\u00f3 fejezetekhez", + "LabelChapterImageExtractionForMoviesHelp": "Az el\u0151n\u00e9zeti k\u00e9p a fejezetekhez enged\u00e9lyezi a felhaszn\u00e1l\u00f3knak a grafikus jelenet v\u00e1laszt\u00e1st. A folyamat lass\u00fa \u00e9s sok processzor er\u0151forr\u00e1st haszn\u00e1l valamint sz\u00e1mos gigabyte helyet. \u00c9jszakai karbantart\u00e1si feladatk\u00e9nt fut, valamint be\u00e1ll\u00edthat\u00f3 az \u00fctemezett feladatokn\u00e1l. Nem aj\u00e1nlott a feladat futtat\u00e1sa cs\u00facs id\u0151szakban.", + "LabelEnableAutomaticPortMapping": "Automatikus port mapping enged\u00e9lyez\u00e9se", + "LabelEnableAutomaticPortMappingHelp": "Az UPnp enged\u00e9lyezi az automatikus routert be\u00e1ll\u00edt\u00e1st a k\u00f6nny\u0171 t\u00e1voli el\u00e9r\u00e9shez. Nem mindegyik routerrel m\u0171k\u00f6dik.", + "HeaderTermsOfService": "Emby felhaszn\u00e1l\u00e1si felt\u00e9telek", + "MessagePleaseAcceptTermsOfService": "K\u00e9rlek fogadd el a felhaszn\u00e1l\u00e1s \u00e9s felt\u00e9teleket \u00e9s az adatv\u00e9delmi szab\u00e1lyzatot a folytat\u00e1shoz", + "OptionIAcceptTermsOfService": "Elfogadom a felhaszn\u00e1l\u00e1si felt\u00e9teleket", + "ButtonPrivacyPolicy": "Adatv\u00e9delmi szab\u00e1lyzat", + "ButtonTermsOfService": "Felhaszn\u00e1l\u00e1si felt\u00e9telek", + "HeaderDeveloperOptions": "Fejleszt\u0151i be\u00e1ll\u00edt\u00e1sok", + "OptionEnableWebClientResponseCache": "Enable web client response caching", + "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.", + "OptionEnableWebClientResourceMinification": "Enable web client resource minification", + "LabelDashboardSourcePath": "Web kliens forr\u00e1s \u00fatvonal:", + "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", + "ButtonConvertMedia": "M\u00e9dia konvert\u00e1l\u00e1s", + "ButtonOrganize": "Rendez\u00e9s", + "LinkedToEmbyConnect": "Linked to Emby Connect", + "HeaderSupporterBenefits": "Emby Premiere el\u0151ny\u00f6k", + "HeaderAddUser": "\u00daj felhaszn\u00e1l\u00f3", + "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", + "LabelPinCode": "Pin k\u00f3d:", + "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "HeaderSync": "Sync", + "ButtonOk": "Ok", + "ButtonCancel": "Cancel", + "ButtonExit": "Kil\u00e9p\u00e9s", + "ButtonNew": "New", + "HeaderTV": "TV", + "HeaderAudio": "Audio", + "HeaderVideo": "Video", + "HeaderPaths": "\u00datvonalak", + "CategorySync": "Sync", + "TabPlaylist": "Lej\u00e1tsz\u00e1si lista", + "HeaderEasyPinCode": "Pin k\u00f3d", + "HeaderGrownupsOnly": "Csak feln\u0151tteknek!", + "DividerOr": "-- vagy --", + "HeaderInstalledServices": "Telep\u00edtett szolg\u00e1ltat\u00e1sok", + "HeaderAvailableServices": "El\u00e9rhet\u0151 szolg\u00e1ltat\u00e1sok", + "MessageNoServicesInstalled": "Nincs szolg\u00e1ltat\u00e1s telep\u00edtve", + "HeaderToAccessPleaseEnterEasyPinCode": "Az el\u00e9r\u00e9shez k\u00e9rlek add meg a PIN k\u00f3dod", + "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.", + "ButtonConfigurePinCode": "Pin k\u00f3d be\u00e1ll\u00edt\u00e1sa", + "HeaderAdultsReadHere": "Adults Read Here!", + "RegisterWithPayPal": "Regisztr\u00e1ci\u00f3 PayPal haszn\u00e1lat\u00e1val", + "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership", + "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", + "LabelSyncTempPath": "Ideiglenes f\u00e1jlok \u00fatvonala:", + "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", + "LabelCustomCertificatePath": "Custom certificate path:", + "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", + "TitleNotifications": "Notifications", + "OptionDetectArchiveFilesAsMedia": "T\u00f6m\u00f6r\u00edtett f\u00e1jlok m\u00e9dia f\u00e1jlk\u00e9nt kezel\u00e9se", + "OptionDetectArchiveFilesAsMediaHelp": "Ha enged\u00e9lyezve van a f\u00e1jlok .rar vagy .zip kiterjeszt\u00e9ssel m\u00e9dia f\u00e1jlk\u00e9nt lesznek kezelve.", + "LabelEnterConnectUserName": "Felhaszn\u00e1l\u00f3n\u00e9v vagy e-mail c\u00edm:", + "LabelEnterConnectUserNameHelp": "Ez a Emby online fi\u00f3kod felhaszn\u00e1l\u00f3neve vagy e-mail c\u00edme", + "LabelEnableEnhancedMovies": "Enable enhanced movie displays", + "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", + "HeaderSyncJobInfo": "Sync Job", + "FolderTypeMixed": "Mixed content", + "FolderTypeMovies": "Movies", + "FolderTypeMusic": "Music", + "FolderTypeAdultVideos": "Adult videos", + "FolderTypePhotos": "Photos", + "FolderTypeMusicVideos": "Music videos", + "FolderTypeHomeVideos": "Home videos", + "FolderTypeGames": "Games", + "FolderTypeBooks": "Books", + "FolderTypeTvShows": "TV", + "FolderTypeInherit": "Inherit", + "LabelContentType": "Tartalom t\u00edpusa:", + "TitleScheduledTasks": "\u00dctemezett feladatok", + "HeaderSetupLibrary": "Setup your media libraries", + "ButtonAddMediaFolder": "M\u00e9dia k\u00f6nyvt\u00e1r hozz\u00e1ad\u00e1sa", + "LabelFolderType": "K\u00f6nyvt\u00e1r t\u00edpusa:", + "ReferToMediaLibraryWiki": "Refer to the media library wiki.", + "LabelCountry": "Orsz\u00e1g:", + "LabelLanguage": "Nyelv:", + "LabelTimeLimitHours": "Id\u0151limit (\u00f3ra):", + "ButtonJoinTheDevelopmentTeam": "Csatlakoz\u00e1s a fejleszt\u0151i csapathoz:", + "HeaderPreferredMetadataLanguage": "El\u0151nyben r\u00e9szes\u00edtett metaadat nyelv:", + "LabelSaveLocalMetadata": "Save artwork and metadata into media folders", + "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", + "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", + "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", + "TabPreferences": "Preferences", + "TabPassword": "Jelsz\u00f3", + "TabLibraryAccess": "Library Access", + "TabAccess": "Hozz\u00e1f\u00e9r\u00e9s", + "TabImage": "K\u00e9p", + "TabProfile": "Profil", + "TabMetadata": "Metadata", + "TabImages": "K\u00e9pek", + "TabNotifications": "Notifications", + "TabCollectionTitles": "C\u00edmek", + "HeaderDeviceAccess": "Device Access", + "OptionEnableAccessFromAllDevices": "Hozz\u00e1f\u00e9r\u00e9s enged\u00e9lyez\u00e9se minden eszk\u00f6zr\u0151l", + "OptionEnableAccessToAllChannels": "Hozz\u00e1f\u00e9r\u00e9s enged\u00e9lyez\u00e9se minden csatorn\u00e1hoz", + "OptionEnableAccessToAllLibraries": "Hozz\u00e1f\u00e9r\u00e9s enged\u00e9lyez\u00e9se minden k\u00f6nyvt\u00e1rhoz", + "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", + "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", + "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "HeaderVideoPlaybackSettings": "Vide\u00f3 lej\u00e1tsz\u00e1s be\u00e1ll\u00edt\u00e1sok", + "HeaderPlaybackSettings": "Lej\u00e1tsz\u00e1si be\u00e1ll\u00edt\u00e1sok", + "LabelAudioLanguagePreference": "Audio language preference:", + "LabelSubtitleLanguagePreference": "Subtitle language preference:", + "OptionDefaultSubtitles": "Alap\u00e9rtelmezett", + "OptionOnlyForcedSubtitles": "Only forced subtitles", + "OptionAlwaysPlaySubtitles": "Always play subtitles", + "OptionNoSubtitles": "Nincs felirat", + "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", + "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", + "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", + "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.", + "TabProfiles": "Profilok", + "TabSecurity": "Biztons\u00e1g", + "ButtonAddUser": "\u00daj felhaszn\u00e1l\u00f3", + "ButtonAddLocalUser": "\u00daj helyi felhaszn\u00e1l\u00f3", + "ButtonInviteUser": "Felhaszn\u00e1l\u00f3 megh\u00edv\u00e1sa", + "ButtonSave": "Save", + "ButtonResetPassword": "Jelsz\u00f3 vissza\u00e1ll\u00edt\u00e1s", + "LabelNewPassword": "\u00daj jelsz\u00f3:", + "LabelNewPasswordConfirm": "\u00daj jelsz\u00f3 meger\u0151s\u00edt\u00e9se:", + "HeaderCreatePassword": "Jelsz\u00f3 l\u00e9trehozz\u00e1s", + "LabelCurrentPassword": "Jelenlegi jelsz\u00f3:", + "LabelMaxParentalRating": "Maximum allowed parental rating:", + "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", + "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", + "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", + "ButtonDeleteImage": "K\u00e9p t\u00f6rl\u00e9se", + "LabelSelectUsers": "Felhaszn\u00e1l\u00f3 kiv\u00e1laszt\u00e1sa:", + "ButtonUpload": "Felt\u00f6lt\u00e9s", + "HeaderUploadNewImage": "\u00daj k\u00e9p felt\u00f6lt\u00e9se", + "LabelDropImageHere": "Drop image here", + "ImageUploadAspectRatioHelp": "1:1 m\u00e9retar\u00e1ny aj\u00e1nlott. Csak JPG\/PNG.", + "MessageNothingHere": "Nincs itt semmi.", + "MessagePleaseEnsureInternetMetadata": "K\u00e9rlek ellen\u0151rizd hogy az Internetes metaadata let\u00f6lt\u00e9s enged\u00e9lyezve van.", + "TabSuggested": "Aj\u00e1nlott", + "TabSuggestions": "Aj\u00e1nl\u00e1s", + "TabLatest": "Legfrissebb", + "TabUpcoming": "Hamarosan \u00e9rkezik", + "TabShows": "Shows", + "TabEpisodes": "Episodes", + "TabGenres": "Kateg\u00f3ri\u00e1k", + "TabPeople": "People", + "TabNetworks": "Networks", + "HeaderUsers": "Users", + "HeaderFilters": "Filters:", + "ButtonFilter": "Filter", + "OptionFavorite": "Kedvencek", + "OptionLikes": "Kedvel\u00e9sek", + "OptionDislikes": "Dislikes", + "OptionActors": "Sz\u00edn\u00e9szek", + "OptionGuestStars": "Megh\u00edvott szt\u00e1rok", + "OptionDirectors": "Rendez\u0151k", + "OptionWriters": "\u00cdr\u00f3k", + "OptionProducers": "Producerek", + "HeaderResume": "Resume", + "HeaderNextUp": "Next Up", + "NoNextUpItemsMessage": "None found. Start watching your shows!", + "HeaderLatestEpisodes": "Latest Episodes", + "HeaderPersonTypes": "Person Types:", + "TabSongs": "Songs", + "TabAlbums": "Albums", + "TabArtists": "El\u0151ad\u00f3k", + "TabAlbumArtists": "Album Artists", + "TabMusicVideos": "Music Videos", + "ButtonSort": "Sort", + "HeaderSortBy": "Sort By:", + "HeaderSortOrder": "Sort Order:", + "OptionPlayed": "Played", + "OptionUnplayed": "Unplayed", + "OptionAscending": "Ascending", + "OptionDescending": "Descending", + "OptionRuntime": "Runtime", + "OptionReleaseDate": "Release Date", + "OptionPlayCount": "Play Count", + "OptionDatePlayed": "Date Played", + "OptionDateAdded": "Date Added", + "OptionAlbumArtist": "Album Artist", + "OptionArtist": "Artist", + "OptionAlbum": "Album", + "OptionTrackName": "Track Name", + "OptionCommunityRating": "Community Rating", + "OptionNameSort": "Name", + "OptionFolderSort": "K\u00f6nyvt\u00e1rak", + "OptionBudget": "Budget", + "OptionRevenue": "Revenue", + "OptionPoster": "Poster", + "OptionPosterCard": "Poster card", + "OptionBackdrop": "Backdrop", + "OptionTimeline": "Timeline", + "OptionThumb": "Thumb", + "OptionThumbCard": "Thumb card", + "OptionBanner": "Banner", + "OptionCriticRating": "Critic Rating", + "OptionVideoBitrate": "Video Bitrate", + "OptionResumable": "Resumable", + "ScheduledTasksHelp": "Click a task to adjust its schedule.", + "ScheduledTasksTitle": "\u00dctemezett feladatok", + "TabMyPlugins": "Saj\u00e1t b\u0151v\u00edtm\u00e9nyek", + "TabCatalog": "Katal\u00f3gus", + "TitlePlugins": "Plugins", + "HeaderAutomaticUpdates": "Automatikus frissit\u00e9sek", + "HeaderNowPlaying": "Most j\u00e1tszott", + "HeaderLatestAlbums": "Legfrissebb albumok", + "HeaderLatestSongs": "Legfrissebb dalok", + "HeaderRecentlyPlayed": "Nemr\u00e9g j\u00e1tszott", + "HeaderFrequentlyPlayed": "Gyakran j\u00e1tszott", + "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", + "LabelVideoType": "Vide\u00f3 t\u00edpus:", + "OptionBluray": "Blueray", + "OptionDvd": "Dvd", + "OptionIso": "Iso", + "Option3D": "3D", + "LabelFeatures": "Lehet\u0151s\u00e9gek:", + "LabelService": "Szolg\u00e1ltat\u00e1sok:", + "LabelStatus": "St\u00e1tusz:", + "LabelVersion": "Verzi\u00f3:", + "LabelLastResult": "Utols\u00f3 eredm\u00e9ny:", + "OptionHasSubtitles": "Feliratok", + "OptionHasTrailer": "Trailer", + "OptionHasThemeSong": "Theme Song", + "OptionHasThemeVideo": "Theme Video", + "TabMovies": "Movies", + "TabStudios": "St\u00fadi\u00f3k", + "TabTrailers": "Trailers", + "LabelArtists": "El\u0151ad\u00f3k:", + "LabelArtistsHelp": "Separate multiple using ;", + "HeaderLatestMovies": "Latest Movies", + "HeaderLatestTrailers": "Latest Trailers", + "OptionHasSpecialFeatures": "Speci\u00e1lis lehet\u0151s\u00e9gek", + "OptionImdbRating": "IMDb Rating", + "OptionParentalRating": "Parental Rating", + "OptionPremiereDate": "Premiere Date", + "TabBasic": "Alap", + "TabAdvanced": "Advanced", + "HeaderStatus": "\u00c1llapot", + "OptionContinuing": "Continuing", + "OptionEnded": "Ended", + "HeaderAirDays": "Air Days", + "OptionSunday": "Sunday", + "OptionMonday": "Monday", + "OptionTuesday": "Tuesday", + "OptionWednesday": "Wednesday", + "OptionThursday": "Thursday", + "OptionFriday": "Friday", + "OptionSaturday": "Saturday", + "HeaderManagement": "Management", + "LabelManagement": "Management:", + "OptionMissingImdbId": "Hi\u00e1nyz\u00f3 IMDb azonos\u00edt\u00f3", + "OptionMissingTvdbId": "Hi\u00e1nyz\u00f3 TheTVDB azonos\u00edt\u00f3", + "OptionMissingOverview": "Missing Overview", + "OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched", + "TabGeneral": "\u00c1ltal\u00e1nos", + "TitleSupport": "T\u00e1mogat\u00e1s", + "TabLog": "Napl\u00f3", + "TabAbout": "About", + "TabSupporterKey": "Emby Premiere kulcs:", + "TabBecomeSupporter": "Emby Premiere beszerz\u00e9se", + "TabEmbyPremiere": "Emby Premiere", + "ProjectHasCommunity": "Emby has a thriving community of users and contributors.", + "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", + "SearchKnowledgeBase": "Search the Knowledge Base", + "VisitTheCommunity": "Visit the Community", + "VisitProjectWebsite": "Visit the Emby Web Site", + "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.", + "OptionHideUser": "Felhaszn\u00e1l\u00f3 elrejt\u00e9se a bejelentkez\u00e9si k\u00e9perny\u0151n", + "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", + "OptionDisableUser": "Disable this user", + "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", + "HeaderAdvancedControl": "Advanced Control", + "LabelName": "Name:", + "ButtonHelp": "Help", + "OptionAllowUserToManageServer": "Szerver kezel\u00e9s enged\u00e9lyez\u00e9se a felhaszn\u00e1l\u00f3nak", + "HeaderFeatureAccess": "Feature Access", + "OptionAllowMediaPlayback": "M\u00e9dia lej\u00e1tsz\u00e1s enged\u00e9lyez\u00e9se", + "OptionAllowBrowsingLiveTv": "\u00c9l\u0151 TV hozz\u00e1f\u00e9r\u00e9s enged\u00e9lyez\u00e9se", + "OptionAllowDeleteLibraryContent": "M\u00e9dia t\u00f6rl\u00e9s enged\u00e9lyez\u00e9se", + "OptionAllowManageLiveTv": "Allow Live TV recording management", + "OptionAllowRemoteControlOthers": "Allow remote control of other users", + "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", + "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", + "OptionAllowLinkSharing": "Allow social media sharing", + "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.", + "HeaderSharing": "Megoszt\u00e1s", + "HeaderRemoteControl": "T\u00e1v\u00edr\u00e1ny\u00edt\u00e1s", + "OptionMissingTmdbId": "Hi\u00e1nyz\u00f3 Tmdb azonos\u00edt\u00f3", + "OptionIsHD": "HD", + "OptionIsSD": "SD", + "OptionMetascore": "Metascore", + "ButtonSelect": "Select", + "ButtonGroupVersions": "Group Versions", + "ButtonAddToCollection": "Hozz\u00e1ad\u00e1s a gy\u0171jtem\u00e9nyhez", + "PismoMessage": "Utilizing Pismo File Mount through a donated license.", + "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", + "HeaderCredits": "Credits", + "PleaseSupportOtherProduces": "Please support other free products we utilize:", + "VersionNumber": "Version {0}", + "TabPaths": "\u00datvonalak", + "TabServer": "Server", + "TabTranscoding": "\u00c1tk\u00f3dol\u00e1s", + "TitleAdvanced": "Advanced", + "OptionRelease": "Official Release", + "OptionBeta": "Beta", + "OptionDev": "Dev (Unstable)", + "LabelAllowServerAutoRestart": "Automatikus \u00fajraind\u00edt\u00e1s enged\u00e9lyez\u00e9se a szervernek a friss\u00edt\u00e9sek telep\u00edt\u00e9s\u00e9hez", + "LabelAllowServerAutoRestartHelp": "A szerver csak akkor indul \u00fajra ha nincs felhaszn\u00e1l\u00f3i tev\u00e9kenys\u00e9g", + "LabelEnableDebugLogging": "Enable debug logging", + "LabelRunServerAtStartup": "Run server at startup", + "LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.", + "ButtonSelectDirectory": "K\u00f6nyvt\u00e1r v\u00e1laszt\u00e1sa", + "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", + "LabelCachePath": "Cache path:", + "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", + "LabelRecordingPath": "Recording path:", + "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", + "LabelImagesByNamePath": "Images by name path:", + "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", + "LabelMetadataPath": "Metadata path:", + "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", + "LabelTranscodingTempPath": "Transcoding temporary path:", + "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", + "TabBasics": "Basics", + "TabTV": "TV", + "TabGames": "Games", + "TabMusic": "Music", + "TabOthers": "Others", + "HeaderExtractChapterImagesFor": "Extract chapter images for:", + "OptionMovies": "Movies", + "OptionEpisodes": "Episodes", + "OptionOtherVideos": "Other Videos", + "TitleMetadata": "Metadata", + "LabelAutomaticUpdates": "Enable automatic updates", + "LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org", + "LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com", + "LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.", + "LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.", + "LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.", + "LabelFanartApiKey": "Personal api key:", + "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", + "ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", + "LabelMetadataDownloadLanguage": "Preferred download language:", + "ButtonAutoScroll": "Auto-scroll", + "LabelImageSavingConvention": "Image saving convention:", + "LabelImageSavingConventionHelp": "Emby recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.", + "OptionImageSavingCompatible": "Compatible - Emby\/Kodi\/Plex", + "OptionImageSavingStandard": "Standard - MB2", + "ButtonSignIn": "Sign In", + "TitleSignIn": "Sign In", + "HeaderPleaseSignIn": "Please sign in", + "LabelUser": "Felhaszn\u00e1l\u00f3:", + "LabelPassword": "Jelsz\u00f3:", + "ButtonManualLogin": "Manu\u00e1lis bel\u00e9p\u00e9s", + "PasswordLocalhostMessage": "Jelsz\u00f3 nem sz\u00fcks\u00e9ges a szerver g\u00e9pr\u0151l val\u00f3 bejelentkez\u00e9shez", + "TabGuide": "Le\u00edr\u00e1s", + "TabChannels": "Csatorn\u00e1k", + "TabCollections": "Gy\u0171jtem\u00e9nyek", + "HeaderChannels": "Channels", + "TabRecordings": "Felv\u00e9telek", + "TabScheduled": "Scheduled", + "TabSeries": "Series", + "TabFavorites": "Kedvencek", + "TabMyLibrary": "Saj\u00e1t gy\u0171jtem\u00e9ny", + "ButtonCancelRecording": "Cancel Recording", + "HeaderPrePostPadding": "Pre\/Post Padding", + "LabelPrePaddingMinutes": "Pre-padding minutes:", + "OptionPrePaddingRequired": "Pre-padding is required in order to record.", + "LabelPostPaddingMinutes": "Post-padding minutes:", + "OptionPostPaddingRequired": "Post-padding is required in order to record.", + "HeaderWhatsOnTV": "What's On", + "HeaderUpcomingTV": "Upcoming TV", + "TabStatus": "St\u00e1tusz", + "TabSettings": "Be\u00e1ll\u00edt\u00e1sok", + "ButtonRefreshGuideData": "Refresh Guide Data", + "ButtonRefresh": "Refresh", + "ButtonAdvancedRefresh": "Advanced Refresh", + "OptionPriority": "Priorit\u00e1s", + "OptionRecordOnAllChannels": "Record on all channels", + "OptionRecordAnytime": "Record at any time", + "OptionRecordOnlyNewEpisodes": "Record only new episodes", + "HeaderRepeatingOptions": "Repeating Options", + "HeaderDays": "Days", + "HeaderActiveRecordings": "Active Recordings", + "HeaderLatestRecordings": "Latest Recordings", + "HeaderAllRecordings": "All Recordings", + "ButtonPlay": "Play", + "ButtonEdit": "Edit", + "ButtonRecord": "Record", + "ButtonDelete": "Delete", + "ButtonRemove": "Remove", + "OptionRecordSeries": "Record Series", + "HeaderDetails": "Details", + "TitleLiveTV": "Live TV", + "LabelNumberOfGuideDays": "Number of days of guide data to download:", + "LabelNumberOfGuideDaysHelp": "Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.", + "OptionAutomatic": "Auto", + "HeaderServices": "Szolg\u00e1ltat\u00e1sok", + "LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.", + "LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.", + "LabelCustomizeOptionsPerMediaType": "Customize for media type:", + "OptionDownloadThumbImage": "Thumb", + "OptionDownloadMenuImage": "Men\u00fc", + "OptionDownloadLogoImage": "Log\u00f3", + "OptionDownloadBoxImage": "Box", + "OptionDownloadDiscImage": "Disc", + "OptionDownloadBannerImage": "Banner", + "OptionDownloadBackImage": "Vissza", + "OptionDownloadArtImage": "Art", + "OptionDownloadPrimaryImage": "Primary", + "HeaderFetchImages": "Fetch Images:", + "HeaderImageSettings": "Image Settings", + "TabOther": "Egy\u00e9b", + "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", + "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", + "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", + "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", + "ButtonAddScheduledTaskTrigger": "Add Trigger", + "HeaderAddScheduledTaskTrigger": "Add Trigger", + "ButtonAdd": "Add", + "LabelTriggerType": "Trigger Type:", + "OptionDaily": "Daily", + "OptionWeekly": "Weekly", + "OptionOnInterval": "On an interval", + "OptionOnAppStartup": "On application startup", + "OptionAfterSystemEvent": "After a system event", + "LabelDay": "Day:", + "LabelTime": "Time:", + "LabelEvent": "Event:", + "OptionWakeFromSleep": "Wake from sleep", + "LabelEveryXMinutes": "Every:", + "HeaderTvTuners": "Tuners", + "HeaderGallery": "Gallery", + "HeaderLatestGames": "Latest Games", + "HeaderRecentlyPlayedGames": "Recently Played Games", + "TabGameSystems": "Game Systems", + "TitleMediaLibrary": "Media Library", + "TabFolders": "Folders", + "TabPathSubstitution": "Path Substitution", + "LabelSeasonZeroDisplayName": "Season 0 display name:", + "LabelEnableRealtimeMonitor": "Enable real time monitoring", + "LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.", + "ButtonScanLibrary": "Scan Library", + "HeaderNumberOfPlayers": "Players:", + "OptionAnyNumberOfPlayers": "Any", + "Option1Player": "1+", + "Option2Player": "2+", + "Option3Player": "3+", + "Option4Player": "4+", + "HeaderMediaFolders": "Media Folders", + "HeaderThemeVideos": "Theme Videos", + "HeaderThemeSongs": "Theme Songs", + "HeaderScenes": "Scenes", + "HeaderAwardsAndReviews": "Awards and Reviews", + "HeaderSoundtracks": "Soundtracks", + "HeaderMusicVideos": "Music Videos", + "HeaderSpecialFeatures": "Special Features", + "HeaderCastCrew": "Cast & Crew", + "HeaderAdditionalParts": "Additional Parts", + "ButtonSplitVersionsApart": "Split Versions Apart", + "ButtonPlayTrailer": "Trailer", + "LabelMissing": "Missing", + "LabelOffline": "Offline", + "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", + "HeaderFrom": "From", + "HeaderTo": "To", + "LabelFrom": "From:", + "LabelFromHelp": "Example: D:\\Movies (on the server)", + "LabelTo": "To:", + "LabelToHelp": "Example: \\\\MyServer\\Movies (a path clients can access)", + "ButtonAddPathSubstitution": "Add Substitution", + "OptionSpecialEpisode": "Specials", + "OptionMissingEpisode": "Missing Episodes", + "OptionUnairedEpisode": "Unaired Episodes", + "OptionEpisodeSortName": "Episode Sort Name", + "OptionSeriesSortName": "Series Name", + "OptionTvdbRating": "Tvdb Rating", + "HeaderTranscodingQualityPreference": "Transcoding Quality Preference:", + "OptionAutomaticTranscodingHelp": "The server will decide quality and speed", + "OptionHighSpeedTranscodingHelp": "Lower quality, but faster encoding", + "OptionHighQualityTranscodingHelp": "Higher quality, but slower encoding", + "OptionMaxQualityTranscodingHelp": "Best quality with slower encoding and high CPU usage", + "OptionHighSpeedTranscoding": "Higher speed", + "OptionHighQualityTranscoding": "Higher quality", + "OptionMaxQualityTranscoding": "Max quality", + "OptionEnableDebugTranscodingLogging": "Enable debug transcoding logging", + "OptionEnableDebugTranscodingLoggingHelp": "This will create very large log files and is only recommended as needed for troubleshooting purposes.", + "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", + "HeaderAddTitles": "Add Titles", + "LabelEnableDlnaPlayTo": "Enable DLNA Play To", + "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", + "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", + "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", + "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", + "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Emby.", + "HeaderCustomDlnaProfiles": "Custom Profiles", + "HeaderSystemDlnaProfiles": "System Profiles", + "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", + "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", + "TitleDashboard": "Dashboard", + "TabHome": "Home", + "TabInfo": "Info", + "HeaderLinks": "Links", + "HeaderSystemPaths": "System Paths", + "LinkCommunity": "Community", + "LinkGithub": "Github", + "LinkApi": "Api", + "LinkApiDocumentation": "Api Documentation", + "LabelFriendlyServerName": "Friendly server name:", + "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", + "LabelPreferredDisplayLanguage": "Preferred display language:", + "LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.", + "LabelReadHowYouCanContribute": "Learn how you can contribute.", + "HeaderNewCollection": "New Collection", + "ButtonSubmit": "Submit", + "ButtonCreate": "Create", + "LabelCustomCss": "Custom css:", + "LabelCustomCssHelp": "Apply your own custom css to the web interface.", + "LabelLocalHttpServerPortNumber": "Local http port number:", + "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.", + "LabelPublicHttpPort": "Public http port number:", + "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", + "LabelPublicHttpsPort": "Public https port number:", + "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", + "LabelEnableHttps": "Report https as external address", + "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.", + "LabelHttpsPort": "Local https port number:", + "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.", + "LabelWebSocketPortNumber": "Web socket port number:", + "LabelEnableAutomaticPortMap": "Enable automatic port mapping", + "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", + "LabelExternalDDNS": "External WAN Address:", + "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", + "TabResume": "Resume", + "TabWeather": "Weather", + "TitleAppSettings": "App Settings", + "LabelMinResumePercentage": "Min resume percentage:", + "LabelMaxResumePercentage": "Max resume percentage:", + "LabelMinResumeDuration": "Min resume duration (seconds):", + "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", + "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", + "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", + "TitleAutoOrganize": "Auto-Organize", + "TabActivityLog": "Activity Log", + "HeaderName": "Name", + "HeaderDate": "Date", + "HeaderSource": "Source", + "HeaderDestination": "Destination", + "HeaderProgram": "Program", + "HeaderClients": "Clients", + "LabelCompleted": "Completed", + "LabelFailed": "Failed", + "LabelSkipped": "Skipped", + "HeaderEpisodeOrganization": "Episode Organization", + "LabelSeries": "Series:", + "LabelSeasonNumber": "Season number", + "LabelEpisodeNumber": "Episode number", + "LabelEndingEpisodeNumber": "Ending episode number:", + "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", + "HeaderSupportTheTeam": "Support the Emby Team", + "LabelSupportAmount": "Amount (USD)", + "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", + "ButtonEnterSupporterKey": "Enter Emby Premiere key", + "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", + "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", + "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", + "OptionEnableEpisodeOrganization": "Enable new episode organization", + "LabelWatchFolder": "Watch folder:", + "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", + "ButtonViewScheduledTasks": "View scheduled tasks", + "LabelMinFileSizeForOrganize": "Minimum file size (MB):", + "LabelMinFileSizeForOrganizeHelp": "Files under this size will be ignored.", + "LabelSeasonFolderPattern": "Season folder pattern:", + "LabelSeasonZeroFolderName": "Season zero folder name:", + "HeaderEpisodeFilePattern": "Episode file pattern", + "LabelEpisodePattern": "Episode pattern:", + "LabelMultiEpisodePattern": "Multi-Episode pattern:", + "HeaderSupportedPatterns": "Supported Patterns", + "HeaderTerm": "Term", + "HeaderPattern": "Pattern", + "HeaderResult": "Result", + "LabelDeleteEmptyFolders": "Delete empty folders after organizing", + "LabelDeleteEmptyFoldersHelp": "Enable this to keep the download directory clean.", + "LabelDeleteLeftOverFiles": "Delete left over files with the following extensions:", + "LabelDeleteLeftOverFilesHelp": "Separate with ;. For example: .nfo;.txt", + "OptionOverwriteExistingEpisodes": "Overwrite existing episodes", + "LabelTransferMethod": "Transfer method", + "OptionCopy": "Copy", + "OptionMove": "Move", + "LabelTransferMethodHelp": "Copy or move files from the watch folder", + "HeaderLatestNews": "Latest News", + "HeaderHelpImproveProject": "Help Improve Emby", + "HeaderRunningTasks": "Running Tasks", + "HeaderActiveDevices": "Active Devices", + "HeaderPendingInstallations": "Pending Installations", + "HeaderServerInformation": "Server Information", + "ButtonRestartNow": "Restart Now", + "ButtonRestart": "Restart", + "ButtonShutdown": "Shutdown", + "ButtonUpdateNow": "Update Now", + "TabHosting": "Hosting", + "PleaseUpdateManually": "Please shutdown the server and update manually.", + "NewServerVersionAvailable": "A new version of Emby Server is available!", + "ServerUpToDate": "Emby Server is up to date", + "LabelComponentsUpdated": "The following components have been installed or updated:", + "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", + "LabelDownMixAudioScale": "Audio boost when downmixing:", + "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", + "ButtonLinkKeys": "Transfer Key", + "LabelOldSupporterKey": "Old Emby Premiere key", + "LabelNewSupporterKey": "New Emby Premiere key", + "HeaderMultipleKeyLinking": "Transfer to New Key", + "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.", + "LabelCurrentEmailAddress": "Current email address", + "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", + "HeaderForgotKey": "Forgot Key", + "LabelEmailAddress": "Email address", + "LabelSupporterEmailAddress": "The email address that was used to purchase the key.", + "ButtonRetrieveKey": "Retrieve Key", + "LabelSupporterKey": "Emby Premiere key (paste from email):", + "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.", + "MessageInvalidKey": "Emby Premiere key is missing or invalid.", + "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", + "HeaderDisplaySettings": "Display Settings", + "TabPlayTo": "Play To", + "LabelEnableDlnaServer": "Enable Dlna server", + "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", + "LabelEnableBlastAliveMessages": "Blast alive messages", + "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", + "LabelBlastMessageInterval": "Alive message interval (seconds)", + "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", + "LabelDefaultUser": "Default user:", + "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", + "TitleDlna": "DLNA", + "TitleChannels": "Channels", + "HeaderServerSettings": "Server Settings", + "LabelWeatherDisplayLocation": "Weather display location:", + "LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country", + "LabelWeatherDisplayUnit": "Weather display unit:", + "OptionCelsius": "Celsius", + "OptionFahrenheit": "Fahrenheit", + "HeaderRequireManualLogin": "Require manual username entry for:", + "HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.", + "OptionOtherApps": "Other apps", + "OptionMobileApps": "Mobile apps", + "HeaderNotificationList": "Click on a notification to configure it's sending options.", + "NotificationOptionApplicationUpdateAvailable": "Application update available", + "NotificationOptionApplicationUpdateInstalled": "Application update installed", + "NotificationOptionPluginUpdateInstalled": "Plugin update installed", + "NotificationOptionPluginInstalled": "Plugin installed", + "NotificationOptionPluginUninstalled": "Plugin uninstalled", + "NotificationOptionVideoPlayback": "Video playback started", + "NotificationOptionAudioPlayback": "Audio playback started", + "NotificationOptionGamePlayback": "Game playback started", + "NotificationOptionVideoPlaybackStopped": "Video playback stopped", + "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", + "NotificationOptionGamePlaybackStopped": "Game playback stopped", + "NotificationOptionTaskFailed": "Scheduled task failure", + "NotificationOptionInstallationFailed": "Installation failure", + "NotificationOptionNewLibraryContent": "New content added", + "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)", + "NotificationOptionCameraImageUploaded": "Camera image uploaded", + "NotificationOptionUserLockedOut": "User locked out", + "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", + "NotificationOptionServerRestartRequired": "Server restart required", + "LabelNotificationEnabled": "Enable this notification", + "LabelMonitorUsers": "Monitor activity from:", + "LabelSendNotificationToUsers": "Send the notification to:", + "LabelUseNotificationServices": "Use the following services:", + "CategoryUser": "User", + "CategorySystem": "System", + "CategoryApplication": "Application", + "CategoryPlugin": "Plugin", + "LabelMessageTitle": "Message title:", + "LabelAvailableTokens": "Available tokens:", + "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", + "OptionAllUsers": "All users", + "OptionAdminUsers": "Administrators", + "OptionCustomUsers": "Custom", + "ButtonArrowUp": "Up", + "ButtonArrowDown": "Down", + "ButtonArrowLeft": "Left", + "ButtonArrowRight": "Right", + "ButtonBack": "Back", + "ButtonInfo": "Info", + "ButtonOsd": "On screen display", + "ButtonPageUp": "Page Up", + "ButtonPageDown": "Page Down", + "PageAbbreviation": "PG", + "ButtonHome": "Home", + "ButtonSearch": "Search", + "ButtonSettings": "Settings", + "ButtonTakeScreenshot": "Capture Screenshot", + "ButtonLetterUp": "Letter Up", + "ButtonLetterDown": "Letter Down", + "PageButtonAbbreviation": "PG", + "LetterButtonAbbreviation": "A", + "TabNowPlaying": "Now Playing", + "TabNavigation": "Navigation", + "TabControls": "Controls", + "ButtonFullscreen": "Toggle fullscreen", + "ButtonScenes": "Scenes", + "ButtonSubtitles": "Subtitles", + "ButtonAudioTracks": "Audio tracks", + "ButtonPreviousTrack": "Previous track", + "ButtonNextTrack": "Next track", + "ButtonStop": "Stop", + "ButtonPause": "Pause", + "ButtonNext": "Next", + "ButtonPrevious": "Previous", + "LabelGroupMoviesIntoCollections": "Group movies into collections", + "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", + "NotificationOptionPluginError": "Plugin failure", + "ButtonVolumeUp": "Volume up", + "ButtonVolumeDown": "Volume down", + "ButtonMute": "Mute", + "HeaderLatestMedia": "Latest Media", + "OptionSpecialFeatures": "Special Features", + "HeaderCollections": "Collections", + "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", + "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", + "HeaderResponseProfile": "Response Profile", + "LabelType": "Type:", + "LabelPersonRole": "Role:", + "LabelPersonRoleHelp": "Role is generally only applicable to actors.", + "LabelProfileContainer": "Container:", + "LabelProfileVideoCodecs": "Video codecs:", + "LabelProfileAudioCodecs": "Audio codecs:", + "LabelProfileCodecs": "Codecs:", + "HeaderDirectPlayProfile": "Direct Play Profile", + "HeaderTranscodingProfile": "Transcoding Profile", + "HeaderCodecProfile": "Codec Profile", + "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", + "HeaderContainerProfile": "Container Profile", + "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", + "OptionProfileVideo": "Video", + "OptionProfileAudio": "Audio", + "OptionProfileVideoAudio": "Video Audio", + "OptionProfilePhoto": "Photo", + "LabelUserLibrary": "User library:", + "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", + "OptionPlainStorageFolders": "Display all folders as plain storage folders", + "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", + "OptionPlainVideoItems": "Display all videos as plain video items", + "OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".", + "LabelSupportedMediaTypes": "Supported Media Types:", + "TabIdentification": "Identification", + "HeaderIdentification": "Identification", + "TabDirectPlay": "Direct Play", + "TabContainers": "Containers", + "TabCodecs": "Codecs", + "TabResponses": "Responses", + "HeaderProfileInformation": "Profile Information", + "LabelEmbedAlbumArtDidl": "Embed album art in Didl", + "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", + "LabelAlbumArtPN": "Album art PN:", + "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some clients require a specific value, regardless of the size of the image.", + "LabelAlbumArtMaxWidth": "Album art max width:", + "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", + "LabelAlbumArtMaxHeight": "Album art max height:", + "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", + "LabelIconMaxWidth": "Icon max width:", + "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", + "LabelIconMaxHeight": "Icon max height:", + "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", + "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", + "HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.", + "LabelMaxBitrate": "Max bitrate:", + "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", + "LabelMaxStreamingBitrate": "Max streaming bitrate:", + "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", + "LabelMaxChromecastBitrate": "Max Chromecast bitrate:", + "LabelMaxStaticBitrate": "Max sync bitrate:", + "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.", + "LabelMusicStaticBitrate": "Music sync bitrate:", + "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", + "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", + "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", + "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", + "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", + "LabelFriendlyName": "Friendly name", + "LabelManufacturer": "Manufacturer", + "LabelManufacturerUrl": "Manufacturer url", + "LabelModelName": "Model name", + "LabelModelNumber": "Model number", + "LabelModelDescription": "Model description", + "LabelModelUrl": "Model url", + "LabelSerialNumber": "Serial number", + "LabelDeviceDescription": "Device description", + "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", + "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", + "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", + "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", + "LabelXDlnaCap": "X-Dlna cap:", + "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", + "LabelXDlnaDoc": "X-Dlna doc:", + "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", + "LabelSonyAggregationFlags": "Sony aggregation flags:", + "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", + "LabelTranscodingContainer": "Container:", + "LabelTranscodingVideoCodec": "Video codec:", + "LabelTranscodingVideoProfile": "Video profile:", + "LabelTranscodingAudioCodec": "Audio codec:", + "OptionEnableM2tsMode": "Enable M2ts mode", + "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", + "OptionEstimateContentLength": "Estimate content length when transcoding", + "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", + "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", + "HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.", + "HeaderDownloadSubtitlesFor": "Download subtitles for:", + "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.", + "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles", + "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", + "TabSubtitles": "Subtitles", + "TabChapters": "Chapters", + "HeaderDownloadChaptersFor": "Download chapter names for:", + "LabelOpenSubtitlesUsername": "Open Subtitles username:", + "LabelOpenSubtitlesPassword": "Open Subtitles password:", + "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.", + "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", + "LabelSubtitlePlaybackMode": "Subtitle mode:", + "LabelDownloadLanguages": "Download languages:", + "ButtonRegister": "Register", + "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", + "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", + "HeaderSendMessage": "Send Message", + "ButtonSend": "Send", + "LabelMessageText": "Message text:", + "MessageNoAvailablePlugins": "No available plugins.", + "LabelDisplayPluginsFor": "Display plugins for:", + "PluginTabAppClassic": "Emby Classic", + "PluginTabAppTheater": "Emby Theater", + "LabelEpisodeNamePlain": "Episode name", + "LabelSeriesNamePlain": "Series name", + "ValueSeriesNamePeriod": "Series.name", + "ValueSeriesNameUnderscore": "Series_name", + "ValueEpisodeNamePeriod": "Episode.name", + "ValueEpisodeNameUnderscore": "Episode_name", + "LabelSeasonNumberPlain": "Season number", + "LabelEpisodeNumberPlain": "Episode number", + "LabelEndingEpisodeNumberPlain": "Ending episode number", + "HeaderTypeText": "Enter Text", + "LabelTypeText": "Text", + "HeaderSearchForSubtitles": "Search for Subtitles", + "MessageNoSubtitleSearchResultsFound": "No search results founds.", + "TabDisplay": "Display", + "TabLanguages": "Languages", + "TabAppSettings": "App Settings", + "LabelEnableThemeSongs": "Enable theme songs", + "LabelEnableBackdrops": "Enable backdrops", + "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", + "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", + "HeaderHomePage": "Home Page", + "HeaderSettingsForThisDevice": "Settings for This Device", + "OptionAuto": "Auto", + "OptionYes": "Yes", + "OptionNo": "No", + "HeaderOptions": "Options", + "HeaderIdentificationResult": "Identification Result", + "LabelHomePageSection1": "Home page section 1:", + "LabelHomePageSection2": "Home page section 2:", + "LabelHomePageSection3": "Home page section 3:", + "LabelHomePageSection4": "Home page section 4:", + "OptionMyMediaButtons": "My media (buttons)", + "OptionMyMedia": "My media", + "OptionMyMediaSmall": "My media (small)", + "OptionResumablemedia": "Resume", + "OptionLatestMedia": "Latest media", + "OptionLatestChannelMedia": "Latest channel items", + "HeaderLatestChannelItems": "Latest Channel Items", + "OptionNone": "None", + "HeaderLiveTv": "Live TV", + "HeaderReports": "Reports", + "HeaderMetadataManager": "Metadata Manager", + "HeaderSettings": "Settings", + "MessageLoadingChannels": "Loading channel content...", + "MessageLoadingContent": "Loading content...", + "ButtonMarkRead": "Mark Read", + "OptionDefaultSort": "Default", + "OptionCommunityMostWatchedSort": "Most Watched", + "TabNextUp": "Next Up", + "PlaceholderUsername": "Username", + "HeaderBecomeProjectSupporter": "Get Emby Premiere", + "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", + "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", + "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", + "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", + "ButtonDismiss": "Dismiss", + "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", + "LabelChannelStreamQuality": "Preferred internet stream quality:", + "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", + "OptionBestAvailableStreamQuality": "Best available", + "LabelEnableChannelContentDownloadingFor": "Enable channel content downloading for:", + "LabelEnableChannelContentDownloadingForHelp": "Some channels support downloading content prior to viewing. Enable this in low bandwidth enviornments to download channel content during off hours. Content is downloaded as part of the channel download scheduled task.", + "LabelChannelDownloadPath": "Channel content download path:", + "LabelChannelDownloadPathHelp": "Specify a custom download path if desired. Leave empty to download to an internal program data folder.", + "LabelChannelDownloadAge": "Delete content after: (days)", + "LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.", + "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", + "ButtonOptions": "Options", + "ViewTypePlaylists": "Playlists", + "ViewTypeMovies": "Movies", + "ViewTypeTvShows": "TV", + "ViewTypeGames": "Games", + "ViewTypeMusic": "Music", + "ViewTypeMusicGenres": "Genres", + "ViewTypeMusicArtists": "Artists", + "ViewTypeBoxSets": "Collections", + "ViewTypeChannels": "Channels", + "ViewTypeLiveTV": "Live TV", + "ViewTypeLiveTvNowPlaying": "Now Airing", + "ViewTypeLatestGames": "Latest Games", + "ViewTypeRecentlyPlayedGames": "Recently Played", + "ViewTypeGameFavorites": "Favorites", + "ViewTypeGameSystems": "Game Systems", + "ViewTypeGameGenres": "Genres", + "ViewTypeTvResume": "Resume", + "ViewTypeTvNextUp": "Next Up", + "ViewTypeTvLatest": "Latest", + "ViewTypeTvShowSeries": "Series", + "ViewTypeTvGenres": "Genres", + "ViewTypeTvFavoriteSeries": "Favorite Series", + "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", + "ViewTypeMovieResume": "Resume", + "ViewTypeMovieLatest": "Latest", + "ViewTypeMovieMovies": "Movies", + "ViewTypeMovieCollections": "Collections", + "ViewTypeMovieFavorites": "Favorites", + "ViewTypeMovieGenres": "Genres", + "ViewTypeMusicLatest": "Latest", + "ViewTypeMusicPlaylists": "Playlists", + "ViewTypeMusicAlbums": "Albums", + "ViewTypeMusicAlbumArtists": "Album Artists", + "HeaderOtherDisplaySettings": "Display Settings", + "ViewTypeMusicSongs": "Songs", + "ViewTypeMusicFavorites": "Favorites", + "ViewTypeMusicFavoriteAlbums": "Favorite Albums", + "ViewTypeMusicFavoriteArtists": "Favorite Artists", + "ViewTypeMusicFavoriteSongs": "Favorite Songs", + "HeaderMyViews": "My Views", + "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", + "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", + "OptionDisplayAdultContent": "Display adult content", + "OptionLibraryFolders": "Media folders", + "TitleRemoteControl": "Remote Control", + "OptionLatestTvRecordings": "Latest recordings", + "LabelProtocolInfo": "Protocol info:", + "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", + "TabNfo": "Nfo", + "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.", + "LabelKodiMetadataUser": "Sync user watch data to nfo's for:", + "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.", + "LabelKodiMetadataDateFormat": "Release date format:", + "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", + "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", + "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", + "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", + "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", + "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.", + "OptionDisplayChannelsInline": "Display channels inline within my views", + "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.", + "LabelDisplayCollectionsView": "Display a collections view to show movie collections", + "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", + "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", + "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", + "TabServices": "Services", + "TabLogs": "Logs", + "HeaderServerLogFiles": "Server log files:", + "TabBranding": "Branding", + "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", + "LabelLoginDisclaimer": "Login disclaimer:", + "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", + "OptionList": "List", + "TabDashboard": "Dashboard", + "TitleServer": "Server", + "LabelCache": "Cache:", + "LabelLogs": "Logs:", + "LabelMetadata": "Metadata:", + "LabelImagesByName": "Images by name:", + "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", + "HeaderLatestMusic": "Latest Music", + "HeaderBranding": "Branding", + "HeaderApiKeys": "Api Keys", + "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Emby Server. Keys are issued by logging in with an Emby account, or by manually granting the application a key.", + "HeaderApiKey": "Api Key", + "HeaderApp": "App", + "HeaderDevice": "Device", + "HeaderUser": "User", + "HeaderDateIssued": "Date Issued", + "LabelChapterName": "Chapter {0}", + "HeaderNewApiKey": "New Api Key", + "LabelAppName": "App name", + "LabelAppNameExample": "Example: Sickbeard, NzbDrone", + "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", + "HeaderHttpHeaders": "Http Headers", + "HeaderIdentificationHeader": "Identification Header", + "LabelValue": "Value:", + "LabelMatchType": "Match type:", + "OptionEquals": "Equals", + "OptionRegex": "Regex", + "OptionSubstring": "Substring", + "TabView": "View", + "TabSort": "Sort", + "TabFilter": "Filter", + "ButtonView": "View", + "LabelPageSize": "Item limit:", + "LabelPath": "Path:", + "LabelView": "View:", + "TabUsers": "Users", + "LabelSortName": "Sort name:", + "LabelDateAdded": "Date added:", + "HeaderFeatures": "Features", + "HeaderAdvanced": "Advanced", + "ButtonSync": "Sync", + "TabScheduledTasks": "Scheduled Tasks", + "HeaderChapters": "Chapters", + "HeaderResumeSettings": "Resume Settings", + "TabSync": "Sync", + "TitleUsers": "Users", + "LabelProtocol": "Protocol:", + "OptionProtocolHttp": "Http", + "OptionProtocolHls": "Http Live Streaming", + "LabelContext": "Context:", + "OptionContextStreaming": "Streaming", + "OptionContextStatic": "Sync", + "ButtonAddToPlaylist": "Add to playlist", + "TabPlaylists": "Playlists", + "ButtonClose": "Close", + "LabelAllLanguages": "All languages", + "HeaderBrowseOnlineImages": "Browse Online Images", + "LabelSource": "Source:", + "OptionAll": "All", + "LabelImage": "Image:", + "ButtonBrowseImages": "Browse Images", + "HeaderImages": "Images", + "HeaderBackdrops": "Backdrops", + "HeaderScreenshots": "Screenshots", + "HeaderAddUpdateImage": "Add\/Update Image", + "LabelJpgPngOnly": "JPG\/PNG only", + "LabelImageType": "Image type:", + "OptionPrimary": "Primary", + "OptionArt": "Art", + "OptionBox": "Box", + "OptionBoxRear": "Box rear", + "OptionDisc": "Disc", + "OptionIcon": "Icon", + "OptionLogo": "Logo", + "OptionMenu": "Menu", + "OptionScreenshot": "Screenshot", + "OptionLocked": "Locked", + "OptionUnidentified": "Unidentified", + "OptionMissingParentalRating": "Missing parental rating", + "OptionStub": "Stub", + "HeaderEpisodes": "Episodes:", + "OptionSeason0": "Season 0", + "LabelReport": "Report:", + "OptionReportSongs": "Songs", + "OptionReportSeries": "Series", + "OptionReportSeasons": "Seasons", + "OptionReportTrailers": "Trailers", + "OptionReportMusicVideos": "Music videos", + "OptionReportMovies": "Movies", + "OptionReportHomeVideos": "Home videos", + "OptionReportGames": "Games", + "OptionReportEpisodes": "Episodes", + "OptionReportCollections": "Collections", + "OptionReportBooks": "Books", + "OptionReportArtists": "Artists", + "OptionReportAlbums": "Albums", + "OptionReportAdultVideos": "Adult videos", + "ButtonMore": "More", + "HeaderActivity": "Activity", + "ScheduledTaskStartedWithName": "{0} started", + "ScheduledTaskCancelledWithName": "{0} was cancelled", + "ScheduledTaskCompletedWithName": "{0} completed", + "ScheduledTaskFailed": "Scheduled task completed", + "PluginInstalledWithName": "{0} was installed", + "PluginUpdatedWithName": "{0} was updated", + "PluginUninstalledWithName": "{0} was uninstalled", + "ScheduledTaskFailedWithName": "{0} failed", + "ItemAddedWithName": "{0} was added to the library", + "ItemRemovedWithName": "{0} was removed from the library", + "DeviceOnlineWithName": "{0} is connected", + "UserOnlineFromDevice": "{0} is online from {1}", + "DeviceOfflineWithName": "{0} has disconnected", + "UserOfflineFromDevice": "{0} has disconnected from {1}", + "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", + "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", + "LabelRunningTimeValue": "Running time: {0}", + "LabelIpAddressValue": "Ip address: {0}", + "UserLockedOutWithName": "User {0} has been locked out", + "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", + "UserCreatedWithName": "User {0} has been created", + "UserPasswordChangedWithName": "Password has been changed for user {0}", + "UserDeletedWithName": "User {0} has been deleted", + "MessageServerConfigurationUpdated": "Server configuration has been updated", + "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", + "MessageApplicationUpdated": "Emby Server has been updated", + "AuthenticationSucceededWithUserName": "{0} successfully authenticated", + "FailedLoginAttemptWithUserName": "Failed login attempt from {0}", + "UserDownloadingItemWithValues": "{0} is downloading {1}", + "UserStartedPlayingItemWithValues": "{0} has started playing {1}", + "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", + "AppDeviceValues": "App: {0}, Device: {1}", + "ProviderValue": "Provider: {0}", + "LabelChannelDownloadSizeLimit": "Download size limit (GB):", + "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.", + "HeaderRecentActivity": "Recent Activity", + "HeaderPeople": "People", + "HeaderDownloadPeopleMetadataFor": "Download biography and images for:", + "OptionComposers": "Composers", + "OptionOthers": "Others", + "HeaderDownloadPeopleMetadataForHelp": "Enabling additional options will provide more on-screen information but will result in slower library scans.", + "ViewTypeFolders": "Folders", + "LabelDisplayFoldersView": "Display a folders view to show plain media folders", + "ViewTypeLiveTvRecordingGroups": "Recordings", + "ViewTypeLiveTvChannels": "Channels", + "LabelEasyPinCode": "Easy pin code:", + "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.", + "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", + "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", + "HeaderPassword": "Password", + "HeaderLocalAccess": "Local Access", + "HeaderViewOrder": "View Order", + "ButtonResetEasyPassword": "Reset easy pin code", + "LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps", + "LabelMetadataRefreshMode": "Metadata refresh mode:", + "LabelImageRefreshMode": "Image refresh mode:", + "OptionDownloadMissingImages": "Download missing images", + "OptionReplaceExistingImages": "Replace existing images", + "OptionRefreshAllData": "Refresh all data", + "OptionAddMissingDataOnly": "Add missing data only", + "OptionLocalRefreshOnly": "Local refresh only", + "HeaderRefreshMetadata": "Refresh Metadata", + "HeaderPersonInfo": "Person Info", + "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", + "HeaderConfirmDeletion": "Confirm Deletion", + "LabelFollowingFileWillBeDeleted": "The following file will be deleted:", + "LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:", + "ButtonIdentify": "Identify", + "LabelAlbumArtist": "Album artist:", + "LabelAlbumArtists": "Album artists:", + "LabelAlbum": "Album:", + "LabelCommunityRating": "Community rating:", + "LabelVoteCount": "Vote count:", + "LabelMetascore": "Metascore:", + "LabelCriticRating": "Critic rating:", + "LabelCriticRatingSummary": "Critic rating summary:", + "LabelAwardSummary": "Award summary:", + "LabelWebsite": "Website:", + "LabelTagline": "Tagline:", + "LabelOverview": "Overview:", + "LabelShortOverview": "Short overview:", + "LabelReleaseDate": "Release date:", + "LabelYear": "Year:", + "LabelPlaceOfBirth": "Place of birth:", + "LabelEndDate": "End date:", + "LabelAirDate": "Air days:", + "LabelAirTime:": "Air time:", + "LabelRuntimeMinutes": "Run time (minutes):", + "LabelParentalRating": "Parental rating:", + "LabelCustomRating": "Custom rating:", + "LabelBudget": "Budget", + "LabelRevenue": "Revenue ($):", + "LabelOriginalAspectRatio": "Original aspect ratio:", + "LabelPlayers": "Players:", + "Label3DFormat": "3D format:", + "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", + "HeaderSpecialEpisodeInfo": "Special Episode Info", + "HeaderExternalIds": "External Id's:", + "LabelDvdSeasonNumber": "Dvd season number:", + "LabelDvdEpisodeNumber": "Dvd episode number:", + "LabelAbsoluteEpisodeNumber": "Absolute episode number:", + "LabelAirsBeforeSeason": "Airs before season:", + "LabelAirsAfterSeason": "Airs after season:", + "LabelAirsBeforeEpisode": "Airs before episode:", + "LabelTreatImageAs": "Treat image as:", + "LabelDisplayOrder": "Display order:", + "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", + "HeaderCountries": "Countries", + "HeaderGenres": "Genres", + "HeaderPlotKeywords": "Plot Keywords", + "HeaderStudios": "Studios", + "HeaderTags": "Tags", + "HeaderMetadataSettings": "Metadata Settings", + "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", + "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", + "HeaderDonationType": "Donation type:", + "OptionMakeOneTimeDonation": "Make a separate donation", + "OptionNoTrailer": "No Trailer", + "OptionNoThemeSong": "No Theme Song", + "OptionNoThemeVideo": "No Theme Video", + "LabelOneTimeDonationAmount": "Donation amount:", + "ButtonPurchase": "Purchase", + "OptionActor": "Actor", + "OptionComposer": "Composer", + "OptionDirector": "Director", + "OptionGuestStar": "Guest star", + "OptionProducer": "Producer", + "OptionWriter": "Writer", + "LabelAirDays": "Air days:", + "LabelAirTime": "Air time:", + "HeaderMediaInfo": "Media Info", + "HeaderPhotoInfo": "Photo Info", + "HeaderInstall": "Install", + "LabelSelectVersionToInstall": "Select version to install:", + "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere", + "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.", + "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.", + "HeaderReviews": "Reviews", + "HeaderDeveloperInfo": "Developer Info", + "HeaderRevisionHistory": "Revision History", + "ButtonViewWebsite": "View website", + "HeaderXmlSettings": "Xml Settings", + "HeaderXmlDocumentAttributes": "Xml Document Attributes", + "HeaderXmlDocumentAttribute": "Xml Document Attribute", + "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", + "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", + "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", + "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", + "LabelConnectGuestUserName": "Their Emby username or email address:", + "LabelConnectUserName": "Emby username\/email:", + "LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.", + "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect", + "LabelExternalPlayers": "External players:", + "LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.", + "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.", + "LabelEnableItemPreviews": "Enable item previews", + "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.", + "HeaderSubtitleProfile": "Subtitle Profile", + "HeaderSubtitleProfiles": "Subtitle Profiles", + "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", + "LabelFormat": "Format:", + "LabelMethod": "Method:", + "LabelDidlMode": "Didl mode:", + "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", + "OptionResElement": "res element", + "OptionEmbedSubtitles": "Embed within container", + "OptionExternallyDownloaded": "External download", + "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", + "LabelSubtitleFormatHelp": "Example: srt", + "ButtonLearnMore": "Learn more", + "TabPlayback": "Playback", + "HeaderLanguagePreferences": "Language Preferences", + "TabCinemaMode": "Cinema Mode", + "TitlePlayback": "Playback", + "LabelEnableCinemaModeFor": "Enable cinema mode for:", + "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", + "OptionTrailersFromMyMovies": "Include trailers from movies in my library", + "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", + "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", + "LabelEnableIntroParentalControl": "Enable smart parental control", + "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", + "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.", + "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", + "LabelCustomIntrosPath": "Custom intros path:", + "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", + "ValueSpecialEpisodeName": "Special - {0}", + "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", + "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", + "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", + "LabelDisplayTrailersWithinMovieSuggestions": "Display trailers within movie suggestions", + "LabelDisplayTrailersWithinMovieSuggestionsHelp": "Requires installation of the Trailer channel.", + "CinemaModeConfigurationHelp2": "Emby apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", + "LabelEnableCinemaMode": "Enable cinema mode", + "HeaderCinemaMode": "Cinema Mode", + "LabelDateAddedBehavior": "Date added behavior for new content:", + "OptionDateAddedImportTime": "Use date scanned into the library", + "OptionDateAddedFileTime": "Use file creation date", + "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", + "LabelNumberTrailerToPlay": "Number of trailers to play:", + "TitleDevices": "Devices", + "TabCameraUpload": "Camera Upload", + "TabDevices": "Devices", + "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Emby.", + "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", + "LabelCameraUploadPath": "Camera upload path:", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", + "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", + "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", + "LabelCustomDeviceDisplayName": "Display name:", + "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", + "HeaderInviteUser": "Invite User", + "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.", + "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.", + "ButtonSendInvitation": "Send Invitation", + "HeaderSignInWithConnect": "Sign in with Emby Connect", + "HeaderGuests": "Guests", + "HeaderLocalUsers": "Local Users", + "HeaderPendingInvitations": "Pending Invitations", + "TabParentalControl": "Parental Control", + "HeaderAccessSchedule": "Access Schedule", + "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", + "ButtonAddSchedule": "Add Schedule", + "LabelAccessDay": "Day of week:", + "LabelAccessStart": "Start time:", + "LabelAccessEnd": "End time:", + "HeaderSchedule": "Schedule", + "OptionEveryday": "Every day", + "OptionWeekdays": "Weekdays", + "OptionWeekends": "Weekends", + "MessageProfileInfoSynced": "User profile information synced with Emby Connect.", + "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account", + "ButtonTrailerReel": "Trailer reel", + "HeaderTrailerReel": "Trailer Reel", + "OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers", + "HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.", + "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", + "HeaderNewUsers": "New Users", + "ButtonSignUp": "Sign up", + "ButtonForgotPassword": "Forgot password", + "OptionDisableUserPreferences": "Disable access to user preferences", + "OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.", + "HeaderSelectServer": "Select Server", + "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", + "TitleNewUser": "New User", + "ButtonConfigurePassword": "Configure Password", + "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", + "HeaderLibraryAccess": "Library Access", + "HeaderChannelAccess": "Channel Access", + "HeaderLatestItems": "Latest Items", + "LabelSelectLastestItemsFolders": "Include media from the following sections in Latest Items", + "HeaderShareMediaFolders": "Share Media Folders", + "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", + "HeaderInvitations": "Invitations", + "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", + "HeaderForgotPassword": "Forgot Password", + "TitleForgotPassword": "Forgot Password", + "TitlePasswordReset": "Password Reset", + "LabelPasswordRecoveryPinCode": "Pin code:", + "HeaderPasswordReset": "Password Reset", + "HeaderParentalRatings": "Parental Ratings", + "HeaderVideoTypes": "Video Types", + "HeaderYears": "Years", + "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", + "LabelBlockContentWithTags": "Block content with tags:", + "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", + "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", + "TabActivity": "Activity", + "TitleSync": "Sync", + "OptionAllowSyncContent": "Allow Sync", + "OptionAllowContentDownloading": "Allow media downloading", + "NameSeasonUnknown": "Season Unknown", + "NameSeasonNumber": "Season {0}", + "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", + "TabJobs": "Jobs", + "TabSyncJobs": "Sync Jobs", + "LabelTagFilterMode": "Mode:", + "LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.", + "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", + "MessageReenableUser": "See below to reenable", + "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", + "OptionTVMovies": "TV Movies", + "HeaderUpcomingMovies": "Upcoming Movies", + "HeaderUpcomingSports": "Upcoming Sports", + "HeaderUpcomingPrograms": "Upcoming Programs", + "ButtonMoreItems": "More", + "LabelShowLibraryTileNames": "Show library tile names", + "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", + "OptionEnableTranscodingThrottle": "Enable throttling", + "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", + "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", + "OptionAllowSyncTranscoding": "Allow syncing that requires transcoding", + "HeaderPlayback": "Media Playback", + "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", + "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", + "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.", + "TabStreaming": "Streaming", + "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", + "LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.", + "LabelConversionCpuCoreLimit": "CPU core limit:", + "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", + "OptionEnableFullSpeedConversion": "Enable full speed conversion", + "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", + "HeaderPlaylists": "Playlists", + "HeaderViewStyles": "View Styles", + "LabelSelectViewStyles": "Enable enhanced presentations for:", + "LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.", + "TabPhotos": "Photos", + "TabVideos": "Videos", + "HeaderWelcomeToEmby": "Welcome to Emby", + "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", + "ButtonSkip": "Skip", + "TextConnectToServerManually": "Connect to server manually", + "ButtonSignInWithConnect": "Sign in with Emby Connect", + "ButtonConnect": "Connect", + "LabelServerHost": "Host:", + "LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com", + "LabelServerPort": "Port:", + "HeaderNewServer": "New Server", + "ButtonChangeServer": "Change Server", + "HeaderConnectToServer": "Connect to Server", + "OptionReportList": "List View", + "OptionReportStatistics": "Statistics", + "OptionReportGrouping": "Grouping", + "HeaderExport": "Export", + "HeaderColumns": "Columns", + "ButtonReset": "Reset", + "OptionEnableExternalVideoPlayers": "Enable external video players", + "ButtonUnlockGuide": "Unlock Guide", + "LabelEnableFullScreen": "Enable fullscreen mode", + "LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough", + "OptionSyncToSDCard": "Synced to external SD card", + "LabelEmail": "Email:", + "LabelUsername": "Username:", + "HeaderSignUp": "Sign Up", + "LabelPasswordConfirm": "Password (confirm):", + "ButtonAddServer": "Add Server", + "TabHomeScreen": "Home Screen", + "HeaderDisplay": "Display", + "HeaderNavigation": "Navigation", + "LegendTheseSettingsShared": "These settings are shared on all devices", + "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", + "OptionOtherTrailers": "Include trailers from older movies", + "HeaderOverview": "Overview", + "HeaderShortOverview": "Short Overview", + "HeaderType": "Type", + "HeaderSeverity": "Severity", + "OptionReportActivities": "Activities Log", + "HeaderTunerDevices": "Tuner Devices", + "ButtonAddDevice": "Add Device", + "HeaderAddDevice": "Add Device", + "HeaderExternalServices": "External Services", + "LabelTunerIpAddress": "Tuner IP Address:", + "TabExternalServices": "External Services", + "TabTuners": "Tuners", + "HeaderGuideProviders": "Guide Providers", + "AddGuideProviderHelp": "Add a source for TV Guide information", + "LabelZipCode": "Zip Code:", + "GuideProviderSelectListings": "Select Listings", + "GuideProviderLogin": "Login", + "LabelLineup": "Lineup:", + "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", + "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", + "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", + "ButtonRepeat": "Repeat", + "LabelEnableThisTuner": "Enable this tuner", + "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", + "HeaderLocked": "Locked", + "HeaderUnidentified": "Unidentified", + "HeaderImagePrimary": "Primary", + "HeaderImageBackdrop": "Backdrop", + "HeaderImageLogo": "Logo", + "HeaderUserPrimaryImage": "User Image", + "ButtonDisplaySettings": "Display settings", + "ButtonHomeScreenSettings": "Home screen settings", + "ButtonPlaybackSettings": "Playback settings", + "ButtonProfile": "Profile", + "ButtonDisplaySettingsHelp": "Your Emby display settings", + "ButtonHomeScreenSettingsHelp": "Configure the display of your home screen", + "ButtonPlaybackSettingsHelp": "Specify your audio and subtitle preferences, streaming quality, and more.", + "ButtonProfileHelp": "Set your profile image and password.", + "HeaderHomeScreenSettings": "Home Screen settings", + "HeaderProfile": "Profile", + "HeaderLanguage": "Language", + "ButtonSyncSettings": "Sync settings", + "ButtonSyncSettingsHelp": "Configure your sync settings", + "LabelTranscodingThreadCount": "Transcoding thread count:", + "LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.", + "OptionMax": "Max", + "HeaderEmbyGuide": "Emby Guide", + "LabelSyncPath": "Synced content path:", + "OptionSyncOnlyOnWifi": "Sync only on Wifi", + "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", + "HeaderMetadata": "Metadata", + "HeaderRecordingOptions": "Recording Options", + "ButtonShare": "Share", + "HeaderUpcomingForKids": "Upcoming for Kids", + "HeaderSetupLiveTV": "Setup Live TV", + "LabelTunerType": "Tuner type:", + "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", + "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", + "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", + "HeaderSetupTVGuide": "Setup TV Guide", + "LabelDataProvider": "Data provider:", + "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", + "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", + "HeaderDefaultPadding": "Default Padding", + "HeaderSubtitles": "Subtitles", + "HeaderVideos": "Videos", + "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", + "OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.", + "LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:", + "LabelHardwareAccelerationType": "Hardware acceleration:", + "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "ButtonServerDashboard": "Server Dashboard", + "HeaderAdmin": "Admin", + "ButtonSignOut": "Sign out", + "HeaderCameraUpload": "Camera Upload", + "SelectCameraUploadServers": "Upload camera photos to the following servers:", + "ButtonClear": "Clear", + "ButtonEditImages": "Edit Images", + "LabelFolder": "Folder:", + "HeadersFolders": "Folders", + "LabelDisplayName": "Display name:" +} \ No newline at end of file diff --git a/dashboard-ui/strings/html/kk.json b/dashboard-ui/strings/html/kk.json index 185ca56ed4..0ccaa45b2f 100644 --- a/dashboard-ui/strings/html/kk.json +++ b/dashboard-ui/strings/html/kk.json @@ -1513,8 +1513,8 @@ "OptionEnableVideoFrameAnalysis": "\u0411\u0435\u0439\u043d\u0435\u043d\u0456 \u0434\u0430\u0440\u0430\u043b\u0430\u0439 \u0442\u0430\u043b\u0434\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443", "OptionEnableVideoFrameAnalysisHelp": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0434\u044b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456\u043d\u0448\u0435 \u0442\u0438\u0456\u043c\u0434\u0456 \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u0442\u0443\u0440\u0430\u043b\u044b \u0442\u043e\u043b\u044b\u049b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0456 \u0431\u04e9\u043b\u0456\u043f \u0430\u043b\u0443. \u0411\u04b1\u043b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0456 \u04b1\u0437\u0430\u0493\u044b\u0440\u0430\u049b \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0443\u044b\u043d\u0430 \u0441\u0435\u0431\u0435\u043f \u0431\u043e\u043b\u0430\u0434\u044b.", "LabelVideoFrameAnalysisLimit": "\u0414\u0430\u0440\u0430\u043b\u0430\u0439 \u0442\u0430\u043b\u0434\u0430\u0443\u0434\u044b \u043c\u044b\u043d\u0430\u0434\u0430\u043d \u043a\u0435\u043c \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u04af\u0448\u0456\u043d \u0448\u0435\u043a\u0442\u0435\u0443:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "LabelHardwareAccelerationType": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u044b\u049b \u0436\u0435\u0434\u0435\u043b\u0434\u0435\u0442\u0443;", + "LabelHardwareAccelerationTypeHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430\u0493\u044b \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0434\u0435 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456.", "ButtonServerDashboard": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0431\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b", "HeaderAdmin": "\u0411\u0430\u0441\u049b\u0430\u0440\u0443", "ButtonSignOut": "\u0428\u044b\u0493\u0443", diff --git a/dashboard-ui/strings/html/nl.json b/dashboard-ui/strings/html/nl.json index 00b2f13ee2..04fa8f4055 100644 --- a/dashboard-ui/strings/html/nl.json +++ b/dashboard-ui/strings/html/nl.json @@ -1513,8 +1513,8 @@ "OptionEnableVideoFrameAnalysis": "Frame voor frame video-analyse inschakelen", "OptionEnableVideoFrameAnalysisHelp": "Extraheer informatie over video die gebruikt kan worden om transcodering zo effici\u00ebnt mogelijk te maken. Dit zal leiden tot langer durende bibliotheek scans .", "LabelVideoFrameAnalysisLimit": "Beperk frame voor frame analyse voor video's kleiner dan:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "LabelHardwareAccelerationType": "Hardware acceleratie:", + "LabelHardwareAccelerationTypeHelp": "Alleen beschikbaar op ondersteunde systemen.", "ButtonServerDashboard": "Server Dashboard", "HeaderAdmin": "Beheerder", "ButtonSignOut": "Afmelden", diff --git a/dashboard-ui/strings/html/pl.json b/dashboard-ui/strings/html/pl.json index 447726c62b..7075bf4244 100644 --- a/dashboard-ui/strings/html/pl.json +++ b/dashboard-ui/strings/html/pl.json @@ -1271,8 +1271,8 @@ "OptionExternallyDownloaded": "Pobierz zewn\u0119trznie", "OptionHlsSegmentedSubtitles": "Napisy dostosowane do HLS", "LabelSubtitleFormatHelp": "Przyk\u0142ad: srt", - "ButtonLearnMore": "Learn more", - "TabPlayback": "Playback", + "ButtonLearnMore": "Dowiedz si\u0119 wi\u0119cej", + "TabPlayback": "Odtwarzanie", "HeaderLanguagePreferences": "Preferancje j\u0119zyka", "TabCinemaMode": "Tryb kinowy", "TitlePlayback": "Odtwarzanie", @@ -1513,8 +1513,8 @@ "OptionEnableVideoFrameAnalysis": "W\u0142\u0105cz analiz\u0119 wideo klatka po klatce", "OptionEnableVideoFrameAnalysisHelp": "Wydob\u0105d\u017a szczeg\u00f3\u0142owe informacje o filmach kt\u00f3re mog\u0105 pom\u00f3c transkodowa\u0107 najwydajniej jako to mo\u017cliwe. Wyd\u0142u\u017cy to proces skanowania biblioteki.", "LabelVideoFrameAnalysisLimit": "Ogranicz analiz\u0119 wideo klatka po klatce do mniej ni\u017c:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "LabelHardwareAccelerationType": "Akceleracja sprz\u0119towa:", + "LabelHardwareAccelerationTypeHelp": "Dost\u0119pne tylko na wspieranych systemach.", "ButtonServerDashboard": "Panel G\u0142\u00f3wny Serwera", "HeaderAdmin": "Admin", "ButtonSignOut": "Wyloguj", diff --git a/dashboard-ui/strings/html/pt-BR.json b/dashboard-ui/strings/html/pt-BR.json index 9b3baca5d9..911789ab6c 100644 --- a/dashboard-ui/strings/html/pt-BR.json +++ b/dashboard-ui/strings/html/pt-BR.json @@ -40,7 +40,7 @@ "ButtonPrivacyPolicy": "Pol\u00edtica de privacidade", "ButtonTermsOfService": "Termos de Servi\u00e7o", "HeaderDeveloperOptions": "Op\u00e7\u00f5es de Desenvolvedor", - "OptionEnableWebClientResponseCache": "Ativar o cache de resposta do client web", + "OptionEnableWebClientResponseCache": "Ativar o cache de resposta do cliente web", "OptionDisableForDevelopmentHelp": "Configure esta op\u00e7\u00e3o de acordo ao prop\u00f3sito de desenvolvimento do cliente web", "OptionEnableWebClientResourceMinification": "Ativar a minimiza\u00e7\u00e3o de recursos do cliente web", "LabelDashboardSourcePath": "Caminho fonte do cliente web:", @@ -333,7 +333,7 @@ "TabServer": "Servidor", "TabTranscoding": "Transcodifica\u00e7\u00e3o", "TitleAdvanced": "Avan\u00e7ado", - "OptionRelease": "Lan\u00e7amento Oficial", + "OptionRelease": "Vers\u00e3o Oficial", "OptionBeta": "Beta", "OptionDev": "Dev (Inst\u00e1vel)", "LabelAllowServerAutoRestart": "Permitir ao servidor reiniciar automaticamente para aplicar as atualiza\u00e7\u00f5es", @@ -989,7 +989,7 @@ "LabelKodiMetadataEnablePathSubstitution": "Ativar substitui\u00e7\u00e3o de caminho", "LabelKodiMetadataEnablePathSubstitutionHelp": "Ativa a substitui\u00e7\u00e3o do caminho das imagens usando as op\u00e7\u00f5es de substitui\u00e7\u00e3o de caminho no servidor.", "LabelKodiMetadataEnablePathSubstitutionHelp2": "Ver substitui\u00e7\u00e3o de caminho.", - "OptionDisplayChannelsInline": "Exibir canais em linha dentro de minhas visualiza\u00e7\u00f5es", + "OptionDisplayChannelsInline": "Exibir canais dentro de minhas visualiza\u00e7\u00f5es", "OptionDisplayChannelsInlineHelp": "Se ativado, os canais ser\u00e3o exibidos diretamente em outras visualiza\u00e7\u00f5es. Se desativado, eles ser\u00e3o exibidos dentro de uma visualiza\u00e7\u00e3o separada de Canais.", "LabelDisplayCollectionsView": "Exibir uma visualiza\u00e7\u00e3o de cole\u00e7\u00f5es para mostrar colet\u00e2neas de filmes", "LabelDisplayCollectionsViewHelp": "Esta op\u00e7\u00e3o criar\u00e1 uma visualiza\u00e7\u00e3o separada para exibir cole\u00e7\u00f5es criadas ou acessadas por voc\u00ea. Para criar uma cole\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque e segure qualquer filme e selecione 'Adicionar \u00e0 Cole\u00e7\u00e3o'.", @@ -1277,7 +1277,7 @@ "TabCinemaMode": "Modo Cinema", "TitlePlayback": "Reprodu\u00e7\u00e3o", "LabelEnableCinemaModeFor": "Ativar modo cinema para:", - "CinemaModeConfigurationHelp": "O modo cinema traz a experi\u00eancia do cinema diretamente para a sua sala, possibilitando reproduzir trailers e intros personalizadas antes da fun\u00e7\u00e3o principal.", + "CinemaModeConfigurationHelp": "O modo cinema traz a experi\u00eancia do cinema diretamente para a sua sala, possibilitando reproduzir trailers e introdu\u00e7\u00f5es personalizadas antes do filme principal.", "OptionTrailersFromMyMovies": "Incluir trailers dos filmes na biblioteca", "OptionUpcomingMoviesInTheaters": "Incluir trailers dos filmes novos e por estrear", "LabelLimitIntrosToUnwatchedContent": "Usar trailers apenas para conte\u00fado n\u00e3o assistido", @@ -1285,7 +1285,7 @@ "LabelEnableIntroParentalControlHelp": "Os trailers s\u00f3 ser\u00e3o selecionados se sua classifica\u00e7\u00e3o parental for igual ou menor que o conte\u00fado que est\u00e1 sendo assistido.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "Estes recursos requerem uma subscri\u00e7\u00e3o ativa do Emby Premiere e a instala\u00e7\u00e3o do plugin de canal Trailer.", "OptionTrailersFromMyMoviesHelp": "\u00c9 necess\u00e1rio o ajuste dos trailers locais.", - "LabelCustomIntrosPath": "Caminho das intros personalizadas:", + "LabelCustomIntrosPath": "Caminho das introdu\u00e7\u00f5es personalizadas:", "LabelCustomIntrosPathHelp": "Uma pasta contendo arquivos de v\u00eddeo. Um v\u00eddeo ser\u00e1 selecionado aleatoriamente e reproduzido depois dos trailers.", "ValueSpecialEpisodeName": "Especial - {0}", "LabelSelectInternetTrailersForCinemaMode": "Trailers da Internet:", @@ -1431,7 +1431,7 @@ "OptionEnableExternalVideoPlayers": "Ativar reprodutores de v\u00eddeo externos", "ButtonUnlockGuide": "Desbloquear Guia", "LabelEnableFullScreen": "Ativar modo tela cheia", - "LabelEnableChromecastAc3Passthrough": "Ativar a assagem direta de AC3 para o Chromecast", + "LabelEnableChromecastAc3Passthrough": "Ativar a passagem direta de AC3 para o Chromecast", "OptionSyncToSDCard": "Sincronizado para um cart\u00e3o SD externo", "LabelEmail": "Email:", "LabelUsername": "Nome do Usu\u00e1rio:", @@ -1513,8 +1513,8 @@ "OptionEnableVideoFrameAnalysis": "Habilitar an\u00e1lise de v\u00eddeo quadro a quadro", "OptionEnableVideoFrameAnalysisHelp": "Extrair informa\u00e7\u00f5es detalhadas sobre v\u00eddeos que podem ser usadas para tornar a transcodifica\u00e7\u00e3o mais eficiente. Os exames da biblioteca demorar\u00e3o mais tempo.", "LabelVideoFrameAnalysisLimit": "Habilitar an\u00e1lise quadro a quadro apenas para v\u00eddeos menores que:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "LabelHardwareAccelerationType": "Acelera\u00e7\u00e3o de hardware:", + "LabelHardwareAccelerationTypeHelp": "Dispon\u00edvel somente em sistemas suportados.", "ButtonServerDashboard": "Painel do Servidor", "HeaderAdmin": "Admin", "ButtonSignOut": "Sair", diff --git a/dashboard-ui/strings/html/ru.json b/dashboard-ui/strings/html/ru.json index 544b5e3f33..0f196a78d3 100644 --- a/dashboard-ui/strings/html/ru.json +++ b/dashboard-ui/strings/html/ru.json @@ -1513,8 +1513,8 @@ "OptionEnableVideoFrameAnalysis": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043a\u0430\u0434\u0440\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0432\u0438\u0434\u0435\u043e", "OptionEnableVideoFrameAnalysisHelp": "\u0418\u0437\u0432\u043b\u0435\u043a\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u044b\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u0430\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u044b, \u0447\u0442\u043e\u0431\u044b \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443 \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0437\u0430\u0439\u043c\u0443\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438.", "LabelVideoFrameAnalysisLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u043a\u0430\u0434\u0440\u043e\u0432\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043a \u0432\u0438\u0434\u0435\u043e \u043c\u0435\u043d\u044c\u0448\u0435 \u0447\u0435\u043c:", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "LabelHardwareAccelerationType": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0435 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435:", + "LabelHardwareAccelerationTypeHelp": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0445 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0445.", "ButtonServerDashboard": "\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430", "HeaderAdmin": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "ButtonSignOut": "\u0412\u044b\u0439\u0442\u0438", diff --git a/dashboard-ui/strings/javascript/ca.json b/dashboard-ui/strings/javascript/ca.json index e9fc667eb9..4429066715 100644 --- a/dashboard-ui/strings/javascript/ca.json +++ b/dashboard-ui/strings/javascript/ca.json @@ -17,19 +17,19 @@ "PasswordResetHeader": "Reset Password", "PasswordResetComplete": "La contrasenya s'ha restablert.", "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Esteu segur que voleu restablir la contrasenya?", + "PasswordResetConfirmation": "Est\u00e0s segur que vols restablir la contrasenya?", "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "S'ha guardat la contrasenya.", - "PasswordMatchError": "Confirmaci\u00f3 de la contrasenya i la contrasenya han de coincidir.", + "PasswordSaved": "Contrasenya desada.", + "PasswordMatchError": "La confirmaci\u00f3 de la contrasenya i la contrasenya han de coincidir.", "OptionRelease": "Versi\u00f3 Oficial", "OptionBeta": "Beta", "OptionDev": "Dev (Inestable)", - "UninstallPluginHeader": "Desinstal\u00b7lar Plugin.", - "UninstallPluginConfirmation": "Esteu segur que voleu desinstal\u00b7lar {0}?", - "NoPluginConfigurationMessage": "Aquest plugin no necessita configuraci\u00f3.", - "NoPluginsInstalledMessage": "No t\u00e9 cap plugin instal\u00b7lat.", - "BrowsePluginCatalogMessage": "Consulti el nostre cat\u00e0leg per veure els plugins disponibles.", + "UninstallPluginHeader": "Desinstal\u00b7lar Complement.", + "UninstallPluginConfirmation": "Est\u00e0s segur que vols desinstal\u00b7lar {0}?", + "NoPluginConfigurationMessage": "Aquest complement no necessita configuraci\u00f3.", + "NoPluginsInstalledMessage": "No tens cap complement instal\u00b7lat.", + "BrowsePluginCatalogMessage": "Consulta el nostre cat\u00e0leg per veure els complements disponibles.", "MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeysLinked": "Keys linked.", "HeaderConfirmation": "Confirmation", @@ -39,7 +39,7 @@ "TextEnjoyBonusFeatures": "Gaudeix de caracter\u00edstiques addicionals", "TitleLiveTV": "TV en Directe", "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", + "HeaderAddTag": "Afegir Etiqueta", "LabelTag": "Tag:", "ButtonSelectView": "Select view", "TitleSync": "Sync", @@ -63,26 +63,26 @@ "HeaderUsers": "Usuaris", "PluginCategoryGeneral": "General", "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", + "PluginCategoryScreenSaver": "Protectors de Pantalla", "PluginCategoryTheme": "Themes", "PluginCategorySync": "Sync", "PluginCategorySocialIntegration": "Social Networks", "PluginCategoryNotifications": "Notificacions", "PluginCategoryMetadata": "Metadades", "PluginCategoryLiveTV": "TV en Directe", - "PluginCategoryChannel": "Channels", + "PluginCategoryChannel": "Canals", "HeaderSearch": "Search", "ValueDateCreated": "Date created: {0}", "LabelArtist": "Artist", "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", + "LabelMusicVideo": "V\u00eddeo Musical", "LabelEpisode": "Episode", - "LabelSeries": "Series", + "LabelSeries": "S\u00e8ries", "LabelStopping": "Stopping", "LabelCancelled": "(cancelled)", "LabelFailed": "(failed)", "ButtonHelp": "Ajuda", - "ButtonSave": "Save", + "ButtonSave": "Desa", "ButtonDownload": "Download", "SyncJobStatusQueued": "Queued", "SyncJobStatusConverting": "Converting", @@ -94,15 +94,15 @@ "SyncJobStatusCompletedWithError": "Synced with errors", "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", + "HeaderAddToCollection": "Afegir a Col\u00b7lecci\u00f3", "HeaderNewCollection": "New Collection", "NewCollectionNameExample": "Example: Star Wars Collection", "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", "LabelSelectCollection": "Select collection:", "HeaderDevices": "Dispositius", "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", + "MessageItemsAdded": "\u00cdtems afegits", + "ButtonAddToCollection": "Afegeix a col\u00b7lecci\u00f3", "HeaderSelectCertificatePath": "Select Certificate Path", "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", @@ -216,7 +216,7 @@ "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", "HeaderResume": "Resume", "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", + "HeaderLibraryFolders": "Directoris Multim\u00e8dia", "HeaderLatestMedia": "Darrers Multim\u00e8dia", "ButtonMoreItems": "More...", "ButtonMore": "More", @@ -238,7 +238,7 @@ "HeaderSelectChannelDownloadPath": "Select Channel Download Path", "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", "OptionNewCollection": "New...", - "ButtonAdd": "Add", + "ButtonAdd": "Afegeix", "ButtonRemove": "Remove", "LabelChapterDownloaders": "Chapter downloaders:", "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", @@ -261,7 +261,7 @@ "OrganizePatternResult": "Result: {0}", "AutoOrganizeError": "Error Organizing File", "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", + "HeaderRestart": "Reinicia", "HeaderShutdown": "Shutdown", "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", @@ -287,7 +287,7 @@ "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", "ButtonRemoteControl": "Control Remot", "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", + "ButtonOk": "D'acord", "ButtonCancel": "Cancel", "ButtonRefresh": "Refresh", "LabelCurrentPath": "Current path:", @@ -313,7 +313,7 @@ "ButtonHome": "Inici", "ButtonDashboard": "Tauler de Control", "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", + "ButtonMetadataManager": "Gestor de Metadades", "HeaderTime": "Time", "HeaderName": "Name", "HeaderAlbum": "Album", @@ -321,16 +321,16 @@ "HeaderArtist": "Artist", "LabelAddedOnDate": "Added {0}", "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", + "HeaderChannels": "Canals", + "HeaderMediaFolders": "Directoris Multim\u00e8dia", "HeaderBlockItemsWithNoRating": "Block content with no rating information:", "OptionBlockOthers": "Others", "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", + "OptionBlockTrailers": "Tr\u00e0ilers", + "OptionBlockMusic": "M\u00fasica", + "OptionBlockMovies": "Pel\u00b7l\u00edcules", + "OptionBlockBooks": "Llibres", + "OptionBlockGames": "Jocs", "OptionBlockLiveTvPrograms": "Live TV Programs", "OptionBlockLiveTvChannels": "Live TV Channels", "OptionBlockChannelContent": "Internet Channel Content", @@ -355,7 +355,7 @@ "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", + "MessageItemSaved": "\u00cdtem desat.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionEnded": "Ended", "OptionContinuing": "Continuing", @@ -397,7 +397,7 @@ "ButtonRestart": "Restart", "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from the server.", "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", + "MessageSettingsSaved": "Prefer\u00e8ncies desades.", "ButtonSignOut": "Sign Out", "ButtonMyProfile": "My Profile", "ButtonMyPreferences": "My Preferences", @@ -440,7 +440,7 @@ "ValueOriginalAirDate": "Original air date: {0}", "ButtonRemoveFromPlaylist": "Esborra de la llista de reproducci\u00f3", "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", + "HeaderTrailers": "Tr\u00e0ilers", "HeaderAudio": "\u00c0udio", "HeaderResolution": "Resolution", "HeaderVideo": "Video", @@ -450,7 +450,7 @@ "HeaderParentalRating": "Parental rating", "HeaderReleaseDate": "Release date", "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", + "HeaderSeries": "S\u00e8ries", "HeaderSeason": "Temporada", "HeaderSeasonNumber": "Season number", "HeaderNetwork": "Network", @@ -460,19 +460,19 @@ "HeaderEmbeddedImage": "Embedded image", "HeaderTrack": "Track", "HeaderDisc": "Disc", - "OptionMovies": "Movies", + "OptionMovies": "Pel\u00b7l\u00edcules", "OptionCollections": "Col\u00b7leccions", - "OptionSeries": "Series", + "OptionSeries": "S\u00e8ries", "OptionSeasons": "Seasons", "OptionEpisodes": "Episodes", - "OptionGames": "Games", + "OptionGames": "Jocs", "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", + "OptionMusicArtists": "M\u00fasics", + "OptionMusicAlbums": "\u00c0lbums musicals", + "OptionMusicVideos": "V\u00eddeos musicals", "OptionSongs": "Songs", "OptionHomeVideos": "V\u00eddeos dom\u00e8stics", - "OptionBooks": "Books", + "OptionBooks": "Llibres", "OptionAdultVideos": "Adult videos", "ButtonUp": "Up", "ButtonDown": "Down", @@ -509,7 +509,7 @@ "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "HeaderRenameMediaFolder": "Rename Media Folder", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", + "HeaderAddMediaFolder": "Afegir Directori Multim\u00e8dia", "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", @@ -519,24 +519,24 @@ "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", + "FolderTypeUnset": "No definit (contingut mesclat)", + "FolderTypeMovies": "Pel\u00b7l\u00edcules", + "FolderTypeMusic": "M\u00fasica", "FolderTypeAdultVideos": "Adult videos", "FolderTypePhotos": "Fotos", - "FolderTypeMusicVideos": "Music videos", + "FolderTypeMusicVideos": "V\u00eddeos musicals", "FolderTypeHomeVideos": "V\u00eddeos dom\u00e8stics", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", + "FolderTypeGames": "Jocs", + "FolderTypeBooks": "Llibres", "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", + "TabMovies": "Pel\u00b7l\u00edcules", + "TabSeries": "S\u00e8ries", "TabEpisodes": "Episodes", - "TabTrailers": "Trailers", - "TabGames": "Games", + "TabTrailers": "Tr\u00e0ilers", + "TabGames": "Jocs", "TabAlbums": "Albums", "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", + "TabMusicVideos": "V\u00eddeos musicals", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", "BirthDateValue": "Born: {0}", @@ -587,8 +587,8 @@ "ValueAlbumCount": "{0} albums", "ValueOneSong": "1 song", "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", + "ValueOneMusicVideo": "1 v\u00eddeo musical", + "ValueMusicVideoCount": "{0} v\u00eddeos musicals", "HeaderOffline": "Offline", "HeaderUnaired": "No em\u00e8s", "HeaderMissing": "Missing", @@ -628,10 +628,10 @@ "MediaInfoSoftware": "Software", "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", + "HeaderMovies": "Pel\u00b7l\u00edcules", "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", + "HeaderGames": "Jocs", + "HeaderBooks": "Llibres", "HeaderEpisodes": "Episodes", "HeaderSeasons": "Seasons", "HeaderTracks": "Tracks", @@ -652,7 +652,7 @@ "MediaInfoBitDepth": "Bit depth", "MediaInfoSampleRate": "Sample rate", "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", + "MediaInfoChannels": "Canals", "MediaInfoLayout": "Layout", "MediaInfoLanguage": "Language", "MediaInfoCodec": "Codec", @@ -685,7 +685,7 @@ "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", + "WebClientTourMetadataManager": "Fes clic a edita per obrir el gestor de metadades", "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", "WebClientTourCollections": "Create movie collections to group box sets together", "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", @@ -710,7 +710,7 @@ "MessageRefreshQueued": "Refresh queued", "TabDevices": "Dispositius", "TabExtras": "Extres", - "HeaderUploadImage": "Puja imatge", + "HeaderUploadImage": "Pujar Imatge", "DeviceLastUsedByUserName": "Last used by {0}", "HeaderDeleteDevice": "Elimina dispositiu", "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", @@ -785,11 +785,11 @@ "MessageUnlockAppWithSupporter": "Desbloqueja aquesta funci\u00f3 amb una subscripci\u00f3 activa Emby Premiere.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", "MessagePaymentServicesUnavailable": "Els serveis de pagament no estan disponibles actualment. Siusplau, intenta-ho m\u00e9s tard.", - "MessagePleaseSignInLocalNetwork": "Abans de continuar, si us plau assegureu-vos que esteu connectats a la xarxa local utilitzant una connexi\u00f3 Wi-Fi o LAN.", + "MessagePleaseSignInLocalNetwork": "Abans de continuar, si et plau assegura't que est\u00e0s connectat a la xarxa local utilitzant una connexi\u00f3 Wi-Fi o LAN.", "ButtonUnlockWithPurchase": "Desbloquejar amb la compra", "ButtonUnlockPrice": "Unlock {0}", "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Visualitza en pantalla completa", + "OptionEnableFullscreen": "Habilita pantalla completa", "ButtonServer": "Servidor", "HeaderAdmin": "Admin", "HeaderLibrary": "Biblioteca", @@ -797,12 +797,12 @@ "ButtonInbox": "Safata d'entrada", "HeaderAdvanced": "Avan\u00e7at", "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Digui alguna cosa com...", + "HeaderSaySomethingLike": "Digues alguna cosa com...", "ButtonTryAgain": "Intenta-ho de nou", "HeaderYouSaid": "Has dit...", "MessageWeDidntRecognizeCommand": "Ho sentim, no reconeixem aquesta comanda.", "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No s'han trobat articles", + "MessageNoItemsFound": "No s'han trobat \u00edtems.", "ButtonManageServer": "Gestionar Servidor", "ButtonEditSubtitles": "Editar subt\u00edtols", "ButtonPreferences": "Prefer\u00e8ncies", @@ -810,12 +810,12 @@ "ButtonViewAlbum": "Veure \u00e0lbum", "ButtonEditImages": "Edita imatges", "ErrorMessagePasswordNotMatchConfirm": "La contrasenya i la confirmaci\u00f3 de la contrasenya han de coincidir.", - "ErrorMessageUsernameInUse": "Aquest nom d'usuari ja est\u00e0 en \u00fas. Si us plau, escolliu un nom nou i torneu a provar.", + "ErrorMessageUsernameInUse": "Aquest nom d'usuari ja est\u00e0 en \u00fas. Si et plau, escull un altre nom i torna a provar.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "HeaderShare": "Compartir", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Compartir", + "ButtonShare": "Comparteix", "HeaderConfirm": "Confirmar", "ButtonAdvancedRefresh": "Advanced Refresh", "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", @@ -852,8 +852,8 @@ "HeaderTopPlugins": "Top Plugins", "ButtonRecord": "Record", "ButtonOther": "Other", - "HeaderSortBy": "Ordenar per:", - "HeaderSortOrder": "Ordre de classificaci\u00f3", + "HeaderSortBy": "Ordena per:", + "HeaderSortOrder": "Ordre de Classificaci\u00f3:", "OptionAscending": "Ascendent", "OptionDescending": "Descendent", "OptionNameSort": "Nom", @@ -863,13 +863,13 @@ "OptionDatePlayed": "Date Played", "OptionDateAdded": "Data afegida", "OptionPlayCount": "Play Count", - "ButtonDisconnect": "Desconectar", + "ButtonDisconnect": "Desconnecta", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artista", "OptionAlbum": "\u00c0lbum", "OptionTrackName": "Track Name", "OptionCommunityRating": "Community Rating", - "ButtonSort": "Ordenar", + "ButtonSort": "Ordena", "ButtonMenu": "Men\u00fa", "OptionDefaultSort": "Per defecte", "ButtonFilter": "Filtrar", @@ -904,9 +904,9 @@ "TermsOfUse": "Condicions d'\u00fas", "HeaderTryMultiSelect": "Try Multi-Select", "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", + "NumLocationsValue": "{0} directoris", + "ButtonAddMediaLibrary": "Afegir Biblioteca Multim\u00e8dia", + "ButtonManageFolders": "Gestiona directoris", "HeaderTryDragAndDrop": "Tracta d'arrossegar i deixar anar", "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", "HeaderTryMicrosoftEdge": "Prova Microsoft Edge", diff --git a/dashboard-ui/strings/javascript/de.json b/dashboard-ui/strings/javascript/de.json index b4c3d05752..0deec1980b 100644 --- a/dashboard-ui/strings/javascript/de.json +++ b/dashboard-ui/strings/javascript/de.json @@ -105,7 +105,7 @@ "ButtonAddToCollection": "Zu Sammlung hinzuf\u00fcgen", "HeaderSelectCertificatePath": "W\u00e4hlen Sie einen Zertifikat Ordner", "ConfirmMessageScheduledTaskButton": "Dieser Vorgang l\u00e4uft in der Regel automatisch als geplante Aufgabe ab und erfordert keine manuellen Eingabe. Um die geplante Aufgabe zu konfigurieren, finden Sie unter:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", + "HeaderSupporterBenefit": "Eine aktive Emby Premiere Mitgliedschaft erm\u00f6glicht weitere Vorteile wie z.B. Zugriff auf die Synchronisation, Premium Plugi,s, Internet Channels und mehr. {0}Erfahren Sie mehr{1}.", "LabelSyncNoTargetsHelp": "Es sieht so aus als w\u00fcrden Sie aktuell keine Apps verwenden, die Synchronisation unterst\u00fctzen.", "HeaderWelcomeToProjectServerDashboard": "Willkommen zur Emby Server \u00dcbersicht", "HeaderWelcomeToProjectWebClient": "Willkommen zu Emby", @@ -827,7 +827,7 @@ "ErrorGettingTvLineups": "Ein Fehler trat beim herunterladen des TV Programs auf. Bitte stellen Sie sicher, dass Ihre Informationen korrekt sind und versuchen Sie es erneut.", "MessageCreateAccountAt": "Erstellen Sie ein Konto bei {0}", "ErrorPleaseSelectLineup": "Bitte w\u00e4hlen Sie ein TV Programm und versuchen Sie es erneut. Wenn keine Programme verf\u00fcgbar sind pr\u00fcfen Sie bitte Benutzername, Passwort und Ihre Postleitzahl.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", + "HeaderTryEmbyPremiere": "Probieren Sie Emby Premiere", "ButtonBecomeSupporter": "Holen Sie Emby Premium", "ButtonClosePlayVideo": "Schlie\u00dfe und starte meine Medien", "MessageDidYouKnowCinemaMode": "Wussten Sie schon, das Sie mit Emby Premium, ihr Erlebnis mit Funktionen wie dem Kino-Modus, noch verbessern k\u00f6nnen?", @@ -912,7 +912,7 @@ "HeaderTryMicrosoftEdge": "Versuche Microsoft Edge", "MessageTryMicrosoftEdge": "F\u00fcr ein besseres Erlebnis mit Windows 10, probieren Sie den neuen Microsoft Edge Browser.", "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", + "MessageTryModernBrowser": "F\u00fcr eine bessere Darstellung unter Windows probieren Sie mal einen modernen Browser wie z.B. Google Chrome, Firefox oder Opera.", "ErrorAddingListingsToSchedulesDirect": "Ein Fehler trat beim hinzuf\u00fcgen Ihrer Zusammenstellung zu Ihrem Schedules Direct Konto auf. Schedules Direct erlaubt nur eine begrenzte Anzahl von Zusammenstellungen je Account. Sie sollten sich auf der Website in Ihrem Schedules-Direct Konto einloggen und ein paar Zusammenstellungen von Ihrem Konto l\u00f6schen bevor Sie fortfahren.", "PleaseAddAtLeastOneFolder": "Bitte f\u00fcgen Sie mindestens ein Verzeichniss zur Bibliothek durch Klicken der \"Hinzuf\u00fcgen\"-Schaltfl\u00e4che hinzu.", "ErrorAddingMediaPathToVirtualFolder": "Ein Fehler trat beim Hinzuf\u00fcgen eines Medienverzeichnisses auf. Bitte stellen Sie sicher, dass der Pfad g\u00fcltig ist und der Emby Server Prozess die notwendigen Zugriffsrechte besitzt.", diff --git a/dashboard-ui/strings/javascript/es-MX.json b/dashboard-ui/strings/javascript/es-MX.json index daec73e7ab..5743c83a99 100644 --- a/dashboard-ui/strings/javascript/es-MX.json +++ b/dashboard-ui/strings/javascript/es-MX.json @@ -105,7 +105,7 @@ "ButtonAddToCollection": "Agregar a colecci\u00f3n", "HeaderSelectCertificatePath": "Seleccione Trayectoria del Certificado", "ConfirmMessageScheduledTaskButton": "Esta operaci\u00f3n normalmente se ejecuta de manera autom\u00e1tica como una tarea programada y no requiere de ningun esfuerzo manual. Para configurar la tarea programada, vea:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", + "HeaderSupporterBenefit": "Una suscripci\u00f3n Emby Premiere activa provee beneficios adicionales como acceso a sincronizacion, complementos premium, contenido de canales de internet, y mas. {0}Conocer mas{1}.", "LabelSyncNoTargetsHelp": "Parece que actualmente no cuentas con ninguna app que soporte sinc.", "HeaderWelcomeToProjectServerDashboard": "Bienvenido al Panel de Control de Emby", "HeaderWelcomeToProjectWebClient": "Bienvenido a Emby", @@ -827,7 +827,7 @@ "ErrorGettingTvLineups": "Hubo un error al descargar la programaci\u00f3n de TV. Por favor aseg\u00farese que su informaci\u00f3n este correctas e intente de nuevo.", "MessageCreateAccountAt": "Crear una cuenta en {0}", "ErrorPleaseSelectLineup": "Por favor seleccione una programaci\u00f3n e intente de nuevo. Si no hay disponible ninguna, entonces por favor verifique que su nombre de usuario, contrase\u00f1a, y c\u00f3digo postal sean correctos.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", + "HeaderTryEmbyPremiere": "Intente Emby Premiere", "ButtonBecomeSupporter": "Obtener Emby Premier", "ButtonClosePlayVideo": "Cerrar y reproducir mi medio", "MessageDidYouKnowCinemaMode": "\u00bfSab\u00eda que con Emby Premier, puede mejorar su experiencia con caracter\u00edsticas como Modo Cine?", @@ -911,8 +911,8 @@ "TryDragAndDropMessage": "Para reacomodar items de la lista de reproducci\u00f3n, solo arrastre y suelte. \u00a1int\u00e9ntelo!", "HeaderTryMicrosoftEdge": "Intente Microsoft Edge", "MessageTryMicrosoftEdge": "Para una mejor experiencia en Windows 10, intente el nuevo navegador Microsoft Edge", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", + "HeaderTryModernBrowser": "Intente con un Navegador Web moderno", + "MessageTryModernBrowser": "Para una mejor experiencia en Windows, intente un navegador modernno como Google Chrome, Firefox u Opera", "ErrorAddingListingsToSchedulesDirect": "Hubo un error agregando la programaci\u00f3n de su cuenta de Schedules Direct. Schedules Direct solo permite un numero limitado de programaciones por cuenta. Tal vez necesite acceder al sitio web de Schedules Direct y eliminar otras programaciones de su cuenta antes de continuar.", "PleaseAddAtLeastOneFolder": "Por favor agregue al menos una carpeta a esta biblioteca dando clic al bot\u00f3n de Agregar.", "ErrorAddingMediaPathToVirtualFolder": "Hubo un error agregando la ruta de medios. Por favor aseg\u00farese de que la ruta es valida y que el proceso del Servidor Emby tenga acceso a ese destino.", diff --git a/dashboard-ui/strings/javascript/fr.json b/dashboard-ui/strings/javascript/fr.json index cab481beaa..cb0b2fcecc 100644 --- a/dashboard-ui/strings/javascript/fr.json +++ b/dashboard-ui/strings/javascript/fr.json @@ -105,7 +105,7 @@ "ButtonAddToCollection": "Ajouter \u00e0 une collection", "HeaderSelectCertificatePath": "S\u00e9lectionnez le chemin du certificat", "ConfirmMessageScheduledTaskButton": "Cette op\u00e9ration s'ex\u00e9cute normalement automatiquement en tant que t\u00e2che planifi\u00e9e et ne requiert aucune action manuelle. Pour configurer cette t\u00e2che, voir :", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", + "HeaderSupporterBenefit": "Un abonnement \u00e0 Emby Premier actif, vous offre des avantages suppl\u00e9mentaires tels que la synchronisation entre vos appareils, un plugins premium, du contenu de cha\u00eene sur internet, et plus encore. {0}En savoir plus{1}.", "LabelSyncNoTargetsHelp": "Il semble que vous n'ayez actuellement aucune application qui supporte la synchronisation.", "HeaderWelcomeToProjectServerDashboard": "Bienvenue dans le tableau de bord du serveur Emby", "HeaderWelcomeToProjectWebClient": "Bienvenue dans Emby", @@ -827,7 +827,7 @@ "ErrorGettingTvLineups": "Une erreur est survenue pendant le t\u00e9l\u00e9chargement des programmes tv. Assurez vous que vos informations sont corrects et r\u00e9essayez.", "MessageCreateAccountAt": "Cr\u00e9er un compte sur {0}", "ErrorPleaseSelectLineup": "Veuillez s\u00e9lectionner une gamme et r\u00e9essayer. Si aucune gamme n'est disponible, veuillez v\u00e9rifier que votre identifiant, mot de passe et code postal sont corrects.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", + "HeaderTryEmbyPremiere": "Essayer Emby Premiere", "ButtonBecomeSupporter": "Obtenez Emby Premiere", "ButtonClosePlayVideo": "Fermer et lire mon m\u00e9dia", "MessageDidYouKnowCinemaMode": "Saviez-vous qu'avec Emby Premi\u00e8re, vous pouvez am\u00e9liorer votre exp\u00e9rience utilisateur gr\u00e2ce \u00e0 des fonctionnalit\u00e9s comme le Mode Cin\u00e9ma ?", @@ -911,8 +911,8 @@ "TryDragAndDropMessage": "Pour r\u00e9organiser les \u00e9l\u00e9ments de la playlist, faite juste un glisser \/ d\u00e9poser. Essayez le !", "HeaderTryMicrosoftEdge": "Essayer Microsoft Edge", "MessageTryMicrosoftEdge": "Pour une meilleure exp\u00e9rience sur Windows 10, essayez le nouveau navigateur Microsoft Edge.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", + "HeaderTryModernBrowser": "Essayer avec un Navigateur Internet moderne", + "MessageTryModernBrowser": "Pour une meilleure exp\u00e9rience sur Windows, essayez un navigateur internet comme Google Chrome, Firefox, ou Opera", "ErrorAddingListingsToSchedulesDirect": "Une erreur est survenue pendant l'ajout de la synchronisation avec votre compte Schedules Direct. Schedules Direct autorise uniquement un nombre limit\u00e9 de sunchronisation par compte. Vous devez vous connecter \u00e0 votre site Schedules Direct et supprimer d'autres taches de la liste depuis votre compte avant de pouvoir r\u00e9essayer.", "PleaseAddAtLeastOneFolder": "Veuillez ajouter au moins un dossier \u00e0 cette biblioth\u00e8que en cliquant sur le bouton Ajouter.", "ErrorAddingMediaPathToVirtualFolder": "Une erreur est survenue pendant l'ajout du chemin des m\u00e9dias. Veuillez v\u00e9rifier que le chemin est valide et que le processus Serveur Emby peux y acc\u00e9der.", diff --git a/dashboard-ui/strings/javascript/he.json b/dashboard-ui/strings/javascript/he.json index fc5fbdf0fc..f9d17c2d18 100644 --- a/dashboard-ui/strings/javascript/he.json +++ b/dashboard-ui/strings/javascript/he.json @@ -220,7 +220,7 @@ "HeaderLatestMedia": "Latest Media", "ButtonMoreItems": "More...", "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", + "HeaderFavoriteMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd", "HeaderFavoriteShows": "Favorite Shows", "HeaderFavoriteEpisodes": "Favorite Episodes", "HeaderFavoriteGames": "Favorite Games", @@ -325,13 +325,13 @@ "HeaderMediaFolders": "\u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05de\u05d3\u05d9\u05d4", "HeaderBlockItemsWithNoRating": "Block content with no rating information:", "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", + "OptionBlockTvShows": "\u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea \u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4", "OptionBlockTrailers": "Trailers", "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", + "OptionBlockMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", "OptionBlockBooks": "Books", "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", + "OptionBlockLiveTvPrograms": "\u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea \u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d1\u05e9\u05d9\u05d3\u05d5\u05e8 \u05d9\u05e9\u05d9\u05e8", "OptionBlockLiveTvChannels": "Live TV Channels", "OptionBlockChannelContent": "Internet Channel Content", "ButtonRevoke": "Revoke", @@ -365,7 +365,7 @@ "ButtonUninstall": "Uninstall", "HeaderEnabledFields": "Enabled Fields", "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", + "HeaderLiveTV": "\u05e9\u05d9\u05d3\u05d5\u05e8 \u05d9\u05e9\u05d9\u05e8", "MissingLocalTrailer": "Missing local trailer.", "MissingPrimaryImage": "Missing primary image.", "MissingBackdropImage": "Missing backdrop image.", @@ -411,7 +411,7 @@ "TabLibrary": "Library", "TabMetadata": "Metadata", "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", + "TabLiveTV": "\u05e9\u05d9\u05d3\u05d5\u05e8 \u05d9\u05e9\u05d9\u05e8", "TabAutoOrganize": "Auto-Organize", "TabPlugins": "Plugins", "TabAdvanced": "\u05de\u05ea\u05e7\u05d3\u05dd", @@ -473,7 +473,7 @@ "OptionSongs": "Songs", "OptionHomeVideos": "Home videos", "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", + "OptionAdultVideos": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05dc\u05de\u05d1\u05d5\u05d2\u05e8\u05d9\u05dd", "ButtonUp": "Up", "ButtonDown": "Down", "LabelMetadataReaders": "Metadata readers:", @@ -520,7 +520,7 @@ "LabelContentTypeValue": "Content type: {0}", "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", + "FolderTypeMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", "FolderTypeMusic": "Music", "FolderTypeAdultVideos": "Adult videos", "FolderTypePhotos": "Photos", @@ -528,7 +528,7 @@ "FolderTypeHomeVideos": "Home videos", "FolderTypeGames": "Games", "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", + "FolderTypeTvShows": "\u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4", "TabMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", "TabSeries": "\u05e1\u05d3\u05e8\u05d5\u05ea", "TabEpisodes": "\u05e4\u05e8\u05e7\u05d9\u05dd", @@ -628,7 +628,7 @@ "MediaInfoSoftware": "Software", "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", + "HeaderMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", "HeaderAlbums": "Albums", "HeaderGames": "Games", "HeaderBooks": "Books", @@ -804,7 +804,7 @@ "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", "MessageNoItemsFound": "No items found.", "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", + "ButtonEditSubtitles": "\u05e2\u05e8\u05d5\u05da \u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea", "ButtonPreferences": "Preferences", "ButtonViewArtist": "View artist", "ButtonViewAlbum": "View album", @@ -880,14 +880,14 @@ "OptionBudget": "\u05ea\u05e7\u05e6\u05d9\u05d1", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", + "ButtonRecordedTv": "\u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea \u05de\u05d5\u05e7\u05dc\u05d8\u05d5\u05ea", "HeaderDisconnectFromPlayer": "Disconnect from Player", "ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?", - "ButtonYes": "Yes", - "ButtonNo": "No", + "ButtonYes": "\u05db\u05df", + "ButtonNo": "\u05dc\u05d0", "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", + "ButtonForYou": "\u05d1\u05e9\u05d1\u05d9\u05dc\u05da", + "ButtonLibrary": "\u05e1\u05e4\u05e8\u05d9\u05d4", "ButtonSearch": "\u05d7\u05d9\u05e4\u05d5\u05e9", "ButtonNowPlaying": "Now Playing", "ButtonViewNewApp": "View new app", @@ -899,9 +899,9 @@ "EmbyPremiereMonthly": "Emby Premiere Monthly", "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", + "TextPleaseEnterYourEmailAddressForSubscription": "\u05d0\u05e0\u05d0 \u05d4\u05db\u05e0\u05e1 \u05d0\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\"\u05dc \u05e9\u05dc\u05da", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", + "TermsOfUse": "\u05ea\u05e0\u05d0\u05d9 \u05e9\u05d9\u05de\u05d5\u05e9", "HeaderTryMultiSelect": "Try Multi-Select", "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "NumLocationsValue": "{0} folders", @@ -911,16 +911,16 @@ "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", "HeaderTryMicrosoftEdge": "Try Microsoft Edge", "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", + "HeaderTryModernBrowser": "\u05e0\u05e1\u05d4 \u05d3\u05e4\u05d3\u05e4\u05df \u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 \u05de\u05d5\u05d3\u05e8\u05e0\u05d9 \u05d5\u05e2\u05d3\u05db\u05e0\u05d9", "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.", "ErrorAddingEmbyConnectAccount": "There was an error adding the Emby Connect account. Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If this email was not received please send an email to apps@emby.media from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", + "HeaderFavoriteArtists": "\u05d0\u05de\u05e0\u05d9\u05dd \u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd", + "HeaderFavoriteSongs": "\u05e9\u05d9\u05e8\u05d9\u05dd \u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd", + "HeaderConfirmPluginInstallation": "\u05d0\u05e9\u05e8 \u05d4\u05ea\u05e7\u05e0\u05ea \u05ea\u05d5\u05e1\u05e3", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", "ButtonPlayOneMinute": "Play one minute", @@ -934,7 +934,7 @@ "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", + "HeaderCinemaMode": "\u05de\u05e6\u05d1 \u05e7\u05d5\u05dc\u05e0\u05d5\u05e2", "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art" } \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/kk.json b/dashboard-ui/strings/javascript/kk.json index a8840f694f..84897a3c32 100644 --- a/dashboard-ui/strings/javascript/kk.json +++ b/dashboard-ui/strings/javascript/kk.json @@ -827,7 +827,7 @@ "ErrorGettingTvLineups": "\u0422\u0414 \u043a\u0435\u0437\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u041c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440\u0456\u04a3\u0456\u0437 \u0434\u04b1\u0440\u044b\u0441 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0434\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", "MessageCreateAccountAt": "{0} \u0436\u0430\u043d\u044b\u043d\u0434\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0436\u0430\u0441\u0430\u0443", "ErrorPleaseSelectLineup": "\u0422\u0456\u0437\u0431\u0435\u043a\u0442\u0456 \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437. \u0415\u0433\u0435\u0440 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0442\u0456\u0437\u0431\u0435\u043a \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u043c\u0430\u0441\u0430, \u043e\u043d\u0434\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b\u04a3\u044b\u0437\u0434\u044b, \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0456\u04a3\u0456\u0437\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043f\u043e\u0448\u0442\u0430 \u043a\u043e\u0434\u044b\u043d \u0434\u04b1\u0440\u044b\u0441 \u0435\u043a\u0435\u043d\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0456\u04a3\u0456\u0437.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", + "HeaderTryEmbyPremiere": "Emby Premiere \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437", "ButtonBecomeSupporter": "Emby Premiere \u0430\u043b\u0443", "ButtonClosePlayVideo": "\u0416\u0430\u0431\u0443 \u043c\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448. \u043e\u0439\u043d\u0430\u0442\u0443", "MessageDidYouKnowCinemaMode": "Emby Premiere \u0430\u0440\u049b\u044b\u043b\u044b, \u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0441\u0438\u044f\u049b\u0442\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u043c\u0435\u043d \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u04a3\u0456\u0437\u0434\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443\u044b\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d \u0442\u0443\u0440\u0430\u043b\u044b \u0431\u0456\u043b\u0435\u0441\u0456\u0437 \u0431\u0435?", @@ -911,8 +911,8 @@ "TryDragAndDropMessage": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0456\u04a3 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0440\u0435\u0442\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \u0436\u0430\u0439 \u0493\u0430\u043d\u0430 \u0430\u043f\u0430\u0440\u044b\u043f \u0442\u0430\u0441\u0442\u0430\u04a3\u044b\u0437. \u0421\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437!", "HeaderTryMicrosoftEdge": "Microsoft Edge \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437", "MessageTryMicrosoftEdge": "Windows 10 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u043d\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d, \u0436\u0430\u04a3\u0430 Microsoft Edge \u0448\u043e\u043b\u0493\u044b\u0448\u044b\u043d \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", + "HeaderTryModernBrowser": "\u0417\u0430\u043c\u0430\u043d\u0430\u0443\u0438 \u0448\u043e\u043b\u0493\u044b\u0448\u043f\u0435\u043d \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437", + "MessageTryModernBrowser": "Windows \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u0441\u0456\u043d \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d, \u0436\u0430\u04a3\u0430 \u0448\u043e\u043b\u0493\u044b\u0448\u043f\u0435\u043d, \u043c\u044b\u0441\u0430\u043b\u044b, Google Chrome, Firefox \u043d\u0435 Opera \u0430\u0440\u049b\u044b\u043b\u044b \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437.", "ErrorAddingListingsToSchedulesDirect": "Schedules Direct \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0433\u0435 \u0442\u0456\u0437\u0431\u0435\u043a \u04af\u0441\u0442\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. Schedules Direct \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d\u0434\u0435 \u0442\u0456\u0437\u0431\u0435\u043a\u0442\u0435\u0440\u0434\u0456\u04a3 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0448\u0435\u043a\u0442\u0435\u0443\u043b\u0456 \u0441\u0430\u043d\u044b \u0440\u0443\u049b\u0441\u0430\u0442 \u0435\u0442\u0456\u043b\u0435\u0434\u0456. \u041e\u0440\u044b\u043d\u0434\u0430\u043c\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d Schedules Direct \u0441\u0430\u0439\u0442\u044b\u043d\u0430 \u043a\u0456\u0440\u0456\u043f \u0436\u04d9\u043d\u0435 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0434\u0435\u043d \u0431\u0430\u0441\u049b\u0430 \u0442\u0456\u0437\u0431\u0435\u043b\u0435\u0440\u0434\u0456 \u0430\u043b\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", "PleaseAddAtLeastOneFolder": "\u049a\u043e\u0441\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u0443 \u0430\u0440\u049b\u044b\u043b\u044b, \u043e\u0441\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u0493\u0430 \u043a\u0435\u043c \u0434\u0435\u0433\u0435\u043d\u0434\u0435 \u0431\u0456\u0440 \u049b\u0430\u043b\u0442\u0430 \u049b\u043e\u0441\u044b\u04a3\u044b\u0437.", "ErrorAddingMediaPathToVirtualFolder": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0436\u043e\u043b\u044b\u043d \u04af\u0441\u0442\u0435\u0433\u0435\u043d \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0416\u043e\u043b \u0434\u04b1\u0440\u044b\u0441 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u0436\u04d9\u043d\u0435 Emby Server \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043e\u0441\u044b \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0439\u0442\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437.", @@ -923,18 +923,18 @@ "HeaderConfirmPluginInstallation": "\u041f\u043b\u0430\u0433\u0438\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043c\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u0443", "PleaseConfirmPluginInstallation": "\u0416\u043e\u0493\u0430\u0440\u044b\u0434\u0430\u0493\u044b\u043d\u044b \u043e\u049b\u044b\u043f \u0448\u044b\u049b\u049b\u0430\u043d\u044b\u04a3\u044b\u0437\u0434\u044b \u0436\u04d9\u043d\u0435 \u043f\u043b\u0430\u0433\u0438\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u044b\u043d \u0431\u0430\u0441\u0442\u0430\u0443\u044b\u04a3\u044b\u0437\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0416\u0430\u0440\u0430\u0439\u0434\u044b \u0434\u0435\u0433\u0435\u043d \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437.", "MessagePluginInstallDisclaimer": "Emby \u049b\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0493\u044b \u043c\u04af\u0448\u0435\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u0430\u043d \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 Emby \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u04a3\u0456\u0437\u0434\u0456 \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u043c\u0435\u043d \u0436\u04d9\u043d\u0435 \u0436\u0435\u04a3\u0456\u043b\u0434\u0456\u043a\u0442\u0435\u0440\u043c\u0435\u043d \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u049b\u0441\u044b \u0442\u04d9\u0441\u0456\u043b\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u041e\u0440\u043d\u0430\u0442\u043f\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d, \u043e\u043b\u0430\u0440 Emby \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u04a3\u0456\u0437\u0433\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u04b1\u0437\u0430\u049b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443, \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u04e9\u04a3\u0434\u0456\u043a \u04e9\u04a3\u0434\u0435\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0436\u04af\u0439\u0435\u043d\u0456\u04a3 \u0442\u04b1\u0440\u0430\u049b\u0442\u044b\u043b\u044b\u0493\u044b\u043d \u0442\u04e9\u043c\u0435\u043d\u0434\u0435\u0442\u0443 \u0441\u0438\u044f\u049b\u0442\u044b \u04d9\u0441\u0435\u0440\u043b\u0435\u0440 \u0435\u0442\u0443\u0433\u0435 \u043c\u04af\u043c\u043a\u0456\u043d \u0431\u043e\u043b\u0443\u044b\u043d\u0430 \u0445\u0430\u0431\u0430\u0440\u0434\u0430\u0440 \u0431\u043e\u043b\u044b\u04a3\u044b\u0437.", - "ButtonPlayOneMinute": "Play one minute", + "ButtonPlayOneMinute": "\u0411\u0456\u0440 \u043c\u0438\u043d\u04e9\u0442 \u043e\u0439\u043d\u0430\u0442\u0443", "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", + "HeaderTryPlayback": "\u041e\u0439\u043d\u0430\u0442\u0443\u0434\u044b \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437", + "HeaderBenefitsEmbyPremiere": "Emby Premiere \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u044b", "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", + "HeaderMobileSync": "\u04b0\u0442\u049b\u044b\u0440 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", + "HeaderCloudSync": "\u0411\u04b1\u043b\u0442 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", + "HeaderFreeApps": "\u0422\u0435\u0433\u0456\u043d Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b", + "FreeAppsFeatureDescription": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u0430 \u0442\u0430\u04a3\u0434\u0430\u043c\u0430\u043b\u044b Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d \u0442\u0435\u0433\u0456\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u04a3\u044b\u0437.", "HeaderCinemaMode": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", + "CinemaModeFeatureDescription": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.", "CoverArt": "Cover Art" } \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/nl.json b/dashboard-ui/strings/javascript/nl.json index f4410ad138..df52137fc4 100644 --- a/dashboard-ui/strings/javascript/nl.json +++ b/dashboard-ui/strings/javascript/nl.json @@ -827,7 +827,7 @@ "ErrorGettingTvLineups": "Er was een fout bij het downloaden van de TV lineup. Controleer of uw gegevens correct zijn en probeer het opnieuw.", "MessageCreateAccountAt": "Maak een account bij {0}", "ErrorPleaseSelectLineup": "Selecteer een lineup en probeer het opnieuw. Als er geen lineups beschibaar zijn, controleer dan of uw gebruikersnaam, wachtwoord en postcode correct zijn.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", + "HeaderTryEmbyPremiere": "Probeer Emby Premiere", "ButtonBecomeSupporter": "Verkrijg Emby Premiere", "ButtonClosePlayVideo": "Sluit af en speel mijn media", "MessageDidYouKnowCinemaMode": "Wist u dat u met Emby Premiere, u uw ervaring met functies zoals Cinema Mode kunt verbeteren?", diff --git a/dashboard-ui/strings/javascript/pl.json b/dashboard-ui/strings/javascript/pl.json index 6b8f3f6a50..f8fbc0cf83 100644 --- a/dashboard-ui/strings/javascript/pl.json +++ b/dashboard-ui/strings/javascript/pl.json @@ -105,7 +105,7 @@ "ButtonAddToCollection": "Dodaj do zbior\u00f3w", "HeaderSelectCertificatePath": "Wybierz \u015bcie\u017ck\u0119 do certyfiaktu", "ConfirmMessageScheduledTaskButton": "Operacja zazwyczaj dzia\u0142a w tle jako zaplanowane zadanie oraz nie wymaga r\u0119cznego w\u0142\u0105czenia. Aby skonfigurowa\u0107 zaplanowane zadanie zobacz:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", + "HeaderSupporterBenefit": "Aktywa subskrypcja Emby Premiere daje dodatkowe korzy\u015bci np: dost\u0119p do synchronizacji, pluginy premium, zawarto\u015b\u0107 kana\u0142\u00f3w internetowych i inne. {0} Dowiedz si\u0119 wi\u0119cej {1}.", "LabelSyncNoTargetsHelp": "Wygl\u0105da na to, \u017ce nie masz \u017cadnych aplikacji wspieraj\u0105cych synchronizacj\u0119.", "HeaderWelcomeToProjectServerDashboard": "Witaj w dashboard'zie serwera Emby!", "HeaderWelcomeToProjectWebClient": "Witamy w Emby", @@ -119,9 +119,9 @@ "HeaderDeviceAccess": "Dost\u0119p urz\u0105dze\u0144", "HeaderSelectDevices": "Wybierz urz\u0105dzenie", "ButtonCancelItem": "Anuluj obiekt", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", + "ButtonQueueForRetry": "Zapisz aby spr\u00f3bowa\u0107 p\u00f3\u017aniej", + "ButtonReenable": "Aktywuj ponownie", + "ButtonLearnMore": "Dowiedz si\u0119 wi\u0119cej", "SyncJobItemStatusSyncedMarkForRemoval": "Oznaczone do usuni\u0119cia", "LabelAbortedByServerShutdown": "(Przerwano w skuter wy\u0142\u0105czenia serwera)", "LabelScheduledTaskLastRan": "Ostation uruchomiono {0}, czas trwania {1}.", @@ -251,50 +251,50 @@ "StatusSkipped": "Pomini\u0119to", "StatusFailed": "B\u0142\u0105d", "StatusSuccess": "Sukces", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", + "MessageFileWillBeDeleted": "Nast\u0119puj\u0105cy plik zostanie usuni\u0119ty:", + "MessageSureYouWishToProceed": "Czy na pewno chcesz kontynuowa\u0107?", + "MessageDuplicatesWillBeDeleted": "Dodatkowo, usuni\u0119te zostan\u0105 nast\u0119puj\u0105ce duplikaty:", + "MessageFollowingFileWillBeMovedFrom": "Plik zostanie przeniesiony z:", + "MessageDestinationTo": "do:", "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", + "HeaderSelectWatchFolderHelp": "Przegl\u0105daj lub wprowad\u017a \u015bcie\u017ck\u0119 do obserwowanego folderu. Musisz posiadac tam prawa zapisu.", + "OrganizePatternResult": "Wynik: {0}", + "AutoOrganizeError": "Bl\u0105d przy organizacji pliku", + "ErrorOrganizingFileWithErrorCode": "Wyst\u0105pi\u0142 b\u0142\u0105d przy organizacji pliku. Kod b\u0142\u0119du: {0}.", "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", + "HeaderShutdown": "Zamknij", + "MessageConfirmRestart": "Czy na pewno chcesz uruchomi\u0107 serwer Emby ponownie?", + "MessageConfirmShutdown": "Czy na pewno chcesz ca\u0142kowicie wy\u0142\u0105czy\u0107 serwer Emby?", "ButtonUpdateNow": "Aktualizuj Teraz", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", + "ValueItemCount": "{0} pozycja", + "ValueItemCountPlural": "{0} pozycji", + "NewVersionOfSomethingAvailable": "Nowa wersja {0} jest dost\u0119pna!", + "VersionXIsAvailableForDownload": "Wersja {0} jest dost\u0119pna do \u015bci\u0105gni\u0119cia.", + "LabelVersionNumber": "Wersja {0}", + "LabelPlayMethodTranscoding": "Transkodowanie", + "LabelPlayMethodDirectStream": "Streaming bezpo\u015bredni", + "LabelPlayMethodDirectPlay": "Odtwarzanie bezpo\u015brednie", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "Dost\u0119p lokalny: {0}", + "LabelRemoteAccessUrl": "Dost\u0119p zdalny: {0}", "LabelRunningOnPort": "Pracuje na porcie http {0}.", "LabelRunningOnPorts": "Pracuje na porcie http {0} oraz na porcie https {1}.", - "HeaderLatestFromChannel": "Latest from {0}", + "HeaderLatestFromChannel": "Najnowsze w {0}", "LabelUnknownLanaguage": "Nieznany j\u0119zyk", "HeaderCurrentSubtitles": "Aktualne napisy", "MessageDownloadQueued": "\u015aci\u0105ganie zosta\u0142o zakolejkowane.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", + "MessageAreYouSureDeleteSubtitles": "Jeste\u015b pewien \u017ce chcesz usun\u0105\u0107 ten plik z napisami?", "ButtonRemoteControl": "Zdalne sterowanie", "HeaderLatestTvRecordings": "Najnowsze nagrania", "ButtonOk": "Ok", "ButtonCancel": "Anuluj", "ButtonRefresh": "Od\u015bwie\u017c", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", + "LabelCurrentPath": "Aktualna \u015bcie\u017cka:", + "HeaderSelectMediaPath": "Wybierz \u015bcie\u017ck\u0119 medi\u00f3w", + "HeaderSelectPath": "Wybierz \u015bcie\u017ck\u0119", "ButtonNetwork": "Sie\u0107", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", + "MessageDirectoryPickerInstruction": "\u015acie\u017cki sieciowe mog\u0105 by\u0107 wpisane r\u0119cznie w wypadku niewykrycia wszystkich urz\u0105dze\u0144 przez przycisk \"Sie\u0107\". Na przyk\u0142ad: {0} lub {1}.", "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", "MessageDirectoryPickerLinuxInstruction": "Dla Linuxa, musisz przyzna\u0107 systemowemu u\u017cytkownikowi Emby przynajmniej prawa odczytu dla magazyn\u00f3w pami\u0119ci.", "HeaderMenu": "Menu", @@ -356,7 +356,7 @@ "MessagePleaseEnterNameOrId": "Prosz\u0119 wprowad\u017a nazw\u0119 lub zewn\u0119trzne Id.", "MessageValueNotCorrect": "Wprowadzona warto\u015b\u0107 nie jest prawid\u0142owa. Spr\u00f3buj ponownie.", "MessageItemSaved": "Obiekt zapisany.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", + "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Prosz\u0119 zaakceptowa\u0107 warunki us\u0142ugi przed kontynuowaniem", "OptionEnded": "Zako\u0144czony", "OptionContinuing": "Dalej wy\u015bwietlane", "OptionOff": "Off", @@ -364,14 +364,14 @@ "ButtonSettings": "Ustawienia", "ButtonUninstall": "Odinstaluj", "HeaderEnabledFields": "Odblokuj pola", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", + "HeaderEnabledFieldsHelp": "Odznacz pole aby zablokowa\u0107 i zapobiec zmianie danych.", "HeaderLiveTV": "Telewizja na \u017cywo", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", + "MissingLocalTrailer": "Brakuje trailera lokalnego.", + "MissingPrimaryImage": "Brakuje podstawowego obrazu.", + "MissingBackdropImage": "Brakuje obrazu t\u0142a.", + "MissingLogoImage": "Brakuje logo.", + "MissingEpisode": "Brakuje epizodu.", + "OptionScreenshots": "Zrzuty ekranu", "OptionBackdrops": "Backdrops", "OptionImages": "Obrazki", "OptionKeywords": "S\u0142owa kluczowe", @@ -624,30 +624,30 @@ "MediaInfoIsoSpeedRating": "Iso speed rating", "MediaInfoLatitude": "Latitude", "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", + "MediaInfoShutterSpeed": "Pr\u0119dko\u015b\u0107 migawki", + "MediaInfoSoftware": "Oprogramowanie", + "HeaderIfYouLikeCheckTheseOut": "Je\u015bli lubisz {0}, sprawd\u017a to...", "HeaderPlotKeywords": "S\u0142owa Kluczowe Fabu\u0142y", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", + "HeaderMovies": "Filmy", + "HeaderAlbums": "Albumy", + "HeaderGames": "Gry", + "HeaderBooks": "Ksi\u0105\u017cki", + "HeaderEpisodes": "Odcinki", + "HeaderSeasons": "Sezony", + "HeaderTracks": "Utwory", + "HeaderItems": "Pozycje", + "HeaderOtherItems": "Inne pozycje", + "ButtonFullReview": "Pe\u0142na recenzja", + "ValueAsRole": "jako {0}", "ValueGuestStar": "Go\u015b\u0107 specjalny", "MediaInfoSize": "Rozmiar", "MediaInfoPath": "\u015acie\u017cka", "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", + "MediaInfoContainer": "Kontener", "MediaInfoDefault": "Domy\u015blnie", - "MediaInfoForced": "Forced", + "MediaInfoForced": "Wymuszony", "MediaInfoExternal": "Zewn\u0119trzny", - "MediaInfoTimestamp": "Timestamp", + "MediaInfoTimestamp": "Znacznik czasu", "MediaInfoPixelFormat": "Format pixeli", "MediaInfoBitDepth": "G\u0142\u0119bia bitowa", "MediaInfoSampleRate": "Pr\u00f3bkowanie", @@ -670,7 +670,7 @@ "MediaInfoStreamTypeSubtitle": "Napisy", "MediaInfoStreamTypeEmbeddedImage": "Osadzony obraz", "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", + "TabPlayback": "Odtwarzanie", "TabNotifications": "Powiadomienia", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Okre\u015bl w\u0142asn\u0105 \u015bcie\u017ck\u0119 intro", @@ -716,12 +716,12 @@ "DeleteDeviceConfirmation": "Czy na pewno chcesz usun\u0105\u0107 to urz\u0105dzenie? Zostanie dodane ponownie po ponownym zalogowaniu si\u0119 na nim.", "LabelEnableCameraUploadFor": "Odblokuj przesy\u0142anie z aparatu dla:", "HeaderSelectUploadPath": "Wybierz \u015bcieszk\u0119 wysy\u0142ania", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", + "LabelEnableCameraUploadForHelp": "Przesy\u0142anie nast\u0105pi automatycznie w tle po zalogowaniu si\u0119do Emby.", + "ErrorMessageStartHourGreaterThanEnd": "Czas ko\u0144cowy musi by\u0107 wi\u0119kszy ni\u017c czas pocz\u0105tkowy.", "ButtonLibraryAccess": "Dost\u0119p do biblioteki", - "ButtonParentalControl": "Parental control", + "ButtonParentalControl": "Ochrona Rodzicielska", "HeaderInvitationSent": "Zaproszenie wys\u0142ane", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", + "MessageInvitationSentToUser": "Wiadomo\u015b\u0107 z pro\u017ab\u0105 o akceptacj\u0119 zaproszenia udost\u0119pniania zosta\u0142a wys\u0142ana do {0}.", "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", "HeaderConnectionFailure": "B\u0142\u0105d po\u0142\u0105czenia", "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", diff --git a/dashboard-ui/strings/javascript/pt-BR.json b/dashboard-ui/strings/javascript/pt-BR.json index 486b7df398..67a1f80b52 100644 --- a/dashboard-ui/strings/javascript/pt-BR.json +++ b/dashboard-ui/strings/javascript/pt-BR.json @@ -22,7 +22,7 @@ "HeaderPinCodeReset": "Redefinir C\u00f3digo Pin", "PasswordSaved": "Senha salva.", "PasswordMatchError": "A senha e a confirma\u00e7\u00e3o da senha devem ser iguais.", - "OptionRelease": "Lan\u00e7amento Oficial", + "OptionRelease": "Vers\u00e3o Oficial", "OptionBeta": "Beta", "OptionDev": "Dev (Inst\u00e1vel)", "UninstallPluginHeader": "Desinstalar Plugin", @@ -105,7 +105,7 @@ "ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o", "HeaderSelectCertificatePath": "Selecione o Caminho do Certificado", "ConfirmMessageScheduledTaskButton": "Esta opera\u00e7\u00e3o normalmente \u00e9 executada automaticamente como uma tarefa agendada e n\u00e3o \u00e9 necess\u00e1ria nenhuma intera\u00e7\u00e3o manual. Para configurar a tarefa agendada, veja:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", + "HeaderSupporterBenefit": "Um subscri\u00e7\u00e3o ativa do Emby Premiere fornece benef\u00edcios adicionais como acesso \u00e0 sincroniza\u00e7\u00e3o, plugins premium, conte\u00fado de canais da internet e mais. {0}Saiba mais{1}.", "LabelSyncNoTargetsHelp": "Parece que voc\u00ea n\u00e3o possui nenhuma app que suporta sincroniza\u00e7\u00e3o.", "HeaderWelcomeToProjectServerDashboard": "Bem vindo ao Painel do Servidor Emby", "HeaderWelcomeToProjectWebClient": "Bem vindo ao Emby", @@ -673,7 +673,7 @@ "TabPlayback": "Reprodu\u00e7\u00e3o", "TabNotifications": "Notifica\u00e7\u00f5es", "TabExpert": "Avan\u00e7ado", - "HeaderSelectCustomIntrosPath": "Selecionar o Caminho para Intros Personalizadas", + "HeaderSelectCustomIntrosPath": "Selecionar o Caminho para Introdu\u00e7\u00f5es Personalizadas", "HeaderRateAndReview": "Avaliar e Comentar", "HeaderThankYou": "Obrigado", "MessageThankYouForYourReview": "Obrigado por sua avalia\u00e7\u00e3o", @@ -699,7 +699,7 @@ "DashboardTourDashboard": "O painel do servidor permite monitorar seu servidor e seus usu\u00e1rios. Voc\u00ea sempre poder\u00e1 saber quem est\u00e1 fazendo o qu\u00ea e onde est\u00e3o.", "DashboardTourHelp": "A ajuda dentro do app fornece bot\u00f5es para abrir p\u00e1ginas wiki relacionadas ao conte\u00fado na tela.", "DashboardTourUsers": "Crie facilmente contas de usu\u00e1rios para seus amigos e fam\u00edlia, cada um com sua permiss\u00e3o, acesso \u00e0 biblioteca, controle parental e mais.", - "DashboardTourCinemaMode": "O modo cinema traz a experi\u00eancia do cinema para sua sala, permitindo reproduzir trailers e intros personalizadas antes da fun\u00e7\u00e3o principal.", + "DashboardTourCinemaMode": "O modo cinema traz a experi\u00eancia do cinema para sua sala, permitindo reproduzir trailers e introdu\u00e7\u00f5es personalizadas antes do filme principal.", "DashboardTourChapters": "Ative a gera\u00e7\u00e3o de imagem dos cap\u00edtulos de seus v\u00eddeos para ter uma apresenta\u00e7\u00e3o mais prazeirosa.", "DashboardTourSubtitles": "Fa\u00e7a download de legendas para os seus v\u00eddeos, em qualquer idioma, automaticamente.", "DashboardTourPlugins": "Instale plugins, como os canais de v\u00eddeo de internet, tv ao vivo, rastreadores de metadados e mais.", @@ -827,11 +827,11 @@ "ErrorGettingTvLineups": "Ocorreu um erro ao fazer download da programa\u00e7\u00e3o da tv. Por favor, certifique-se que sua informa\u00e7\u00e3o esteja correta e tente novamente.", "MessageCreateAccountAt": "Criar uma conta em {0}", "ErrorPleaseSelectLineup": "Por favor selecione a programa\u00e7\u00e3o e tente novamente. Se n\u00e3o houver programa\u00e7\u00f5es dispon\u00edveis, verifique se o seu nome de usu\u00e1rio, senha e c\u00f3digo postal est\u00e3o corretos.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", + "HeaderTryEmbyPremiere": "Experimente o Emby Premiere", "ButtonBecomeSupporter": "Obter Emby Premiere", "ButtonClosePlayVideo": "Fechar e reproduzir minha m\u00eddia", "MessageDidYouKnowCinemaMode": "Voc\u00ea sabia que com o Emby Premiere voc\u00ea pode enriquecer sua experi\u00eancia com recursos como o CInema Mode?", - "MessageDidYouKnowCinemaMode2": "O Cinema Mode possibilita que voc\u00ea tenha uma experi\u00eancia de cinema com trailers, intros personalizadas, antes do filme principal.", + "MessageDidYouKnowCinemaMode2": "O Cinema Mode possibilita que voc\u00ea tenha uma experi\u00eancia de cinema com trailers e introdu\u00e7\u00f5es personalizadas antes do filme principal.", "OptionEnableDisplayMirroring": "Ativar espelhamento da tela", "HeaderSyncRequiresSupporterMembership": "A Sincroniza\u00e7\u00e3o requer uma subscri\u00e7\u00e3o ativa do Emby Premiere.", "HeaderSyncRequiresSupporterMembershipAppVersion": "A Sincroniza\u00e7\u00e3o requer a conex\u00e3o com um Servidor Emby com uma subscric\u00e3o ativa do Emby Premiere.", @@ -911,8 +911,8 @@ "TryDragAndDropMessage": "Para reordenar itens de uma lista de reprodu\u00e7\u00e3o, basta arrastar e soltar. experimente!", "HeaderTryMicrosoftEdge": "Experimentar Microsoft Edge", "MessageTryMicrosoftEdge": "Para uma melhor experi\u00eancia no Windows 10, experimente o novo Navegador Microsoft Edge.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", + "HeaderTryModernBrowser": "Experimente um Navegador Web Moderno", + "MessageTryModernBrowser": "Para uma melhor experi\u00eancia no Windows, tente um navegador web moderno como o Google Chrome, Firefox ou Opera.", "ErrorAddingListingsToSchedulesDirect": "Ocorreu um erro ao adicionar a programa\u00e7\u00e3o \u00e0 sua conta da Schedules Direct. A Schedules Direct permite apenas um n\u00famero limitado de programa\u00e7\u00f5es por conta. Talvez seja necess\u00e1rio que voc\u00ea entre no website da Schedules Direct e remova outras listas de sua conta antes de prosseguir.", "PleaseAddAtLeastOneFolder": "Por favor, adicione ao menos uma pasta a esta biblioteca, clicando no bot\u00e3o Adicionar.", "ErrorAddingMediaPathToVirtualFolder": "Ocorreu um erro ao adicionar o caminho da m\u00eddia. Por favor, assegure-se que o caminho \u00e9 valido e que o processo do Emby Server tenha acesso a essa localiza\u00e7\u00e3o.", diff --git a/dashboard-ui/strings/javascript/ru.json b/dashboard-ui/strings/javascript/ru.json index 3771c84b74..50a32871ed 100644 --- a/dashboard-ui/strings/javascript/ru.json +++ b/dashboard-ui/strings/javascript/ru.json @@ -105,7 +105,7 @@ "ButtonAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e", "HeaderSelectCertificatePath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u043a \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0443", "ConfirmMessageScheduledTaskButton": "\u042d\u0442\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043e\u0431\u044b\u0447\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043a\u0430\u043a \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 \u0438 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043b\u044e\u0431\u043e\u0433\u043e \u0443\u0441\u0438\u043b\u0438\u044f \u0432\u0440\u0443\u0447\u043d\u0443\u044e. \u0427\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443, \u0441\u043c.:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", + "HeaderSupporterBenefit": "\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u043f\u0440\u0435\u043c\u0438\u0443\u043c \u043f\u043b\u0430\u0433\u0438\u043d\u044b, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043a\u0430\u043d\u0430\u043b\u043e\u0432 \u0438 \u043c\u043d\u043e\u0433\u043e\u0435 \u0434\u0440\u0443\u0433\u043e\u0435. {0}\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435{1}.", "LabelSyncNoTargetsHelp": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0442 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044e, \u043d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u043e.", "HeaderWelcomeToProjectServerDashboard": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u0438 Emby Server", "HeaderWelcomeToProjectWebClient": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Emby", @@ -401,7 +401,7 @@ "ButtonSignOut": "\u0412\u044b\u0439\u0442\u0438", "ButtonMyProfile": "\u041c\u043e\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c...", "ButtonMyPreferences": "\u041c\u043e\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438...", - "MessageBrowserDoesNotSupportWebSockets": "\u0412 \u0434\u0430\u043d\u043d\u043e\u043c \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0432\u0435\u0431-\u0441\u043e\u043a\u0435\u0442\u043e\u0432. \u0414\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b, \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u0441 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043e\u043c \u043f\u043e\u043d\u043e\u0432\u0435\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, Chrome, Firefox, IE10+, Safari (iOS) \u0438\u043b\u0438 Opera.", + "MessageBrowserDoesNotSupportWebSockets": "\u0412 \u0434\u0430\u043d\u043d\u043e\u043c \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 \u043d\u0435\u0442 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u0432\u0435\u0431-\u0441\u043e\u043a\u0435\u0442\u043e\u0432. \u0414\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u0431\u0440\u0430\u0443\u0437\u0435\u0440, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, Chrome, Firefox, IE10+, Safari (iOS) \u0438\u043b\u0438 Opera.", "LabelInstallingPackage": "\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u0442\u0441\u044f {0}", "LabelPackageInstallCompleted": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430.", "LabelPackageInstallFailed": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u043d\u0435\u0443\u0434\u0430\u0447\u043d\u0430.", @@ -827,7 +827,7 @@ "ErrorGettingTvLineups": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u0430\u0448\u0438 \u0434\u0430\u043d\u043d\u044b\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", "MessageCreateAccountAt": "\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u043d\u0430 {0}", "ErrorPleaseSelectLineup": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443. \u0415\u0441\u043b\u0438 \u0441\u043f\u0438\u0441\u043a\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b, \u0442\u043e \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043f\u0430\u0440\u043e\u043b\u044c \u0438 \u043f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u043a\u043e\u0434 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432\u0435\u0440\u043d\u044b\u043c\u0438.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", + "HeaderTryEmbyPremiere": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 Emby Premiere", "ButtonBecomeSupporter": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438 Emby Premiere", "ButtonClosePlayVideo": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u0438 \u0432\u043e\u0441\u043f\u0440. \u043c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", "MessageDidYouKnowCinemaMode": "\u0417\u043d\u0430\u0435\u0442\u0435 \u043b\u0438 \u0432\u044b, \u0447\u0442\u043e \u0441 Emby Premiere \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c \u044d\u0444\u0444\u0435\u043a\u0442\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438 \u043f\u043e\u0434\u043e\u0431\u043d\u044b\u043c\u0438 \u0420\u0435\u0436\u0438\u043c\u0443 \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430?", @@ -911,8 +911,8 @@ "TryDragAndDropMessage": "\u0427\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u0443\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u0430, \u043f\u0440\u043e\u0441\u0442\u043e \u043f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u044d\u0442\u043e!", "HeaderTryMicrosoftEdge": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 Microsoft Edge", "MessageTryMicrosoftEdge": "\u0414\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Windows 10, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 Microsoft Edge.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", + "HeaderTryModernBrowser": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u0432\u0435\u0431-\u0431\u0440\u0430\u0443\u0437\u0435\u0440", + "MessageTryModernBrowser": "\u0414\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Windows, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u0431\u0440\u0430\u0443\u0437\u0435\u0440, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, Google Chrome, Firefox \u0438\u043b\u0438 Opera.", "ErrorAddingListingsToSchedulesDirect": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u0430 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c Schedules Direct. \u0412 Schedules Direct \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0442\u0430\u043a\u0438\u0445 \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u043d\u0430 \u043a\u0430\u0436\u0434\u0443\u044e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c. \u0412\u0430\u043c \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f \u0432\u043e\u0439\u0442\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442 Schedules Direct, \u0438 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u0435\u0440\u0435\u0447\u043d\u0438 \u0438\u0437 \u0432\u0430\u0448\u0435\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c.", "PleaseAddAtLeastOneFolder": "\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435, \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435, \u043e\u0434\u043d\u0443 \u043f\u0430\u043f\u043a\u0443 \u043a \u0434\u0430\u043d\u043d\u043e\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435, \u043d\u0430\u0436\u0430\u0432 \u043a\u043d\u043e\u043f\u043a\u0443 \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c.", "ErrorAddingMediaPathToVirtualFolder": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043f\u0443\u0442\u0438 \u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u043f\u0443\u0442\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c, \u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 Emby Server \u0438\u043c\u0435\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u044d\u0442\u043e\u043c\u0443 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044e.",