Skip to content

Commit

Permalink
admin/uploaduser: missing strings fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
martinlanghoff committed Jan 16, 2006
1 parent d855909 commit 1f84d80
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions admin/uploaduser.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -341,10 +341,10 @@
} }
fclose($fp); fclose($fp);
notify("$strusersnew: $usersnew"); notify("$strusersnew: $usersnew");
notify("$strusersupdated: $usersupdated"); notify(get_string('usersupdated', 'admin') . ": $usersupdated");
notify(get_string('errors') . ": $userserrors"); notify(get_string('errors', 'admin') . ": $userserrors");
if ($allowrenames) { if ($allowrenames) {
notify(get_string('renames', 'admin') . ": $renames"); notify(get_string('usersrenamed', 'admin') . ": $renames");
notify(get_string('renameerrors', 'admin') . ": $renameerrors"); notify(get_string('renameerrors', 'admin') . ": $renameerrors");
} }
echo '<hr />'; echo '<hr />';
Expand Down
2 changes: 2 additions & 0 deletions lang/en/admin.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
$string['edithelpdocs'] = 'Edit help documents'; $string['edithelpdocs'] = 'Edit help documents';
$string['editlang'] = '<b>Edit</b>'; $string['editlang'] = '<b>Edit</b>';
$string['editstrings'] = 'Edit strings'; $string['editstrings'] = 'Edit strings';
$string['errors'] = 'Errors';
$string['filterall'] = 'Filter all strings'; $string['filterall'] = 'Filter all strings';
$string['filtermatchoneperpage'] = 'Filter match once per page'; $string['filtermatchoneperpage'] = 'Filter match once per page';
$string['filtermatchonepertext'] = 'Filter match once per text'; $string['filtermatchonepertext'] = 'Filter match once per text';
Expand Down Expand Up @@ -183,6 +184,7 @@
$string['stickyblockspagetype'] = 'Page type to configure'; $string['stickyblockspagetype'] = 'Page type to configure';
$string['stickyblocksmymoodle'] = 'My moodle'; $string['stickyblocksmymoodle'] = 'My moodle';
$string['stickyblockscourseview'] = 'Course page'; $string['stickyblockscourseview'] = 'Course page';
$string['renameerrors'] = 'Errors in renames';
$string['tabselectedtofront'] = 'On tables with tabs, should the row with the currently selected tag be placed at the front'; $string['tabselectedtofront'] = 'On tables with tabs, should the row with the currently selected tag be placed at the front';
$string['therewereerrors'] = 'There were errors in your data'; $string['therewereerrors'] = 'There were errors in your data';
$string['timezoneforced'] = 'This is forced by the site administrator'; $string['timezoneforced'] = 'This is forced by the site administrator';
Expand Down
2 changes: 1 addition & 1 deletion lang/en/error.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
$string['usernotaddederror'] = 'User \"$a\" not added - unknown error'; $string['usernotaddederror'] = 'User \"$a\" not added - unknown error';
$string['usernotaddedregistered'] = 'User \"$a\" not added - already registered'; $string['usernotaddedregistered'] = 'User \"$a\" not added - already registered';
$string['usernotavailable'] = 'The details of this user are not available to you.'; $string['usernotavailable'] = 'The details of this user are not available to you.';
$string['usernotrenamedexist'] = 'User not renamed -- the new username is already in use.'; $string['usernotrenamedexists'] = 'User not renamed -- the new username is already in use.';
$string['usernotrenamedmissing'] = 'User not renamed -- could not find the old username.'; $string['usernotrenamedmissing'] = 'User not renamed -- could not find the old username.';


?> ?>

0 comments on commit 1f84d80

Please sign in to comment.