Skip to content

Commit

Permalink
MDL-65279 core: typo in categoriesandcourses fixed
Browse files Browse the repository at this point in the history
AMOS BEGIN
 MOV [categoriesandcoures,core],[categoriesandcourses,core]
AMOS END
  • Loading branch information
Thomas Korner committed Apr 5, 2019
1 parent 2bcef03 commit 0553a6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion course/classes/management/helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ public static function action_category_move_courses_into(\core_course_category $
*/
public static function get_management_viewmodes() {
return array(
'combined' => new \lang_string('categoriesandcoures'),
'combined' => new \lang_string('categoriesandcourses'),
'categories' => new \lang_string('categories'),
'courses' => new \lang_string('courses')
);
Expand Down
2 changes: 1 addition & 1 deletion course/tests/behat/behat_course.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function i_create_a_course_with(TableNode $table) {

// Select Miscellaneous category.
$this->i_click_on_category_in_the_management_interface(get_string('miscellaneous'));
$this->execute("behat_course::i_should_see_the_courses_management_page", get_string('categoriesandcoures'));
$this->execute("behat_course::i_should_see_the_courses_management_page", get_string('categoriesandcourses'));

// Click create new course.
$this->execute('behat_general::i_click_on_in_the',
Expand Down
2 changes: 1 addition & 1 deletion lang/en/moodle.php
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
$string['cancel'] = 'Cancel';
$string['cancelled'] = 'Cancelled';
$string['categories'] = 'Course categories';
$string['categoriesandcoures'] = 'Course categories and courses';
$string['categoriesandcourses'] = 'Course categories and courses';
$string['category'] = 'Category';
$string['categoryadded'] = 'The category \'{$a}\' was added';
$string['categorybulkaction'] = 'Bulk actions for selected categories';
Expand Down

0 comments on commit 0553a6d

Please sign in to comment.