123456789101112131415161718192021222324252627282930 |
- <?php
- // This file is part of
- //
- // Moodle is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // Moodle is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
- // Submission form
- $string['newsubmission'] = 'New Submission';
- $string['submissionname'] = 'Submission name';
- $string['visibility_help'] = 'Not working at the moment, still being built';
- $string['submissiontype'] = 'Submission type';
- $string['gradebook'] = 'Gradebook';
- $string['gradebook_help'] = 'Submission goes to gradebook?';
- $string['submissionfiles'] = 'Submission files';
- $string['submissionfiles_help'] = 'Submit 1 file with all submissions inside it, either a .csv or a .zip with a csv and a folder with the submissions inside it';
- $string['newtypebutton'] = 'New type';
- // Exceptions
- $string['invalidtype'] = "Submission type is invalid, must first create a type";
|