diff --git a/dashboard-ui/bower_components/emby-webcomponents/.bower.json b/dashboard-ui/bower_components/emby-webcomponents/.bower.json index b8db56203..c4a7d2d93 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.180", - "_release": "1.4.180", + "version": "1.4.182", + "_release": "1.4.182", "_resolution": { "type": "version", - "tag": "1.4.180", - "commit": "053e9d6503c1b6322ce41ad044787990026d8e18" + "tag": "1.4.182", + "commit": "d4c701ce17ff5a243470cf9cae99babde51f7179" }, "_source": "https://github.com/MediaBrowser/emby-webcomponents.git", "_target": "^1.2.1", diff --git a/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/card.css b/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/card.css index 1d2bc7bb7..9407e53f0 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/card.css +++ b/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/card.css @@ -206,11 +206,11 @@ padding: .5em .3em; } -.visualCardBox .cardScalable, .visualCardBox .cardFooter { +.visualCardBox .cardScalable, .visualCardBox-cardFooter { background-color: #222326; } -.visualCardBox .cardFooter { +.visualCardBox-cardFooter { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.1); diff --git a/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/cardbuilder.js b/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/cardbuilder.js index 0a7d89100..775efbee7 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/cardbuilder.js +++ b/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/cardbuilder.js @@ -1079,7 +1079,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo var outerCardFooter = ''; if (!overlayText && !footerOverlayed) { - footerCssClass = options.cardLayout ? 'cardFooter' : 'cardFooter transparent'; + footerCssClass = options.cardLayout ? 'cardFooter visualCardBox-cardFooter' : 'cardFooter transparent'; outerCardFooter = getCardFooterText(item, options, showTitle, forceName, imgUrl, footerCssClass, progressHtml, true); } diff --git a/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/peoplecardbuilder.js b/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/peoplecardbuilder.js index 83bc2aace..b3b404d8a 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/peoplecardbuilder.js +++ b/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/peoplecardbuilder.js @@ -93,7 +93,7 @@ define(['imageLoader', 'itemShortcuts', 'connectionManager', 'layoutManager'], f \ \ \ -
\ +
\ ' + nameHtml + '\
\
\ diff --git a/dashboard-ui/bower_components/emby-webcomponents/focusmanager.js b/dashboard-ui/bower_components/emby-webcomponents/focusmanager.js index 77de63122..454d28a05 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/focusmanager.js +++ b/dashboard-ui/bower_components/emby-webcomponents/focusmanager.js @@ -24,7 +24,7 @@ define(['dom'], function (dom) { } if (defaultToFirst !== false) { - element = getFocusableElements(view)[0]; + element = getFocusableElements(view, 1)[0]; if (element) { focus(element); @@ -117,7 +117,7 @@ define(['dom'], function (dom) { return scopes[0] || document.body; } - function getFocusableElements(parent) { + function getFocusableElements(parent, limit) { var elems = (parent || getDefaultScope()).querySelectorAll(focusableQuery); var focusableElements = []; @@ -127,6 +127,10 @@ define(['dom'], function (dom) { if (isCurrentlyFocusableInternal(elem)) { focusableElements.push(elem); + + if (limit && focusableElements.length >= limit) { + break; + } } } diff --git a/dashboard-ui/bower_components/emby-webcomponents/itemidentifier/itemidentifier.js b/dashboard-ui/bower_components/emby-webcomponents/itemidentifier/itemidentifier.js index 5db0d5539..876a35f61 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/itemidentifier/itemidentifier.js +++ b/dashboard-ui/bower_components/emby-webcomponents/itemidentifier/itemidentifier.js @@ -203,7 +203,7 @@ html += ''; html += ''; - html += '
'; + html += '
'; html += '
' + result.Name + '
'; html += '
'; diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json index 4982b64d8..4ace389b3 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", 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 bd971ace2..08f4863f8 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\u0414\u043e\u0431\u0430\u0432\u0438", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json index 0d4807ad5..c76d38b42 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Afegeix", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json b/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json index e3732a85c..594de6097 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "P\u0159idat", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/da.json b/dashboard-ui/bower_components/emby-webcomponents/strings/da.json index 66ec2e1bd..62d4247af 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/da.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/da.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Del", "Add": "Tilf\u00f8j", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/de.json b/dashboard-ui/bower_components/emby-webcomponents/strings/de.json index 82c6ee4b1..160239d1d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/de.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/de.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Synchronisationsaufgabe erstellt.", + "LabelSyncTo": "Synchronisiere mit:", + "LabelSyncJobName": "Name der Synchronisationsaufgabe:", + "LabelSyncNoTargetsHelp": "Es sieht so aus als w\u00fcrdest du aktuell keine Apps verwenden, die Synchronisation unterst\u00fctzen.", + "LabelQuality": "Qualit\u00e4t:", + "LearnMore": "Erfahre mehr", + "DownloadScheduled": "Download geplant", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profil:", + "SyncUnwatchedVideosOnly": "Synchronisiere nur ungesehene Videos", + "AutomaticallySyncNewContent": "Synchronisiere neue Inhalte automatisch", + "PleaseSelectDeviceToSyncTo": "Bitte w\u00e4hlen Sie ein zu synchronisierendes Ger\u00e4t.", + "LabelItemLimit": "Maximale Anzahl:", + "SyncUnwatchedVideosOnlyHelp": "Nur ungesehene Video werden synchronisiert. Videos werden entfernt sobald diese auf dem Ger\u00e4t angeschaut wurden.", + "LabelItemLimitHelp": "Optional. Legen Sie die maximale Anzahl der zu synchronisierenden Eintr\u00e4ge fest.", + "AutomaticallySyncNewContentHelp": "Neu zu diesen Ordner hinzugef\u00fcgte Inhalte werden automatisch mit dem Ger\u00e4t synchronisiert.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Teilen", "Add": "Hinzuf\u00fcgen", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/el.json b/dashboard-ui/bower_components/emby-webcomponents/strings/el.json index 21d7ce680..48bc0103c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/el.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/el.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5", 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 779f2dae2..decbc67f8 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", 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 c3b5c2ca5..f23c8da89 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", 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 ed9688862..d85e76df9 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Especial - {0}", "Share": "Compartir", "Add": "Agregar", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/es.json b/dashboard-ui/bower_components/emby-webcomponents/strings/es.json index 18d66fad0..c04ec3075 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Compartir", "Add": "A\u00f1adir", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json index 4c676fda9..434687483 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", 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 552f54071..17cb4c837 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json index 0a61d404c..f02b325c3 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Sp\u00e9cial - {0}", "Share": "Partager", "Add": "Ajouter", @@ -252,7 +268,7 @@ "MakeAvailableOffline": "Rendre disponible hors connexion", "ServerNameIsRestarting": "Emby Server - {0} est red\u00e9marr\u00e9.", "ServerNameIsShuttingDown": "Emby Server - {0} est arr\u00eater.", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", + "HeaderDeleteItems": "Supprimer les \u00e9l\u00e9ments", + "ConfirmDeleteItems": "Supprimer ces \u00e9l\u00e9ments l'effacera \u00e0 la fois du syst\u00e8me de fichiers et de votre biblioth\u00e8que de m\u00e9dias. \u00cates-vous s\u00fbr de vouloir continuer ?", "PleaseRestartServerName": "S'il vous pla\u00eet red\u00e9marrer Emby server - {0}." } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json b/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json index e873bc0ba..e40d762d4 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/he.json b/dashboard-ui/bower_components/emby-webcomponents/strings/he.json index a5484acde..b472f9cc0 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/he.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/he.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\u05d4\u05d5\u05e1\u05e3", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json index ac6eaf1d8..105a3d093 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Dodaj", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json b/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json index 8c07f9585..909c517d7 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Hozz\u00e1ad", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/id.json b/dashboard-ui/bower_components/emby-webcomponents/strings/id.json index e808a1c63..cec57d8f1 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/id.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/id.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/it.json b/dashboard-ui/bower_components/emby-webcomponents/strings/it.json index d4d6ecbb7..8356e5be0 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/it.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/it.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Aggiungi", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json index 7435cb750..1612728aa 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}", "Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443", "Add": "\u04ae\u0441\u0442\u0435\u0443", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json index f19c9d2f0..112db7cba 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\ucd94\uac00", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json index 552f54071..17cb4c837 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json b/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json index ff9510496..9a579b137 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Spesial - {0}", "Share": "Del", "Add": "Legg til", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json b/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json index 3eb3d4bb8..14ecb6990 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Speciaal - {0}", "Share": "Delen", "Add": "Toevoegen", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json b/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json index fc3b4f69b..ed35b63a5 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Dodaj", 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 05f81dc56..57330a3d6 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Tarefas de sincroniza\u00e7\u00e3o criadas.", + "LabelSyncTo": "Sincronizar para:", + "LabelSyncJobName": "Nome da tarefa de sincroniza\u00e7\u00e3o:", + "LabelSyncNoTargetsHelp": "Parece que voc\u00ea n\u00e3o possui atualmente apps que suportam sincroniza\u00e7\u00e3o.", + "LabelQuality": "Qualidade:", + "LearnMore": "Saiba mais", + "DownloadScheduled": "Download agendado", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Perfil:", + "SyncUnwatchedVideosOnly": "Sincronizar apenas v\u00eddeos n\u00e3o assistidos", + "AutomaticallySyncNewContent": "Sincronizar novo conte\u00fado automaticamente", + "PleaseSelectDeviceToSyncTo": "Por favor selecione um dispositivo para sincronizar.", + "LabelItemLimit": "Limites de Itens:", + "SyncUnwatchedVideosOnlyHelp": "Apenas v\u00eddeos n\u00e3o assistidos ser\u00e3o sincronizados, e v\u00eddeos ser\u00e3o removidos do dispositivo \u00e0 medida que forem assistidos.", + "LabelItemLimitHelp": "Opcional. Defina um limite para o n\u00famero de itens a serem sincronizados.", + "AutomaticallySyncNewContentHelp": "Novo conte\u00fado adicionado \u00e0 esta pasta ser\u00e1 automaticamente sincronizado para o dispositivo.", "ValueSpecialEpisodeName": "Especial - {0}", "Share": "Compartilhar", "Add": "Adicionar", 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 4ffe9fe89..35e2ccc11 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Especial - {0}", "Share": "Partilhar", "Add": "Adicionar", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json index a80290782..5aaa8bf35 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json index 44e16005e..39b84ad05 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}", "Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f", "Add": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json index 552f54071..17cb4c837 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", 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 ec4cb2576..411cccbe8 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json b/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json index 387064bd8..7041f8946 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Specialavsnitt - {0}", "Share": "Dela", "Add": "L\u00e4gg till", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json index fc614cb8c..df667970f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Ekle", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json index 15ff01f2d..d005d237d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json b/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json index d5428b4e9..8491a6390 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Th\u00eam", 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 1b9897833..97e1d4ec6 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\u6dfb\u52a0", 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 1a296176a..3f3957b58 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\u65b0\u589e", 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 4687a2d7b..9b2a7c4a6 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json @@ -1,4 +1,20 @@ { + "SyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "LabelQuality": "Quality:", + "LearnMore": "Learn more", + "DownloadScheduled": "Download scheduled", + "LabelBitrateMbps": "Bitrate (Mbps):", + "LabelProfile": "Profile:", + "SyncUnwatchedVideosOnly": "Sync unwatched videos only", + "AutomaticallySyncNewContent": "Automatically sync new content", + "PleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "LabelItemLimit": "Item limit:", + "SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "\u5206\u4eab", "Add": "\u6dfb\u52a0", diff --git a/dashboard-ui/bower_components/emby-webcomponents/sync/sync.js b/dashboard-ui/bower_components/emby-webcomponents/sync/sync.js index cbba5cbfd..57f64cb58 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/sync/sync.js +++ b/dashboard-ui/bower_components/emby-webcomponents/sync/sync.js @@ -252,7 +252,10 @@ lnkLearnMore.addEventListener('click', onHelpLinkClick); } - focusManager.autoFocus(elem); + // This isn't ideal, but allow time for the change handlers above to run + setTimeout(function() { + focusManager.autoFocus(elem); + }, 100); } function showSyncMenu(options) { diff --git a/dashboard-ui/css/site.css b/dashboard-ui/css/site.css index 0a3b6756b..a3183130a 100644 --- a/dashboard-ui/css/site.css +++ b/dashboard-ui/css/site.css @@ -620,7 +620,7 @@ progress { } -.ui-body-a .visualCardBox .cardScalable, .ui-body-a .visualCardBox .cardFooter { +.ui-body-a .visualCardBox .cardScalable, .ui-body-a .visualCardBox-cardFooter { background-color: #fff; } diff --git a/dashboard-ui/scripts/loginpage.js b/dashboard-ui/scripts/loginpage.js index 8a5cc47c6..22a6bd295 100644 --- a/dashboard-ui/scripts/loginpage.js +++ b/dashboard-ui/scripts/loginpage.js @@ -162,7 +162,7 @@ html += ''; html += '
'; - html += '
'; + html += '
'; html += '
' + user.Name + '
'; html += '
'; diff --git a/dashboard-ui/scripts/medialibrarypage.js b/dashboard-ui/scripts/medialibrarypage.js index c96392fc0..dd02c472f 100644 --- a/dashboard-ui/scripts/medialibrarypage.js +++ b/dashboard-ui/scripts/medialibrarypage.js @@ -342,7 +342,7 @@ // cardScalable html += "
"; - html += '
'; + html += '
'; if (virtualFolder.showMenu !== false) { var moreIcon = appHost.moreIcon == 'dots-horiz' ? '' : ''; diff --git a/dashboard-ui/scripts/plugincatalogpage.js b/dashboard-ui/scripts/plugincatalogpage.js index 71a9c9424..35aa23738 100644 --- a/dashboard-ui/scripts/plugincatalogpage.js +++ b/dashboard-ui/scripts/plugincatalogpage.js @@ -217,7 +217,7 @@ // cardScalable html += "
"; - html += '
'; + html += '
'; html += "
"; html += plugin.name; diff --git a/dashboard-ui/scripts/pluginspage.js b/dashboard-ui/scripts/pluginspage.js index 683f9d2ab..0827a317f 100644 --- a/dashboard-ui/scripts/pluginspage.js +++ b/dashboard-ui/scripts/pluginspage.js @@ -81,7 +81,7 @@ // cardScalable html += "
"; - html += '
'; + html += '
'; html += '
'; html += ''; diff --git a/dashboard-ui/scripts/userprofilespage.js b/dashboard-ui/scripts/userprofilespage.js index 84a1d38ee..ab25fb865 100644 --- a/dashboard-ui/scripts/userprofilespage.js +++ b/dashboard-ui/scripts/userprofilespage.js @@ -135,7 +135,7 @@ // cardScalable html += "
"; - html += '
'; + html += '
'; html += '
'; html += ''; @@ -254,7 +254,7 @@ // cardScalable html += "
"; - html += '
'; + html += '
'; html += '
'; html += '';