MDL-2674 minor lang improvement; backported from MOODLE_19_STABLE

This commit is contained in:
skodak 2008-03-20 21:17:40 +00:00
parent 02a0635d17
commit 7d44b1a425
2 changed files with 3 additions and 2 deletions

View File

@ -439,7 +439,7 @@ function selectItemInCheckboxByName(formId, checkName, checked ) {
echo '<label for="menurestore_groups">'.get_string ('groupsgroupings', 'group').'</label>'.$helplink;
echo "</b></td><td colspan=\"2\">";
$group_options[RESTORE_GROUPS_NONE] = get_string('none');
$group_options[RESTORE_GROUPS_ONLY] = get_string('groups');
$group_options[RESTORE_GROUPS_ONLY] = get_string('groupsonly', 'group');
$group_options[RESTORE_GROUPINGS_ONLY] = get_string('groupingsonly', 'group');
$group_options[RESTORE_GROUPS_GROUPINGS] = get_string('groupsgroupings', 'group'); //all.
@ -757,4 +757,4 @@ function restore_is_samerole($testroleid, $rolefromxml) {
}
return true;
}
?>
?>

View File

@ -135,5 +135,6 @@ $string['deleteallgroupings'] = 'Delete all groupings';
$string['groupsgroupings'] = 'Groups &amp; groupings';
$string['groupingsonly'] = 'Groupings only';
$string['groupsonly'] = 'Groups only';
?>