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 @@
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()
},