gradeimporter.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. // This file is part of
  3. //
  4. // Moodle is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // Moodle is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
  16. require_once('forms_lang.php');
  17. $string['gradeimporter'] = 'Grade Importer';
  18. $string['pluginname'] = 'Grade Importer';
  19. $string['modulename'] = 'Grade Importer';
  20. $string['modulenameplural'] = 'Grade Importers';
  21. $string['gradeimporterintro'] = 'This module facilitates...';
  22. $string['gradeimportername'] = 'Grade Importer Name';
  23. $string['pluginadministration'] = 'plugin administration string';
  24. $string['displayingview'] = 'Posted Grades';
  25. // Submission.php
  26. $string['invalidgradeimporterid'] = 'Invalid Grade Importer ID';
  27. $string['submissionadded'] = "Submission added to DB";
  28. $string['newsubmission'] = "Add new submission";
  29. // FormStrings
  30. // Generic
  31. $string['description'] = 'Description';
  32. $string['visibility'] = 'Can students see this?';
  33. $string['name'] = 'Name';
  34. $string['yes'] = 'Yes';
  35. $string['no'] = 'no';
  36. // Generic error Messages
  37. $string['error_nameField'] = 'Insert a name';
  38. // GradeImporter form
  39. $string['general'] = 'General informations';
  40. $string['visibilityOn'] = 'Students can see this';
  41. $string['visibilityOff'] = 'Students can\'t see this';
  42. // Submission form
  43. // Subtypes
  44. $string['exam'] = 'Exam';
  45. $string['activity'] = 'Activity';
  46. // GradeImporter form errors
  47. // Submission form
  48. $string['gradebookN'] = 'This submission goes to gradebook';
  49. $string['gradebookY'] = 'This submission does not go to gradebook';
  50. $string['submissionFiles'] = 'Students feedback file';
  51. $string['submissionDescription'] = 'Submission description';
  52. $string['submissionType'] = 'Submission Type';
  53. $string['visibilityYN'] = 'Visiblity';
  54. $string['csvdelimiter'] = 'csv delimiter';
  55. $string['filehandling'] = 'File handling';
  56. $string['gradebookYN'] = 'Gradebook';
  57. $string['visibilityYN'] = 'Students can see this submission';
  58. // Submission form help buttons
  59. $string['submissionType_help'] = 'Choose submission type (e.g. Exam, Activity)';
  60. $string['submissionFiles_help'] = 'Must be only one file, either a .zip or a .csv';
  61. $string['csvdelimiter_help'] = 'CSV delimiter of the config.csv file';
  62. $string['gradebookYN_help'] = 'Yes, results go to gradebook \n No, Results don\'t go to gradebook';
  63. $string['visibilityYN_help'] = 'Yes, this is available to students \n No, This is not available to students';
  64. // Submission form errors
  65. // Submission type
  66. $string['newsubtype'] = 'Add new submission type';
  67. // Submission type help
  68. $string['newsubtype_help'] = 'Goes to new sub type form (sub type examples: Exam, Test, Activity)';
  69. // Events string
  70. $string['eventmodelsubmissioncreated'] = 'Submission created';
  71. $string['downloadconfigcsv'] = 'Download config CSV';
  72. // View - table presentation
  73. $string['student'] = 'Student';
  74. $string['type'] = 'Type';
  75. $string['submission'] = 'Submission';
  76. $string['comment'] = 'Comment';
  77. $string['grade'] = 'Grade';
  78. $string['file'] = 'File';
  79. $string['nameCol'] = 'Name';
  80. $string['nameColTitle'] = 'Fullname of all students enrolled in this course';
  81. $string['editSub'] = "Edit this submission";
  82. // Access Errors
  83. $string['guestnoedit'] = "Guests can't edit forms";