mirror of
https://github.com/catalyst/moodle-auth_outage.git
synced 2026-05-17 05:48:43 +02:00
Issue #11 - Added {{duration}} placeholder, changed default title.
This commit is contained in:
@@ -141,11 +141,13 @@ class outage {
|
||||
return str_replace(
|
||||
[
|
||||
'{{start}}',
|
||||
'{{stop}}'
|
||||
'{{stop}}',
|
||||
'{{duration}}',
|
||||
],
|
||||
[
|
||||
userdate($this->starttime, get_string('datetimeformat', 'auth_outage')),
|
||||
userdate($this->stoptime, get_string('datetimeformat', 'auth_outage')),
|
||||
format_time($this->get_duration()),
|
||||
],
|
||||
$str
|
||||
);
|
||||
|
||||
@@ -33,7 +33,7 @@ $string['defaultwarningduration'] = 'Warning Duration';
|
||||
$string['defaultwarningdurationdescription'] = 'Default warning time (in minutes) for outages.';
|
||||
$string['defaultwarningtitle'] = 'Title';
|
||||
$string['defaultwarningtitledescription'] = 'Default title for outages. Use {{start}} and {{stop}} placeholders as required.';
|
||||
$string['defaultwarningtitlevalue'] = 'System down from {{start}} to {{stop}}.';
|
||||
$string['defaultwarningtitlevalue'] = 'System down from {{start}} for {{duration}}.';
|
||||
$string['defaultwarningdescription'] = 'Description';
|
||||
$string['defaultwarningdescriptiondescription'] = 'Default warning message for outages. Use {{start}} and {{stop}} placeholders as required.';
|
||||
$string['defaultwarningdescriptionvalue'] = 'There is an scheduled maintenance from {{start}} to {{stop}} and our system will not be available during that time.';
|
||||
|
||||
Reference in New Issue
Block a user