diff --git a/dashboard-ui/bower_components/emby-webcomponents/.bower.json b/dashboard-ui/bower_components/emby-webcomponents/.bower.json
index 8290be0f18..c6a81c33d2 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.466",
- "_release": "1.4.466",
+ "version": "1.4.467",
+ "_release": "1.4.467",
"_resolution": {
"type": "version",
- "tag": "1.4.466",
- "commit": "ae0866aa2337e97515ea80a82a813b17ef662613"
+ "tag": "1.4.467",
+ "commit": "bd1118e1637ab6edef1c61eb66593171eea35962"
},
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "^1.2.1",
diff --git a/dashboard-ui/bower_components/emby-webcomponents/playback/playbackvalidation.js b/dashboard-ui/bower_components/emby-webcomponents/playback/playbackvalidation.js
index f00d8f42ec..f2a4bce60f 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/playback/playbackvalidation.js
+++ b/dashboard-ui/bower_components/emby-webcomponents/playback/playbackvalidation.js
@@ -24,8 +24,11 @@ define(['playbackManager'], function (playbackManager) {
return new Promise(function (resolve, reject) {
require(["registrationServices"], function (registrationServices) {
- registrationServices.validateFeature('playback', options).then(resolve, function () {
- startAutoStopTimer();
+ registrationServices.validateFeature('playback', options).then(function (result) {
+
+ if (result && result.enableTimeLimit) {
+ startAutoStopTimer();
+ }
resolve();
});
});
diff --git a/dashboard-ui/bower_components/emby-webcomponents/registrationservices/registrationservices.js b/dashboard-ui/bower_components/emby-webcomponents/registrationservices/registrationservices.js
index 52a32e4f13..624c922fe2 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/registrationservices/registrationservices.js
+++ b/dashboard-ui/bower_components/emby-webcomponents/registrationservices/registrationservices.js
@@ -3,6 +3,7 @@
var currentDisplayingProductInfos = [];
var currentDisplayingResolve = null;
+ var currentDisplayingResolveResult = {};
function alertText(options) {
return new Promise(function (resolve, reject) {
@@ -21,6 +22,7 @@
showInAppPurchaseElement(subscriptionOptions, unlockableProductInfo, dialogOptions, resolve, reject);
currentDisplayingResolve = resolve;
+ currentDisplayingResolveResult = {};
});
});
}
@@ -66,8 +68,15 @@
html += '
';
html += '
'; - html += ''; + html += ''; html += '
'; } @@ -342,6 +378,12 @@ btnPurchases[i].addEventListener('click', showExternalPremiereInfo); } + dlg.querySelector('.btnPlayMinute').addEventListener('click', function () { + + currentDisplayingResolveResult.enableTimeLimit = true; + dialogHelper.close(dlg); + }); + dlg.querySelector('.btnRestorePurchase').addEventListener('click', function () { restorePurchase(unlockableProductInfo); }); @@ -352,19 +394,8 @@ function onCloseButtonClick() { - var onConfirmed = function () { - rejected = true; - dialogHelper.close(dlg); - }; - - if (dialogOptions.feature === 'playback') { - alertText({ - text: globalize.translate('sharedcomponents#ThankYouForTryingEnjoyOneMinute'), - title: globalize.translate('sharedcomponents#HeaderTryPlayback') - }).then(onConfirmed); - } else { - onConfirmed(); - } + rejected = true; + dialogHelper.close(dlg); } var btnCloseDialogs = dlg.querySelectorAll('.btnCloseDialog'); @@ -601,7 +632,7 @@ }).length) { cancelInAppPurchase(); - resolve(); + resolve(currentDisplayingResolveResult); } } } diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json index 0fee595a95..8835163b6e 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 13f6033203..a8571192f1 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 da1fd18f65..9e032942f6 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 e27a23525a..5767aec7e1 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 62e9172a19..b93bf65ff4 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/da.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/da.json @@ -1,7 +1,7 @@ { - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", + "MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s op for dette feature med en lille enkeltst\u00e5ende betaling, eller med et aktivt Emby Premiere abonnement.", + "MessageUnlockAppWithSupporter": "L\u00e5s op for dette feature med et aktivt Emby Premiere abonnement.", + "MessageToValidateSupporter": "Hvis du har et aktivt Emby Premiere abonnement, skal du v\u00e6re sikker p\u00e5 at Emby Premiere er konfigureret i dit Emby Server-kontrolpanel, som kan tilg\u00e5es ved at klikke p\u00e5 Emby Premiere i hovedmenuen.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Del", "Add": "Tilf\u00f8j", @@ -10,7 +10,7 @@ "AttributeNew": "Ny", "Premiere": "Premiere", "Live": "Live", - "Repeat": "Repeat", + "Repeat": "Gentag", "TrackCount": "{0} numre", "ItemCount": "{0} elementer", "ReleaseYearValue": "Udgivelses\u00e5r: {0}", @@ -29,9 +29,9 @@ "ButtonGotIt": "Forst\u00e5et", "ButtonRestart": "Genstart", "RecordingCancelled": "Optagelse annulleret.", - "SeriesCancelled": "Series cancelled.", + "SeriesCancelled": "Serie annulleret.", "RecordingScheduled": "Optagelse planlagt.", - "SeriesRecordingScheduled": "Series recording scheduled.", + "SeriesRecordingScheduled": "Optagning af serie planlagt.", "HeaderNewRecording": "Ny optagelse", "Sunday": "S\u00f8ndag", "Monday": "Mandag", @@ -42,24 +42,24 @@ "Saturday": "L\u00f8rdag", "Days": "Dage", "RecordSeries": "Optag serie", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", + "HeaderCinemaMode": "Biograftilstand", + "HeaderCloudSync": "Sky-Synk", + "HeaderOfflineDownloads": "Offline Medie", + "HeaderOfflineDownloadsDescription": "Download medier til dine enheder for nem offline-brug.", + "CloudSyncFeatureDescription": "Synk dine medier til skyen for nem backup, arkivering og konvertering.", + "CoverArtFeatureDescription": "Cover Art opretter sjove covers og andre \u00e6ndringer for at personalisere dine mediebilleder.", "CoverArt": "Cover Art", - "ButtonCancelSyncJob": "Cancel sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.", + "ButtonCancelSyncJob": "Annull\u00e9r synk", + "CancelSyncJobConfirmation": "Annullering af synk-jobbet fjerner synkroniserede medier fra enheden under n\u00e6ste synk. Er du sikker p\u00e5 at du vil forts\u00e6tte?", + "CinemaModeFeatureDescription": "Biograftilstand giver dig den \u00e6gte biografoplevelse med trailers og brugertilpassede introer, f\u00f8r selve filmen.", + "HeaderFreeApps": "Gratis Emby Apps", + "FreeAppsFeatureDescription": "God forn\u00f8jelse med gratis adgang til Emby apps til dine enheder.", "HeaderBecomeProjectSupporter": "F\u00e5 Emby Premiere", "MessageActiveSubscriptionRequiredSeriesRecordings": "Et aktivt Emby Premiere abonnement er n\u00f8dvendigt for at oprette automatiserede optagelser af serier.", - "LabelEmailAddress": "E-mail address:", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.", + "LabelEmailAddress": "Email-adresse:", + "PromoConvertRecordingsToStreamingFormat": "Konverter automatisk optagelser til streaming-venlige formater med Emby Premiere. Optagelser bliver konverteret on-the-fly til MP4 eller MKV, afh\u00e6ngigt af dine Emby serverindstillinger.", "FeatureRequiresEmbyPremiere": "Denne funktion kr\u00e6ver et aktivt Emby Premiere abonnement.", - "HeaderConvertYourRecordings": "Convert Your Recordings", + "HeaderConvertYourRecordings": "Konverter Dine Optagelser", "Record": "Optag", "Save": "Gem", "Edit": "Rediger", @@ -70,84 +70,84 @@ "ConfirmDeleteItem": "Hvis dette element slettes, fjernes det b\u00e5de fra dit filsystem samt din mediebibliotek. Er du sikker p\u00e5 du \u00f8nsker at forts\u00e6tte?", "Refresh": "Opdater", "RefreshQueued": "Opdatering sat i k\u00f8", - "AddToCollection": "Add to collection", + "AddToCollection": "Tilf\u00f8j til samling", "HeaderAddToCollection": "Tilf\u00f8j til samling", "NewCollection": "Ny samling", - "LabelCollection": "Collection:", + "LabelCollection": "Samling:", "Help": "Hj\u00e6lp", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "NewCollectionHelp": "Samlinger lader dig oprette personaliserede grupper af film og andet biblioteksindhold.", "SearchForCollectionInternetMetadata": "S\u00f8g p\u00e5 internettet efter billeder og metadata", "LabelName": "Navn:", "NewCollectionNameExample": "Eksempel: Star Wars samling", - "MessageItemsAdded": "Items added.", + "MessageItemsAdded": "Emne tilf\u00f8jet.", "OptionNew": "Ny...", "LabelPlaylist": "Afspilningsliste:", "AddToPlaylist": "Tilf\u00f8j til afspilningsliste", "HeaderAddToPlaylist": "Tilf\u00f8j til afspilningsliste", - "Subtitles": "Subtitles", + "Subtitles": "Undertekster", "SearchForSubtitles": "S\u00f8g efter undertekster", "LabelLanguage": "Sprog:", "Search": "S\u00f8g", - "NoSubtitleSearchResultsFound": "No results found.", - "File": "File", + "NoSubtitleSearchResultsFound": "Ingen resultater fundet.", + "File": "Fil", "MessageAreYouSureDeleteSubtitles": "Er du sikker p\u00e5 du \u00f8nsker at slette denne undertekstfil?", "ConfirmDeletion": "Bekr\u00e6ft sletning", - "MySubtitles": "My Subtitles", - "MessageDownloadQueued": "Download queued.", - "EditSubtitles": "Edit subtitles", + "MySubtitles": "Mine Undertekster", + "MessageDownloadQueued": "Download sat i k\u00f8.", + "EditSubtitles": "Rediger undertekster", "UnlockGuide": "Opl\u00e5s guide", "RefreshMetadata": "Opdater metadata", "ReplaceExistingImages": "Erstat eksisterende billeder", - "ReplaceAllMetadata": "Replace all metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "LabelRefreshMode": "Refresh mode:", - "NoItemsFound": "No items found.", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", + "ReplaceAllMetadata": "Erstat alle metadata", + "SearchForMissingMetadata": "S\u00f8g efter manglende metadata", + "LabelRefreshMode": "Genopfrisk tilstand:", + "NoItemsFound": "Ingen emner fundet.", + "HeaderSaySomethingLike": "Sig noget i stil med...", + "ButtonTryAgain": "Pr\u00f8v Igen", + "HeaderYouSaid": "Du sagde...", + "MessageWeDidntRecognizeCommand": "Beklager, men vi genkendte ikke denne kommando.", + "MessageIfYouBlockedVoice": "Hvis du afslog adgang til tale for appen, skal du re-konfigurere f\u00f8r du pr\u00f8ver igen.", "ValueDiscNumber": "Disk {0}", "Unrated": "Ingen bed\u00f8mmelse", "Favorite": "Favorit", "Like": "Like", "Dislike": "Dislike", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", + "RefreshDialogHelp": "Metadata opdateres alt efter hvilke indstillinger og internet-servicer der er aktiveret i Emby Server-kontrolpanelet.", "Open": "\u00c5ben", "Play": "Afspil", "Queue": "K\u00f8", "Shuffle": "Bland", "Identify": "Identificer", - "EditImages": "Edit images", - "EditInfo": "Edit info", - "Sync": "Sync", + "EditImages": "Rediger billeder", + "EditInfo": "Rediger info", + "Sync": "Synk", "InstantMix": "Instant Mix", - "ViewAlbum": "View album", - "ViewArtist": "View artist", + "ViewAlbum": "Vis album", + "ViewArtist": "Vis kunstner", "QueueAllFromHere": "Set alt her i k\u00f8", "PlayAllFromHere": "Afspil alt fra her", - "PlayFromBeginning": "Play from beginning", - "ResumeAt": "Resume from {0}", + "PlayFromBeginning": "Afspil fra begyndelsen", + "ResumeAt": "Genoptag fra {0}", "RemoveFromPlaylist": "Fjer fra afspilningsliste", - "RemoveFromCollection": "Remove from collection", + "RemoveFromCollection": "Fjern fra samling", "Trailer": "Trailer", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "GroupVersions": "Group versions", + "MarkPlayed": "Mark\u00e9r som afspillet", + "MarkUnplayed": "Mark\u00e9r som ikke afspillet", + "GroupVersions": "Grup\u00e9r versioner", "PleaseSelectTwoItems": "V\u00e6lg venligst mindst to elementer.", - "TryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", + "TryMultiSelect": "Pr\u00f8v Multi-Valg", + "TryMultiSelectMessage": "For at redigere adskillige emner, skal du blot klikke og holde p\u00e5 hvilken som helst plakat og v\u00e6lge de emner du vil administrere. Pr\u00f8v det!", "HeaderConfirmRecordingCancellation": "Bekr\u00e6ft annullering af optagelse", "MessageConfirmRecordingCancellation": "Er du sikker p\u00e5 du \u00f8nsker at annullere denne optagelse?", "Error": "Fejl", - "VoiceInput": "Voice Input", + "VoiceInput": "Taleinput", "LabelContentType": "Indholdstype:", "LabelPath": "Sti:", - "LabelTitle": "Title:", - "LabelOriginalTitle": "Original title:", - "LabelSortTitle": "Sort title:", + "LabelTitle": "Titel:", + "LabelOriginalTitle": "Original titel:", + "LabelSortTitle": "Sort\u00e9r titel:", "LabelDateAdded": "Dato for tilf\u00f8jelse:", - "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings", + "ConfigureDateAdded": "Konfigurer hvordan tilf\u00f8jet-dato bestemmes, under Emby Server-kontrolpanelet under Biblioteksindstillinger", "LabelStatus": "Status:", "LabelArtists": "Artister:", "LabelArtistsHelp": "Angiv flere ved at s\u00e6tte ; mellem dem.", @@ -185,16 +185,16 @@ "LabelAirsAfterSeason": "Sendes efter s\u00e6son:", "LabelAirsBeforeEpisode": "Sendes f\u00f8r episode:", "HeaderExternalIds": "Eksterne ID'er:", - "HeaderDisplaySettings": "Display Settings", + "HeaderDisplaySettings": "Visningsindstillinger", "LabelTreatImageAs": "Opfat billede som:", "LabelDisplayOrder": "Visningsorden:", - "Countries": "Countries", - "Genres": "Genres", + "Countries": "Lande", + "Genres": "Genre", "HeaderPlotKeywords": "Plot n\u00f8gleord", - "Studios": "Studios", + "Studios": "Studier", "Tags": "Tags", "HeaderMetadataSettings": "Indstillinger for metadata", - "People": "People", + "People": "Personer", "LabelMetadataDownloadLanguage": "Foretrukket sprog for nedhentning:", "LabelLockItemToPreventChanges": "L\u00e5s for at undg\u00e5 fremtidige \u00e6ndringer", "MessageLeaveEmptyToInherit": "Efterlad tom for at arve indstillinger fra en overliggende post eller den globale standardv\u00e6rdi.", @@ -204,44 +204,44 @@ "LabelBirthDate": "F\u00f8dselsdato:", "LabelDeathDate": "D\u00f8dsdato:", "LabelEndDate": "Slutdato:", - "LabelSeasonNumber": "Season number:", - "LabelEpisodeNumber": "Episode number:", + "LabelSeasonNumber": "S\u00e6sonnummer:", + "LabelEpisodeNumber": "Episodenummer:", "LabelTrackNumber": "Spor nummer:", "LabelNumber": "Nummer:", - "LabelDiscNumber": "Disk nummer", - "LabelParentNumber": "Parent nummer", + "LabelDiscNumber": "Disk-nummer", + "LabelParentNumber": "For\u00e6ldre-nummer:", "SortName": "Sorteringsnavn", - "ReleaseDate": "Release date", + "ReleaseDate": "Udgivelsesdato", "Continuing": "Fors\u00e6ttes", "Ended": "F\u00e6rdig", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", + "HeaderEnabledFields": "Aktiv\u00e9r Felter", + "HeaderEnabledFieldsHelp": "Fjern fluebenet fra et felt for at l\u00e5se det og forhindre dets data fra at blive \u00e6ndret.", "Backdrops": "Backdrops", "Images": "Billeder", "Keywords": "N\u00f8gleord", - "Runtime": "Runtime", - "ProductionLocations": "Production locations", - "BirthLocation": "Birth location", + "Runtime": "Afspilningstid", + "ProductionLocations": "Produktionslokationer", + "BirthLocation": "F\u00f8dselslokation", "ParentalRating": "Parental Rating", - "Name": "Name", - "Overview": "Overview", + "Name": "Navn", + "Overview": "Overblik", "LabelType": "Type:", "LabelPersonRole": "Rolle:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", + "LabelPersonRoleHelp": "Eksempel: Isbilschauff\u00f8r", "Actor": "Skuespiller", "Composer": "Komponist", "Director": "Instrukt\u00f8r", - "GuestStar": "Guest star", + "GuestStar": "G\u00e6steskuespiller", "Producer": "Producent", "Writer": "Forfatter", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", - "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", + "MessageNoSyncJobsFound": "Ingen synk-jobs fundet. Opret synk-jobs ved hj\u00e6lp af Synk-knapperne der findes i appen.", + "MessageNoDownloadsFound": "Ingen offline downloads. G\u00f8r dit medie tilg\u00e6ngeligt offline ved at klikke p\u00e5 G\u00f8r Tilg\u00e6ngelig Offline i appen.", "InstallingPackage": "Installerer {0}", "PackageInstallCompleted": "{0} installation udf\u00f8rt.", "PackageInstallFailed": "{0} installationen mislykkedes.", "PackageInstallCancelled": "{0} installation afbrudt.", - "SeriesYearToPresent": "{0}-Nu", - "ValueOneItem": "1 item", + "SeriesYearToPresent": "{0} - Nuv\u00e6rende", + "ValueOneItem": "1 emne", "ValueOneSong": "1 sang", "ValueSongCount": "{0} sange", "ValueOneMovie": "1 film", @@ -260,122 +260,124 @@ "HeaderIdentifyItemHelp": "Indtast et eller flere s\u00f8gekriterier.Fjern kriterier for at f\u00e5 flere s\u00f8geresultater.", "PleaseEnterNameOrId": "Indtast venligst et navn eller eksternt Id.", "MessageItemSaved": "Element gemt.", - "SearchResults": "Search Results", - "SyncToOtherDevice": "Sync to other device", - "MakeAvailableOffline": "Make available offline", - "ServerNameIsRestarting": "Emby Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "PleaseRestartServerName": "Please restart Emby Server - {0}.", + "SearchResults": "S\u00f8geresultater", + "SyncToOtherDevice": "Synk til anden enhed", + "MakeAvailableOffline": "G\u00f8r tilg\u00e6ngelig offline", + "ServerNameIsRestarting": "Emby Server - {0} genstarter.", + "ServerNameIsShuttingDown": "Emby Server - {0} lukker ned.", + "HeaderDeleteItems": "Slet emner", + "ConfirmDeleteItems": "Sletning af disse emner vil b\u00e5de fjerne dem fra filsystemet og dit mediebibliotek. Er du sikker p\u00e5 at du vil forts\u00e6tte?", + "PleaseRestartServerName": "Genstart venligst Emby Server - {0}.", "SyncJobCreated": "Synkroniserings job oprettet", "LabelSyncTo": "Synkroniser til:", "LabelSyncJobName": "Navn til synkroniserings job:", "LabelQuality": "Kvalitet:", "LabelSyncNoTargetsHelp": "Det ser ud til at du for \u00f8jeblikket ikke har nogle enheder ser underst\u00f8tter sync.", - "DownloadScheduled": "Download scheduled", - "HeaderSyncRequiresSub": "Sync requires an active Emby Premiere subscription.", + "DownloadScheduled": "Download planlagt", + "HeaderSyncRequiresSub": "Synk p\u00e5kr\u00e6ver et aktivt Emby Premiere abonnement.", "LearnMore": "L\u00e6r mere", "LabelProfile": "Profil:", "LabelBitrateMbps": "Bitrate (Mbps):", "SyncUnwatchedVideosOnly": "Synkroniser kun usete videoer", "SyncUnwatchedVideosOnlyHelp": "Kun usete videoer vil blive synkroniseret, og videoer vil blive fjernet fra enheden n\u00e5r de er blevet set.", "AutomaticallySyncNewContent": "Synkroniser automatisk nyt indhold", - "AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", + "AutomaticallySyncNewContentHelp": "Nyt indhold tilf\u00f8jet til denne mappe bliver automatisk synkroniseret til enheden.", "LabelItemLimit": "Maks. filer:", "LabelItemLimitHelp": "Valgfri. S\u00e6t en gr\u00e6nse for antallet af filer der synkroniseres.", "PleaseSelectDeviceToSyncTo": "V\u00e6lg en enhed at synkroniserer til.", - "Screenshots": "Screenshots", - "MoveRight": "Move right", - "MoveLeft": "Move left", - "ConfirmDeleteImage": "Delete image?", - "HeaderEditImages": "Edit Images", + "Screenshots": "Sk\u00e6rmbilleder", + "MoveRight": "Flyt mod h\u00f8jre", + "MoveLeft": "Flyt mod venstre", + "ConfirmDeleteImage": "Slet billede?", + "HeaderEditImages": "Rediger billeder", "Settings": "Indstillinger", - "ShowIndicatorsFor": "Show indicators for:", - "NewEpisodes": "New episodes", - "HDPrograms": "HD programs", - "LiveBroadcasts": "Live broadcasts", - "Premieres": "Premieres", - "RepeatEpisodes": "Repeat episodes", - "DvrSubscriptionRequired": "Emby DVR requires an active Emby Premiere subscription.", - "HeaderCancelRecording": "Cancel Recording", - "CancelRecording": "Cancel recording", - "HeaderKeepRecording": "Keep Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderKeepSeries": "Keep Series", - "HeaderLearnMore": "Learn More", - "DeleteMedia": "Delete media", - "SeriesSettings": "Series settings", - "HeaderRecordingOptions": "Recording Options", - "CancelSeries": "Cancel series", - "DoNotRecord": "Do not record", - "HeaderSeriesOptions": "Series Options", - "LabelChannels": "Channels:", - "ChannelNameOnly": "Channel {0} only", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "LabelAirtime": "Airtime:", - "AllChannels": "All channels", - "LabelRecord": "Record:", - "NewEpisodesOnly": "New episodes only", - "AllEpisodes": "All episodes", - "LabelStartWhenPossible": "Start when possible:", - "LabelStopWhenPossible": "Stop when possible:", - "MinutesBefore": "minutes before", - "MinutesAfter": "minutes after", - "SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "LabelKeepUpTo": "Keep up to:", - "AsManyAsPossible": "As many as possible", + "ShowIndicatorsFor": "Vis indikatorer for:", + "NewEpisodes": "Nye episoder", + "HDPrograms": "HD-programmer", + "LiveBroadcasts": "Live-udsending", + "Premieres": "Premiere", + "RepeatEpisodes": "Gentag episoder", + "DvrSubscriptionRequired": "Emby DVR p\u00e5kr\u00e6ver et aktivt Emby Premiere abonnement.", + "HeaderCancelRecording": "Annuller Optagelse", + "CancelRecording": "Annuller optagelse", + "HeaderKeepRecording": "Bevar Optagelse", + "HeaderCancelSeries": "Annuller Serie", + "HeaderKeepSeries": "Bevar Serie", + "HeaderLearnMore": "L\u00e6r Mere", + "DeleteMedia": "Slet medie", + "SeriesSettings": "Serieindstillinger", + "HeaderRecordingOptions": "Optagelsesindstillinger", + "CancelSeries": "Annuller serie", + "DoNotRecord": "Optag ikke", + "HeaderSeriesOptions": "Serieindstillinger", + "LabelChannels": "Kanaler:", + "ChannelNameOnly": "Udelukkende kanal {0}", + "Anytime": "Altid", + "AroundTime": "Omkring {0}", + "LabelAirtime": "Sendetid:", + "AllChannels": "Alle kanaler", + "LabelRecord": "Optag:", + "NewEpisodesOnly": "Kun nye episoder", + "AllEpisodes": "Alle episoder", + "LabelStartWhenPossible": "Start n\u00e5r muligt:", + "LabelStopWhenPossible": "Stop n\u00e5r muligt:", + "MinutesBefore": "minutter f\u00f8r", + "MinutesAfter": "minutter efter", + "SkipEpisodesAlreadyInMyLibrary": "Optag ikke episoder som allerede findes i mit bibliotek", + "SkipEpisodesAlreadyInMyLibraryHelp": "Episoder bliver sammenlignet p\u00e5 s\u00e6son og episodenummer, n\u00e5r muligt.", + "LabelKeepUpTo": "Bevar op til:", + "AsManyAsPossible": "S\u00e5 mange som muligt", "DefaultErrorMessage": "Det opstod en fejl ved behandlingen af foresp\u00f8rgslen. Pr\u00f8v igen senere.", - "LabelKeep:": "Keep:", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Categories": "Categories", - "Sports": "Sports", - "News": "News", - "Movies": "Movies", - "Kids": "Kids", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "SortChannelsBy": "Sort channels by:", - "RecentlyWatched": "Recently watched", - "ChannelNumber": "Channel number", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderAlreadyPaid": "Already Paid?", - "ButtonPlayOneMinute": "Play One Minute", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "HeaderUnlockFeature": "Unlock Feature", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", - "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", - "Items": "Items", - "OneChannel": "One channel", - "ConfirmRemoveDownload": "Remove download?", - "RemoveDownload": "Remove download", - "AddedOnValue": "Added {0}", - "RemovingFromDevice": "Removing from device", - "RemoveFromDevice": "Remove from device", - "KeepOnDevice": "Keep on device", - "CancelDownload": "Cancel download", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "Retry": "Retry", - "HeaderMyDevice": "My Device" + "LabelKeep:": "Bevar:", + "UntilIDelete": "Til jeg sletter", + "UntilSpaceNeeded": "Til pladsen er n\u00f8dvendig", + "Categories": "Kategorier", + "Sports": "Sport", + "News": "Nyheder", + "Movies": "Film", + "Kids": "B\u00f8rn", + "EnableColorCodedBackgrounds": "Aktiver farvekodet baggrunde", + "SortChannelsBy": "Sort\u00e9r kanaler efter:", + "RecentlyWatched": "Nyligt sete", + "ChannelNumber": "Kanalnummer", + "HeaderBenefitsEmbyPremiere": "Fordele ved Emby Premiere", + "ThankYouForTryingEnjoyOneMinute": "Nyd venligst et minuts afspilning. Tak fordi du pr\u00f8ver Emby.", + "HeaderTryPlayback": "Pr\u00f8v Afspilning", + "HowDidYouPay": "Hvordan betalte du?", + "IHaveEmbyPremiere": "Jeg har Emby Premiere", + "IPurchasedThisApp": "Jeg k\u00f8bte denne app", + "ButtonRestorePreviousPurchase": "Genskab Indk\u00f8b", + "ButtonUnlockWithPurchase": "L\u00e5s op for med K\u00f8b", + "ButtonUnlockPrice": "L\u00e5s op for {0}", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere M\u00e5nedlig {0}", + "HeaderAlreadyPaid": "Allerede Betalt?", + "ButtonPlayOneMinute": "Afspil \u00c9t Minut", + "PlaceFavoriteChannelsAtBeginning": "Placer favoritkanaler i begyndelsen", + "HeaderUnlockFeature": "L\u00e5s op for Feature", + "MessageDidYouKnowCinemaMode": "Vidste du, at med Emby Premiere kan du opleve features s\u00e5 som Biograftilstand?", + "MessageDidYouKnowCinemaMode2": "Biograftilstand giver dig den \u00e6gte biografoplevelse med trailere og brugertilpassede introer f\u00f8r selve filmen.", + "HeaderPlayMyMedia": "Afspil mit Medie", + "HeaderDiscoverEmbyPremiere": "Oplev Emby Premiere", + "Items": "emner", + "OneChannel": "En kanal", + "ConfirmRemoveDownload": "Fjern download?", + "RemoveDownload": "Fjern download", + "AddedOnValue": "Tilf\u00f8jet {0}", + "RemovingFromDevice": "Fjerner fra enhed", + "RemoveFromDevice": "Fjern fra enhed", + "KeepOnDevice": "Bevar p\u00e5 enhed", + "CancelDownload": "Annuller download", + "SyncJobItemStatusReadyToTransfer": "Klar til at Overf\u00f8re", + "SyncJobItemStatusSyncedMarkForRemoval": "Fjerner fra enhed", + "SyncJobItemStatusQueued": "Sat i k\u00f8", + "SyncJobItemStatusConverting": "Konverterer", + "SyncJobItemStatusTransferring": "Overf\u00f8rer", + "SyncJobItemStatusSynced": "Downloadet", + "SyncJobItemStatusFailed": "Fejlet", + "SyncJobItemStatusRemovedFromDevice": "Fjern fra enhed", + "SyncJobItemStatusCancelled": "Annulleret", + "Retry": "Pr\u00f8v igen", + "HeaderMyDevice": "Min Enhed", + "MediaQueued": "Medie sat i k\u00f8", + "ContinuingInSecondsValue": "Continuing 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 4bb9b2356c..cb1fbed9f5 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/de.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/de.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Vom Ger\u00e4t entfernt", "SyncJobItemStatusCancelled": "Abgebrochen", "Retry": "Wiederholen", - "HeaderMyDevice": "Mein Ger\u00e4t" + "HeaderMyDevice": "Mein Ger\u00e4t", + "MediaQueued": "Medien in Warteschlange", + "ContinuingInSecondsValue": "Continuing in {0} seconds." } \ 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 fe42d15676..3744ffc08e 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/el.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/el.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 0fcf156770..51b5ec90d7 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 7a0f665bda..41f6a05a02 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json @@ -378,5 +378,6 @@ "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", "HeaderMyDevice": "My Device", - "MediaQueued": "Media queued." + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 2157cde95c..0c71bc185c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 2a7a9b36d8..016fbddc53 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Eliminado del dispositivo", "SyncJobItemStatusCancelled": "Cancelado", "Retry": "Volver a intentar", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "Mi Dispositivo", + "MediaQueued": "Medios en cola.", + "ContinuingInSecondsValue": "Continuing 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 385df5dec9..8a81b6aedb 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 a3ed5cce42..0d6cd4f855 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 70f254c8df..03207fd039 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 5a8fe51a00..92ea903c8f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json @@ -49,8 +49,8 @@ "CloudSyncFeatureDescription": "Synchronisez votre contenu multim\u00e9dia vers le cloud pour le sauvegarder, l'archiver et le convertir plus facilement.", "CoverArtFeatureDescription": "Pochette cr\u00e9\u00e9 des couvertures amusantes et d'autres fonctions pour vous aider \u00e0 personnaliser les pochettes de votre contenu multim\u00e9dia.", "CoverArt": "Pochette", - "ButtonCancelSyncJob": "Cancel sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", + "ButtonCancelSyncJob": "Annuler la synchronisation", + "CancelSyncJobConfirmation": "L'annulation d'une t\u00e2che de synchronisation provoquera la suppression des m\u00e9dias synchronis\u00e9s sur l'appareil lors la prochaine ex\u00e9cution de la synchronisation. \u00cates-vous s\u00fbr de vouloir continuer ?", "CinemaModeFeatureDescription": "Le Mode Cin\u00e9ma vous donne une v\u00e9ritable exp\u00e9rience cin\u00e9matique avec des trailers et des intros personnalis\u00e9es avant la lecture du contenu.", "HeaderFreeApps": "Apps Emby gratuites", "FreeAppsFeatureDescription": "Profitez d'un acc\u00e8s gratuit \u00e0 certaines applications Emby pour vos appareils.", @@ -234,14 +234,14 @@ "GuestStar": "Invit\u00e9s d'honneur", "Producer": "Producteur", "Writer": "Sc\u00e9nariste", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", - "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", + "MessageNoSyncJobsFound": "Aucune t\u00e2che de synchronisation trouv\u00e9e. Vous pouvez cr\u00e9er des t\u00e2ches de synchronisation gr\u00e2ce aux boutons Synchroniser pr\u00e9sents dans l'application.", + "MessageNoDownloadsFound": "Aucun t\u00e9l\u00e9chargement hors ligne. Afin que votre contenu multim\u00e9dia soit disponible m\u00eame quand vous \u00eates hors ligne, cliquez sur Activer la disponibilit\u00e9 hors ligne dans l'application.", "InstallingPackage": "Installation de {0}", "PackageInstallCompleted": "L'installation de {0} est termin\u00e9e.", "PackageInstallFailed": "L'installation de {0} a \u00e9chou\u00e9.", "PackageInstallCancelled": "L'installation de {0} a \u00e9t\u00e9 annul\u00e9e.", "SeriesYearToPresent": "{0} - Pr\u00e9sent", - "ValueOneItem": "1 item", + "ValueOneItem": "1 El\u00e9ment", "ValueOneSong": "1 chanson", "ValueSongCount": "{0} chansons", "ValueOneMovie": "1 Film", @@ -274,7 +274,7 @@ "LabelQuality": "Qualit\u00e9:", "LabelSyncNoTargetsHelp": "Il semble que vous n'ayez actuellement aucune application qui supporte la synchronisation.", "DownloadScheduled": "T\u00e9l\u00e9chargement planifi\u00e9e", - "HeaderSyncRequiresSub": "Sync requires an active Emby Premiere subscription.", + "HeaderSyncRequiresSub": "La synchronisation entre vos appareils n\u00e9cessite un abonnement Emby Premiere.", "LearnMore": "En savoir plus", "LabelProfile": "Profil :", "LabelBitrateMbps": "D\u00e9bit (Mbps) :", @@ -349,8 +349,8 @@ "ButtonRestorePreviousPurchase": "Restaurer l'achat", "ButtonUnlockWithPurchase": "D\u00e9verrouillez par un achat.", "ButtonUnlockPrice": "D\u00e9verrouiller {0}", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere {0} mensuel", + "HeaderAlreadyPaid": "Vous avez d\u00e9j\u00e0 pay\u00e9 ?", "ButtonPlayOneMinute": "Lire une minute", "PlaceFavoriteChannelsAtBeginning": "Mettre vos cha\u00eenes pr\u00e9f\u00e9r\u00e9es au d\u00e9but", "HeaderUnlockFeature": "D\u00e9verrouiller la fonction", @@ -358,24 +358,26 @@ "MessageDidYouKnowCinemaMode2": "Le mode Cin\u00e9ma vous apporte une vraie exp\u00e9rience utilisateur de cin\u00e9ma, avec les bandes-annonces et les intros personnalis\u00e9es avant le film principal.", "HeaderPlayMyMedia": "Lire mon contenu", "HeaderDiscoverEmbyPremiere": "D\u00e9couvrez Emby Premiere", - "Items": "Items", + "Items": "\u00c9l\u00e9ments", "OneChannel": "Une cha\u00eene", - "ConfirmRemoveDownload": "Remove download?", - "RemoveDownload": "Remove download", - "AddedOnValue": "Added {0}", - "RemovingFromDevice": "Removing from device", - "RemoveFromDevice": "Remove from device", - "KeepOnDevice": "Keep on device", - "CancelDownload": "Cancel download", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", + "ConfirmRemoveDownload": "Supprimer le t\u00e9l\u00e9chargement ?", + "RemoveDownload": "Supprimer le t\u00e9l\u00e9chargement", + "AddedOnValue": "Ajout\u00e9 {0}", + "RemovingFromDevice": "Supprim\u00e9 de l'appareil", + "RemoveFromDevice": "Supprimer de l'appareil", + "KeepOnDevice": "Garder sur l'appareil", + "CancelDownload": "Annuler le t\u00e9l\u00e9chargement", + "SyncJobItemStatusReadyToTransfer": "Pr\u00eat pour le transfert", "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "Retry": "Retry", - "HeaderMyDevice": "My Device" + "SyncJobItemStatusQueued": "Mis en file d'attente", + "SyncJobItemStatusConverting": "Conversion en cours", + "SyncJobItemStatusTransferring": "Transfert en cours", + "SyncJobItemStatusSynced": "T\u00e9l\u00e9charg\u00e9", + "SyncJobItemStatusFailed": "\u00c9chou\u00e9", + "SyncJobItemStatusRemovedFromDevice": "Supprim\u00e9 de l'appareil", + "SyncJobItemStatusCancelled": "Annul\u00e9", + "Retry": "R\u00e9essayer", + "HeaderMyDevice": "Mon appareil", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 39f537e9a1..33ebdaedc5 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 11b5d1986e..b90517b94d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/he.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/he.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 dc4518e804..d0adfe4513 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 393e0246b8..294f1ddff9 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json @@ -240,7 +240,7 @@ "PackageInstallCompleted": "{0} telep\u00edt\u00e9se befejezve.", "PackageInstallFailed": "{0} telep\u00edt\u00e9se nem siker\u00fclt.", "PackageInstallCancelled": "{0} telep\u00edt\u00e9se megszak\u00edtva.", - "SeriesYearToPresent": "{0}-Napjainkig", + "SeriesYearToPresent": "{0} - Napjainkig", "ValueOneItem": "1 item", "ValueOneSong": "1 song", "ValueSongCount": "{0} songs", @@ -263,11 +263,11 @@ "SearchResults": "Search Results", "SyncToOtherDevice": "Sync to other device", "MakeAvailableOffline": "Make available offline", - "ServerNameIsRestarting": "Emby Server - {0} is restarting.", + "ServerNameIsRestarting": "Emby Server - {0} \u00fajraindul.", "ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.", "HeaderDeleteItems": "Delete Items", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "PleaseRestartServerName": "Please restart Emby Server - {0}.", + "PleaseRestartServerName": "K\u00e9rlek ind\u00edtsd \u00fajra az Emby Server-t - {0}.", "SyncJobCreated": "Sync job created.", "LabelSyncTo": "Sync to:", "LabelSyncJobName": "Sync job name:", @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 b686830aee..fecbf3b246 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/id.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/id.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 177e3f5260..7426c4e04b 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/it.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/it.json @@ -6,7 +6,7 @@ "Share": "Condividi", "Add": "Aggiungi", "ServerUpdateNeeded": "Questo server Emby deve essere aggiornato. Per scaricare l'ultima versione vai su {0}", - "LiveTvGuideRequiresUnlock": "La Guida TV \u00e8 attualmente limitata a {0} canali. Premi il tasto di sblocco per imparare come goderti una piena esperienza.", + "LiveTvGuideRequiresUnlock": "La Guida TV \u00e8 attualmente limitata a {0} canali. Premi il tasto di sblocco per scoprire come ottenere la funzionalit\u00e0 completa.", "AttributeNew": "Nuovo", "Premiere": "Prima visione", "Live": "In diretta", @@ -23,12 +23,12 @@ "OptionThursdayShort": "Gio", "OptionFridayShort": "Ven", "OptionSaturdayShort": "Sab", - "HeaderSelectDate": "Seleziona la data", + "HeaderSelectDate": "Scegli una data", "ButtonOk": "Ok", "ButtonCancel": "Annulla", "ButtonGotIt": "Ho capito", "ButtonRestart": "Riavvia", - "RecordingCancelled": "Registrazione eliminata.", + "RecordingCancelled": "Registrazione annullata.", "SeriesCancelled": "Serie TV annullate.", "RecordingScheduled": "Registrazione pianificata.", "SeriesRecordingScheduled": "Registrazione serie TV pianificata.", @@ -45,13 +45,13 @@ "HeaderCinemaMode": "Modalit\u00e0 Cinema", "HeaderCloudSync": "Sinc. nel Cloud", "HeaderOfflineDownloads": "Media Offline", - "HeaderOfflineDownloadsDescription": "Scarica facilmente i media sui tuoi dispositivi per l'uso offline.", + "HeaderOfflineDownloadsDescription": "Scarica facilmente i media sui tuoi dispositivi per vederli offline.", "CloudSyncFeatureDescription": "Sincronizza i tuoi media nel cloud per un facile backup, archiviazione e conversione.", "CoverArtFeatureDescription": "Copertine crea delle copertine divertenti ed altri effetti per aiutarti a personalizzare le immagini dei tuoi media.", "CoverArt": "Copertine", - "ButtonCancelSyncJob": "Cancel sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "CinemaModeFeatureDescription": "Modalit\u00e0 Cinema ti d\u00e0 la vera esperienza del cinema con trailer ed intro personalizzate prima del contenuto principale.", + "ButtonCancelSyncJob": "Annulla sinc.", + "CancelSyncJobConfirmation": "La cancellazione dell'attivit\u00e0 di sincronizzazione causer\u00e0, alla prossima sincronizzazione, la rimozione di tutti i media sincronizzati dal dispositivo. Sei sicuro di voler procedere?", + "CinemaModeFeatureDescription": "Modalit\u00e0 Cinema ti fa provare la vera esperienza del cinema con trailer ed intro personalizzate prima del contenuto principale.", "HeaderFreeApps": "App Gratuite Emby", "FreeAppsFeatureDescription": "Godi dell'accesso gratuito alle App Emby dai tuoi dispositivi.", "HeaderBecomeProjectSupporter": "Ottieni Emby Premiere", @@ -67,7 +67,7 @@ "Advanced": "Avanzate", "Delete": "Elimina", "HeaderDeleteItem": "Elimina Elemento", - "ConfirmDeleteItem": "L'eliminazione di questo articolo lo canceller\u00e0 sia dal disco che dalla libreria multimediale. Sei sicuro di voler continuare?", + "ConfirmDeleteItem": "L'eliminazione di questo elemento lo canceller\u00e0 sia dal disco che dalla libreria multimediale. Sei sicuro di voler continuare?", "Refresh": "Aggiorna", "RefreshQueued": "Aggiornamento programmato.", "AddToCollection": "Aggiungi ad una collezione", @@ -76,7 +76,7 @@ "LabelCollection": "Collezione:", "Help": "Aiuto", "NewCollectionHelp": "Le collezioni ti permettono di creare raccolte personalizzate di film ed altri contenuti della libreria.", - "SearchForCollectionInternetMetadata": "Cerca su internet le immagini e i metadati", + "SearchForCollectionInternetMetadata": "Cerca su internet le immagini ed i metadati", "LabelName": "Nome:", "NewCollectionNameExample": "Esempio: Collezione Star wars", "MessageItemsAdded": "Elementi aggiunti.", @@ -153,23 +153,23 @@ "LabelArtistsHelp": "Separa valori multipli usando ;", "LabelAlbumArtists": "Artisti album:", "LabelAlbum": "Album:", - "LabelCommunityRating": "Voto Comunit\u00e0:", - "LabelVoteCount": "Numero voti:", + "LabelCommunityRating": "Voto del pubblico:", + "LabelVoteCount": "Numero di voti:", "LabelMetascore": "Punteggio:", "LabelCriticRating": "Voto della critica:", - "LabelCriticRatingSummary": "Sintesi voto della Critica:", - "LabelAwardSummary": "Sintesi Premi:", + "LabelCriticRatingSummary": "Sintesi voto della critica:", + "LabelAwardSummary": "Sintesi premi:", "LabelWebsite": "Sito Web:", "LabelTagline": "Slogan:", "LabelOverview": "Trama:", "LabelShortOverview": "Trama breve:", - "LabelReleaseDate": "Data di rilascio:", + "LabelReleaseDate": "Data di uscita:", "LabelYear": "Anno:", "LabelPlaceOfBirth": "Luogo di nascita:", "LabelAirDays": "In onda da (gg):", "LabelAirTime": "In onda da:", "LabelRuntimeMinutes": "Durata (minuti):", - "LabelParentalRating": "Voto genitori:", + "LabelParentalRating": "Classificazione per genitori:", "LabelCustomRating": "Voto personalizzato:", "LabelBudget": "Budget", "LabelRevenue": "Incasso ($):", @@ -195,7 +195,7 @@ "Tags": "Tag", "HeaderMetadataSettings": "Impostazioni Metadati", "People": "Attori", - "LabelMetadataDownloadLanguage": "Lingua preferita per il download:", + "LabelMetadataDownloadLanguage": "Lingua preferita per lo scaricamento:", "LabelLockItemToPreventChanges": "Blocca questo elemento per impedire modifiche future", "MessageLeaveEmptyToInherit": "Lascia vuoto per ereditare le impostazioni dall'elemento principale, o il valore predefinito globale.", "LabelCountry": "Nazione:", @@ -211,7 +211,7 @@ "LabelDiscNumber": "Numero disco:", "LabelParentNumber": "Numero precursore:", "SortName": "Nome ordinamento", - "ReleaseDate": "Data di rilascio", + "ReleaseDate": "Data di uscita", "Continuing": "In corso", "Ended": "Finito", "HeaderEnabledFields": "Campi Abilitati", @@ -222,7 +222,7 @@ "Runtime": "Durata", "ProductionLocations": "Sedi di produzione", "BirthLocation": "Luogo di nascita", - "ParentalRating": "Voto genitori", + "ParentalRating": "Classificazione per genitori", "Name": "Nome", "Overview": "Trama", "LabelType": "Tipo:", @@ -231,17 +231,17 @@ "Actor": "Attore", "Composer": "Compositore", "Director": "Regista", - "GuestStar": "Personaggi famosi", + "GuestStar": "Personaggio famoso", "Producer": "Produttore", "Writer": "Scrittore", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", - "MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", + "MessageNoSyncJobsFound": "Nessuna attivit\u00e0 di sincronizzazione trovata. Le attivit\u00e0 di sincronizzazione vengono create quando usi il pulsanti Sincronizza sull'applicazione.", + "MessageNoDownloadsFound": "Nessuno scaricamento trovato. Rendi i tuoi media disponibili offline usando l'opzione Rendi Disponibile Offline sull'applicazione.", "InstallingPackage": "Installazione di {0}", "PackageInstallCompleted": "Installazione di {0} completa.", "PackageInstallFailed": "Installazione di {0} fallita.", "PackageInstallCancelled": "Installazione di {0} annullata.", "SeriesYearToPresent": "{0} - Oggi", - "ValueOneItem": "1 item", + "ValueOneItem": "1 elemento", "ValueOneSong": "1 brano", "ValueSongCount": "{0} brani", "ValueOneMovie": "1 film", @@ -257,11 +257,11 @@ "ValueOneMusicVideo": "1 video musicale", "ValueMusicVideoCount": "{0} video musicali", "ValueMinutes": "{0} min", - "HeaderIdentifyItemHelp": "Inserisci uno o pi\u00f9 criteri di ricerca. Rimuovi criteri per aumentare il numero di risultati.", + "HeaderIdentifyItemHelp": "Inserisci uno o pi\u00f9 criteri di ricerca. Rimuovi criteri per ottenere pi\u00f9 risultati.", "PleaseEnterNameOrId": "Per favore inserisci un nome o un id esterno.", "MessageItemSaved": "Elemento salvato.", "SearchResults": "Risultati della Ricerca", - "SyncToOtherDevice": "Invia a dispositivo", + "SyncToOtherDevice": "Invia ad un altro dispositivo", "MakeAvailableOffline": "Rendi disponibile offline", "ServerNameIsRestarting": "Emby Server - {0} si sta riavviando.", "ServerNameIsShuttingDown": "Emby Server - {0} si sta arrestando.", @@ -274,7 +274,7 @@ "LabelQuality": "Qualit\u00e0:", "LabelSyncNoTargetsHelp": "Al momento non hai applicazioni che supportino la sincronizzazione.", "DownloadScheduled": "Scaricamento pianificato", - "HeaderSyncRequiresSub": "Sync requires an active Emby Premiere subscription.", + "HeaderSyncRequiresSub": "La sincronizzazione richiede un abbonamento Emby Premiere.", "LearnMore": "saperne di pi\u00f9", "LabelProfile": "Profilo:", "LabelBitrateMbps": "Bitrate (Mbps):", @@ -283,14 +283,14 @@ "AutomaticallySyncNewContent": "Sincronizza automaticamente i nuovi contenuti", "AutomaticallySyncNewContentHelp": "I nuovi contenuti aggiunti verranno sincronizzati automaticamente al dispositivo.", "LabelItemLimit": "Limite elementi:", - "LabelItemLimitHelp": "Opzionale. Imposta un limite al numero di elementi che verranno sincronizzati.", + "LabelItemLimitHelp": "Facoltativo. Imposta un limite al numero di elementi che verranno sincronizzati.", "PleaseSelectDeviceToSyncTo": "Seleziona un dispositivo per sincronizzare.", "Screenshots": "Screenshot", "MoveRight": "Sposta a destra", "MoveLeft": "Sposta a sinistra", "ConfirmDeleteImage": "Elimina immagine?", "HeaderEditImages": "Modifica Immagini", - "Settings": "Configurazione", + "Settings": "Impostazioni", "ShowIndicatorsFor": "Mostra indicatori per:", "NewEpisodes": "Nuovi episodi", "HDPrograms": "Programmi HD", @@ -300,7 +300,7 @@ "DvrSubscriptionRequired": "Emby DVR richiede un abbonamento ad Emby Premiere.", "HeaderCancelRecording": "Annulla la Registrazione", "CancelRecording": "Annulla la registrazione", - "HeaderKeepRecording": "Tieni Registrazione", + "HeaderKeepRecording": "Mantieni la registrazione", "HeaderCancelSeries": "Annulla Serie TV", "HeaderKeepSeries": "Mantieni Serie TV", "HeaderLearnMore": "Saperne di pi\u00f9", @@ -344,7 +344,7 @@ "ThankYouForTryingEnjoyOneMinute": "Siamo lieti di offrirti un minuto di riproduzione. Grazie per aver provato Emby.", "HeaderTryPlayback": "Prova la riproduzione", "HowDidYouPay": "Come hai pagato?", - "IHaveEmbyPremiere": "Sono abbonato a Emby Premiere", + "IHaveEmbyPremiere": "Sono abbonato ad Emby Premiere", "IPurchasedThisApp": "Ho acquistato questa app", "ButtonRestorePreviousPurchase": "Ripristina Acquisto", "ButtonUnlockWithPurchase": "Sblocca con l'Acquisto", @@ -355,27 +355,29 @@ "PlaceFavoriteChannelsAtBeginning": "Mostra prima i canali preferiti", "HeaderUnlockFeature": "Sblocca Funzionalit\u00e0", "MessageDidYouKnowCinemaMode": "Sapevi che con Emby Premiere puoi migliorare la tua esperienza d'uso con funzionalit\u00e0 come la Modalit\u00e0 Cinema?", - "MessageDidYouKnowCinemaMode2": "Modalit\u00e0 Cinema ti d\u00e0 la vera esperienza del cinema con trailer ed intro personalizzate prima del contenuto principale.", + "MessageDidYouKnowCinemaMode2": "Modalit\u00e0 Cinema ti fa provare la vera esperienza del cinema con trailer ed intro personalizzate prima del contenuto principale.", "HeaderPlayMyMedia": "Riproduci i miei Media", "HeaderDiscoverEmbyPremiere": "Scopri Emby Premiere", - "Items": "Items", + "Items": "Elementi", "OneChannel": "Un canale", - "ConfirmRemoveDownload": "Remove download?", - "RemoveDownload": "Remove download", - "AddedOnValue": "Added {0}", - "RemovingFromDevice": "Removing from device", - "RemoveFromDevice": "Remove from device", - "KeepOnDevice": "Keep on device", - "CancelDownload": "Cancel download", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "SyncJobItemStatusSyncedMarkForRemoval": "Removing from device", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Downloaded", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "Retry": "Retry", - "HeaderMyDevice": "My Device" + "ConfirmRemoveDownload": "Rimuovi scaricamento?", + "RemoveDownload": "Rimuovi scaricamento", + "AddedOnValue": "Aggiunto {0}", + "RemovingFromDevice": "Rimuovendo dal dispositivo", + "RemoveFromDevice": "Rimuovi dal dispositivo", + "KeepOnDevice": "Mantieni sul dispositivo", + "CancelDownload": "Annulla scaricamento", + "SyncJobItemStatusReadyToTransfer": "Pronto per il trasferimento", + "SyncJobItemStatusSyncedMarkForRemoval": "Rimuovendo dal dispositivo", + "SyncJobItemStatusQueued": "In coda", + "SyncJobItemStatusConverting": "Convertendo", + "SyncJobItemStatusTransferring": "Trasferendo", + "SyncJobItemStatusSynced": "Scaricato", + "SyncJobItemStatusFailed": "Fallito", + "SyncJobItemStatusRemovedFromDevice": "Rimosso dal dispositivo", + "SyncJobItemStatusCancelled": "Annullato", + "Retry": "Riprova", + "HeaderMyDevice": "Il Mio Dispositivo", + "MediaQueued": "Media aggiunto in coda.", + "ContinuingInSecondsValue": "Continuing in {0} seconds." } \ 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 fef73fbf5d..c47d532dd2 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0493\u0430\u043d", "SyncJobItemStatusCancelled": "\u0411\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b", "Retry": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u0443", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "\u041c\u0435\u043d\u0456\u04a3 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043c", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 f775c349f6..faeb0ed395 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 70f254c8df..03207fd039 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 0f0ac3489e..d5d395902e 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 54337bea38..6685c9e592 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 dd92512e63..5963522dae 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 5c65d0c9b9..3347c43617 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removido do dispositivo", "SyncJobItemStatusCancelled": "Cancelado", "Retry": "Tentar Novamente", - "HeaderMyDevice": "Meu Dispositivo" + "HeaderMyDevice": "Meu Dispositivo", + "MediaQueued": "M\u00eddia enfileirada.", + "ContinuingInSecondsValue": "Continuing in {0} seconds." } \ 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 f3d64f24c2..0e6938ea08 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 985e97a8b0..ddd68e73bb 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 8692aa0b51..2471a1b61a 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "\u0418\u0437\u044a\u044f\u0442\u043e \u0438\u0437 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", "SyncJobItemStatusCancelled": "\u041e\u0442\u043c\u0435\u043d\u0435\u043d\u043e", "Retry": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "\u041c\u043e\u0451 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 70f254c8df..03207fd039 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 f22740e8ce..7c3df99167 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 589b453221..6412fb596d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 27f391adda..355935b3b3 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 7756f85833..ac4ea2c33d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 01f2e51eaa..38b57aa787 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 18a009cb4a..d5dd06ae1d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "\u5df2\u4ece\u8bbe\u5907\u79fb\u9664", "SyncJobItemStatusCancelled": "\u5df2\u53d6\u6d88", "Retry": "\u91cd\u8bd5", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 fc01fc4cf2..42814754a7 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing 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 dd8fca03e5..aeb013f687 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json @@ -377,5 +377,7 @@ "SyncJobItemStatusRemovedFromDevice": "Removed from device", "SyncJobItemStatusCancelled": "Cancelled", "Retry": "Retry", - "HeaderMyDevice": "My Device" + "HeaderMyDevice": "My Device", + "MediaQueued": "Media queued.", + "ContinuingInSecondsValue": "Continuing in {0} seconds." } \ No newline at end of file diff --git a/dashboard-ui/components/iap.js b/dashboard-ui/components/iap.js index 91271435fd..a700304b94 100644 --- a/dashboard-ui/components/iap.js +++ b/dashboard-ui/components/iap.js @@ -53,8 +53,8 @@ function getPeriodicMessageIntervalMs(feature) { - if (feature == 'playback') { - return 259200000; + if (feature === 'playback') { + return 172800000; } return 0;