mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 17:44:43 +01:00
improve ffmpeg cleanup
This commit is contained in:
@@ -517,7 +517,7 @@ namespace MediaBrowser.Server.Implementations.Connect
|
||||
|
||||
if (!connectUser.IsActive)
|
||||
{
|
||||
throw new ArgumentException("The Emby account has been disabled.");
|
||||
throw new ArgumentException("The Emby account is not active. Please ensure the account has been activated by following the instructions within the email confirmation.");
|
||||
}
|
||||
|
||||
connectUserId = connectUser.Id;
|
||||
|
||||
@@ -1513,7 +1513,7 @@ namespace MediaBrowser.Server.Implementations.Library
|
||||
|
||||
return GetUserRootFolder().Children
|
||||
.OfType<Folder>()
|
||||
.Where(i => string.Equals(i.Path, item.Path, StringComparison.OrdinalIgnoreCase) || i.PhysicalLocations.Contains(item.Path));
|
||||
.Where(i => string.Equals(i.Path, item.Path, StringComparison.OrdinalIgnoreCase) || i.PhysicalLocations.Contains(item.Path, StringComparer.OrdinalIgnoreCase));
|
||||
}
|
||||
|
||||
public string GetContentType(BaseItem item)
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"TitleLiveTV": "Live TV",
|
||||
"TitleSync": "Sync",
|
||||
"ButtonDonate": "Donate",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"TitleNotifications": "Notifications",
|
||||
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
|
||||
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.",
|
||||
|
||||
@@ -552,7 +552,7 @@
|
||||
"LabelPublicHttpsPort": "Public https port number:",
|
||||
"LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
|
||||
"LabelEnableHttps": "Report https as external address",
|
||||
"LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address. This may break clients that do not yet support https.",
|
||||
"LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
|
||||
"LabelHttpsPort": "Local https port number:",
|
||||
"LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
|
||||
"LabelWebSocketPortNumber": "Web socket port number:",
|
||||
@@ -896,9 +896,9 @@
|
||||
"LabelHomePageSection2": "Home page section 2:",
|
||||
"LabelHomePageSection3": "Home page section 3:",
|
||||
"LabelHomePageSection4": "Home page section 4:",
|
||||
"OptionMyViewsButtons": "My views (buttons)",
|
||||
"OptionMyViews": "My views",
|
||||
"OptionMyViewsSmall": "My views (small)",
|
||||
"OptionMyMediaButtons": "My media (buttons)",
|
||||
"OptionMyMedia": "My media",
|
||||
"OptionMyMediaSmall": "My media (small)",
|
||||
"OptionResumablemedia": "Resume",
|
||||
"OptionLatestMedia": "Latest media",
|
||||
"OptionLatestChannelMedia": "Latest channel items",
|
||||
|
||||
Reference in New Issue
Block a user