From 18e55c294d09d46ab0fc90e97f3c1fbf999caa87 Mon Sep 17 00:00:00 2001 From: David Mudrak Date: Mon, 26 Mar 2012 14:58:10 +0200 Subject: [PATCH] MDL-20438 removing the word 'extension' It was suggested not to use this term as in moodleverse, non-standard plugins have always been referred to as 'contributed plugins'. --- lang/en/admin.php | 6 +++--- lang/en/plugin.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lang/en/admin.php b/lang/en/admin.php index a83a8af3c50..062d68cbb48 100644 --- a/lang/en/admin.php +++ b/lang/en/admin.php @@ -979,11 +979,11 @@ $string['updatenotifications'] = 'Update notifications'; $string['updatenotificationfooter'] = 'Your Moodle site {$a->siteurl} is configured to automatically check for available updates. You are receiving this message as the administrator of the site. You can disable automatic checks for available updates in the Site administration section of the Settings block. You can customize the delivery of this message via your personal Messaging setting in the My profile settings section.'; $string['updatenotificationsubject'] = 'There are available updates for your Moodle site'; $string['updateautocheck'] = 'Automatically check for available updates'; -$string['updateautocheck_desc'] = 'If enabled, your site will automatically check for available updates for both Moodle code and all installed extensions. If there is a new update available, a notification will be sent to site admins.'; +$string['updateautocheck_desc'] = 'If enabled, your site will automatically check for available updates for both Moodle code and all additional plugins. If there is a new update available, a notification will be sent to site admins.'; $string['updateminmaturity'] = 'Required code maturity'; -$string['updateminmaturity_desc'] = 'Notify about available updates only if the available code has the selected maturity level at least. Updates for extensions that do not declare their code maturity level are always reported regardless this setting.'; +$string['updateminmaturity_desc'] = 'Notify about available updates only if the available code has the selected maturity level at least. Updates for plugins that do not declare their code maturity level are always reported regardless this setting.'; $string['updatenotifybuilds'] = 'Notify about new builds'; -$string['updatenotifybuilds_desc'] = 'If enabled, the available update for Moodle code is also reported when a new build for the current version is available. Builds are continuous improvements of a given Moodle version. They are generally released every week. If disabled, the available update will be reported only when there is a higher version of Moodle released. Checks for extension plugins are not affected by this setting.'; +$string['updatenotifybuilds_desc'] = 'If enabled, the available update for Moodle code is also reported when a new build for the current version is available. Builds are continuous improvements of a given Moodle version. They are generally released every week. If disabled, the available update will be reported only when there is a higher version of Moodle released. Checks for plugins are not affected by this setting.'; $string['upgradestart'] = 'Upgrade'; $string['upgradeerror'] = 'Unknown error upgrading {$a->plugin} to version {$a->version}, can not continue.'; $string['upgradeforumread'] = 'A new feature has been added in Moodle 1.5 to track read/unread forum posts.
To use this functionality you need to update your tables.'; diff --git a/lang/en/plugin.php b/lang/en/plugin.php index 4c6a575a243..130f9eb9bd7 100644 --- a/lang/en/plugin.php +++ b/lang/en/plugin.php @@ -37,7 +37,7 @@ $string['noneinstalled'] = 'No plugins of this type are installed'; $string['notes'] = 'Notes'; $string['numtotal'] = 'Installed: {$a}'; $string['numdisabled'] = 'Disabled: {$a}'; -$string['numextension'] = 'Extensions: {$a}'; +$string['numextension'] = 'Contributions: {$a}'; $string['numupdatable'] = 'Updates available: {$a}'; $string['otherplugin'] = '{$a->component}'; $string['otherpluginversion'] = '{$a->component} ({$a->version})'; @@ -55,7 +55,7 @@ $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['sourceext'] = 'Contributed'; $string['sourcestd'] = 'Standard'; $string['status'] = 'Status'; $string['status_delete'] = 'To be deleted';