Skip to content

Commit

Permalink
Added one string to moodle.php
Browse files Browse the repository at this point in the history
To be used in different places.
Bug 1646
(http://moodle.org/bugs/bug.php?op=show&bugid=1646)
  • Loading branch information
stronk7 committed Jul 19, 2004
1 parent ecf8f76 commit 903c6f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions lang/en/moodle.php
Expand Up @@ -373,6 +373,7 @@
$string['entercourse'] = 'Click to enter this course'; $string['entercourse'] = 'Click to enter this course';
$string['enteremailaddress'] = 'Enter in your email address to reset your $string['enteremailaddress'] = 'Enter in your email address to reset your
password and have the new password sent to you via email.'; password and have the new password sent to you via email.';
$string['entries'] = 'Entries';
$string['error'] = 'Error'; $string['error'] = 'Error';
$string['errortoomanylogins'] = 'Sorry, you have exceeded the allowed number of login attempts. Restart your browser.'; $string['errortoomanylogins'] = 'Sorry, you have exceeded the allowed number of login attempts. Restart your browser.';
$string['errorwhenconfirming'] = 'You are not confirmed yet because an error occurred. If you clicked on a link in an email to get here, make sure that the line in your email wasn\'t broken or wrapped. You may have to use cut and paste to reconstruct the link properly.'; $string['errorwhenconfirming'] = 'You are not confirmed yet because an error occurred. If you clicked on a link in an email to get here, make sure that the line in your email wasn\'t broken or wrapped. You may have to use cut and paste to reconstruct the link properly.';
Expand Down
2 changes: 1 addition & 1 deletion mod/attendance/backuplib.php
Expand Up @@ -99,7 +99,7 @@ function attendance_check_backup_mods($course,$user_data=false,$backup_unique_co


//Now, if requested, the user_data //Now, if requested, the user_data
if ($user_data) { if ($user_data) {
$info[1][0] = get_string("rolls","attendance"); $info[1][0] = get_string("entries");
if ($ids = attendance_roll_ids_by_course ($course)) { if ($ids = attendance_roll_ids_by_course ($course)) {
$info[1][1] = count($ids); $info[1][1] = count($ids);
} else { } else {
Expand Down
2 changes: 1 addition & 1 deletion mod/dialogue/backuplib.php
Expand Up @@ -144,7 +144,7 @@ function dialogue_check_backup_mods($course,$user_data=false,$backup_unique_code


//Now, if requested, the user_data //Now, if requested, the user_data
if ($user_data) { if ($user_data) {
$info[1][0] = get_string("entries","dialogue"); $info[1][0] = get_string("entries");
if ($ids = dialogue_entry_ids_by_course ($course)) { if ($ids = dialogue_entry_ids_by_course ($course)) {
$info[1][1] = count($ids); $info[1][1] = count($ids);
} else { } else {
Expand Down

0 comments on commit 903c6f9

Please sign in to comment.