diff --git a/src/bower_components/emby-apiclient/apiclient.js b/src/bower_components/emby-apiclient/apiclient.js index def6a26664..2aed3b9987 100644 --- a/src/bower_components/emby-apiclient/apiclient.js +++ b/src/bower_components/emby-apiclient/apiclient.js @@ -1,4 +1,4 @@ -define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeOnLan) { +define(["events", "appStorage"], function(events, appStorage) { "use strict"; function redetectBitrate(instance) { @@ -201,36 +201,6 @@ define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeO ratio && (options.minScale && (ratio = Math.max(options.minScale, ratio)), options.width && (options.width = Math.round(options.width * ratio)), options.height && (options.height = Math.round(options.height * ratio)), options.maxWidth && (options.maxWidth = Math.round(options.maxWidth * ratio)), options.maxHeight && (options.maxHeight = Math.round(options.maxHeight * ratio))), options.quality = options.quality || instance.getDefaultImageQuality(options.type), instance.normalizeImageOptions && instance.normalizeImageOptions(options) } - function getCachedWakeOnLanInfo(instance) { - var serverId = instance.serverId(), - json = appStorage.getItem("server-" + serverId + "-wakeonlaninfo"); - return json ? JSON.parse(json) : [] - } - - function refreshWakeOnLanInfoIfNeeded(instance) { - wakeOnLan.isSupported() && instance.accessToken() && !1 !== instance.enableAutomaticBitrateDetection && (console.log("refreshWakeOnLanInfoIfNeeded"), setTimeout(refreshWakeOnLanInfo.bind(instance), 1e4)) - } - - function refreshWakeOnLanInfo() { - var instance = this; - console.log("refreshWakeOnLanInfo"), instance.getWakeOnLanInfo().then(function(info) { - var serverId = instance.serverId(); - return appStorage.setItem("server-" + serverId + "-wakeonlaninfo", JSON.stringify(info)), info - }, function(err) { - return [] - }) - } - - function sendNextWakeOnLan(infos, index, resolve) { - if (index >= infos.length) return void resolve(); - var info = infos[index]; - console.log("sending wakeonlan to " + info.MacAddress), wakeOnLan.send(info).then(function(result) { - sendNextWakeOnLan(infos, index + 1, resolve) - }, function() { - sendNextWakeOnLan(infos, index + 1, resolve) - }) - } - function compareVersions(a, b) { a = a.split("."), b = b.split("."); for (var i = 0, length = Math.max(a.length, b.length); i < length; i++) { @@ -266,7 +236,7 @@ define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeO } return this._serverAddress }, ApiClient.prototype.onNetworkChange = function() { - this.lastDetectedBitrate = 0, this.lastDetectedBitrateTime = 0, setSavedEndpointInfo(this, null), redetectBitrate(this), refreshWakeOnLanInfoIfNeeded(this) + this.lastDetectedBitrate = 0, this.lastDetectedBitrateTime = 0, setSavedEndpointInfo(this, null), redetectBitrate(this) }, ApiClient.prototype.getUrl = function(name, params, serverAddress) { if (!name) throw new Error("Url name cannot be empty"); var url = serverAddress || this._serverAddress; @@ -301,7 +271,7 @@ define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeO } return this.fetchWithFailover(request, !0) }, ApiClient.prototype.setAuthenticationInfo = function(accessKey, userId) { - this._currentUser = null, this._serverInfo.AccessToken = accessKey, this._serverInfo.UserId = userId, redetectBitrate(this), refreshWakeOnLanInfoIfNeeded(this) + this._currentUser = null, this._serverInfo.AccessToken = accessKey, this._serverInfo.UserId = userId, redetectBitrate(this) }, ApiClient.prototype.serverInfo = function(info) { return info && (this._serverInfo = info), this._serverInfo }, ApiClient.prototype.getCurrentUserId = function() { @@ -360,7 +330,7 @@ define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeO contentType: "application/json" }).then(function(result) { var afterOnAuthenticated = function() { - redetectBitrate(instance), refreshWakeOnLanInfoIfNeeded(instance), resolve(result) + redetectBitrate(instance), resolve(result) }; instance.onAuthenticated ? instance.onAuthenticated(instance, result).then(afterOnAuthenticated) : afterOnAuthenticated() }, reject) @@ -1579,19 +1549,10 @@ define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeO return this.getJSON(this.getUrl("System/Endpoint")).then(function(endPointInfo) { return setSavedEndpointInfo(instance, endPointInfo), endPointInfo }) - }, ApiClient.prototype.getWakeOnLanInfo = function() { - return this.getJSON(this.getUrl("System/WakeOnLanInfo")) }, ApiClient.prototype.getLatestItems = function(options) { return options = options || {}, this.getJSON(this.getUrl("Users/" + this.getCurrentUserId() + "/Items/Latest", options)) }, ApiClient.prototype.getFilters = function(options) { return this.getJSON(this.getUrl("Items/Filters2", options)) - }, ApiClient.prototype.supportsWakeOnLan = function() { - return !!wakeOnLan.isSupported() && getCachedWakeOnLanInfo(this).length > 0 - }, ApiClient.prototype.wakeOnLan = function() { - var infos = getCachedWakeOnLanInfo(this); - return new Promise(function(resolve, reject) { - sendNextWakeOnLan(infos, 0, resolve) - }) }, ApiClient.prototype.setSystemInfo = function(info) { this._serverVersion = info.Version }, ApiClient.prototype.serverVersion = function() { diff --git a/src/bower_components/emby-apiclient/credentials.js b/src/bower_components/emby-apiclient/credentials.js index 51a9cb55c6..a200b60124 100644 --- a/src/bower_components/emby-apiclient/credentials.js +++ b/src/bower_components/emby-apiclient/credentials.js @@ -24,6 +24,6 @@ define(["events", "appStorage"], function(events, appStorage) { var existing = list.filter(function(s) { return s.Id === server.Id })[0]; - return existing ? (existing.DateLastAccessed = Math.max(existing.DateLastAccessed || 0, server.DateLastAccessed || 0), existing.UserLinkType = server.UserLinkType, server.AccessToken && (existing.AccessToken = server.AccessToken, existing.UserId = server.UserId), server.ExchangeToken && (existing.ExchangeToken = server.ExchangeToken), server.RemoteAddress && (existing.RemoteAddress = server.RemoteAddress), server.ManualAddress && (existing.ManualAddress = server.ManualAddress), server.LocalAddress && (existing.LocalAddress = server.LocalAddress), server.Name && (existing.Name = server.Name), server.WakeOnLanInfos && server.WakeOnLanInfos.length && (existing.WakeOnLanInfos = server.WakeOnLanInfos), null != server.LastConnectionMode && (existing.LastConnectionMode = server.LastConnectionMode), server.ConnectServerId && (existing.ConnectServerId = server.ConnectServerId), existing) : (list.push(server), server) + return existing ? (existing.DateLastAccessed = Math.max(existing.DateLastAccessed || 0, server.DateLastAccessed || 0), existing.UserLinkType = server.UserLinkType, server.AccessToken && (existing.AccessToken = server.AccessToken, existing.UserId = server.UserId), server.ExchangeToken && (existing.ExchangeToken = server.ExchangeToken), server.RemoteAddress && (existing.RemoteAddress = server.RemoteAddress), server.ManualAddress && (existing.ManualAddress = server.ManualAddress), server.LocalAddress && (existing.LocalAddress = server.LocalAddress), server.Name && (existing.Name = server.Name), null != server.LastConnectionMode && (existing.LastConnectionMode = server.LastConnectionMode), server.ConnectServerId && (existing.ConnectServerId = server.ConnectServerId), existing) : (list.push(server), server) }, Credentials }); \ No newline at end of file diff --git a/src/bower_components/emby-webcomponents/homesections/homesections.js b/src/bower_components/emby-webcomponents/homesections/homesections.js index 65c7b2d934..a92fa975ed 100644 --- a/src/bower_components/emby-webcomponents/homesections/homesections.js +++ b/src/bower_components/emby-webcomponents/homesections/homesections.js @@ -145,10 +145,10 @@ loadRecentlyAdded(elem, apiClient, user, userViews); } else if (section === 'librarytiles' || section === 'smalllibrarytiles' || section === 'smalllibrarytiles-automobile' || section === 'librarytiles-automobile') { - return loadLibraryTiles(elem, apiClient, user, userSettings, 'smallBackdrop', userViews, allSections); + loadLibraryTiles(elem, apiClient, user, userSettings, 'smallBackdrop', userViews, allSections); } else if (section === 'librarybuttons') { - return loadlibraryButtons(elem, apiClient, user, userSettings, userViews, allSections); + loadlibraryButtons(elem, apiClient, user, userSettings, userViews, allSections); } else if (section === 'resume') { loadResumeVideo(elem, apiClient, userId); @@ -273,35 +273,12 @@ } function loadlibraryButtons(elem, apiClient, user, userSettings, userViews) { + elem.classList.remove('verticalSection'); + var html = getLibraryButtonsHtml(userViews); - return Promise.all([getAppInfo(apiClient), getDownloadsSectionHtml(apiClient, user, userSettings)]).then(function (responses) { - - var infoHtml = responses[0]; - var downloadsHtml = responses[1]; - - elem.classList.remove('verticalSection'); - - var html = getLibraryButtonsHtml(userViews); - - elem.innerHTML = html + downloadsHtml + infoHtml; - - bindHomeScreenSettingsIcon(elem, apiClient, user.Id, userSettings); - - if (infoHtml) { - bindAppInfoEvents(elem); - } - imageLoader.lazyChildren(elem); - }); - } - - function bindAppInfoEvents(elem) { - - elem.querySelector('.appInfoSection').addEventListener('click', function (e) { - - if (dom.parentWithClass(e.target, 'card')) { - registrationServices.showPremiereInfo(); - } - }); + elem.innerHTML = html; + bindHomeScreenSettingsIcon(elem, apiClient, user.Id, userSettings); + imageLoader.lazyChildren(elem); } /** @@ -312,106 +289,6 @@ return Math.floor(Math.random() * (max - min + 1)) + min; } - function getAppInfo(apiClient) { - - var frequency = 172800000; - - var cacheKey = 'lastappinfopresent5'; - var lastDatePresented = parseInt(appSettings.get(cacheKey) || '0'); - - // Don't show the first time, right after installation - if (!lastDatePresented) { - appSettings.set(cacheKey, new Date().getTime()); - return Promise.resolve(''); - } - - if ((new Date().getTime() - lastDatePresented) < frequency) { - return Promise.resolve(''); - } - - return registrationServices.validateFeature('dvr', { - - showDialog: false, - viewOnly: true - - }).then(function () { - - appSettings.set(cacheKey, new Date().getTime()); - return ''; - - }, function () { - - appSettings.set(cacheKey, new Date().getTime()); - - var infos = [getPremiereInfo]; - - if (appHost.supports('otherapppromotions')) { - infos.push(getTheaterInfo); - } - - return infos[getRandomInt(0, infos.length - 1)](); - }); - } - - function getCard(img, shape) { - - shape = shape || 'backdropCard'; - var html = '
'; - - html += '
'; - - html += '
'; - - html += '
'; - - html += '
'; - - return html; - } - - function getTheaterInfo() { - - var html = ''; - html += '
'; - html += '
'; - html += '

Discover Jellyfin Theater

'; - html += ''; - html += '
'; - - var nameText = 'Jellyfin Theater'; - html += '
'; - html += '

A beautiful app for your TV and large screen tablet. ' + nameText + ' runs on Windows, Xbox One, Raspberry Pi, Samsung Smart TVs, Sony PS4, Web Browsers, and more.

'; - html += '
'; - html += getCard('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/apps/theater1.png'); - html += getCard('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/apps/theater2.png'); - html += getCard('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/apps/theater3.png'); - html += '
'; - html += '
'; - html += '
'; - return html; - } - - function getPremiereInfo() { - - var html = ''; - html += '
'; - html += '
'; - html += '

Discover Emby Premiere

'; - html += ''; - html += '
'; - - html += '
'; - html += '

Enjoy Emby DVR, get free access to Emby apps, and more.

'; - html += '
'; - html += getCard('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/apps/theater1.png'); - html += getCard('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/apps/theater2.png'); - html += getCard('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/apps/theater3.png'); - html += '
'; - html += '
'; - html += '
'; - return html; - } - function getFetchLatestItemsFn(serverId, parentId, collectionType) { return function () { @@ -588,72 +465,6 @@ }); } - function getDownloadsSectionHtml(apiClient, user, userSettings) { - - if (!appHost.supports('sync') || !user.Policy.EnableContentDownloading) { - return Promise.resolve(''); - } - - var promise = apiClient.getLatestOfflineItems ? apiClient.getLatestOfflineItems({ - - Limit: 20, - Filters: 'IsNotFolder' - - }) : Promise.resolve([]); - - return promise.then(function (items) { - - var html = ''; - - html += '
'; - - html += '
'; - - if (!layoutManager.tv) { - - html += ''; - html += '

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

'; - html += ''; - html += '
'; - - html += ''; - - } else { - html += '

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

'; - } - html += '
'; - - html += '
'; - - var cardLayout = false; - - html += cardBuilder.getCardsHtml({ - items: items, - preferThumb: 'auto', - shape: 'autooverflow', - overlayText: false, - showTitle: true, - showParentTitle: true, - lazy: true, - showDetailsMenu: true, - overlayPlayButton: true, - context: 'home', - centerText: !cardLayout, - allowBottomPadding: false, - cardLayout: cardLayout, - showYear: true, - lines: 2 - }); - - html += '
'; - html += '
'; - - return html; - }); - } - function loadLibraryTiles(elem, apiClient, user, userSettings, shape, userViews, allSections) { elem.classList.remove('verticalSection'); @@ -699,21 +510,9 @@ html += '
'; } - return Promise.all([getAppInfo(apiClient), getDownloadsSectionHtml(apiClient, user, userSettings)]).then(function (responses) { - - var infoHtml = responses[0]; - var downloadsHtml = responses[1]; - - elem.innerHTML = html + downloadsHtml + infoHtml; - - bindHomeScreenSettingsIcon(elem, apiClient, user.Id, userSettings); - - if (infoHtml) { - bindAppInfoEvents(elem); - } - - imageLoader.lazyChildren(elem); - }); + elem.innerHTML = html; + bindHomeScreenSettingsIcon(elem, apiClient, user.Id, userSettings); + imageLoader.lazyChildren(elem); } function getContinueWatchingFetchFn(serverId) { diff --git a/src/bower_components/emby-webcomponents/router.js b/src/bower_components/emby-webcomponents/router.js index f342d2789e..133a326589 100644 --- a/src/bower_components/emby-webcomponents/router.js +++ b/src/bower_components/emby-webcomponents/router.js @@ -3,9 +3,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM var appRouter = { showLocalLogin: function (serverId, manualLogin) { - var pageName = manualLogin ? 'manuallogin' : 'login'; - show('/startup/' + pageName + '.html?serverid=' + serverId); }, showSelectServer: function () { @@ -45,65 +43,45 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM }; function beginConnectionWizard() { - backdrop.clear(); - loading.show(); - connectionManager.connect({ - enableAutoLogin: appSettings.enableAutoLogin() - }).then(function (result) { handleConnectionResult(result, loading); }); } function handleConnectionResult(result, loading) { - switch (result.State) { - case 'SignedIn': - { - loading.hide(); - skinManager.loadUserSkin(); - } + loading.hide(); + skinManager.loadUserSkin(); break; case 'ServerSignIn': - { - result.ApiClient.getPublicUsers().then(function (users) { - - if (users.length) { - appRouter.showLocalLogin(result.Servers[0].Id); - } else { - appRouter.showLocalLogin(result.Servers[0].Id, true); - } - }); - } + result.ApiClient.getPublicUsers().then(function (users) { + if (users.length) { + appRouter.showLocalLogin(result.Servers[0].Id); + } else { + appRouter.showLocalLogin(result.Servers[0].Id, true); + } + }); break; case 'ServerSelection': - { - appRouter.showSelectServer(); - } + appRouter.showSelectServer(); break; case 'ConnectSignIn': - { - appRouter.showWelcome(); - } + appRouter.showWelcome(); break; case 'ServerUpdateNeeded': - { - require(['alert'], function (alert) { - alert({ - - text: globalize.translate('sharedcomponents#ServerUpdateNeeded', 'https://github.com/jellyfin/jellyfin'), - html: globalize.translate('sharedcomponents#ServerUpdateNeeded', 'https://github.com/jellyfin/jellyfin') - - }).then(function () { - appRouter.showSelectServer(); - }); + require(['alert'], function (alert) { + alert({ + text: globalize.translate('sharedcomponents#ServerUpdateNeeded', 'https://github.com/jellyfin/jellyfin'), + html: globalize.translate('sharedcomponents#ServerUpdateNeeded', 'https://github.com/jellyfin/jellyfin') + }).then(function () { + appRouter.showSelectServer(); }); - } + }); break; default: break; @@ -111,9 +89,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM } function loadContentUrl(ctx, next, route, request) { - var url; - if (route.contentPath && typeof (route.contentPath) === 'function') { url = route.contentPath(ctx.querystring); } else { @@ -121,10 +97,8 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM } if (url.indexOf('://') === -1) { - // Put a slash at the beginning but make sure to avoid a double slash if (url.indexOf('/') !== 0) { - url = '/' + url; } @@ -136,26 +110,22 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM } require(['text!' + url], function (html) { - loadContent(ctx, route, html, request); }); } function handleRoute(ctx, next, route) { - authenticate(ctx, route, function () { initRoute(ctx, next, route); }); } function initRoute(ctx, next, route) { - var onInitComplete = function (controllerFactory) { sendRouteToViewManager(ctx, next, route, controllerFactory); }; require(route.dependencies || [], function () { - if (route.controller) { require([route.controller], onInitComplete); } else { @@ -173,14 +143,12 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM var currentViewLoadRequest; function sendRouteToViewManager(ctx, next, route, controllerFactory) { - if (isDummyBackToHome && route.type === 'home') { isDummyBackToHome = false; return; } cancelCurrentLoadRequest(); - var isBackNav = ctx.isBack; var currentRequest = { @@ -201,9 +169,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM var onNewViewNeeded = function () { if (typeof route.path === 'string') { - loadContentUrl(ctx, next, route, currentRequest); - } else { // ? TODO next(); @@ -226,7 +192,6 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM }; }).catch(function (result) { - if (!result || !result.cancelled) { onNewViewNeeded(); } @@ -236,7 +201,6 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM var msgTimeout; var forcedLogoutMsg; function onForcedLogoutMessageTimeout() { - var msg = forcedLogoutMsg; forcedLogoutMsg = null; @@ -248,7 +212,6 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM } function showForcedLogoutMessage(msg) { - forcedLogoutMsg = msg; if (msgTimeout) { clearTimeout(msgTimeout); @@ -277,14 +240,12 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM } function onBeforeExit(e) { - if (browser.web0s) { page.restorePreviousState(); } } function normalizeImageOptions(options) { - var scaleFactor = browser.tv ? 0.8 : 1; var setQuality; @@ -331,9 +292,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM } function getMaxBandwidth() { - if (navigator.connection) { - var max = navigator.connection.downlinkMax; if (max && max > 0 && max < Number.POSITIVE_INFINITY) { @@ -728,13 +687,6 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM } function getRouteUrl(item, options) { - - if (item === 'downloads') { - return 'offline/offline.html'; - } - if (item === 'managedownloads') { - return 'offline/managedownloads.html'; - } if (item === 'settings') { return 'settings/settings.html'; } diff --git a/src/bower_components/emby-webcomponents/strings/ar.json b/src/bower_components/emby-webcomponents/strings/ar.json index fcc1670523..b94a388c8b 100644 --- a/src/bower_components/emby-webcomponents/strings/ar.json +++ b/src/bower_components/emby-webcomponents/strings/ar.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "الغاء", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "الاربعاء", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/be-by.json b/src/bower_components/emby-webcomponents/strings/be-by.json index cf046fb941..d5709aae1d 100644 --- a/src/bower_components/emby-webcomponents/strings/be-by.json +++ b/src/bower_components/emby-webcomponents/strings/be-by.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Адмяніць", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Wednesday", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/bg-bg.json b/src/bower_components/emby-webcomponents/strings/bg-bg.json index db408e1018..2b658fee20 100644 --- a/src/bower_components/emby-webcomponents/strings/bg-bg.json +++ b/src/bower_components/emby-webcomponents/strings/bg-bg.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "Нови", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Книги", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Разглеждане", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Отмяна", "ButtonGotIt": "Добре", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Настройки на метаданните", "HeaderMusicQuality": "Качество на музиката", "HeaderMyDevice": "Моето устройство", - "HeaderMyDownloads": "Моите изтегляния", "HeaderMyMedia": "Моята медия", "HeaderMyMediaSmall": "Моята медия (малък)", "HeaderNewRecording": "Нов запис", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Качество на видеото", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Помощ", "Hide": "Скриване", @@ -674,9 +670,6 @@ "ViewAlbum": "Преглед на албума", "ViewArtist": "Преглед на изпълнителя", "VoiceInput": "Voice Input", - "WakeServer": "Събуждане", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Изгледано", "Wednesday": "Сряда", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/ca.json b/src/bower_components/emby-webcomponents/strings/ca.json index fe25dd0c36..72c307e109 100644 --- a/src/bower_components/emby-webcomponents/strings/ca.json +++ b/src/bower_components/emby-webcomponents/strings/ca.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Tants com sigui possible", "Ascending": "Ascending", "AspectRatio": "Relació d'aspecte", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "Nou", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancel·la", "ButtonGotIt": "Entesos", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Preferències de Metadades", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "El meu dispositiu", - "HeaderMyDownloads": "Les meves descàrregues", "HeaderMyMedia": "Els meus mitjans", "HeaderMyMediaSmall": "Els meus mitjans (petit)", "HeaderNewRecording": "Nou Enregistrament", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Esperant Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "Has dit...", "Help": "Ajuda", "Hide": "Amaga", @@ -674,9 +670,6 @@ "ViewAlbum": "Veure àlbum", "ViewArtist": "Veure artista", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Vists", "Wednesday": "Dimecres", "WifiRequiredToDownload": "Es requereix una connexió Wifi per continuar descarregant.", diff --git a/src/bower_components/emby-webcomponents/strings/cs.json b/src/bower_components/emby-webcomponents/strings/cs.json index eb9291a360..eeab684de4 100644 --- a/src/bower_components/emby-webcomponents/strings/cs.json +++ b/src/bower_components/emby-webcomponents/strings/cs.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Tolikrát jak je možné", "Ascending": "Ascending", "AspectRatio": "Poměr stran", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "Nové", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Datový tok audia není podporován", @@ -53,7 +52,6 @@ "Books": "Knihy", "Box": "Pouzdro", "BoxRear": "Zadní část pouzdra", - "Browse": "Procházet", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Zrušit", "ButtonGotIt": "Mám to", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Nastavení metadat", "HeaderMusicQuality": "Kvalita hudby", "HeaderMyDevice": "Moje zařízení", - "HeaderMyDownloads": "Moje stahování", "HeaderMyMedia": "Moje média", "HeaderMyMediaSmall": "Moje média (malé)", "HeaderNewRecording": "Nový záznam", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Kvalita videa", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Čekání na Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "Zmínil ses...", "Help": "Nápověda", "Hide": "Skrýt", @@ -674,9 +670,6 @@ "ViewAlbum": "Zobrazit album", "ViewArtist": "Zobrazit úmělce", "VoiceInput": "Hlasový vstup", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Shlédnuto", "Wednesday": "Středa", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/da.json b/src/bower_components/emby-webcomponents/strings/da.json index 1f3081bce2..662c7b22ae 100644 --- a/src/bower_components/emby-webcomponents/strings/da.json +++ b/src/bower_components/emby-webcomponents/strings/da.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Så mange som muligt", "Ascending": "Ascending", "AspectRatio": "Billedformat", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "Ny", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Annuller", "ButtonGotIt": "Forstået", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Indstillinger for metadata", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "Min Enhed", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "Ny optagelse", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "Du sagde...", "Help": "Hjælp", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "Vis album", "ViewArtist": "Vis kunstner", "VoiceInput": "Taleinput", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Onsdag", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/de.json b/src/bower_components/emby-webcomponents/strings/de.json index 74577ea047..edffa12cd3 100644 --- a/src/bower_components/emby-webcomponents/strings/de.json +++ b/src/bower_components/emby-webcomponents/strings/de.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "So viele wie möglich", "Ascending": "Aufsteigend", "AspectRatio": "Seitenverhältnis", - "AttemptingWakeServer": "Versuche Server aufwecken. Bitte warten...", "AttributeNew": "Neu", "AudioBitDepthNotSupported": "Audiobittiefe nicht unterstützt", "AudioBitrateNotSupported": "Audio Bitrate nicht unterstützt", @@ -53,7 +52,6 @@ "Books": "Bücher", "Box": "Box", "BoxRear": "Box (Rückseite)", - "Browse": "Blättern", "BurnSubtitlesHelp": "Legt fest, ob der Server die Untertitel basierend auf deren Format einbrennen soll während der Videokonvertierung. Die Vermeidung des Einbrennen von Untertiteln verbessert die Serverperformance. Wähle Auto, um Bildfomate (z.B. VOBSUB, PGS, SUB/IDX, etc.) sowie bestimmte ASS/SSA-Untertitel einbrennen zu lassen.", "ButtonCancel": "Abbrechen", "ButtonGotIt": "Verstanden", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadaten Einstellungen", "HeaderMusicQuality": "Musikqualität", "HeaderMyDevice": "Mein Gerät", - "HeaderMyDownloads": "Meine Downloads", "HeaderMyMedia": "Meine Medien", "HeaderMyMediaSmall": "Meine Medien (Klein)", "HeaderNewRecording": "Neue Aufnahme", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Videoqualität", "HeaderVideoType": "Videotyp:", "HeaderWaitingForWifi": "Warte auf WLAN", - "HeaderWakeServer": "Server aufwecken", "HeaderYouSaid": "Du sagtest...", "Help": "Hilfe", "Hide": "Verstecke", @@ -674,9 +670,6 @@ "ViewAlbum": "Zeige Album", "ViewArtist": "Zeige Darsteller", "VoiceInput": "Spracheingabe", - "WakeServer": "Server aufwecken", - "WakeServerError": "Wake On LAN Pakete wurden an deinen Server geschickt, aber wir konnten deinen Jellyfin Server nicht erreichen. Deine Maschine braucht vielleicht etwas länger um aufzuwachen oder Jellyfin Server wird zur Zeit nicht ausgeführt.", - "WakeServerSuccess": "Erfolgreich!", "Watched": "Gesehen", "Wednesday": "Mittwoch", "WifiRequiredToDownload": "Um den Download fortzusetzen wird eine WLAN-Verbindung benötigt.", diff --git a/src/bower_components/emby-webcomponents/strings/el.json b/src/bower_components/emby-webcomponents/strings/el.json index d27a8e89cb..3b93d56e74 100644 --- a/src/bower_components/emby-webcomponents/strings/el.json +++ b/src/bower_components/emby-webcomponents/strings/el.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Οσο το δυνατον περισσοτερα", "Ascending": "Αύξουσα", "AspectRatio": "Αρχικός λόγος διαστάσεων:", - "AttemptingWakeServer": "Ενεργοποίηση server σε εξέλιξη. Παρακαλώ περιμένετε...", "AttributeNew": "Νέο", "AudioBitDepthNotSupported": "Το βάθος bitrate ήχου δεν υποστηρίζεται", "AudioBitrateNotSupported": "Το bitrate ήχου δεν υποστηρίζεται", @@ -53,7 +52,6 @@ "Books": "Βιβλία", "Box": "Κουτί", "BoxRear": "Box (rear)", - "Browse": "Αναζητήστε", "BurnSubtitlesHelp": "Καθορίζει αν ο διακομιστής πρέπει να εγγράψει στους υπότιτλους κατά τη μετατροπή βίντεο ανάλογα με τη μορφή των υπότιτλων. Η αποφυγή της εγγραφής στους υπότιτλους θα βελτιώσει την απόδοση του διακομιστή. Επιλέξτε Αυτόματα για να εγγράψετε μορφές βασισμένες σε εικόνες (π.χ. VOBSUB, PGS, SUB / IDX κ.λπ.) καθώς και ορισμένους υπότιτλους ASS / SSA", "ButtonCancel": "Ακύρωση ", "ButtonGotIt": "Το κατάλαβα", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Ρυθμίσεις μεταδεδομένων", "HeaderMusicQuality": "Ποιότητα Μουσικής", "HeaderMyDevice": "Η Συσκευή μου", - "HeaderMyDownloads": "Οι Λήψεις μου", "HeaderMyMedia": "Τα Πολυμέσα μου", "HeaderMyMediaSmall": "Τα Πολυμέσα μου (μικρά)", "HeaderNewRecording": "Νέα Εγγραφή", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Ποιότητα βίντεο", "HeaderVideoType": "Τύπος Βίντεο", "HeaderWaitingForWifi": "Αναμονή για Wifi", - "HeaderWakeServer": "Ενεργοποίηση Server", "HeaderYouSaid": "Είπατε...", "Help": "Βοήθεια", "Hide": "Κρύψε", @@ -674,9 +670,6 @@ "ViewAlbum": "Προβολή άλμπουμ", "ViewArtist": "Εμφάνιση Καλλιτέχνη", "VoiceInput": "Είσοδος Ήχου", - "WakeServer": "Ενεργοποίηση server", - "WakeServerError": "Τα πακέτα Wake On LAN στάλθηκαν στον server σας, αλλά δεν είναι δυνατή η σύνδεση με τον Jellyfin Server. Το μηχάνημά σας μπορεί να χρειαστεί λίγο περισσότερο χρόνο για να ενεργοποιηθεί, ή ο Jellyfin Server ενδέχεται να μην εκτελείται ενεργά στο μηχάνημα.", - "WakeServerSuccess": "Επιτυχία!", "Watched": "Έχει γίνει παρακολούθηση", "Wednesday": "Τετάρτη", "WifiRequiredToDownload": "Απαιτείται σύνδεση Wi-Fi για να συνεχίσετε τη λήψη.", diff --git a/src/bower_components/emby-webcomponents/strings/en-gb.json b/src/bower_components/emby-webcomponents/strings/en-gb.json index 7a1b075395..f585a15140 100644 --- a/src/bower_components/emby-webcomponents/strings/en-gb.json +++ b/src/bower_components/emby-webcomponents/strings/en-gb.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancel", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wi-Fi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Wednesday", "WifiRequiredToDownload": "A Wi-Fi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/en-us.json b/src/bower_components/emby-webcomponents/strings/en-us.json index ec81e54290..7c149a3369 100644 --- a/src/bower_components/emby-webcomponents/strings/en-us.json +++ b/src/bower_components/emby-webcomponents/strings/en-us.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancel", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Wednesday", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/es-ar.json b/src/bower_components/emby-webcomponents/strings/es-ar.json index 0711679784..fe516e3753 100644 --- a/src/bower_components/emby-webcomponents/strings/es-ar.json +++ b/src/bower_components/emby-webcomponents/strings/es-ar.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancel", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Wednesday", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/es-mx.json b/src/bower_components/emby-webcomponents/strings/es-mx.json index 3c35481fc1..ac8c9d973a 100644 --- a/src/bower_components/emby-webcomponents/strings/es-mx.json +++ b/src/bower_components/emby-webcomponents/strings/es-mx.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Tantos como sea posible", "Ascending": "Ascendente", "AspectRatio": "Relación de aspecto", - "AttemptingWakeServer": "Intentando despertar el servidor. Por favor espere...", "AttributeNew": "Nuevo", "AudioBitDepthNotSupported": "Profundidad de bits de Audio no soportado", "AudioBitrateNotSupported": "Tasa de bits de audio no soportado", @@ -53,7 +52,6 @@ "Books": "Libros", "Box": "Caja", "BoxRear": "Reverso de caja", - "Browse": "Navegar", "BurnSubtitlesHelp": "Determina si el servidor debería quemar los subtitulos al convertir el video dependiendo en el formato de los subtitulos. Evitar los subtitulos quemados mejorara el rendimiento del servidor. Elija \"Auto\" para quemar los formatos basados en imágenes (por ejemplo VOBSUB, PGS, SUB/IDX, etc.) así como ciertos subtitulos ASS/SSA", "ButtonCancel": "Cancelar", "ButtonGotIt": "Hecho", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Configuración de metadatos", "HeaderMusicQuality": "Calidad de Musica", "HeaderMyDevice": "Mi Dispositivo", - "HeaderMyDownloads": "Mis Descargas", "HeaderMyMedia": "Mis Medios", "HeaderMyMediaSmall": "Mis medios (pequeño)", "HeaderNewRecording": "Nueva Grabación", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Calidad de Video", "HeaderVideoType": "Tipo de Video", "HeaderWaitingForWifi": "Esperando Wifi", - "HeaderWakeServer": "Despertar Servidor", "HeaderYouSaid": "Ha Dicho...", "Help": "Ayuda", "Hide": "Ocultar", @@ -674,9 +670,6 @@ "ViewAlbum": "Ver album", "ViewArtist": "Ver artista", "VoiceInput": "Entrada de Voz", - "WakeServer": "Despertar servidor", - "WakeServerError": "Se enviaron los paquetes Wake On LAN (Despertar por red) a su computadora servidor, pero no ha sido posible contactar a su Servidor Jellyfin. Su computadora quizás necesite un poco mas de tiempo para despertar, o tal vez la aplicación de Servidor Jellyfin no se esta ejecutando en la computadora.", - "WakeServerSuccess": "¡Éxito!", "Watched": "Visto", "Wednesday": "Miércoles", "WifiRequiredToDownload": "Se necesita de una conexión Wifi para continuar descargando.", diff --git a/src/bower_components/emby-webcomponents/strings/es.json b/src/bower_components/emby-webcomponents/strings/es.json index 31c35bf32d..a4ba4f2070 100644 --- a/src/bower_components/emby-webcomponents/strings/es.json +++ b/src/bower_components/emby-webcomponents/strings/es.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Tantos como sea posible", "Ascending": "Ascending", "AspectRatio": "Relación de aspecto", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "Nuevo", "AudioBitDepthNotSupported": "Profundidad de bits de audio no soportada", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Libros", "Box": "Caja", "BoxRear": "Caja (trasera)", - "Browse": "Navegar", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancelar", "ButtonGotIt": "Lo tengo", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Ajustes de metadatos", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "Mi dispositivo", - "HeaderMyDownloads": "Mis Descargas", "HeaderMyMedia": "Mis Contenidos", "HeaderMyMediaSmall": "Mis Contenidos (pequeño)", "HeaderNewRecording": "Nueva grabación", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Calidad de Video", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Esperando a la red Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "Dijiste...", "Help": "Ayuda", "Hide": "Esconder", @@ -674,9 +670,6 @@ "ViewAlbum": "Ver album", "ViewArtist": "Ver artista", "VoiceInput": "Entrada de voz", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Visto", "Wednesday": "Miércoles", "WifiRequiredToDownload": "Una red Wifi es necesaria para continuar la descarga.", diff --git a/src/bower_components/emby-webcomponents/strings/fi.json b/src/bower_components/emby-webcomponents/strings/fi.json index c6329252ec..6157a4eb9c 100644 --- a/src/bower_components/emby-webcomponents/strings/fi.json +++ b/src/bower_components/emby-webcomponents/strings/fi.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Lopeta", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Wednesday", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/fr-ca.json b/src/bower_components/emby-webcomponents/strings/fr-ca.json index 4002a0c0f9..6d162a82fb 100644 --- a/src/bower_components/emby-webcomponents/strings/fr-ca.json +++ b/src/bower_components/emby-webcomponents/strings/fr-ca.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "Nouveau", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Annuler", "ButtonGotIt": "J'ai compris", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "Mes Médias", "HeaderMyMediaSmall": "Mes médias (petit)", "HeaderNewRecording": "Nouvel enregistrement", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Aide", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Mercredi", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/fr.json b/src/bower_components/emby-webcomponents/strings/fr.json index 15aa3315a2..b21772d688 100644 --- a/src/bower_components/emby-webcomponents/strings/fr.json +++ b/src/bower_components/emby-webcomponents/strings/fr.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Autant que possible", "Ascending": "Croissant", "AspectRatio": "Ratio d'aspect original", - "AttemptingWakeServer": "Essai de réveil du serveur. Veuillez patienter...", "AttributeNew": "Nouveau", "AudioBitDepthNotSupported": "Profondeur des échantillons de l'audio non prise en charge", "AudioBitrateNotSupported": "Débit audio non pris en charge", @@ -53,7 +52,6 @@ "Books": "Livres", "Box": "Boîtier", "BoxRear": "Dos de boîtier", - "Browse": "Parcourir", "BurnSubtitlesHelp": "Détermine si le serveur doit graver les sous-titres lors de la conversion vidéo en fonction du format des sous-titres. Éviter la gravure des sous-titres améliorera les performances du serveur. Sélectionnez Auto pour graver les formats basés sur l'image (par exemple, VOBSUB, PGS, SUB/IDX etc) ainsi que certains sous-titres ASS/SSA", "ButtonCancel": "Annuler", "ButtonGotIt": "Compris", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Paramètres des métadonnées", "HeaderMusicQuality": "Qualité de la musique :", "HeaderMyDevice": "Cet appareil", - "HeaderMyDownloads": "Mes téléchargements", "HeaderMyMedia": "Mes Médias", "HeaderMyMediaSmall": "Mes médias (Petit)", "HeaderNewRecording": "Nouvel enregistrement", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Qualité vidéo", "HeaderVideoType": "Type de vidéo", "HeaderWaitingForWifi": "En attente du Wi-Fi", - "HeaderWakeServer": "Réveiller le serveur", "HeaderYouSaid": "Vous avez dit...", "Help": "Aide", "Hide": "Cacher", @@ -674,9 +670,6 @@ "ViewAlbum": "Voir l'album", "ViewArtist": "Voir l'artiste", "VoiceInput": "Entrée vocale", - "WakeServer": "Réveiller le serveur", - "WakeServerError": "Des paquets Wake-On-LAN on été envoyé à votre serveur, mais nous ne pouvons pas nous connecter à votre serveur Jellyfin. Votre machine a peut-être besoin de plus de temps pour se réveiller, ou le serveur Jellyfin n'est peut-être pas lancé sur la machine.", - "WakeServerSuccess": "Réussi !", "Watched": "Lu", "Wednesday": "Mercredi", "WifiRequiredToDownload": "Une connexion Wi-Fi est nécessaire pour continuer le téléchargement.", diff --git a/src/bower_components/emby-webcomponents/strings/gsw.json b/src/bower_components/emby-webcomponents/strings/gsw.json index d883b20325..f008ba6170 100644 --- a/src/bower_components/emby-webcomponents/strings/gsw.json +++ b/src/bower_components/emby-webcomponents/strings/gsw.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Abbreche", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Mittwoch", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/he.json b/src/bower_components/emby-webcomponents/strings/he.json index cc9687d000..c6384ee020 100644 --- a/src/bower_components/emby-webcomponents/strings/he.json +++ b/src/bower_components/emby-webcomponents/strings/he.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "כמה שיותר", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "חדש", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "בטל", "ButtonGotIt": "הבנתי", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "הגדרות מטא נתונים", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "הקלטה חדשה", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "אתה אמרת...", "Help": "עזרה", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "צפה באלבום", "ViewArtist": "צפה באמן", "VoiceInput": "קלט קולי", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "רביעי", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/hr.json b/src/bower_components/emby-webcomponents/strings/hr.json index d937a114c8..f6a57f26a6 100644 --- a/src/bower_components/emby-webcomponents/strings/hr.json +++ b/src/bower_components/emby-webcomponents/strings/hr.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Što više je moguće", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "Novo", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Odustani", "ButtonGotIt": "Shvaćam", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Postavke meta-podataka", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "Nova snimka", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "Rekao si...", "Help": "Pomoć", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "Pogledaj album", "ViewArtist": "Pogledaj umjetnika", "VoiceInput": "Ulazni glas", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Srijeda", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/hu.json b/src/bower_components/emby-webcomponents/strings/hu.json index a8155814b2..4fd974ee79 100644 --- a/src/bower_components/emby-webcomponents/strings/hu.json +++ b/src/bower_components/emby-webcomponents/strings/hu.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Növekvő", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "A kiszolgáló felébresztése folyamatban. Kérlek várj...", "AttributeNew": "Új", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Könyvek", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Mégsem", "ButtonGotIt": "Értettem", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metaadat Beállítások", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "Jelenlegi eszköz", - "HeaderMyDownloads": "Letöltések", "HeaderMyMedia": "Médiatáram", "HeaderMyMediaSmall": "Médiatáram (kicsi)", "HeaderNewRecording": "Új Felvétel", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Videó típusa:", "HeaderWaitingForWifi": "Wifi-re vár", - "HeaderWakeServer": "Kiszolgáló felébresztés", "HeaderYouSaid": "You Said...", "Help": "Segítség", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Kiszolgáló felébresztés", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Megtekintett", "Wednesday": "Szerda", "WifiRequiredToDownload": "Wifi kapcsolat szükséges a letöltés folytatásához.", diff --git a/src/bower_components/emby-webcomponents/strings/id.json b/src/bower_components/emby-webcomponents/strings/id.json index 63bb57ab91..82c783548b 100644 --- a/src/bower_components/emby-webcomponents/strings/id.json +++ b/src/bower_components/emby-webcomponents/strings/id.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancel", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Wednesday", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/it.json b/src/bower_components/emby-webcomponents/strings/it.json index 2e4e8823a3..53f7d43078 100644 --- a/src/bower_components/emby-webcomponents/strings/it.json +++ b/src/bower_components/emby-webcomponents/strings/it.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Tutto il possibile", "Ascending": "Crescente", "AspectRatio": "Rapporto d'aspetto", - "AttemptingWakeServer": "Tentando di svegliare il server. Per piacere aspetta...", "AttributeNew": "Nuovo", "AudioBitDepthNotSupported": "La profondità bit audio non è supportata", "AudioBitrateNotSupported": "Bitrate audio non supportato", @@ -53,7 +52,6 @@ "Books": "Libri", "Box": "Box", "BoxRear": "Box (retro)", - "Browse": "Esplora", "BurnSubtitlesHelp": "Determina se il server deve applicare i sottotitoli quando si converte i video in base al formato dei sottotitoli. Evitando di applicare i sottotitoli migliorerà le prestazioni del server. Selezionare Auto per applicare formati basati sull'immagine (ad esempio VOBSUB, PGS, SUB / IDX, ecc.) così come alcuni sottotitoli ASS / SSA", "ButtonCancel": "Annulla", "ButtonGotIt": "Ho capito", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Impostazioni Metadati", "HeaderMusicQuality": "Qualità Musica", "HeaderMyDevice": "Il Mio Dispositivo", - "HeaderMyDownloads": "I Miei Download", "HeaderMyMedia": "I miei media", "HeaderMyMediaSmall": "I miei media (piccolo)", "HeaderNewRecording": "Nuova Registrazione", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Qualità Video", "HeaderVideoType": "Tipo di Video", "HeaderWaitingForWifi": "In attesa di Wifi", - "HeaderWakeServer": "Sveglia il server", "HeaderYouSaid": "Hai detto...", "Help": "Aiuto", "Hide": "Nascondi", @@ -674,9 +670,6 @@ "ViewAlbum": "Visualizza album", "ViewArtist": "Visualizza artista", "VoiceInput": "Comandi Vocali", - "WakeServer": "Sveglia il server", - "WakeServerError": "I pacchetti Wake On LAN sono stati inviati al computer server, ma non siamo in grado di connettersi al server Jellyfin. Potrebbe essere necessario un po 'più di tempo per riattivare la macchina, oppure il server Jellyfin potrebbe non essere attivo sulla macchina.", - "WakeServerSuccess": "Successo!", "Watched": "Visto", "Wednesday": "Mercoledì", "WifiRequiredToDownload": "Una connessione Wifi è richiesta per continuare il download", diff --git a/src/bower_components/emby-webcomponents/strings/kk.json b/src/bower_components/emby-webcomponents/strings/kk.json index 2f45becfc9..59408ba814 100644 --- a/src/bower_components/emby-webcomponents/strings/kk.json +++ b/src/bower_components/emby-webcomponents/strings/kk.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Мүмкіндігінше көп", "Ascending": "Артуы бойынша", "AspectRatio": "Пішімдік арақатынасы", - "AttemptingWakeServer": "Серверді ояту әрекеті жасалуда. Күте тұрыңыз...", "AttributeNew": "Жаңа", "AudioBitDepthNotSupported": "Дыбыстың биттік тереңдігі үшін қолдау көрсетілмейді", "AudioBitrateNotSupported": "Дыбыс қарқыны үшін қолдау көрсетілмейді", @@ -53,7 +52,6 @@ "Books": "Кітаптар", "Box": "Қорап", "BoxRear": "Қорап арты", - "Browse": "Шарлау", "BurnSubtitlesHelp": "Субтитрлер пішіміне байланысты бейнені түрлендірген кезде сервер субтитрлерді жазыуын анықтайды. Субтитрлер жазуды қашқақтау сервердің өнімділігін жақсартады. Суретке негізделген пішімдерді (мысалы, VOBSUB, PGS, SUB/IDX ж.т.б.), сондай-ақ кейбір ASS/SSA субтитрлерін жазу үшін Автоматтыны таңдаңыз", "ButtonCancel": "Болдырмау", "ButtonGotIt": "Түсінікті", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Метадеректер параметрлері", "HeaderMusicQuality": "Музыка сапасы", "HeaderMyDevice": "Менің құрылғым", - "HeaderMyDownloads": "Менің жүктеулерім", "HeaderMyMedia": "Менің тасығышдеректерім", "HeaderMyMediaSmall": "Менің тасығышдеректерім (ықшам)", "HeaderNewRecording": "Жаңа жазба", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Бейне сапасы", "HeaderVideoType": "Бейне түрі", "HeaderWaitingForWifi": "WiFi үшін күтуде", - "HeaderWakeServer": "Серверді ояту", "HeaderYouSaid": "Сіз айтқаныңыз...", "Help": "Интернеттегі анықтамаға", "Hide": "Жасыру", @@ -674,9 +670,6 @@ "ViewAlbum": "Альбомды қарау", "ViewArtist": "Орындаушыны қарау", "VoiceInput": "Дауыстық енгізу", - "WakeServer": "Серверді ояту", - "WakeServerError": "Wake On LAN пакеттері сіздің серверіңізге жіберілді, бірақ сіздің Jellyfin Server үшін қосыла алмаймыз. Құрылғыңызды ояту үшін біраз уақыт қажет болуы мүмкін немесе Jellyfin Server құрылғыда белсенді жұмыс істемеуі мүмкін.", - "WakeServerSuccess": "Сәттілік!", "Watched": "Қаралған", "Wednesday": "сәрсенбі", "WifiRequiredToDownload": "Жүктеп алуды жалғастыру үшін WiFi қосылымы қажет.", diff --git a/src/bower_components/emby-webcomponents/strings/ko.json b/src/bower_components/emby-webcomponents/strings/ko.json index 030586a94f..92bfd3651f 100644 --- a/src/bower_components/emby-webcomponents/strings/ko.json +++ b/src/bower_components/emby-webcomponents/strings/ko.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "신규", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "취소", "ButtonGotIt": "그럴게요.", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "메타데이터 설정", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "내 미디어 (작음)", "HeaderNewRecording": "신규 녹화", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "도움말", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "앨범 보기", "ViewArtist": "아티스트 보기", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "시청함", "Wednesday": "수요일", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/lt-lt.json b/src/bower_components/emby-webcomponents/strings/lt-lt.json index 64c5fc8f43..1374d6fe7f 100644 --- a/src/bower_components/emby-webcomponents/strings/lt-lt.json +++ b/src/bower_components/emby-webcomponents/strings/lt-lt.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Kiek tik įmanoma", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "Naujas", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Atšaukti", "ButtonGotIt": "Supratau", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metaduomenų nustatymai", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "Naujas įrašas", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "Jūs pasakėte:", "Help": "Padėti", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "Žiūrėti albumą", "ViewArtist": "Žiūrėti atlikėją", "VoiceInput": "Balso komandos", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Trečiadienis", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/ms.json b/src/bower_components/emby-webcomponents/strings/ms.json index 94b5242f8d..5fcb1bb478 100644 --- a/src/bower_components/emby-webcomponents/strings/ms.json +++ b/src/bower_components/emby-webcomponents/strings/ms.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancel", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Wednesday", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/nb.json b/src/bower_components/emby-webcomponents/strings/nb.json index a80683775b..fe251e778a 100644 --- a/src/bower_components/emby-webcomponents/strings/nb.json +++ b/src/bower_components/emby-webcomponents/strings/nb.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Så mange som mulig", "Ascending": "Ascending", "AspectRatio": "Størrelsesforholdet", - "AttemptingWakeServer": "Prøver å vekke opp server. Vennligst vent,..", "AttributeNew": "Ny", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Bøker", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Avbryt", "ButtonGotIt": "Skjønner", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata innstilinger", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "Min enhet", - "HeaderMyDownloads": "Mine nedlastinger", "HeaderMyMedia": "Min Media", "HeaderMyMediaSmall": "Min Media (liten)", "HeaderNewRecording": "Nye opptak:", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Vekk opp server", "HeaderYouSaid": "Du sa...", "Help": "Hjelp", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "Vis album", "ViewArtist": "Vis artist", "VoiceInput": "Stemme input", - "WakeServer": "Vekk opp server", - "WakeServerError": "Wake On LAN-pakker ble sendt til servermaskinen din, men tilkobling til din Jellyfin Server mislyktes. Serveren din kan trenge litt mer tid til å våkne, eller så kjører ikke Jellyfin Server på maskinen.", - "WakeServerSuccess": "Suksess!", "Watched": "Sett", "Wednesday": "Onsdag", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/nl.json b/src/bower_components/emby-webcomponents/strings/nl.json index 5e9dd29b9c..67aa7cc2ff 100644 --- a/src/bower_components/emby-webcomponents/strings/nl.json +++ b/src/bower_components/emby-webcomponents/strings/nl.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Zo veel als mogelijk", "Ascending": "Oplopend", "AspectRatio": "Beeldverhouding", - "AttemptingWakeServer": "Proberen de server te wekken. Een moment geduld...", "AttributeNew": "Nieuw", "AudioBitDepthNotSupported": "Audio bit depth niet ondersteund", "AudioBitrateNotSupported": "Audio bitrate niet ondersteund", @@ -53,7 +52,6 @@ "Books": "Boeken", "Box": "Box", "BoxRear": "Box (achterkant)", - "Browse": "Bladeren", "BurnSubtitlesHelp": "Bepaalt of de server ondertitels moet inbranden wanneer video's op basis van het ondertitel formaat geconverteerd moeten worden. Inbranden van ondertitels hebben een negatief effect op de server performance. Selecteer Automatisch om op afbeelding gebaseerde formaten (bijv. VOBSUB, PGS, SUB/IDX etc.) en bepaalde ASS/SSA ondertitels in te branden.", "ButtonCancel": "Annuleren", "ButtonGotIt": "Begrepen", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metagegevens instellingen", "HeaderMusicQuality": "Muziek Kwaliteit", "HeaderMyDevice": "Mijn Apparaat", - "HeaderMyDownloads": "Mijn Downloads", "HeaderMyMedia": "Mijn Media", "HeaderMyMediaSmall": "Mijn Media (klein)", "HeaderNewRecording": "Nieuwe opname", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Kwaliteit", "HeaderVideoType": "Videotype", "HeaderWaitingForWifi": "Wachten op Wifi", - "HeaderWakeServer": "Server Wekken", "HeaderYouSaid": "U zei...", "Help": "Hulp", "Hide": "Verbergen", @@ -674,9 +670,6 @@ "ViewAlbum": "Bekijk album", "ViewArtist": "Bekijk artiest", "VoiceInput": "Spraak invoer", - "WakeServer": "Server wekken", - "WakeServerError": "Er zijn \"Wake On Lan\" pakketten naar de server verzonden, maar verbinding maken is mislukt. Het kan voorkomen dat de server wat meer tijd nodig heeft om op te starten, of misschien is Jellyfin Server niet actief op de machine.", - "WakeServerSuccess": "Succesvol!", "Watched": "Bekeken", "Wednesday": "Woensdag", "WifiRequiredToDownload": "Wifi verbinding is vereist om te downloaden.", diff --git a/src/bower_components/emby-webcomponents/strings/pl.json b/src/bower_components/emby-webcomponents/strings/pl.json index 79d40c530a..5271e454b7 100644 --- a/src/bower_components/emby-webcomponents/strings/pl.json +++ b/src/bower_components/emby-webcomponents/strings/pl.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Tak wiele jak to możliwe", "Ascending": "Rosnąco", "AspectRatio": "Proporcje obrazu", - "AttemptingWakeServer": "Trwa próba wybudzenia serwera. Proszę czekać...", "AttributeNew": "Nowy", "AudioBitDepthNotSupported": "Nieobsługiwana głębia bitowa dźwięku", "AudioBitrateNotSupported": "Nieobsługiwana przepływność dźwięku", @@ -53,7 +52,6 @@ "Books": "Książki", "Box": "Pudełko", "BoxRear": "Pudełko (tył)", - "Browse": "Przeglądaj", "BurnSubtitlesHelp": "Określa czy serwer powinien wypalać napisy podczas konwersji wideo, w zależności od formatu napisów. Unikanie wypalania napisów poprawia wydajność serwera. Wybierz Automatycznie, w celu wypalania zarówno napisów w formatach graficznych (np. VOBSUB, PGS, SUB/IDX, itp.), jak i pewnych napisów ASS/SSA.", "ButtonCancel": "Anuluj", "ButtonGotIt": "Rozumiem", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Ustawienia metadanych", "HeaderMusicQuality": "Jakość muzyki", "HeaderMyDevice": "Moje urządzenie", - "HeaderMyDownloads": "Moje pobrania", "HeaderMyMedia": "Moje media", "HeaderMyMediaSmall": "Moje media (małe)", "HeaderNewRecording": "Nowe nagranie", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Jakość wideo", "HeaderVideoType": "Typ wideo", "HeaderWaitingForWifi": "Oczekiwanie na sieć WiFi", - "HeaderWakeServer": "Wybudzaj serwer", "HeaderYouSaid": "Powiedziałeś...", "Help": "Pomoc", "Hide": "Ukryj", @@ -674,9 +670,6 @@ "ViewAlbum": "Podgląd albumu", "ViewArtist": "Podgląd wykonawcy", "VoiceInput": "Wejście głosowe", - "WakeServer": "Wybudzaj serwer", - "WakeServerError": "Wysłano pakiery Wake On LAN do maszyny serwera, ale połączenie z serwer Jellyfin zakończyło się niepowodzeniem. Twoja maszyna potrzebuje więcej czasu do wybudzenia lub serwer Jellyfin może nie działać aktywnie na tej maszynie.", - "WakeServerSuccess": "Powodzenie!", "Watched": "Obejrzany", "Wednesday": "Środa", "WifiRequiredToDownload": "Połączenie WiFi jest wymagane, aby kontynuować pobieranie.", diff --git a/src/bower_components/emby-webcomponents/strings/pt-br.json b/src/bower_components/emby-webcomponents/strings/pt-br.json index 25a47b1648..0baf2ff3f7 100644 --- a/src/bower_components/emby-webcomponents/strings/pt-br.json +++ b/src/bower_components/emby-webcomponents/strings/pt-br.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Quantos forem possíveis", "Ascending": "Ascendente", "AspectRatio": "Proporção da imagem", - "AttemptingWakeServer": "Tentando despertar o servidor. Por favor, aguarde...", "AttributeNew": "Novo", "AudioBitDepthNotSupported": "Profundidade de bit de áudio não suportada", "AudioBitrateNotSupported": "Taxa de áudio não suportada", @@ -53,7 +52,6 @@ "Books": "Livros", "Box": "Caixa", "BoxRear": "Caixa (traseira)", - "Browse": "Navegar", "BurnSubtitlesHelp": "Determina se o servidor deveria gravar as legendas no vídeo ao convertê-lo, dependendo do formato da legenda. Evitar a gravação da legenda irá melhorar a performance do servidor. Selecione Auto para gravar a imagem baseado nos formatos (ex. VOBSUB, PGS, SUB/IDX, etc.) assim como algumas legendas ASS/SSA.", "ButtonCancel": "Cancelar", "ButtonGotIt": "Feito", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Ajustes dos Metadados", "HeaderMusicQuality": "Qualidade da Música:", "HeaderMyDevice": "Meu Dispositivo", - "HeaderMyDownloads": "Meus Downloads", "HeaderMyMedia": "Minha Mídia", "HeaderMyMediaSmall": "Minha Mídia (pequeno)", "HeaderNewRecording": "Nova Gravação", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Qualidade do Vídeo", "HeaderVideoType": "Tipo de Vídeo", "HeaderWaitingForWifi": "Esperando por Wifi", - "HeaderWakeServer": "Despertar Servidor", "HeaderYouSaid": "Você Disse...", "Help": "Ajuda", "Hide": "Ocultar", @@ -674,9 +670,6 @@ "ViewAlbum": "Ver álbum", "ViewArtist": "Ver artista", "VoiceInput": "Entrada de voz", - "WakeServer": "Acordar servidor", - "WakeServerError": "Pacotes de rede para despertar foram enviados para seu servidor, mas não foi possível conectar ao seu Servidor Jellyfin. Sua máquina pode necessitar um pouco mais de tempo para despertar, ou o Servidor Jellyfin pode não estar rodando na máquina.", - "WakeServerSuccess": "Deu certo!", "Watched": "Assistido(s)", "Wednesday": "Quarta-feira", "WifiRequiredToDownload": "É necessária uma conexão Wifi para continuar a transferir.", diff --git a/src/bower_components/emby-webcomponents/strings/pt-pt.json b/src/bower_components/emby-webcomponents/strings/pt-pt.json index e2db9bbfba..83a1b3cc48 100644 --- a/src/bower_components/emby-webcomponents/strings/pt-pt.json +++ b/src/bower_components/emby-webcomponents/strings/pt-pt.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "Novo", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancelar", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Ajustes dos Metadados", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "Nova Gravação", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Ajuda", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Quarta", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/ro.json b/src/bower_components/emby-webcomponents/strings/ro.json index 21b12ec4e6..2e5f61e711 100644 --- a/src/bower_components/emby-webcomponents/strings/ro.json +++ b/src/bower_components/emby-webcomponents/strings/ro.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Anuleaza", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Ajutor", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Miercuri", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/ru.json b/src/bower_components/emby-webcomponents/strings/ru.json index 2dd6c9e803..6e08576b3d 100644 --- a/src/bower_components/emby-webcomponents/strings/ru.json +++ b/src/bower_components/emby-webcomponents/strings/ru.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Как можно больше", "Ascending": "По возрастанию", "AspectRatio": "Соот-ие сторон", - "AttemptingWakeServer": "Идёт попытка разбудить ваш сервер. Ждите...", "AttributeNew": "Новинка", "AudioBitDepthNotSupported": "Разрядность аудио не поддерживается", "AudioBitrateNotSupported": "Потоковая скорость аудио не поддерживается", @@ -53,7 +52,6 @@ "Books": "Книги", "Box": "Коробка", "BoxRear": "Спинка коробки", - "Browse": "Навигация", "BurnSubtitlesHelp": "Определяется, должен ли сервер внедрять субтитры при преобразовании видео в зависимости от формата субтитров. Избегание внедрения субтитров улучшит производительность сервера. Выберите «Авто» для записи основанных на графике форматов (например, VOBSUB, PGS, SUB/IDX и т.п.), а также некоторых субтитров ASS/SSA.", "ButtonCancel": "Отменить", "ButtonGotIt": "Понятно", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Параметры метаданных", "HeaderMusicQuality": "Качество музыки", "HeaderMyDevice": "Моё устройство", - "HeaderMyDownloads": "Мои загрузки", "HeaderMyMedia": "Мои медиаданные", "HeaderMyMediaSmall": "Мои медиаданные (компактно)", "HeaderNewRecording": "Новая запись", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Качество видео", "HeaderVideoType": "Тип видео", "HeaderWaitingForWifi": "В ожидании WiFi", - "HeaderWakeServer": "Пробуждение сервера", "HeaderYouSaid": "Вы сказали...", "Help": "Справка...", "Hide": "Скрыть", @@ -674,9 +670,6 @@ "ViewAlbum": "Посмотреть альбом", "ViewArtist": "Посмотреть исполнителя", "VoiceInput": "Голосовой ввод", - "WakeServer": "Разбудить сервер", - "WakeServerError": "Пакеты Wake On LAN были отправлены на вашу серверную машину, однако, мы не смогли соединиться с Jellyfin Server. Возможно, вашей машине потребуется немного больше времени для пробуждения, или Jellyfin Server не может активно работать на данной машине.", - "WakeServerSuccess": "Успешно!", "Watched": "Просмотрено", "Wednesday": "среда", "WifiRequiredToDownload": "WiFi-соединение требуется для продолжения загрузки.", diff --git a/src/bower_components/emby-webcomponents/strings/sk.json b/src/bower_components/emby-webcomponents/strings/sk.json index 8004ee2e93..287eb50f02 100644 --- a/src/bower_components/emby-webcomponents/strings/sk.json +++ b/src/bower_components/emby-webcomponents/strings/sk.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Najviac ako je možné", "Ascending": "Vzostupne", "AspectRatio": "Pomer strán", - "AttemptingWakeServer": "Pokúšam sa zobudiť server. Prosím počkajte...", "AttributeNew": "Nové", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Knihy", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Zrušiť", "ButtonGotIt": "Rozumiem", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Nastavenia metadát", "HeaderMusicQuality": "Kvalita hudby", "HeaderMyDevice": "Moje zariadenie", - "HeaderMyDownloads": "Moje sťahovania", "HeaderMyMedia": "Moje média", "HeaderMyMediaSmall": "Moje médiá (malé)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Kvalita videa", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Čakám na WiFi", - "HeaderWakeServer": "Zobudiť server", "HeaderYouSaid": "You Said...", "Help": "Pomoc", "Hide": "Skryť", @@ -674,9 +670,6 @@ "ViewAlbum": "Zobraziť album", "ViewArtist": "Zobraziť umelca", "VoiceInput": "Hlasový vstup", - "WakeServer": "Zobudiť server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Vyšlo to!", "Watched": "Watched", "Wednesday": "Streda", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/sl-si.json b/src/bower_components/emby-webcomponents/strings/sl-si.json index fb0e32900b..cec0a0f53f 100644 --- a/src/bower_components/emby-webcomponents/strings/sl-si.json +++ b/src/bower_components/emby-webcomponents/strings/sl-si.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Cancel", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Wednesday", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/sv.json b/src/bower_components/emby-webcomponents/strings/sv.json index a465d4826d..9b83a45753 100644 --- a/src/bower_components/emby-webcomponents/strings/sv.json +++ b/src/bower_components/emby-webcomponents/strings/sv.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "Så många som möjligt", "Ascending": "Ascending", "AspectRatio": "Bildförhållande", - "AttemptingWakeServer": "Försöker väcka servern. Vänligen vänta....", "AttributeNew": "Ny", "AudioBitDepthNotSupported": "Ljudets bitdjup stöds inte", "AudioBitrateNotSupported": "Ljudbithastigheten stöds inte", @@ -53,7 +52,6 @@ "Books": "Böcker", "Box": "Omslag", "BoxRear": "Omslag (baksida)", - "Browse": "Bläddra", "BurnSubtitlesHelp": "Avgör ifall servern ska \"bränna in\" undertexterna under videokonverteringen, beroende på undertextsformatet. Att undvika inbränning av undertexter kommer att förbättra prestandan på servern. Välj Auto för att bränna image-baserade formats (ex. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA undertexter.", "ButtonCancel": "Avbryt", "ButtonGotIt": "Ok", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadatainställningar", "HeaderMusicQuality": "Musikkvalitet:", "HeaderMyDevice": "Min enhet", - "HeaderMyDownloads": "Mina nedladdningar", "HeaderMyMedia": "Min Media", "HeaderMyMediaSmall": "Min Media (liten)", "HeaderNewRecording": "Ny inspelning", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Videokvalitet", "HeaderVideoType": "Videotyp", "HeaderWaitingForWifi": "Väntar på Wifi", - "HeaderWakeServer": "Väck Server", "HeaderYouSaid": "Du sa...", "Help": "Hjälp", "Hide": "Dölj", @@ -674,9 +670,6 @@ "ViewAlbum": "Bläddra album", "ViewArtist": "Bläddra artist", "VoiceInput": "Röstinspelning", - "WakeServer": "Väck server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Lyckades!", "Watched": "Sedd", "Wednesday": "Onsdag", "WifiRequiredToDownload": "En Wifi-anslutning krävs för att fortsätta nedladdningen.", diff --git a/src/bower_components/emby-webcomponents/strings/tr.json b/src/bower_components/emby-webcomponents/strings/tr.json index 5a4ff9a00c..5f3769e6cb 100644 --- a/src/bower_components/emby-webcomponents/strings/tr.json +++ b/src/bower_components/emby-webcomponents/strings/tr.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "Yeni", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "İptal", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Çarşamba", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/uk.json b/src/bower_components/emby-webcomponents/strings/uk.json index dc598bb6bd..6939bf76ec 100644 --- a/src/bower_components/emby-webcomponents/strings/uk.json +++ b/src/bower_components/emby-webcomponents/strings/uk.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Скасувати", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Wednesday", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/vi.json b/src/bower_components/emby-webcomponents/strings/vi.json index c695aed76f..8cacaf6b16 100644 --- a/src/bower_components/emby-webcomponents/strings/vi.json +++ b/src/bower_components/emby-webcomponents/strings/vi.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "Thoát", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "Help", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "Wednesday", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/zh-cn.json b/src/bower_components/emby-webcomponents/strings/zh-cn.json index aae1569228..23cc39c4f9 100644 --- a/src/bower_components/emby-webcomponents/strings/zh-cn.json +++ b/src/bower_components/emby-webcomponents/strings/zh-cn.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "尽可能多", "Ascending": "升序", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "尝试唤醒服务器中,请耐心等待...", "AttributeNew": "新增", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "音频比特率不受支持", @@ -53,7 +52,6 @@ "Books": "书籍", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "浏览", "BurnSubtitlesHelp": "根据字幕格式确定服务器在转换视频时是否应烧录字幕。避免烧录字幕会提高服务器性能。选择“自动”以烧录基于图像的字幕格式(如 VOBSUB, PGS, SUB/IDX 等)和一些复杂的 ASS/SSA 字幕。", "ButtonCancel": "取消", "ButtonGotIt": "知道了", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "元数据设置", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "我的设备", - "HeaderMyDownloads": "我的下载", "HeaderMyMedia": "我的媒体", "HeaderMyMediaSmall": "我的媒体 (小)", "HeaderNewRecording": "新录制", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "视频质量", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "等待 Wifi 连接", - "HeaderWakeServer": "唤醒服务器", "HeaderYouSaid": "您说了...", "Help": "帮助", "Hide": "隐藏", @@ -674,9 +670,6 @@ "ViewAlbum": "查看专辑", "ViewArtist": "查看艺术家", "VoiceInput": "语音输入", - "WakeServer": "唤醒服务器", - "WakeServerError": "Wake On LAN 数据包已经发送到你的服务器所在机器上,但我们不能连接到你的 Jellyfin 服务器。你的机器可能还需要一些时间才能被唤醒,或者\n Jellyfin 服务器没有正确的在机器上启动。", - "WakeServerSuccess": "成功!", "Watched": "已观看", "Wednesday": "星期三", "WifiRequiredToDownload": "需要连接 Wifi 才能继续下载。", diff --git a/src/bower_components/emby-webcomponents/strings/zh-hk.json b/src/bower_components/emby-webcomponents/strings/zh-hk.json index c5b3c0dddb..30ad43b4b5 100644 --- a/src/bower_components/emby-webcomponents/strings/zh-hk.json +++ b/src/bower_components/emby-webcomponents/strings/zh-hk.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "取消", "ButtonGotIt": "Got It", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "New Recording", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "You Said...", "Help": "幫助", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "星期三", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/bower_components/emby-webcomponents/strings/zh-tw.json b/src/bower_components/emby-webcomponents/strings/zh-tw.json index f526048dfc..c57e1c1f75 100644 --- a/src/bower_components/emby-webcomponents/strings/zh-tw.json +++ b/src/bower_components/emby-webcomponents/strings/zh-tw.json @@ -31,7 +31,6 @@ "AsManyAsPossible": "As many as possible", "Ascending": "Ascending", "AspectRatio": "Aspect ratio", - "AttemptingWakeServer": "Attempting to wake server. Please wait...", "AttributeNew": "New", "AudioBitDepthNotSupported": "Audio bit depth not supported", "AudioBitrateNotSupported": "Audio bitrate not supported", @@ -53,7 +52,6 @@ "Books": "Books", "Box": "Box", "BoxRear": "Box (rear)", - "Browse": "Browse", "BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles", "ButtonCancel": "取消", "ButtonGotIt": "我知道了", @@ -248,7 +246,6 @@ "HeaderMetadataSettings": "Metadata Settings", "HeaderMusicQuality": "Music Quality", "HeaderMyDevice": "My Device", - "HeaderMyDownloads": "My Downloads", "HeaderMyMedia": "My Media", "HeaderMyMediaSmall": "My Media (small)", "HeaderNewRecording": "新錄製", @@ -283,7 +280,6 @@ "HeaderVideoQuality": "Video Quality", "HeaderVideoType": "Video Type", "HeaderWaitingForWifi": "Waiting for Wifi", - "HeaderWakeServer": "Wake Server", "HeaderYouSaid": "您是指...", "Help": "說明", "Hide": "Hide", @@ -674,9 +670,6 @@ "ViewAlbum": "View album", "ViewArtist": "View artist", "VoiceInput": "Voice Input", - "WakeServer": "Wake server", - "WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.", - "WakeServerSuccess": "Success!", "Watched": "Watched", "Wednesday": "星期三", "WifiRequiredToDownload": "A Wifi connection is required to continue downloading.", diff --git a/src/camerauploadsettings.html b/src/camerauploadsettings.html deleted file mode 100644 index 46de0f1a06..0000000000 --- a/src/camerauploadsettings.html +++ /dev/null @@ -1,17 +0,0 @@ -
- -
-
- -

- ${HeaderCameraUpload} -

- -
-

${SelectCameraUploadServers}

- -
-
-
-
-
\ No newline at end of file diff --git a/src/components/navdrawer/navdrawer.js b/src/components/navdrawer/navdrawer.js index 3a1119e129..cbf5c1eebc 100644 --- a/src/components/navdrawer/navdrawer.js +++ b/src/components/navdrawer/navdrawer.js @@ -2,19 +2,22 @@ define(["browser", "dom", "css!./navdrawer", "scrollStyles"], function(browser, "use strict"; return function(options) { function getTouches(e) { - return e.changedTouches || e.targetTouches || e.touches + return e.changedTouches || e.targetTouches || e.touches; } function onMenuTouchStart(e) { options.target.classList.remove("transition"); - var touches = getTouches(e), - touch = touches[0] || {}; - menuTouchStartX = touch.clientX, menuTouchStartY = touch.clientY, menuTouchStartTime = (new Date).getTime() + var touches = getTouches(e); + var touch = touches[0] || {}; + + menuTouchStartX = touch.clientX; + menuTouchStartY = touch.clientY; + menuTouchStartTime = (new Date).getTime(); } function setVelocity(deltaX) { var time = (new Date).getTime() - (menuTouchStartTime || 0); - velocity = Math.abs(deltaX) / time + velocity = Math.abs(deltaX) / time; } function onMenuTouchMove(e) { @@ -29,25 +32,41 @@ define(["browser", "dom", "css!./navdrawer", "scrollStyles"], function(browser, } function onMenuTouchEnd(e) { - options.target.classList.add("transition"), scrollContainer.removeEventListener("scroll", disableEvent), dragMode = 0; + options.target.classList.add("transition"); + scrollContainer.removeEventListener("scroll", disableEvent); + dragMode = 0; + var touches = getTouches(e), touch = touches[0] || {}, endX = touch.clientX || 0, endY = touch.clientY || 0, deltaX = endX - (menuTouchStartX || 0), deltaY = endY - (menuTouchStartY || 0); - currentPos = deltaX, self.checkMenuState(deltaX, deltaY) + + currentPos = deltaX; + self.checkMenuState(deltaX, deltaY); } function onEdgeTouchStart(e) { - if (isPeeking) onMenuTouchMove(e); - else { - ((getTouches(e)[0] || {}).clientX || 0) <= options.handleSize && (isPeeking = !0, "touchstart" === e.type && (dom.removeEventListener(edgeContainer, "touchmove", onEdgeTouchMove, {}), dom.addEventListener(edgeContainer, "touchmove", onEdgeTouchMove, {})), onMenuTouchStart(e)) + if (isPeeking) { + onMenuTouchMove(e); + } else { + if (((getTouches(e)[0] || {}).clientX || 0) <= options.handleSize) { + isPeeking = true; + if (e.type === "touchstart") { + dom.removeEventListener(edgeContainer, "touchmove", onEdgeTouchMove, {}); + dom.addEventListener(edgeContainer, "touchmove", onEdgeTouchMove, {}); + } + onMenuTouchStart(e); + } } } function onEdgeTouchMove(e) { - onEdgeTouchStart(e), e.preventDefault(), e.stopPropagation() + e.preventDefault(); + e.stopPropagation(); + + onEdgeTouchStart(e); } function onEdgeTouchEnd(e) { diff --git a/src/managedownloads.html b/src/managedownloads.html deleted file mode 100644 index ce7e567bff..0000000000 --- a/src/managedownloads.html +++ /dev/null @@ -1,6 +0,0 @@ -
- -
- -
-
\ No newline at end of file diff --git a/src/mypreferencesmenu.html b/src/mypreferencesmenu.html index 25728bf352..8ef8117743 100644 --- a/src/mypreferencesmenu.html +++ b/src/mypreferencesmenu.html @@ -47,24 +47,6 @@ - - -
- photo -
-
${TabCameraUpload}
-
-
-
- - -
- file_download -
-
${HeaderOfflineSync}
-
-
-

@@ -77,12 +59,14 @@
-
- lock -
-
${ButtonSignOut}
+ +
+ lock +
+
${ButtonSignOut}
+
-
+
diff --git a/src/mysync.html b/src/mysync.html deleted file mode 100644 index 37e2779027..0000000000 --- a/src/mysync.html +++ /dev/null @@ -1,8 +0,0 @@ -
- -
-
- -
-
-
\ No newline at end of file diff --git a/src/mysyncsettings.html b/src/mysyncsettings.html deleted file mode 100644 index 5c3fd5e024..0000000000 --- a/src/mysyncsettings.html +++ /dev/null @@ -1,40 +0,0 @@ -
- -
-
- -

- ${HeaderOfflineSync} -

- -
-
-
-
- -
- -
-
- -
- -
${LabelMaxAudioFileBitrateHelp}
-
- - -
-
-
\ No newline at end of file diff --git a/src/scripts/camerauploadsettings.js b/src/scripts/camerauploadsettings.js deleted file mode 100644 index cb05b9cdf1..0000000000 --- a/src/scripts/camerauploadsettings.js +++ /dev/null @@ -1,29 +0,0 @@ -define(["appSettings", "loading", "emby-checkbox"], function(appSettings, loading) { - "use strict"; - - function loadForm(page, user) { - var uploadServers = appSettings.cameraUploadServers(); - page.querySelector(".uploadServerList").innerHTML = ConnectionManager.getSavedServers().map(function(s) { - return '" - }).join(""), loading.hide() - } - - function saveUser(page) { - for (var chkUploadServer = page.querySelectorAll(".chkUploadServer"), cameraUploadServers = [], i = 0, length = chkUploadServer.length; i < length; i++) chkUploadServer[i].checked && cameraUploadServers.push(chkUploadServer[i].getAttribute("data-id")); - appSettings.cameraUploadServers(cameraUploadServers), window.MainActivity && MainActivity.authorizeStorage(), loading.hide() - } - return function(view, params) { - view.querySelector("form").addEventListener("submit", function(e) { - return loading.show(), saveUser(view), e.preventDefault(), !1 - }), view.addEventListener("viewshow", function() { - var page = this; - loading.show(); - var userId = params.userId || Dashboard.getCurrentUserId(); - ApiClient.getUser(userId).then(function(user) { - loadForm(page, user) - }) - }), view.addEventListener("viewbeforehide", function() { - saveUser(this) - }) - } -}); \ No newline at end of file diff --git a/src/scripts/librarymenu.js b/src/scripts/librarymenu.js index 136eb96601..b0cd078b7a 100644 --- a/src/scripts/librarymenu.js +++ b/src/scripts/librarymenu.js @@ -217,6 +217,7 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", " html += ""; navDrawerScrollContainer.innerHTML = html; + var btnLogout = navDrawerScrollContainer.querySelector(".btnLogout"); if (btnLogout) { diff --git a/src/scripts/managedownloads.js b/src/scripts/managedownloads.js deleted file mode 100644 index 1072d56f4d..0000000000 --- a/src/scripts/managedownloads.js +++ /dev/null @@ -1,15 +0,0 @@ -define(["syncJobList"], function(syncJobList) { - "use strict"; - return function(view, params) { - var apiClient = ApiClient, - mySyncJobList = new syncJobList({ - serverId: apiClient.serverId(), - userId: null, - element: view.querySelector(".syncActivity"), - mode: "download" - }); - view.addEventListener("viewdestroy", function() { - mySyncJobList && (mySyncJobList.destroy(), mySyncJobList = null) - }) - } -}); \ No newline at end of file diff --git a/src/scripts/mypreferencescommon.js b/src/scripts/mypreferencescommon.js index c530787aa8..accbae3784 100644 --- a/src/scripts/mypreferencescommon.js +++ b/src/scripts/mypreferencescommon.js @@ -1,16 +1,42 @@ define(["apphost", "connectionManager", "listViewStyle", "emby-linkbutton"], function(appHost, connectionManager) { "use strict"; + return function(view, params) { view.querySelector(".btnLogout").addEventListener("click", function() { - Dashboard.logout() - }), view.addEventListener("viewshow", function() { - var page = this, - userId = params.userId || Dashboard.getCurrentUserId(); - page.querySelector(".lnkDisplayPreferences").setAttribute("href", "mypreferencesdisplay.html?userId=" + userId), page.querySelector(".lnkLanguagePreferences").setAttribute("href", "mypreferenceslanguages.html?userId=" + userId), page.querySelector(".lnkSubtitleSettings").setAttribute("href", "mypreferencessubtitles.html?userId=" + userId), page.querySelector(".lnkHomeScreenPreferences").setAttribute("href", "mypreferenceshome.html?userId=" + userId), page.querySelector(".lnkMyProfile").setAttribute("href", "myprofile.html?userId=" + userId), page.querySelector(".lnkSync").setAttribute("href", "mysyncsettings.html?userId=" + userId), page.querySelector(".lnkCameraUpload").setAttribute("href", "camerauploadsettings.html?userId=" + userId), appHost.supports("cameraupload") ? page.querySelector(".lnkCameraUpload").classList.remove("hide") : page.querySelector(".lnkCameraUpload").classList.add("hide"), appHost.supports("sync") ? page.querySelector(".lnkSync").classList.remove("hide") : page.querySelector(".lnkSync").classList.add("hide"), connectionManager.user(ApiClient).then(function(user) { - !user.localUser || user.localUser.EnableAutoLogin && !user.connectUser ? view.querySelector(".btnLogout").classList.add("hide") : view.querySelector(".btnLogout").classList.remove("hide") - }), Dashboard.getCurrentUser().then(function(user) { - page.querySelector(".headerUser").innerHTML = user.Name, user.Policy.IsAdministrator ? page.querySelector(".adminSection").classList.remove("hide") : page.querySelector(".adminSection").classList.add("hide") - }), appHost.supports("multiserver") ? page.querySelector(".selectServer").classList.remove("hide") : page.querySelector(".selectServer").classList.add("hide") + Dashboard.logout(); + }); + + view.addEventListener("viewshow", function() { + var page = this; + var userId = params.userId || Dashboard.getCurrentUserId(); + + page.querySelector(".lnkDisplayPreferences").setAttribute("href", "mypreferencesdisplay.html?userId=" + userId); + page.querySelector(".lnkLanguagePreferences").setAttribute("href", "mypreferenceslanguages.html?userId=" + userId); + page.querySelector(".lnkSubtitleSettings").setAttribute("href", "mypreferencessubtitles.html?userId=" + userId); + page.querySelector(".lnkHomeScreenPreferences").setAttribute("href", "mypreferenceshome.html?userId=" + userId); + page.querySelector(".lnkMyProfile").setAttribute("href", "myprofile.html?userId=" + userId); + + if (appHost.supports("multiserver")) { + page.querySelector(".selectServer").classList.remove("hide") + } else { + page.querySelector(".selectServer").classList.add("hide"); + } + connectionManager.user(ApiClient).then(function(user) { + if (user.localUser && !user.localUser.EnableAutoLogin) { + view.querySelector(".btnLogout").classList.remove("hide"); + } else { + view.querySelector(".btnLogout").classList.add("hide"); + } + }); + + Dashboard.getCurrentUser().then(function(user) { + page.querySelector(".headerUser").innerHTML = user.Name; + if (user.Policy.IsAdministrator) { + page.querySelector(".adminSection").classList.remove("hide"); + } else { + page.querySelector(".adminSection").classList.add("hide"); + } + }); }) } -}); \ No newline at end of file +}); diff --git a/src/scripts/mysync.js b/src/scripts/mysync.js deleted file mode 100644 index d971a870b4..0000000000 --- a/src/scripts/mysync.js +++ /dev/null @@ -1,18 +0,0 @@ -define(["apphost", "globalize", "syncJobList", "events", "localsync", "emby-button", "paper-icon-button-light"], function(appHost, globalize, syncJobList, events, localSync) { - "use strict"; - return function(view, params) { - var interval, mySyncJobList = new syncJobList({ - mode: params.mode, - enableRemoteSyncManagement: !1, - serverId: ApiClient.serverId(), - userId: "offline" === params.mode ? null : ApiClient.getCurrentUserId(), - element: view.querySelector(".syncActivity"), - mode: params.mode - }); - view.addEventListener("viewbeforehide", function() { - interval && (clearInterval(interval), interval = null) - }), view.addEventListener("viewdestroy", function() { - mySyncJobList.destroy() - }) - } -}); \ No newline at end of file diff --git a/src/scripts/mysyncsettings.js b/src/scripts/mysyncsettings.js deleted file mode 100644 index c968acb2a1..0000000000 --- a/src/scripts/mysyncsettings.js +++ /dev/null @@ -1,33 +0,0 @@ -define(["appSettings", "apphost", "emby-checkbox", "emby-select", "emby-input"], function(appSettings, appHost) { - "use strict"; - - function loadForm(page, user) { - page.querySelector("#txtSyncPath").value = appSettings.syncPath() || "", page.querySelector("#chkWifi").checked = appSettings.syncOnlyOnWifi(), page.querySelector(".selectAudioBitrate").value = appSettings.maxStaticMusicBitrate() || "" - } - - function saveUser(page) { - var syncPath = page.querySelector("#txtSyncPath").value; - appSettings.syncPath(syncPath), appSettings.syncOnlyOnWifi(page.querySelector("#chkWifi").checked), appSettings.maxStaticMusicBitrate(page.querySelector(".selectAudioBitrate").value || null), require(["localsync"], function(localSync) { - localSync.sync() - }) - } - return function(view, params) { - view.querySelector("form").addEventListener("submit", function(e) { - return saveUser(view), e.preventDefault(), !1 - }), view.querySelector("#btnSelectSyncPath").addEventListener("click", function() { - require(["nativedirectorychooser"], function() { - NativeDirectoryChooser.chooseDirectory().then(function(path) { - path && (view.querySelector("#txtSyncPath").value = path) - }) - }) - }), view.addEventListener("viewshow", function() { - var page = this, - userId = getParameterByName("userId") || Dashboard.getCurrentUserId(); - ApiClient.getUser(userId).then(function(user) { - loadForm(page, user) - }), appHost.supports("customsyncpath") ? page.querySelector(".fldSyncPath").classList.remove("hide") : page.querySelector(".fldSyncPath").classList.add("hide") - }), view.addEventListener("viewbeforehide", function() { - saveUser(this) - }) - } -}); \ No newline at end of file diff --git a/src/scripts/selectserver.js b/src/scripts/selectserver.js index 63d355c9e4..036f66254c 100644 --- a/src/scripts/selectserver.js +++ b/src/scripts/selectserver.js @@ -47,6 +47,7 @@ define(["loading", "appRouter", "layoutManager", "appSettings", "apphost", "focu function showServerConnectionFailure() { alertText(globalize.translate("MessageUnableToConnectToServer"), globalize.translate("HeaderConnectionFailure")) } + return function(view, params) { function connectToServer(server) { loading.show(), connectionManager.connectToServer(server, { @@ -81,62 +82,6 @@ define(["loading", "appRouter", "layoutManager", "appSettings", "apphost", "focu }) } - function acceptInvitation(id) { - loading.show(), connectionManager.acceptServer(id).then(function() { - loading.hide(), loadServers(), loadInvitations() - }, showGeneralError) - } - - function rejectInvitation(id) { - loading.show(), connectionManager.rejectServer(id).then(function() { - loading.hide(), loadServers(), loadInvitations() - }, showGeneralError) - } - - function showPendingInviteMenu(elem) { - var card = dom.parentWithClass(elem, "inviteItem"), - invitationId = card.getAttribute("data-id"), - menuItems = []; - menuItems.push({ - name: globalize.translate("sharedcomponents#Accept"), - id: "accept" - }), menuItems.push({ - name: globalize.translate("sharedcomponents#Reject"), - id: "reject" - }), require(["actionsheet"], function(actionsheet) { - actionsheet.show({ - items: menuItems, - positionTo: elem, - callback: function(id) { - switch (id) { - case "accept": - acceptInvitation(invitationId); - break; - case "reject": - rejectInvitation(invitationId) - } - } - }) - }) - } - - function getPendingInviteHtml(item) { - var cardBoxCssClass = "cardBox"; - layoutManager.tv && (cardBoxCssClass += " cardBox-focustransform"); - var innerOpening = '
'; - return '
" - } - - function renderInvitations(list) { - list.length ? view.querySelector(".invitationSection").classList.remove("hide") : view.querySelector(".invitationSection").classList.add("hide"); - var html = list.map(getPendingInviteHtml).join(""); - view.querySelector(".invitations").innerHTML = html - } - - function loadInvitations() { - connectionManager.isLoggedIntoConnect() ? connectionManager.getUserInvitations().then(renderInvitations) : renderInvitations([]) - } - function onServerClick(server) { var menuItems = []; menuItems.push({ @@ -146,11 +91,7 @@ define(["loading", "appRouter", "layoutManager", "appSettings", "apphost", "focu name: globalize.translate("sharedcomponents#Delete"), id: "delete" }); - var apiClient = connectionManager.getApiClient(server.Id); - apiClient && apiClient.supportsWakeOnLan() && menuItems.push({ - name: globalize.translate("sharedcomponents#WakeServer"), - id: "wol" - }), actionSheet.show({ + actionSheet.show({ items: menuItems, title: server.Name }).then(function(id) { @@ -160,50 +101,10 @@ define(["loading", "appRouter", "layoutManager", "appSettings", "apphost", "focu break; case "delete": deleteServer(server); - break; - case "wol": - sendWolPacket(server) } }) } - function sendWolPacket(server) { - var apiClient = connectionManager.getApiClient(server.Id); - require(["loadingDialog"], function(LoadingDialog) { - var dlg = new LoadingDialog({ - title: globalize.translate("sharedcomponents#HeaderWakeServer"), - text: globalize.translate("sharedcomponents#AttemptingWakeServer") - }); - dlg.show(); - var afterWol = function() { - setTimeout(function() { - apiClient.getPublicSystemInfo().then(onWolSuccess.bind(dlg), onWolFail.bind(dlg)) - }, 12e3) - }; - apiClient.wakeOnLan().then(afterWol, afterWol) - }) - } - - function onWolSuccess() { - var dlg = this; - dlg.hide(), dlg.destroy(), require(["alert"], function(alert) { - alert({ - text: globalize.translate("sharedcomponents#WakeServerSuccess"), - title: globalize.translate("sharedcomponents#HeaderWakeServer") - }) - }) - } - - function onWolFail() { - var dlg = this; - dlg.hide(), dlg.destroy(), require(["alert"], function(alert) { - alert({ - text: globalize.translate("sharedcomponents#WakeServerError"), - title: globalize.translate("sharedcomponents#HeaderWakeServer") - }) - }) - } - function onServersRetrieved(result) { servers = result, renderSelectServerItems(view, result), layoutManager.tv && focusManager.autoFocus(view) } @@ -215,15 +116,13 @@ define(["loading", "appRouter", "layoutManager", "appSettings", "apphost", "focu } var servers; layoutManager.desktop; - (function() { - updatePageStyle(view, params), view.querySelector(".btnOfflineText").innerHTML = globalize.translate("sharedcomponents#HeaderMyDownloads"), appHost.supports("sync") && view.querySelector(".btnOffline").classList.remove("hide") - })(); + updatePageStyle(view, params); var backdropUrl = staticBackdrops.getRandomImageUrl(); view.addEventListener("viewshow", function(e) { var isRestored = e.detail.isRestored; - appRouter.setTitle(null), backdrop.setBackdrop(backdropUrl), isRestored || (loadServers(), loadInvitations()) - }), view.querySelector(".btnOffline").addEventListener("click", function(e) { - appRouter.show("/offline/offline.html") + appRouter.setTitle(null); + backdrop.setBackdrop(backdropUrl); + if (!isRestored) loadServers(); }), view.querySelector(".servers").addEventListener("click", function(e) { var card = dom.parentWithClass(e.target, "card"); if (card) { @@ -236,9 +135,6 @@ define(["loading", "appRouter", "layoutManager", "appSettings", "apphost", "focu })[0]) } } - }), view.querySelector(".invitations").addEventListener("click", function(e) { - var btnInviteMenu = dom.parentWithClass(e.target, "btnInviteMenu"); - btnInviteMenu && showPendingInviteMenu(btnInviteMenu) }) } }); diff --git a/src/scripts/site.js b/src/scripts/site.js index 69fbc8a4cb..91c6edeed5 100644 --- a/src/scripts/site.js +++ b/src/scripts/site.js @@ -285,12 +285,68 @@ var Dashboard = { } function initRequireWithBrowser(browser) { - var bowerPath = getBowerPath(), - apiClientBowerPath = bowerPath + "/emby-apiclient", - embyWebComponentsBowerPath = bowerPath + "/emby-webcomponents"; - "android" === self.appMode ? (define("filesystem", ["cordova/filesystem"], returnFirstDependency), define("cameraRoll", ["cordova/cameraroll"], returnFirstDependency)) : (define("filesystem", [embyWebComponentsBowerPath + "/filesystem"], returnFirstDependency), define("cameraRoll", [apiClientBowerPath + "/cameraroll"], returnFirstDependency)), window.IntersectionObserver && !browser.edge ? define("lazyLoader", [embyWebComponentsBowerPath + "/lazyloader/lazyloader-intersectionobserver"], returnFirstDependency) : define("lazyLoader", [embyWebComponentsBowerPath + "/lazyloader/lazyloader-scroll"], returnFirstDependency), "android" === self.appMode ? define("shell", ["cordova/shell"], returnFirstDependency) : define("shell", [embyWebComponentsBowerPath + "/shell"], returnFirstDependency), "cordova" === self.appMode || "android" === self.appMode ? (define("apiclientcore", ["bower_components/emby-apiclient/apiclient"], returnFirstDependency), define("apiclient", ["bower_components/emby-apiclient/apiclientex"], returnFirstDependency)) : define("apiclient", ["bower_components/emby-apiclient/apiclient"], returnFirstDependency), "cordova" === self.appMode || "android" === self.appMode ? define("wakeOnLan", ["cordova/wakeonlan"], returnFirstDependency) : define("wakeOnLan", ["bower_components/emby-apiclient/wakeonlan"], returnFirstDependency), define("actionsheet", ["webActionSheet"], returnFirstDependency), "registerElement" in document ? define("registerElement", []) : browser.msie ? define("registerElement", [bowerPath + "/webcomponentsjs/webcomponents-lite.min.js"], returnFirstDependency) : define("registerElement", [bowerPath + "/document-register-element/build/document-register-element"], returnFirstDependency), "android" === self.appMode ? define("serverdiscovery", ["cordova/serverdiscovery"], returnFirstDependency) : "cordova" === self.appMode ? define("serverdiscovery", ["cordova/serverdiscovery"], returnFirstDependency) : define("serverdiscovery", [apiClientBowerPath + "/serverdiscovery"], returnFirstDependency), "cordova" === self.appMode && browser.iOSVersion && browser.iOSVersion < 11 ? define("imageFetcher", ["cordova/imagestore"], returnFirstDependency) : define("imageFetcher", [embyWebComponentsBowerPath + "/images/basicimagefetcher"], returnFirstDependency); + var bowerPath = getBowerPath(); + var apiClientBowerPath = bowerPath + "/emby-apiclient"; + var embyWebComponentsBowerPath = bowerPath + "/emby-webcomponents"; + + "android" === self.appMode + ? (define("filesystem", ["cordova/filesystem"], returnFirstDependency), define("cameraRoll", ["cordova/cameraroll"], returnFirstDependency)) + : (define("filesystem", [embyWebComponentsBowerPath + "/filesystem"], returnFirstDependency), define("cameraRoll", [apiClientBowerPath + "/cameraroll"], returnFirstDependency)); + window.IntersectionObserver && !browser.edge + ? define("lazyLoader", [embyWebComponentsBowerPath + "/lazyloader/lazyloader-intersectionobserver"], returnFirstDependency) + : define("lazyLoader", [embyWebComponentsBowerPath + "/lazyloader/lazyloader-scroll"], returnFirstDependency); + "android" === self.appMode + ? define("shell", ["cordova/shell"], returnFirstDependency) + : define("shell", [embyWebComponentsBowerPath + "/shell"], returnFirstDependency); + "cordova" === self.appMode || "android" === self.appMode + ? (define("apiclientcore", ["bower_components/emby-apiclient/apiclient"], returnFirstDependency), define("apiclient", ["bower_components/emby-apiclient/apiclientex"], returnFirstDependency)) + : define("apiclient", ["bower_components/emby-apiclient/apiclient"], returnFirstDependency) + define("actionsheet", ["webActionSheet"], returnFirstDependency); + "registerElement" in document + ? define("registerElement", []) + : browser.msie + ? define("registerElement", [bowerPath + "/webcomponentsjs/webcomponents-lite.min.js"], returnFirstDependency) + : define("registerElement", [bowerPath + "/document-register-element/build/document-register-element"], returnFirstDependency); + "cordova" === self.appMode || "android" === self.appMode + ? define("serverdiscovery", ["cordova/serverdiscovery"], returnFirstDependency) + : define("serverdiscovery", [apiClientBowerPath + "/serverdiscovery"], returnFirstDependency); + "cordova" === self.appMode && browser.iOSVersion && browser.iOSVersion < 11 + ? define("imageFetcher", ["cordova/imagestore"], returnFirstDependency) + : define("imageFetcher", [embyWebComponentsBowerPath + "/images/basicimagefetcher"], returnFirstDependency); + var preferNativeAlerts = browser.tv; - preferNativeAlerts && window.alert ? define("alert", [embyWebComponentsBowerPath + "/alert/nativealert"], returnFirstDependency) : define("alert", [embyWebComponentsBowerPath + "/alert/alert"], returnFirstDependency), defineResizeObserver(), define("dialog", [embyWebComponentsBowerPath + "/dialog/dialog"], returnFirstDependency), preferNativeAlerts && window.confirm ? define("confirm", [embyWebComponentsBowerPath + "/confirm/nativeconfirm"], returnFirstDependency) : define("confirm", [embyWebComponentsBowerPath + "/confirm/confirm"], returnFirstDependency), (preferNativeAlerts || browser.xboxOne) && window.confirm ? define("prompt", [embyWebComponentsBowerPath + "/prompt/nativeprompt"], returnFirstDependency) : define("prompt", [embyWebComponentsBowerPath + "/prompt/prompt"], returnFirstDependency), browser.tizen || browser.operaTv || browser.chromecast || browser.orsay || browser.web0s || browser.ps4 ? define("loading", [embyWebComponentsBowerPath + "/loading/loading-legacy"], returnFirstDependency) : define("loading", [embyWebComponentsBowerPath + "/loading/loading-lite"], returnFirstDependency), define("multi-download", [embyWebComponentsBowerPath + "/multidownload"], returnFirstDependency), "android" === self.appMode ? define("fileDownloader", ["cordova/filedownloader"], returnFirstDependency) : define("fileDownloader", [embyWebComponentsBowerPath + "/filedownloader"], returnFirstDependency), define("localassetmanager", [apiClientBowerPath + "/localassetmanager"], returnFirstDependency), "cordova" === self.appMode || "android" === self.appMode ? define("castSenderApiLoader", [], getDummyCastSenderApiLoader) : define("castSenderApiLoader", [], getCastSenderApiLoader), self.Windows ? (define("bgtaskregister", ["environments/windows-uwp/bgtaskregister"], returnFirstDependency), define("transfermanager", ["environments/windows-uwp/transfermanager"], returnFirstDependency), define("filerepository", ["environments/windows-uwp/filerepository"], returnFirstDependency)) : "cordova" === self.appMode ? (define("filerepository", ["cordova/filerepository"], returnFirstDependency), define("transfermanager", ["filerepository"], returnFirstDependency)) : "android" === self.appMode ? (define("transfermanager", ["cordova/transfermanager"], returnFirstDependency), define("filerepository", ["cordova/filerepository"], returnFirstDependency)) : (define("transfermanager", [apiClientBowerPath + "/sync/transfermanager"], returnFirstDependency), define("filerepository", [apiClientBowerPath + "/sync/filerepository"], returnFirstDependency)), "android" === self.appMode ? define("localsync", ["cordova/localsync"], returnFirstDependency) : define("localsync", [apiClientBowerPath + "/sync/localsync"], returnFirstDependency) + preferNativeAlerts && window.alert + ? define("alert", [embyWebComponentsBowerPath + "/alert/nativealert"], returnFirstDependency) + : define("alert", [embyWebComponentsBowerPath + "/alert/alert"], returnFirstDependency); + defineResizeObserver(); + define("dialog", [embyWebComponentsBowerPath + "/dialog/dialog"], returnFirstDependency); + preferNativeAlerts && window.confirm + ? define("confirm", [embyWebComponentsBowerPath + "/confirm/nativeconfirm"], returnFirstDependency) + : define("confirm", [embyWebComponentsBowerPath + "/confirm/confirm"], returnFirstDependency); + (preferNativeAlerts || browser.xboxOne) && window.confirm + ? define("prompt", [embyWebComponentsBowerPath + "/prompt/nativeprompt"], returnFirstDependency) + : define("prompt", [embyWebComponentsBowerPath + "/prompt/prompt"], returnFirstDependency); + browser.tizen || browser.operaTv || browser.chromecast || browser.orsay || browser.web0s || browser.ps4 + ? define("loading", [embyWebComponentsBowerPath + "/loading/loading-legacy"], returnFirstDependency) + : define("loading", [embyWebComponentsBowerPath + "/loading/loading-lite"], returnFirstDependency); + define("multi-download", [embyWebComponentsBowerPath + "/multidownload"], returnFirstDependency); + "android" === self.appMode + ? define("fileDownloader", ["cordova/filedownloader"], returnFirstDependency) + : define("fileDownloader", [embyWebComponentsBowerPath + "/filedownloader"], returnFirstDependency); + define("localassetmanager", [apiClientBowerPath + "/localassetmanager"], returnFirstDependency); + "cordova" === self.appMode || "android" === self.appMode + ? define("castSenderApiLoader", [], getDummyCastSenderApiLoader) + : define("castSenderApiLoader", [], getCastSenderApiLoader); + self.Windows + ? (define("bgtaskregister", ["environments/windows-uwp/bgtaskregister"], returnFirstDependency), define("transfermanager", ["environments/windows-uwp/transfermanager"], returnFirstDependency), define("filerepository", ["environments/windows-uwp/filerepository"], returnFirstDependency)) + : "cordova" === self.appMode + ? (define("filerepository", ["cordova/filerepository"], returnFirstDependency), define("transfermanager", ["filerepository"], returnFirstDependency)) + : "android" === self.appMode + ? (define("transfermanager", ["cordova/transfermanager"], returnFirstDependency), define("filerepository", ["cordova/filerepository"], returnFirstDependency)) + : (define("transfermanager", [apiClientBowerPath + "/sync/transfermanager"], returnFirstDependency), define("filerepository", [apiClientBowerPath + "/sync/filerepository"], returnFirstDependency)); + "android" === self.appMode + ? define("localsync", ["cordova/localsync"], returnFirstDependency) + : define("localsync", [apiClientBowerPath + "/sync/localsync"], returnFirstDependency); } function getRequirePromise(deps) { @@ -612,42 +668,12 @@ var Dashboard = { autoFocus: !1, transition: "fade", controller: "scripts/myprofile" - }), defineRoute({ - path: "/offline/offline.html", - transition: "fade", - controller: "offline/offline", - dependencies: [], - anonymous: !0, - startup: !1 - }), defineRoute({ - path: "/managedownloads.html", - transition: "fade", - controller: "scripts/managedownloads", - dependencies: [] - }), defineRoute({ - path: "/mysync.html", - dependencies: [], - autoFocus: !1, - transition: "fade", - controller: "scripts/mysync" - }), defineRoute({ - path: "/camerauploadsettings.html", - dependencies: [], - autoFocus: !1, - transition: "fade", - controller: "scripts/camerauploadsettings" }), defineRoute({ path: "/mysyncjob.html", dependencies: [], autoFocus: !1, transition: "fade", controller: "scripts/syncjob" - }), defineRoute({ - path: "/mysyncsettings.html", - dependencies: ["emby-checkbox", "emby-input", "emby-button", "paper-icon-button-light"], - autoFocus: !1, - transition: "fade", - controller: "scripts/mysyncsettings" }), defineRoute({ path: "/notificationsetting.html", dependencies: [], @@ -1078,9 +1104,6 @@ var Dashboard = { serverId = item.ServerId || options.serverId; if ("settings" === item) return "mypreferencesmenu.html"; if ("wizard" === item) return "wizardstart.html"; - if ("downloads" === item) return "offline/offline.html"; - if ("downloadsettings" === item) return "mysyncsettings.html"; - if ("managedownloads" === item) return "managedownloads.html"; if ("manageserver" === item) return "dashboard.html"; if ("recordedtv" === item) return "livetv.html?tab=3&serverId=" + options.serverId; if ("nextup" === item) return "list/list.html?type=nextup&serverId=" + options.serverId; diff --git a/src/selectserver.html b/src/selectserver.html index b7832cc147..4a1834a9b9 100644 --- a/src/selectserver.html +++ b/src/selectserver.html @@ -1,32 +1,15 @@ 
-

${HeaderSelectServer}

-
-
${ButtonAddServer} - -
- -
-
-

${Invitations}

-
-
-
-
\ No newline at end of file