From eac31d10f1184811037cb96ab3d77931864b752a Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Fri, 27 Jan 2017 20:49:33 -0800 Subject: [PATCH] Fix some notifier text --- data/interfaces/default/notifier_config.html | 6 +++--- plexpy/notifiers.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/data/interfaces/default/notifier_config.html b/data/interfaces/default/notifier_config.html index 1c624318..a9a81998 100644 --- a/data/interfaces/default/notifier_config.html +++ b/data/interfaces/default/notifier_config.html @@ -17,7 +17,7 @@ % if notifier['agent_name'] == 'scripts':
  • Script Triggers
  • Script Arguments
  • -
  • Test Scripts
  • +
  • Test Script
  • % else:
  • Notification Triggers
  • Notification Text
  • @@ -102,13 +102,13 @@
    - +
    -

    Optional: Enter a friendly identifier for the notification agent (e.g. Recently Added)

    +

    Optional: Enter a description to help identify this agent in the notification agents list.

    diff --git a/plexpy/notifiers.py b/plexpy/notifiers.py index f8dc2fcc..08eeccca 100644 --- a/plexpy/notifiers.py +++ b/plexpy/notifiers.py @@ -132,7 +132,7 @@ def available_notification_agents(): 'name': 'pushover', 'id': AGENT_IDS['pushover'] }, - {'label': 'Scripts', + {'label': 'Script', 'name': 'scripts', 'id': AGENT_IDS['scripts'] }, @@ -2360,14 +2360,14 @@ class SCRIPTS(Notifier): {'label': 'Script Folder', 'value': self.config['script_folder'], 'name': 'scripts_script_folder', - 'description': 'Enter the full path to your scripts folder.', + 'description': 'Enter the full path to your script folder.', 'input_type': 'text', 'refresh': True }, {'label': 'Script File', 'value': self.config['script'], 'name': 'scripts_script', - 'description': 'Choose the script file to run.', + 'description': 'Select the script file to run.', 'input_type': 'select', 'select_options': self.list_scripts() },