1
0
Fork 0
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:
Bill Thornton 2024-06-08 20:29:43 -04:00 committed by GitHub
commit 1b27d7dcb8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -711,6 +711,9 @@ function setFieldVisibilities(context, item) {
html += '<option value="storyArc">' + globalize.translate('StoryArc') + '</option>';
html += '<option value="production">' + globalize.translate('Production') + '</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;
} else {

View file

@ -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.",
"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.",
"Alternate" : "Alternate",
"AlternateDVD" : "Alternate DVD",
"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.",
"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.",
"RefreshMetadata": "Refresh metadata",
"RefreshQueued": "Refresh queued.",
"Regional" : "Regional",
"ReleaseDate": "Release date",
"ReleaseGroup": "Release Group",
"RememberAudioSelections": "Set audio track based on previous item",