1234567891011121314151617181920212223242526272829 |
- <?php
- //Here we define the strings used on the forms
- //Generic strings
- $string['description'] = 'Description';
- $string['visibility'] = 'Can students see this?';
- //Generic error Messages
- //gradeImporter form
- $string['instanceName'] = 'Name';
- $string['visibilityOn'] = 'Students can see this';
- $string['visibilityOff'] = 'Students can\'t see this';
- //gradeImporter form errors
- $string['error_instanceNameField'] = 'Insert a name';
- //submission form
- $string['submissionName'] = 'Name';
- $string['gradebookN'] = 'This submission goes to gradebook';
- $string['gradebookY'] = 'This submission does not go to gradebook';
- $string['submissionFiles'] = 'Choose the students feedback file';
- $string[''] = '';
- $string[''] = '';
- //submission form errors
- $string['error_submissionNameField'] = 'Please insert a name for this submission'
- ?>
|