Skip to content

Commit

Permalink
MDL-73188 usertours: Fix language string key typo
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Jan 26, 2022
1 parent f067a42 commit 049c7f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion admin/tool/usertours/classes/local/forms/editstep.php
Expand Up @@ -104,7 +104,7 @@ public function definition() {
$mform->setDefault('contenttype', static::CONTENTTYPE_MANUAL);

// Language identifier.
$mform->addElement('textarea', 'contentlangstring', get_string('moodle_language_identifider', 'tool_usertours'));
$mform->addElement('textarea', 'contentlangstring', get_string('moodle_language_identifier', 'tool_usertours'));
$mform->setType('contentlangstring', PARAM_TEXT);
$mform->hideIf('contentlangstring', 'contenttype', 'eq', static::CONTENTTYPE_MANUAL);

Expand Down
2 changes: 1 addition & 1 deletion admin/tool/usertours/lang/en/tool_usertours.php
Expand Up @@ -87,7 +87,7 @@
$string['invalid_lang_id'] = 'Invalid language identifier';
$string['left'] = 'Left';
$string['modifyshippedtourwarning'] = 'This is a user tour that has shipped with Moodle. Any modifications you make may be overridden during your next site upgrade.';
$string['moodle_language_identifider'] = 'Moodle language identifier';
$string['moodle_language_identifier'] = 'Moodle language identifier';
$string['movestepdown'] = 'Move step down';
$string['movestepup'] = 'Move step up';
$string['movetourdown'] = 'Move tour down';
Expand Down

0 comments on commit 049c7f0

Please sign in to comment.