Merged tidy-ups from stable

This commit is contained in:
moodler 2006-11-01 09:44:01 +00:00
parent 6dfb22349f
commit 304d08f0c4
76 changed files with 1463 additions and 1525 deletions

View file

@ -1,19 +1,20 @@
<?php
$string['denotesreq']='$a denotes you must supply a value in this field.';
$string['requiredelement']='You must supply a value here.';
$string['nonexistentformelements']='Trying to add help buttons to nonexistent form elements : $a';
$string['nomethodforaddinghelpbutton']='There is no method for adding a help button to form element $a->name (class $a->classname)';
//error messages for standard rules
$string['err_required']='You must supply a value here.';
$string['err_maxlength']='You must enter not more than $a->format characters here.';
$string['err_minlength']='You must enter at least $a->format characters here.';
$string['err_numeric']='You must enter a number here.';
$string['err_rangelength']='You must enter between {$a->format[0]} and {$a->format[1]} characters here.';
<?PHP // $Id$
// form.php - created with Moodle 1.7 beta + (2006101003)
$string['denotesreq'] = '$a denotes required field.';
$string['err_alphanumeric']='You must enter only letters or numbers here.';
$string['err_email']='You must enter a valid email address here.';
$string['err_lettersonly']='You must enter only letters here.';
$string['err_alphanumeric']='You must enter only letters or numbers here.';
$string['err_maxlength']='You must enter not more than $a->format characters here.';
$string['err_minlength']='You must enter at least $a->format characters here.';
$string['err_nopunctuation']='You must enter no punctuation characters here.';
$string['err_nonzero']='You must enter a number not starting with a 0 here.';
$string['err_numeric']='You must enter a number here.';
$string['err_rangelength']='You must enter between {$a->format[0]} and {$a->format[1]} characters here.';
$string['err_required']='You must supply a value here.';
$string['nomethodforaddinghelpbutton'] = 'There is no method for adding a help button to form element $a->name (class $a->classname)';
$string['nonexistentformelements'] = 'Trying to add help buttons to nonexistent form elements : $a';
$string['requiredelement'] = 'Required field.';
?>
?>