mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fixes #834 - Change view of TV Shows or Interface for plugins
This commit is contained in:
parent
b873995293
commit
ec2c34e944
@ -232,6 +232,7 @@
|
|||||||
<Compile Include="Providers\IMetadataService.cs" />
|
<Compile Include="Providers\IMetadataService.cs" />
|
||||||
<Compile Include="Providers\IRemoteMetadataProvider.cs" />
|
<Compile Include="Providers\IRemoteMetadataProvider.cs" />
|
||||||
<Compile Include="Providers\VideoContentType.cs" />
|
<Compile Include="Providers\VideoContentType.cs" />
|
||||||
|
<Compile Include="RelatedMedia\IRelatedMediaProvider.cs" />
|
||||||
<Compile Include="Security\IEncryptionManager.cs" />
|
<Compile Include="Security\IEncryptionManager.cs" />
|
||||||
<Compile Include="Subtitles\ISubtitleManager.cs" />
|
<Compile Include="Subtitles\ISubtitleManager.cs" />
|
||||||
<Compile Include="Subtitles\ISubtitleProvider.cs" />
|
<Compile Include="Subtitles\ISubtitleProvider.cs" />
|
||||||
|
@ -0,0 +1,17 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace MediaBrowser.Controller.RelatedMedia
|
||||||
|
{
|
||||||
|
public interface IRelatedMediaProvider
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the name.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>The name.</value>
|
||||||
|
string Name { get; }
|
||||||
|
}
|
||||||
|
}
|
@ -16,7 +16,6 @@ using MediaBrowser.Model.Entities;
|
|||||||
using MediaBrowser.Model.LiveTv;
|
using MediaBrowser.Model.LiveTv;
|
||||||
using MediaBrowser.Model.Logging;
|
using MediaBrowser.Model.Logging;
|
||||||
using MediaBrowser.Model.Querying;
|
using MediaBrowser.Model.Querying;
|
||||||
using MediaBrowser.Model.Serialization;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
@ -860,5 +860,6 @@
|
|||||||
"LabelLoginDisclaimer": "Login disclaimer:",
|
"LabelLoginDisclaimer": "Login disclaimer:",
|
||||||
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
|
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
|
||||||
"LabelAutomaticallyDonate": "Automatically donate this amount each month",
|
"LabelAutomaticallyDonate": "Automatically donate this amount each month",
|
||||||
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account."
|
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
|
||||||
|
"OptionList": "List"
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user