From e525f23281e3870f3029daa65036bc616eaf0d33 Mon Sep 17 00:00:00 2001 From: James White Date: Sun, 12 Mar 2017 14:43:28 +0000 Subject: [PATCH] Grammar check HelpText for CouchPotato lists (#1142) --- .../NetImport/CouchPotato/CouchPotatoSettings.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoSettings.cs b/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoSettings.cs index 8e9a6eb43..c3cdd65f0 100644 --- a/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoSettings.cs +++ b/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoSettings.cs @@ -1,4 +1,4 @@ -using FluentValidation; +using FluentValidation; using NzbDrone.Core.Annotations; using NzbDrone.Core.ThingiProvider; using NzbDrone.Core.Validation; @@ -28,16 +28,16 @@ namespace NzbDrone.Core.NetImport.CouchPotato OnlyActive = true; } - [FieldDefinition(0, Label = "CouchPotato URL", HelpText = "Link to your CoouchPootato.")] + [FieldDefinition(0, Label = "CouchPotato URL", HelpText = "URL to access your CouchPotato instance.")] public string Link { get; set; } - [FieldDefinition(1, Label = "CouchPotato Port", HelpText = "Port your CoouchPootato uses.")] + [FieldDefinition(1, Label = "CouchPotato Port", HelpText = "Port your CouchPotato instance uses.")] public int Port { get; set; } - [FieldDefinition(2, Label = "CouchPotato Url Base", HelpText = "UrlBase your CoouchPootato uses, leave blank for none")] + [FieldDefinition(2, Label = "CouchPotato Url Base", HelpText = "If you have CouchPotato configured via reverse proxy put the base path here. e.g. couchpotato. Leave blank for no base URL.")] public string UrlBase { get; set; } - [FieldDefinition(3, Label = "CouchPotato API Key", HelpText = "CoouchPootato API Key.")] + [FieldDefinition(3, Label = "CouchPotato API Key", HelpText = "CouchPotato API Key. This can found within Settings > General")] public string ApiKey { get; set; } [FieldDefinition(4, Label = "Only Wanted", HelpText = "Only add wanted movies.", Type = FieldType.Checkbox)]