Skip to content
Snippets Groups Projects
Commit 40b5f250 authored by Yorick Reum's avatar Yorick Reum Committed by Luca Bösch
Browse files

Added explanations as help texts.

parent 666647f0
No related branches found
No related tags found
No related merge requests found
......@@ -59,16 +59,16 @@ $string['error_wrong_trigger_selected'] = 'You tried to request a non-manual tri
$string['lifecycle_task'] = 'Run the life cycle processes';
$string['trigger_subpluginname'] = 'Subplugin Name';
$string['trigger_subpluginname_help'] = 'Subplugin Name';
$string['trigger_subpluginname_help'] = 'Choose the subplugin that you want to use for triggering. After selection, press "reload" to show the options for the subplugin.';
$string['trigger_instancename'] = 'Instance Name';
$string['trigger_instancename_help'] = 'Instance Name';
$string['trigger_instancename_help'] = 'Trigger instance title (visible for admins only).';
$string['trigger_enabled'] = 'Enabled';
$string['trigger_sortindex'] = 'Up/Down';
$string['trigger_workflow'] = 'Workflow';
$string['add_workflow'] = 'Add Workflow';
$string['workflow_title'] = 'Title';
$string['workflow_title_help'] = 'Title';
$string['workflow_title_help'] = 'Workflow title (visible for admins only).';
$string['workflow_displaytitle'] = 'Displayed workflow title';
$string['workflow_displaytitle_help'] = 'This title is displayed to users when managing their courses.';
$string['workflow_active'] = 'Active';
......@@ -85,9 +85,9 @@ $string['workflow_duplicate_title'] = '{$a} (Copy)';
$string['step_type'] = 'Type';
$string['step_subpluginname'] = 'Subplugin Name';
$string['step_subpluginname_help'] = 'Subplugin Name';
$string['step_subpluginname_help'] = 'Step subplugin/trigger title (visible for admins only).';
$string['step_instancename'] = 'Instance Name';
$string['step_instancename_help'] = 'Instance Name';
$string['step_instancename_help'] = 'Step instance title (visible for admins only).';
$string['step_sortindex'] = 'Up/Down';
$string['step_edit'] = 'Edit';
$string['step_show'] = 'Show';
......
......@@ -27,11 +27,26 @@ $string['pluginname'] = 'Email Step';
$string['email_responsetimeout'] = 'Time the user has for the response';
$string['email_subject'] = 'Subject Template';
$string['email_subject_help'] = 'Subject Template';
$string['email_content'] = 'Content Template';
$string['email_content_help'] = 'Content Template';
$string['email_content_html'] = 'Content HTML Template';
$string['email_content_html_help'] = 'Content HTML Template';
$email_placeholders_no_html =
'<p>' . 'You can use the following placeholders:'
. '<br>' . 'First name of recipient: ##firstname##'
. '<br>' . 'Last name of recipient: ##lastname##'
. '<br>' . 'Link to response page: ##link##'
. '<br>' . 'Impacted courses: ##courses##'
. '</p>';
$string['email_subject_help'] = 'Set the template for the subject of the email.' . $email_placeholders_no_html;
$string['email_content'] = 'Content plain text template';
$string['email_content_help'] = 'Set the template for the content of the email (plain text, alternatively you can use HTML template for HTML email below)' . $email_placeholders_no_html ;
$email_placeholders_html =
'<p>' . 'You can use the following placeholders:'
. '<br>' . 'First name of recipient: ##firstname##'
. '<br>' . 'Last name of recipient: ##lastname##'
. '<br>' . 'Link to response page: ##link-html##'
. '<br>' . 'Impacted courses: ##courses-html##'
. '</p>';
$string['email_content_html'] = 'Content HTML template';
$string['email_content_html_help'] = 'Set the html template for the content of the email (HTML email, will be used instead of plaintext field if not empty!)' . $email_placeholders_html;
$string['email:preventdeletion'] = 'Prevent Deletion';
$string['keep_course'] = 'Keep Course';
......
......@@ -25,8 +25,8 @@
$string['pluginname'] = 'Manual trigger';
$string['setting_capability'] = 'Capability';
$string['setting_capability_help'] = 'Capability';
$string['setting_capability_help'] = 'The Moodle Capability needed to see and invoke the trigger, e.g. "enrol/manual:enrol". Please see Moodle Access API documentation for details.';
$string['setting_icon'] = 'Icon';
$string['setting_icon_help'] = 'Icon';
$string['setting_icon_help'] = 'The Moodle icon to be showed to the user for this trigger, e.g. "core/tick". A full list of possible icons can be found at Moodle documentation.';
$string['setting_displayname'] = 'Action name';
$string['setting_displayname_help'] = 'Action name';
\ No newline at end of file
$string['setting_displayname_help'] = 'A name for the trigger action.';
\ No newline at end of file
......@@ -25,5 +25,5 @@
$string['pluginname'] = 'Start date delay trigger';
$string['delay'] = 'Delay from start of course til starting a process';
$string['delay_help'] = 'Delay from start of course til starting a process';
$string['delay'] = 'Delay from start of course until starting a process';
$string['delay_help'] = 'The trigger will be invoked if the time passed since the course has started is longer than this delay.';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment