diff --git a/lang/en/moodle.php b/lang/en/moodle.php index faa6d9cbbb4..0137c2895aa 100644 --- a/lang/en/moodle.php +++ b/lang/en/moodle.php @@ -1263,9 +1263,6 @@ $string['pleaseusesearch'] = 'Please use the search'; $string['plugin'] = 'Plugin'; $string['plugindeletefiles'] = 'All data associated with the plugin \'{$a->name}\' has been deleted from the database. To prevent the plugin re-installing itself, you should now delete this directory from your server: {$a->directory}'; $string['plugincheck'] = 'Plugins check'; -$string['pluginchecknotice'] = 'The following tables show the modules, blocks and filters that have been detected in your current Moodle installation; -They indicate which plugins are standard, and which are not. All non-standard plugins should be checked and upgraded to their most recent versions -before continuing with this Moodle upgrade.'; $string['pluginsetup'] = 'Setting up plugin tables'; $string['policyaccept'] = 'I understand and agree'; $string['policyagree'] = 'You must agree to this policy to continue using this site. Do you agree?'; diff --git a/lang/en/plugin.php b/lang/en/plugin.php new file mode 100644 index 00000000000..6c11d795e35 --- /dev/null +++ b/lang/en/plugin.php @@ -0,0 +1,104 @@ +. + +/** + * Defines names of plugin types and some strings used at the plugin managment + * + * @package core + * @subpackage admin + * @copyright 2011 David Mudrak + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +defined('MOODLE_INTERNAL') || die(); + +$string['availability'] = 'Availability'; +$string['displayname'] = 'Plugin name'; +$string['nonehighlighted'] = 'No plugins require your attention during this upgrade'; +$string['nonehighlightedinfo'] = 'Display the list of all installed plugins anyway'; +$string['noneinstalled'] = 'No plugins of this type are installed'; +$string['showall'] = 'Reload and show all plugins'; +$string['pluginchecknotice'] = 'This page displays plugins that may require your attention during the upgrade. Highlighted items include new plugins that are about to be installed, updated plugins that are about to be upgraded and any missing plugins. Contributed plugins are also highlighted. +It is recommended that you check whether there are more recent versions of contributed plugins available and update their source code before continuing with this Moodle upgrade.'; +$string['plugindisable'] = 'Disable'; +$string['plugindisabled'] = 'Disabled'; +$string['pluginenable'] = 'Enable'; +$string['pluginenabled'] = 'Enabled'; +$string['rootdir'] = 'Directory'; +$string['settings'] = 'Settings'; +$string['somehighlighted'] = 'Number of plugins requiring attention during this upgrade: {$a}'; +$string['somehighlightedinfo'] = 'Display the full list of installed plugins'; +$string['source'] = 'Source'; +$string['sourceext'] = 'Extension'; +$string['sourcestd'] = 'Standard'; +$string['status'] = 'Status'; +$string['status_downgrade'] = 'Higher version already installed!'; +$string['status_missing'] = 'Missing from disk!'; +$string['status_new'] = 'To be installed'; +$string['status_nodb'] = 'No database'; +$string['status_upgrade'] = 'To be upgraded'; +$string['status_uptodate'] = 'Up-to-date'; +$string['systemname'] = 'Identifier'; +$string['type_auth'] = 'Authentication method'; +$string['type_auth_plural'] = 'Authentication methods'; +$string['type_block'] = 'Block'; +$string['type_block_plural'] = 'Blocks'; +$string['type_coursereport'] = 'Course report'; +$string['type_coursereport_plural'] = 'Course reports'; +$string['type_editor'] = 'Editor'; +$string['type_editor_plural'] = 'Editors'; +$string['type_enrol'] = 'Enrolment method'; +$string['type_enrol_plural'] = 'Enrolment methods'; +$string['type_filter'] = 'Text filter'; +$string['type_filter_plural'] = 'Text filters'; +$string['type_format'] = 'Course format'; +$string['type_format_plural'] = 'Course formats'; +$string['type_gradeexport'] = 'Grade export method'; +$string['type_gradeexport_plural'] = 'Grade export methods'; +$string['type_gradeimport'] = 'Grade import method'; +$string['type_gradeimport_plural'] = 'Grade import methods'; +$string['type_gradereport'] = 'Gradebook report'; +$string['type_gradereport_plural'] = 'Gradebook reports'; +$string['type_local'] = 'Local plugin'; +$string['type_local_plural'] = 'Local plugins'; +$string['type_message'] = 'Messaging processor'; +$string['type_message_plural'] = 'Messaging processors'; +$string['type_mnetservice'] = 'MNet service'; +$string['type_mnetservice_plural'] = 'MNet services'; +$string['type_mod'] = 'Activity module'; +$string['type_mod_plural'] = 'Activity modules'; +$string['type_plagiarism'] = 'Plagiarism prevention plugin'; +$string['type_plagiarism_plural'] = 'Plagiarism prevention plugins'; +$string['type_portfolio'] = 'Portfolio'; +$string['type_portfolio_plural'] = 'Portfolios'; +$string['type_profilefield'] = 'Profile field type'; +$string['type_profilefield_plural'] = 'Profile field types'; +$string['type_qformat'] = 'Question import/export format'; +$string['type_qformat_plural'] = 'Question import/export formats'; +$string['type_qtype'] = 'Question type'; +$string['type_qtype_plural'] = 'Question types'; +$string['type_report'] = 'Site report'; +$string['type_report_plural'] = 'Site reports'; +$string['type_repository'] = 'Repository'; +$string['type_repository_plural'] = 'Repositories'; +$string['type_theme'] = 'Theme'; +$string['type_theme_plural'] = 'Themes'; +$string['type_webservice'] = 'Webservice protocol'; +$string['type_webservice_plural'] = 'Webservice protocols'; +$string['uninstall'] = 'Uninstall'; +$string['version'] = 'Version'; +$string['versiondb'] = 'Current version'; +$string['versiondisk'] = 'New version'; diff --git a/lang/en/repository.php b/lang/en/repository.php index 9664ff6a322..86fbb43a439 100644 --- a/lang/en/repository.php +++ b/lang/en/repository.php @@ -32,7 +32,7 @@ $string['addplugin'] = 'Add a repository plugin'; $string['allowexternallinks'] = 'Allow external links'; $string['areamainfile'] = 'Main file'; $string['coursebackup'] = 'Course backups'; -$string['pluginname'] = 'Repository plugin name'; +$string['pluginname'] = 'Repository plugin name'; // todo fix this, this string identifier is reserved $string['pluginnamehelp'] = 'If you leave this empty the default name will be used.'; $string['sectionbackup'] = 'Section backups'; $string['activitybackup'] = 'Activity backup'; diff --git a/mod/assignment/lang/en/assignment.php b/mod/assignment/lang/en/assignment.php index c1d7cbb8024..b56aa8e525f 100644 --- a/mod/assignment/lang/en/assignment.php +++ b/mod/assignment/lang/en/assignment.php @@ -180,6 +180,8 @@ $string['submitedformarking'] = 'Assignment was already submitted for marking an $string['submitformarking'] = 'Final submission for assignment marking'; $string['submitted'] = 'Submitted'; $string['submittedfiles'] = 'Submitted files'; +$string['subplugintype_assignment'] = 'Assignment type'; +$string['subplugintype_assignment_plural'] = 'Assignment types'; $string['trackdrafts'] = 'Enable "Send for marking" button'; $string['trackdrafts_help'] = 'The "Send for marking" button allows students to indicate to the teacher that they have finished working on an assignment. The teacher may choose to revert the assignment to draft status (if it requires further work, for example).'; $string['typeblog'] = 'Blog post'; diff --git a/mod/data/lang/en/data.php b/mod/data/lang/en/data.php index b8d029f8e56..eb49b32bdee 100644 --- a/mod/data/lang/en/data.php +++ b/mod/data/lang/en/data.php @@ -294,6 +294,10 @@ $string['selectedrequired'] = 'All selected required'; $string['showall'] = 'Show all entries'; $string['single'] = 'View single'; $string['singletemplate'] = 'Single template'; +$string['subplugintype_datafield'] = 'Database field type'; +$string['subplugintype_datafield_plural'] = 'Database field types'; +$string['subplugintype_datapreset'] = 'Preset'; +$string['subplugintype_datapreset_plural'] = 'Presets'; $string['teachersandstudents'] = '{$a->teachers} and {$a->students}'; $string['templates'] = 'Templates'; $string['templatesaved'] = 'Template saved'; diff --git a/mod/workshop/lang/en/workshop.php b/mod/workshop/lang/en/workshop.php index d68a95cccc4..200d0605a71 100644 --- a/mod/workshop/lang/en/workshop.php +++ b/mod/workshop/lang/en/workshop.php @@ -209,6 +209,12 @@ $string['submissionsettings'] = 'Submission settings'; $string['submissionstart'] = 'Open for submissions from'; $string['submissionstartdatetime'] = 'Open for submissions from {$a->daydatetime} ({$a->distanceday})'; $string['submissiontitle'] = 'Title'; +$string['subplugintype_workshopallocation'] = 'Submissions allocation method'; +$string['subplugintype_workshopallocation_plural'] = 'Submissions allocation methods'; +$string['subplugintype_workshopeval'] = 'Grading evaluation method'; +$string['subplugintype_workshopeval_plural'] = 'Grading evaluation methods'; +$string['subplugintype_workshopform'] = 'Grading strategy'; +$string['subplugintype_workshopform_plural'] = 'Grading strategies'; $string['switchingphase'] = 'Switching phase'; $string['switchphase'] = 'Switch phase'; $string['switchphase10info'] = 'You are about to switch the workshop into the Setup phase. In this phase, users cannot modify their submissions or their assessments. Teachers may use this phase to change workshop settings, modify the grading strategy of tweak assessment forms.';