From d50645ebcae532eb18f954f2692c40e23ba619fd Mon Sep 17 00:00:00 2001 From: Andrew Robert Nicols Date: Fri, 18 Nov 2011 14:06:29 +0000 Subject: [PATCH 01/53] MDL-30350 Highlight late submissions in the submission overview page --- mod/assignment/lib.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/mod/assignment/lib.php b/mod/assignment/lib.php index 5d4d5fb3de..a7d50d9205 100644 --- a/mod/assignment/lib.php +++ b/mod/assignment/lib.php @@ -1409,6 +1409,7 @@ function display_submissions($message='') { $currentposition = 0; foreach ($ausers as $auser) { if ($currentposition == $offset && $offset < $endposition) { + $rowclass = null; $final_grade = $grading_info->items[0]->grades[$auser->id]; $grademax = $grading_info->items[0]->grademax; $final_grade->formatted_grade = round($final_grade->grade,2) .' / ' . round($grademax,2); @@ -1431,11 +1432,16 @@ function display_submissions($message='') { ///attach file or print link to student answer, depending on the type of the assignment. ///Refer to print_student_answer in inherited classes. if ($auser->timemodified > 0) { - $studentmodified = '
'.$this->print_student_answer($auser->id) - . userdate($auser->timemodified).'
'; + $studentmodifiedcontent = $this->print_student_answer($auser->id) + . userdate($auser->timemodified); + if ($assignment->timedue && $auser->timemodified > $assignment->timedue) { + $studentmodifiedcontent .= assignment_display_lateness($auser->timemodified, $assignment->timedue); + $rowclass = 'late'; + } } else { - $studentmodified = '
 
'; + $studentmodifiedcontent = ' '; } + $studentmodified = html_writer::tag('div', $studentmodifiedcontent, array('id' => 'ts' . $auser->id)); ///Print grade, dropdown or text if ($auser->timemarked > 0) { $teachermodified = '
'.userdate($auser->timemarked).'
'; @@ -1554,7 +1560,7 @@ function display_submissions($message='') { if ($uses_outcomes) { $row[] = $outcomes; } - $table->add_data($row); + $table->add_data($row, $rowclass); } $currentposition++; } From 6b2f218473ae72c7ca9ecd8a9a797734ff7b5052 Mon Sep 17 00:00:00 2001 From: Andrew Davis Date: Mon, 28 Nov 2011 12:58:44 +0800 Subject: [PATCH 02/53] MDL-27432 mod_data: improved handling of the absence of the GD php extension --- lib/filestorage/file_storage.php | 6 ++++++ mod/data/field/picture/field.class.php | 1 + 2 files changed, 7 insertions(+) diff --git a/lib/filestorage/file_storage.php b/lib/filestorage/file_storage.php index 21779e8233..05d015787a 100644 --- a/lib/filestorage/file_storage.php +++ b/lib/filestorage/file_storage.php @@ -987,6 +987,12 @@ public function create_file_from_string($file_record, $content) { * @return stored_file instance */ public function convert_image($file_record, $fid, $newwidth = NULL, $newheight = NULL, $keepaspectratio = true, $quality = NULL) { + if (!function_exists('imagecreatefromstring')) { + //Most likely the GD php extension isn't installed + //image conversion cannot succeed + throw new file_exception('storedfileproblem', 'imagecreatefromstring() doesnt exist. The PHP extension "GD" must be installed for image conversion.'); + } + if ($fid instanceof stored_file) { $fid = $fid->get_id(); } diff --git a/mod/data/field/picture/field.class.php b/mod/data/field/picture/field.class.php index 3086c84550..269e916815 100644 --- a/mod/data/field/picture/field.class.php +++ b/mod/data/field/picture/field.class.php @@ -266,6 +266,7 @@ function update_thumbnail($content, $file) { $fs->convert_image($file_record, $file, $this->field->param4, $this->field->param5, true); return true; } catch (Exception $e) { + debugging($e->getMessage()); return false; } } From 59c1a98c05eedc1a92ef5e6d60fe7d36536f8a3e Mon Sep 17 00:00:00 2001 From: Charles Fulton Date: Wed, 30 Nov 2011 05:47:50 -0800 Subject: [PATCH 03/53] MDL-30518 get_context_instance takes one parameter at the SYSTEM level --- tag/coursetags_edit.php | 2 +- user/profile/field/checkbox/field.class.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tag/coursetags_edit.php b/tag/coursetags_edit.php index be710fe1e5..18d40a45da 100644 --- a/tag/coursetags_edit.php +++ b/tag/coursetags_edit.php @@ -41,7 +41,7 @@ } // Permissions -$sitecontext = get_context_instance(CONTEXT_SYSTEM, SITEID); +$sitecontext = get_context_instance(CONTEXT_SYSTEM); require_login($course->id); $canedit = has_capability('moodle/tag:create', $sitecontext); diff --git a/user/profile/field/checkbox/field.class.php b/user/profile/field/checkbox/field.class.php index 75c955d54e..29aaf3dd9b 100644 --- a/user/profile/field/checkbox/field.class.php +++ b/user/profile/field/checkbox/field.class.php @@ -29,7 +29,7 @@ function edit_field_add(&$mform) { $checkbox->setChecked(true); } $mform->setType($this->inputname, PARAM_BOOL); - if ($this->is_required() and !has_capability('moodle/user:update', get_context_instance(CONTEXT_SYSTEM, SITEID))) { + if ($this->is_required() and !has_capability('moodle/user:update', get_context_instance(CONTEXT_SYSTEM))) { $mform->addRule($this->inputname, get_string('required'), 'nonzero', null, 'client'); } } From 5fad08b4a43fa5e76fac6c616f3a09aa148968a6 Mon Sep 17 00:00:00 2001 From: Charles Fulton Date: Tue, 15 Nov 2011 18:55:21 -0800 Subject: [PATCH 04/53] MDL-19147 - forum - Removed single discussions from the pull down menu for moving posts to different forums. --- mod/forum/discuss.php | 11 +++++++++-- mod/forum/lang/en/forum.php | 1 + 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/mod/forum/discuss.php b/mod/forum/discuss.php index 0e42828c9c..c4c5316dff 100644 --- a/mod/forum/discuss.php +++ b/mod/forum/discuss.php @@ -86,6 +86,10 @@ print_error('cannotmovetonotexist', 'forum', $return); } + if ($forumto->type == 'single') { + print_error('cannotmovetosingleforum', 'forum', $return); + } + if (!$cmto = get_coursemodule_from_instance('forum', $forumto->id, $course->id)) { print_error('cannotmovetonotfound', 'forum', $return); } @@ -221,18 +225,21 @@ if (isset($modinfo->instances['forum'])) { $forummenu = array(); $sections = get_all_sections($course->id); + // Check forum types and eliminate simple discussions. + $forumcheck = $DB->get_records('forum', array('course' => $course->id),'', 'id, type'); foreach ($modinfo->instances['forum'] as $forumcm) { if (!$forumcm->uservisible || !has_capability('mod/forum:startdiscussion', get_context_instance(CONTEXT_MODULE,$forumcm->id))) { continue; } - $section = $forumcm->sectionnum; $sectionname = get_section_name($course, $sections[$section]); if (empty($forummenu[$section])) { $forummenu[$section] = array($sectionname => array()); } - if ($forumcm->instance != $forum->id) { + $forumidcompare = $forumcm->instance != $forum->id; + $forumtypecheck = $forumcheck[$forumcm->instance]->type !== 'single'; + if ($forumidcompare and $forumtypecheck) { $url = "/mod/forum/discuss.php?d=$discussion->id&move=$forumcm->instance&sesskey=".sesskey(); $forummenu[$section][$sectionname][$url] = format_string($forumcm->name); } diff --git a/mod/forum/lang/en/forum.php b/mod/forum/lang/en/forum.php index 19da7f901b..7a1dc6441f 100644 --- a/mod/forum/lang/en/forum.php +++ b/mod/forum/lang/en/forum.php @@ -64,6 +64,7 @@ $string['cannotmovenotvisible'] = 'Forum not visible'; $string['cannotmovetonotexist'] = 'You can\'t move to that forum - it doesn\'t exist!'; $string['cannotmovetonotfound'] = 'Target forum not found in this course.'; +$string['cannotmovetosingleforum'] = 'Cannot move discussion to a simple single discussion forum'; $string['cannotpurgecachedrss'] = 'Could not purge the cached RSS feeds for the source and/or destination forum(s) - check your file permissionsforums'; $string['cannotremovesubscriber'] = 'Could not remove subscriber with id {$a} from this forum!'; $string['cannotreply'] = 'You cannot reply to this post'; From 21beddafa89ed6943483630d49689b4090dfa962 Mon Sep 17 00:00:00 2001 From: Igor Sazonov Date: Thu, 1 Dec 2011 16:21:07 +0000 Subject: [PATCH 05/53] MDL-27314 quiz attempts cannot be deleted in separate groups mode. --- mod/quiz/report/attemptsreport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/quiz/report/attemptsreport.php b/mod/quiz/report/attemptsreport.php index f26b2ec707..6c7ab35ea9 100644 --- a/mod/quiz/report/attemptsreport.php +++ b/mod/quiz/report/attemptsreport.php @@ -360,7 +360,7 @@ protected function delete_selected_attempts($quiz, $cm, $attemptids, $allowed) { // Ensure the attempt exists, and belongs to this quiz. If not skip. continue; } - if ($allowed && !array_key_exists($attempt->userid, $allowed)) { + if ($allowed && !in_array($attempt->userid, $allowed)) { // Ensure the attempt belongs to a student included in the report. If not skip. continue; } From 50d15ca47f8be2d485bc60b0c263775e98616a29 Mon Sep 17 00:00:00 2001 From: Sam Hemelryk Date: Fri, 2 Dec 2011 12:31:12 +1300 Subject: [PATCH 06/53] MDL-30543 navigation: Added missing course variable for user context --- lib/navigationlib.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/navigationlib.php b/lib/navigationlib.php index 845cfe63e1..6d67cced81 100644 --- a/lib/navigationlib.php +++ b/lib/navigationlib.php @@ -1216,6 +1216,7 @@ public function initialise() { } break; case CONTEXT_USER : + $course = $this->page->course; if ($showcategories && !$ismycourse) { $this->load_all_categories($course->category, $showcategories); } From 53581c768957d8d96d01c8d8a077a81514c9ca18 Mon Sep 17 00:00:00 2001 From: AMOS bot Date: Fri, 2 Dec 2011 00:30:48 +0000 Subject: [PATCH 07/53] Automatically generated installer lang files --- install/lang/af/admin.php | 2 +- install/lang/af/langconfig.php | 2 +- install/lang/am/install.php | 2 +- install/lang/am/langconfig.php | 2 +- install/lang/am/moodle.php | 2 +- install/lang/ar/admin.php | 2 +- install/lang/ar/error.php | 2 +- install/lang/ar/install.php | 2 +- install/lang/ar/langconfig.php | 2 +- install/lang/ar/moodle.php | 2 +- install/lang/ast/admin.php | 2 +- install/lang/ast/error.php | 2 +- install/lang/ast/install.php | 2 +- install/lang/ast/langconfig.php | 2 +- install/lang/ast/moodle.php | 2 +- install/lang/az/admin.php | 2 +- install/lang/az/error.php | 2 +- install/lang/az/install.php | 2 +- install/lang/az/langconfig.php | 2 +- install/lang/be/langconfig.php | 2 +- install/lang/be/moodle.php | 2 +- install/lang/bg/admin.php | 2 +- install/lang/bg/error.php | 2 +- install/lang/bg/install.php | 2 +- install/lang/bg/langconfig.php | 2 +- install/lang/bg/moodle.php | 2 +- install/lang/bn/admin.php | 2 +- install/lang/bn/install.php | 2 +- install/lang/bn/langconfig.php | 2 +- install/lang/bn/moodle.php | 2 +- install/lang/bs/install.php | 2 +- install/lang/bs/langconfig.php | 2 +- install/lang/ca/admin.php | 2 +- install/lang/ca/error.php | 2 +- install/lang/ca/install.php | 2 +- install/lang/ca/langconfig.php | 2 +- install/lang/ca/moodle.php | 2 +- install/lang/ckb/langconfig.php | 2 +- install/lang/cs/admin.php | 2 +- install/lang/cs/error.php | 2 +- install/lang/cs/install.php | 2 +- install/lang/cs/langconfig.php | 2 +- install/lang/cs/moodle.php | 2 +- install/lang/cy/admin.php | 2 +- install/lang/cy/error.php | 2 +- install/lang/cy/install.php | 2 +- install/lang/cy/langconfig.php | 2 +- install/lang/cy/moodle.php | 2 +- install/lang/da/admin.php | 2 +- install/lang/da/error.php | 2 +- install/lang/da/install.php | 2 +- install/lang/da/langconfig.php | 2 +- install/lang/da/moodle.php | 2 +- install/lang/de/admin.php | 2 +- install/lang/de/error.php | 2 +- install/lang/de/install.php | 2 +- install/lang/de/langconfig.php | 2 +- install/lang/de/moodle.php | 2 +- install/lang/de_du/error.php | 2 +- install/lang/de_du/install.php | 2 +- install/lang/de_du/langconfig.php | 2 +- install/lang/de_kids/langconfig.php | 2 +- install/lang/dv/admin.php | 2 +- install/lang/dv/error.php | 2 +- install/lang/dv/install.php | 2 +- install/lang/dv/langconfig.php | 2 +- install/lang/dv/moodle.php | 2 +- install/lang/el/admin.php | 2 +- install/lang/el/error.php | 2 +- install/lang/el/install.php | 2 +- install/lang/el/langconfig.php | 2 +- install/lang/el/moodle.php | 2 +- install/lang/en/admin.php | 2 +- install/lang/en/error.php | 2 +- install/lang/en/install.php | 2 +- install/lang/en/langconfig.php | 2 +- install/lang/en/moodle.php | 2 +- install/lang/en_us/install.php | 2 +- install/lang/en_us/langconfig.php | 2 +- install/lang/es/admin.php | 2 +- install/lang/es/error.php | 2 +- install/lang/es/install.php | 2 +- install/lang/es/langconfig.php | 2 +- install/lang/es/moodle.php | 2 +- install/lang/es_ar/langconfig.php | 2 +- install/lang/es_es/langconfig.php | 2 +- install/lang/es_mx/langconfig.php | 2 +- install/lang/et/admin.php | 2 +- install/lang/et/error.php | 2 +- install/lang/et/install.php | 2 +- install/lang/et/langconfig.php | 2 +- install/lang/et/moodle.php | 2 +- install/lang/eu/admin.php | 2 +- install/lang/eu/error.php | 2 +- install/lang/eu/install.php | 2 +- install/lang/eu/langconfig.php | 2 +- install/lang/eu/moodle.php | 2 +- install/lang/fa/admin.php | 2 +- install/lang/fa/install.php | 2 +- install/lang/fa/langconfig.php | 2 +- install/lang/fa/moodle.php | 2 +- install/lang/fi/admin.php | 2 +- install/lang/fi/error.php | 2 +- install/lang/fi/install.php | 2 +- install/lang/fi/langconfig.php | 2 +- install/lang/fi/moodle.php | 2 +- install/lang/fil/langconfig.php | 2 +- install/lang/fil/moodle.php | 2 +- install/lang/fj/langconfig.php | 2 +- install/lang/fr/admin.php | 2 +- install/lang/fr/error.php | 2 +- install/lang/fr/install.php | 2 +- install/lang/fr/langconfig.php | 2 +- install/lang/fr/moodle.php | 2 +- install/lang/fr_ca/install.php | 2 +- install/lang/fr_ca/langconfig.php | 2 +- install/lang/fr_ca/moodle.php | 2 +- install/lang/ga/langconfig.php | 2 +- install/lang/gd/langconfig.php | 2 +- install/lang/gl/admin.php | 2 +- install/lang/gl/error.php | 2 +- install/lang/gl/install.php | 2 +- install/lang/gl/langconfig.php | 2 +- install/lang/gl/moodle.php | 2 +- install/lang/gu/error.php | 2 +- install/lang/gu/langconfig.php | 2 +- install/lang/gu/moodle.php | 2 +- install/lang/he/admin.php | 2 +- install/lang/he/error.php | 2 +- install/lang/he/install.php | 2 +- install/lang/he/langconfig.php | 2 +- install/lang/he/moodle.php | 2 +- install/lang/hi/langconfig.php | 2 +- install/lang/hi/moodle.php | 2 +- install/lang/hr/admin.php | 2 +- install/lang/hr/error.php | 2 +- install/lang/hr/install.php | 2 +- install/lang/hr/langconfig.php | 2 +- install/lang/hr/moodle.php | 2 +- install/lang/hu/admin.php | 2 +- install/lang/hu/error.php | 2 +- install/lang/hu/install.php | 2 +- install/lang/hu/langconfig.php | 2 +- install/lang/hu/moodle.php | 2 +- install/lang/hy/admin.php | 2 +- install/lang/hy/error.php | 2 +- install/lang/hy/install.php | 2 +- install/lang/hy/langconfig.php | 2 +- install/lang/hy/moodle.php | 2 +- install/lang/id/langconfig.php | 2 +- install/lang/id/moodle.php | 2 +- install/lang/is/admin.php | 2 +- install/lang/is/error.php | 2 +- install/lang/is/install.php | 2 +- install/lang/is/langconfig.php | 2 +- install/lang/is/moodle.php | 2 +- install/lang/it/admin.php | 2 +- install/lang/it/error.php | 2 +- install/lang/it/install.php | 2 +- install/lang/it/langconfig.php | 2 +- install/lang/it/moodle.php | 2 +- install/lang/ja/admin.php | 2 +- install/lang/ja/error.php | 2 +- install/lang/ja/install.php | 2 +- install/lang/ja/langconfig.php | 2 +- install/lang/ja/moodle.php | 2 +- install/lang/ka/admin.php | 2 +- install/lang/ka/install.php | 2 +- install/lang/ka/langconfig.php | 2 +- install/lang/kk/install.php | 2 +- install/lang/kk/langconfig.php | 2 +- install/lang/kk/moodle.php | 2 +- install/lang/km/admin.php | 2 +- install/lang/km/error.php | 2 +- install/lang/km/install.php | 2 +- install/lang/km/langconfig.php | 2 +- install/lang/km/moodle.php | 2 +- install/lang/kn/langconfig.php | 2 +- install/lang/ko/admin.php | 2 +- install/lang/ko/error.php | 2 +- install/lang/ko/install.php | 2 +- install/lang/ko/langconfig.php | 2 +- install/lang/ko/moodle.php | 2 +- install/lang/la/langconfig.php | 2 +- install/lang/la/moodle.php | 2 +- install/lang/lo/admin.php | 2 +- install/lang/lo/install.php | 2 +- install/lang/lo/langconfig.php | 2 +- install/lang/lo/moodle.php | 2 +- install/lang/lt/langconfig.php | 2 +- install/lang/lt/moodle.php | 2 +- install/lang/lv/admin.php | 2 +- install/lang/lv/error.php | 2 +- install/lang/lv/install.php | 2 +- install/lang/lv/langconfig.php | 2 +- install/lang/lv/moodle.php | 2 +- install/lang/mi_tn/langconfig.php | 2 +- install/lang/mi_tn/moodle.php | 2 +- install/lang/mi_wwow/admin.php | 2 +- install/lang/mi_wwow/error.php | 2 +- install/lang/mi_wwow/install.php | 2 +- install/lang/mi_wwow/langconfig.php | 2 +- install/lang/mi_wwow/moodle.php | 2 +- install/lang/mk/admin.php | 2 +- install/lang/mk/error.php | 2 +- install/lang/mk/install.php | 2 +- install/lang/mk/langconfig.php | 2 +- install/lang/mk/moodle.php | 2 +- install/lang/ml/langconfig.php | 2 +- install/lang/ml/moodle.php | 2 +- install/lang/mn/admin.php | 2 +- install/lang/mn/error.php | 2 +- install/lang/mn/install.php | 2 +- install/lang/mn/langconfig.php | 2 +- install/lang/mn/moodle.php | 2 +- install/lang/mr/admin.php | 2 +- install/lang/mr/error.php | 2 +- install/lang/mr/install.php | 2 +- install/lang/mr/langconfig.php | 2 +- install/lang/mr/moodle.php | 2 +- install/lang/ms/langconfig.php | 2 +- install/lang/ne/langconfig.php | 2 +- install/lang/nl/admin.php | 2 +- install/lang/nl/error.php | 2 +- install/lang/nl/install.php | 2 +- install/lang/nl/langconfig.php | 2 +- install/lang/nl/moodle.php | 2 +- install/lang/nn/langconfig.php | 2 +- install/lang/nn/moodle.php | 2 +- install/lang/no/admin.php | 2 +- install/lang/no/error.php | 2 +- install/lang/no/install.php | 2 +- install/lang/no/langconfig.php | 2 +- install/lang/no/moodle.php | 2 +- install/lang/no_gr/langconfig.php | 2 +- install/lang/no_gr/moodle.php | 2 +- install/lang/oc_es/langconfig.php | 2 +- install/lang/pl/admin.php | 2 +- install/lang/pl/error.php | 2 +- install/lang/pl/install.php | 2 +- install/lang/pl/langconfig.php | 2 +- install/lang/pl/moodle.php | 2 +- install/lang/pt/admin.php | 2 +- install/lang/pt/error.php | 2 +- install/lang/pt/install.php | 2 +- install/lang/pt/langconfig.php | 2 +- install/lang/pt/moodle.php | 2 +- install/lang/pt_br/admin.php | 2 +- install/lang/pt_br/error.php | 2 +- install/lang/pt_br/install.php | 2 +- install/lang/pt_br/langconfig.php | 2 +- install/lang/pt_br/moodle.php | 2 +- install/lang/ro/admin.php | 2 +- install/lang/ro/error.php | 2 +- install/lang/ro/install.php | 2 +- install/lang/ro/langconfig.php | 2 +- install/lang/ro/moodle.php | 2 +- install/lang/ru/admin.php | 2 +- install/lang/ru/error.php | 2 +- install/lang/ru/install.php | 2 +- install/lang/ru/langconfig.php | 2 +- install/lang/ru/moodle.php | 2 +- install/lang/si/admin.php | 2 +- install/lang/si/error.php | 2 +- install/lang/si/install.php | 2 +- install/lang/si/langconfig.php | 2 +- install/lang/si/moodle.php | 2 +- install/lang/sk/admin.php | 2 +- install/lang/sk/error.php | 2 +- install/lang/sk/install.php | 2 +- install/lang/sk/langconfig.php | 2 +- install/lang/sk/moodle.php | 2 +- install/lang/sl/admin.php | 2 +- install/lang/sl/error.php | 2 +- install/lang/sl/install.php | 2 +- install/lang/sl/langconfig.php | 2 +- install/lang/sl/moodle.php | 2 +- install/lang/sm/install.php | 2 +- install/lang/sm/langconfig.php | 2 +- install/lang/sm/moodle.php | 2 +- install/lang/so/admin.php | 2 +- install/lang/so/install.php | 2 +- install/lang/so/langconfig.php | 2 +- install/lang/so/moodle.php | 2 +- install/lang/sq/langconfig.php | 2 +- install/lang/sq/moodle.php | 2 +- install/lang/sr/langconfig.php | 2 +- install/lang/sr_cr/admin.php | 2 +- install/lang/sr_cr/error.php | 2 +- install/lang/sr_cr/install.php | 2 +- install/lang/sr_cr/langconfig.php | 2 +- install/lang/sr_cr/moodle.php | 2 +- install/lang/sr_cr_bo/langconfig.php | 2 +- install/lang/sr_lt/admin.php | 2 +- install/lang/sr_lt/error.php | 2 +- install/lang/sr_lt/install.php | 2 +- install/lang/sr_lt/langconfig.php | 2 +- install/lang/sr_lt/moodle.php | 2 +- install/lang/sv/admin.php | 2 +- install/lang/sv/error.php | 2 +- install/lang/sv/install.php | 2 +- install/lang/sv/langconfig.php | 2 +- install/lang/sv/moodle.php | 2 +- install/lang/sv_fi/langconfig.php | 2 +- install/lang/sw/admin.php | 2 +- install/lang/ta/admin.php | 2 +- install/lang/ta/error.php | 2 +- install/lang/ta/install.php | 2 +- install/lang/ta/langconfig.php | 2 +- install/lang/ta/moodle.php | 2 +- install/lang/ta_lk/admin.php | 2 +- install/lang/ta_lk/error.php | 2 +- install/lang/ta_lk/install.php | 2 +- install/lang/ta_lk/langconfig.php | 2 +- install/lang/ta_lk/moodle.php | 2 +- install/lang/te/admin.php | 2 +- install/lang/te/langconfig.php | 2 +- install/lang/te/moodle.php | 2 +- install/lang/th/admin.php | 2 +- install/lang/th/install.php | 2 +- install/lang/th/langconfig.php | 2 +- install/lang/th/moodle.php | 2 +- install/lang/ti/langconfig.php | 2 +- install/lang/ti/moodle.php | 2 +- install/lang/tl/admin.php | 2 +- install/lang/tl/error.php | 2 +- install/lang/tl/install.php | 2 +- install/lang/tl/langconfig.php | 2 +- install/lang/tl/moodle.php | 2 +- install/lang/to/install.php | 2 +- install/lang/to/langconfig.php | 2 +- install/lang/to/moodle.php | 2 +- install/lang/tr/admin.php | 2 +- install/lang/tr/error.php | 2 +- install/lang/tr/install.php | 2 +- install/lang/tr/langconfig.php | 2 +- install/lang/tr/moodle.php | 2 +- install/lang/uk/langconfig.php | 2 +- install/lang/uk/moodle.php | 2 +- install/lang/ur/install.php | 2 +- install/lang/ur/langconfig.php | 2 +- install/lang/ur/moodle.php | 2 +- install/lang/uz/install.php | 2 +- install/lang/uz/langconfig.php | 2 +- install/lang/uz/moodle.php | 2 +- install/lang/vi/admin.php | 2 +- install/lang/vi/install.php | 2 +- install/lang/vi/langconfig.php | 2 +- install/lang/vi/moodle.php | 2 +- install/lang/wo/langconfig.php | 2 +- install/lang/zh_cn/admin.php | 2 +- install/lang/zh_cn/error.php | 2 +- install/lang/zh_cn/install.php | 2 +- install/lang/zh_cn/langconfig.php | 2 +- install/lang/zh_cn/moodle.php | 2 +- install/lang/zh_tw/admin.php | 2 +- install/lang/zh_tw/error.php | 2 +- install/lang/zh_tw/install.php | 2 +- install/lang/zh_tw/langconfig.php | 2 +- install/lang/zh_tw/moodle.php | 2 +- install/lang/zu/error.php | 2 +- install/lang/zu/install.php | 2 +- install/lang/zu/langconfig.php | 2 +- 363 files changed, 363 insertions(+), 363 deletions(-) diff --git a/install/lang/af/admin.php b/install/lang/af/admin.php index 8f2317035e..0fe5fffec3 100644 --- a/install/lang/af/admin.php +++ b/install/lang/af/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/af/langconfig.php b/install/lang/af/langconfig.php index 9ec41baa9c..44f288225c 100644 --- a/install/lang/af/langconfig.php +++ b/install/lang/af/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/am/install.php b/install/lang/am/install.php index 711048a9c3..998ffd7aa4 100644 --- a/install/lang/am/install.php +++ b/install/lang/am/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/am/langconfig.php b/install/lang/am/langconfig.php index 2184283f5d..ba5b329429 100644 --- a/install/lang/am/langconfig.php +++ b/install/lang/am/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/am/moodle.php b/install/lang/am/moodle.php index ff3a3927ca..7c810fadfe 100644 --- a/install/lang/am/moodle.php +++ b/install/lang/am/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ar/admin.php b/install/lang/ar/admin.php index 833772e360..cb04c416ad 100644 --- a/install/lang/ar/admin.php +++ b/install/lang/ar/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ar/error.php b/install/lang/ar/error.php index f287e93fce..a5b1955d4f 100644 --- a/install/lang/ar/error.php +++ b/install/lang/ar/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ar/install.php b/install/lang/ar/install.php index 8ec2c48986..0d29b2af84 100644 --- a/install/lang/ar/install.php +++ b/install/lang/ar/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ar/langconfig.php b/install/lang/ar/langconfig.php index d57f678969..3c5d63fd91 100644 --- a/install/lang/ar/langconfig.php +++ b/install/lang/ar/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ar/moodle.php b/install/lang/ar/moodle.php index a31788f02d..50e639e905 100644 --- a/install/lang/ar/moodle.php +++ b/install/lang/ar/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ast/admin.php b/install/lang/ast/admin.php index c6f7f60fe3..e5b0094390 100644 --- a/install/lang/ast/admin.php +++ b/install/lang/ast/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ast/error.php b/install/lang/ast/error.php index 049e3a04ba..e8f5a832a7 100644 --- a/install/lang/ast/error.php +++ b/install/lang/ast/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ast/install.php b/install/lang/ast/install.php index 11da837427..1d2201f528 100644 --- a/install/lang/ast/install.php +++ b/install/lang/ast/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ast/langconfig.php b/install/lang/ast/langconfig.php index cbfa52a796..8a1d48279b 100644 --- a/install/lang/ast/langconfig.php +++ b/install/lang/ast/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ast/moodle.php b/install/lang/ast/moodle.php index 3658f3d72a..dec7a41755 100644 --- a/install/lang/ast/moodle.php +++ b/install/lang/ast/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/az/admin.php b/install/lang/az/admin.php index 3ae8cae6b7..e9436368f1 100644 --- a/install/lang/az/admin.php +++ b/install/lang/az/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/az/error.php b/install/lang/az/error.php index e7fa541f28..1a55b833d8 100644 --- a/install/lang/az/error.php +++ b/install/lang/az/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/az/install.php b/install/lang/az/install.php index 7b0a16a400..dc431ffe87 100644 --- a/install/lang/az/install.php +++ b/install/lang/az/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/az/langconfig.php b/install/lang/az/langconfig.php index 924503224b..dd278f9e63 100644 --- a/install/lang/az/langconfig.php +++ b/install/lang/az/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/be/langconfig.php b/install/lang/be/langconfig.php index ecad0ad626..f8b87a1590 100644 --- a/install/lang/be/langconfig.php +++ b/install/lang/be/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/be/moodle.php b/install/lang/be/moodle.php index 71e43e5d80..bdede7ccbc 100644 --- a/install/lang/be/moodle.php +++ b/install/lang/be/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bg/admin.php b/install/lang/bg/admin.php index 24f114d4cd..a6d964843e 100644 --- a/install/lang/bg/admin.php +++ b/install/lang/bg/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bg/error.php b/install/lang/bg/error.php index d761ca504d..445d78e702 100644 --- a/install/lang/bg/error.php +++ b/install/lang/bg/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bg/install.php b/install/lang/bg/install.php index 716717efe6..ef6149250f 100644 --- a/install/lang/bg/install.php +++ b/install/lang/bg/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bg/langconfig.php b/install/lang/bg/langconfig.php index 60eaad648e..83e38f671b 100644 --- a/install/lang/bg/langconfig.php +++ b/install/lang/bg/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bg/moodle.php b/install/lang/bg/moodle.php index 218a3f914c..881e3163cf 100644 --- a/install/lang/bg/moodle.php +++ b/install/lang/bg/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bn/admin.php b/install/lang/bn/admin.php index 5d4de96b1b..c4086a3c6b 100644 --- a/install/lang/bn/admin.php +++ b/install/lang/bn/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bn/install.php b/install/lang/bn/install.php index fa5129f24d..25b6b1401d 100644 --- a/install/lang/bn/install.php +++ b/install/lang/bn/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bn/langconfig.php b/install/lang/bn/langconfig.php index c3b92d3d77..2e8761bfeb 100644 --- a/install/lang/bn/langconfig.php +++ b/install/lang/bn/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bn/moodle.php b/install/lang/bn/moodle.php index 6ffbb53cd6..b36b0d29bb 100644 --- a/install/lang/bn/moodle.php +++ b/install/lang/bn/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bs/install.php b/install/lang/bs/install.php index 99230a88de..3de4b5b94c 100644 --- a/install/lang/bs/install.php +++ b/install/lang/bs/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bs/langconfig.php b/install/lang/bs/langconfig.php index b622e39a2b..60639b397d 100644 --- a/install/lang/bs/langconfig.php +++ b/install/lang/bs/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ca/admin.php b/install/lang/ca/admin.php index 573916f357..106f200301 100644 --- a/install/lang/ca/admin.php +++ b/install/lang/ca/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ca/error.php b/install/lang/ca/error.php index b6dc99d3a4..2f31a88164 100644 --- a/install/lang/ca/error.php +++ b/install/lang/ca/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ca/install.php b/install/lang/ca/install.php index 19a10aaabc..723ee45f7d 100644 --- a/install/lang/ca/install.php +++ b/install/lang/ca/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ca/langconfig.php b/install/lang/ca/langconfig.php index c5c29f7c70..47ff126f77 100644 --- a/install/lang/ca/langconfig.php +++ b/install/lang/ca/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ca/moodle.php b/install/lang/ca/moodle.php index 6c7ea38d91..a9eed95954 100644 --- a/install/lang/ca/moodle.php +++ b/install/lang/ca/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ckb/langconfig.php b/install/lang/ckb/langconfig.php index 4901cd2c40..ce8991c5cf 100644 --- a/install/lang/ckb/langconfig.php +++ b/install/lang/ckb/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cs/admin.php b/install/lang/cs/admin.php index b620dd42b5..d42a75a73b 100644 --- a/install/lang/cs/admin.php +++ b/install/lang/cs/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cs/error.php b/install/lang/cs/error.php index 7077ab649c..a76faa2147 100644 --- a/install/lang/cs/error.php +++ b/install/lang/cs/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cs/install.php b/install/lang/cs/install.php index 8463281ccc..594f0ca4c9 100644 --- a/install/lang/cs/install.php +++ b/install/lang/cs/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cs/langconfig.php b/install/lang/cs/langconfig.php index 76dc93a0c5..4adcde58c4 100644 --- a/install/lang/cs/langconfig.php +++ b/install/lang/cs/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cs/moodle.php b/install/lang/cs/moodle.php index 4fe8128dc2..4522d87fcc 100644 --- a/install/lang/cs/moodle.php +++ b/install/lang/cs/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cy/admin.php b/install/lang/cy/admin.php index 32d176ccbf..2012b77869 100644 --- a/install/lang/cy/admin.php +++ b/install/lang/cy/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cy/error.php b/install/lang/cy/error.php index eefeb401a7..2a67a7d0e2 100644 --- a/install/lang/cy/error.php +++ b/install/lang/cy/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cy/install.php b/install/lang/cy/install.php index 7925c840ef..c00efcf563 100644 --- a/install/lang/cy/install.php +++ b/install/lang/cy/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cy/langconfig.php b/install/lang/cy/langconfig.php index 06bddd52f7..6f7e876435 100644 --- a/install/lang/cy/langconfig.php +++ b/install/lang/cy/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cy/moodle.php b/install/lang/cy/moodle.php index a68ee936df..24b025e045 100644 --- a/install/lang/cy/moodle.php +++ b/install/lang/cy/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/da/admin.php b/install/lang/da/admin.php index aecb5bef21..b5e7a8acf2 100644 --- a/install/lang/da/admin.php +++ b/install/lang/da/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/da/error.php b/install/lang/da/error.php index 614fa44840..0579d7a4c2 100644 --- a/install/lang/da/error.php +++ b/install/lang/da/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/da/install.php b/install/lang/da/install.php index d3c4cd1b50..b67a0a5606 100644 --- a/install/lang/da/install.php +++ b/install/lang/da/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/da/langconfig.php b/install/lang/da/langconfig.php index 0caf23935c..825cb34bc6 100644 --- a/install/lang/da/langconfig.php +++ b/install/lang/da/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/da/moodle.php b/install/lang/da/moodle.php index 3c9559aa70..ca06601ffa 100644 --- a/install/lang/da/moodle.php +++ b/install/lang/da/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de/admin.php b/install/lang/de/admin.php index 18ee033036..bbf2a254b8 100644 --- a/install/lang/de/admin.php +++ b/install/lang/de/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de/error.php b/install/lang/de/error.php index 8e068f1120..1a5ac1bf8c 100644 --- a/install/lang/de/error.php +++ b/install/lang/de/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de/install.php b/install/lang/de/install.php index 6e1bd1b056..53cafd5fa6 100644 --- a/install/lang/de/install.php +++ b/install/lang/de/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de/langconfig.php b/install/lang/de/langconfig.php index 5f3329eae7..b4b632cee4 100644 --- a/install/lang/de/langconfig.php +++ b/install/lang/de/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de/moodle.php b/install/lang/de/moodle.php index 7a48a53dca..5fb490b241 100644 --- a/install/lang/de/moodle.php +++ b/install/lang/de/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de_du/error.php b/install/lang/de_du/error.php index 91489f3be7..a9c4477b26 100644 --- a/install/lang/de_du/error.php +++ b/install/lang/de_du/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de_du/install.php b/install/lang/de_du/install.php index fc0f5b30fc..930c7867d0 100644 --- a/install/lang/de_du/install.php +++ b/install/lang/de_du/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de_du/langconfig.php b/install/lang/de_du/langconfig.php index 860366b040..dc321f7596 100644 --- a/install/lang/de_du/langconfig.php +++ b/install/lang/de_du/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de_kids/langconfig.php b/install/lang/de_kids/langconfig.php index 202a890f60..ade344fbcc 100644 --- a/install/lang/de_kids/langconfig.php +++ b/install/lang/de_kids/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/dv/admin.php b/install/lang/dv/admin.php index f63370b057..4a42b80d0b 100644 --- a/install/lang/dv/admin.php +++ b/install/lang/dv/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/dv/error.php b/install/lang/dv/error.php index 066eb28ff0..3c0b7c18d9 100644 --- a/install/lang/dv/error.php +++ b/install/lang/dv/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/dv/install.php b/install/lang/dv/install.php index 21edf30d74..0bcc31d09e 100644 --- a/install/lang/dv/install.php +++ b/install/lang/dv/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/dv/langconfig.php b/install/lang/dv/langconfig.php index 430cb8004b..49e0b9b761 100644 --- a/install/lang/dv/langconfig.php +++ b/install/lang/dv/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/dv/moodle.php b/install/lang/dv/moodle.php index 938708b61c..36493efa8d 100644 --- a/install/lang/dv/moodle.php +++ b/install/lang/dv/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/el/admin.php b/install/lang/el/admin.php index eef32ef7a8..8b9fb684e0 100644 --- a/install/lang/el/admin.php +++ b/install/lang/el/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/el/error.php b/install/lang/el/error.php index 4c9ab55e1f..baafc2a9fc 100644 --- a/install/lang/el/error.php +++ b/install/lang/el/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/el/install.php b/install/lang/el/install.php index e60b7af4e0..821fa88efa 100644 --- a/install/lang/el/install.php +++ b/install/lang/el/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/el/langconfig.php b/install/lang/el/langconfig.php index c3e337cfb8..a48362e65a 100644 --- a/install/lang/el/langconfig.php +++ b/install/lang/el/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/el/moodle.php b/install/lang/el/moodle.php index eab715b690..2d64e2d8e9 100644 --- a/install/lang/el/moodle.php +++ b/install/lang/el/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en/admin.php b/install/lang/en/admin.php index 07394712ce..5df4dff4cf 100644 --- a/install/lang/en/admin.php +++ b/install/lang/en/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en/error.php b/install/lang/en/error.php index 7b9c71391f..77a518f872 100644 --- a/install/lang/en/error.php +++ b/install/lang/en/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en/install.php b/install/lang/en/install.php index 652120c257..15b4379be4 100644 --- a/install/lang/en/install.php +++ b/install/lang/en/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en/langconfig.php b/install/lang/en/langconfig.php index f53d7e1120..981573b203 100644 --- a/install/lang/en/langconfig.php +++ b/install/lang/en/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en/moodle.php b/install/lang/en/moodle.php index af0a936b0c..389d7340b7 100644 --- a/install/lang/en/moodle.php +++ b/install/lang/en/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en_us/install.php b/install/lang/en_us/install.php index a06bdd56a4..1ea8e3e098 100644 --- a/install/lang/en_us/install.php +++ b/install/lang/en_us/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en_us/langconfig.php b/install/lang/en_us/langconfig.php index e1e807c598..8a651023e7 100644 --- a/install/lang/en_us/langconfig.php +++ b/install/lang/en_us/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es/admin.php b/install/lang/es/admin.php index 0d23d2f53c..f4807b4814 100644 --- a/install/lang/es/admin.php +++ b/install/lang/es/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es/error.php b/install/lang/es/error.php index 545c124041..1bc930d939 100644 --- a/install/lang/es/error.php +++ b/install/lang/es/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es/install.php b/install/lang/es/install.php index f834135d68..6a2d68825e 100644 --- a/install/lang/es/install.php +++ b/install/lang/es/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es/langconfig.php b/install/lang/es/langconfig.php index 4f668e979a..327211ae9d 100644 --- a/install/lang/es/langconfig.php +++ b/install/lang/es/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es/moodle.php b/install/lang/es/moodle.php index ded914a6ec..676f38e0b6 100644 --- a/install/lang/es/moodle.php +++ b/install/lang/es/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es_ar/langconfig.php b/install/lang/es_ar/langconfig.php index a4f84a5b08..d229874212 100644 --- a/install/lang/es_ar/langconfig.php +++ b/install/lang/es_ar/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es_es/langconfig.php b/install/lang/es_es/langconfig.php index 58ae4eb877..d8b10c0b9c 100644 --- a/install/lang/es_es/langconfig.php +++ b/install/lang/es_es/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es_mx/langconfig.php b/install/lang/es_mx/langconfig.php index 42d0228574..55fd376384 100644 --- a/install/lang/es_mx/langconfig.php +++ b/install/lang/es_mx/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/et/admin.php b/install/lang/et/admin.php index ee2521a177..9e19d331d0 100644 --- a/install/lang/et/admin.php +++ b/install/lang/et/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/et/error.php b/install/lang/et/error.php index eaf101c6e6..cb5139eacc 100644 --- a/install/lang/et/error.php +++ b/install/lang/et/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/et/install.php b/install/lang/et/install.php index f29e2fbecc..c566b4474d 100644 --- a/install/lang/et/install.php +++ b/install/lang/et/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/et/langconfig.php b/install/lang/et/langconfig.php index 9333692784..9a65329ff4 100644 --- a/install/lang/et/langconfig.php +++ b/install/lang/et/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/et/moodle.php b/install/lang/et/moodle.php index 6a18b7bb74..b807717699 100644 --- a/install/lang/et/moodle.php +++ b/install/lang/et/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/eu/admin.php b/install/lang/eu/admin.php index cbd7ac5a22..c6c61f993c 100644 --- a/install/lang/eu/admin.php +++ b/install/lang/eu/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/eu/error.php b/install/lang/eu/error.php index dd1fffca7e..2b58f49e7c 100644 --- a/install/lang/eu/error.php +++ b/install/lang/eu/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/eu/install.php b/install/lang/eu/install.php index ee310d7e29..d0c62a460c 100644 --- a/install/lang/eu/install.php +++ b/install/lang/eu/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/eu/langconfig.php b/install/lang/eu/langconfig.php index fedb7c087e..3dd6718e9a 100644 --- a/install/lang/eu/langconfig.php +++ b/install/lang/eu/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/eu/moodle.php b/install/lang/eu/moodle.php index 412b55ed18..9f7a6b41ae 100644 --- a/install/lang/eu/moodle.php +++ b/install/lang/eu/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fa/admin.php b/install/lang/fa/admin.php index 3ff1beabaa..cf9b43710c 100644 --- a/install/lang/fa/admin.php +++ b/install/lang/fa/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fa/install.php b/install/lang/fa/install.php index c34d2ccb0d..e2cfaa53bc 100644 --- a/install/lang/fa/install.php +++ b/install/lang/fa/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fa/langconfig.php b/install/lang/fa/langconfig.php index 4753d1c638..9b3bc1a2ea 100644 --- a/install/lang/fa/langconfig.php +++ b/install/lang/fa/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fa/moodle.php b/install/lang/fa/moodle.php index 219462bf7e..7a98443479 100644 --- a/install/lang/fa/moodle.php +++ b/install/lang/fa/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fi/admin.php b/install/lang/fi/admin.php index 01abe65797..8002142a98 100644 --- a/install/lang/fi/admin.php +++ b/install/lang/fi/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fi/error.php b/install/lang/fi/error.php index 29e448a54b..ad3bc1ccdb 100644 --- a/install/lang/fi/error.php +++ b/install/lang/fi/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fi/install.php b/install/lang/fi/install.php index aadc09ac8d..d899bc2b8b 100644 --- a/install/lang/fi/install.php +++ b/install/lang/fi/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fi/langconfig.php b/install/lang/fi/langconfig.php index 79e7e09ee4..63ef895078 100644 --- a/install/lang/fi/langconfig.php +++ b/install/lang/fi/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fi/moodle.php b/install/lang/fi/moodle.php index 4156d14f76..bd36a4ac3c 100644 --- a/install/lang/fi/moodle.php +++ b/install/lang/fi/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fil/langconfig.php b/install/lang/fil/langconfig.php index 7b48524317..45ba62769a 100644 --- a/install/lang/fil/langconfig.php +++ b/install/lang/fil/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fil/moodle.php b/install/lang/fil/moodle.php index 382357cf11..b6a639d17f 100644 --- a/install/lang/fil/moodle.php +++ b/install/lang/fil/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fj/langconfig.php b/install/lang/fj/langconfig.php index b85a8454e2..b22c9f89cc 100644 --- a/install/lang/fj/langconfig.php +++ b/install/lang/fj/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr/admin.php b/install/lang/fr/admin.php index cd78f6fe89..25203454f1 100644 --- a/install/lang/fr/admin.php +++ b/install/lang/fr/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr/error.php b/install/lang/fr/error.php index 589a483462..5fa129723f 100644 --- a/install/lang/fr/error.php +++ b/install/lang/fr/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr/install.php b/install/lang/fr/install.php index 10da099f98..1036803031 100644 --- a/install/lang/fr/install.php +++ b/install/lang/fr/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr/langconfig.php b/install/lang/fr/langconfig.php index 09c799d2b6..87b47cb234 100644 --- a/install/lang/fr/langconfig.php +++ b/install/lang/fr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr/moodle.php b/install/lang/fr/moodle.php index 085eb8d21c..cd24ecf5c0 100644 --- a/install/lang/fr/moodle.php +++ b/install/lang/fr/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr_ca/install.php b/install/lang/fr_ca/install.php index fdbd30edf6..047b11adfc 100644 --- a/install/lang/fr_ca/install.php +++ b/install/lang/fr_ca/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr_ca/langconfig.php b/install/lang/fr_ca/langconfig.php index 27f2043f6a..e9ac08d0bc 100644 --- a/install/lang/fr_ca/langconfig.php +++ b/install/lang/fr_ca/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr_ca/moodle.php b/install/lang/fr_ca/moodle.php index 1434e1496e..7300baf137 100644 --- a/install/lang/fr_ca/moodle.php +++ b/install/lang/fr_ca/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ga/langconfig.php b/install/lang/ga/langconfig.php index 54faef1ecf..c3e0ed593f 100644 --- a/install/lang/ga/langconfig.php +++ b/install/lang/ga/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gd/langconfig.php b/install/lang/gd/langconfig.php index 8d186e34ce..ca393dd0ce 100644 --- a/install/lang/gd/langconfig.php +++ b/install/lang/gd/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gl/admin.php b/install/lang/gl/admin.php index 3ac17b29f7..818de767f7 100644 --- a/install/lang/gl/admin.php +++ b/install/lang/gl/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gl/error.php b/install/lang/gl/error.php index 62ae424755..c8acdb90ec 100644 --- a/install/lang/gl/error.php +++ b/install/lang/gl/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gl/install.php b/install/lang/gl/install.php index f75497b157..2d5c2eebd6 100644 --- a/install/lang/gl/install.php +++ b/install/lang/gl/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gl/langconfig.php b/install/lang/gl/langconfig.php index 16bfbf5e51..0f2f5cda50 100644 --- a/install/lang/gl/langconfig.php +++ b/install/lang/gl/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gl/moodle.php b/install/lang/gl/moodle.php index a1d68a1d60..e1bcf48bc3 100644 --- a/install/lang/gl/moodle.php +++ b/install/lang/gl/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gu/error.php b/install/lang/gu/error.php index c8a9be4d5c..db19297ea2 100644 --- a/install/lang/gu/error.php +++ b/install/lang/gu/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gu/langconfig.php b/install/lang/gu/langconfig.php index 6d3e577cff..26f3ea69f9 100644 --- a/install/lang/gu/langconfig.php +++ b/install/lang/gu/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gu/moodle.php b/install/lang/gu/moodle.php index bafc206a0a..2f83d378c4 100644 --- a/install/lang/gu/moodle.php +++ b/install/lang/gu/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/he/admin.php b/install/lang/he/admin.php index 6faa8c4926..2e23323151 100644 --- a/install/lang/he/admin.php +++ b/install/lang/he/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/he/error.php b/install/lang/he/error.php index bb76ddf90f..976ecf0cef 100644 --- a/install/lang/he/error.php +++ b/install/lang/he/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/he/install.php b/install/lang/he/install.php index c9842a670b..d0807d4583 100644 --- a/install/lang/he/install.php +++ b/install/lang/he/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/he/langconfig.php b/install/lang/he/langconfig.php index bf129c7bc1..9285b400fb 100644 --- a/install/lang/he/langconfig.php +++ b/install/lang/he/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/he/moodle.php b/install/lang/he/moodle.php index b564396489..61c5465479 100644 --- a/install/lang/he/moodle.php +++ b/install/lang/he/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hi/langconfig.php b/install/lang/hi/langconfig.php index 17eccf7bc4..7b7041015b 100644 --- a/install/lang/hi/langconfig.php +++ b/install/lang/hi/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hi/moodle.php b/install/lang/hi/moodle.php index e7685439bc..d23a4b49aa 100644 --- a/install/lang/hi/moodle.php +++ b/install/lang/hi/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hr/admin.php b/install/lang/hr/admin.php index 4f3034db9d..ffd8325c01 100644 --- a/install/lang/hr/admin.php +++ b/install/lang/hr/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hr/error.php b/install/lang/hr/error.php index 696936efe6..383e6eae25 100644 --- a/install/lang/hr/error.php +++ b/install/lang/hr/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hr/install.php b/install/lang/hr/install.php index 230b2cda6a..8f2241db9e 100644 --- a/install/lang/hr/install.php +++ b/install/lang/hr/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hr/langconfig.php b/install/lang/hr/langconfig.php index 2770605334..58db219ce1 100644 --- a/install/lang/hr/langconfig.php +++ b/install/lang/hr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hr/moodle.php b/install/lang/hr/moodle.php index d0635d6ca3..afd82b69c2 100644 --- a/install/lang/hr/moodle.php +++ b/install/lang/hr/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hu/admin.php b/install/lang/hu/admin.php index daeec52c3e..8f2f8d8b24 100644 --- a/install/lang/hu/admin.php +++ b/install/lang/hu/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hu/error.php b/install/lang/hu/error.php index 07db7834a6..6b6aa7ce57 100644 --- a/install/lang/hu/error.php +++ b/install/lang/hu/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hu/install.php b/install/lang/hu/install.php index 85b4ce00b2..1261f4f9e0 100644 --- a/install/lang/hu/install.php +++ b/install/lang/hu/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hu/langconfig.php b/install/lang/hu/langconfig.php index efdc231496..f0a12265b6 100644 --- a/install/lang/hu/langconfig.php +++ b/install/lang/hu/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hu/moodle.php b/install/lang/hu/moodle.php index c647042c15..7a2e90cbba 100644 --- a/install/lang/hu/moodle.php +++ b/install/lang/hu/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hy/admin.php b/install/lang/hy/admin.php index 36a9d1b739..bdfcb1d046 100644 --- a/install/lang/hy/admin.php +++ b/install/lang/hy/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hy/error.php b/install/lang/hy/error.php index b151010d7e..9d18d780d5 100644 --- a/install/lang/hy/error.php +++ b/install/lang/hy/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hy/install.php b/install/lang/hy/install.php index 636ccac34f..d40c02e973 100644 --- a/install/lang/hy/install.php +++ b/install/lang/hy/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hy/langconfig.php b/install/lang/hy/langconfig.php index f63f5080ae..736c08252c 100644 --- a/install/lang/hy/langconfig.php +++ b/install/lang/hy/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hy/moodle.php b/install/lang/hy/moodle.php index 5d32c09288..3868912718 100644 --- a/install/lang/hy/moodle.php +++ b/install/lang/hy/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/id/langconfig.php b/install/lang/id/langconfig.php index 086608fa73..f3a66c5792 100644 --- a/install/lang/id/langconfig.php +++ b/install/lang/id/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/id/moodle.php b/install/lang/id/moodle.php index cbda514252..69facaa847 100644 --- a/install/lang/id/moodle.php +++ b/install/lang/id/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/is/admin.php b/install/lang/is/admin.php index ddca999c95..09d32d6819 100644 --- a/install/lang/is/admin.php +++ b/install/lang/is/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/is/error.php b/install/lang/is/error.php index 1152df1f01..b5ae98b979 100644 --- a/install/lang/is/error.php +++ b/install/lang/is/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/is/install.php b/install/lang/is/install.php index b29a29a220..ec8613d8c4 100644 --- a/install/lang/is/install.php +++ b/install/lang/is/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/is/langconfig.php b/install/lang/is/langconfig.php index 64588d53aa..00de3a9f1e 100644 --- a/install/lang/is/langconfig.php +++ b/install/lang/is/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/is/moodle.php b/install/lang/is/moodle.php index 1fdb0dbe7f..e912f9ffce 100644 --- a/install/lang/is/moodle.php +++ b/install/lang/is/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/it/admin.php b/install/lang/it/admin.php index def976dd14..332cbe8fbf 100644 --- a/install/lang/it/admin.php +++ b/install/lang/it/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/it/error.php b/install/lang/it/error.php index b4489668ce..923eb08029 100644 --- a/install/lang/it/error.php +++ b/install/lang/it/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/it/install.php b/install/lang/it/install.php index ce85affe2b..15f1bbc2a8 100644 --- a/install/lang/it/install.php +++ b/install/lang/it/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/it/langconfig.php b/install/lang/it/langconfig.php index c28a8fef17..9a4ce0b0ae 100644 --- a/install/lang/it/langconfig.php +++ b/install/lang/it/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/it/moodle.php b/install/lang/it/moodle.php index 9f963a9331..b3d92ceea9 100644 --- a/install/lang/it/moodle.php +++ b/install/lang/it/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ja/admin.php b/install/lang/ja/admin.php index 03588c05f8..75db4a98dd 100644 --- a/install/lang/ja/admin.php +++ b/install/lang/ja/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ja/error.php b/install/lang/ja/error.php index 9d16358f79..ec4e1d0552 100644 --- a/install/lang/ja/error.php +++ b/install/lang/ja/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ja/install.php b/install/lang/ja/install.php index f5944c904b..db2b571aa7 100644 --- a/install/lang/ja/install.php +++ b/install/lang/ja/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ja/langconfig.php b/install/lang/ja/langconfig.php index a15b24214e..bb22786f45 100644 --- a/install/lang/ja/langconfig.php +++ b/install/lang/ja/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ja/moodle.php b/install/lang/ja/moodle.php index 61990e124b..266a6bcde5 100644 --- a/install/lang/ja/moodle.php +++ b/install/lang/ja/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ka/admin.php b/install/lang/ka/admin.php index 38307ea24f..51e4b86ff1 100644 --- a/install/lang/ka/admin.php +++ b/install/lang/ka/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ka/install.php b/install/lang/ka/install.php index 3d6418977b..47700e1570 100644 --- a/install/lang/ka/install.php +++ b/install/lang/ka/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ka/langconfig.php b/install/lang/ka/langconfig.php index 9c0df3c0fb..6e198ee5c8 100644 --- a/install/lang/ka/langconfig.php +++ b/install/lang/ka/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/kk/install.php b/install/lang/kk/install.php index 25b4b64b35..2a57049003 100644 --- a/install/lang/kk/install.php +++ b/install/lang/kk/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/kk/langconfig.php b/install/lang/kk/langconfig.php index f060faa679..b4f93d8b5e 100644 --- a/install/lang/kk/langconfig.php +++ b/install/lang/kk/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/kk/moodle.php b/install/lang/kk/moodle.php index 83acf64b0b..c5baaa86ec 100644 --- a/install/lang/kk/moodle.php +++ b/install/lang/kk/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/km/admin.php b/install/lang/km/admin.php index 52ab3795d8..38fc620f4a 100644 --- a/install/lang/km/admin.php +++ b/install/lang/km/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/km/error.php b/install/lang/km/error.php index 2b5e4a182c..d059950eb6 100644 --- a/install/lang/km/error.php +++ b/install/lang/km/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/km/install.php b/install/lang/km/install.php index 7f95317324..4ef63ce937 100644 --- a/install/lang/km/install.php +++ b/install/lang/km/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/km/langconfig.php b/install/lang/km/langconfig.php index d8fc690648..ca468f1b34 100644 --- a/install/lang/km/langconfig.php +++ b/install/lang/km/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/km/moodle.php b/install/lang/km/moodle.php index 2f06039166..c67816cbc1 100644 --- a/install/lang/km/moodle.php +++ b/install/lang/km/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/kn/langconfig.php b/install/lang/kn/langconfig.php index 5196e37a52..62f3c8bf85 100644 --- a/install/lang/kn/langconfig.php +++ b/install/lang/kn/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ko/admin.php b/install/lang/ko/admin.php index 393d4004eb..86eca70394 100644 --- a/install/lang/ko/admin.php +++ b/install/lang/ko/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ko/error.php b/install/lang/ko/error.php index 3d1d72f0bd..a74e4eb53c 100644 --- a/install/lang/ko/error.php +++ b/install/lang/ko/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ko/install.php b/install/lang/ko/install.php index 9b7fd02749..e04bbc690f 100644 --- a/install/lang/ko/install.php +++ b/install/lang/ko/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ko/langconfig.php b/install/lang/ko/langconfig.php index a740f43a72..f9c5fc442c 100644 --- a/install/lang/ko/langconfig.php +++ b/install/lang/ko/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ko/moodle.php b/install/lang/ko/moodle.php index 5fec62beac..1213c33720 100644 --- a/install/lang/ko/moodle.php +++ b/install/lang/ko/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/la/langconfig.php b/install/lang/la/langconfig.php index 9a4685879c..e684771eb7 100644 --- a/install/lang/la/langconfig.php +++ b/install/lang/la/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/la/moodle.php b/install/lang/la/moodle.php index 90559633e7..718bcebe63 100644 --- a/install/lang/la/moodle.php +++ b/install/lang/la/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lo/admin.php b/install/lang/lo/admin.php index 874ffd1a1a..903a32a002 100644 --- a/install/lang/lo/admin.php +++ b/install/lang/lo/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lo/install.php b/install/lang/lo/install.php index 8bd5c1b0f9..a5f1ab695b 100644 --- a/install/lang/lo/install.php +++ b/install/lang/lo/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lo/langconfig.php b/install/lang/lo/langconfig.php index 5b9a31d098..4e0fe11af7 100644 --- a/install/lang/lo/langconfig.php +++ b/install/lang/lo/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lo/moodle.php b/install/lang/lo/moodle.php index 6dd8d60689..4a6abebedb 100644 --- a/install/lang/lo/moodle.php +++ b/install/lang/lo/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lt/langconfig.php b/install/lang/lt/langconfig.php index f2a2f31880..7e1483a2f9 100644 --- a/install/lang/lt/langconfig.php +++ b/install/lang/lt/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lt/moodle.php b/install/lang/lt/moodle.php index e063502d10..3e68c4a8d2 100644 --- a/install/lang/lt/moodle.php +++ b/install/lang/lt/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lv/admin.php b/install/lang/lv/admin.php index c66a70f809..f77f86c19b 100644 --- a/install/lang/lv/admin.php +++ b/install/lang/lv/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lv/error.php b/install/lang/lv/error.php index f97d7b6473..9708a15314 100644 --- a/install/lang/lv/error.php +++ b/install/lang/lv/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lv/install.php b/install/lang/lv/install.php index be3e4cd138..965a708189 100644 --- a/install/lang/lv/install.php +++ b/install/lang/lv/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lv/langconfig.php b/install/lang/lv/langconfig.php index 6a08d0b22b..2bd0d7dab5 100644 --- a/install/lang/lv/langconfig.php +++ b/install/lang/lv/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lv/moodle.php b/install/lang/lv/moodle.php index 8dd053efdf..9386dbcc02 100644 --- a/install/lang/lv/moodle.php +++ b/install/lang/lv/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_tn/langconfig.php b/install/lang/mi_tn/langconfig.php index ff172dee70..d49138b2b2 100644 --- a/install/lang/mi_tn/langconfig.php +++ b/install/lang/mi_tn/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_tn/moodle.php b/install/lang/mi_tn/moodle.php index 2fd52c9fee..91e32c8471 100644 --- a/install/lang/mi_tn/moodle.php +++ b/install/lang/mi_tn/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_wwow/admin.php b/install/lang/mi_wwow/admin.php index 91e00e0195..868514b1e4 100644 --- a/install/lang/mi_wwow/admin.php +++ b/install/lang/mi_wwow/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_wwow/error.php b/install/lang/mi_wwow/error.php index 16a840c347..1ffc2500dd 100644 --- a/install/lang/mi_wwow/error.php +++ b/install/lang/mi_wwow/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_wwow/install.php b/install/lang/mi_wwow/install.php index b596dc9ec8..a006e706d2 100644 --- a/install/lang/mi_wwow/install.php +++ b/install/lang/mi_wwow/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_wwow/langconfig.php b/install/lang/mi_wwow/langconfig.php index 9c4ce6e359..36e08c9c69 100644 --- a/install/lang/mi_wwow/langconfig.php +++ b/install/lang/mi_wwow/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_wwow/moodle.php b/install/lang/mi_wwow/moodle.php index 0c620ad0f3..572533908b 100644 --- a/install/lang/mi_wwow/moodle.php +++ b/install/lang/mi_wwow/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mk/admin.php b/install/lang/mk/admin.php index 8312cfdf7c..80a6a38c2f 100644 --- a/install/lang/mk/admin.php +++ b/install/lang/mk/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mk/error.php b/install/lang/mk/error.php index 41334dc117..94a0324859 100644 --- a/install/lang/mk/error.php +++ b/install/lang/mk/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mk/install.php b/install/lang/mk/install.php index 1dd15cbd52..c38634e0fd 100644 --- a/install/lang/mk/install.php +++ b/install/lang/mk/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mk/langconfig.php b/install/lang/mk/langconfig.php index d67efe825a..fc50bfb55e 100644 --- a/install/lang/mk/langconfig.php +++ b/install/lang/mk/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mk/moodle.php b/install/lang/mk/moodle.php index 806bb80b0a..940f3a220a 100644 --- a/install/lang/mk/moodle.php +++ b/install/lang/mk/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ml/langconfig.php b/install/lang/ml/langconfig.php index 0f03f105e7..c8f62c781f 100644 --- a/install/lang/ml/langconfig.php +++ b/install/lang/ml/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ml/moodle.php b/install/lang/ml/moodle.php index 7c4f03f9ad..4dccbebfa6 100644 --- a/install/lang/ml/moodle.php +++ b/install/lang/ml/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mn/admin.php b/install/lang/mn/admin.php index 0d0a4859f2..620344fae1 100644 --- a/install/lang/mn/admin.php +++ b/install/lang/mn/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mn/error.php b/install/lang/mn/error.php index 1acfd63a23..d86b052c15 100644 --- a/install/lang/mn/error.php +++ b/install/lang/mn/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mn/install.php b/install/lang/mn/install.php index 9cd66446f7..8a7a3c7933 100644 --- a/install/lang/mn/install.php +++ b/install/lang/mn/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mn/langconfig.php b/install/lang/mn/langconfig.php index dff90d293d..f48ad11b3b 100644 --- a/install/lang/mn/langconfig.php +++ b/install/lang/mn/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mn/moodle.php b/install/lang/mn/moodle.php index 049a1236a5..5ce16ac1f2 100644 --- a/install/lang/mn/moodle.php +++ b/install/lang/mn/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mr/admin.php b/install/lang/mr/admin.php index de8bb359b3..cfe1c0b343 100644 --- a/install/lang/mr/admin.php +++ b/install/lang/mr/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mr/error.php b/install/lang/mr/error.php index 4f1364319e..8978d46003 100644 --- a/install/lang/mr/error.php +++ b/install/lang/mr/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mr/install.php b/install/lang/mr/install.php index 2358d3bbe9..c013673cbb 100644 --- a/install/lang/mr/install.php +++ b/install/lang/mr/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mr/langconfig.php b/install/lang/mr/langconfig.php index e0e6385b3b..1615765d38 100644 --- a/install/lang/mr/langconfig.php +++ b/install/lang/mr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mr/moodle.php b/install/lang/mr/moodle.php index 9031b308d8..aeaa65a3ae 100644 --- a/install/lang/mr/moodle.php +++ b/install/lang/mr/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ms/langconfig.php b/install/lang/ms/langconfig.php index 63fb459292..f04244cbc0 100644 --- a/install/lang/ms/langconfig.php +++ b/install/lang/ms/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ne/langconfig.php b/install/lang/ne/langconfig.php index b8d3c4f635..e840f07369 100644 --- a/install/lang/ne/langconfig.php +++ b/install/lang/ne/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nl/admin.php b/install/lang/nl/admin.php index dc42c4f3b1..51e5af8128 100644 --- a/install/lang/nl/admin.php +++ b/install/lang/nl/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nl/error.php b/install/lang/nl/error.php index dc20c3e11c..413dd49e99 100644 --- a/install/lang/nl/error.php +++ b/install/lang/nl/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nl/install.php b/install/lang/nl/install.php index fe929e8076..3512d8def5 100644 --- a/install/lang/nl/install.php +++ b/install/lang/nl/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nl/langconfig.php b/install/lang/nl/langconfig.php index 16dc1329dc..3ea4ec01ab 100644 --- a/install/lang/nl/langconfig.php +++ b/install/lang/nl/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nl/moodle.php b/install/lang/nl/moodle.php index e20d490a2d..83c0513b42 100644 --- a/install/lang/nl/moodle.php +++ b/install/lang/nl/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nn/langconfig.php b/install/lang/nn/langconfig.php index 1450c22e08..24060c1344 100644 --- a/install/lang/nn/langconfig.php +++ b/install/lang/nn/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nn/moodle.php b/install/lang/nn/moodle.php index 0811db1d91..0bf52c166e 100644 --- a/install/lang/nn/moodle.php +++ b/install/lang/nn/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no/admin.php b/install/lang/no/admin.php index b8964ac371..7beb69e78e 100644 --- a/install/lang/no/admin.php +++ b/install/lang/no/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no/error.php b/install/lang/no/error.php index a6b1d32b1f..38cd340208 100644 --- a/install/lang/no/error.php +++ b/install/lang/no/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no/install.php b/install/lang/no/install.php index 29f06f0a82..8cbf252f11 100644 --- a/install/lang/no/install.php +++ b/install/lang/no/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no/langconfig.php b/install/lang/no/langconfig.php index 6282d155c1..8f44c828a7 100644 --- a/install/lang/no/langconfig.php +++ b/install/lang/no/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no/moodle.php b/install/lang/no/moodle.php index dc7c2d14c9..8429d22bf4 100644 --- a/install/lang/no/moodle.php +++ b/install/lang/no/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no_gr/langconfig.php b/install/lang/no_gr/langconfig.php index 5cc55aabab..6f01998e00 100644 --- a/install/lang/no_gr/langconfig.php +++ b/install/lang/no_gr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no_gr/moodle.php b/install/lang/no_gr/moodle.php index 0811db1d91..0bf52c166e 100644 --- a/install/lang/no_gr/moodle.php +++ b/install/lang/no_gr/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/oc_es/langconfig.php b/install/lang/oc_es/langconfig.php index 9d0e05ca26..a32f752a38 100644 --- a/install/lang/oc_es/langconfig.php +++ b/install/lang/oc_es/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pl/admin.php b/install/lang/pl/admin.php index 0719d5690f..a9fe371941 100644 --- a/install/lang/pl/admin.php +++ b/install/lang/pl/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pl/error.php b/install/lang/pl/error.php index 2040799b06..613bfcf583 100644 --- a/install/lang/pl/error.php +++ b/install/lang/pl/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pl/install.php b/install/lang/pl/install.php index 37461d07ce..51a7968dbc 100644 --- a/install/lang/pl/install.php +++ b/install/lang/pl/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pl/langconfig.php b/install/lang/pl/langconfig.php index d315365101..e7b9b71ff5 100644 --- a/install/lang/pl/langconfig.php +++ b/install/lang/pl/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pl/moodle.php b/install/lang/pl/moodle.php index cfb07fa06b..316ddc7ee1 100644 --- a/install/lang/pl/moodle.php +++ b/install/lang/pl/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt/admin.php b/install/lang/pt/admin.php index 02d4d932c3..70fe42a55d 100644 --- a/install/lang/pt/admin.php +++ b/install/lang/pt/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt/error.php b/install/lang/pt/error.php index ec15c7ff4c..93ee77d6e3 100644 --- a/install/lang/pt/error.php +++ b/install/lang/pt/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt/install.php b/install/lang/pt/install.php index 402d60531a..eec4a6d8f6 100644 --- a/install/lang/pt/install.php +++ b/install/lang/pt/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt/langconfig.php b/install/lang/pt/langconfig.php index 1ab27592c8..38e018b24d 100644 --- a/install/lang/pt/langconfig.php +++ b/install/lang/pt/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt/moodle.php b/install/lang/pt/moodle.php index 39f4aec369..79b2542e60 100644 --- a/install/lang/pt/moodle.php +++ b/install/lang/pt/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt_br/admin.php b/install/lang/pt_br/admin.php index a5d44099d1..c9f42e89e1 100644 --- a/install/lang/pt_br/admin.php +++ b/install/lang/pt_br/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt_br/error.php b/install/lang/pt_br/error.php index c9e0731b21..540b6a167d 100644 --- a/install/lang/pt_br/error.php +++ b/install/lang/pt_br/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt_br/install.php b/install/lang/pt_br/install.php index d5f54a9c07..c6a6ed21d1 100644 --- a/install/lang/pt_br/install.php +++ b/install/lang/pt_br/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt_br/langconfig.php b/install/lang/pt_br/langconfig.php index 68409d6961..1c128177b6 100644 --- a/install/lang/pt_br/langconfig.php +++ b/install/lang/pt_br/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt_br/moodle.php b/install/lang/pt_br/moodle.php index 2ba82dd43d..2f3c4b849a 100644 --- a/install/lang/pt_br/moodle.php +++ b/install/lang/pt_br/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ro/admin.php b/install/lang/ro/admin.php index 6cbb4340dc..dd74795efc 100644 --- a/install/lang/ro/admin.php +++ b/install/lang/ro/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ro/error.php b/install/lang/ro/error.php index 0367f6cec6..edcc9c2a57 100644 --- a/install/lang/ro/error.php +++ b/install/lang/ro/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ro/install.php b/install/lang/ro/install.php index eb0d43881e..63c55dc7b3 100644 --- a/install/lang/ro/install.php +++ b/install/lang/ro/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ro/langconfig.php b/install/lang/ro/langconfig.php index 198de0d021..2a6aa32c93 100644 --- a/install/lang/ro/langconfig.php +++ b/install/lang/ro/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ro/moodle.php b/install/lang/ro/moodle.php index 305b845393..b4f6e14867 100644 --- a/install/lang/ro/moodle.php +++ b/install/lang/ro/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ru/admin.php b/install/lang/ru/admin.php index 14ca1e5c9b..ed799af60b 100644 --- a/install/lang/ru/admin.php +++ b/install/lang/ru/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ru/error.php b/install/lang/ru/error.php index 048c4a0746..8f338df854 100644 --- a/install/lang/ru/error.php +++ b/install/lang/ru/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ru/install.php b/install/lang/ru/install.php index 080ad00dc8..a425b557f8 100644 --- a/install/lang/ru/install.php +++ b/install/lang/ru/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ru/langconfig.php b/install/lang/ru/langconfig.php index 4657c45525..c2fa586395 100644 --- a/install/lang/ru/langconfig.php +++ b/install/lang/ru/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ru/moodle.php b/install/lang/ru/moodle.php index be4f3ae3a0..5749f92275 100644 --- a/install/lang/ru/moodle.php +++ b/install/lang/ru/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/si/admin.php b/install/lang/si/admin.php index 6d3e3de9c3..2ce3633f6e 100644 --- a/install/lang/si/admin.php +++ b/install/lang/si/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/si/error.php b/install/lang/si/error.php index ad9f42cecc..453e03de46 100644 --- a/install/lang/si/error.php +++ b/install/lang/si/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/si/install.php b/install/lang/si/install.php index 627da123b7..76730093a6 100644 --- a/install/lang/si/install.php +++ b/install/lang/si/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/si/langconfig.php b/install/lang/si/langconfig.php index dd21b638ef..0463394399 100644 --- a/install/lang/si/langconfig.php +++ b/install/lang/si/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/si/moodle.php b/install/lang/si/moodle.php index 4bb9edd88e..2725a38f43 100644 --- a/install/lang/si/moodle.php +++ b/install/lang/si/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sk/admin.php b/install/lang/sk/admin.php index fbfa2fefe7..4ba175751d 100644 --- a/install/lang/sk/admin.php +++ b/install/lang/sk/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sk/error.php b/install/lang/sk/error.php index b640e89851..530beb3bb5 100644 --- a/install/lang/sk/error.php +++ b/install/lang/sk/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sk/install.php b/install/lang/sk/install.php index 6ed494a85e..8c8745de61 100644 --- a/install/lang/sk/install.php +++ b/install/lang/sk/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sk/langconfig.php b/install/lang/sk/langconfig.php index f369c0332f..6e265bdc23 100644 --- a/install/lang/sk/langconfig.php +++ b/install/lang/sk/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sk/moodle.php b/install/lang/sk/moodle.php index 0f054d552d..aa9754563c 100644 --- a/install/lang/sk/moodle.php +++ b/install/lang/sk/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sl/admin.php b/install/lang/sl/admin.php index d119e43940..98f3450661 100644 --- a/install/lang/sl/admin.php +++ b/install/lang/sl/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sl/error.php b/install/lang/sl/error.php index 39650c17f2..dfb8cf5b68 100644 --- a/install/lang/sl/error.php +++ b/install/lang/sl/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sl/install.php b/install/lang/sl/install.php index 40b8d38c56..aa6aad662b 100644 --- a/install/lang/sl/install.php +++ b/install/lang/sl/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sl/langconfig.php b/install/lang/sl/langconfig.php index bfe8670d74..b12ebe480f 100644 --- a/install/lang/sl/langconfig.php +++ b/install/lang/sl/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sl/moodle.php b/install/lang/sl/moodle.php index 13f9fe8f08..059b4a6b30 100644 --- a/install/lang/sl/moodle.php +++ b/install/lang/sl/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sm/install.php b/install/lang/sm/install.php index 040da6ee8e..3d45937076 100644 --- a/install/lang/sm/install.php +++ b/install/lang/sm/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sm/langconfig.php b/install/lang/sm/langconfig.php index b139021fda..34a0a13c96 100644 --- a/install/lang/sm/langconfig.php +++ b/install/lang/sm/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sm/moodle.php b/install/lang/sm/moodle.php index e958e8f585..1c21e30af2 100644 --- a/install/lang/sm/moodle.php +++ b/install/lang/sm/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/so/admin.php b/install/lang/so/admin.php index 392718c460..8ed9e63ba2 100644 --- a/install/lang/so/admin.php +++ b/install/lang/so/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/so/install.php b/install/lang/so/install.php index d3610dfc83..da2ddb9009 100644 --- a/install/lang/so/install.php +++ b/install/lang/so/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/so/langconfig.php b/install/lang/so/langconfig.php index f4144a6ffc..b730b1ce4a 100644 --- a/install/lang/so/langconfig.php +++ b/install/lang/so/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/so/moodle.php b/install/lang/so/moodle.php index fe337afe71..02b9039da5 100644 --- a/install/lang/so/moodle.php +++ b/install/lang/so/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sq/langconfig.php b/install/lang/sq/langconfig.php index 83a6df4b19..87877a2765 100644 --- a/install/lang/sq/langconfig.php +++ b/install/lang/sq/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sq/moodle.php b/install/lang/sq/moodle.php index ebf3509a12..57ecb39d38 100644 --- a/install/lang/sq/moodle.php +++ b/install/lang/sq/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr/langconfig.php b/install/lang/sr/langconfig.php index b876e1ad6f..94422f9362 100644 --- a/install/lang/sr/langconfig.php +++ b/install/lang/sr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_cr/admin.php b/install/lang/sr_cr/admin.php index 6727853482..f1c24aeb9d 100644 --- a/install/lang/sr_cr/admin.php +++ b/install/lang/sr_cr/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_cr/error.php b/install/lang/sr_cr/error.php index 6710ac0680..707dc606f4 100644 --- a/install/lang/sr_cr/error.php +++ b/install/lang/sr_cr/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_cr/install.php b/install/lang/sr_cr/install.php index 20b921b396..60b9aebd39 100644 --- a/install/lang/sr_cr/install.php +++ b/install/lang/sr_cr/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_cr/langconfig.php b/install/lang/sr_cr/langconfig.php index b876e1ad6f..94422f9362 100644 --- a/install/lang/sr_cr/langconfig.php +++ b/install/lang/sr_cr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_cr/moodle.php b/install/lang/sr_cr/moodle.php index 6da23a04ae..a815fbcb98 100644 --- a/install/lang/sr_cr/moodle.php +++ b/install/lang/sr_cr/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_cr_bo/langconfig.php b/install/lang/sr_cr_bo/langconfig.php index b876e1ad6f..94422f9362 100644 --- a/install/lang/sr_cr_bo/langconfig.php +++ b/install/lang/sr_cr_bo/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_lt/admin.php b/install/lang/sr_lt/admin.php index b3a781e902..876ebf8503 100644 --- a/install/lang/sr_lt/admin.php +++ b/install/lang/sr_lt/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_lt/error.php b/install/lang/sr_lt/error.php index 0f3abe478e..e724c7c058 100644 --- a/install/lang/sr_lt/error.php +++ b/install/lang/sr_lt/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_lt/install.php b/install/lang/sr_lt/install.php index 0fe8658dd6..e172b50706 100644 --- a/install/lang/sr_lt/install.php +++ b/install/lang/sr_lt/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_lt/langconfig.php b/install/lang/sr_lt/langconfig.php index d5c798c71c..04fbd51362 100644 --- a/install/lang/sr_lt/langconfig.php +++ b/install/lang/sr_lt/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_lt/moodle.php b/install/lang/sr_lt/moodle.php index ccf4a37853..2a77c14834 100644 --- a/install/lang/sr_lt/moodle.php +++ b/install/lang/sr_lt/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sv/admin.php b/install/lang/sv/admin.php index c71e0c10c7..2a466f9669 100644 --- a/install/lang/sv/admin.php +++ b/install/lang/sv/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sv/error.php b/install/lang/sv/error.php index cae13d6fb2..da3d2cac64 100644 --- a/install/lang/sv/error.php +++ b/install/lang/sv/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sv/install.php b/install/lang/sv/install.php index 257e92d35e..ca7061bb9e 100644 --- a/install/lang/sv/install.php +++ b/install/lang/sv/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sv/langconfig.php b/install/lang/sv/langconfig.php index 7b4ca4148f..36927a94de 100644 --- a/install/lang/sv/langconfig.php +++ b/install/lang/sv/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sv/moodle.php b/install/lang/sv/moodle.php index 39c1bed606..f2e23b4d66 100644 --- a/install/lang/sv/moodle.php +++ b/install/lang/sv/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sv_fi/langconfig.php b/install/lang/sv_fi/langconfig.php index 7e897d51f6..4bcede8209 100644 --- a/install/lang/sv_fi/langconfig.php +++ b/install/lang/sv_fi/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sw/admin.php b/install/lang/sw/admin.php index e8884e6468..3424fb74ba 100644 --- a/install/lang/sw/admin.php +++ b/install/lang/sw/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta/admin.php b/install/lang/ta/admin.php index 874ffd1a1a..903a32a002 100644 --- a/install/lang/ta/admin.php +++ b/install/lang/ta/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta/error.php b/install/lang/ta/error.php index 1ced79f826..39e5b1bc74 100644 --- a/install/lang/ta/error.php +++ b/install/lang/ta/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta/install.php b/install/lang/ta/install.php index c013fb5736..2fb10728fe 100644 --- a/install/lang/ta/install.php +++ b/install/lang/ta/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta/langconfig.php b/install/lang/ta/langconfig.php index ecf8299339..50132a4b93 100644 --- a/install/lang/ta/langconfig.php +++ b/install/lang/ta/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta/moodle.php b/install/lang/ta/moodle.php index b2a6fe8ce7..4b737680dd 100644 --- a/install/lang/ta/moodle.php +++ b/install/lang/ta/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta_lk/admin.php b/install/lang/ta_lk/admin.php index 364e77b79c..5df2683a9b 100644 --- a/install/lang/ta_lk/admin.php +++ b/install/lang/ta_lk/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta_lk/error.php b/install/lang/ta_lk/error.php index 7997b05e1f..a1b3cfabfe 100644 --- a/install/lang/ta_lk/error.php +++ b/install/lang/ta_lk/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta_lk/install.php b/install/lang/ta_lk/install.php index 7d8efa6cff..a13f78bc16 100644 --- a/install/lang/ta_lk/install.php +++ b/install/lang/ta_lk/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta_lk/langconfig.php b/install/lang/ta_lk/langconfig.php index a9818991f4..2d412c3aba 100644 --- a/install/lang/ta_lk/langconfig.php +++ b/install/lang/ta_lk/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta_lk/moodle.php b/install/lang/ta_lk/moodle.php index 7c8ad2dc63..94a5e8641c 100644 --- a/install/lang/ta_lk/moodle.php +++ b/install/lang/ta_lk/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/te/admin.php b/install/lang/te/admin.php index 794313a806..ee6d78a016 100644 --- a/install/lang/te/admin.php +++ b/install/lang/te/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/te/langconfig.php b/install/lang/te/langconfig.php index bc821307b5..4a32d31be4 100644 --- a/install/lang/te/langconfig.php +++ b/install/lang/te/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/te/moodle.php b/install/lang/te/moodle.php index c7f9fc35d1..dfd6c8294b 100644 --- a/install/lang/te/moodle.php +++ b/install/lang/te/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/th/admin.php b/install/lang/th/admin.php index dfe08b3e65..1def29f9fa 100644 --- a/install/lang/th/admin.php +++ b/install/lang/th/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/th/install.php b/install/lang/th/install.php index 63d2e77404..ecad79a94d 100644 --- a/install/lang/th/install.php +++ b/install/lang/th/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/th/langconfig.php b/install/lang/th/langconfig.php index 898a8fb08b..70a1c09796 100644 --- a/install/lang/th/langconfig.php +++ b/install/lang/th/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/th/moodle.php b/install/lang/th/moodle.php index 0de9d09397..964d12f4a1 100644 --- a/install/lang/th/moodle.php +++ b/install/lang/th/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ti/langconfig.php b/install/lang/ti/langconfig.php index 70f2db8233..c1c13ee293 100644 --- a/install/lang/ti/langconfig.php +++ b/install/lang/ti/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ti/moodle.php b/install/lang/ti/moodle.php index 224bcadef4..0139cd737e 100644 --- a/install/lang/ti/moodle.php +++ b/install/lang/ti/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tl/admin.php b/install/lang/tl/admin.php index f62997504c..91cfbb325f 100644 --- a/install/lang/tl/admin.php +++ b/install/lang/tl/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tl/error.php b/install/lang/tl/error.php index 5a2359861f..7b2da3298c 100644 --- a/install/lang/tl/error.php +++ b/install/lang/tl/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tl/install.php b/install/lang/tl/install.php index 164241a8bf..cb4acabb80 100644 --- a/install/lang/tl/install.php +++ b/install/lang/tl/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tl/langconfig.php b/install/lang/tl/langconfig.php index 8dd2095fa2..1c185ad087 100644 --- a/install/lang/tl/langconfig.php +++ b/install/lang/tl/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tl/moodle.php b/install/lang/tl/moodle.php index 1643e938fa..1045fb6942 100644 --- a/install/lang/tl/moodle.php +++ b/install/lang/tl/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/to/install.php b/install/lang/to/install.php index d5e8e5f66f..35ec8a8ffc 100644 --- a/install/lang/to/install.php +++ b/install/lang/to/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/to/langconfig.php b/install/lang/to/langconfig.php index 2eb38c9e07..4751463d7a 100644 --- a/install/lang/to/langconfig.php +++ b/install/lang/to/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/to/moodle.php b/install/lang/to/moodle.php index 9fcac3239f..d1c93853c1 100644 --- a/install/lang/to/moodle.php +++ b/install/lang/to/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tr/admin.php b/install/lang/tr/admin.php index 2828dee280..278fa34d23 100644 --- a/install/lang/tr/admin.php +++ b/install/lang/tr/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tr/error.php b/install/lang/tr/error.php index 118b5f3240..e36cc61ab7 100644 --- a/install/lang/tr/error.php +++ b/install/lang/tr/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tr/install.php b/install/lang/tr/install.php index 24ea290d45..1ccec2259c 100644 --- a/install/lang/tr/install.php +++ b/install/lang/tr/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tr/langconfig.php b/install/lang/tr/langconfig.php index 13b21abc50..aa54bc1ecf 100644 --- a/install/lang/tr/langconfig.php +++ b/install/lang/tr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tr/moodle.php b/install/lang/tr/moodle.php index e95625a6df..ef0b81e8b8 100644 --- a/install/lang/tr/moodle.php +++ b/install/lang/tr/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/uk/langconfig.php b/install/lang/uk/langconfig.php index 4756a47bfb..fac81dc0ca 100644 --- a/install/lang/uk/langconfig.php +++ b/install/lang/uk/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/uk/moodle.php b/install/lang/uk/moodle.php index 8b686a2fdb..c26498451a 100644 --- a/install/lang/uk/moodle.php +++ b/install/lang/uk/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ur/install.php b/install/lang/ur/install.php index 46fa461d33..050583660b 100644 --- a/install/lang/ur/install.php +++ b/install/lang/ur/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ur/langconfig.php b/install/lang/ur/langconfig.php index ec1b5ac88a..6092f76b66 100644 --- a/install/lang/ur/langconfig.php +++ b/install/lang/ur/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ur/moodle.php b/install/lang/ur/moodle.php index 6bc40101ca..0e5096c555 100644 --- a/install/lang/ur/moodle.php +++ b/install/lang/ur/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/uz/install.php b/install/lang/uz/install.php index 2eba7f402f..27ea189d0b 100644 --- a/install/lang/uz/install.php +++ b/install/lang/uz/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/uz/langconfig.php b/install/lang/uz/langconfig.php index dd8b4a12fe..e18415cf06 100644 --- a/install/lang/uz/langconfig.php +++ b/install/lang/uz/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/uz/moodle.php b/install/lang/uz/moodle.php index 7ff71b5754..7be2ed557d 100644 --- a/install/lang/uz/moodle.php +++ b/install/lang/uz/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/vi/admin.php b/install/lang/vi/admin.php index 8a0f338f48..880bf33da5 100644 --- a/install/lang/vi/admin.php +++ b/install/lang/vi/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/vi/install.php b/install/lang/vi/install.php index 3c4dab528b..add67153e8 100644 --- a/install/lang/vi/install.php +++ b/install/lang/vi/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/vi/langconfig.php b/install/lang/vi/langconfig.php index 6246f8a954..343484ca40 100644 --- a/install/lang/vi/langconfig.php +++ b/install/lang/vi/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/vi/moodle.php b/install/lang/vi/moodle.php index cfbba8fcef..75051a19bb 100644 --- a/install/lang/vi/moodle.php +++ b/install/lang/vi/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/wo/langconfig.php b/install/lang/wo/langconfig.php index 1811ecc6b0..57c5ec56b5 100644 --- a/install/lang/wo/langconfig.php +++ b/install/lang/wo/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_cn/admin.php b/install/lang/zh_cn/admin.php index 5683df7b12..fb37bdf21d 100644 --- a/install/lang/zh_cn/admin.php +++ b/install/lang/zh_cn/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_cn/error.php b/install/lang/zh_cn/error.php index 92bcddcbdc..de53510692 100644 --- a/install/lang/zh_cn/error.php +++ b/install/lang/zh_cn/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_cn/install.php b/install/lang/zh_cn/install.php index 37e8b7eaf0..f21535e1a4 100644 --- a/install/lang/zh_cn/install.php +++ b/install/lang/zh_cn/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_cn/langconfig.php b/install/lang/zh_cn/langconfig.php index 67f3e6ab23..c0bd4e7a6f 100644 --- a/install/lang/zh_cn/langconfig.php +++ b/install/lang/zh_cn/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_cn/moodle.php b/install/lang/zh_cn/moodle.php index 70080e42c0..a4f7cea149 100644 --- a/install/lang/zh_cn/moodle.php +++ b/install/lang/zh_cn/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_tw/admin.php b/install/lang/zh_tw/admin.php index 5fdf9d4e94..47d8984351 100644 --- a/install/lang/zh_tw/admin.php +++ b/install/lang/zh_tw/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_tw/error.php b/install/lang/zh_tw/error.php index 6378058953..4b88d842b9 100644 --- a/install/lang/zh_tw/error.php +++ b/install/lang/zh_tw/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_tw/install.php b/install/lang/zh_tw/install.php index 5d67d9fb7f..70d1ffd76b 100644 --- a/install/lang/zh_tw/install.php +++ b/install/lang/zh_tw/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_tw/langconfig.php b/install/lang/zh_tw/langconfig.php index 8c1a9ab5df..2dd1f15171 100644 --- a/install/lang/zh_tw/langconfig.php +++ b/install/lang/zh_tw/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_tw/moodle.php b/install/lang/zh_tw/moodle.php index 3b25e8f92d..c86e3ae043 100644 --- a/install/lang/zh_tw/moodle.php +++ b/install/lang/zh_tw/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zu/error.php b/install/lang/zu/error.php index 92aab5b5f9..2433be01e9 100644 --- a/install/lang/zu/error.php +++ b/install/lang/zu/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zu/install.php b/install/lang/zu/install.php index 79cbcdb20d..d7d0210278 100644 --- a/install/lang/zu/install.php +++ b/install/lang/zu/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zu/langconfig.php b/install/lang/zu/langconfig.php index d2b79ae72d..c2c944eb49 100644 --- a/install/lang/zu/langconfig.php +++ b/install/lang/zu/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2beta installer + * Automatically generated strings for Moodle 2.2 installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was From 97451e029b5ddd9a677500e4866576094a1635fc Mon Sep 17 00:00:00 2001 From: Andrew Davis Date: Fri, 2 Dec 2011 09:48:36 +0800 Subject: [PATCH 08/53] MDL-26522 grade: made the user selection drop down on the user report behave more sensibly --- grade/report/user/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grade/report/user/index.php b/grade/report/user/index.php index a452a33372..2802c9d59c 100644 --- a/grade/report/user/index.php +++ b/grade/report/user/index.php @@ -103,7 +103,7 @@ if ($user_selector) { $renderer = $PAGE->get_renderer('gradereport_user'); - echo $renderer->graded_users_selector('user', $course, $userid, $currentgroup, false); + echo $renderer->graded_users_selector('user', $course, $userid, $currentgroup, true); } while ($userdata = $gui->next_user()) { From d2f127e65ccd57e698e4cd0b29fa5c380eb1cb5b Mon Sep 17 00:00:00 2001 From: Jerome Mouneyrac Date: Fri, 2 Dec 2011 11:26:48 +0800 Subject: [PATCH 09/53] MDL-29712 REST-XML server was translating too many HTML characters. use htmlspecialchars instead of htmlentities. Translated characters by htmlspecialchars are compatible with XML validation, and so XML parsers for javascript, java... --- webservice/rest/locallib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webservice/rest/locallib.php b/webservice/rest/locallib.php index 3fe38ea8b9..179a85b9f5 100644 --- a/webservice/rest/locallib.php +++ b/webservice/rest/locallib.php @@ -138,9 +138,9 @@ protected function generate_error($ex) { } else { $error = ''."\n"; $error .= ''."\n"; - $error .= ''.htmlentities($ex->getMessage(), ENT_COMPAT, 'UTF-8').''."\n"; + $error .= ''.htmlspecialchars($ex->getMessage(), ENT_COMPAT, 'UTF-8').''."\n"; if (debugging() and isset($ex->debuginfo)) { - $error .= ''.htmlentities($ex->debuginfo, ENT_COMPAT, 'UTF-8').''."\n"; + $error .= ''.htmlspecialchars($ex->debuginfo, ENT_COMPAT, 'UTF-8').''."\n"; } $error .= ''."\n"; } @@ -182,7 +182,7 @@ protected static function xmlize_result($returns, $desc) { if (is_null($returns)) { return ''."\n"; } else { - return ''.htmlentities($returns, ENT_COMPAT, 'UTF-8').''."\n"; + return ''.htmlspecialchars($returns, ENT_COMPAT, 'UTF-8').''."\n"; } } else if ($desc instanceof external_multiple_structure) { From b27917eea4be16b9de4a100bfd3c14038535bc9b Mon Sep 17 00:00:00 2001 From: Dan Marsden Date: Fri, 2 Dec 2011 21:07:59 +1300 Subject: [PATCH 10/53] MDL-30028 - use page pref correctly when pagination or re-ordering --- mod/scorm/report/basic/report.php | 6 +++--- mod/scorm/report/interactions/report.php | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mod/scorm/report/basic/report.php b/mod/scorm/report/basic/report.php index 5cd4c1b278..69c5e0dd77 100644 --- a/mod/scorm/report/basic/report.php +++ b/mod/scorm/report/basic/report.php @@ -36,6 +36,8 @@ function display($scorm, $cm, $course, $download) { $contextmodule= get_context_instance(CONTEXT_MODULE, $cm->id); $action = optional_param('action', '', PARAM_ALPHA); $attemptids = optional_param_array('attemptid', array(), PARAM_RAW); + $attemptsmode = optional_param('attemptsmode', SCORM_REPORT_ATTEMPTS_ALL_STUDENTS, PARAM_INT); + $PAGE->set_url(new moodle_url($PAGE->url, array('attemptsmode' => $attemptsmode))); if ($action == 'delete' && has_capability('mod/scorm:deleteresponses', $contextmodule) && confirm_sesskey()) { if (scorm_delete_responses($attemptids, $scorm)) { //delete responses. @@ -49,13 +51,11 @@ function display($scorm, $cm, $course, $download) { if ($fromform = $mform->get_data()) { $detailedrep = $fromform->detailedrep; $pagesize = $fromform->pagesize; - $attemptsmode = !empty($fromform->attemptsmode) ? $fromform->attemptsmode : SCORM_REPORT_ATTEMPTS_ALL_STUDENTS; set_user_preference('scorm_report_detailed', $detailedrep); set_user_preference('scorm_report_pagesize', $pagesize); } else { $detailedrep = get_user_preferences('scorm_report_detailed', false); $pagesize = get_user_preferences('scorm_report_pagesize', 0); - $attemptsmode = optional_param('attemptsmode', SCORM_REPORT_ATTEMPTS_STUDENTS_WITH, PARAM_INT); } if ($pagesize < 1) { $pagesize = SCORM_REPORT_DEFAULT_PAGE_SIZE; @@ -520,7 +520,7 @@ function display($scorm, $cm, $course, $download) { } } if (!$download) { - $mform->set_data(compact('detailedrep', 'pagesize')); + $mform->set_data(compact('detailedrep', 'pagesize', 'attemptsmode')); $mform->display(); } } else { diff --git a/mod/scorm/report/interactions/report.php b/mod/scorm/report/interactions/report.php index 96e1ff280c..8b07801d1e 100644 --- a/mod/scorm/report/interactions/report.php +++ b/mod/scorm/report/interactions/report.php @@ -38,6 +38,8 @@ function display($scorm, $cm, $course, $download) { $contextmodule = get_context_instance(CONTEXT_MODULE, $cm->id); $action = optional_param('action', '', PARAM_ALPHA); $attemptids = optional_param_array('attemptid', array(), PARAM_RAW); + $attemptsmode = optional_param('attemptsmode', SCORM_REPORT_ATTEMPTS_ALL_STUDENTS, PARAM_INT); + $PAGE->set_url(new moodle_url($PAGE->url, array('attemptsmode' => $attemptsmode))); if ($action == 'delete' && has_capability('mod/scorm:deleteresponses', $contextmodule) && confirm_sesskey()) { if (scorm_delete_responses($attemptids, $scorm)) { //delete responses. @@ -53,14 +55,12 @@ function display($scorm, $cm, $course, $download) { $includeqtext = $fromform->qtext; $includeresp = $fromform->resp; $includeright = $fromform->right; - $attemptsmode = !empty($fromform->attemptsmode) ? $fromform->attemptsmode : SCORM_REPORT_ATTEMPTS_ALL_STUDENTS; set_user_preference('scorm_report_pagesize', $pagesize); set_user_preference('scorm_report_interactions_qtext', $includeqtext); set_user_preference('scorm_report_interactions_resp', $includeresp); set_user_preference('scorm_report_interactions_right', $includeright); } else { $pagesize = get_user_preferences('scorm_report_pagesize', 0); - $attemptsmode = optional_param('attemptsmode', SCORM_REPORT_ATTEMPTS_STUDENTS_WITH, PARAM_INT); $includeqtext = get_user_preferences('scorm_report_interactions_qtext', 0); $includeresp = get_user_preferences('scorm_report_interactions_resp', 1); $includeright = get_user_preferences('scorm_report_interactions_right', 0); @@ -582,7 +582,7 @@ function display($scorm, $cm, $course, $download) { } } if (!$download) { - $mform->set_data(compact('detailedrep', 'pagesize')); + $mform->set_data(compact('detailedrep', 'pagesize', 'attemptsmode')); $mform->display(); } } else { From aff3a5d60c0711f62cf952097848973d2231d3d7 Mon Sep 17 00:00:00 2001 From: Dan Marsden Date: Fri, 2 Dec 2011 21:16:21 +1300 Subject: [PATCH 11/53] MDL-30536 Choice - remove setType so that validation works when JS is disabled --- mod/choice/mod_form.php | 1 - 1 file changed, 1 deletion(-) diff --git a/mod/choice/mod_form.php b/mod/choice/mod_form.php index 1a7ef127ba..afacc4a9a6 100644 --- a/mod/choice/mod_form.php +++ b/mod/choice/mod_form.php @@ -50,7 +50,6 @@ function definition() { $repeateloptions['limit']['default'] = 0; $repeateloptions['limit']['disabledif'] = array('limitanswers', 'eq', 0); $repeateloptions['limit']['rule'] = 'numeric'; - $mform->setType('limit', PARAM_INT); $repeateloptions['option']['helpbutton'] = array('choiceoptions', 'choice'); $mform->setType('option', PARAM_CLEANHTML); From c72c63568986a7a5b16c9178349a05d8afb30371 Mon Sep 17 00:00:00 2001 From: Dan Marsden Date: Fri, 2 Dec 2011 22:41:51 +1300 Subject: [PATCH 12/53] MDL-30211 imsenterprise enrolment - set up default enrolment methods in new courses --- enrol/imsenterprise/lib.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/enrol/imsenterprise/lib.php b/enrol/imsenterprise/lib.php index 2dec772c25..e9e90fad34 100644 --- a/enrol/imsenterprise/lib.php +++ b/enrol/imsenterprise/lib.php @@ -403,6 +403,10 @@ function process_group_tag($tagcontents) { $courseid = $DB->insert_record('course', $course); + // Setup default enrolment plugins + $course->id = $courseid; + enrol_course_updated(true, $course, null); + // Setup the blocks $course = $DB->get_record('course', array('id' => $courseid)); blocks_add_default_course_blocks($course); From 0030db53d8b7a6729e5935a6761d393bc5043e9a Mon Sep 17 00:00:00 2001 From: Tim Hunt Date: Fri, 2 Dec 2011 14:49:39 +0000 Subject: [PATCH 13/53] MDL-30558 question bank, missing string with obscure permissions. AMOS BEGIN MOV [selectcategoryabove,mod_quiz],[selectcategoryabove,question] AMOS END --- lang/en/question.php | 1 + mod/quiz/editlib.php | 2 +- mod/quiz/lang/en/quiz.php | 1 - question/editlib.php | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lang/en/question.php b/lang/en/question.php index 947fbbc385..1d82d2323e 100644 --- a/lang/en/question.php +++ b/lang/en/question.php @@ -270,6 +270,7 @@ $string['saveflags'] = 'Save the state of the flags'; $string['selectacategory'] = 'Select a category:'; $string['selectaqtypefordescription'] = 'Select a question type to see its description.'; +$string['selectcategoryabove'] = 'Select a category above'; $string['selectquestionsforbulk'] = 'Select questions for bulk actions'; $string['shareincontext'] = 'Share in context for {$a}'; $string['stoponerror'] = 'Stop on error'; diff --git a/mod/quiz/editlib.php b/mod/quiz/editlib.php index 0097787deb..920d0993a3 100644 --- a/mod/quiz/editlib.php +++ b/mod/quiz/editlib.php @@ -1165,7 +1165,7 @@ protected function print_choose_category_message($categoryandcontext) { $this->display_category_form($this->contexts->having_one_edit_tab_cap('edit'), $this->baseurl, $categoryandcontext); echo "

"; - print_string('selectcategoryabove', 'quiz'); + print_string('selectcategoryabove', 'question'); echo "

"; echo $OUTPUT->box_end(); } diff --git a/mod/quiz/lang/en/quiz.php b/mod/quiz/lang/en/quiz.php index df384ed788..897a16d074 100644 --- a/mod/quiz/lang/en/quiz.php +++ b/mod/quiz/lang/en/quiz.php @@ -664,7 +664,6 @@ $string['select'] = 'Select'; $string['selectall'] = 'Select all'; $string['selectcategory'] = 'Select category'; -$string['selectcategoryabove'] = 'Select a category above'; $string['selectedattempts'] = 'Selected attempts...'; $string['selectnone'] = 'Deselect all'; $string['selectquestiontype'] = '-- Select question type --'; diff --git a/question/editlib.php b/question/editlib.php index 4079d48488..2b541a6306 100644 --- a/question/editlib.php +++ b/question/editlib.php @@ -1198,7 +1198,7 @@ public function display($tabname, $page, $perpage, $cat, protected function print_choose_category_message($categoryandcontext) { echo "

"; - print_string("selectcategoryabove", "question"); + print_string('selectcategoryabove', 'question'); echo "

"; } From cd2f3c17f9440ebbfcc6c16ff5a7d0fc2fde94f6 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Sat, 3 Dec 2011 08:40:53 +0100 Subject: [PATCH 14/53] MDL-30538 add missing course format versions and fix email filter file name typo --- course/format/scorm/version.php | 30 +++++++++++++++++++ course/format/social/version.php | 30 +++++++++++++++++++ course/format/topics/version.php | 30 +++++++++++++++++++ course/format/weeks/version.php | 30 +++++++++++++++++++ .../emailprotect/{vesion.php => version.php} | 0 5 files changed, 120 insertions(+) create mode 100644 course/format/scorm/version.php create mode 100644 course/format/social/version.php create mode 100644 course/format/topics/version.php create mode 100644 course/format/weeks/version.php rename filter/emailprotect/{vesion.php => version.php} (100%) diff --git a/course/format/scorm/version.php b/course/format/scorm/version.php new file mode 100644 index 0000000000..834435de43 --- /dev/null +++ b/course/format/scorm/version.php @@ -0,0 +1,30 @@ +. + +/** + * Version details + * + * @package format + * @subpackage scorm + * @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com) + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +defined('MOODLE_INTERNAL') || die(); + +$plugin->version = 2011120100; // The current plugin version (Date: YYYYMMDDXX) +$plugin->requires = 2011120100; // Requires this Moodle version +$plugin->component = 'format_scorm'; // Full name of the plugin (used for diagnostics) diff --git a/course/format/social/version.php b/course/format/social/version.php new file mode 100644 index 0000000000..3096753b19 --- /dev/null +++ b/course/format/social/version.php @@ -0,0 +1,30 @@ +. + +/** + * Version details + * + * @package format + * @subpackage social + * @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com) + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +defined('MOODLE_INTERNAL') || die(); + +$plugin->version = 2011120100; // The current plugin version (Date: YYYYMMDDXX) +$plugin->requires = 2011120100; // Requires this Moodle version +$plugin->component = 'format_social'; // Full name of the plugin (used for diagnostics) diff --git a/course/format/topics/version.php b/course/format/topics/version.php new file mode 100644 index 0000000000..fa0cfaac55 --- /dev/null +++ b/course/format/topics/version.php @@ -0,0 +1,30 @@ +. + +/** + * Version details + * + * @package format + * @subpackage topics + * @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com) + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +defined('MOODLE_INTERNAL') || die(); + +$plugin->version = 2011120100; // The current plugin version (Date: YYYYMMDDXX) +$plugin->requires = 2011120100; // Requires this Moodle version +$plugin->component = 'format_topics'; // Full name of the plugin (used for diagnostics) diff --git a/course/format/weeks/version.php b/course/format/weeks/version.php new file mode 100644 index 0000000000..cf80a61ed3 --- /dev/null +++ b/course/format/weeks/version.php @@ -0,0 +1,30 @@ +. + +/** + * Version details + * + * @package format + * @subpackage weeks + * @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com) + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +defined('MOODLE_INTERNAL') || die(); + +$plugin->version = 2011120100; // The current plugin version (Date: YYYYMMDDXX) +$plugin->requires = 2011120100; // Requires this Moodle version +$plugin->component = 'format_weeks'; // Full name of the plugin (used for diagnostics) diff --git a/filter/emailprotect/vesion.php b/filter/emailprotect/version.php similarity index 100% rename from filter/emailprotect/vesion.php rename to filter/emailprotect/version.php From b2221ee59c7753978cf4e252377e4c7c843b9b32 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Sat, 3 Dec 2011 11:21:48 +0100 Subject: [PATCH 15/53] MDL-30340 blocks - avoid lockin'blocks in subcontexts. Everytime that one block instance is edited @ any subcontext, guarantee that the 'bring back' pattern (* = all pages) is available, so the block can be reseted to its original context --- lib/blocklib.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/blocklib.php b/lib/blocklib.php index df617cb4e0..ba81ec748c 100644 --- a/lib/blocklib.php +++ b/lib/blocklib.php @@ -1660,6 +1660,13 @@ function generate_page_type_patterns($pagetype, $parentcontext = null, $currentc $patterns = default_page_type_list($pagetype, $parentcontext, $currentcontext); } + // Ensure that the * pattern is always available if editing block 'at distance', so + // we always can 'bring back' it to the original context. MDL-30340 + if ($currentcontext->id != $parentcontext->id && !isset($patterns['*'])) { + // TODO: We could change the string here, showing its 'bring back' meaning + $patterns['*'] = get_string('page-x', 'pagetype'); + } + return $patterns; } From 458fdc528099c0a257c777fa747293f2f86f3fa7 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Sat, 3 Dec 2011 15:36:00 +0100 Subject: [PATCH 16/53] MDL-30340 blocks - add back 'any page' support to course cats Added the * option that is not affected by the 'varying-pagetype' problem that has been detected and issued @ MDL-30564. So now, it's (back) possible to define coursecat blocks to be spread over children coursecats/courses/modules (contexts). --- admin/lib.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/admin/lib.php b/admin/lib.php index 7b4331961c..ac698737e0 100644 --- a/admin/lib.php +++ b/admin/lib.php @@ -35,5 +35,16 @@ function admin_page_type_list($pagetype, $parentcontext, $currentcontext) { 'admin-*' => get_string('page-admin-x', 'pagetype'), $pagetype => get_string('page-admin-current', 'pagetype') ); + // Add the missing * (any page) option for them. MDL-30340 + // TODO: These pages are really 'pagetype-varying' - MDL-30564 - + // and some day we should stop behaving that way, so proper pagetypes + // can be specified for it (like course-category-* or so). + // Luckly... the option we are introducing '*' is independent + // of that varying behavior, so will work. + if ($pagetype == 'admin-course-category') { + $array += array( + '*' => get_string('page-x', 'pagetype') + ); + } return $array; -} \ No newline at end of file +} From 7c600d46aa41bf8440c1351188e6cdf98638fa4a Mon Sep 17 00:00:00 2001 From: David Mudrak Date: Sat, 3 Dec 2011 14:07:44 +0100 Subject: [PATCH 17/53] MDL-30340 Trivial change in PHP doc block - the function does not accept any params --- lib/blocklib.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/blocklib.php b/lib/blocklib.php index df617cb4e0..b39badb51a 100644 --- a/lib/blocklib.php +++ b/lib/blocklib.php @@ -1061,9 +1061,6 @@ public function edit_controls($block) { /** * Process any block actions that were specified in the URL. * - * This can only be done given a valid $page object. - * - * @param moodle_page $page the page to add blocks to. * @return boolean true if anything was done. False if not. */ public function process_url_actions() { From e3cdf40ff5d49a60465b4857d97245bec6905519 Mon Sep 17 00:00:00 2001 From: David Mudrak Date: Sat, 3 Dec 2011 14:08:52 +0100 Subject: [PATCH 18/53] MDL-30340 Always generate pagetype patterns in the block settings form This is an alternative solution to MDL-27812. If the current block instance has page type set to site-index, we need to provide a way how that page type pattern can be reset back to other value. --- blocks/edit_form.php | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/blocks/edit_form.php b/blocks/edit_form.php index 80b361ea3b..1e1cf8ca3e 100644 --- a/blocks/edit_form.php +++ b/blocks/edit_form.php @@ -126,23 +126,19 @@ function definition() { $mform->addElement('select', 'bui_contexts', get_string('contexts', 'block'), $contextoptions); } + // Generate pagetype patterns by callbacks $displaypagetypewarning = false; - if ($this->page->pagetype == 'site-index') { // No need for pagetype list on home page - $pagetypelist = array('*'=>get_string('page-x', 'pagetype')); - } else { - // Generate pagetype patterns by callbacks - $pagetypelist = generate_page_type_patterns($this->page->pagetype, $parentcontext, $this->page->context); - if (!array_key_exists($this->block->instance->pagetypepattern, $pagetypelist)) { - // Pushing block's existing page type pattern - $pagetypestringname = 'page-'.str_replace('*', 'x', $this->block->instance->pagetypepattern); - if (get_string_manager()->string_exists($pagetypestringname, 'pagetype')) { - $pagetypelist[$this->block->instance->pagetypepattern] = get_string($pagetypestringname, 'pagetype'); - } else { - //as a last resort we could put the page type pattern in the select box - //however this causes mod-data-view to be added if the only option available is mod-data-* - // so we are just showing a warning to users about their prev setting being reset - $displaypagetypewarning = true; - } + $pagetypelist = generate_page_type_patterns($this->page->pagetype, $parentcontext, $this->page->context); + if (!array_key_exists($this->block->instance->pagetypepattern, $pagetypelist)) { + // Pushing block's existing page type pattern + $pagetypestringname = 'page-'.str_replace('*', 'x', $this->block->instance->pagetypepattern); + if (get_string_manager()->string_exists($pagetypestringname, 'pagetype')) { + $pagetypelist[$this->block->instance->pagetypepattern] = get_string($pagetypestringname, 'pagetype'); + } else { + //as a last resort we could put the page type pattern in the select box + //however this causes mod-data-view to be added if the only option available is mod-data-* + // so we are just showing a warning to users about their prev setting being reset + $displaypagetypewarning = true; } } From 9d2c424d832404155fb03bd244813ecfdfddb9e0 Mon Sep 17 00:00:00 2001 From: David Mudrak Date: Sat, 3 Dec 2011 14:11:26 +0100 Subject: [PATCH 19/53] MDL-30340 Block stickiness computation improvements This is an attempt to clean up and fix the computation of the block stickiness. At first, the page pattern can't be ignored because the user may want to currently try to limit the page pattern. Second, the site-index pattern can be forced only if the user selected 'Front page only' as the page context. --- lib/blocklib.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/lib/blocklib.php b/lib/blocklib.php index b39badb51a..a25b5d4b51 100644 --- a/lib/blocklib.php +++ b/lib/blocklib.php @@ -1235,20 +1235,26 @@ public function process_url_edit() { // Explicitly set the context $bi->parentcontextid = $parentcontext->id; - // If the context type is > 0 then we'll explicitly set the block as sticky, otherwise not - $bi->showinsubcontexts = (int)(!empty($data->bui_contexts)); + // Should the block be sticky + if ($data->bui_contexts == BUI_CONTEXTS_ENTIRE_SITE or $data->bui_contexts == BUI_CONTEXTS_FRONTPAGE_SUBS) { + $bi->showinsubcontexts = true; + } else { + $bi->showinsubcontexts = false; + } // If the block wants to be system-wide, then explicitly set that if ($data->bui_contexts == BUI_CONTEXTS_ENTIRE_SITE) { // Only possible on a frontpage or system page $bi->parentcontextid = $systemcontext->id; - $bi->showinsubcontexts = BUI_CONTEXTS_CURRENT_SUBS; //show in current and sub contexts - $bi->pagetypepattern = '*'; } else { // The block doesn't want to be system-wide, so let's ensure that if ($parentcontext->id == $systemcontext->id) { // We need to move it to the front page $frontpagecontext = get_context_instance(CONTEXT_COURSE, SITEID); $bi->parentcontextid = $frontpagecontext->id; - $bi->pagetypepattern = 'site-index'; + if ($data->bui_contexts == BUI_CONTEXTS_FRONTPAGE_ONLY) { + // If the front page only is specified, the page type setting is ignored + // as explicitely set to site-index + $bi->pagetypepattern = 'site-index'; + } } } } From 75638e0ab002c69f68659675dc859b43e5e36f01 Mon Sep 17 00:00:00 2001 From: Mayank Gupa Date: Mon, 5 Dec 2011 05:17:40 +0530 Subject: [PATCH 20/53] MDL-30579, fixing Data Model Elements are being initialized with an empty string --- mod/scorm/datamodels/scorm_13.js.php | 34 ++++++++++++++-------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/mod/scorm/datamodels/scorm_13.js.php b/mod/scorm/datamodels/scorm_13.js.php index 9b5d487409..d6e0b03bd2 100644 --- a/mod/scorm/datamodels/scorm_13.js.php +++ b/mod/scorm/datamodels/scorm_13.js.php @@ -177,11 +177,11 @@ function SCORMapi1_3() { 'cmi.comments_from_lms.n.comment':{'format':CMILangString4000, 'mod':'r'}, 'cmi.comments_from_lms.n.location':{'format':CMIString250, 'mod':'r'}, 'cmi.comments_from_lms.n.timestamp':{'format':CMITime, 'mod':'r'}, - 'cmi.completion_status':{'defaultvalue':'{'cmi.completion_status'})?$userdata->{'cmi.completion_status'}:'unknown' ?>', 'format':CMICStatus, 'mod':'rw'}, - 'cmi.completion_threshold':{'defaultvalue':threshold)?'\''.$userdata->threshold.'\'':'null' ?>, 'mod':'r'}, - 'cmi.credit':{'defaultvalue':'credit)?$userdata->credit:'' ?>', 'mod':'r'}, + 'cmi.completion_status':{'defaultvalue':'{'cmi.completion_status'})?$userdata->{'cmi.completion_status'}:'unknown' ?>', 'format':CMICStatus, 'mod':'rw'}, + 'cmi.completion_threshold':{'defaultvalue':threshold)?'\''.$userdata->threshold.'\'':'null' ?>, 'mod':'r'}, + 'cmi.credit':{'defaultvalue':'credit)?$userdata->credit:'' ?>', 'mod':'r'}, 'cmi.entry':{'defaultvalue':'entry ?>', 'mod':'r'}, - 'cmi.exit':{'defaultvalue':'{'cmi.exit'})?$userdata->{'cmi.exit'}:'' ?>', 'format':CMIExit, 'mod':'w'}, + 'cmi.exit':{'defaultvalue':'{'cmi.exit'})?$userdata->{'cmi.exit'}:'' ?>', 'format':CMIExit, 'mod':'w'}, 'cmi.interactions._children':{'defaultvalue':interactions_children, 'mod':'r'}, 'cmi.interactions._count':{'mod':'r', 'defaultvalue':'0'}, 'cmi.interactions.n.id':{'pattern':CMIIndex, 'format':CMILongIdentifier, 'mod':'rw'}, @@ -196,7 +196,7 @@ function SCORMapi1_3() { 'cmi.interactions.n.result':{'pattern':CMIIndex, 'format':CMIResult, 'mod':'rw'}, 'cmi.interactions.n.latency':{'pattern':CMIIndex, 'format':CMITimespan, 'mod':'rw'}, 'cmi.interactions.n.description':{'pattern':CMIIndex, 'format':CMILangString250, 'mod':'rw'}, - 'cmi.launch_data':{'defaultvalue':datafromlms)?'\''.$userdata->datafromlms.'\'':'null' ?>, 'mod':'r'}, + 'cmi.launch_data':{'defaultvalue':datafromlms)?'\''.$userdata->datafromlms.'\'':'null' ?>, 'mod':'r'}, 'cmi.learner_id':{'defaultvalue':'student_id ?>', 'mod':'r'}, 'cmi.learner_name':{'defaultvalue':'student_name ?>', 'mod':'r'}, 'cmi.learner_preference._children':{'defaultvalue':student_preference_children, 'mod':'r'}, @@ -204,8 +204,8 @@ function SCORMapi1_3() { 'cmi.learner_preference.language':{'defaultvalue':'', 'format':CMILang, 'mod':'rw'}, 'cmi.learner_preference.delivery_speed':{'defaultvalue':'1', 'format':CMIDecimal, 'range':speed_range, 'mod':'rw'}, 'cmi.learner_preference.audio_captioning':{'defaultvalue':'0', 'format':CMISInteger, 'range':text_range, 'mod':'rw'}, - 'cmi.location':{'defaultvalue':{'cmi.location'})?'\''.$userdata->{'cmi.location'}.'\'':'null' ?>, 'format':CMIString1000, 'mod':'rw'}, - 'cmi.max_time_allowed':{'defaultvalue':attemptAbsoluteDurationLimit)?'\''.$userdata->attemptAbsoluteDurationLimit.'\'':'null' ?>, 'mod':'r'}, + 'cmi.location':{'defaultvalue':{'cmi.location'})?'\''.$userdata->{'cmi.location'}.'\'':'null' ?>, 'format':CMIString1000, 'mod':'rw'}, + 'cmi.max_time_allowed':{'defaultvalue':attemptAbsoluteDurationLimit)?'\''.$userdata->attemptAbsoluteDurationLimit.'\'':'null' ?>, 'mod':'r'}, 'cmi.mode':{'defaultvalue':'mode ?>', 'mod':'r'}, 'cmi.objectives._children':{'defaultvalue':objectives_children, 'mod':'r'}, 'cmi.objectives._count':{'mod':'r', 'defaultvalue':'0'}, @@ -219,18 +219,18 @@ function SCORMapi1_3() { 'cmi.objectives.n.completion_status':{'defaultvalue':'unknown', 'pattern':CMIIndex, 'format':CMICStatus, 'mod':'rw'}, 'cmi.objectives.n.progress_measure':{'defaultvalue':null, 'format':CMIDecimal, 'range':progress_range, 'mod':'rw'}, 'cmi.objectives.n.description':{'pattern':CMIIndex, 'format':CMILangString250, 'mod':'rw'}, - 'cmi.progress_measure':{'defaultvalue':{'cmi.progess_measure'})?'\''.$userdata->{'cmi.progress_measure'}.'\'':'null' ?>, 'format':CMIDecimal, 'range':progress_range, 'mod':'rw'}, - 'cmi.scaled_passing_score':{'defaultvalue':{'cmi.scaled_passing_score'})?'\''.$userdata->{'cmi.scaled_passing_score'}.'\'':'null' ?>, 'format':CMIDecimal, 'range':scaled_range, 'mod':'r'}, + 'cmi.progress_measure':{'defaultvalue':{'cmi.progess_measure'})?'\''.$userdata->{'cmi.progress_measure'}.'\'':'null' ?>, 'format':CMIDecimal, 'range':progress_range, 'mod':'rw'}, + 'cmi.scaled_passing_score':{'defaultvalue':{'cmi.scaled_passing_score'})?'\''.$userdata->{'cmi.scaled_passing_score'}.'\'':'null' ?>, 'format':CMIDecimal, 'range':scaled_range, 'mod':'r'}, 'cmi.score._children':{'defaultvalue':score_children, 'mod':'r'}, - 'cmi.score.scaled':{'defaultvalue':{'cmi.score.scaled'})?'\''.$userdata->{'cmi.score.scaled'}.'\'':'null' ?>, 'format':CMIDecimal, 'range':scaled_range, 'mod':'rw'}, - 'cmi.score.raw':{'defaultvalue':{'cmi.score.raw'})?'\''.$userdata->{'cmi.score.raw'}.'\'':'null' ?>, 'format':CMIDecimal, 'mod':'rw'}, - 'cmi.score.min':{'defaultvalue':{'cmi.score.min'})?'\''.$userdata->{'cmi.score.min'}.'\'':'null' ?>, 'format':CMIDecimal, 'mod':'rw'}, - 'cmi.score.max':{'defaultvalue':{'cmi.score.max'})?'\''.$userdata->{'cmi.score.max'}.'\'':'null' ?>, 'format':CMIDecimal, 'mod':'rw'}, + 'cmi.score.scaled':{'defaultvalue':{'cmi.score.scaled'})?'\''.$userdata->{'cmi.score.scaled'}.'\'':'null' ?>, 'format':CMIDecimal, 'range':scaled_range, 'mod':'rw'}, + 'cmi.score.raw':{'defaultvalue':{'cmi.score.raw'})?'\''.$userdata->{'cmi.score.raw'}.'\'':'null' ?>, 'format':CMIDecimal, 'mod':'rw'}, + 'cmi.score.min':{'defaultvalue':{'cmi.score.min'})?'\''.$userdata->{'cmi.score.min'}.'\'':'null' ?>, 'format':CMIDecimal, 'mod':'rw'}, + 'cmi.score.max':{'defaultvalue':{'cmi.score.max'})?'\''.$userdata->{'cmi.score.max'}.'\'':'null' ?>, 'format':CMIDecimal, 'mod':'rw'}, 'cmi.session_time':{'format':CMITimespan, 'mod':'w', 'defaultvalue':'PT0H0M0S'}, - 'cmi.success_status':{'defaultvalue':'{'cmi.success_status'})?$userdata->{'cmi.success_status'}:'unknown' ?>', 'format':CMISStatus, 'mod':'rw'}, - 'cmi.suspend_data':{'defaultvalue':{'cmi.suspend_data'})?'\''.$userdata->{'cmi.suspend_data'}.'\'':'null' ?>, 'format':CMIString64000, 'mod':'rw'}, - 'cmi.time_limit_action':{'defaultvalue':timelimitaction)?'\''.$userdata->timelimitaction.'\'':'null' ?>, 'mod':'r'}, - 'cmi.total_time':{'defaultvalue':'{'cmi.total_time'})?$userdata->{'cmi.total_time'}:'PT0H0M0S' ?>', 'mod':'r'}, + 'cmi.success_status':{'defaultvalue':'{'cmi.success_status'})?$userdata->{'cmi.success_status'}:'unknown' ?>', 'format':CMISStatus, 'mod':'rw'}, + 'cmi.suspend_data':{'defaultvalue':{'cmi.suspend_data'})?'\''.$userdata->{'cmi.suspend_data'}.'\'':'null' ?>, 'format':CMIString64000, 'mod':'rw'}, + 'cmi.time_limit_action':{'defaultvalue':timelimitaction)?'\''.$userdata->timelimitaction.'\'':'null' ?>, 'mod':'r'}, + 'cmi.total_time':{'defaultvalue':'{'cmi.total_time'})?$userdata->{'cmi.total_time'}:'PT0H0M0S' ?>', 'mod':'r'}, 'adl.nav.request':{'defaultvalue':'_none_', 'format':NAVEvent, 'mod':'rw'} }; // From d4e71a4eed3cd72c0954ba5b117a7ae2725639ef Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Mon, 5 Dec 2011 00:48:08 +0100 Subject: [PATCH 21/53] MDL-30340 blocks - hide some redundant pagetypepattern options at front page The dual front-page/system-wide form to edit blocks can be reduced asuming that, always: A) system sets the context to system, recursively and with page-type set to "*" B) frontpage only sets the context to site-course, non-recursively and with page-type set to "site-index" C) frontpage all added sets the context to site-course, recursively and with paget-type set to "*" And that is the change that this patch provides, by: 1) detecting properly if we are editing blocks @ protpage 2) passing that information to the form data processor 3) setting parentcontextid, showinsubcontexts and pagetypepattern following the A, B, C immutables above. Finally, and affecting some other system-wide pages, there are cases (my, user templates...) having only one possible pagetypepattern, and it looks badly if the page has subpages, so for those system-wide cases we are showing exceptionaly the pagetypepattern statically. This will be revisited once MDL-30574 is decided and implemented, although perhaps it's ok to leave it as default to places with only one pagetypepattern available. --- blocks/edit_form.php | 97 +++++++++++++++++++++++++++++++------------- lib/blocklib.php | 56 +++++++++++++++---------- 2 files changed, 104 insertions(+), 49 deletions(-) diff --git a/blocks/edit_form.php b/blocks/edit_form.php index 1e1cf8ca3e..9b7198c0c5 100644 --- a/blocks/edit_form.php +++ b/blocks/edit_form.php @@ -93,24 +93,44 @@ function definition() { $mform->addElement('static', 'bui_homecontext', get_string('createdat', 'block'), print_context_name($parentcontext)); $mform->addHelpButton('bui_homecontext', 'createdat', 'block'); + // For pre-calculated (fixed) pagetype lists + $pagetypelist = array(); + // parse pagetype patterns $bits = explode('-', $this->page->pagetype); - $contextoptions = array(); - if ( ($parentcontext->contextlevel == CONTEXT_COURSE && $parentcontext->instanceid == SITEID) || - ($parentcontext->contextlevel == CONTEXT_SYSTEM)) { // Home page - if ($bits[0] == 'tag' || $bits[0] == 'admin') { - // tag and admin pages always use system context - // the contexts options don't make differences, so we use - // page type patterns only - $mform->addElement('hidden', 'bui_contexts', BUI_CONTEXTS_ENTIRE_SITE); - } else { - $contextoptions[BUI_CONTEXTS_FRONTPAGE_ONLY] = get_string('showonfrontpageonly', 'block'); - $contextoptions[BUI_CONTEXTS_FRONTPAGE_SUBS] = get_string('showonfrontpageandsubs', 'block'); - $contextoptions[BUI_CONTEXTS_ENTIRE_SITE] = get_string('showonentiresite', 'block'); - $mform->addElement('select', 'bui_contexts', get_string('contexts', 'block'), $contextoptions); - $mform->addHelpButton('bui_contexts', 'contexts', 'block'); - } + // First of all, check if we are editing blocks @ front-page or no and + // make some dark magic if so (MDL-30340) because each page context + // implies one (and only one) harcoded page-type that will be set later + // when processing the form data at {@link block_manager::process_url_edit()} + + // There are some conditions to check related to contexts + $ctxconditions = $this->page->context->contextlevel == CONTEXT_COURSE && + $this->page->context->instanceid == get_site()->id; + // And also some pagetype conditions + $pageconditions = isset($bits[0]) && isset($bits[1]) && $bits[0] == 'site' && $bits[1] == 'index'; + // So now we can be 100% sure if edition is happening at frontpage + $editingatfrontpage = $ctxconditions && $pageconditions; + + // Let the form to know about that, can be useful later + $mform->addElement('hidden', 'bui_editingatfrontpage', (int)$editingatfrontpage); + + // Front page, show the page-contexts element and set $pagetypelist to 'any page' (*) + // as unique option. Processign the form will do any change if needed + if ($editingatfrontpage) { + $contextoptions = array(); + $contextoptions[BUI_CONTEXTS_FRONTPAGE_ONLY] = get_string('showonfrontpageonly', 'block'); + $contextoptions[BUI_CONTEXTS_FRONTPAGE_SUBS] = get_string('showonfrontpageandsubs', 'block'); + $contextoptions[BUI_CONTEXTS_ENTIRE_SITE] = get_string('showonentiresite', 'block'); + $mform->addElement('select', 'bui_contexts', get_string('contexts', 'block'), $contextoptions); + $mform->addHelpButton('bui_contexts', 'contexts', 'block'); + $pagetypelist['*'] = '*'; // This is not going to be shown ever, it's an unique option + + // Any other system context block, hide the page-contexts element, + // it's always system-wide BUI_CONTEXTS_ENTIRE_SITE + } else if ($parentcontext->contextlevel == CONTEXT_SYSTEM) { + $mform->addElement('hidden', 'bui_contexts', BUI_CONTEXTS_ENTIRE_SITE); + } else if ($parentcontext->contextlevel == CONTEXT_COURSE) { // 0 means display on current context only, not child contexts // but if course managers select mod-* as pagetype patterns, block system will overwrite this option @@ -126,19 +146,21 @@ function definition() { $mform->addElement('select', 'bui_contexts', get_string('contexts', 'block'), $contextoptions); } - // Generate pagetype patterns by callbacks - $displaypagetypewarning = false; - $pagetypelist = generate_page_type_patterns($this->page->pagetype, $parentcontext, $this->page->context); - if (!array_key_exists($this->block->instance->pagetypepattern, $pagetypelist)) { - // Pushing block's existing page type pattern - $pagetypestringname = 'page-'.str_replace('*', 'x', $this->block->instance->pagetypepattern); - if (get_string_manager()->string_exists($pagetypestringname, 'pagetype')) { - $pagetypelist[$this->block->instance->pagetypepattern] = get_string($pagetypestringname, 'pagetype'); - } else { - //as a last resort we could put the page type pattern in the select box - //however this causes mod-data-view to be added if the only option available is mod-data-* - // so we are just showing a warning to users about their prev setting being reset - $displaypagetypewarning = true; + // Generate pagetype patterns by callbacks if necessary (has not been set specifically) + if (empty($pagetypelist)) { + $pagetypelist = generate_page_type_patterns($this->page->pagetype, $parentcontext, $this->page->context); + $displaypagetypewarning = false; + if (!array_key_exists($this->block->instance->pagetypepattern, $pagetypelist)) { + // Pushing block's existing page type pattern + $pagetypestringname = 'page-'.str_replace('*', 'x', $this->block->instance->pagetypepattern); + if (get_string_manager()->string_exists($pagetypestringname, 'pagetype')) { + $pagetypelist[$this->block->instance->pagetypepattern] = get_string($pagetypestringname, 'pagetype'); + } else { + //as a last resort we could put the page type pattern in the select box + //however this causes mod-data-view to be added if the only option available is mod-data-* + // so we are just showing a warning to users about their prev setting being reset + $displaypagetypewarning = true; + } } } @@ -152,6 +174,25 @@ function definition() { } else { $value = array_pop(array_keys($pagetypelist)); $mform->addElement('hidden', 'bui_pagetypepattern', $value); + // Now we are really hiding a lot (both page-contexts and page-type-patterns), + // specially in some systemcontext pages having only one option (my/user...) + // so, until it's decided if we are going to add the 'bring-back' pattern to + // all those pages or no (see MDL-30574), we are going to show the unique + // element statically + // TODO: Revisit this once MDL-30574 has been decided and implemented, although + // perhaps it's not bad to always show this statically when only one pattern is + // available. + if (!$editingatfrontpage) { + // Try to beautify it + $strvalue = $value; + $strkey = 'page-'.str_replace('*', 'x', $strvalue); + if (get_string_manager()->string_exists($strkey, 'pagetype')) { + $strvalue = get_string($strkey, 'pagetype'); + } + // Show as static (hidden has been set already) + $mform->addElement('static', 'bui_staticpagetypepattern', + get_string('restrictpagetypes','block'), $strvalue); + } } if ($this->page->subpage) { diff --git a/lib/blocklib.php b/lib/blocklib.php index a25b5d4b51..814dc36676 100644 --- a/lib/blocklib.php +++ b/lib/blocklib.php @@ -1227,35 +1227,49 @@ public function process_url_edit() { $bi->subpagepattern = $data->bui_subpagepattern; } - $parentcontext = get_context_instance_by_id($data->bui_parentcontextid); $systemcontext = get_context_instance(CONTEXT_SYSTEM); + $frontpagecontext = get_context_instance(CONTEXT_COURSE, SITEID); + $parentcontext = get_context_instance_by_id($data->bui_parentcontextid); // Updating stickiness and contexts. See MDL-21375 for details. if (has_capability('moodle/site:manageblocks', $parentcontext)) { // Check permissions in destination - // Explicitly set the context - $bi->parentcontextid = $parentcontext->id; - // Should the block be sticky - if ($data->bui_contexts == BUI_CONTEXTS_ENTIRE_SITE or $data->bui_contexts == BUI_CONTEXTS_FRONTPAGE_SUBS) { - $bi->showinsubcontexts = true; - } else { - $bi->showinsubcontexts = false; - } - - // If the block wants to be system-wide, then explicitly set that - if ($data->bui_contexts == BUI_CONTEXTS_ENTIRE_SITE) { // Only possible on a frontpage or system page - $bi->parentcontextid = $systemcontext->id; + // Explicitly set the default context + $bi->parentcontextid = $parentcontext->id; - } else { // The block doesn't want to be system-wide, so let's ensure that - if ($parentcontext->id == $systemcontext->id) { // We need to move it to the front page - $frontpagecontext = get_context_instance(CONTEXT_COURSE, SITEID); + // Perform some exceptions for system/frontpage data. MDL-30340 + switch ($data->bui_contexts) { + case BUI_CONTEXTS_ENTIRE_SITE: + // it's a system-wide block. 100% guaranteed, set parentcontextid and showinsubcontexts + $bi->parentcontextid = $systemcontext->id; + $bi->showinsubcontexts = true; + // and also, if it's one edition @ frontpage, set its pagetypepattern to '*' + // it already arrives that way from the form, but just re-enforce it here + if ($data->bui_editingatfrontpage) { + $bi->pagetypepattern = '*'; + } + break; + case BUI_CONTEXTS_FRONTPAGE_SUBS: + // it's a frontpage-wide (with subcontexts) block. 100% guaranteed, set parentcontextid and showinsubcontexts $bi->parentcontextid = $frontpagecontext->id; - if ($data->bui_contexts == BUI_CONTEXTS_FRONTPAGE_ONLY) { - // If the front page only is specified, the page type setting is ignored - // as explicitely set to site-index - $bi->pagetypepattern = 'site-index'; + $bi->showinsubcontexts = true; + // and also, if it's one edition @ frontpage, set its pagetypepattern to '*' + // it already arrives that way from the form, but just re-enforce it here + if ($data->bui_editingatfrontpage) { + $bi->pagetypepattern = '*'; } - } + break; + case BUI_CONTEXTS_FRONTPAGE_ONLY: + // it's a frontpage-only (no subcontexts) block. 100% guaranteed, set parentcontextid and showinsubcontexts + $bi->parentcontextid = $frontpagecontext->id; + $bi->showinsubcontexts = false; + // and also, if it's one edition @ frontpage, set its pagetypepattern to 'site-index' + // it originally comes as '*' from the form, here we change that in proviosion of + // future 'site-index' pages + if ($data->bui_editingatfrontpage) { + $bi->pagetypepattern = 'site-index'; + } + break; } } From 49ae1fdceaa49964aeec0a31f898c0e30a3e6eff Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Mon, 5 Dec 2011 01:14:19 +0100 Subject: [PATCH 22/53] MDL-30340 blocks - incorrect option in user profile template and missing lang string in my template --- lib/blocklib.php | 2 +- user/lib.php | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/blocklib.php b/lib/blocklib.php index 814dc36676..7662ccea36 100644 --- a/lib/blocklib.php +++ b/lib/blocklib.php @@ -1717,7 +1717,7 @@ function default_page_type_list($pagetype, $parentcontext = null, $currentcontex * @return array */ function my_page_type_list($pagetype, $parentcontext = null, $currentcontext = null) { - return array('my-index' => 'my-index'); + return array('my-index' => get_string('page-my-index', 'pagetype')); } /** diff --git a/user/lib.php b/user/lib.php index 7c2267fe32..66f84047a4 100644 --- a/user/lib.php +++ b/user/lib.php @@ -392,8 +392,5 @@ function user_get_user_details($user, $course = null, array $userfields = array( * @param stdClass $currentcontext Current context of block */ function user_page_type_list($pagetype, $parentcontext, $currentcontext) { - return array( - 'user-profile'=>get_string('page-user-profile', 'pagetype'), - 'my-index'=>get_string('page-my-index', 'pagetype') - ); + return array('user-profile'=>get_string('page-user-profile', 'pagetype')); } From 140fd1e23cd8ba14579f11d4eb8a38c13010e33b Mon Sep 17 00:00:00 2001 From: AMOS bot Date: Mon, 5 Dec 2011 00:30:55 +0000 Subject: [PATCH 23/53] Automatically generated installer lang files --- install/lang/zh_cn/install.php | 1 + 1 file changed, 1 insertion(+) diff --git a/install/lang/zh_cn/install.php b/install/lang/zh_cn/install.php index f21535e1a4..64a47cab0d 100644 --- a/install/lang/zh_cn/install.php +++ b/install/lang/zh_cn/install.php @@ -40,6 +40,7 @@ $string['databasename'] = '数据库名'; $string['databasetypehead'] = '选择数据库驱动'; $string['dataroot'] = '数据目录'; +$string['datarootpermission'] = '数据目录权限'; $string['dbprefix'] = '表格名称前缀'; $string['dirroot'] = 'Moodle目录'; $string['environmenthead'] = '检测您的运行环境...'; From 6278ce451f8f8994465dba4acfbec4e29ba3e26f Mon Sep 17 00:00:00 2001 From: Andrew Davis Date: Mon, 5 Dec 2011 14:57:36 +0800 Subject: [PATCH 24/53] MDL-28710 rating: added some more classes to the html for entering ratings --- lib/outputrenderers.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/outputrenderers.php b/lib/outputrenderers.php index a236aef11d..7288f57cfa 100644 --- a/lib/outputrenderers.php +++ b/lib/outputrenderers.php @@ -1469,14 +1469,13 @@ function render_rating(rating $rating) { $aggregatelabel = $ratingmanager->get_aggregate_label($rating->settings->aggregationmethod); $aggregatestr = $rating->get_aggregate_string(); - $aggregatehtml = html_writer::tag('span', $aggregatestr, array('id' => 'ratingaggregate'.$rating->itemid)).' '; - $aggregatehtml .= html_writer::start_tag('span', array('id'=>"ratingcount{$rating->itemid}")); + $aggregatehtml = html_writer::tag('span', $aggregatestr, array('id' => 'ratingaggregate'.$rating->itemid, 'class' => 'ratingaggregate')).' '; if ($rating->count > 0) { - $aggregatehtml .= "({$rating->count})"; + $countstr = "({$rating->count})"; } else { - $aggregatehtml .= '-'; + $countstr = '-'; } - $aggregatehtml .= html_writer::end_tag('span').' '; + $aggregatehtml .= html_writer::tag('span', $countstr, array('id'=>"ratingcount{$rating->itemid}", 'class' => 'ratingcount')).' '; $ratinghtml .= html_writer::tag('span', $aggregatelabel, array('class'=>'rating-aggregate-label')); if ($rating->settings->permissions->viewall && $rating->settings->pluginpermissions->viewall) { From 62169a677da4645e9341eff8373d5e5f4e85bdd0 Mon Sep 17 00:00:00 2001 From: Dan Marsden Date: Mon, 5 Dec 2011 21:38:27 +1300 Subject: [PATCH 25/53] MDL-26974 - add extra logging information all the time - not just when debugging is on. --- mod/scorm/loadSCO.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mod/scorm/loadSCO.php b/mod/scorm/loadSCO.php index d7988f576e..ea2a6b8ca4 100644 --- a/mod/scorm/loadSCO.php +++ b/mod/scorm/loadSCO.php @@ -141,6 +141,8 @@ $result = "$CFG->wwwroot/pluginfile.php/$context->id/mod_scorm/content/$scorm->revision/$launcher"; } +add_to_log($course->id, 'scorm', 'launch', 'view.php?id='.$cm->id, $result, $cm->id); + // which API are we looking for $LMS_api = (scorm_version_check($scorm->version, SCORM_12) || empty($scorm->version)) ? 'API' : 'API_1484_11'; ?> @@ -211,9 +213,5 @@ function doredirect() {

- id, 'scorm', 'launch', 'view.php?id='.$cm->id, $result, $cm->id); - } - ?> From 192a3380f15ef52dd58a1bc848b6f5e93a369b74 Mon Sep 17 00:00:00 2001 From: Martin Dougiamas Date: Mon, 5 Dec 2011 10:28:54 +0100 Subject: [PATCH 26/53] MDL-30340 blocks - fix/restrict frontpage dark magic application It seems that there are some overlapping constants in the blocks subsystem that were causing some code, initially planned only to frontpage, to be executed in other contexts. This commit moves the bui_editingatfrontpage condition as root condition. --- lib/blocklib.php | 54 +++++++++++++++++++++--------------------------- 1 file changed, 24 insertions(+), 30 deletions(-) diff --git a/lib/blocklib.php b/lib/blocklib.php index 7662ccea36..971a4e65fc 100644 --- a/lib/blocklib.php +++ b/lib/blocklib.php @@ -1237,39 +1237,33 @@ public function process_url_edit() { // Explicitly set the default context $bi->parentcontextid = $parentcontext->id; - // Perform some exceptions for system/frontpage data. MDL-30340 - switch ($data->bui_contexts) { - case BUI_CONTEXTS_ENTIRE_SITE: - // it's a system-wide block. 100% guaranteed, set parentcontextid and showinsubcontexts - $bi->parentcontextid = $systemcontext->id; - $bi->showinsubcontexts = true; - // and also, if it's one edition @ frontpage, set its pagetypepattern to '*' - // it already arrives that way from the form, but just re-enforce it here - if ($data->bui_editingatfrontpage) { + if ($data->bui_editingatfrontpage) { // The block is being edited on the front page + + // The interface here is a special case because the pagetype pattern is + // totally derived from the context menu. Here are the excpetions. MDL-30340 + + switch ($data->bui_contexts) { + case BUI_CONTEXTS_ENTIRE_SITE: + // The user wants to show the block across the entire site + $bi->parentcontextid = $systemcontext->id; + $bi->showinsubcontexts = true; $bi->pagetypepattern = '*'; - } - break; - case BUI_CONTEXTS_FRONTPAGE_SUBS: - // it's a frontpage-wide (with subcontexts) block. 100% guaranteed, set parentcontextid and showinsubcontexts - $bi->parentcontextid = $frontpagecontext->id; - $bi->showinsubcontexts = true; - // and also, if it's one edition @ frontpage, set its pagetypepattern to '*' - // it already arrives that way from the form, but just re-enforce it here - if ($data->bui_editingatfrontpage) { + break; + case BUI_CONTEXTS_FRONTPAGE_SUBS: + // The user wants the block shown on the front page and all subcontexts + $bi->parentcontextid = $frontpagecontext->id; + $bi->showinsubcontexts = true; $bi->pagetypepattern = '*'; - } - break; - case BUI_CONTEXTS_FRONTPAGE_ONLY: - // it's a frontpage-only (no subcontexts) block. 100% guaranteed, set parentcontextid and showinsubcontexts - $bi->parentcontextid = $frontpagecontext->id; - $bi->showinsubcontexts = false; - // and also, if it's one edition @ frontpage, set its pagetypepattern to 'site-index' - // it originally comes as '*' from the form, here we change that in proviosion of - // future 'site-index' pages - if ($data->bui_editingatfrontpage) { + break; + case BUI_CONTEXTS_FRONTPAGE_ONLY: + // The user want to show the front page on the frontpage only + $bi->parentcontextid = $frontpagecontext->id; + $bi->showinsubcontexts = false; $bi->pagetypepattern = 'site-index'; - } - break; + // This is the only relevant page type anyway but we'll set it explicitly just + // in case the front page grows site-index-* subpages of its own later + break; + } } } From 01f7f6f9aa08a8363ce1d64412bd117313cee561 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Mon, 5 Dec 2011 12:09:08 +0100 Subject: [PATCH 27/53] Moodle release 2.2 --- version.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version.php b/version.php index 7e236dab26..2983e4830c 100644 --- a/version.php +++ b/version.php @@ -30,10 +30,10 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2011120100.00; // YYYYMMDD = weekly release date of this DEV branch +$version = 2011120500.00; // 20111205 = branching date YYYYMMDD - do not modify! // RR = release increments - 00 in DEV branches // .XX = incremental changes -$release = '2.2rc1 (Build: 20111201)'; // Human-friendly version name +$release = '2.2 (Build: 20111205)'; // Human-friendly version name -$maturity = MATURITY_RC; // this version's maturity level +$maturity = MATURITY_STABLE; // this version's maturity level From 42f6b3f1d7c518d9d1e3f3a22ac546793f2af546 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Mon, 5 Dec 2011 12:16:32 +0100 Subject: [PATCH 28/53] weekly release 2.3dev --- version.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version.php b/version.php index 2983e4830c..7874acf28f 100644 --- a/version.php +++ b/version.php @@ -30,10 +30,10 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2011120500.00; // 20111205 = branching date YYYYMMDD - do not modify! +$version = 2011120500.00; // YYYYMMDD = weekly release date of this DEV branch // RR = release increments - 00 in DEV branches // .XX = incremental changes -$release = '2.2 (Build: 20111205)'; // Human-friendly version name +$release = '2.3dev (Build: 20111205)'; // Human-friendly version name -$maturity = MATURITY_STABLE; // this version's maturity level +$maturity = MATURITY_ALPHA; // this version's maturity level From edfa0d800ff5cf52a021025183ab53b937b3d22f Mon Sep 17 00:00:00 2001 From: Tim Hunt Date: Mon, 5 Dec 2011 15:39:55 +0000 Subject: [PATCH 29/53] MDL-29579 quiz statistics, include qtext in full XHTML export. --- mod/quiz/report/statistics/report.php | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/mod/quiz/report/statistics/report.php b/mod/quiz/report/statistics/report.php index 4d976005b6..f29d2205ee 100644 --- a/mod/quiz/report/statistics/report.php +++ b/mod/quiz/report/statistics/report.php @@ -313,15 +313,22 @@ protected function output_individual_question_data($quiz, $question) { // Display the various bits. echo $OUTPUT->heading(get_string('questioninformation', 'quiz_statistics')); echo html_writer::table($questioninfotable); - - echo $OUTPUT->box(format_text($question->questiontext, $question->questiontextformat, - array('overflowdiv' => true)) . $actions, - 'questiontext boxaligncenter generalbox boxwidthnormal mdl-align'); - + echo $this->render_question_text($question); echo $OUTPUT->heading(get_string('questionstatistics', 'quiz_statistics')); echo html_writer::table($questionstatstable); } + /** + * @param object $question question data. + * @return string HTML of question text, ready for display. + */ + protected function render_question_text($question){ + global $OUTPUT; + return $OUTPUT->box(format_text($question->questiontext, $question->questiontextformat, + array('overflowdiv' => true)), + 'questiontext boxaligncenter generalbox boxwidthnormal mdl-align'); + } + /** * Display the response analysis for a question. * @param object $question the question to report on. @@ -356,6 +363,10 @@ protected function output_individual_question_response_analysis($question, // Set up the table. $exportclass->start_table($questiontabletitle); + + if ($this->table->is_downloading() == 'xhtml') { + echo $this->render_question_text($question); + } } $responesstats = new quiz_statistics_response_analyser($question); From a539bd0a8e0841d8f472cad68aa73c646ff2cd11 Mon Sep 17 00:00:00 2001 From: AMOS bot Date: Mon, 5 Dec 2011 18:19:29 +0100 Subject: [PATCH 30/53] Automatically generated installer lang files --- install/lang/af/admin.php | 2 +- install/lang/af/langconfig.php | 2 +- install/lang/am/install.php | 2 +- install/lang/am/langconfig.php | 2 +- install/lang/am/moodle.php | 2 +- install/lang/ar/admin.php | 2 +- install/lang/ar/error.php | 2 +- install/lang/ar/install.php | 2 +- install/lang/ar/langconfig.php | 2 +- install/lang/ar/moodle.php | 2 +- install/lang/ast/admin.php | 2 +- install/lang/ast/error.php | 2 +- install/lang/ast/install.php | 2 +- install/lang/ast/langconfig.php | 2 +- install/lang/ast/moodle.php | 2 +- install/lang/az/admin.php | 2 +- install/lang/az/error.php | 2 +- install/lang/az/install.php | 2 +- install/lang/az/langconfig.php | 2 +- install/lang/be/langconfig.php | 2 +- install/lang/be/moodle.php | 2 +- install/lang/bg/admin.php | 2 +- install/lang/bg/error.php | 2 +- install/lang/bg/install.php | 2 +- install/lang/bg/langconfig.php | 2 +- install/lang/bg/moodle.php | 2 +- install/lang/bn/admin.php | 2 +- install/lang/bn/install.php | 2 +- install/lang/bn/langconfig.php | 2 +- install/lang/bn/moodle.php | 2 +- install/lang/bs/install.php | 2 +- install/lang/bs/langconfig.php | 2 +- install/lang/ca/admin.php | 2 +- install/lang/ca/error.php | 2 +- install/lang/ca/install.php | 2 +- install/lang/ca/langconfig.php | 2 +- install/lang/ca/moodle.php | 2 +- install/lang/ckb/langconfig.php | 2 +- install/lang/cs/admin.php | 2 +- install/lang/cs/error.php | 2 +- install/lang/cs/install.php | 2 +- install/lang/cs/langconfig.php | 2 +- install/lang/cs/moodle.php | 2 +- install/lang/cy/admin.php | 2 +- install/lang/cy/error.php | 2 +- install/lang/cy/install.php | 2 +- install/lang/cy/langconfig.php | 2 +- install/lang/cy/moodle.php | 2 +- install/lang/da/admin.php | 2 +- install/lang/da/error.php | 2 +- install/lang/da/install.php | 2 +- install/lang/da/langconfig.php | 2 +- install/lang/da/moodle.php | 2 +- install/lang/de/admin.php | 2 +- install/lang/de/error.php | 2 +- install/lang/de/install.php | 2 +- install/lang/de/langconfig.php | 2 +- install/lang/de/moodle.php | 2 +- install/lang/de_du/error.php | 2 +- install/lang/de_du/install.php | 2 +- install/lang/de_du/langconfig.php | 2 +- install/lang/de_kids/langconfig.php | 2 +- install/lang/dv/admin.php | 2 +- install/lang/dv/error.php | 2 +- install/lang/dv/install.php | 2 +- install/lang/dv/langconfig.php | 2 +- install/lang/dv/moodle.php | 2 +- install/lang/el/admin.php | 2 +- install/lang/el/error.php | 2 +- install/lang/el/install.php | 2 +- install/lang/el/langconfig.php | 2 +- install/lang/el/moodle.php | 2 +- install/lang/en/admin.php | 2 +- install/lang/en/error.php | 2 +- install/lang/en/install.php | 2 +- install/lang/en/langconfig.php | 2 +- install/lang/en/moodle.php | 2 +- install/lang/en_us/install.php | 2 +- install/lang/en_us/langconfig.php | 2 +- install/lang/es/admin.php | 2 +- install/lang/es/error.php | 2 +- install/lang/es/install.php | 2 +- install/lang/es/langconfig.php | 2 +- install/lang/es/moodle.php | 2 +- install/lang/es_ar/langconfig.php | 2 +- install/lang/es_es/langconfig.php | 2 +- install/lang/es_mx/langconfig.php | 2 +- install/lang/et/admin.php | 2 +- install/lang/et/error.php | 2 +- install/lang/et/install.php | 2 +- install/lang/et/langconfig.php | 2 +- install/lang/et/moodle.php | 2 +- install/lang/eu/admin.php | 2 +- install/lang/eu/error.php | 2 +- install/lang/eu/install.php | 2 +- install/lang/eu/langconfig.php | 2 +- install/lang/eu/moodle.php | 2 +- install/lang/fa/admin.php | 2 +- install/lang/fa/install.php | 2 +- install/lang/fa/langconfig.php | 2 +- install/lang/fa/moodle.php | 2 +- install/lang/fi/admin.php | 2 +- install/lang/fi/error.php | 2 +- install/lang/fi/install.php | 2 +- install/lang/fi/langconfig.php | 2 +- install/lang/fi/moodle.php | 2 +- install/lang/fil/langconfig.php | 2 +- install/lang/fil/moodle.php | 2 +- install/lang/fj/langconfig.php | 2 +- install/lang/fr/admin.php | 2 +- install/lang/fr/error.php | 2 +- install/lang/fr/install.php | 2 +- install/lang/fr/langconfig.php | 2 +- install/lang/fr/moodle.php | 2 +- install/lang/fr_ca/install.php | 2 +- install/lang/fr_ca/langconfig.php | 2 +- install/lang/fr_ca/moodle.php | 2 +- install/lang/ga/langconfig.php | 2 +- install/lang/gd/langconfig.php | 2 +- install/lang/gl/admin.php | 2 +- install/lang/gl/error.php | 2 +- install/lang/gl/install.php | 2 +- install/lang/gl/langconfig.php | 2 +- install/lang/gl/moodle.php | 2 +- install/lang/gu/error.php | 2 +- install/lang/gu/langconfig.php | 2 +- install/lang/gu/moodle.php | 2 +- install/lang/he/admin.php | 2 +- install/lang/he/error.php | 2 +- install/lang/he/install.php | 2 +- install/lang/he/langconfig.php | 2 +- install/lang/he/moodle.php | 2 +- install/lang/hi/langconfig.php | 2 +- install/lang/hi/moodle.php | 2 +- install/lang/hr/admin.php | 2 +- install/lang/hr/error.php | 2 +- install/lang/hr/install.php | 2 +- install/lang/hr/langconfig.php | 2 +- install/lang/hr/moodle.php | 2 +- install/lang/hu/admin.php | 2 +- install/lang/hu/error.php | 2 +- install/lang/hu/install.php | 2 +- install/lang/hu/langconfig.php | 2 +- install/lang/hu/moodle.php | 2 +- install/lang/hy/admin.php | 2 +- install/lang/hy/error.php | 2 +- install/lang/hy/install.php | 2 +- install/lang/hy/langconfig.php | 2 +- install/lang/hy/moodle.php | 2 +- install/lang/id/langconfig.php | 2 +- install/lang/id/moodle.php | 2 +- install/lang/is/admin.php | 2 +- install/lang/is/error.php | 2 +- install/lang/is/install.php | 2 +- install/lang/is/langconfig.php | 2 +- install/lang/is/moodle.php | 2 +- install/lang/it/admin.php | 2 +- install/lang/it/error.php | 2 +- install/lang/it/install.php | 2 +- install/lang/it/langconfig.php | 2 +- install/lang/it/moodle.php | 2 +- install/lang/ja/admin.php | 2 +- install/lang/ja/error.php | 2 +- install/lang/ja/install.php | 2 +- install/lang/ja/langconfig.php | 2 +- install/lang/ja/moodle.php | 2 +- install/lang/ka/admin.php | 2 +- install/lang/ka/install.php | 2 +- install/lang/ka/langconfig.php | 2 +- install/lang/kk/install.php | 2 +- install/lang/kk/langconfig.php | 2 +- install/lang/kk/moodle.php | 2 +- install/lang/km/admin.php | 2 +- install/lang/km/error.php | 2 +- install/lang/km/install.php | 2 +- install/lang/km/langconfig.php | 2 +- install/lang/km/moodle.php | 2 +- install/lang/kn/langconfig.php | 2 +- install/lang/ko/admin.php | 2 +- install/lang/ko/error.php | 2 +- install/lang/ko/install.php | 2 +- install/lang/ko/langconfig.php | 2 +- install/lang/ko/moodle.php | 2 +- install/lang/la/langconfig.php | 2 +- install/lang/la/moodle.php | 2 +- install/lang/lo/admin.php | 2 +- install/lang/lo/install.php | 2 +- install/lang/lo/langconfig.php | 2 +- install/lang/lo/moodle.php | 2 +- install/lang/lt/langconfig.php | 2 +- install/lang/lt/moodle.php | 2 +- install/lang/lv/admin.php | 2 +- install/lang/lv/error.php | 2 +- install/lang/lv/install.php | 2 +- install/lang/lv/langconfig.php | 2 +- install/lang/lv/moodle.php | 2 +- install/lang/mi_tn/langconfig.php | 2 +- install/lang/mi_tn/moodle.php | 2 +- install/lang/mi_wwow/admin.php | 2 +- install/lang/mi_wwow/error.php | 2 +- install/lang/mi_wwow/install.php | 2 +- install/lang/mi_wwow/langconfig.php | 2 +- install/lang/mi_wwow/moodle.php | 2 +- install/lang/mk/admin.php | 2 +- install/lang/mk/error.php | 2 +- install/lang/mk/install.php | 2 +- install/lang/mk/langconfig.php | 2 +- install/lang/mk/moodle.php | 2 +- install/lang/ml/langconfig.php | 2 +- install/lang/ml/moodle.php | 2 +- install/lang/mn/admin.php | 2 +- install/lang/mn/error.php | 2 +- install/lang/mn/install.php | 2 +- install/lang/mn/langconfig.php | 2 +- install/lang/mn/moodle.php | 2 +- install/lang/mr/admin.php | 2 +- install/lang/mr/error.php | 2 +- install/lang/mr/install.php | 2 +- install/lang/mr/langconfig.php | 2 +- install/lang/mr/moodle.php | 2 +- install/lang/ms/langconfig.php | 2 +- install/lang/ne/langconfig.php | 2 +- install/lang/nl/admin.php | 2 +- install/lang/nl/error.php | 2 +- install/lang/nl/install.php | 2 +- install/lang/nl/langconfig.php | 2 +- install/lang/nl/moodle.php | 2 +- install/lang/nn/langconfig.php | 2 +- install/lang/nn/moodle.php | 2 +- install/lang/no/admin.php | 2 +- install/lang/no/error.php | 2 +- install/lang/no/install.php | 2 +- install/lang/no/langconfig.php | 2 +- install/lang/no/moodle.php | 2 +- install/lang/no_gr/langconfig.php | 2 +- install/lang/no_gr/moodle.php | 2 +- install/lang/oc_es/langconfig.php | 2 +- install/lang/pl/admin.php | 2 +- install/lang/pl/error.php | 2 +- install/lang/pl/install.php | 2 +- install/lang/pl/langconfig.php | 2 +- install/lang/pl/moodle.php | 2 +- install/lang/pt/admin.php | 2 +- install/lang/pt/error.php | 2 +- install/lang/pt/install.php | 2 +- install/lang/pt/langconfig.php | 2 +- install/lang/pt/moodle.php | 2 +- install/lang/pt_br/admin.php | 2 +- install/lang/pt_br/error.php | 2 +- install/lang/pt_br/install.php | 2 +- install/lang/pt_br/langconfig.php | 2 +- install/lang/pt_br/moodle.php | 2 +- install/lang/ro/admin.php | 2 +- install/lang/ro/error.php | 2 +- install/lang/ro/install.php | 2 +- install/lang/ro/langconfig.php | 2 +- install/lang/ro/moodle.php | 2 +- install/lang/ru/admin.php | 2 +- install/lang/ru/error.php | 2 +- install/lang/ru/install.php | 2 +- install/lang/ru/langconfig.php | 2 +- install/lang/ru/moodle.php | 2 +- install/lang/si/admin.php | 2 +- install/lang/si/error.php | 2 +- install/lang/si/install.php | 2 +- install/lang/si/langconfig.php | 2 +- install/lang/si/moodle.php | 2 +- install/lang/sk/admin.php | 2 +- install/lang/sk/error.php | 2 +- install/lang/sk/install.php | 2 +- install/lang/sk/langconfig.php | 2 +- install/lang/sk/moodle.php | 2 +- install/lang/sl/admin.php | 2 +- install/lang/sl/error.php | 2 +- install/lang/sl/install.php | 2 +- install/lang/sl/langconfig.php | 2 +- install/lang/sl/moodle.php | 2 +- install/lang/sm/install.php | 2 +- install/lang/sm/langconfig.php | 2 +- install/lang/sm/moodle.php | 2 +- install/lang/so/admin.php | 2 +- install/lang/so/install.php | 2 +- install/lang/so/langconfig.php | 2 +- install/lang/so/moodle.php | 2 +- install/lang/sq/langconfig.php | 2 +- install/lang/sq/moodle.php | 2 +- install/lang/sr/langconfig.php | 2 +- install/lang/sr_cr/admin.php | 2 +- install/lang/sr_cr/error.php | 2 +- install/lang/sr_cr/install.php | 2 +- install/lang/sr_cr/langconfig.php | 2 +- install/lang/sr_cr/moodle.php | 2 +- install/lang/sr_cr_bo/langconfig.php | 2 +- install/lang/sr_lt/admin.php | 2 +- install/lang/sr_lt/error.php | 2 +- install/lang/sr_lt/install.php | 2 +- install/lang/sr_lt/langconfig.php | 2 +- install/lang/sr_lt/moodle.php | 2 +- install/lang/sv/admin.php | 2 +- install/lang/sv/error.php | 2 +- install/lang/sv/install.php | 2 +- install/lang/sv/langconfig.php | 2 +- install/lang/sv/moodle.php | 2 +- install/lang/sv_fi/langconfig.php | 2 +- install/lang/sw/admin.php | 2 +- install/lang/ta/admin.php | 2 +- install/lang/ta/error.php | 2 +- install/lang/ta/install.php | 2 +- install/lang/ta/langconfig.php | 2 +- install/lang/ta/moodle.php | 2 +- install/lang/ta_lk/admin.php | 2 +- install/lang/ta_lk/error.php | 2 +- install/lang/ta_lk/install.php | 2 +- install/lang/ta_lk/langconfig.php | 2 +- install/lang/ta_lk/moodle.php | 2 +- install/lang/te/admin.php | 2 +- install/lang/te/langconfig.php | 2 +- install/lang/te/moodle.php | 2 +- install/lang/th/admin.php | 2 +- install/lang/th/install.php | 2 +- install/lang/th/langconfig.php | 2 +- install/lang/th/moodle.php | 2 +- install/lang/ti/langconfig.php | 2 +- install/lang/ti/moodle.php | 2 +- install/lang/tl/admin.php | 2 +- install/lang/tl/error.php | 2 +- install/lang/tl/install.php | 2 +- install/lang/tl/langconfig.php | 2 +- install/lang/tl/moodle.php | 2 +- install/lang/to/install.php | 2 +- install/lang/to/langconfig.php | 2 +- install/lang/to/moodle.php | 2 +- install/lang/tr/admin.php | 2 +- install/lang/tr/error.php | 2 +- install/lang/tr/install.php | 2 +- install/lang/tr/langconfig.php | 2 +- install/lang/tr/moodle.php | 2 +- install/lang/uk/langconfig.php | 2 +- install/lang/uk/moodle.php | 2 +- install/lang/ur/install.php | 2 +- install/lang/ur/langconfig.php | 2 +- install/lang/ur/moodle.php | 2 +- install/lang/uz/install.php | 2 +- install/lang/uz/langconfig.php | 2 +- install/lang/uz/moodle.php | 2 +- install/lang/vi/admin.php | 2 +- install/lang/vi/install.php | 2 +- install/lang/vi/langconfig.php | 2 +- install/lang/vi/moodle.php | 2 +- install/lang/wo/langconfig.php | 2 +- install/lang/zh_cn/admin.php | 2 +- install/lang/zh_cn/error.php | 2 +- install/lang/zh_cn/install.php | 2 +- install/lang/zh_cn/langconfig.php | 2 +- install/lang/zh_cn/moodle.php | 2 +- install/lang/zh_tw/admin.php | 2 +- install/lang/zh_tw/error.php | 2 +- install/lang/zh_tw/install.php | 2 +- install/lang/zh_tw/langconfig.php | 2 +- install/lang/zh_tw/moodle.php | 2 +- install/lang/zu/error.php | 2 +- install/lang/zu/install.php | 2 +- install/lang/zu/langconfig.php | 2 +- 363 files changed, 363 insertions(+), 363 deletions(-) diff --git a/install/lang/af/admin.php b/install/lang/af/admin.php index 0fe5fffec3..3e7e0eed67 100644 --- a/install/lang/af/admin.php +++ b/install/lang/af/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/af/langconfig.php b/install/lang/af/langconfig.php index 44f288225c..7e4d4fd405 100644 --- a/install/lang/af/langconfig.php +++ b/install/lang/af/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/am/install.php b/install/lang/am/install.php index 998ffd7aa4..0d25e3e484 100644 --- a/install/lang/am/install.php +++ b/install/lang/am/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/am/langconfig.php b/install/lang/am/langconfig.php index ba5b329429..6448a2b786 100644 --- a/install/lang/am/langconfig.php +++ b/install/lang/am/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/am/moodle.php b/install/lang/am/moodle.php index 7c810fadfe..9b94e9c61c 100644 --- a/install/lang/am/moodle.php +++ b/install/lang/am/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ar/admin.php b/install/lang/ar/admin.php index cb04c416ad..8b7cfb96b5 100644 --- a/install/lang/ar/admin.php +++ b/install/lang/ar/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ar/error.php b/install/lang/ar/error.php index a5b1955d4f..c374dffab3 100644 --- a/install/lang/ar/error.php +++ b/install/lang/ar/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ar/install.php b/install/lang/ar/install.php index 0d29b2af84..d422ea0fcf 100644 --- a/install/lang/ar/install.php +++ b/install/lang/ar/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ar/langconfig.php b/install/lang/ar/langconfig.php index 3c5d63fd91..5e241fda97 100644 --- a/install/lang/ar/langconfig.php +++ b/install/lang/ar/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ar/moodle.php b/install/lang/ar/moodle.php index 50e639e905..4f69811de7 100644 --- a/install/lang/ar/moodle.php +++ b/install/lang/ar/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ast/admin.php b/install/lang/ast/admin.php index e5b0094390..2e732d283a 100644 --- a/install/lang/ast/admin.php +++ b/install/lang/ast/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ast/error.php b/install/lang/ast/error.php index e8f5a832a7..128aba8215 100644 --- a/install/lang/ast/error.php +++ b/install/lang/ast/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ast/install.php b/install/lang/ast/install.php index 1d2201f528..0c21e01497 100644 --- a/install/lang/ast/install.php +++ b/install/lang/ast/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ast/langconfig.php b/install/lang/ast/langconfig.php index 8a1d48279b..0c8a1e5608 100644 --- a/install/lang/ast/langconfig.php +++ b/install/lang/ast/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ast/moodle.php b/install/lang/ast/moodle.php index dec7a41755..0877bd2ddc 100644 --- a/install/lang/ast/moodle.php +++ b/install/lang/ast/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/az/admin.php b/install/lang/az/admin.php index e9436368f1..49b0e3072f 100644 --- a/install/lang/az/admin.php +++ b/install/lang/az/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/az/error.php b/install/lang/az/error.php index 1a55b833d8..986fc6d361 100644 --- a/install/lang/az/error.php +++ b/install/lang/az/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/az/install.php b/install/lang/az/install.php index dc431ffe87..65c5e2d7f2 100644 --- a/install/lang/az/install.php +++ b/install/lang/az/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/az/langconfig.php b/install/lang/az/langconfig.php index dd278f9e63..884423cb00 100644 --- a/install/lang/az/langconfig.php +++ b/install/lang/az/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/be/langconfig.php b/install/lang/be/langconfig.php index f8b87a1590..5fd35d7993 100644 --- a/install/lang/be/langconfig.php +++ b/install/lang/be/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/be/moodle.php b/install/lang/be/moodle.php index bdede7ccbc..974405214d 100644 --- a/install/lang/be/moodle.php +++ b/install/lang/be/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bg/admin.php b/install/lang/bg/admin.php index a6d964843e..b35cc86508 100644 --- a/install/lang/bg/admin.php +++ b/install/lang/bg/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bg/error.php b/install/lang/bg/error.php index 445d78e702..22c14b2bdb 100644 --- a/install/lang/bg/error.php +++ b/install/lang/bg/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bg/install.php b/install/lang/bg/install.php index ef6149250f..c4c402cd02 100644 --- a/install/lang/bg/install.php +++ b/install/lang/bg/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bg/langconfig.php b/install/lang/bg/langconfig.php index 83e38f671b..f46055556e 100644 --- a/install/lang/bg/langconfig.php +++ b/install/lang/bg/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bg/moodle.php b/install/lang/bg/moodle.php index 881e3163cf..bbcbdb6faf 100644 --- a/install/lang/bg/moodle.php +++ b/install/lang/bg/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bn/admin.php b/install/lang/bn/admin.php index c4086a3c6b..e8eb491720 100644 --- a/install/lang/bn/admin.php +++ b/install/lang/bn/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bn/install.php b/install/lang/bn/install.php index 25b6b1401d..d3eb440844 100644 --- a/install/lang/bn/install.php +++ b/install/lang/bn/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bn/langconfig.php b/install/lang/bn/langconfig.php index 2e8761bfeb..97e85c1f8f 100644 --- a/install/lang/bn/langconfig.php +++ b/install/lang/bn/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bn/moodle.php b/install/lang/bn/moodle.php index b36b0d29bb..d4737f7f21 100644 --- a/install/lang/bn/moodle.php +++ b/install/lang/bn/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bs/install.php b/install/lang/bs/install.php index 3de4b5b94c..47fc65ce27 100644 --- a/install/lang/bs/install.php +++ b/install/lang/bs/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/bs/langconfig.php b/install/lang/bs/langconfig.php index 60639b397d..1cc76f6060 100644 --- a/install/lang/bs/langconfig.php +++ b/install/lang/bs/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ca/admin.php b/install/lang/ca/admin.php index 106f200301..ffb19b6cb7 100644 --- a/install/lang/ca/admin.php +++ b/install/lang/ca/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ca/error.php b/install/lang/ca/error.php index 2f31a88164..19bf2ce59c 100644 --- a/install/lang/ca/error.php +++ b/install/lang/ca/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ca/install.php b/install/lang/ca/install.php index 723ee45f7d..f8cef2b133 100644 --- a/install/lang/ca/install.php +++ b/install/lang/ca/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ca/langconfig.php b/install/lang/ca/langconfig.php index 47ff126f77..8672b5715c 100644 --- a/install/lang/ca/langconfig.php +++ b/install/lang/ca/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ca/moodle.php b/install/lang/ca/moodle.php index a9eed95954..1c76f6d838 100644 --- a/install/lang/ca/moodle.php +++ b/install/lang/ca/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ckb/langconfig.php b/install/lang/ckb/langconfig.php index ce8991c5cf..fcfc54d074 100644 --- a/install/lang/ckb/langconfig.php +++ b/install/lang/ckb/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cs/admin.php b/install/lang/cs/admin.php index d42a75a73b..d66e30f805 100644 --- a/install/lang/cs/admin.php +++ b/install/lang/cs/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cs/error.php b/install/lang/cs/error.php index a76faa2147..1dcb28bd16 100644 --- a/install/lang/cs/error.php +++ b/install/lang/cs/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cs/install.php b/install/lang/cs/install.php index 594f0ca4c9..828cc5a6bd 100644 --- a/install/lang/cs/install.php +++ b/install/lang/cs/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cs/langconfig.php b/install/lang/cs/langconfig.php index 4adcde58c4..09613c5703 100644 --- a/install/lang/cs/langconfig.php +++ b/install/lang/cs/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cs/moodle.php b/install/lang/cs/moodle.php index 4522d87fcc..469d73765e 100644 --- a/install/lang/cs/moodle.php +++ b/install/lang/cs/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cy/admin.php b/install/lang/cy/admin.php index 2012b77869..ef0f3bb373 100644 --- a/install/lang/cy/admin.php +++ b/install/lang/cy/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cy/error.php b/install/lang/cy/error.php index 2a67a7d0e2..3ba3d5014d 100644 --- a/install/lang/cy/error.php +++ b/install/lang/cy/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cy/install.php b/install/lang/cy/install.php index c00efcf563..0859360341 100644 --- a/install/lang/cy/install.php +++ b/install/lang/cy/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cy/langconfig.php b/install/lang/cy/langconfig.php index 6f7e876435..8d3783d83c 100644 --- a/install/lang/cy/langconfig.php +++ b/install/lang/cy/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/cy/moodle.php b/install/lang/cy/moodle.php index 24b025e045..f2f4b6b5ce 100644 --- a/install/lang/cy/moodle.php +++ b/install/lang/cy/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/da/admin.php b/install/lang/da/admin.php index b5e7a8acf2..c11ac3879f 100644 --- a/install/lang/da/admin.php +++ b/install/lang/da/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/da/error.php b/install/lang/da/error.php index 0579d7a4c2..ebe9f4e6d5 100644 --- a/install/lang/da/error.php +++ b/install/lang/da/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/da/install.php b/install/lang/da/install.php index b67a0a5606..6ead3e70a5 100644 --- a/install/lang/da/install.php +++ b/install/lang/da/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/da/langconfig.php b/install/lang/da/langconfig.php index 825cb34bc6..765da06209 100644 --- a/install/lang/da/langconfig.php +++ b/install/lang/da/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/da/moodle.php b/install/lang/da/moodle.php index ca06601ffa..ec55822838 100644 --- a/install/lang/da/moodle.php +++ b/install/lang/da/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de/admin.php b/install/lang/de/admin.php index bbf2a254b8..91b80c0bdc 100644 --- a/install/lang/de/admin.php +++ b/install/lang/de/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de/error.php b/install/lang/de/error.php index 1a5ac1bf8c..ddd00515b7 100644 --- a/install/lang/de/error.php +++ b/install/lang/de/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de/install.php b/install/lang/de/install.php index 53cafd5fa6..76421c3c6e 100644 --- a/install/lang/de/install.php +++ b/install/lang/de/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de/langconfig.php b/install/lang/de/langconfig.php index b4b632cee4..ff65bd4a3d 100644 --- a/install/lang/de/langconfig.php +++ b/install/lang/de/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de/moodle.php b/install/lang/de/moodle.php index 5fb490b241..04db977c20 100644 --- a/install/lang/de/moodle.php +++ b/install/lang/de/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de_du/error.php b/install/lang/de_du/error.php index a9c4477b26..323ec56e3b 100644 --- a/install/lang/de_du/error.php +++ b/install/lang/de_du/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de_du/install.php b/install/lang/de_du/install.php index 930c7867d0..8f803a6ef1 100644 --- a/install/lang/de_du/install.php +++ b/install/lang/de_du/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de_du/langconfig.php b/install/lang/de_du/langconfig.php index dc321f7596..f5b15115d8 100644 --- a/install/lang/de_du/langconfig.php +++ b/install/lang/de_du/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/de_kids/langconfig.php b/install/lang/de_kids/langconfig.php index ade344fbcc..454dc479ed 100644 --- a/install/lang/de_kids/langconfig.php +++ b/install/lang/de_kids/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/dv/admin.php b/install/lang/dv/admin.php index 4a42b80d0b..cebfe87828 100644 --- a/install/lang/dv/admin.php +++ b/install/lang/dv/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/dv/error.php b/install/lang/dv/error.php index 3c0b7c18d9..ee7a3e76c9 100644 --- a/install/lang/dv/error.php +++ b/install/lang/dv/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/dv/install.php b/install/lang/dv/install.php index 0bcc31d09e..4aa4caf5cc 100644 --- a/install/lang/dv/install.php +++ b/install/lang/dv/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/dv/langconfig.php b/install/lang/dv/langconfig.php index 49e0b9b761..d73f6674b7 100644 --- a/install/lang/dv/langconfig.php +++ b/install/lang/dv/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/dv/moodle.php b/install/lang/dv/moodle.php index 36493efa8d..e1f80faaa5 100644 --- a/install/lang/dv/moodle.php +++ b/install/lang/dv/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/el/admin.php b/install/lang/el/admin.php index 8b9fb684e0..4bdc3a36c0 100644 --- a/install/lang/el/admin.php +++ b/install/lang/el/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/el/error.php b/install/lang/el/error.php index baafc2a9fc..1a0ca35685 100644 --- a/install/lang/el/error.php +++ b/install/lang/el/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/el/install.php b/install/lang/el/install.php index 821fa88efa..5ce4da5696 100644 --- a/install/lang/el/install.php +++ b/install/lang/el/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/el/langconfig.php b/install/lang/el/langconfig.php index a48362e65a..647c9b65ad 100644 --- a/install/lang/el/langconfig.php +++ b/install/lang/el/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/el/moodle.php b/install/lang/el/moodle.php index 2d64e2d8e9..932b3598df 100644 --- a/install/lang/el/moodle.php +++ b/install/lang/el/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en/admin.php b/install/lang/en/admin.php index 5df4dff4cf..a1b495ecd6 100644 --- a/install/lang/en/admin.php +++ b/install/lang/en/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en/error.php b/install/lang/en/error.php index 77a518f872..9dd0178039 100644 --- a/install/lang/en/error.php +++ b/install/lang/en/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en/install.php b/install/lang/en/install.php index 15b4379be4..474907a516 100644 --- a/install/lang/en/install.php +++ b/install/lang/en/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en/langconfig.php b/install/lang/en/langconfig.php index 981573b203..00b9943d55 100644 --- a/install/lang/en/langconfig.php +++ b/install/lang/en/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en/moodle.php b/install/lang/en/moodle.php index 389d7340b7..deea583d4d 100644 --- a/install/lang/en/moodle.php +++ b/install/lang/en/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en_us/install.php b/install/lang/en_us/install.php index 1ea8e3e098..7297a550cb 100644 --- a/install/lang/en_us/install.php +++ b/install/lang/en_us/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/en_us/langconfig.php b/install/lang/en_us/langconfig.php index 8a651023e7..6c32e579e4 100644 --- a/install/lang/en_us/langconfig.php +++ b/install/lang/en_us/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es/admin.php b/install/lang/es/admin.php index f4807b4814..cf8b468bdf 100644 --- a/install/lang/es/admin.php +++ b/install/lang/es/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es/error.php b/install/lang/es/error.php index 1bc930d939..753173310f 100644 --- a/install/lang/es/error.php +++ b/install/lang/es/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es/install.php b/install/lang/es/install.php index 6a2d68825e..82a3c5e563 100644 --- a/install/lang/es/install.php +++ b/install/lang/es/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es/langconfig.php b/install/lang/es/langconfig.php index 327211ae9d..6fefc1784f 100644 --- a/install/lang/es/langconfig.php +++ b/install/lang/es/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es/moodle.php b/install/lang/es/moodle.php index 676f38e0b6..fd0543cce0 100644 --- a/install/lang/es/moodle.php +++ b/install/lang/es/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es_ar/langconfig.php b/install/lang/es_ar/langconfig.php index d229874212..fc5c484046 100644 --- a/install/lang/es_ar/langconfig.php +++ b/install/lang/es_ar/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es_es/langconfig.php b/install/lang/es_es/langconfig.php index d8b10c0b9c..dbc154cf56 100644 --- a/install/lang/es_es/langconfig.php +++ b/install/lang/es_es/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/es_mx/langconfig.php b/install/lang/es_mx/langconfig.php index 55fd376384..05f1ebd032 100644 --- a/install/lang/es_mx/langconfig.php +++ b/install/lang/es_mx/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/et/admin.php b/install/lang/et/admin.php index 9e19d331d0..90e4a675bd 100644 --- a/install/lang/et/admin.php +++ b/install/lang/et/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/et/error.php b/install/lang/et/error.php index cb5139eacc..b3d0fe65d0 100644 --- a/install/lang/et/error.php +++ b/install/lang/et/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/et/install.php b/install/lang/et/install.php index c566b4474d..5ec8b1972f 100644 --- a/install/lang/et/install.php +++ b/install/lang/et/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/et/langconfig.php b/install/lang/et/langconfig.php index 9a65329ff4..2299cf355b 100644 --- a/install/lang/et/langconfig.php +++ b/install/lang/et/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/et/moodle.php b/install/lang/et/moodle.php index b807717699..7b822604f5 100644 --- a/install/lang/et/moodle.php +++ b/install/lang/et/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/eu/admin.php b/install/lang/eu/admin.php index c6c61f993c..29f9180147 100644 --- a/install/lang/eu/admin.php +++ b/install/lang/eu/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/eu/error.php b/install/lang/eu/error.php index 2b58f49e7c..baf1749097 100644 --- a/install/lang/eu/error.php +++ b/install/lang/eu/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/eu/install.php b/install/lang/eu/install.php index d0c62a460c..1708adf8f4 100644 --- a/install/lang/eu/install.php +++ b/install/lang/eu/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/eu/langconfig.php b/install/lang/eu/langconfig.php index 3dd6718e9a..66f2f201e5 100644 --- a/install/lang/eu/langconfig.php +++ b/install/lang/eu/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/eu/moodle.php b/install/lang/eu/moodle.php index 9f7a6b41ae..bfab1ba5c3 100644 --- a/install/lang/eu/moodle.php +++ b/install/lang/eu/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fa/admin.php b/install/lang/fa/admin.php index cf9b43710c..c59c89c69f 100644 --- a/install/lang/fa/admin.php +++ b/install/lang/fa/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fa/install.php b/install/lang/fa/install.php index e2cfaa53bc..2ec22533bf 100644 --- a/install/lang/fa/install.php +++ b/install/lang/fa/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fa/langconfig.php b/install/lang/fa/langconfig.php index 9b3bc1a2ea..cc9eac6c8d 100644 --- a/install/lang/fa/langconfig.php +++ b/install/lang/fa/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fa/moodle.php b/install/lang/fa/moodle.php index 7a98443479..7be18cdfdb 100644 --- a/install/lang/fa/moodle.php +++ b/install/lang/fa/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fi/admin.php b/install/lang/fi/admin.php index 8002142a98..fb7a775420 100644 --- a/install/lang/fi/admin.php +++ b/install/lang/fi/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fi/error.php b/install/lang/fi/error.php index ad3bc1ccdb..73f001a2ca 100644 --- a/install/lang/fi/error.php +++ b/install/lang/fi/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fi/install.php b/install/lang/fi/install.php index d899bc2b8b..00e9eb9c4a 100644 --- a/install/lang/fi/install.php +++ b/install/lang/fi/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fi/langconfig.php b/install/lang/fi/langconfig.php index 63ef895078..86b7b7c082 100644 --- a/install/lang/fi/langconfig.php +++ b/install/lang/fi/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fi/moodle.php b/install/lang/fi/moodle.php index bd36a4ac3c..20f77f99bf 100644 --- a/install/lang/fi/moodle.php +++ b/install/lang/fi/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fil/langconfig.php b/install/lang/fil/langconfig.php index 45ba62769a..ecabec030e 100644 --- a/install/lang/fil/langconfig.php +++ b/install/lang/fil/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fil/moodle.php b/install/lang/fil/moodle.php index b6a639d17f..3a359d0993 100644 --- a/install/lang/fil/moodle.php +++ b/install/lang/fil/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fj/langconfig.php b/install/lang/fj/langconfig.php index b22c9f89cc..86774b7ba0 100644 --- a/install/lang/fj/langconfig.php +++ b/install/lang/fj/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr/admin.php b/install/lang/fr/admin.php index 25203454f1..fc690dd56a 100644 --- a/install/lang/fr/admin.php +++ b/install/lang/fr/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr/error.php b/install/lang/fr/error.php index 5fa129723f..877fc16a79 100644 --- a/install/lang/fr/error.php +++ b/install/lang/fr/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr/install.php b/install/lang/fr/install.php index 1036803031..3c3df5f159 100644 --- a/install/lang/fr/install.php +++ b/install/lang/fr/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr/langconfig.php b/install/lang/fr/langconfig.php index 87b47cb234..ef21459ba0 100644 --- a/install/lang/fr/langconfig.php +++ b/install/lang/fr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr/moodle.php b/install/lang/fr/moodle.php index cd24ecf5c0..dc9847622f 100644 --- a/install/lang/fr/moodle.php +++ b/install/lang/fr/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr_ca/install.php b/install/lang/fr_ca/install.php index 047b11adfc..374567cfe8 100644 --- a/install/lang/fr_ca/install.php +++ b/install/lang/fr_ca/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr_ca/langconfig.php b/install/lang/fr_ca/langconfig.php index e9ac08d0bc..95516888ef 100644 --- a/install/lang/fr_ca/langconfig.php +++ b/install/lang/fr_ca/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/fr_ca/moodle.php b/install/lang/fr_ca/moodle.php index 7300baf137..4f71d44f43 100644 --- a/install/lang/fr_ca/moodle.php +++ b/install/lang/fr_ca/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ga/langconfig.php b/install/lang/ga/langconfig.php index c3e0ed593f..5fbf52592a 100644 --- a/install/lang/ga/langconfig.php +++ b/install/lang/ga/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gd/langconfig.php b/install/lang/gd/langconfig.php index ca393dd0ce..84921cc993 100644 --- a/install/lang/gd/langconfig.php +++ b/install/lang/gd/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gl/admin.php b/install/lang/gl/admin.php index 818de767f7..400f2bfe8e 100644 --- a/install/lang/gl/admin.php +++ b/install/lang/gl/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gl/error.php b/install/lang/gl/error.php index c8acdb90ec..dcdba565b7 100644 --- a/install/lang/gl/error.php +++ b/install/lang/gl/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gl/install.php b/install/lang/gl/install.php index 2d5c2eebd6..2d3518df35 100644 --- a/install/lang/gl/install.php +++ b/install/lang/gl/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gl/langconfig.php b/install/lang/gl/langconfig.php index 0f2f5cda50..52c1df5946 100644 --- a/install/lang/gl/langconfig.php +++ b/install/lang/gl/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gl/moodle.php b/install/lang/gl/moodle.php index e1bcf48bc3..e5474c7ba7 100644 --- a/install/lang/gl/moodle.php +++ b/install/lang/gl/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gu/error.php b/install/lang/gu/error.php index db19297ea2..4c168c06a0 100644 --- a/install/lang/gu/error.php +++ b/install/lang/gu/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gu/langconfig.php b/install/lang/gu/langconfig.php index 26f3ea69f9..58e1446dc5 100644 --- a/install/lang/gu/langconfig.php +++ b/install/lang/gu/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/gu/moodle.php b/install/lang/gu/moodle.php index 2f83d378c4..c0a353ae65 100644 --- a/install/lang/gu/moodle.php +++ b/install/lang/gu/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/he/admin.php b/install/lang/he/admin.php index 2e23323151..5baee6027b 100644 --- a/install/lang/he/admin.php +++ b/install/lang/he/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/he/error.php b/install/lang/he/error.php index 976ecf0cef..4f967f6b90 100644 --- a/install/lang/he/error.php +++ b/install/lang/he/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/he/install.php b/install/lang/he/install.php index d0807d4583..e279c29e9a 100644 --- a/install/lang/he/install.php +++ b/install/lang/he/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/he/langconfig.php b/install/lang/he/langconfig.php index 9285b400fb..1f14bf5449 100644 --- a/install/lang/he/langconfig.php +++ b/install/lang/he/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/he/moodle.php b/install/lang/he/moodle.php index 61c5465479..44dc4393a6 100644 --- a/install/lang/he/moodle.php +++ b/install/lang/he/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hi/langconfig.php b/install/lang/hi/langconfig.php index 7b7041015b..7581cfa65d 100644 --- a/install/lang/hi/langconfig.php +++ b/install/lang/hi/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hi/moodle.php b/install/lang/hi/moodle.php index d23a4b49aa..18843e4beb 100644 --- a/install/lang/hi/moodle.php +++ b/install/lang/hi/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hr/admin.php b/install/lang/hr/admin.php index ffd8325c01..a029120803 100644 --- a/install/lang/hr/admin.php +++ b/install/lang/hr/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hr/error.php b/install/lang/hr/error.php index 383e6eae25..a88b87bae4 100644 --- a/install/lang/hr/error.php +++ b/install/lang/hr/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hr/install.php b/install/lang/hr/install.php index 8f2241db9e..068abc6744 100644 --- a/install/lang/hr/install.php +++ b/install/lang/hr/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hr/langconfig.php b/install/lang/hr/langconfig.php index 58db219ce1..d7ccfa50fc 100644 --- a/install/lang/hr/langconfig.php +++ b/install/lang/hr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hr/moodle.php b/install/lang/hr/moodle.php index afd82b69c2..77ad7d9ecb 100644 --- a/install/lang/hr/moodle.php +++ b/install/lang/hr/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hu/admin.php b/install/lang/hu/admin.php index 8f2f8d8b24..00c38511be 100644 --- a/install/lang/hu/admin.php +++ b/install/lang/hu/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hu/error.php b/install/lang/hu/error.php index 6b6aa7ce57..6805dcae58 100644 --- a/install/lang/hu/error.php +++ b/install/lang/hu/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hu/install.php b/install/lang/hu/install.php index 1261f4f9e0..771029f75d 100644 --- a/install/lang/hu/install.php +++ b/install/lang/hu/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hu/langconfig.php b/install/lang/hu/langconfig.php index f0a12265b6..7a7b36bc09 100644 --- a/install/lang/hu/langconfig.php +++ b/install/lang/hu/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hu/moodle.php b/install/lang/hu/moodle.php index 7a2e90cbba..f1a4a64c55 100644 --- a/install/lang/hu/moodle.php +++ b/install/lang/hu/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hy/admin.php b/install/lang/hy/admin.php index bdfcb1d046..670aeb1705 100644 --- a/install/lang/hy/admin.php +++ b/install/lang/hy/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hy/error.php b/install/lang/hy/error.php index 9d18d780d5..d2b51c688d 100644 --- a/install/lang/hy/error.php +++ b/install/lang/hy/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hy/install.php b/install/lang/hy/install.php index d40c02e973..2ff3b58ce9 100644 --- a/install/lang/hy/install.php +++ b/install/lang/hy/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hy/langconfig.php b/install/lang/hy/langconfig.php index 736c08252c..061c876ddc 100644 --- a/install/lang/hy/langconfig.php +++ b/install/lang/hy/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/hy/moodle.php b/install/lang/hy/moodle.php index 3868912718..5fe0ddb068 100644 --- a/install/lang/hy/moodle.php +++ b/install/lang/hy/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/id/langconfig.php b/install/lang/id/langconfig.php index f3a66c5792..a630a6dbe1 100644 --- a/install/lang/id/langconfig.php +++ b/install/lang/id/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/id/moodle.php b/install/lang/id/moodle.php index 69facaa847..8a6e42f236 100644 --- a/install/lang/id/moodle.php +++ b/install/lang/id/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/is/admin.php b/install/lang/is/admin.php index 09d32d6819..71556d0126 100644 --- a/install/lang/is/admin.php +++ b/install/lang/is/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/is/error.php b/install/lang/is/error.php index b5ae98b979..cf9e7d65ff 100644 --- a/install/lang/is/error.php +++ b/install/lang/is/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/is/install.php b/install/lang/is/install.php index ec8613d8c4..0f3cab85e5 100644 --- a/install/lang/is/install.php +++ b/install/lang/is/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/is/langconfig.php b/install/lang/is/langconfig.php index 00de3a9f1e..0541eb3ece 100644 --- a/install/lang/is/langconfig.php +++ b/install/lang/is/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/is/moodle.php b/install/lang/is/moodle.php index e912f9ffce..fffa488a48 100644 --- a/install/lang/is/moodle.php +++ b/install/lang/is/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/it/admin.php b/install/lang/it/admin.php index 332cbe8fbf..ab9874e3be 100644 --- a/install/lang/it/admin.php +++ b/install/lang/it/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/it/error.php b/install/lang/it/error.php index 923eb08029..b11282781e 100644 --- a/install/lang/it/error.php +++ b/install/lang/it/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/it/install.php b/install/lang/it/install.php index 15f1bbc2a8..fe3aced308 100644 --- a/install/lang/it/install.php +++ b/install/lang/it/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/it/langconfig.php b/install/lang/it/langconfig.php index 9a4ce0b0ae..86a2d7b783 100644 --- a/install/lang/it/langconfig.php +++ b/install/lang/it/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/it/moodle.php b/install/lang/it/moodle.php index b3d92ceea9..7e8e9b0b0c 100644 --- a/install/lang/it/moodle.php +++ b/install/lang/it/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ja/admin.php b/install/lang/ja/admin.php index 75db4a98dd..fcf6b2ef9d 100644 --- a/install/lang/ja/admin.php +++ b/install/lang/ja/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ja/error.php b/install/lang/ja/error.php index ec4e1d0552..6ceff15ce4 100644 --- a/install/lang/ja/error.php +++ b/install/lang/ja/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ja/install.php b/install/lang/ja/install.php index db2b571aa7..a8704d0a5c 100644 --- a/install/lang/ja/install.php +++ b/install/lang/ja/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ja/langconfig.php b/install/lang/ja/langconfig.php index bb22786f45..ff4aaa2306 100644 --- a/install/lang/ja/langconfig.php +++ b/install/lang/ja/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ja/moodle.php b/install/lang/ja/moodle.php index 266a6bcde5..98f5c60c69 100644 --- a/install/lang/ja/moodle.php +++ b/install/lang/ja/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ka/admin.php b/install/lang/ka/admin.php index 51e4b86ff1..7877d346fb 100644 --- a/install/lang/ka/admin.php +++ b/install/lang/ka/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ka/install.php b/install/lang/ka/install.php index 47700e1570..1a3fc91606 100644 --- a/install/lang/ka/install.php +++ b/install/lang/ka/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ka/langconfig.php b/install/lang/ka/langconfig.php index 6e198ee5c8..0525f02b59 100644 --- a/install/lang/ka/langconfig.php +++ b/install/lang/ka/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/kk/install.php b/install/lang/kk/install.php index 2a57049003..021a0bc826 100644 --- a/install/lang/kk/install.php +++ b/install/lang/kk/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/kk/langconfig.php b/install/lang/kk/langconfig.php index b4f93d8b5e..7179f07fab 100644 --- a/install/lang/kk/langconfig.php +++ b/install/lang/kk/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/kk/moodle.php b/install/lang/kk/moodle.php index c5baaa86ec..91c32c86fa 100644 --- a/install/lang/kk/moodle.php +++ b/install/lang/kk/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/km/admin.php b/install/lang/km/admin.php index 38fc620f4a..f81de8120a 100644 --- a/install/lang/km/admin.php +++ b/install/lang/km/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/km/error.php b/install/lang/km/error.php index d059950eb6..b46f53cf69 100644 --- a/install/lang/km/error.php +++ b/install/lang/km/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/km/install.php b/install/lang/km/install.php index 4ef63ce937..7a4519e24a 100644 --- a/install/lang/km/install.php +++ b/install/lang/km/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/km/langconfig.php b/install/lang/km/langconfig.php index ca468f1b34..7e6932bcd9 100644 --- a/install/lang/km/langconfig.php +++ b/install/lang/km/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/km/moodle.php b/install/lang/km/moodle.php index c67816cbc1..d099722946 100644 --- a/install/lang/km/moodle.php +++ b/install/lang/km/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/kn/langconfig.php b/install/lang/kn/langconfig.php index 62f3c8bf85..3f3f0f6d8b 100644 --- a/install/lang/kn/langconfig.php +++ b/install/lang/kn/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ko/admin.php b/install/lang/ko/admin.php index 86eca70394..e2c335b9eb 100644 --- a/install/lang/ko/admin.php +++ b/install/lang/ko/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ko/error.php b/install/lang/ko/error.php index a74e4eb53c..03d8b5f6a2 100644 --- a/install/lang/ko/error.php +++ b/install/lang/ko/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ko/install.php b/install/lang/ko/install.php index e04bbc690f..ecf2c08b66 100644 --- a/install/lang/ko/install.php +++ b/install/lang/ko/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ko/langconfig.php b/install/lang/ko/langconfig.php index f9c5fc442c..7f44172282 100644 --- a/install/lang/ko/langconfig.php +++ b/install/lang/ko/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ko/moodle.php b/install/lang/ko/moodle.php index 1213c33720..50241c9401 100644 --- a/install/lang/ko/moodle.php +++ b/install/lang/ko/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/la/langconfig.php b/install/lang/la/langconfig.php index e684771eb7..cdc18ca821 100644 --- a/install/lang/la/langconfig.php +++ b/install/lang/la/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/la/moodle.php b/install/lang/la/moodle.php index 718bcebe63..350d11cd98 100644 --- a/install/lang/la/moodle.php +++ b/install/lang/la/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lo/admin.php b/install/lang/lo/admin.php index 903a32a002..a38334e5cc 100644 --- a/install/lang/lo/admin.php +++ b/install/lang/lo/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lo/install.php b/install/lang/lo/install.php index a5f1ab695b..1e551c1f99 100644 --- a/install/lang/lo/install.php +++ b/install/lang/lo/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lo/langconfig.php b/install/lang/lo/langconfig.php index 4e0fe11af7..1a37717150 100644 --- a/install/lang/lo/langconfig.php +++ b/install/lang/lo/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lo/moodle.php b/install/lang/lo/moodle.php index 4a6abebedb..1e2006ecc6 100644 --- a/install/lang/lo/moodle.php +++ b/install/lang/lo/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lt/langconfig.php b/install/lang/lt/langconfig.php index 7e1483a2f9..a43e3653d9 100644 --- a/install/lang/lt/langconfig.php +++ b/install/lang/lt/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lt/moodle.php b/install/lang/lt/moodle.php index 3e68c4a8d2..9a015b41b9 100644 --- a/install/lang/lt/moodle.php +++ b/install/lang/lt/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lv/admin.php b/install/lang/lv/admin.php index f77f86c19b..b5a846e491 100644 --- a/install/lang/lv/admin.php +++ b/install/lang/lv/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lv/error.php b/install/lang/lv/error.php index 9708a15314..c181e48f29 100644 --- a/install/lang/lv/error.php +++ b/install/lang/lv/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lv/install.php b/install/lang/lv/install.php index 965a708189..83200d6892 100644 --- a/install/lang/lv/install.php +++ b/install/lang/lv/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lv/langconfig.php b/install/lang/lv/langconfig.php index 2bd0d7dab5..8357875cb3 100644 --- a/install/lang/lv/langconfig.php +++ b/install/lang/lv/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/lv/moodle.php b/install/lang/lv/moodle.php index 9386dbcc02..e09039ed81 100644 --- a/install/lang/lv/moodle.php +++ b/install/lang/lv/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_tn/langconfig.php b/install/lang/mi_tn/langconfig.php index d49138b2b2..27a572c721 100644 --- a/install/lang/mi_tn/langconfig.php +++ b/install/lang/mi_tn/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_tn/moodle.php b/install/lang/mi_tn/moodle.php index 91e32c8471..b754d16bf0 100644 --- a/install/lang/mi_tn/moodle.php +++ b/install/lang/mi_tn/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_wwow/admin.php b/install/lang/mi_wwow/admin.php index 868514b1e4..bbc6dca294 100644 --- a/install/lang/mi_wwow/admin.php +++ b/install/lang/mi_wwow/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_wwow/error.php b/install/lang/mi_wwow/error.php index 1ffc2500dd..76f481f4d1 100644 --- a/install/lang/mi_wwow/error.php +++ b/install/lang/mi_wwow/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_wwow/install.php b/install/lang/mi_wwow/install.php index a006e706d2..1e8331fee3 100644 --- a/install/lang/mi_wwow/install.php +++ b/install/lang/mi_wwow/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_wwow/langconfig.php b/install/lang/mi_wwow/langconfig.php index 36e08c9c69..debdd13e09 100644 --- a/install/lang/mi_wwow/langconfig.php +++ b/install/lang/mi_wwow/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mi_wwow/moodle.php b/install/lang/mi_wwow/moodle.php index 572533908b..5310575943 100644 --- a/install/lang/mi_wwow/moodle.php +++ b/install/lang/mi_wwow/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mk/admin.php b/install/lang/mk/admin.php index 80a6a38c2f..c40d02a0ca 100644 --- a/install/lang/mk/admin.php +++ b/install/lang/mk/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mk/error.php b/install/lang/mk/error.php index 94a0324859..16a667b633 100644 --- a/install/lang/mk/error.php +++ b/install/lang/mk/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mk/install.php b/install/lang/mk/install.php index c38634e0fd..a8167d75d1 100644 --- a/install/lang/mk/install.php +++ b/install/lang/mk/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mk/langconfig.php b/install/lang/mk/langconfig.php index fc50bfb55e..b3ace417b9 100644 --- a/install/lang/mk/langconfig.php +++ b/install/lang/mk/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mk/moodle.php b/install/lang/mk/moodle.php index 940f3a220a..a8e9874ade 100644 --- a/install/lang/mk/moodle.php +++ b/install/lang/mk/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ml/langconfig.php b/install/lang/ml/langconfig.php index c8f62c781f..b35661f8c8 100644 --- a/install/lang/ml/langconfig.php +++ b/install/lang/ml/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ml/moodle.php b/install/lang/ml/moodle.php index 4dccbebfa6..1bec73a6b0 100644 --- a/install/lang/ml/moodle.php +++ b/install/lang/ml/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mn/admin.php b/install/lang/mn/admin.php index 620344fae1..ce30732f0c 100644 --- a/install/lang/mn/admin.php +++ b/install/lang/mn/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mn/error.php b/install/lang/mn/error.php index d86b052c15..98fc6eac36 100644 --- a/install/lang/mn/error.php +++ b/install/lang/mn/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mn/install.php b/install/lang/mn/install.php index 8a7a3c7933..482b10f68b 100644 --- a/install/lang/mn/install.php +++ b/install/lang/mn/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mn/langconfig.php b/install/lang/mn/langconfig.php index f48ad11b3b..88ed237a5a 100644 --- a/install/lang/mn/langconfig.php +++ b/install/lang/mn/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mn/moodle.php b/install/lang/mn/moodle.php index 5ce16ac1f2..5f241ce40b 100644 --- a/install/lang/mn/moodle.php +++ b/install/lang/mn/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mr/admin.php b/install/lang/mr/admin.php index cfe1c0b343..ba539db413 100644 --- a/install/lang/mr/admin.php +++ b/install/lang/mr/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mr/error.php b/install/lang/mr/error.php index 8978d46003..9264715fbb 100644 --- a/install/lang/mr/error.php +++ b/install/lang/mr/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mr/install.php b/install/lang/mr/install.php index c013673cbb..48d33dc9c3 100644 --- a/install/lang/mr/install.php +++ b/install/lang/mr/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mr/langconfig.php b/install/lang/mr/langconfig.php index 1615765d38..6eee693133 100644 --- a/install/lang/mr/langconfig.php +++ b/install/lang/mr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/mr/moodle.php b/install/lang/mr/moodle.php index aeaa65a3ae..1164e4d894 100644 --- a/install/lang/mr/moodle.php +++ b/install/lang/mr/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ms/langconfig.php b/install/lang/ms/langconfig.php index f04244cbc0..38e9c97888 100644 --- a/install/lang/ms/langconfig.php +++ b/install/lang/ms/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ne/langconfig.php b/install/lang/ne/langconfig.php index e840f07369..5642f464a9 100644 --- a/install/lang/ne/langconfig.php +++ b/install/lang/ne/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nl/admin.php b/install/lang/nl/admin.php index 51e5af8128..73dc271a02 100644 --- a/install/lang/nl/admin.php +++ b/install/lang/nl/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nl/error.php b/install/lang/nl/error.php index 413dd49e99..438515c959 100644 --- a/install/lang/nl/error.php +++ b/install/lang/nl/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nl/install.php b/install/lang/nl/install.php index 3512d8def5..5c93c66ba4 100644 --- a/install/lang/nl/install.php +++ b/install/lang/nl/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nl/langconfig.php b/install/lang/nl/langconfig.php index 3ea4ec01ab..116df4e7b5 100644 --- a/install/lang/nl/langconfig.php +++ b/install/lang/nl/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nl/moodle.php b/install/lang/nl/moodle.php index 83c0513b42..077af25432 100644 --- a/install/lang/nl/moodle.php +++ b/install/lang/nl/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nn/langconfig.php b/install/lang/nn/langconfig.php index 24060c1344..3e5523b5a9 100644 --- a/install/lang/nn/langconfig.php +++ b/install/lang/nn/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/nn/moodle.php b/install/lang/nn/moodle.php index 0bf52c166e..c2d36f7842 100644 --- a/install/lang/nn/moodle.php +++ b/install/lang/nn/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no/admin.php b/install/lang/no/admin.php index 7beb69e78e..9740caf125 100644 --- a/install/lang/no/admin.php +++ b/install/lang/no/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no/error.php b/install/lang/no/error.php index 38cd340208..a021c9c5e3 100644 --- a/install/lang/no/error.php +++ b/install/lang/no/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no/install.php b/install/lang/no/install.php index 8cbf252f11..8abb31663f 100644 --- a/install/lang/no/install.php +++ b/install/lang/no/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no/langconfig.php b/install/lang/no/langconfig.php index 8f44c828a7..c84842c2d2 100644 --- a/install/lang/no/langconfig.php +++ b/install/lang/no/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no/moodle.php b/install/lang/no/moodle.php index 8429d22bf4..de0b76b823 100644 --- a/install/lang/no/moodle.php +++ b/install/lang/no/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no_gr/langconfig.php b/install/lang/no_gr/langconfig.php index 6f01998e00..76a8d7ce88 100644 --- a/install/lang/no_gr/langconfig.php +++ b/install/lang/no_gr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/no_gr/moodle.php b/install/lang/no_gr/moodle.php index 0bf52c166e..c2d36f7842 100644 --- a/install/lang/no_gr/moodle.php +++ b/install/lang/no_gr/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/oc_es/langconfig.php b/install/lang/oc_es/langconfig.php index a32f752a38..88cf31be0a 100644 --- a/install/lang/oc_es/langconfig.php +++ b/install/lang/oc_es/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pl/admin.php b/install/lang/pl/admin.php index a9fe371941..f2b094ba87 100644 --- a/install/lang/pl/admin.php +++ b/install/lang/pl/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pl/error.php b/install/lang/pl/error.php index 613bfcf583..de40896d73 100644 --- a/install/lang/pl/error.php +++ b/install/lang/pl/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pl/install.php b/install/lang/pl/install.php index 51a7968dbc..630bf341d2 100644 --- a/install/lang/pl/install.php +++ b/install/lang/pl/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pl/langconfig.php b/install/lang/pl/langconfig.php index e7b9b71ff5..5e459b9a2a 100644 --- a/install/lang/pl/langconfig.php +++ b/install/lang/pl/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pl/moodle.php b/install/lang/pl/moodle.php index 316ddc7ee1..46052e60c3 100644 --- a/install/lang/pl/moodle.php +++ b/install/lang/pl/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt/admin.php b/install/lang/pt/admin.php index 70fe42a55d..e27070f5d6 100644 --- a/install/lang/pt/admin.php +++ b/install/lang/pt/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt/error.php b/install/lang/pt/error.php index 93ee77d6e3..5650077701 100644 --- a/install/lang/pt/error.php +++ b/install/lang/pt/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt/install.php b/install/lang/pt/install.php index eec4a6d8f6..de7b066dad 100644 --- a/install/lang/pt/install.php +++ b/install/lang/pt/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt/langconfig.php b/install/lang/pt/langconfig.php index 38e018b24d..3d56fad87d 100644 --- a/install/lang/pt/langconfig.php +++ b/install/lang/pt/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt/moodle.php b/install/lang/pt/moodle.php index 79b2542e60..d1cd360e2d 100644 --- a/install/lang/pt/moodle.php +++ b/install/lang/pt/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt_br/admin.php b/install/lang/pt_br/admin.php index c9f42e89e1..be6e489824 100644 --- a/install/lang/pt_br/admin.php +++ b/install/lang/pt_br/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt_br/error.php b/install/lang/pt_br/error.php index 540b6a167d..3aaddcd658 100644 --- a/install/lang/pt_br/error.php +++ b/install/lang/pt_br/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt_br/install.php b/install/lang/pt_br/install.php index c6a6ed21d1..2139371eea 100644 --- a/install/lang/pt_br/install.php +++ b/install/lang/pt_br/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt_br/langconfig.php b/install/lang/pt_br/langconfig.php index 1c128177b6..76d3da6ca2 100644 --- a/install/lang/pt_br/langconfig.php +++ b/install/lang/pt_br/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/pt_br/moodle.php b/install/lang/pt_br/moodle.php index 2f3c4b849a..31546fd3e7 100644 --- a/install/lang/pt_br/moodle.php +++ b/install/lang/pt_br/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ro/admin.php b/install/lang/ro/admin.php index dd74795efc..58cf468901 100644 --- a/install/lang/ro/admin.php +++ b/install/lang/ro/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ro/error.php b/install/lang/ro/error.php index edcc9c2a57..b5480c0507 100644 --- a/install/lang/ro/error.php +++ b/install/lang/ro/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ro/install.php b/install/lang/ro/install.php index 63c55dc7b3..9b9959573b 100644 --- a/install/lang/ro/install.php +++ b/install/lang/ro/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ro/langconfig.php b/install/lang/ro/langconfig.php index 2a6aa32c93..faa53393f5 100644 --- a/install/lang/ro/langconfig.php +++ b/install/lang/ro/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ro/moodle.php b/install/lang/ro/moodle.php index b4f6e14867..f4d13adf55 100644 --- a/install/lang/ro/moodle.php +++ b/install/lang/ro/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ru/admin.php b/install/lang/ru/admin.php index ed799af60b..ad3d6090bc 100644 --- a/install/lang/ru/admin.php +++ b/install/lang/ru/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ru/error.php b/install/lang/ru/error.php index 8f338df854..64a4f6eccd 100644 --- a/install/lang/ru/error.php +++ b/install/lang/ru/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ru/install.php b/install/lang/ru/install.php index a425b557f8..c715ae4845 100644 --- a/install/lang/ru/install.php +++ b/install/lang/ru/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ru/langconfig.php b/install/lang/ru/langconfig.php index c2fa586395..19a9c10a6a 100644 --- a/install/lang/ru/langconfig.php +++ b/install/lang/ru/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ru/moodle.php b/install/lang/ru/moodle.php index 5749f92275..6e1b9d1398 100644 --- a/install/lang/ru/moodle.php +++ b/install/lang/ru/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/si/admin.php b/install/lang/si/admin.php index 2ce3633f6e..2868196481 100644 --- a/install/lang/si/admin.php +++ b/install/lang/si/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/si/error.php b/install/lang/si/error.php index 453e03de46..04140c1d1a 100644 --- a/install/lang/si/error.php +++ b/install/lang/si/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/si/install.php b/install/lang/si/install.php index 76730093a6..ab7767f23c 100644 --- a/install/lang/si/install.php +++ b/install/lang/si/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/si/langconfig.php b/install/lang/si/langconfig.php index 0463394399..37abe0656f 100644 --- a/install/lang/si/langconfig.php +++ b/install/lang/si/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/si/moodle.php b/install/lang/si/moodle.php index 2725a38f43..e0f206b27f 100644 --- a/install/lang/si/moodle.php +++ b/install/lang/si/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sk/admin.php b/install/lang/sk/admin.php index 4ba175751d..881eabba17 100644 --- a/install/lang/sk/admin.php +++ b/install/lang/sk/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sk/error.php b/install/lang/sk/error.php index 530beb3bb5..5bd03dcfac 100644 --- a/install/lang/sk/error.php +++ b/install/lang/sk/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sk/install.php b/install/lang/sk/install.php index 8c8745de61..2875473bb7 100644 --- a/install/lang/sk/install.php +++ b/install/lang/sk/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sk/langconfig.php b/install/lang/sk/langconfig.php index 6e265bdc23..4bbd9d209b 100644 --- a/install/lang/sk/langconfig.php +++ b/install/lang/sk/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sk/moodle.php b/install/lang/sk/moodle.php index aa9754563c..e931ea9532 100644 --- a/install/lang/sk/moodle.php +++ b/install/lang/sk/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sl/admin.php b/install/lang/sl/admin.php index 98f3450661..8138129c8f 100644 --- a/install/lang/sl/admin.php +++ b/install/lang/sl/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sl/error.php b/install/lang/sl/error.php index dfb8cf5b68..8ff9b996f9 100644 --- a/install/lang/sl/error.php +++ b/install/lang/sl/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sl/install.php b/install/lang/sl/install.php index aa6aad662b..c32d5bb6da 100644 --- a/install/lang/sl/install.php +++ b/install/lang/sl/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sl/langconfig.php b/install/lang/sl/langconfig.php index b12ebe480f..b56401c147 100644 --- a/install/lang/sl/langconfig.php +++ b/install/lang/sl/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sl/moodle.php b/install/lang/sl/moodle.php index 059b4a6b30..a69df7df33 100644 --- a/install/lang/sl/moodle.php +++ b/install/lang/sl/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sm/install.php b/install/lang/sm/install.php index 3d45937076..0a3b2bcaf7 100644 --- a/install/lang/sm/install.php +++ b/install/lang/sm/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sm/langconfig.php b/install/lang/sm/langconfig.php index 34a0a13c96..0592d526a1 100644 --- a/install/lang/sm/langconfig.php +++ b/install/lang/sm/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sm/moodle.php b/install/lang/sm/moodle.php index 1c21e30af2..2f238c4aa7 100644 --- a/install/lang/sm/moodle.php +++ b/install/lang/sm/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/so/admin.php b/install/lang/so/admin.php index 8ed9e63ba2..e9af0418ba 100644 --- a/install/lang/so/admin.php +++ b/install/lang/so/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/so/install.php b/install/lang/so/install.php index da2ddb9009..80a739ede1 100644 --- a/install/lang/so/install.php +++ b/install/lang/so/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/so/langconfig.php b/install/lang/so/langconfig.php index b730b1ce4a..dd03a15490 100644 --- a/install/lang/so/langconfig.php +++ b/install/lang/so/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/so/moodle.php b/install/lang/so/moodle.php index 02b9039da5..73748ee11b 100644 --- a/install/lang/so/moodle.php +++ b/install/lang/so/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sq/langconfig.php b/install/lang/sq/langconfig.php index 87877a2765..bde27b295c 100644 --- a/install/lang/sq/langconfig.php +++ b/install/lang/sq/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sq/moodle.php b/install/lang/sq/moodle.php index 57ecb39d38..323341fb94 100644 --- a/install/lang/sq/moodle.php +++ b/install/lang/sq/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr/langconfig.php b/install/lang/sr/langconfig.php index 94422f9362..30e226f6f2 100644 --- a/install/lang/sr/langconfig.php +++ b/install/lang/sr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_cr/admin.php b/install/lang/sr_cr/admin.php index f1c24aeb9d..77617b08d1 100644 --- a/install/lang/sr_cr/admin.php +++ b/install/lang/sr_cr/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_cr/error.php b/install/lang/sr_cr/error.php index 707dc606f4..6be0f2a9c5 100644 --- a/install/lang/sr_cr/error.php +++ b/install/lang/sr_cr/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_cr/install.php b/install/lang/sr_cr/install.php index 60b9aebd39..203db3647a 100644 --- a/install/lang/sr_cr/install.php +++ b/install/lang/sr_cr/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_cr/langconfig.php b/install/lang/sr_cr/langconfig.php index 94422f9362..30e226f6f2 100644 --- a/install/lang/sr_cr/langconfig.php +++ b/install/lang/sr_cr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_cr/moodle.php b/install/lang/sr_cr/moodle.php index a815fbcb98..480124825c 100644 --- a/install/lang/sr_cr/moodle.php +++ b/install/lang/sr_cr/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_cr_bo/langconfig.php b/install/lang/sr_cr_bo/langconfig.php index 94422f9362..30e226f6f2 100644 --- a/install/lang/sr_cr_bo/langconfig.php +++ b/install/lang/sr_cr_bo/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_lt/admin.php b/install/lang/sr_lt/admin.php index 876ebf8503..f153e8d639 100644 --- a/install/lang/sr_lt/admin.php +++ b/install/lang/sr_lt/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_lt/error.php b/install/lang/sr_lt/error.php index e724c7c058..d27e5d1087 100644 --- a/install/lang/sr_lt/error.php +++ b/install/lang/sr_lt/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_lt/install.php b/install/lang/sr_lt/install.php index e172b50706..06a1be0843 100644 --- a/install/lang/sr_lt/install.php +++ b/install/lang/sr_lt/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_lt/langconfig.php b/install/lang/sr_lt/langconfig.php index 04fbd51362..b87e54f8ad 100644 --- a/install/lang/sr_lt/langconfig.php +++ b/install/lang/sr_lt/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sr_lt/moodle.php b/install/lang/sr_lt/moodle.php index 2a77c14834..8151bfb789 100644 --- a/install/lang/sr_lt/moodle.php +++ b/install/lang/sr_lt/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sv/admin.php b/install/lang/sv/admin.php index 2a466f9669..1d59617dee 100644 --- a/install/lang/sv/admin.php +++ b/install/lang/sv/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sv/error.php b/install/lang/sv/error.php index da3d2cac64..f87bedcd9b 100644 --- a/install/lang/sv/error.php +++ b/install/lang/sv/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sv/install.php b/install/lang/sv/install.php index ca7061bb9e..a5a26b3794 100644 --- a/install/lang/sv/install.php +++ b/install/lang/sv/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sv/langconfig.php b/install/lang/sv/langconfig.php index 36927a94de..6fbbae9625 100644 --- a/install/lang/sv/langconfig.php +++ b/install/lang/sv/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sv/moodle.php b/install/lang/sv/moodle.php index f2e23b4d66..c289684f51 100644 --- a/install/lang/sv/moodle.php +++ b/install/lang/sv/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sv_fi/langconfig.php b/install/lang/sv_fi/langconfig.php index 4bcede8209..0548e4f004 100644 --- a/install/lang/sv_fi/langconfig.php +++ b/install/lang/sv_fi/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/sw/admin.php b/install/lang/sw/admin.php index 3424fb74ba..f54a6f7e93 100644 --- a/install/lang/sw/admin.php +++ b/install/lang/sw/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta/admin.php b/install/lang/ta/admin.php index 903a32a002..a38334e5cc 100644 --- a/install/lang/ta/admin.php +++ b/install/lang/ta/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta/error.php b/install/lang/ta/error.php index 39e5b1bc74..e1feb8869f 100644 --- a/install/lang/ta/error.php +++ b/install/lang/ta/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta/install.php b/install/lang/ta/install.php index 2fb10728fe..4d4eee7f10 100644 --- a/install/lang/ta/install.php +++ b/install/lang/ta/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta/langconfig.php b/install/lang/ta/langconfig.php index 50132a4b93..b737c56650 100644 --- a/install/lang/ta/langconfig.php +++ b/install/lang/ta/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta/moodle.php b/install/lang/ta/moodle.php index 4b737680dd..de3e4a4a89 100644 --- a/install/lang/ta/moodle.php +++ b/install/lang/ta/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta_lk/admin.php b/install/lang/ta_lk/admin.php index 5df2683a9b..333fce76bf 100644 --- a/install/lang/ta_lk/admin.php +++ b/install/lang/ta_lk/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta_lk/error.php b/install/lang/ta_lk/error.php index a1b3cfabfe..d8a0f52848 100644 --- a/install/lang/ta_lk/error.php +++ b/install/lang/ta_lk/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta_lk/install.php b/install/lang/ta_lk/install.php index a13f78bc16..06f4810c16 100644 --- a/install/lang/ta_lk/install.php +++ b/install/lang/ta_lk/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta_lk/langconfig.php b/install/lang/ta_lk/langconfig.php index 2d412c3aba..6dbeb79320 100644 --- a/install/lang/ta_lk/langconfig.php +++ b/install/lang/ta_lk/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ta_lk/moodle.php b/install/lang/ta_lk/moodle.php index 94a5e8641c..8fc23f9465 100644 --- a/install/lang/ta_lk/moodle.php +++ b/install/lang/ta_lk/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/te/admin.php b/install/lang/te/admin.php index ee6d78a016..38497c99c0 100644 --- a/install/lang/te/admin.php +++ b/install/lang/te/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/te/langconfig.php b/install/lang/te/langconfig.php index 4a32d31be4..602a9e4c7f 100644 --- a/install/lang/te/langconfig.php +++ b/install/lang/te/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/te/moodle.php b/install/lang/te/moodle.php index dfd6c8294b..fc372ba409 100644 --- a/install/lang/te/moodle.php +++ b/install/lang/te/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/th/admin.php b/install/lang/th/admin.php index 1def29f9fa..d1799c8ed9 100644 --- a/install/lang/th/admin.php +++ b/install/lang/th/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/th/install.php b/install/lang/th/install.php index ecad79a94d..ffbfb560aa 100644 --- a/install/lang/th/install.php +++ b/install/lang/th/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/th/langconfig.php b/install/lang/th/langconfig.php index 70a1c09796..d85dd0e853 100644 --- a/install/lang/th/langconfig.php +++ b/install/lang/th/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/th/moodle.php b/install/lang/th/moodle.php index 964d12f4a1..8a1004ab51 100644 --- a/install/lang/th/moodle.php +++ b/install/lang/th/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ti/langconfig.php b/install/lang/ti/langconfig.php index c1c13ee293..252174a6e4 100644 --- a/install/lang/ti/langconfig.php +++ b/install/lang/ti/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ti/moodle.php b/install/lang/ti/moodle.php index 0139cd737e..166bef902a 100644 --- a/install/lang/ti/moodle.php +++ b/install/lang/ti/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tl/admin.php b/install/lang/tl/admin.php index 91cfbb325f..de61ce18f9 100644 --- a/install/lang/tl/admin.php +++ b/install/lang/tl/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tl/error.php b/install/lang/tl/error.php index 7b2da3298c..c9959093e7 100644 --- a/install/lang/tl/error.php +++ b/install/lang/tl/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tl/install.php b/install/lang/tl/install.php index cb4acabb80..20e086cda9 100644 --- a/install/lang/tl/install.php +++ b/install/lang/tl/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tl/langconfig.php b/install/lang/tl/langconfig.php index 1c185ad087..7798dd177d 100644 --- a/install/lang/tl/langconfig.php +++ b/install/lang/tl/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tl/moodle.php b/install/lang/tl/moodle.php index 1045fb6942..c6470dc8c2 100644 --- a/install/lang/tl/moodle.php +++ b/install/lang/tl/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/to/install.php b/install/lang/to/install.php index 35ec8a8ffc..fab3b5b524 100644 --- a/install/lang/to/install.php +++ b/install/lang/to/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/to/langconfig.php b/install/lang/to/langconfig.php index 4751463d7a..a1cf971577 100644 --- a/install/lang/to/langconfig.php +++ b/install/lang/to/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/to/moodle.php b/install/lang/to/moodle.php index d1c93853c1..597d795292 100644 --- a/install/lang/to/moodle.php +++ b/install/lang/to/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tr/admin.php b/install/lang/tr/admin.php index 278fa34d23..93caba6022 100644 --- a/install/lang/tr/admin.php +++ b/install/lang/tr/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tr/error.php b/install/lang/tr/error.php index e36cc61ab7..83117198e3 100644 --- a/install/lang/tr/error.php +++ b/install/lang/tr/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tr/install.php b/install/lang/tr/install.php index 1ccec2259c..70d65a3744 100644 --- a/install/lang/tr/install.php +++ b/install/lang/tr/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tr/langconfig.php b/install/lang/tr/langconfig.php index aa54bc1ecf..bb838ca7b7 100644 --- a/install/lang/tr/langconfig.php +++ b/install/lang/tr/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/tr/moodle.php b/install/lang/tr/moodle.php index ef0b81e8b8..c94fc9373f 100644 --- a/install/lang/tr/moodle.php +++ b/install/lang/tr/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/uk/langconfig.php b/install/lang/uk/langconfig.php index fac81dc0ca..30b9d8c443 100644 --- a/install/lang/uk/langconfig.php +++ b/install/lang/uk/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/uk/moodle.php b/install/lang/uk/moodle.php index c26498451a..bd24cd4cc3 100644 --- a/install/lang/uk/moodle.php +++ b/install/lang/uk/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ur/install.php b/install/lang/ur/install.php index 050583660b..670e16a6d1 100644 --- a/install/lang/ur/install.php +++ b/install/lang/ur/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ur/langconfig.php b/install/lang/ur/langconfig.php index 6092f76b66..f82e3a9059 100644 --- a/install/lang/ur/langconfig.php +++ b/install/lang/ur/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/ur/moodle.php b/install/lang/ur/moodle.php index 0e5096c555..2170fcc74d 100644 --- a/install/lang/ur/moodle.php +++ b/install/lang/ur/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/uz/install.php b/install/lang/uz/install.php index 27ea189d0b..e40642f43d 100644 --- a/install/lang/uz/install.php +++ b/install/lang/uz/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/uz/langconfig.php b/install/lang/uz/langconfig.php index e18415cf06..67359289b9 100644 --- a/install/lang/uz/langconfig.php +++ b/install/lang/uz/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/uz/moodle.php b/install/lang/uz/moodle.php index 7be2ed557d..758704aa01 100644 --- a/install/lang/uz/moodle.php +++ b/install/lang/uz/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/vi/admin.php b/install/lang/vi/admin.php index 880bf33da5..31767ca7c3 100644 --- a/install/lang/vi/admin.php +++ b/install/lang/vi/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/vi/install.php b/install/lang/vi/install.php index add67153e8..3d3f5a902d 100644 --- a/install/lang/vi/install.php +++ b/install/lang/vi/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/vi/langconfig.php b/install/lang/vi/langconfig.php index 343484ca40..65a9ecb70d 100644 --- a/install/lang/vi/langconfig.php +++ b/install/lang/vi/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/vi/moodle.php b/install/lang/vi/moodle.php index 75051a19bb..62c35464b1 100644 --- a/install/lang/vi/moodle.php +++ b/install/lang/vi/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/wo/langconfig.php b/install/lang/wo/langconfig.php index 57c5ec56b5..cf5af52f0a 100644 --- a/install/lang/wo/langconfig.php +++ b/install/lang/wo/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_cn/admin.php b/install/lang/zh_cn/admin.php index fb37bdf21d..19f04d8340 100644 --- a/install/lang/zh_cn/admin.php +++ b/install/lang/zh_cn/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_cn/error.php b/install/lang/zh_cn/error.php index de53510692..b233b303da 100644 --- a/install/lang/zh_cn/error.php +++ b/install/lang/zh_cn/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_cn/install.php b/install/lang/zh_cn/install.php index 64a47cab0d..8580f19aa9 100644 --- a/install/lang/zh_cn/install.php +++ b/install/lang/zh_cn/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_cn/langconfig.php b/install/lang/zh_cn/langconfig.php index c0bd4e7a6f..8772823d6f 100644 --- a/install/lang/zh_cn/langconfig.php +++ b/install/lang/zh_cn/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_cn/moodle.php b/install/lang/zh_cn/moodle.php index a4f7cea149..bc48d07096 100644 --- a/install/lang/zh_cn/moodle.php +++ b/install/lang/zh_cn/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_tw/admin.php b/install/lang/zh_tw/admin.php index 47d8984351..f54f682cf5 100644 --- a/install/lang/zh_tw/admin.php +++ b/install/lang/zh_tw/admin.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_tw/error.php b/install/lang/zh_tw/error.php index 4b88d842b9..2371760a93 100644 --- a/install/lang/zh_tw/error.php +++ b/install/lang/zh_tw/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_tw/install.php b/install/lang/zh_tw/install.php index 70d1ffd76b..20ecf9733b 100644 --- a/install/lang/zh_tw/install.php +++ b/install/lang/zh_tw/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_tw/langconfig.php b/install/lang/zh_tw/langconfig.php index 2dd1f15171..67f88e0927 100644 --- a/install/lang/zh_tw/langconfig.php +++ b/install/lang/zh_tw/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zh_tw/moodle.php b/install/lang/zh_tw/moodle.php index c86e3ae043..7e04cc821d 100644 --- a/install/lang/zh_tw/moodle.php +++ b/install/lang/zh_tw/moodle.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zu/error.php b/install/lang/zu/error.php index 2433be01e9..81f611aca5 100644 --- a/install/lang/zu/error.php +++ b/install/lang/zu/error.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zu/install.php b/install/lang/zu/install.php index d7d0210278..b62de39720 100644 --- a/install/lang/zu/install.php +++ b/install/lang/zu/install.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was diff --git a/install/lang/zu/langconfig.php b/install/lang/zu/langconfig.php index c2c944eb49..9b0850a3a7 100644 --- a/install/lang/zu/langconfig.php +++ b/install/lang/zu/langconfig.php @@ -16,7 +16,7 @@ // along with Moodle. If not, see . /** - * Automatically generated strings for Moodle 2.2 installer + * Automatically generated strings for Moodle 2.3dev installer * * Do not edit this file manually! It contains just a subset of strings * needed during the very first steps of installation. This file was From 2096f007e31be156b0d0d33ecb2cf81fef970dd1 Mon Sep 17 00:00:00 2001 From: AMOS bot Date: Mon, 5 Dec 2011 18:36:36 +0100 Subject: [PATCH 31/53] Automatically generated installer lang files --- install/lang/cs/install.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/lang/cs/install.php b/install/lang/cs/install.php index 828cc5a6bd..c63205bee1 100644 --- a/install/lang/cs/install.php +++ b/install/lang/cs/install.php @@ -34,12 +34,14 @@ $string['availablelangs'] = 'Dostupné jazykové balíčky'; $string['chooselanguagehead'] = 'Vyberte jazyk'; $string['chooselanguagesub'] = 'Zvolte si jazyk tohoto průvodce instalací. Vybraný jazyk bude též nastaven jako výchozí jazyk stránek, ale to půjde případně později změnit.'; +$string['clialreadyconfigured'] = 'Soubor config.php již existuje. Spusťte admin/cli/install_database.php, pokud chcete provést instalaci databáze.'; $string['clialreadyinstalled'] = 'Soubor config.php již existuje. Spusťte admin/cli/upgrade.php, pokud chcete provést upgrade vašich stránek.'; $string['cliinstallheader'] = 'Moodle {$a} - průvodce instalací z příkazové řádky'; $string['databasehost'] = 'Databázový server'; $string['databasename'] = 'Název databáze'; $string['databasetypehead'] = 'Vyberte databázový ovladač'; $string['dataroot'] = 'Datový adresář'; +$string['datarootpermission'] = 'Přístupová práva k datovému adresáři'; $string['dbprefix'] = 'Předpona tabulek'; $string['dirroot'] = 'Adresář Moodlu'; $string['environmenthead'] = 'Kontrola programového prostředí...'; From ecb731cb03ac6569ccd7e48d54bd9c530b7f977e Mon Sep 17 00:00:00 2001 From: Sam Hemelryk Date: Fri, 2 Dec 2011 12:14:33 +1300 Subject: [PATCH 32/53] MDL-30222 Fixed home page redirection madness. Thank you Julien Boulen for providing the solution --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index d6424a52b8..232abdcd01 100644 --- a/index.php +++ b/index.php @@ -58,7 +58,7 @@ // Redirect logged-in users to My Moodle overview if required if (optional_param('setdefaulthome', false, PARAM_BOOL)) { set_user_preference('user_home_page_preference', HOMEPAGE_SITE); - } else if ($CFG->defaulthomepage == HOMEPAGE_MY && (optional_param('redirect', true, PARAM_BOOL) || !$hassiteconfig)) { + } else if ($CFG->defaulthomepage == HOMEPAGE_MY && optional_param('redirect', 1, PARAM_BOOL) === 1) { redirect($CFG->wwwroot .'/my/'); } else if (!empty($CFG->defaulthomepage) && $CFG->defaulthomepage == HOMEPAGE_USER) { $PAGE->settingsnav->get('usercurrentsettings')->add(get_string('makethismyhome'), new moodle_url('/', array('setdefaulthome'=>true)), navigation_node::TYPE_SETTING); From e52a5d3ab2d6dbb9c18047d2f7b1a23a05830fd3 Mon Sep 17 00:00:00 2001 From: Sam Hemelryk Date: Tue, 6 Dec 2011 13:32:59 +1300 Subject: [PATCH 33/53] MDL-30582 navigation: Fixed regression in generation of front page modules --- lib/navigationlib.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/navigationlib.php b/lib/navigationlib.php index 6d67cced81..8645e27197 100644 --- a/lib/navigationlib.php +++ b/lib/navigationlib.php @@ -1240,6 +1240,16 @@ public function initialise() { $sections = $this->load_course_sections($course, $coursenode); break; } + } else { + // We need to check if the user is viewing a front page module. + // If so then there is potentially more content to load yet for that + // module. + if ($this->page->context->contextlevel == CONTEXT_MODULE) { + $activitynode = $this->rootnodes['site']->get($this->page->cm->id, navigation_node::TYPE_ACTIVITY); + if ($activitynode) { + $this->load_activity($this->page->cm, $this->page->course, $activitynode); + } + } } $limit = 20; From 6073fcbe161adbc332ad02258d468ca3a571fab5 Mon Sep 17 00:00:00 2001 From: Ankit Kumar Agarwal Date: Mon, 5 Dec 2011 11:30:52 +0530 Subject: [PATCH 34/53] MDL-28282 Scorm Restorting Groups support in Scomr reports --- mod/scorm/report/basic/report.php | 2 ++ mod/scorm/report/interactions/report.php | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/mod/scorm/report/basic/report.php b/mod/scorm/report/basic/report.php index 5cd4c1b278..6d2b80a093 100644 --- a/mod/scorm/report/basic/report.php +++ b/mod/scorm/report/basic/report.php @@ -43,6 +43,8 @@ function display($scorm, $cm, $course, $download) { echo $OUTPUT->notification(get_string('scormresponsedeleted', 'scorm'), 'notifysuccess'); } } + // find out current groups mode + $currentgroup = groups_get_activity_group($cm, true); // detailed report $mform = new mod_scorm_report_settings($PAGE->url, compact('currentgroup')); diff --git a/mod/scorm/report/interactions/report.php b/mod/scorm/report/interactions/report.php index 96e1ff280c..54d0bf773a 100644 --- a/mod/scorm/report/interactions/report.php +++ b/mod/scorm/report/interactions/report.php @@ -45,6 +45,8 @@ function display($scorm, $cm, $course, $download) { echo $OUTPUT->notification(get_string('scormresponsedeleted', 'scorm'), 'notifysuccess'); } } + // find out current groups mode + $currentgroup = groups_get_activity_group($cm, true); // detailed report $mform = new mod_scorm_report_interactions_settings($PAGE->url, compact('currentgroup')); @@ -107,7 +109,7 @@ function display($scorm, $cm, $course, $download) { $nostudents = true; $groupstudents = array(); } - $allowedlist = ($groupstudents); + $allowedlist = array_keys($groupstudents); } if ( !$nostudents ) { // Now check if asked download of data From 492b00b7ba845b54bf4b2581ff5c16fe9144d827 Mon Sep 17 00:00:00 2001 From: Andrew Davis Date: Tue, 6 Dec 2011 11:09:14 +0800 Subject: [PATCH 35/53] MDL-30607 message: removed an if condition that prevented you from clearing an overrident email address --- message/output/email/message_output_email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/message/output/email/message_output_email.php b/message/output/email/message_output_email.php index 5e56f1b4b0..37efbe2fa3 100644 --- a/message/output/email/message_output_email.php +++ b/message/output/email/message_output_email.php @@ -83,7 +83,7 @@ function config_form($preferences){ * @param array $preferences preferences array */ function process_form($form, &$preferences){ - if (isset($form->email_email) && !empty($form->email_email)) { + if (isset($form->email_email)) { $preferences['message_processor_email_email'] = $form->email_email; } } From f17d78cac13bbf5326a4927697443777d9d9471a Mon Sep 17 00:00:00 2001 From: Ankit Kumar Agarwal Date: Thu, 11 Aug 2011 15:06:38 +0530 Subject: [PATCH 36/53] MDL-28588 Removing IN from SQL statments --- mod/scorm/report/basic/report.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/mod/scorm/report/basic/report.php b/mod/scorm/report/basic/report.php index 5cd4c1b278..99c8aabf88 100644 --- a/mod/scorm/report/basic/report.php +++ b/mod/scorm/report/basic/report.php @@ -84,7 +84,7 @@ function display($scorm, $cm, $course, $download) { $nostudents = true; $allowedlist = ''; } else { - $allowedlist = join(',', array_keys($students)); + $allowedlist = array_keys($students); } } else { // all users who can attempt scoes and who are in the currently selected group @@ -93,7 +93,7 @@ function display($scorm, $cm, $course, $download) { $nostudents = true; $groupstudents = array(); } - $allowedlist = join(',', array_keys($groupstudents)); + $allowedlist = array_keys($groupstudents); } if ( !$nostudents ) { @@ -269,7 +269,8 @@ function display($scorm, $cm, $course, $download) { header("Pragma: public"); echo implode("\t", $headers)." \n"; } - + $params = array(); + list($usql, $params) = $DB->get_in_or_equal($allowedlist, SQL_PARAMS_NAMED); // Construct the SQL $select = 'SELECT DISTINCT '.$DB->sql_concat('u.id', '\'#\'', 'COALESCE(st.attempt, 0)').' AS uniqueid, '; $select .= 'st.scormid AS scormid, st.attempt AS attempt, ' . @@ -282,15 +283,15 @@ function display($scorm, $cm, $course, $download) { switch ($attemptsmode) { case SCORM_REPORT_ATTEMPTS_STUDENTS_WITH: // Show only students with attempts - $where = ' WHERE u.id IN (' .$allowedlist. ') AND st.userid IS NOT NULL'; + $where = ' WHERE u.id ' .$usql. ' AND st.userid IS NOT NULL'; break; case SCORM_REPORT_ATTEMPTS_STUDENTS_WITH_NO: // Show only students without attempts - $where = ' WHERE u.id IN (' .$allowedlist. ') AND st.userid IS NULL'; + $where = ' WHERE u.id ' .$usql. ' AND st.userid IS NULL'; break; case SCORM_REPORT_ATTEMPTS_ALL_STUDENTS: // Show all students with or without attempts - $where = ' WHERE u.id IN (' .$allowedlist. ') AND (st.userid IS NOT NULL OR st.userid IS NULL)'; + $where = ' WHERE u.id ' .$usql. ' AND (st.userid IS NOT NULL OR st.userid IS NULL)'; break; } @@ -298,7 +299,6 @@ function display($scorm, $cm, $course, $download) { $countsql .= 'COUNT(DISTINCT('.$DB->sql_concat('u.id', '\'#\'', 'st.attempt').')) AS nbattempts, '; $countsql .= 'COUNT(DISTINCT(u.id)) AS nbusers '; $countsql .= $from.$where; - $params = array(); if (!$download) { $sort = $table->get_sql_sort(); @@ -321,7 +321,7 @@ function display($scorm, $cm, $course, $download) { } if (!empty($countsql)) { - $count = $DB->get_record_sql($countsql); + $count = $DB->get_record_sql($countsql, $params); $totalinitials = $count->nbresults; if ($twhere) { $countsql .= ' AND '.$twhere; From 629303c1c8ac56dfae1fae3bbc51a20e83217c86 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Sat, 3 Dec 2011 08:48:09 +0100 Subject: [PATCH 37/53] MDL-30528 stop recreating role_assignments on every login attempt for each user Credit goes to Luis Gustavo Mueller de Alcantara. --- enrol/database/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enrol/database/lib.php b/enrol/database/lib.php index 306f8b353a..33ddad47fc 100644 --- a/enrol/database/lib.php +++ b/enrol/database/lib.php @@ -185,7 +185,7 @@ public function sync_user_enrolments($user) { $existing = array(); foreach ($current as $r) { - if (in_array($r->id, $roles)) { + if (in_array($r->roleid, $roles)) { $existing[$r->roleid] = $r->roleid; } else { role_unassign($r->roleid, $user->id, $context->id, 'enrol_database', $instance->id); From aa30d3e8ce0dd41d3d0f7dae856beb180fed1f83 Mon Sep 17 00:00:00 2001 From: "adrian@moodle.com" Date: Mon, 5 Dec 2011 14:59:31 +0800 Subject: [PATCH 38/53] MDL-30336 - login - Added a setting in security that allows auto complete to be set to off in password fields. --- admin/settings/security.php | 1 + blocks/login/block_login.php | 7 ++++++- lang/en/admin.php | 2 ++ login/index_form.html | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/admin/settings/security.php b/admin/settings/security.php index de44e51835..382f3f26ea 100644 --- a/admin/settings/security.php +++ b/admin/settings/security.php @@ -81,6 +81,7 @@ $temp->add(new admin_setting_configcheckbox('cookiesecure', get_string('cookiesecure', 'admin'), get_string('configcookiesecure', 'admin'), 0)); $temp->add(new admin_setting_configcheckbox('cookiehttponly', get_string('cookiehttponly', 'admin'), get_string('configcookiehttponly', 'admin'), 0)); $temp->add(new admin_setting_configcheckbox('allowframembedding', get_string('allowframembedding', 'admin'), get_string('allowframembedding_help', 'admin'), 0)); + $temp->add(new admin_setting_configcheckbox('loginpasswordautocomplete', get_string('loginpasswordautocomplete', 'admin'), get_string('loginpasswordautocomplete_help', 'admin'), 0)); $ADMIN->add('security', $temp); diff --git a/blocks/login/block_login.php b/blocks/login/block_login.php index 0fc1f94c7e..03868888fc 100644 --- a/blocks/login/block_login.php +++ b/blocks/login/block_login.php @@ -48,7 +48,12 @@ function get_content () { $this->content->text .= ''; $this->content->text .= '
'; - $this->content->text .= '
'; + + if (!empty($CFG->loginpasswordautocomplete)) { + $this->content->text .= ''; + } else { + $this->content->text .= ''; + } if (isset($CFG->rememberusername) and $CFG->rememberusername == 2) { $checked = $username ? 'checked="checked"' : ''; diff --git a/lang/en/admin.php b/lang/en/admin.php index 578d965f10..f648a3dbdd 100644 --- a/lang/en/admin.php +++ b/lang/en/admin.php @@ -613,6 +613,8 @@ $string['loginhttps'] = 'Use HTTPS for logins'; $string['loginpageautofocus'] = 'Autofocus login page form'; $string['loginpageautofocus_help'] = 'Enabling this option improves usability of the login page, but automatically focusing fields may be considered an accessibility issue.'; +$string['loginpasswordautocomplete'] = 'Prevent password autocompletion on login form.'; +$string['loginpasswordautocomplete_help'] = 'Having this off will let users save their account password in their browser. Switching this setting on will result in your site no longer following XHTML strict validation rules.'; $string['loglifetime'] = 'Keep logs for'; $string['longtimewarning'] = 'Please note that this process can take a long time.'; $string['maintenancemode'] = 'In maintenance mode'; diff --git a/login/index_form.html b/login/index_form.html index 9d2616527a..e45b8e1aa9 100644 --- a/login/index_form.html +++ b/login/index_form.html @@ -38,7 +38,7 @@

- + loginpasswordautocomplete)) {echo 'autocomplete="off"';} ?> /> " />
From b608b227bac4efba76da43dabe9bc2e32fb8fa32 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Tue, 6 Dec 2011 11:44:13 +0100 Subject: [PATCH 39/53] MDL-27364 use https for recaptcha when site runs via https Based on solution by Rajesh Taneja. --- lib/form/recaptcha.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/form/recaptcha.php b/lib/form/recaptcha.php index 79b2cb1f9b..0282efdf0d 100644 --- a/lib/form/recaptcha.php +++ b/lib/form/recaptcha.php @@ -34,10 +34,13 @@ class MoodleQuickForm_recaptcha extends HTML_QuickForm_input { * */ function MoodleQuickForm_recaptcha($elementName = null, $elementLabel = null, $attributes = null) { + global $CFG; parent::HTML_QuickForm_input($elementName, $elementLabel, $attributes); $this->_type = 'recaptcha'; - if (!empty($attributes['https'])) { - $this->_https = $attributes['https']; + if (!empty($attributes['https']) or strpos($CFG->httpswwwroot, 'https:') === 0) { + $this->_https = true; + } else { + $this->_https = false; } } From 8d582fd1016057b776611bfff0d5e58f6305b3d0 Mon Sep 17 00:00:00 2001 From: AMOS bot Date: Wed, 7 Dec 2011 00:31:14 +0000 Subject: [PATCH 40/53] Automatically generated installer lang files --- install/lang/es/install.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/install/lang/es/install.php b/install/lang/es/install.php index 82a3c5e563..caf44907a1 100644 --- a/install/lang/es/install.php +++ b/install/lang/es/install.php @@ -34,7 +34,8 @@ $string['availablelangs'] = 'Lista de idiomas disponibles'; $string['chooselanguagehead'] = 'Seleccionar idioma'; $string['chooselanguagesub'] = 'Por favor, seleccione un idioma para el proceso de instalación. Este idioma se usará también como idioma por defecto del sitio, si bien puede cambiarse más adelante.'; -$string['clialreadyinstalled'] = 'El archivo config.php ya existe, por favor, utilice admin/cli/upgrade.php si desea actualizar su sitio web.'; +$string['clialreadyconfigured'] = 'El archivo config.php ya existe. Por favor, utilice admin/cli/upgrade.php si desea actualizar su sitio web.'; +$string['clialreadyinstalled'] = 'El archivo config.php ya existe. Por favor, utilice admin/cli/upgrade.php si desea actualizar su sitio web.'; $string['cliinstallheader'] = 'Programa de instalación Moodle de línea de comando {$a}'; $string['databasehost'] = 'Servidor de la base de datos'; $string['databasename'] = 'Nombre de la base de datos'; @@ -71,9 +72,9 @@ $string['pathsroparentdataroot'] = 'El directorio padre ({$a->parent}) no tiene permisos de escritura. El directorio de los datos ({$a->dataroot}) no puede ser creado por el instalador.'; $string['pathssubadmindir'] = 'Muy pocos servidores web usan /admin como un URL especial para acceder a un panel de control o algo similar. Lamentablemente, esto entra en conflicto con la ubicación estándar para las páginas de administración de Moodle. Usted puede solucionar este problema, renombrando el directorio admin en su instalación Moodle, poniendo un nuevo nombre aquí. Por ejemplo: moodleadmin . Esto solucionará los enlaces de administración en instalación Moodle.'; -$string['pathssubdataroot'] = 'Usted necesita un lugar donde Moodle puede guardar los archivos subidos. Este directorio debe ser leíble Y ESCRIBIBLE por el usuario del servidor web (por lo general \'nobody\', \'apache\' o \'www-data\'), pero este lugar no debe ser accesible directamente a través de la web. El instalador tratará crearlo si no existe.'; +$string['pathssubdataroot'] = 'Usted necesita un espacio donde Moodle puede guardar los archivos subidos. En este directorio debe poder LEER y ESCRIBIR el usuario del servidor web (por lo general \'nobody\', \'apache\' o \'www-data\'), pero no debe poderse acceder a esta carpeta directamente a través de la web. El instalador tratará de crearla si no existe.'; $string['pathssubdirroot'] = 'Ruta completa del directorio de instalación de Moodle.'; -$string['pathssubwwwroot'] = 'Dirección web completa donde Moodle será accesado. No es posible acceder a Moodle utilizando múltiples direcciones. Si su sitio tiene varias direcciones públicas debe configurar redirecciones permanentes en todos ellas, excepto en ésta. Si su sitio web es accesible tanto desde una intranet y la Internet, utilice la dirección pública aquí y configure su DNS para que los usuarios de su intranet puedan utilizar la dirección pública también.'; +$string['pathssubwwwroot'] = 'Dirección web completa para acceder a Moodle. No es posible acceder a Moodle utilizando múltiples direcciones. Si su sitio tiene varias direcciones públicas debe configurar redirecciones permanentes en todas ellas, excepto en ésta. Si su sitio web es accesible tanto desde una intranet como desde Internet, escriba aquí la dirección pública y configure su DNS para que los usuarios de su intranet puedan también utilizar la dirección pública.'; $string['pathsunsecuredataroot'] = 'La ubicación de dataroot no es segura'; $string['pathswrongadmindir'] = 'El directorio admin no existe'; $string['phpextension'] = 'Extensión PHP {$a}'; From 51070abc78b9e1db1db9a44855e8623b22bebd48 Mon Sep 17 00:00:00 2001 From: Rajesh Taneja Date: Wed, 7 Dec 2011 11:56:34 +0800 Subject: [PATCH 41/53] MDL-30560 Forms Lib: 'type' key for repeat_elements is restored --- lib/formslib.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/formslib.php b/lib/formslib.php index 9b1ce0485a..ca83c7c600 100644 --- a/lib/formslib.php +++ b/lib/formslib.php @@ -1014,7 +1014,12 @@ function repeat_elements($elementobjs, $repeats, $options, $repeathiddenname, $params = array_merge(array($realelementname), $params); call_user_func_array(array(&$mform, 'addRule'), $params); break; - + case 'type' : + //Type should be set only once + if (!isset($mform->_types[$elementname])) { + $mform->setType($elementname, $params); + } + break; } } } From df05b844f6d2751457897a28e5c915281b4b3ce8 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Wed, 7 Dec 2011 08:58:18 +0100 Subject: [PATCH 42/53] MDL-30623 make sure guest password field is not null --- enrol/guest/lib.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/enrol/guest/lib.php b/enrol/guest/lib.php index ac4a5cf896..da1d2f1680 100644 --- a/enrol/guest/lib.php +++ b/enrol/guest/lib.php @@ -327,6 +327,22 @@ public function course_updated($inserted, $course, $data) { } } + /** + * Add new instance of enrol plugin. + * @param object $course + * @param array instance fields + * @return int id of new instance, null if can not be created + */ + public function add_instance($course, array $fields = NULL) { + $fields = (array)$fields; + + if (!isset($fields['password'])) { + $fields['password'] = ''; + } + + return parent::add_instance($course, $fields); + } + /** * Add new instance of enrol plugin with default settings. * @param object $course From 66fe9746ba67d886217759b6084ce66cf5c2368f Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Wed, 7 Dec 2011 09:13:34 +0100 Subject: [PATCH 43/53] MDL-30623 fix null guest passwords in existing 2.2 sites --- enrol/guest/db/upgrade.php | 43 ++++++++++++++++++++++++++++++++++++++ enrol/guest/version.php | 2 +- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 enrol/guest/db/upgrade.php diff --git a/enrol/guest/db/upgrade.php b/enrol/guest/db/upgrade.php new file mode 100644 index 0000000000..d04b36ee5d --- /dev/null +++ b/enrol/guest/db/upgrade.php @@ -0,0 +1,43 @@ +. + +/** + * This file keeps track of upgrades to the guest enrolment plugin + * + * @package enrol + * @subpackage guest + * @copyright 2011 Petr Skoda {@link http://skodak.org + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +defined('MOODLE_INTERNAL') || die(); + +function xmldb_enrol_guest_upgrade($oldversion) { + global $CFG, $DB, $OUTPUT; + + $dbman = $DB->get_manager(); + + if ($oldversion < 2011112901) { + // convert all null passwords to empty strings + $DB->set_field('enrol', 'password', '', array('enrol'=>'guest', 'password'=>null)); + + upgrade_plugin_savepoint(true, 2011112901, 'enrol', 'guest'); + } + + return true; +} + + diff --git a/enrol/guest/version.php b/enrol/guest/version.php index 0f235c6a0d..125592f212 100644 --- a/enrol/guest/version.php +++ b/enrol/guest/version.php @@ -25,6 +25,6 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX) +$plugin->version = 2011112901; // The current plugin version (Date: YYYYMMDDXX) $plugin->requires = 2011112900; // Requires this Moodle version $plugin->component = 'enrol_guest'; // Full name of the plugin (used for diagnostics) From bb6ccfa53d27b437eb21a7e964fb9a20068db602 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Wed, 7 Dec 2011 11:18:10 +0100 Subject: [PATCH 44/53] MDL-30625 full support for main admin --- admin/roles/admins.php | 21 +++++++++++++++++++++ admin/roles/lib.php | 28 +++++++++++++++++++++++----- lang/en/role.php | 2 ++ lib/datalib.php | 26 +++++++++++++++++--------- 4 files changed, 63 insertions(+), 14 deletions(-) diff --git a/admin/roles/admins.php b/admin/roles/admins.php index 450d432028..1f5a8fe721 100644 --- a/admin/roles/admins.php +++ b/admin/roles/admins.php @@ -67,6 +67,26 @@ } } +} else if (optional_param('main', false, PARAM_BOOL) and confirm_sesskey()) { + if ($newmain = $admisselector->get_selected_users()) { + $newmain = reset($newmain); + $newmain = $newmain->id; + $admins = array(); + foreach(explode(',', $CFG->siteadmins) as $admin) { + $admin = (int)$admin; + if ($admin) { + $admins[$admin] = $admin; + } + } + + if (isset($admins[$newmain])) { + unset($admins[$newmain]); + array_unshift($admins, $newmain); + set_config('siteadmins', implode(',', $admins)); + redirect($PAGE->url); + } + } + } else if ($confirmadd and confirm_sesskey()) { $admins = array(); foreach(explode(',', $CFG->siteadmins) as $admin) { @@ -115,6 +135,7 @@


+

diff --git a/admin/roles/lib.php b/admin/roles/lib.php index b09ed4f688..68a3c8bb1c 100644 --- a/admin/roles/lib.php +++ b/admin/roles/lib.php @@ -1584,13 +1584,31 @@ public function find_users($search) { return array(); } - if ($search) { - $groupname = get_string('extusersmatching', 'role', $search); - } else { - $groupname = get_string('extusers', 'role'); + $mainadmin = array(); + $adminids = explode(',', $CFG->siteadmins); + foreach ($adminids as $id) { + if (isset($availableusers[$id])) { + $mainadmin = array($id=>$availableusers[$id]); + unset($availableusers[$id]); + break; + } } - return array($groupname => $availableusers); + $result = array(); + if ($mainadmin) { + $result[get_string('mainadmin', 'role')] = $mainadmin; + } + + if ($availableusers) { + if ($search) { + $groupname = get_string('extusersmatching', 'role', $search); + } else { + $groupname = get_string('extusers', 'role'); + } + $result[$groupname] = $availableusers; + } + + return $result; } protected function get_options() { diff --git a/lang/en/role.php b/lang/en/role.php index 2bf28ccfee..971722c4fb 100644 --- a/lang/en/role.php +++ b/lang/en/role.php @@ -212,6 +212,8 @@ $string['legacy:user'] = 'LEGACY ROLE: Authenticated user'; $string['listallroles'] = 'List all roles'; $string['localroles'] = 'Locally assigned roles'; +$string['mainadmin'] = 'Main administrator'; +$string['mainadminset'] = 'Set main admin'; $string['manageadmins'] = 'Manage site administrators'; $string['manager'] = 'Manager'; $string['managerdescription'] = 'Managers can access course and modify them, they usually do not participate in courses.'; diff --git a/lib/datalib.php b/lib/datalib.php index e888b23149..0b86106e1d 100644 --- a/lib/datalib.php +++ b/lib/datalib.php @@ -49,24 +49,32 @@ /** * Returns $user object of the main admin user - * primary admin = admin with lowest role_assignment id among admins * * @static stdClass $mainadmin * @return stdClass {@link $USER} record from DB, false if not found */ function get_admin() { + global $CFG, $DB; + static $mainadmin = null; - if (!isset($mainadmin)) { - if (! $admins = get_admins()) { - return false; + if (isset($mainadmin)) { + return clone($mainadmin); + } + + foreach (explode(',', $CFG->siteadmins) as $id) { + if ($user = $DB->get_record('user', array('id'=>$id, 'deleted'=>0))) { + $mainadmin = $user; + break; } - //TODO: add some admin setting for specifying of THE main admin - // for now return the first assigned admin - $mainadmin = reset($admins); } - // we must clone this otherwise code outside can break the static var - return clone($mainadmin); + + if ($mainadmin) { + return clone($mainadmin); + } else { + // this should not happen + return false; + } } /** From 36101938ffd82683747c38e1e8e17090bf1b0e81 Mon Sep 17 00:00:00 2001 From: AMOS bot Date: Thu, 8 Dec 2011 00:31:13 +0000 Subject: [PATCH 45/53] Automatically generated installer lang files --- install/lang/da/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/lang/da/install.php b/install/lang/da/install.php index 6ead3e70a5..dc5d0fed02 100644 --- a/install/lang/da/install.php +++ b/install/lang/da/install.php @@ -34,7 +34,7 @@ $string['availablelangs'] = 'Tilgængelige sprogpakker'; $string['chooselanguagehead'] = 'Vælg et sprog'; $string['chooselanguagesub'] = 'Vælg et sprog til brug under installationen. Dette sprog vil også blive brugt som standardsprog på webstedet, men det kan altid ændres til et andet sprog.'; -$string['clialreadyinstalled'] = 'Filen config.php eksisterer allerede, brug venligst admin/cli/upgrade.php hvis du ønsker at opgradere dit websted.'; +$string['clialreadyinstalled'] = 'Filen config.php eksisterer allerede, brug venligst admin/cli/upgrade.php hvis du ønsker at opgradere dette websted.'; $string['cliinstallheader'] = 'Moodle {$a} kommandolinje-installationsprogram'; $string['databasehost'] = 'Databasevært'; $string['databasename'] = 'Databasenavn'; From e16c0b9da677b1c0b3abd0b687f27111426ff725 Mon Sep 17 00:00:00 2001 From: Tim Hunt Date: Thu, 8 Dec 2011 17:50:11 +0000 Subject: [PATCH 46/53] MDL-30660 javascript-static: M.util.show_confirm_dialog fixes --- lib/javascript-static.js | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/lib/javascript-static.js b/lib/javascript-static.js index 5bbc9c3e5e..49fce0f423 100644 --- a/lib/javascript-static.js +++ b/lib/javascript-static.js @@ -263,13 +263,26 @@ M.util.show_confirm_dialog = function(e, args) { if (target.test('a')) { window.location = target.get('href'); + } else if ((targetancestor = target.ancestor('a')) !== null) { window.location = targetancestor.get('href'); + } else if (target.test('input')) { targetform = target.ancestor('form'); - if (targetform && targetform.submit) { - targetform.submit(); + if (!targetform) { + return; } + if (target.get('name') && target.get('value')) { + targetform.append(''); + } + targetform.submit(); + + } else if (target.get('tagName').toLowerCase() == 'form') { + // We cannot use target.test('form') on the previous line because of + // http://yuilibrary.com/projects/yui3/ticket/2531561 + target.submit(); + } else if (M.cfg.developerdebug) { alert("Element of type " + target.get('tagName') + " is not supported by the M.util.show_confirm_dialog function. Use A or INPUT"); } From 46f2a9366ab8743bdce37ff62ad1d42352d315f0 Mon Sep 17 00:00:00 2001 From: Aparup Banerjee Date: Thu, 8 Dec 2011 11:59:01 +0800 Subject: [PATCH 47/53] MDL-30604 Added upgrade lines to upgrade.php(s) --- admin/tool/customlang/db/upgrade.php | 3 ++- auth/manual/db/upgrade.php | 3 +++ auth/mnet/db/upgrade.php | 3 +++ blocks/community/db/upgrade.php | 3 +++ blocks/html/db/upgrade.php | 3 +++ blocks/navigation/db/upgrade.php | 3 +++ blocks/settings/db/upgrade.php | 3 +++ enrol/authorize/db/upgrade.php | 3 +++ enrol/database/db/upgrade.php | 3 +++ enrol/imsenterprise/db/upgrade.php | 3 +++ enrol/mnet/db/upgrade.php | 3 +++ enrol/paypal/db/upgrade.php | 3 +++ filter/mediaplugin/db/upgrade.php | 3 +++ filter/tex/db/upgrade.php | 3 +++ grade/grading/form/rubric/db/upgrade.php | 3 +++ lib/db/upgrade.php | 3 +++ message/output/email/db/upgrade.php | 3 +++ message/output/jabber/db/upgrade.php | 3 +++ message/output/popup/db/upgrade.php | 3 +++ mod/assignment/db/upgrade.php | 3 +++ mod/chat/db/upgrade.php | 3 +++ mod/choice/db/upgrade.php | 3 +++ mod/data/db/upgrade.php | 3 +++ mod/feedback/db/upgrade.php | 3 +++ mod/folder/db/upgrade.php | 3 +++ mod/forum/db/upgrade.php | 3 +++ mod/glossary/db/upgrade.php | 3 +++ mod/imscp/db/upgrade.php | 3 +++ mod/label/db/upgrade.php | 3 +++ mod/lesson/db/upgrade.php | 3 +++ mod/lti/db/upgrade.php | 3 +++ mod/page/db/upgrade.php | 3 +++ mod/quiz/db/upgrade.php | 3 +++ mod/quiz/report/overview/db/upgrade.php | 3 +++ mod/quiz/report/statistics/db/upgrade.php | 3 +++ mod/resource/db/upgrade.php | 3 +++ mod/scorm/db/upgrade.php | 3 +++ mod/survey/db/upgrade.php | 3 +++ mod/url/db/upgrade.php | 3 +++ mod/wiki/db/upgrade.php | 3 +++ mod/workshop/db/upgrade.php | 3 +++ mod/workshop/form/accumulative/db/upgrade.php | 3 +++ mod/workshop/form/comments/db/upgrade.php | 3 +++ mod/workshop/form/numerrors/db/upgrade.php | 3 +++ mod/workshop/form/rubric/db/upgrade.php | 3 +++ question/type/calculated/db/upgrade.php | 3 +++ question/type/essay/db/upgrade.php | 3 +++ question/type/match/db/upgrade.php | 3 +++ question/type/multianswer/db/upgrade.php | 3 +++ question/type/multichoice/db/upgrade.php | 3 +++ question/type/numerical/db/upgrade.php | 3 +++ question/upgrade.php | 4 ++++ theme/formal_white/db/upgrade.php | 3 +++ 53 files changed, 159 insertions(+), 1 deletion(-) diff --git a/admin/tool/customlang/db/upgrade.php b/admin/tool/customlang/db/upgrade.php index b0516b1df6..72792f4811 100644 --- a/admin/tool/customlang/db/upgrade.php +++ b/admin/tool/customlang/db/upgrade.php @@ -29,7 +29,8 @@ function xmldb_tool_customlang_upgrade($oldversion) { $dbman = $DB->get_manager(); - + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this return true; } diff --git a/auth/manual/db/upgrade.php b/auth/manual/db/upgrade.php index 2034856907..21fead8086 100644 --- a/auth/manual/db/upgrade.php +++ b/auth/manual/db/upgrade.php @@ -48,5 +48,8 @@ function xmldb_auth_manual_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/auth/mnet/db/upgrade.php b/auth/mnet/db/upgrade.php index 824d873e8e..43d279162c 100644 --- a/auth/mnet/db/upgrade.php +++ b/auth/mnet/db/upgrade.php @@ -46,5 +46,8 @@ function xmldb_auth_mnet_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/blocks/community/db/upgrade.php b/blocks/community/db/upgrade.php index d9b398fe8a..8468201c66 100644 --- a/blocks/community/db/upgrade.php +++ b/blocks/community/db/upgrade.php @@ -76,5 +76,8 @@ function xmldb_block_community_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } \ No newline at end of file diff --git a/blocks/html/db/upgrade.php b/blocks/html/db/upgrade.php index 66e0a59877..3c4ba15c31 100644 --- a/blocks/html/db/upgrade.php +++ b/blocks/html/db/upgrade.php @@ -66,5 +66,8 @@ function xmldb_block_html_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/blocks/navigation/db/upgrade.php b/blocks/navigation/db/upgrade.php index 60a5dad43f..874fdfd523 100644 --- a/blocks/navigation/db/upgrade.php +++ b/blocks/navigation/db/upgrade.php @@ -75,5 +75,8 @@ function xmldb_block_navigation_upgrade($oldversion, $block) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } \ No newline at end of file diff --git a/blocks/settings/db/upgrade.php b/blocks/settings/db/upgrade.php index 865fefc2b4..f4925369a9 100644 --- a/blocks/settings/db/upgrade.php +++ b/blocks/settings/db/upgrade.php @@ -75,5 +75,8 @@ function xmldb_block_settings_upgrade($oldversion, $block) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } \ No newline at end of file diff --git a/enrol/authorize/db/upgrade.php b/enrol/authorize/db/upgrade.php index 51ff315d35..3b33091dde 100644 --- a/enrol/authorize/db/upgrade.php +++ b/enrol/authorize/db/upgrade.php @@ -96,5 +96,8 @@ function xmldb_enrol_authorize_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/enrol/database/db/upgrade.php b/enrol/database/db/upgrade.php index a29c338ed0..d140bca185 100644 --- a/enrol/database/db/upgrade.php +++ b/enrol/database/db/upgrade.php @@ -39,5 +39,8 @@ function xmldb_enrol_database_upgrade($oldversion) { } + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/enrol/imsenterprise/db/upgrade.php b/enrol/imsenterprise/db/upgrade.php index 36291c56e2..526eafa276 100644 --- a/enrol/imsenterprise/db/upgrade.php +++ b/enrol/imsenterprise/db/upgrade.php @@ -83,6 +83,9 @@ function xmldb_enrol_imsenterprise_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/enrol/mnet/db/upgrade.php b/enrol/mnet/db/upgrade.php index 536eebd12a..df424b48cf 100644 --- a/enrol/mnet/db/upgrade.php +++ b/enrol/mnet/db/upgrade.php @@ -39,5 +39,8 @@ function xmldb_enrol_mnet_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/enrol/paypal/db/upgrade.php b/enrol/paypal/db/upgrade.php index 61d30a185e..44cd883295 100644 --- a/enrol/paypal/db/upgrade.php +++ b/enrol/paypal/db/upgrade.php @@ -62,5 +62,8 @@ function xmldb_enrol_paypal_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/filter/mediaplugin/db/upgrade.php b/filter/mediaplugin/db/upgrade.php index 4de8809e34..9aee35bd73 100644 --- a/filter/mediaplugin/db/upgrade.php +++ b/filter/mediaplugin/db/upgrade.php @@ -46,5 +46,8 @@ function xmldb_filter_mediaplugin_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/filter/tex/db/upgrade.php b/filter/tex/db/upgrade.php index b9f7497772..33d41bd0dd 100644 --- a/filter/tex/db/upgrade.php +++ b/filter/tex/db/upgrade.php @@ -41,5 +41,8 @@ function xmldb_filter_tex_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/grade/grading/form/rubric/db/upgrade.php b/grade/grading/form/rubric/db/upgrade.php index 3afebbd3db..e60160dad1 100644 --- a/grade/grading/form/rubric/db/upgrade.php +++ b/grade/grading/form/rubric/db/upgrade.php @@ -35,5 +35,8 @@ function xmldb_gradingform_rubric_upgrade($oldversion) { $dbman = $DB->get_manager(); + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/lib/db/upgrade.php b/lib/db/upgrade.php index 6b6573ce30..e540801aa4 100644 --- a/lib/db/upgrade.php +++ b/lib/db/upgrade.php @@ -6948,6 +6948,9 @@ function xmldb_main_upgrade($oldversion) { upgrade_main_savepoint(true, 2011111800.01); } + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/message/output/email/db/upgrade.php b/message/output/email/db/upgrade.php index caa6d35387..ec64c5e42b 100644 --- a/message/output/email/db/upgrade.php +++ b/message/output/email/db/upgrade.php @@ -50,6 +50,9 @@ function xmldb_message_email_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/message/output/jabber/db/upgrade.php b/message/output/jabber/db/upgrade.php index 480df5872c..5563f666a2 100644 --- a/message/output/jabber/db/upgrade.php +++ b/message/output/jabber/db/upgrade.php @@ -50,6 +50,9 @@ function xmldb_message_jabber_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/message/output/popup/db/upgrade.php b/message/output/popup/db/upgrade.php index 6cecfbc308..6e6d37d77d 100644 --- a/message/output/popup/db/upgrade.php +++ b/message/output/popup/db/upgrade.php @@ -50,6 +50,9 @@ function xmldb_message_popup_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/assignment/db/upgrade.php b/mod/assignment/db/upgrade.php index 4136a76d89..6340d8023a 100644 --- a/mod/assignment/db/upgrade.php +++ b/mod/assignment/db/upgrade.php @@ -157,6 +157,9 @@ function xmldb_assignment_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/chat/db/upgrade.php b/mod/chat/db/upgrade.php index c7750913cb..d1c8ac00ff 100644 --- a/mod/chat/db/upgrade.php +++ b/mod/chat/db/upgrade.php @@ -103,6 +103,9 @@ function xmldb_chat_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/choice/db/upgrade.php b/mod/choice/db/upgrade.php index da14ee4f85..d75dc24a2d 100644 --- a/mod/choice/db/upgrade.php +++ b/mod/choice/db/upgrade.php @@ -71,6 +71,9 @@ function xmldb_choice_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/data/db/upgrade.php b/mod/data/db/upgrade.php index 491d30d95f..8983a9ba67 100644 --- a/mod/data/db/upgrade.php +++ b/mod/data/db/upgrade.php @@ -341,6 +341,9 @@ function xmldb_data_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/feedback/db/upgrade.php b/mod/feedback/db/upgrade.php index e81cfa0b8d..73b4520502 100644 --- a/mod/feedback/db/upgrade.php +++ b/mod/feedback/db/upgrade.php @@ -364,6 +364,9 @@ function xmldb_feedback_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/folder/db/upgrade.php b/mod/folder/db/upgrade.php index a0d64ac37a..8e33d6a949 100644 --- a/mod/folder/db/upgrade.php +++ b/mod/folder/db/upgrade.php @@ -54,5 +54,8 @@ function xmldb_folder_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/forum/db/upgrade.php b/mod/forum/db/upgrade.php index 1ba81397d7..853a195c5b 100644 --- a/mod/forum/db/upgrade.php +++ b/mod/forum/db/upgrade.php @@ -341,6 +341,9 @@ function xmldb_forum_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/glossary/db/upgrade.php b/mod/glossary/db/upgrade.php index 7257c67df6..f70627f84f 100644 --- a/mod/glossary/db/upgrade.php +++ b/mod/glossary/db/upgrade.php @@ -352,6 +352,9 @@ function xmldb_glossary_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/imscp/db/upgrade.php b/mod/imscp/db/upgrade.php index 47a4b00ed5..06a695d972 100644 --- a/mod/imscp/db/upgrade.php +++ b/mod/imscp/db/upgrade.php @@ -34,5 +34,8 @@ function xmldb_imscp_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/label/db/upgrade.php b/mod/label/db/upgrade.php index fce86e529d..a8d4909583 100644 --- a/mod/label/db/upgrade.php +++ b/mod/label/db/upgrade.php @@ -85,6 +85,9 @@ function xmldb_label_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/lesson/db/upgrade.php b/mod/lesson/db/upgrade.php index 877dfaaa3c..4e6878345e 100644 --- a/mod/lesson/db/upgrade.php +++ b/mod/lesson/db/upgrade.php @@ -292,6 +292,9 @@ function xmldb_lesson_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/lti/db/upgrade.php b/mod/lti/db/upgrade.php index 33aa23c0d0..e215d0360f 100644 --- a/mod/lti/db/upgrade.php +++ b/mod/lti/db/upgrade.php @@ -78,6 +78,9 @@ function xmldb_lti_upgrade($oldversion) { upgrade_mod_savepoint(true, 2011111600, 'lti'); } + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/page/db/upgrade.php b/mod/page/db/upgrade.php index cec60f6791..72d249772c 100644 --- a/mod/page/db/upgrade.php +++ b/mod/page/db/upgrade.php @@ -55,5 +55,8 @@ function xmldb_page_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/quiz/db/upgrade.php b/mod/quiz/db/upgrade.php index fecf7dfa42..d60c06a8b8 100644 --- a/mod/quiz/db/upgrade.php +++ b/mod/quiz/db/upgrade.php @@ -1193,6 +1193,9 @@ function xmldb_quiz_upgrade($oldversion) { upgrade_mod_savepoint(true, 2011100604, 'quiz'); } + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/quiz/report/overview/db/upgrade.php b/mod/quiz/report/overview/db/upgrade.php index fede5ac7d6..e1bef7fea5 100644 --- a/mod/quiz/report/overview/db/upgrade.php +++ b/mod/quiz/report/overview/db/upgrade.php @@ -226,5 +226,8 @@ function xmldb_quiz_overview_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/quiz/report/statistics/db/upgrade.php b/mod/quiz/report/statistics/db/upgrade.php index a25da3ca48..6ee18fd6b6 100644 --- a/mod/quiz/report/statistics/db/upgrade.php +++ b/mod/quiz/report/statistics/db/upgrade.php @@ -398,6 +398,9 @@ function xmldb_quiz_statistics_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/resource/db/upgrade.php b/mod/resource/db/upgrade.php index b1831a1ae2..1a9d2bedc4 100644 --- a/mod/resource/db/upgrade.php +++ b/mod/resource/db/upgrade.php @@ -265,5 +265,8 @@ function xmldb_resource_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/scorm/db/upgrade.php b/mod/scorm/db/upgrade.php index 32396c9a46..c48eaeb0ec 100644 --- a/mod/scorm/db/upgrade.php +++ b/mod/scorm/db/upgrade.php @@ -604,6 +604,9 @@ function xmldb_scorm_upgrade($oldversion) { upgrade_mod_savepoint(true, 2011110502, 'scorm'); } + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/survey/db/upgrade.php b/mod/survey/db/upgrade.php index b9d06a213b..ab5b273ff6 100644 --- a/mod/survey/db/upgrade.php +++ b/mod/survey/db/upgrade.php @@ -57,6 +57,9 @@ function xmldb_survey_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/url/db/upgrade.php b/mod/url/db/upgrade.php index 01926f80c9..c636b674c1 100644 --- a/mod/url/db/upgrade.php +++ b/mod/url/db/upgrade.php @@ -68,5 +68,8 @@ function xmldb_url_upgrade($oldversion) { upgrade_mod_savepoint(true, 2011092800, 'url'); } + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/wiki/db/upgrade.php b/mod/wiki/db/upgrade.php index 63a1d2f8c3..d4c84b6c63 100644 --- a/mod/wiki/db/upgrade.php +++ b/mod/wiki/db/upgrade.php @@ -373,5 +373,8 @@ function xmldb_wiki_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/workshop/db/upgrade.php b/mod/workshop/db/upgrade.php index abde32722c..3b2dd18fe1 100644 --- a/mod/workshop/db/upgrade.php +++ b/mod/workshop/db/upgrade.php @@ -319,5 +319,8 @@ function xmldb_workshop_upgrade($oldversion) { upgrade_mod_savepoint(true, 2011110400, 'workshop'); } + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/workshop/form/accumulative/db/upgrade.php b/mod/workshop/form/accumulative/db/upgrade.php index 0626d936dd..7a78bb9a8b 100644 --- a/mod/workshop/form/accumulative/db/upgrade.php +++ b/mod/workshop/form/accumulative/db/upgrade.php @@ -52,5 +52,8 @@ function xmldb_workshopform_accumulative_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/workshop/form/comments/db/upgrade.php b/mod/workshop/form/comments/db/upgrade.php index 82402d7ab2..42ace1c276 100644 --- a/mod/workshop/form/comments/db/upgrade.php +++ b/mod/workshop/form/comments/db/upgrade.php @@ -52,5 +52,8 @@ function xmldb_workshopform_comments_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/workshop/form/numerrors/db/upgrade.php b/mod/workshop/form/numerrors/db/upgrade.php index 553cc73554..59cc386766 100644 --- a/mod/workshop/form/numerrors/db/upgrade.php +++ b/mod/workshop/form/numerrors/db/upgrade.php @@ -62,5 +62,8 @@ function xmldb_workshopform_numerrors_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/mod/workshop/form/rubric/db/upgrade.php b/mod/workshop/form/rubric/db/upgrade.php index ac69e2fc05..ea418d5bc6 100644 --- a/mod/workshop/form/rubric/db/upgrade.php +++ b/mod/workshop/form/rubric/db/upgrade.php @@ -63,5 +63,8 @@ function xmldb_workshopform_rubric_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/question/type/calculated/db/upgrade.php b/question/type/calculated/db/upgrade.php index 0605694a27..7d49e4247a 100644 --- a/question/type/calculated/db/upgrade.php +++ b/question/type/calculated/db/upgrade.php @@ -230,6 +230,9 @@ function xmldb_qtype_calculated_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/question/type/essay/db/upgrade.php b/question/type/essay/db/upgrade.php index e74b8eaa2b..f5938bdf3f 100644 --- a/question/type/essay/db/upgrade.php +++ b/question/type/essay/db/upgrade.php @@ -90,5 +90,8 @@ function xmldb_qtype_essay_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/question/type/match/db/upgrade.php b/question/type/match/db/upgrade.php index fa89bf3d87..e799034226 100644 --- a/question/type/match/db/upgrade.php +++ b/question/type/match/db/upgrade.php @@ -210,5 +210,8 @@ function xmldb_qtype_match_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/question/type/multianswer/db/upgrade.php b/question/type/multianswer/db/upgrade.php index cc832b92e1..ce7a57cfeb 100644 --- a/question/type/multianswer/db/upgrade.php +++ b/question/type/multianswer/db/upgrade.php @@ -59,5 +59,8 @@ function xmldb_qtype_multianswer_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/question/type/multichoice/db/upgrade.php b/question/type/multichoice/db/upgrade.php index 22dc83a7f7..a26790ac8c 100644 --- a/question/type/multichoice/db/upgrade.php +++ b/question/type/multichoice/db/upgrade.php @@ -151,5 +151,8 @@ function xmldb_qtype_multichoice_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/question/type/numerical/db/upgrade.php b/question/type/numerical/db/upgrade.php index 09550c69ac..5a3ae490c9 100644 --- a/question/type/numerical/db/upgrade.php +++ b/question/type/numerical/db/upgrade.php @@ -237,6 +237,9 @@ function xmldb_qtype_numerical_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/question/upgrade.php b/question/upgrade.php index 7e5074be5b..0c8a87ff8d 100644 --- a/question/upgrade.php +++ b/question/upgrade.php @@ -40,5 +40,9 @@ function question_fix_random_question_parents() { global $CFG, $DB; $DB->execute("UPDATE {question} SET parent = id WHERE qtype = 'random' AND parent <> id"); + + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } diff --git a/theme/formal_white/db/upgrade.php b/theme/formal_white/db/upgrade.php index e26319500b..81d789db5d 100644 --- a/theme/formal_white/db/upgrade.php +++ b/theme/formal_white/db/upgrade.php @@ -63,5 +63,8 @@ function xmldb_theme_formal_white_upgrade($oldversion) { // Moodle v2.1.0 release upgrade line // Put any upgrade step following this + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + return true; } \ No newline at end of file From 08416e72e31c6ac6e7da54589903dca803c40bfc Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Fri, 9 Dec 2011 02:01:02 +0100 Subject: [PATCH 48/53] MDL-30604 Added 2 missing messages andd deleting an incorrect one --- enrol/flatfile/db/upgrade.php | 2 ++ enrol/guest/db/upgrade.php | 3 +++ question/upgrade.php | 3 --- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/enrol/flatfile/db/upgrade.php b/enrol/flatfile/db/upgrade.php index 2cb5a4c724..03a5e0f8ea 100644 --- a/enrol/flatfile/db/upgrade.php +++ b/enrol/flatfile/db/upgrade.php @@ -62,6 +62,8 @@ function xmldb_enrol_flatfile_upgrade($oldversion) { upgrade_plugin_savepoint(true, 2010091400, 'enrol', 'flatfile'); } + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this return $result; } diff --git a/enrol/guest/db/upgrade.php b/enrol/guest/db/upgrade.php index d04b36ee5d..b19b5a6dc7 100644 --- a/enrol/guest/db/upgrade.php +++ b/enrol/guest/db/upgrade.php @@ -30,6 +30,9 @@ function xmldb_enrol_guest_upgrade($oldversion) { $dbman = $DB->get_manager(); + // Moodle v2.2.0 release upgrade line + // Put any upgrade step following this + if ($oldversion < 2011112901) { // convert all null passwords to empty strings $DB->set_field('enrol', 'password', '', array('enrol'=>'guest', 'password'=>null)); diff --git a/question/upgrade.php b/question/upgrade.php index 0c8a87ff8d..fbedeb7ca1 100644 --- a/question/upgrade.php +++ b/question/upgrade.php @@ -41,8 +41,5 @@ function question_fix_random_question_parents() { global $CFG, $DB; $DB->execute("UPDATE {question} SET parent = id WHERE qtype = 'random' AND parent <> id"); - // Moodle v2.2.0 release upgrade line - // Put any upgrade step following this - return true; } From 554de0d73a22cc7f4f2e24bca2fab05800b04108 Mon Sep 17 00:00:00 2001 From: Tim Hunt Date: Thu, 8 Dec 2011 18:08:17 +0000 Subject: [PATCH 49/53] MDL-27314 quiz reports: fix JS confirmation before deleting attempts. --- mod/quiz/report/attemptsreport.php | 52 +++++++++++++++++-- mod/quiz/report/overview/overview_table.php | 42 ++------------- mod/quiz/report/overview/report.php | 7 +-- mod/quiz/report/responses/report.php | 19 ++++--- mod/quiz/report/responses/responses_table.php | 41 +-------------- 5 files changed, 70 insertions(+), 91 deletions(-) diff --git a/mod/quiz/report/attemptsreport.php b/mod/quiz/report/attemptsreport.php index 6c7ab35ea9..edc4ea4fc3 100644 --- a/mod/quiz/report/attemptsreport.php +++ b/mod/quiz/report/attemptsreport.php @@ -398,10 +398,10 @@ abstract class quiz_attempt_report_table extends table_sql { protected $groupstudents; protected $students; protected $questions; - protected $candelete; + protected $includecheckboxes; public function __construct($uniqueid, $quiz, $context, $qmsubselect, $groupstudents, - $students, $questions, $candelete, $reporturl, $displayoptions) { + $students, $questions, $includecheckboxes, $reporturl, $displayoptions) { parent::__construct($uniqueid); $this->quiz = $quiz; $this->context = $context; @@ -409,7 +409,7 @@ public function __construct($uniqueid, $quiz, $context, $qmsubselect, $groupstud $this->groupstudents = $groupstudents; $this->students = $students; $this->questions = $questions; - $this->candelete = $candelete; + $this->includecheckboxes = $includecheckboxes; $this->reporturl = $reporturl; $this->displayoptions = $displayoptions; } @@ -690,4 +690,50 @@ public function get_sort_columns() { $sortcolumns['quiza.id'] = SORT_ASC; return $sortcolumns; } + + public function wrap_html_start() { + if ($this->is_downloading() || !$this->includecheckboxes) { + return; + } + + $url = new moodle_url($this->reporturl, $this->displayoptions); + $url->param('sesskey', sesskey()); + + echo '
'; + echo '
'; + + echo html_writer::input_hidden_params($url); + echo '
'; + } + + public function wrap_html_finish() { + if ($this->is_downloading() || !$this->includecheckboxes) { + return; + } + + echo '
'; + echo '' . + get_string('selectall', 'quiz') . ' / '; + echo '' . + get_string('selectnone', 'quiz') . ' '; + echo '  '; + $this->submit_buttons(); + echo '
'; + // Close form + echo '
'; + echo '
'; + } + + /** + * Output any submit buttons required by the $this->includecheckboxes form. + */ + protected function submit_buttons() { + global $PAGE; + if (has_capability('mod/quiz:deleteattempts', $this->context)) { + echo ''; + $PAGE->requires->event_handler('#deleteattemptsbutton', 'click', 'M.util.show_confirm_dialog', + array('message' => get_string('deleteattemptcheck', 'quiz'))); + } + } } diff --git a/mod/quiz/report/overview/overview_table.php b/mod/quiz/report/overview/overview_table.php index 55aacb34f4..7efa3d8b79 100644 --- a/mod/quiz/report/overview/overview_table.php +++ b/mod/quiz/report/overview/overview_table.php @@ -35,13 +35,12 @@ */ class quiz_report_overview_table extends quiz_attempt_report_table { - protected $candelete; protected $regradedqs = array(); public function __construct($quiz, $context, $qmsubselect, $groupstudents, - $students, $detailedmarks, $questions, $candelete, $reporturl, $displayoptions) { + $students, $detailedmarks, $questions, $includecheckboxes, $reporturl, $displayoptions) { parent::__construct('mod-quiz-report-overview-report', $quiz , $context, - $qmsubselect, $groupstudents, $students, $questions, $candelete, + $qmsubselect, $groupstudents, $students, $questions, $includecheckboxes, $reporturl, $displayoptions); $this->detailedmarks = $detailedmarks; } @@ -147,45 +146,12 @@ protected function format_average($record, $question = false) { } } - public function wrap_html_start() { - if ($this->is_downloading() || !$this->candelete) { - return; - } - - // Start form - $url = new moodle_url($this->reporturl, $this->displayoptions + - array('sesskey' => sesskey())); - echo '
'; - echo '
'; - echo '
'; - echo html_writer::input_hidden_params($url); - echo '
'; - echo '
'; - } - - public function wrap_html_finish() { - if ($this->is_downloading() || !$this->candelete) { - return; - } - - // TODO add back are you sure, and convert to html_writer. - echo '
'; - echo '' . - get_string('selectall', 'quiz') . ' / '; - echo '' . - get_string('selectnone', 'quiz') . ' '; - echo '  '; + protected function submit_buttons() { if (has_capability('mod/quiz:regrade', $this->context)) { echo ''; } - echo ''; - echo '
'; - // Close form - echo '
'; - echo '
'; + parent::submit_buttons(); } public function col_sumgrades($attempt) { diff --git a/mod/quiz/report/overview/report.php b/mod/quiz/report/overview/report.php index 9b518a4ddd..e863e45fa5 100644 --- a/mod/quiz/report/overview/report.php +++ b/mod/quiz/report/overview/report.php @@ -106,7 +106,8 @@ public function display($quiz, $cm, $course) { // We only want to show the checkbox to delete attempts // if the user has permissions and if the report mode is showing attempts. - $candelete = has_capability('mod/quiz:deleteattempts', $this->context) + $includecheckboxes = has_any_capability( + array('mod/quiz:regrade', 'mod/quiz:deleteattempts'), $this->context) && ($attemptsmode != QUIZ_REPORT_ATTEMPTS_STUDENTS_WITH_NO); if ($attemptsmode == QUIZ_REPORT_ATTEMPTS_ALL) { @@ -128,7 +129,7 @@ public function display($quiz, $cm, $course) { $questions = quiz_report_get_significant_questions($quiz); $table = new quiz_report_overview_table($quiz, $this->context, $qmsubselect, - $groupstudents, $students, $detailedmarks, $questions, $candelete, + $groupstudents, $students, $detailedmarks, $questions, $includecheckboxes, $reporturl, $displayoptions); $filename = quiz_report_download_filename(get_string('overviewfilename', 'quiz_overview'), $courseshortname, $quiz->name); @@ -290,7 +291,7 @@ public function display($quiz, $cm, $course) { $columns = array(); $headers = array(); - if (!$table->is_downloading() && $candelete) { + if (!$table->is_downloading() && $includecheckboxes) { $columns[] = 'checkbox'; $headers[] = null; } diff --git a/mod/quiz/report/responses/report.php b/mod/quiz/report/responses/report.php index aad714022e..9f9857e4f0 100644 --- a/mod/quiz/report/responses/report.php +++ b/mod/quiz/report/responses/report.php @@ -105,7 +105,7 @@ public function display($quiz, $cm, $course) { // We only want to show the checkbox to delete attempts // if the user has permissions and if the report mode is showing attempts. - $candelete = has_capability('mod/quiz:deleteattempts', $this->context) + $includecheckboxes = has_capability('mod/quiz:deleteattempts', $this->context) && ($attemptsmode != QUIZ_REPORT_ATTEMPTS_STUDENTS_WITH_NO); $displayoptions = array(); @@ -124,11 +124,14 @@ public function display($quiz, $cm, $course) { $allowed = array(); } - $attemptids = optional_param_array('attemptid', array(), PARAM_INT); - if ($attemptids && confirm_sesskey()) { - require_capability('mod/quiz:deleteattempts', $this->context); - $this->delete_selected_attempts($quiz, $cm, $attemptids, $allowed); - redirect($reporturl->out(false, $displayoptions)); + if (empty($currentgroup) || $groupstudents) { + if (optional_param('delete', 0, PARAM_BOOL) && confirm_sesskey()) { + if ($attemptids = optional_param_array('attemptid', array(), PARAM_INT)) { + require_capability('mod/quiz:deleteattempts', $this->context); + $this->delete_selected_attempts($quiz, $cm, $attemptids, $allowed); + redirect($reporturl->out(false, $displayoptions)); + } + } } // Load the required questions. @@ -143,7 +146,7 @@ public function display($quiz, $cm, $course) { array('context' => $displaycoursecontext)); $table = new quiz_report_responses_table($quiz, $this->context, $qmsubselect, - $groupstudents, $students, $questions, $candelete, $reporturl, $displayoptions); + $groupstudents, $students, $questions, $includecheckboxes, $reporturl, $displayoptions); $filename = quiz_report_download_filename(get_string('responsesfilename', 'quiz_responses'), $courseshortname, $quiz->name); $table->is_downloading($download, $filename, @@ -205,7 +208,7 @@ public function display($quiz, $cm, $course) { $columns = array(); $headers = array(); - if (!$table->is_downloading() && $candelete) { + if (!$table->is_downloading() && $includecheckboxes) { $columns[] = 'checkbox'; $headers[] = null; } diff --git a/mod/quiz/report/responses/responses_table.php b/mod/quiz/report/responses/responses_table.php index c994908e60..cfb4633ddc 100644 --- a/mod/quiz/report/responses/responses_table.php +++ b/mod/quiz/report/responses/responses_table.php @@ -36,9 +36,9 @@ class quiz_report_responses_table extends quiz_attempt_report_table { public function __construct($quiz, $context, $qmsubselect, $groupstudents, - $students, $questions, $candelete, $reporturl, $displayoptions) { + $students, $questions, $includecheckboxes, $reporturl, $displayoptions) { parent::__construct('mod-quiz-report-responses-report', $quiz, $context, - $qmsubselect, $groupstudents, $students, $questions, $candelete, + $qmsubselect, $groupstudents, $students, $questions, $includecheckboxes, $reporturl, $displayoptions); } @@ -49,43 +49,6 @@ public function build_table() { } } - public function wrap_html_start() { - global $PAGE; - if ($this->is_downloading() || !$this->candelete) { - return; - } - - // Start form - $url = new moodle_url($this->reporturl, $this->displayoptions); - $url->param('sesskey', sesskey()); - - echo '
'; - echo '
'; - echo ''. - get_string('selectall', 'quiz').' / '; - echo ''. - get_string('selectnone', 'quiz').' '; - echo '  '; - echo ''; - echo '
'; - // Close form - echo ''; - echo ''; - } - public function col_sumgrades($attempt) { if (!$attempt->timefinish) { return '-'; From b8d13becf9e1f5ceb92e010f303e1e20f4a21cfc Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Fri, 9 Dec 2011 09:04:43 +0100 Subject: [PATCH 50/53] MDL-30625 fail gracefully when admins not defined --- lib/datalib.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/datalib.php b/lib/datalib.php index 0b86106e1d..0a80e0c0bc 100644 --- a/lib/datalib.php +++ b/lib/datalib.php @@ -62,6 +62,10 @@ function get_admin() { return clone($mainadmin); } + if (empty($CFG->siteadmins)) { // Should not happen on an ordinary site + return false; + } + foreach (explode(',', $CFG->siteadmins) as $id) { if ($user = $DB->get_record('user', array('id'=>$id, 'deleted'=>0))) { $mainadmin = $user; From 675e402a552b4079a8ef68250b0656b307fd6c90 Mon Sep 17 00:00:00 2001 From: Aparup Banerjee Date: Fri, 9 Dec 2011 15:48:54 +0800 Subject: [PATCH 51/53] MDL-30542 simple string improvement. --- lang/en/webservice.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/en/webservice.php b/lang/en/webservice.php index 512c195f11..74f84c8f76 100644 --- a/lang/en/webservice.php +++ b/lang/en/webservice.php @@ -163,7 +163,7 @@ $string['service'] = 'Service'; $string['servicehelpexplanation'] = 'A service is a set of functions. A service can be accessed by all users or just specified users.'; $string['servicename'] = 'Service name'; -$string['servicenotavailable'] = 'the web service is not available (it does not exist or it is disabled)'; +$string['servicenotavailable'] = 'Web service is not available (it doesn\'t exist or might be disabled)'; $string['servicesbuiltin'] = 'Built-in services'; $string['servicescustom'] = 'Custom services'; $string['serviceusers'] = 'Authorised users'; From 511b4cf82c36237ea4a8c61f9a906e26a5dea15c Mon Sep 17 00:00:00 2001 From: Tim Hunt Date: Fri, 9 Dec 2011 11:31:47 +0000 Subject: [PATCH 52/53] MDL-30660 javascript-static: another yui3/ticket/2531561 work-around. --- lib/javascript-static.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/javascript-static.js b/lib/javascript-static.js index cb924520e9..0225422038 100644 --- a/lib/javascript-static.js +++ b/lib/javascript-static.js @@ -268,7 +268,9 @@ M.util.show_confirm_dialog = function(e, args) { window.location = targetancestor.get('href'); } else if (target.test('input')) { - targetform = target.ancestor('form'); + targetform = target.ancestor(function(node) { return node.get('tagName').toLowerCase() == 'form'; }); + // We cannot use target.ancestor('form') on the previous line + // because of http://yuilibrary.com/projects/yui3/ticket/2531561 if (!targetform) { return; } From f89a83b87b65d19f3e13250f99489b755ffbf3dd Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Fri, 9 Dec 2011 16:25:08 +0100 Subject: [PATCH 53/53] weekly release 2.3dev (on-sync version 22_STABLE) --- version.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.php b/version.php index 7874acf28f..868b08325c 100644 --- a/version.php +++ b/version.php @@ -30,10 +30,10 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2011120500.00; // YYYYMMDD = weekly release date of this DEV branch +$version = 2011120500.01; // YYYYMMDD = weekly release date of this DEV branch // RR = release increments - 00 in DEV branches // .XX = incremental changes -$release = '2.3dev (Build: 20111205)'; // Human-friendly version name +$release = '2.3dev (Build: 20111209)'; // Human-friendly version name $maturity = MATURITY_ALPHA; // this version's maturity level