mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #5505 from scampower3/add-options-displayorder
Add display options for tvdb plugin
This commit is contained in:
commit
1b27d7dcb8
2 changed files with 6 additions and 0 deletions
|
@ -711,6 +711,9 @@ function setFieldVisibilities(context, item) {
|
||||||
html += '<option value="storyArc">' + globalize.translate('StoryArc') + '</option>';
|
html += '<option value="storyArc">' + globalize.translate('StoryArc') + '</option>';
|
||||||
html += '<option value="production">' + globalize.translate('Production') + '</option>';
|
html += '<option value="production">' + globalize.translate('Production') + '</option>';
|
||||||
html += '<option value="tv">TV</option>';
|
html += '<option value="tv">TV</option>';
|
||||||
|
html += '<option value="alternate">' + globalize.translate('Alternate') + '</option>';
|
||||||
|
html += '<option value="regional">' + globalize.translate('Regional') + '</option>';
|
||||||
|
html += '<option value="altdvd">' + globalize.translate('AlternateDVD') + '</option>';
|
||||||
|
|
||||||
context.querySelector('#selectDisplayOrder').innerHTML = html;
|
context.querySelector('#selectDisplayOrder').innerHTML = html;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -30,6 +30,8 @@
|
||||||
"AllowFfmpegThrottlingHelp": "When a transcode or remux gets far enough ahead from the current playback position, pause the process so it will consume fewer resources. This is most useful when watching without seeking often. Turn this off if you experience playback issues.",
|
"AllowFfmpegThrottlingHelp": "When a transcode or remux gets far enough ahead from the current playback position, pause the process so it will consume fewer resources. This is most useful when watching without seeking often. Turn this off if you experience playback issues.",
|
||||||
"AllowSegmentDeletion": "Delete segments",
|
"AllowSegmentDeletion": "Delete segments",
|
||||||
"AllowSegmentDeletionHelp": "Delete old segments after they have been downloaded by the client. This prevents having to store the entire transcoded file on disk. Turn this off if you experience playback issues.",
|
"AllowSegmentDeletionHelp": "Delete old segments after they have been downloaded by the client. This prevents having to store the entire transcoded file on disk. Turn this off if you experience playback issues.",
|
||||||
|
"Alternate" : "Alternate",
|
||||||
|
"AlternateDVD" : "Alternate DVD",
|
||||||
"LabelThrottleDelaySeconds": "Throttle after",
|
"LabelThrottleDelaySeconds": "Throttle after",
|
||||||
"LabelThrottleDelaySecondsHelp": "Time in seconds after which the transcoder will be throttled. Must be large enough for the client to maintain a healthy buffer. Only works if throttling is enabled.",
|
"LabelThrottleDelaySecondsHelp": "Time in seconds after which the transcoder will be throttled. Must be large enough for the client to maintain a healthy buffer. Only works if throttling is enabled.",
|
||||||
"LabelSegmentKeepSeconds": "Time to keep segments",
|
"LabelSegmentKeepSeconds": "Time to keep segments",
|
||||||
|
@ -1342,6 +1344,7 @@
|
||||||
"RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Dashboard.",
|
"RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Dashboard.",
|
||||||
"RefreshMetadata": "Refresh metadata",
|
"RefreshMetadata": "Refresh metadata",
|
||||||
"RefreshQueued": "Refresh queued.",
|
"RefreshQueued": "Refresh queued.",
|
||||||
|
"Regional" : "Regional",
|
||||||
"ReleaseDate": "Release date",
|
"ReleaseDate": "Release date",
|
||||||
"ReleaseGroup": "Release Group",
|
"ReleaseGroup": "Release Group",
|
||||||
"RememberAudioSelections": "Set audio track based on previous item",
|
"RememberAudioSelections": "Set audio track based on previous item",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue