Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add display options for tvdb plugin #5505

Merged
merged 1 commit into from
Jun 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/components/metadataEditor/metadataEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 3 additions & 0 deletions src/strings/en-us.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
Loading