From 36118b926bc43578a380972b010aa87417896eba Mon Sep 17 00:00:00 2001 From: dkanada Date: Fri, 14 Feb 2020 23:24:38 +0900 Subject: [PATCH 1/4] add missing string --- src/strings/en-us.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/strings/en-us.json b/src/strings/en-us.json index c8df7b69db..421108aa87 100644 --- a/src/strings/en-us.json +++ b/src/strings/en-us.json @@ -1223,6 +1223,7 @@ "PlayFromBeginning": "Play from beginning", "PlayNext": "Play next", "PlayNextEpisodeAutomatically": "Play next episode automatically", + "PlaybackErrorNoCompatibleStream": "There are no available formats that are compatible with this device.", "Played": "Played", "Playlists": "Playlists", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", From 7eee7d0d44842b430fdb1120243cd14aa8620f1e Mon Sep 17 00:00:00 2001 From: dkanada Date: Sun, 1 Mar 2020 23:15:40 +0900 Subject: [PATCH 2/4] add generic restart warning --- src/strings/en-gb.json | 2 +- src/strings/en-us.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/strings/en-gb.json b/src/strings/en-gb.json index 6e6a19bfe6..1a91642ecf 100644 --- a/src/strings/en-gb.json +++ b/src/strings/en-gb.json @@ -1031,7 +1031,7 @@ "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play content.", "LabelEnableDlnaDebugLoggingHelp": "Create large log files and should only be used as needed for troubleshooting purposes.", "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Jellyfin.", - "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", + "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models. Changes will not apply until after a server restart.", "InstallingPackage": "Installing {0}", "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderSubtitleAppearance": "Subtitle Appearance", diff --git a/src/strings/en-us.json b/src/strings/en-us.json index 421108aa87..33d52e7551 100644 --- a/src/strings/en-us.json +++ b/src/strings/en-us.json @@ -617,7 +617,7 @@ "LabelEmbedAlbumArtDidl": "Embed album art in Didl", "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", "LabelEnableAutomaticPortMap": "Enable automatic port mapping", - "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", + "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models. Changes will not apply until after a server restart.", "LabelEnableBlastAliveMessages": "Blast alive messages", "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", From 36a26e698dab77fbd967aa19a6f0cbfc1d0d3e5d Mon Sep 17 00:00:00 2001 From: dkanada Date: Thu, 5 Mar 2020 02:40:43 +0900 Subject: [PATCH 3/4] improve transcode error message --- src/strings/en-us.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strings/en-us.json b/src/strings/en-us.json index 33d52e7551..4852f32aaf 100644 --- a/src/strings/en-us.json +++ b/src/strings/en-us.json @@ -1223,7 +1223,7 @@ "PlayFromBeginning": "Play from beginning", "PlayNext": "Play next", "PlayNextEpisodeAutomatically": "Play next episode automatically", - "PlaybackErrorNoCompatibleStream": "There are no available formats that are compatible with this device.", + "PlaybackErrorNoCompatibleStream": "There was an issue with the client profiling and the server isn't sending a compatible media format.", "Played": "Played", "Playlists": "Playlists", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", From a80f5e50e7c6e2e0571b1875be3272934f945484 Mon Sep 17 00:00:00 2001 From: dkanada Date: Thu, 5 Mar 2020 02:52:53 +0900 Subject: [PATCH 4/4] translate media type string --- src/components/libraryoptionseditor/libraryoptionseditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/libraryoptionseditor/libraryoptionseditor.js b/src/components/libraryoptionseditor/libraryoptionseditor.js index 261d20745b..0b856b35ec 100644 --- a/src/components/libraryoptionseditor/libraryoptionseditor.js +++ b/src/components/libraryoptionseditor/libraryoptionseditor.js @@ -107,7 +107,7 @@ define(["globalize", "dom", "emby-checkbox", "emby-select", "emby-input"], funct if (!plugins.length) return html; html += '
'; - html += '

' + globalize.translate("LabelTypeMetadataDownloaders", availableTypeOptions.Type) + "

"; + html += '

' + globalize.translate("LabelTypeMetadataDownloaders", globalize.translate(availableTypeOptions.Type)) + "

"; html += '
'; for (var i = 0; i < plugins.length; i++) { var plugin = plugins[i];