Skip to content

Commit

Permalink
Merge branch 'wip-MDL-60108-master' of git://github.com/marinaglancy/…
Browse files Browse the repository at this point in the history
…moodle
  • Loading branch information
David Monllao committed Oct 19, 2017
2 parents c1c7cb9 + 1095afa commit b6b299d
Show file tree
Hide file tree
Showing 15 changed files with 365 additions and 115 deletions.
4 changes: 4 additions & 0 deletions admin/index.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -699,6 +699,7 @@
if (during_initial_install()) { if (during_initial_install()) {
set_config('rolesactive', 1); // after this, during_initial_install will return false. set_config('rolesactive', 1); // after this, during_initial_install will return false.
set_config('adminsetuppending', 1); set_config('adminsetuppending', 1);
set_config('registrationpending', 1); // Remind to register site after all other setup is finished.
// we need this redirect to setup proper session // we need this redirect to setup proper session
upgrade_finished("index.php?sessionstarted=1&lang=$CFG->lang"); upgrade_finished("index.php?sessionstarted=1&lang=$CFG->lang");
} }
Expand Down Expand Up @@ -814,6 +815,9 @@
} }
} }


// If site registration needs updating, redirect.
\core\hub\registration::registration_reminder('/admin/index.php');

// Everything should now be set up, and the user is an admin // Everything should now be set up, and the user is an admin


// Print default admin page with notifications. // Print default admin page with notifications.
Expand Down
6 changes: 4 additions & 2 deletions admin/registration/confirmregistration.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@
echo $OUTPUT->notification(get_string('registrationconfirmedon', 'hub'), 'notifysuccess'); echo $OUTPUT->notification(get_string('registrationconfirmedon', 'hub'), 'notifysuccess');


// Display continue button. // Display continue button.
$registrationpage = new moodle_url('/admin/registration/index.php'); $returnurl = !empty($SESSION->registrationredirect) ? clean_param($SESSION->registrationredirect, PARAM_LOCALURL) : null;
$continuebutton = $OUTPUT->render(new single_button($registrationpage, get_string('continue'))); unset($SESSION->registrationredirect);
$continueurl = new moodle_url($returnurl ?: '/admin/registration/index.php');
$continuebutton = $OUTPUT->render(new single_button($continueurl, get_string('continue')));
$continuebutton = html_writer::tag('div', $continuebutton, array('class' => 'mdl-align')); $continuebutton = html_writer::tag('div', $continuebutton, array('class' => 'mdl-align'));
echo $continuebutton; echo $continuebutton;


Expand Down
22 changes: 18 additions & 4 deletions admin/registration/index.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -53,17 +53,25 @@
exit; exit;
} }


$isinitialregistration = \core\hub\registration::show_after_install(true);
if (!$returnurl = optional_param('returnurl', null, PARAM_LOCALURL)) {
$returnurl = $isinitialregistration ? '/admin/index.php' : '/admin/registration/index.php';
}

$siteregistrationform = new \core\hub\site_registration_form(); $siteregistrationform = new \core\hub\site_registration_form();
$siteregistrationform->set_data(['returnurl' => $returnurl]);
if ($fromform = $siteregistrationform->get_data()) { if ($fromform = $siteregistrationform->get_data()) {


// Save the settings. // Save the settings.
\core\hub\registration::save_site_info($fromform); \core\hub\registration::save_site_info($fromform);


if (\core\hub\registration::is_registered()) { if (\core\hub\registration::is_registered()) {
\core\hub\registration::update_manual(); if (\core\hub\registration::update_manual()) {
redirect(new moodle_url('/admin/registration/index.php')); redirect(new moodle_url($returnurl));
}
redirect(new moodle_url('/admin/registration/index.php', ['returnurl' => $returnurl]));
} else { } else {
\core\hub\registration::register(); \core\hub\registration::register($returnurl);
// This method will redirect away. // This method will redirect away.
} }


Expand All @@ -80,20 +88,24 @@
$lastupdated = \core\hub\registration::get_last_updated(); $lastupdated = \core\hub\registration::get_last_updated();
if ($lastupdated == 0) { if ($lastupdated == 0) {
$registrationmessage = get_string('pleaserefreshregistrationunknown', 'admin'); $registrationmessage = get_string('pleaserefreshregistrationunknown', 'admin');
} else if (\core\hub\registration::get_new_registration_fields()) {
$registrationmessage = get_string('pleaserefreshregistrationnewdata', 'admin');
} else { } else {
$lastupdated = userdate($lastupdated, get_string('strftimedate', 'langconfig')); $lastupdated = userdate($lastupdated, get_string('strftimedate', 'langconfig'));
$registrationmessage = get_string('pleaserefreshregistration', 'admin', $lastupdated); $registrationmessage = get_string('pleaserefreshregistration', 'admin', $lastupdated);
$notificationtype = \core\output\notification::NOTIFY_INFO; $notificationtype = \core\output\notification::NOTIFY_INFO;
} }
echo $OUTPUT->notification($registrationmessage, $notificationtype); echo $OUTPUT->notification($registrationmessage, $notificationtype);
} else { } else if (!$isinitialregistration) {
$registrationmessage = get_string('registrationwarning', 'admin'); $registrationmessage = get_string('registrationwarning', 'admin');
echo $OUTPUT->notification($registrationmessage, $notificationtype); echo $OUTPUT->notification($registrationmessage, $notificationtype);
} }


// Heading. // Heading.
if (\core\hub\registration::is_registered()) { if (\core\hub\registration::is_registered()) {
echo $OUTPUT->heading(get_string('updatesite', 'hub', 'Moodle.net')); echo $OUTPUT->heading(get_string('updatesite', 'hub', 'Moodle.net'));
} else if ($isinitialregistration) {
echo $OUTPUT->heading(get_string('completeregistration', 'hub'));
} else { } else {
echo $OUTPUT->heading(get_string('registerwithmoodleorg', 'admin')); echo $OUTPUT->heading(get_string('registerwithmoodleorg', 'admin'));
} }
Expand All @@ -107,5 +119,7 @@
// Unregister link. // Unregister link.
$unregisterhuburl = new moodle_url("/admin/registration/index.php", ['unregistration' => 1]); $unregisterhuburl = new moodle_url("/admin/registration/index.php", ['unregistration' => 1]);
echo html_writer::div(html_writer::link($unregisterhuburl, get_string('unregister', 'hub')), 'unregister'); echo html_writer::div(html_writer::link($unregisterhuburl, get_string('unregister', 'hub')), 'unregister');
} else if ($isinitialregistration) {
echo html_writer::div(html_writer::link(new moodle_url($returnurl), get_string('skipregistration', 'hub')), 'skipregistration');
} }
echo $OUTPUT->footer(); echo $OUTPUT->footer();
10 changes: 1 addition & 9 deletions admin/registration/renderer.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -36,14 +36,6 @@ class core_register_renderer extends plugin_renderer_base {
* @return string * @return string
*/ */
public function moodleorg_registration_message() { public function moodleorg_registration_message() {
$moodleorgstatslink = html_writer::link('http://moodle.net/stats', return format_text(get_string('registermoodlenet', 'admin'), FORMAT_MARKDOWN, ['noclean' => true]);
get_string('statsmoodleorg', 'admin'),
array('target' => '_blank'));

$moodleorgregmsg = get_string('registermoodleorg', 'admin');
$items = array(get_string('registermoodleorgli1', 'admin'),
get_string('registermoodleorgli2', 'admin', $moodleorgstatslink));
$moodleorgregmsg .= html_writer::alist($items);
return $moodleorgregmsg;
} }
} }
3 changes: 3 additions & 0 deletions admin/search.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
redirect(new moodle_url('/admin/index.php')); redirect(new moodle_url('/admin/index.php'));
} }


// If site registration needs updating, redirect.
\core\hub\registration::registration_reminder('/admin/search.php');

admin_externalpage_setup('search', '', array('query' => $query)); // now hidden page admin_externalpage_setup('search', '', array('query' => $query)); // now hidden page


$adminroot = admin_get_root(); // need all settings here $adminroot = admin_get_root(); // need all settings here
Expand Down
3 changes: 3 additions & 0 deletions index.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@
redirect($CFG->wwwroot .'/'. $CFG->admin .'/index.php'); redirect($CFG->wwwroot .'/'. $CFG->admin .'/index.php');
} }


// If site registration needs updating, redirect.
\core\hub\registration::registration_reminder('/index.php');

if (get_home_page() != HOMEPAGE_SITE) { if (get_home_page() != HOMEPAGE_SITE) {
// Redirect logged-in users to My Moodle overview if required. // Redirect logged-in users to My Moodle overview if required.
$redirect = optional_param('redirect', 1, PARAM_BOOL); $redirect = optional_param('redirect', 1, PARAM_BOOL);
Expand Down
10 changes: 10 additions & 0 deletions lang/en/admin.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -844,6 +844,7 @@
$string['phpfloatproblem'] = 'Detected unexpected problem in handling of PHP float numbers - {$a}'; $string['phpfloatproblem'] = 'Detected unexpected problem in handling of PHP float numbers - {$a}';
$string['pleaserefreshregistration'] = 'Your site is registered. Registration last updated {$a}.<br />The \'Site registration\' scheduled task keeps your registration up to date. You can also manually update your registration at any time.'; $string['pleaserefreshregistration'] = 'Your site is registered. Registration last updated {$a}.<br />The \'Site registration\' scheduled task keeps your registration up to date. You can also manually update your registration at any time.';
$string['pleaserefreshregistrationunknown'] = 'Your site has been registered but the registration date is unknown. Please update your registration using the \'Update registration\' button or ensure that the \'Site registration\' scheduled task is enabled so your registration is automatically updated.'; $string['pleaserefreshregistrationunknown'] = 'Your site has been registered but the registration date is unknown. Please update your registration using the \'Update registration\' button or ensure that the \'Site registration\' scheduled task is enabled so your registration is automatically updated.';
$string['pleaserefreshregistrationnewdata'] = 'Registration information has been changed. Please confirm it using the \'Update registration\' button.';
$string['plugin'] = 'Plugin'; $string['plugin'] = 'Plugin';
$string['plugins'] = 'Plugins'; $string['plugins'] = 'Plugins';
$string['pluginscheck'] = 'Plugin dependencies check'; $string['pluginscheck'] = 'Plugin dependencies check';
Expand Down Expand Up @@ -939,6 +940,15 @@
$string['recaptchaprivatekey'] = 'ReCAPTCHA secret key'; $string['recaptchaprivatekey'] = 'ReCAPTCHA secret key';
$string['recaptchapublickey'] = 'ReCAPTCHA site key'; $string['recaptchapublickey'] = 'ReCAPTCHA site key';
$string['register'] = 'Register your site'; $string['register'] = 'Register your site';
$string['registermoodlenet'] = 'We\'d love to stay in touch for important things for your Moodle site!
By registering,
* You are contributing to our collective knowledge about the users of Moodle which helps us improve Moodle and all our community services
* You’ll be one of the first to find out about important notifications such as security alerts and new Moodle releases.
* You can access and activate mobile push notifications from your Moodle site through our free [Moodle Mobile app](https://download.moodle.org/mobile/)
* Optionally, your site can be included as a proud member and supporter of the Moodle community on the [list of registered sites](https://moodle.net/stats).
';
$string['registermoodleorg'] = 'When you register your site'; $string['registermoodleorg'] = 'When you register your site';
$string['registermoodleorgli1'] = 'You are added to a low-volume mailing list for important notifications such as security alerts and new releases of Moodle.'; $string['registermoodleorgli1'] = 'You are added to a low-volume mailing list for important notifications such as security alerts and new releases of Moodle.';
$string['registermoodleorgli2'] = 'Statistics about your site will be added to the {$a} of the worldwide Moodle community.'; $string['registermoodleorgli2'] = 'Statistics about your site will be added to the {$a} of the worldwide Moodle community.';
Expand Down
2 changes: 2 additions & 0 deletions lang/en/deprecated.txt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -154,3 +154,5 @@ moodleorghubname,core_admin
hubs,core_admin hubs,core_admin
quickdownloadcalendar,core_calendar quickdownloadcalendar,core_calendar
ical,core_calendar ical,core_calendar
privacy,core_hub
privacy_help,core_hub
39 changes: 24 additions & 15 deletions lang/en/hub.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
$string['audienceadmins'] = 'Moodle administrators'; $string['audienceadmins'] = 'Moodle administrators';
$string['badgesnumber'] = 'Number of badges ({$a})'; $string['badgesnumber'] = 'Number of badges ({$a})';
$string['communityremoved'] = 'That course link has been removed from your list'; $string['communityremoved'] = 'That course link has been removed from your list';
$string['completeregistration'] = 'Complete registration with Moodle.net';
$string['confirmregistration'] = 'Confirm registration'; $string['confirmregistration'] = 'Confirm registration';
$string['contributornames'] = 'Other contributors'; $string['contributornames'] = 'Other contributors';
$string['contributornames_help'] = 'You can use this field to list the names of anyone else who contributed to this course.'; $string['contributornames_help'] = 'You can use this field to list the names of anyone else who contributed to this course.';
Expand Down Expand Up @@ -114,8 +115,6 @@
$string['postaladdress_help'] = 'Postal address of this site, or of the entity represented by this site.'; $string['postaladdress_help'] = 'Postal address of this site, or of the entity represented by this site.';
$string['postsnumber'] = 'Number of posts ({$a})'; $string['postsnumber'] = 'Number of posts ({$a})';
$string['previousregistrationdeleted'] = 'The previous registration has been deleted from {$a}. You can restart the registration process. Thank you.'; $string['previousregistrationdeleted'] = 'The previous registration has been deleted from {$a}. You can restart the registration process. Thank you.';
$string['privacy'] = 'Privacy';
$string['privacy_help'] = 'The hub may want to display a list of registered sites. If it does then you can choose whether or not you want to appear on that list.';
$string['publicationinfo'] = 'Course publication information'; $string['publicationinfo'] = 'Course publication information';
$string['publishcourse'] = 'Publish {$a}'; $string['publishcourse'] = 'Publish {$a}';
$string['publishcourseon'] = 'Publish on {$a}'; $string['publishcourseon'] = 'Publish on {$a}';
Expand Down Expand Up @@ -152,35 +151,42 @@
$string['sharepublication_help'] = 'Uploading this course to a community server will enable people to download it and install it on their own Moodle sites.'; $string['sharepublication_help'] = 'Uploading this course to a community server will enable people to download it and install it on their own Moodle sites.';
$string['siteadmin'] = 'Administrator'; $string['siteadmin'] = 'Administrator';
$string['siteadmin_help'] = 'The full name of the site administrator.'; $string['siteadmin_help'] = 'The full name of the site administrator.';
$string['sitecommnews'] = 'Updates about Moodle news and features';
$string['sitecommnews_help'] = 'You have the option of subscribing to our low volume email list including a newsletter about happenings in the Moodle community. ';
$string['sitecommnewsno'] = 'No, I do not want to receive any email from Moodle HQ';
$string['sitecommnewsyes'] = 'Yes please, include me in Moodle’s regular e-newsletter updates';
$string['sitecountry'] = 'Country'; $string['sitecountry'] = 'Country';
$string['sitecountry_help'] = 'The country your organisation is in.'; $string['sitecountry_help'] = 'The country your organisation or institution is located in.';
$string['sitedesc'] = 'Description'; $string['sitedesc'] = 'Description';
$string['sitedesc_help'] = 'This description of your site may be shown in the site listing. Please use plain text only.'; $string['sitedesc_help'] = 'Provide some information about how you are using Moodle.';
$string['sitegeolocation'] = 'Geolocation'; $string['sitegeolocation'] = 'Geolocation';
$string['sitegeolocation_help'] = 'In future we may provide location-based searching in the hubs. If you want to specify the location for your site use a latitude/longitude value here (eg: -31.947884,115.871285). One way to find this is to use Google Maps.'; $string['sitegeolocation_help'] = 'In future we may provide location-based searching in the hubs. If you want to specify the location for your site use a latitude/longitude value here (eg: -31.947884,115.871285). One way to find this is to use Google Maps.';
$string['siteemail'] = 'Email address'; $string['siteemail'] = 'Admin email address';
$string['siteemail_help'] = 'You need to provide an email address so the hub administrator can contact you if necessary. This will not be used for any other purpose. It is recommended to enter a email address related to a position (example: sitemanager@example.com) and not directly to a person.'; $string['siteemail_help'] = 'An email address is necessary so that Moodle HQ can contact you if required. It may also be used for other purposes as you allow below. We recommend a generic email address related to a position (eg.: sitemanager@example.com), not a personal address.';
$string['sitelang'] = 'Language'; $string['sitelang'] = 'Language';
$string['sitelang_help'] = 'Your site language will be displayed on the site listing.'; $string['sitelang_help'] = 'What is the main language used on your Moodle site?';
$string['sitename'] = 'Name'; $string['sitename'] = 'Name';
$string['sitename_help'] = 'The name of the site will be shown on the site listing if the hub allows that.'; $string['sitename_help'] = 'The name of the site will be shown on the site listing if the hub allows that.';
$string['sitephone'] = 'Phone'; $string['sitephone'] = 'Phone';
$string['sitephone_help'] = 'Your phone number will only be seen by the hub administrator.'; $string['sitephone_help'] = 'Your phone number will only be seen by the hub administrator.';
$string['siteprivacy'] = 'Privacy'; $string['siteprivacy'] = 'Site listing';
$string['siteprivacynotpublished'] = 'Please do not publish this site'; $string['siteprivacy_help'] = 'You can choose to have your site listed publicly in the list of registered sites, with or without a link to your site.';
$string['siteprivacypublished'] = 'Publish the site name only'; $string['siteprivacynotpublished'] = 'Do not list my site';
$string['siteprivacylinked'] = 'Publish the site name with a link'; $string['siteprivacypublished'] = 'Only display my site name';
$string['siteregistrationcontact'] = 'Contact form'; $string['siteprivacylinked'] = 'Display my site name with the link';
$string['siteregistrationcontact_help'] = 'If you allow it, other people may be able to contact you via a contact form on the hub. They will never be able to see your email address.'; $string['siteregistrationcontact'] = 'Display contact form';
$string['siteregistrationemail'] = 'Email notifications'; $string['siteregistrationcontact_help'] = 'If you allow it, other people in our Moodle community (who need a login account) can contact you via a form on our Moodle community site. However, they will never be able to see your email address.';
$string['siteregistrationemail_help'] = 'If you enable this the hub administrator may email you to inform you of important news like security issues.'; $string['siteregistrationemail'] = 'Notifications about important security and technical issues.';
$string['siteregistrationemail_help'] = 'You have the option of subscribing to our low volume email list for important news (on security issues or new releases).';
$string['siteregistrationupdated'] = 'Site registration updated'; $string['siteregistrationupdated'] = 'Site registration updated';
$string['siterelease'] = 'Moodle release'; $string['siterelease'] = 'Moodle release';
$string['sitereleasenum'] = 'Moodle release ({$a})';
$string['siterelease_help'] = 'Moodle release number of this site.'; $string['siterelease_help'] = 'Moodle release number of this site.';
$string['siteurl'] = 'Site URL'; $string['siteurl'] = 'Site URL';
$string['siteurl_help'] = 'The URL is the address of this site. If privacy settings allow people to see site addresses then this is the URL that will be used.'; $string['siteurl_help'] = 'The URL is the address of this site. If privacy settings allow people to see site addresses then this is the URL that will be used.';
$string['siteversion'] = 'Moodle version'; $string['siteversion'] = 'Moodle version';
$string['siteversion_help'] = 'The Moodle version of this site.'; $string['siteversion_help'] = 'The Moodle version of this site.';
$string['skipregistration'] = 'Skip';
$string['subject'] = 'Subject'; $string['subject'] = 'Subject';
$string['subject_help'] = 'Select the main subject area which the course covers.'; $string['subject_help'] = 'Select the main subject area which the course covers.';
$string['status'] = 'Listing status'; $string['status'] = 'Listing status';
Expand All @@ -200,6 +206,7 @@
$string['update'] = 'Update'; $string['update'] = 'Update';
$string['updatesite'] = 'Update registration on {$a}'; $string['updatesite'] = 'Update registration on {$a}';
$string['updatestatus'] = 'Check it now.'; $string['updatestatus'] = 'Check it now.';
$string['usedifferentemail'] = 'Use different email';
$string['urlalreadyregistered'] = 'Your site seems to be already registered on Moodle.net, which means something has gone wrong. Please contact the Moodle.net administrator to reset your registration so you can try again.'; $string['urlalreadyregistered'] = 'Your site seems to be already registered on Moodle.net, which means something has gone wrong. Please contact the Moodle.net administrator to reset your registration so you can try again.';
$string['usersnumber'] = 'Number of users ({$a})'; $string['usersnumber'] = 'Number of users ({$a})';
$string['wrongtoken'] = 'The registration failed for some unknown reason (network?). Please try again.'; $string['wrongtoken'] = 'The registration failed for some unknown reason (network?). Please try again.';
Expand Down Expand Up @@ -240,6 +247,8 @@
$string['notregisteredonmoodleorg'] = 'Your administrator needs to register this site with moodle.org.'; $string['notregisteredonmoodleorg'] = 'Your administrator needs to register this site with moodle.org.';
$string['orenterprivatehub'] = 'Alternatively, enter a private hub URL:'; $string['orenterprivatehub'] = 'Alternatively, enter a private hub URL:';
$string['prioritise'] = 'Prioritise'; $string['prioritise'] = 'Prioritise';
$string['privacy'] = 'Privacy';
$string['privacy_help'] = 'The hub may want to display a list of registered sites. If it does then you can choose whether or not you want to appear on that list.';
$string['private'] = 'Private'; $string['private'] = 'Private';
$string['privatehuburl'] = 'Private hub URL'; $string['privatehuburl'] = 'Private hub URL';
$string['publichub'] = 'Public hub'; $string['publichub'] = 'Public hub';
Expand Down
8 changes: 4 additions & 4 deletions lang/en/moodle.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1567,8 +1567,8 @@
$string['refreshingevents'] = 'Refreshing events'; $string['refreshingevents'] = 'Refreshing events';
$string['registration'] = 'Moodle registration'; $string['registration'] = 'Moodle registration';
$string['registrationcontact'] = 'Contact from the public'; $string['registrationcontact'] = 'Contact from the public';
$string['registrationcontactno'] = 'No, I do not want a contact form in the site listing'; $string['registrationcontactno'] = 'No, I do not want to be contacted by other people';
$string['registrationcontactyes'] = 'Yes, provide a form for prospective Moodlers to contact me'; $string['registrationcontactyes'] = 'Yes, provide a form for other Moodlers to contact me';
$string['registrationemail'] = 'Email notifications'; $string['registrationemail'] = 'Email notifications';
$string['registrationinfo'] = '<p>This page allows you to register your Moodle site with moodle.org. Registration is free. $string['registrationinfo'] = '<p>This page allows you to register your Moodle site with moodle.org. Registration is free.
The main benefit of registering is that you will be added to a low-volume mailing list The main benefit of registering is that you will be added to a low-volume mailing list
Expand All @@ -1579,9 +1579,9 @@
<p>If you choose, you can allow your site name, country and URL to be added to the public list of Moodle Sites.</p> <p>If you choose, you can allow your site name, country and URL to be added to the public list of Moodle Sites.</p>
<p>All new registrations are verified manually before they are added to the list, but once you are added you can update your registration (and your entry on the public list) at any time by resubmitting this form.</p>'; <p>All new registrations are verified manually before they are added to the list, but once you are added you can update your registration (and your entry on the public list) at any time by resubmitting this form.</p>';
$string['registrationinfotitle'] = 'Registration information'; $string['registrationinfotitle'] = 'Registration information';
$string['registrationno'] = 'No, I do not want to receive email'; $string['registrationno'] = 'No, I do not want to receive any email from Moodle HQ';
$string['registrationsend'] = 'Send registration information to moodle.org'; $string['registrationsend'] = 'Send registration information to moodle.org';
$string['registrationyes'] = 'Yes, please notify me about important issues'; $string['registrationyes'] = 'Yes, notify me about important news (e.g. security issues or releases) ';
$string['reject'] = 'Reject'; $string['reject'] = 'Reject';
$string['rejectdots'] = 'Reject...'; $string['rejectdots'] = 'Reject...';
$string['reload'] = 'Reload'; $string['reload'] = 'Reload';
Expand Down
Loading

0 comments on commit b6b299d

Please sign in to comment.