Fix Missing HelpText Translation Keys

(cherry picked from commit 587b600d6c6bac64c99d12225360810ef283f0aa)

Closes #9576
This commit is contained in:
Stevie Robinson 2024-01-12 01:33:01 +01:00 committed by Bogdan
parent 8638d82ad3
commit 0e7874aacf
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ namespace NzbDrone.Core.Notifications.Gotify
Priority = 5;
}
[FieldDefinition(0, Label = "NotificationsGotifySettingsServer", HelpText = "")]
[FieldDefinition(0, Label = "NotificationsGotifySettingsServer", HelpText = "NotificationsGotifySettingsServerHelpText")]
public string Server { get; set; }
[FieldDefinition(1, Label = "NotificationsGotifySettingsAppToken", Privacy = PrivacyLevel.ApiKey, HelpText = "NotificationsGotifySettingsAppTokenHelpText")]

View File

@ -53,7 +53,7 @@ namespace NzbDrone.Core.Notifications.Ntfy
[FieldDefinition(5, Label = "NotificationsNtfySettingsTopics", HelpText = "NotificationsNtfySettingsTopicsHelpText", Type = FieldType.Tag, Placeholder = "Topic1234,Topic4321")]
public IEnumerable<string> Topics { get; set; }
[FieldDefinition(6, Label = "NotificationsNtfySettingsTagsEmojis", Type = FieldType.Tag, HelpText = "", Placeholder = "warning,skull", HelpLink = "https://ntfy.sh/docs/emojis/")]
[FieldDefinition(6, Label = "NotificationsNtfySettingsTagsEmojis", Type = FieldType.Tag, HelpText = "NotificationsNtfySettingsTagsEmojisHelpText", Placeholder = "warning,skull", HelpLink = "https://ntfy.sh/docs/emojis/")]
public IEnumerable<string> Tags { get; set; }
[FieldDefinition(7, Label = "NotificationsNtfySettingsClickUrl", Type = FieldType.Url, HelpText = "NotificationsNtfySettingsClickUrlHelpText", Placeholder = "https://myserver.example.com/radarr")]

View File

@ -18,7 +18,7 @@ namespace NzbDrone.Core.Notifications.Pushcut
{
private static readonly PushcutSettingsValidator Validator = new ();
[FieldDefinition(0, Label = "NotificationsPushcutSettingsNotificationName", Type = FieldType.Textbox, HelpText = "")]
[FieldDefinition(0, Label = "NotificationsPushcutSettingsNotificationName", Type = FieldType.Textbox, HelpText = "NotificationsPushcutSettingsNotificationNameHelpText")]
public string NotificationName { get; set; }
[FieldDefinition(1, Label = "ApiKey", Type = FieldType.Textbox, Privacy = PrivacyLevel.ApiKey, HelpText = "NotificationsPushcutSettingsApiKeyHelpText")]