mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 17:44:43 +01:00
separate provider options
This commit is contained in:
@@ -40,6 +40,12 @@
|
||||
"OptionIAcceptTermsOfService": "I accept the terms of service",
|
||||
"ButtonPrivacyPolicy": "Privacy policy",
|
||||
"ButtonTermsOfService": "Terms of Service",
|
||||
"HeaderDeveloperOptions": "Developer Options",
|
||||
"OptionEnableWebClientResponseCache": "Enable web client response caching",
|
||||
"OptionDisableForDevelopmentHelp": "Disable these for web client development purposes",
|
||||
"OptionEnableWebClientResourceMinification": "Enable web client resource minification",
|
||||
"LabelDashboardSourcePath": "Web client source path:",
|
||||
"LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
|
||||
"ButtonOk": "Ok",
|
||||
"ButtonCancel": "Cancel",
|
||||
"ButtonNew": "New",
|
||||
@@ -47,6 +53,7 @@
|
||||
"HeaderAudio": "Audio",
|
||||
"HeaderVideo": "Video",
|
||||
"HeaderPaths": "Paths",
|
||||
"ButtonDonateWithPayPal": "Donate with PayPal",
|
||||
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
|
||||
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
|
||||
"LabelEnterConnectUserName": "User name or email:",
|
||||
@@ -1308,7 +1315,7 @@
|
||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||
"HeaderNewUsers": "New Users",
|
||||
"ButtonSignUp": "Sign up",
|
||||
"ButtonForgotPassword": "Forgot password?",
|
||||
"ButtonForgotPassword": "Forgot password",
|
||||
"OptionDisableUserPreferences": "Disable access to user preferences",
|
||||
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
|
||||
"HeaderSelectServer": "Select Server",
|
||||
|
||||
@@ -702,8 +702,8 @@ namespace MediaBrowser.Server.Implementations.Sync
|
||||
var mediaSources = hasMediaSources.GetMediaSources(false).ToList();
|
||||
|
||||
var preferredAudio = string.IsNullOrEmpty(user.Configuration.AudioLanguagePreference)
|
||||
? new string[] { }
|
||||
: new[] { user.Configuration.AudioLanguagePreference };
|
||||
? new string[] { }
|
||||
: new[] { user.Configuration.AudioLanguagePreference };
|
||||
|
||||
var preferredSubs = string.IsNullOrEmpty(user.Configuration.SubtitleLanguagePreference)
|
||||
? new List<string> { }
|
||||
|
||||
Reference in New Issue
Block a user