mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-31 18:20:09 +01:00
Fixed: Added tooltips to Blackhole Watch/Torrent/Nzb Folder fields.
This commit is contained in:
@@ -20,10 +20,10 @@ namespace NzbDrone.Core.Download.Clients.TorrentBlackhole
|
||||
{
|
||||
private static readonly TorrentBlackholeSettingsValidator validator = new TorrentBlackholeSettingsValidator();
|
||||
|
||||
[FieldDefinition(0, Label = "Torrent Folder", Type = FieldType.Path)]
|
||||
[FieldDefinition(0, Label = "Torrent Folder", Type = FieldType.Path, HelpText = "Folder in which Sonarr will store the .torrent file")]
|
||||
public String TorrentFolder { get; set; }
|
||||
|
||||
[FieldDefinition(1, Label = "Watch Folder", Type = FieldType.Path)]
|
||||
[FieldDefinition(1, Label = "Watch Folder", Type = FieldType.Path, HelpText = "Folder from which Sonarr should import completed downloads")]
|
||||
public String WatchFolder { get; set; }
|
||||
|
||||
public ValidationResult Validate()
|
||||
|
||||
@@ -20,10 +20,10 @@ namespace NzbDrone.Core.Download.Clients.UsenetBlackhole
|
||||
{
|
||||
private static readonly UsenetBlackholeSettingsValidator Validator = new UsenetBlackholeSettingsValidator();
|
||||
|
||||
[FieldDefinition(0, Label = "Nzb Folder", Type = FieldType.Path)]
|
||||
[FieldDefinition(0, Label = "Nzb Folder", Type = FieldType.Path, HelpText = "Folder in which Sonarr will store the .nzb file")]
|
||||
public String NzbFolder { get; set; }
|
||||
|
||||
[FieldDefinition(1, Label = "Watch Folder", Type = FieldType.Path)]
|
||||
[FieldDefinition(1, Label = "Watch Folder", Type = FieldType.Path, HelpText = "Folder from which Sonarr should import completed downloads")]
|
||||
public String WatchFolder { get; set; }
|
||||
|
||||
public ValidationResult Validate()
|
||||
|
||||
Reference in New Issue
Block a user