From b47566d9c1578ff2673872aefbd15b63a99b73fa Mon Sep 17 00:00:00 2001 From: David Mudrak Date: Mon, 24 May 2010 15:22:28 +0000 Subject: [PATCH] MDL-21695 Enable AJAX in gradebook: help string name fixed AMOS BEGIN MOV [configenableajax,core_grades],[enableajax_help,core_grades] AMOS END --- grade/report/grader/settings.php | 2 +- lang/en/grades.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/grade/report/grader/settings.php b/grade/report/grader/settings.php index 651918226d4..eb14928f932 100644 --- a/grade/report/grader/settings.php +++ b/grade/report/grader/settings.php @@ -39,7 +39,7 @@ $settings->add(new admin_setting_configselect('grade_report_meanselection', get_ GRADE_REPORT_MEAN_GRADED => get_string('meangraded', 'grades')))); $settings->add(new admin_setting_configcheckbox('grade_report_enableajax', get_string('enableajax', 'grades'), - get_string('configenableajax', 'grades'), 0)); + get_string('enableajax_help', 'grades'), 0)); $settings->add(new admin_setting_configcheckbox('grade_report_showcalculations', get_string('showcalculations', 'grades'), get_string('configshowcalculations', 'grades'), 0)); diff --git a/lang/en/grades.php b/lang/en/grades.php index 6553742c49c..71f91d503c5 100755 --- a/lang/en/grades.php +++ b/lang/en/grades.php @@ -119,7 +119,6 @@ $string['compact'] = 'Compact'; $string['configcoursegradedisplaytype'] = 'Select the default display type of grades for this course. You can also select the site default value. Grades can be shown as real grades, as percentages (in reference to the minimum and maximum grades) or as letters (A, B, C etc..). Selecting Letters will allow you to define your own grade letters and boundaries.'; $string['configdecimalpoints'] = 'Specifies the number of decimal points to display for each grade. This setting may be overridden per grading item.'; $string['configdisablegradehistory'] = 'Disable history tracking of changes in grades related tables. This may speed up the server a little and conserve space in database.'; -$string['configenableajax'] = 'Adds a layer of AJAX functionality to the grader report, simplifying and speeding up common operations. Depends on Javascript being switched on at the user\'s browser level.'; $string['configenableoutcomes'] = 'Support for Outcomes (also known as Competencies, Goals, Standards or Criteria) means that we can grade things using one or more scales that are tied to outcome statements. Enabling outcomes makes such special grading possible throughout the site.'; $string['configexportdecimalpoints'] = 'The number of decimal points to display for export. This can be overridden during export.'; $string['configfixedstudents'] = 'Allows grades to scroll horizontally without losing sight of the students column, by making it static.'; @@ -205,6 +204,7 @@ $string['editscale'] = 'Edit scale'; $string['edittree'] = 'Categories and items'; $string['editverbose'] = 'Edit {$a->category} {$a->itemmodule} {$a->itemname}'; $string['enableajax'] = 'Enable AJAX'; +$string['enableajax_help'] = 'Adds a layer of AJAX functionality to the grader report, simplifying and speeding up common operations. Depends on Javascript being switched on at the user\'s browser level.'; $string['enableoutcomes'] = 'Enable outcomes'; $string['encoding'] = 'Encoding'; $string['errorcalculationnoequal'] = 'Formula must start with equal sign (=1+2)';