Fixed: SemiPublic => SemiPrivate

pull/753/head
bakerboy448 3 years ago committed by Qstick
parent c5b111530c
commit 66a6311dcc

@ -62,8 +62,8 @@ const privacyLevels = [
value: translate('Private')
},
{
key: 'semiPublic',
value: translate('SemiPublic')
key: 'semiPrivate',
value: translate('SemiPrivate')
},
{
key: 'public',

@ -30,7 +30,7 @@ namespace NzbDrone.Core.Indexers.Definitions
public override string Language => "ru-RU";
public override Encoding Encoding => Encoding.UTF8;
public override DownloadProtocol Protocol => DownloadProtocol.Torrent;
public override IndexerPrivacy Privacy => IndexerPrivacy.SemiPublic;
public override IndexerPrivacy Privacy => IndexerPrivacy.SemiPrivate;
public override IndexerCapabilities Capabilities => SetCapabilities();
public Anidub(IIndexerHttpClient httpClient, IEventAggregator eventAggregator, IIndexerStatusService indexerStatusService, IConfigService configService, Logger logger)

@ -132,7 +132,7 @@ namespace NzbDrone.Core.Indexers.Cardigann
{
"private" => IndexerPrivacy.Private,
"public" => IndexerPrivacy.Public,
_ => IndexerPrivacy.SemiPublic
_ => IndexerPrivacy.SemiPrivate
},
SupportsRss = SupportsRss,
SupportsSearch = SupportsSearch,

@ -98,7 +98,7 @@ namespace NzbDrone.Core.Indexers
{
"private" => IndexerPrivacy.Private,
"public" => IndexerPrivacy.Public,
_ => IndexerPrivacy.SemiPublic
_ => IndexerPrivacy.SemiPrivate
};
definition.Capabilities = new IndexerCapabilities();
definition.Capabilities.ParseCardigannSearchModes(defFile.Caps.Modes);

@ -3,7 +3,7 @@ namespace NzbDrone.Core.Indexers
public enum IndexerPrivacy
{
Public,
SemiPublic,
SemiPrivate,
Private
}
}

@ -342,7 +342,7 @@
"Security": "Security",
"Seeders": "Seeders",
"SelectAll": "Select All",
"SemiPublic": "Semi-Public",
"SemiPrivate": "Semi-Private",
"SendAnonymousUsageData": "Send Anonymous Usage Data",
"SetTags": "Set Tags",
"Settings": "Settings",

Loading…
Cancel
Save