diff --git a/dashboard-ui/bower_components/emby-webcomponents/.bower.json b/dashboard-ui/bower_components/emby-webcomponents/.bower.json index 6e7eaa2b06..ccb69ae926 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/.bower.json +++ b/dashboard-ui/bower_components/emby-webcomponents/.bower.json @@ -14,12 +14,12 @@ }, "devDependencies": {}, "ignore": [], - "version": "1.4.469", - "_release": "1.4.469", + "version": "1.4.471", + "_release": "1.4.471", "_resolution": { "type": "version", - "tag": "1.4.469", - "commit": "ade3d09c95421b54adf28a69b7cfd3a57d759103" + "tag": "1.4.471", + "commit": "8b98518723cdf21d7b4a955f95d8c8e154b39e19" }, "_source": "https://github.com/MediaBrowser/emby-webcomponents.git", "_target": "^1.2.1", diff --git a/dashboard-ui/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js b/dashboard-ui/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js index 1e65ba3eb7..481284611c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js +++ b/dashboard-ui/bower_components/emby-webcomponents/playlisteditor/playlisteditor.js @@ -136,7 +136,10 @@ var html = ''; - html += ''; + if (playbackManager.isPlaying()) { + html += ''; + } + html += ''; html += result.Items.map(function (i) { diff --git a/dashboard-ui/bower_components/emby-webcomponents/registrationservices/registrationservices.js b/dashboard-ui/bower_components/emby-webcomponents/registrationservices/registrationservices.js index 091adcb2de..5fefbc0ac9 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/registrationservices/registrationservices.js +++ b/dashboard-ui/bower_components/emby-webcomponents/registrationservices/registrationservices.js @@ -31,8 +31,6 @@ return new Promise(function (resolve, reject) { - appSettings.set(settingsKey, new Date().getTime()); - require(['listViewStyle', 'emby-button', 'formDialogStyle'], function () { var dlg = dialogHelper.createDialog({ @@ -117,10 +115,11 @@ centerFocus(dlg.querySelector('.formDialogContent'), false, false); } - appSettings.set(settingsKey, new Date().getTime()); if (isRejected) { reject(); } else { + appSettings.set(settingsKey, new Date().getTime()); + resolve(); } }); @@ -156,7 +155,7 @@ return Promise.resolve(); } - var settingsKey = 'periodicmessage2-' + feature; + var settingsKey = 'periodicmessage10-' + feature; var lastMessage = parseInt(appSettings.get(settingsKey) || '0'); @@ -383,11 +382,14 @@ btnPurchases[i].addEventListener('click', showExternalPremiereInfo); } - dlg.querySelector('.btnPlayMinute').addEventListener('click', function () { + var btnPlayMinute = dlg.querySelector('.btnPlayMinute'); + if (btnPlayMinute) { + btnPlayMinute.addEventListener('click', function () { - currentDisplayingResolveResult.enableTimeLimit = true; - dialogHelper.close(dlg); - }); + currentDisplayingResolveResult.enableTimeLimit = true; + dialogHelper.close(dlg); + }); + } dlg.querySelector('.btnRestorePurchase').addEventListener('click', function () { restorePurchase(unlockableProductInfo); diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json index 76a9ef8435..a5d95ca12c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json b/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json index 8cf366a6ec..efaf75b32d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "\u041f\u0443\u0441\u043d\u0438", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json index 66a42cd396..d3c225cb81 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Obre", "Play": "Reprodueix", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json b/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json index a419a43695..f5dcc3dd0a 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata se aktualizuj\u00ed na z\u00e1klad\u011b nastaven\u00ed a internetov\u00fdch slu\u017eeb, kter\u00e9 jsou povoleny v nastaven\u00ed Emby Server.", "Open": "Otev\u0159\u00edt", "Play": "P\u0159ehr\u00e1t", - "Queue": "Fronta", + "AddToPlayQueue": "Add to play queue", "Shuffle": "N\u00e1hodn\u011b", "Identify": "Identifikuj", "EditImages": "Editace obr\u00e1zk\u016f", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/da.json b/dashboard-ui/bower_components/emby-webcomponents/strings/da.json index 3c058b64fb..c306a98f02 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/da.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/da.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata opdateres alt efter hvilke indstillinger og internet-servicer der er aktiveret i Emby Server-kontrolpanelet.", "Open": "\u00c5ben", "Play": "Afspil", - "Queue": "K\u00f8", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Bland", "Identify": "Identificer", "EditImages": "Rediger billeder", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Annulleret", "Retry": "Pr\u00f8v igen", "HeaderMyDevice": "Min Enhed", - "MediaQueued": "Medie sat i k\u00f8", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/de.json b/dashboard-ui/bower_components/emby-webcomponents/strings/de.json index 09a695dae3..af359f7215 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/de.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/de.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadaten werden auf Basis der Einstellungen und Internet Services in den Emby Server Einstellungen aktualisiert.", "Open": "\u00d6ffnen", "Play": "Abspielen", - "Queue": "Warteschlange", + "AddToPlayQueue": "Zur Abspielwarteschlange hinzuf\u00fcgen", "Shuffle": "Zufallswiedergabe", "Identify": "Identifizieren", "EditImages": "Bearbeite Bilder", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Abgebrochen", "Retry": "Wiederholen", "HeaderMyDevice": "Mein Ger\u00e4t", - "MediaQueued": "Medien in Warteschlange", "Continue": "Fortfahren", "ContinueInSecondsValue": "Fortfahren in {0} Sekunden." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/el.json b/dashboard-ui/bower_components/emby-webcomponents/strings/el.json index 90d71204d0..c7cdfb91a4 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/el.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/el.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json b/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json index b8774770cf..48a4e517c1 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json b/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json index 4c47823fbf..962948bc27 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json b/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json index d96384d13d..e814590e3c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json b/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json index 942fa5c02c..dd91d23ac7 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Los metadatos son actualizados bas\u00e1ndose en las configuraciones y servicios de internet que que est\u00e9n activados en el panel de control de su Servidor de Emby.", "Open": "Abrir", "Play": "Reproducir", - "Queue": "A cola", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Aleatorio", "Identify": "Identificar", "EditImages": "Editar im\u00e1genes", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelado", "Retry": "Volver a intentar", "HeaderMyDevice": "Mi Dispositivo", - "MediaQueued": "Medios en cola.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/es.json b/dashboard-ui/bower_components/emby-webcomponents/strings/es.json index 7f95216f48..5522b27818 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Abrir", "Play": "Reproducir", - "Queue": "En cola", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Mezclar", "Identify": "Identificar", "EditImages": "Editar im\u00e1genes", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json index e5b1484b9c..133daae8f8 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json index 1f7a5cd676..2eb3404b19 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json index 3879f52a1b..40006abbd7 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Les m\u00e9tadonn\u00e9es sont actualis\u00e9es en fonction des param\u00e8tres et des services internet qui sont activ\u00e9s dans le tableau de bord Emby Server.", "Open": "Ouvrir", "Play": "Lire", - "Queue": "En file d'attente", + "AddToPlayQueue": "Add to play queue", "Shuffle": "M\u00e9langer", "Identify": "Identifier", "EditImages": "Modifier les images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Annul\u00e9", "Retry": "R\u00e9essayer", "HeaderMyDevice": "Mon appareil", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json b/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json index 62959d2836..d5a2fb6eeb 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/he.json b/dashboard-ui/bower_components/emby-webcomponents/strings/he.json index 546ad77589..85e79c6a55 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/he.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/he.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "\u05e0\u05d2\u05df", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json index a3ac73c6bd..1cccc41706 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Meta-podaci se osvje\u017eavaju na temelju postavki i internet usluga koje su omogu\u0107ene u nadzornoj plo\u010di Emby Server-a.", "Open": "Otvori", "Play": "Pokreni", - "Queue": "Red", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Mije\u0161aj", "Identify": "Identificiraj", "EditImages": "Ure\u0111ivanje slika", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json b/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json index c960b913a0..90951dce8c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Megnyit\u00e1s", "Play": "Lej\u00e1tsz\u00e1s", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Kever\u00e9s", "Identify": "Azonos\u00edt\u00e1s", "EditImages": "K\u00e9pek szerkeszt\u00e9se", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/id.json b/dashboard-ui/bower_components/emby-webcomponents/strings/id.json index 1f772a4fad..d8f2039cc0 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/id.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/id.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/it.json b/dashboard-ui/bower_components/emby-webcomponents/strings/it.json index 4f5629e2fe..e5ae81d9f7 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/it.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/it.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "I Metadati sono aggiornati in base alle impostazioni ed ai servizi Internet abilitati nel Pannello di Controllo del Server Emby.", "Open": "Apri", "Play": "Riproduci", - "Queue": "In coda", + "AddToPlayQueue": "Aggiungi alla coda di riproduzione", "Shuffle": "Casuale", "Identify": "Identifica", "EditImages": "Modifica immagini", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Annullato", "Retry": "Riprova", "HeaderMyDevice": "Il Mio Dispositivo", - "MediaQueued": "Media aggiunto in coda.", "Continue": "Continua", "ContinueInSecondsValue": "Continua tra {0} secondi." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json index 5b12d47022..3a6490306c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u043c\u0435\u043d Emby Server \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0434\u0430 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440\u0456 \u043d\u0435\u0433\u0456\u0437\u0456\u043d\u0434\u0435 \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u044b\u043b\u0430\u0434\u044b.", "Open": "\u0410\u0448\u0443", "Play": "\u041e\u0439\u043d\u0430\u0442\u0443", - "Queue": "\u041a\u0435\u0437\u0435\u043a\u043a\u0435", + "AddToPlayQueue": "Add to play queue", "Shuffle": "\u0410\u0440\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u0443", "Identify": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443", "EditImages": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u04e9\u04a3\u0434\u0435\u0443", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "\u0411\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b", "Retry": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u0443", "HeaderMyDevice": "\u041c\u0435\u043d\u0456\u04a3 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043c", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json index 8d6e0a49ec..85450e1b8f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "\uc5f4\uae30", "Play": "\uc7ac\uc0dd", - "Queue": "\ub300\uae30\uc5f4 \ucd94\uac00", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json index 1f7a5cd676..2eb3404b19 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json b/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json index aa48f266cc..6e86c97e44 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata er oppdatert basert p\u00e5 innstillinger og internett-tjenester som er aktivert i Emby Server dashbordet", "Open": "\u00c5pne", "Play": "Spill", - "Queue": "K\u00f8", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identifiser", "EditImages": "Endre bilder", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json b/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json index 4f2d574f1a..2536563cf9 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata wordt vernieuwd op basis van de instellingen en internet diensten die zijn ingeschakeld in het dashboard van de Emby Server.", "Open": "Openen", "Play": "Afspelen", - "Queue": "Wachtrij", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Willekeurig", "Identify": "Identificeer", "EditImages": "Bewerk afbeeldingen", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json b/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json index b3dff11040..7364cc69e6 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Otw\u00f3rz", "Play": "Odtwarzaj", - "Queue": "Kolejka", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Losowo", "Identify": "Identyfikuj", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json index d0c379461b..e5e31073fc 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Os metadados s\u00e3o atualizados com bases nas defini\u00e7\u00f5es e nos servi\u00e7os de internet que est\u00e3o ativos no painel do Servidor Emby.", "Open": "Abrir", "Play": "Reproduzir", - "Queue": "Adicionar \u00e0 fila", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Aleat\u00f3rio", "Identify": "Identificar", "EditImages": "Editar imagens", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelado", "Retry": "Tentar Novamente", "HeaderMyDevice": "Meu Dispositivo", - "MediaQueued": "M\u00eddia enfileirada.", - "Continue": "Continue", - "ContinueInSecondsValue": "Continue in {0} seconds." + "Continue": "Continuar", + "ContinueInSecondsValue": "Continuar em {0} segundos." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json index 5ba76dab69..3ede3d3458 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Abrir", "Play": "Reproduzir", - "Queue": "Adicionar \u00e0 fila", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Aleat\u00f3rio", "Identify": "Identificar", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json index 42d20d5c68..1741a2b457 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json index 2508eb6812..c73698fb8f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "\u041f\u043e\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u043c\u0438 \u0438 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0443\u0441\u043b\u0443\u0433\u0430\u043c\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u0432 \u041f\u0430\u043d\u0435\u043b\u0438 Emby Server.", "Open": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c", "Play": "\u0412\u043e\u0441\u043f\u0440.", - "Queue": "\u0412 \u043e\u0447\u0435\u0440\u0435\u0434\u044c...", + "AddToPlayQueue": "Add to play queue", "Shuffle": "\u041f\u0435\u0440\u0435\u043c\u0435\u0448\u0430\u0442\u044c", "Identify": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u0442\u044c", "EditImages": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043a\u0438", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "\u041e\u0442\u043c\u0435\u043d\u0435\u043d\u043e", "Retry": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c", "HeaderMyDevice": "\u041c\u043e\u0451 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json index 1f7a5cd676..2eb3404b19 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json b/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json index 4bb052a383..5a1c98d9b7 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json b/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json index 6bdf5d8cc5..3ea2042292 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata uppdateras baserat p\u00e5 inst\u00e4llningar och internettj\u00e4nster som har aktiverats under Emby servers kontrollpanel.", "Open": "\u00d6ppna", "Play": "Spela upp", - "Queue": "K\u00f6", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Blanda", "Identify": "Identifiera", "EditImages": "\u00c4ndra bilder", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json index d7a53e7bb4..9d7b68a327 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "\u00c7al", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json index 6122c07068..73db381021 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json b/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json index 15a5e40e9e..d0d1595d8e 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "Play", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json index bd8b9ae168..cf1d27581e 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "\u6253\u5f00", "Play": "\u64ad\u653e", - "Queue": "\u52a0\u5165\u961f\u5217", + "AddToPlayQueue": "Add to play queue", "Shuffle": "\u968f\u673a\u64ad\u653e", "Identify": "\u8bc6\u522b", "EditImages": "\u4fee\u6539\u56fe\u7247", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "\u5df2\u53d6\u6d88", "Retry": "\u91cd\u8bd5", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json index 1983d1ea8c..91837da5a8 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", "Open": "Open", "Play": "\u64ad\u653e", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "Edit images", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json index b8453ba84b..1efbc78578 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json @@ -115,7 +115,7 @@ "RefreshDialogHelp": "\u8a73\u7d30\u8cc7\u6599\u7684\u66f4\u65b0\u65b9\u5f0f\u6703\u4f9d\u64daEmby\u7684\u8a2d\u5b9a\u53ca\u5df2\u7d93\u555f\u7528\u7684\u7db2\u8def\u670d\u52d9\u4f86\u9032\u884c", "Open": "Open", "Play": "\u64ad\u653e", - "Queue": "Queue", + "AddToPlayQueue": "Add to play queue", "Shuffle": "Shuffle", "Identify": "Identify", "EditImages": "\u7de8\u8f2f\u5716\u7247", @@ -378,7 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued.", "Continue": "Continue", "ContinueInSecondsValue": "Continue in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/scripts/site.js b/dashboard-ui/scripts/site.js index 9903e4a561..07dd0981ca 100644 --- a/dashboard-ui/scripts/site.js +++ b/dashboard-ui/scripts/site.js @@ -732,6 +732,8 @@ var AppInfo = {}; } else { AppInfo.moreIcon = 'more-vert'; } + + AppInfo.supportsUserDisplayLanguageSetting = Dashboard.isConnectMode(); } function initializeApiClient(apiClient) {