mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 13:02:07 +02:00
MDL-57429 badges: lang string deprecation for new email verify process
Deprecated those lang strings used in the old Persona login process.
This commit is contained in:
parent
091eaab0da
commit
80e8e0061e
@ -90,10 +90,6 @@ $string['backpackconnectionresendemail'] = 'Resend verification email';
|
||||
$string['backpackdetails'] = 'Backpack settings';
|
||||
$string['backpackemail'] = 'Email address';
|
||||
$string['backpackemail_help'] = 'The email address associated with your backpack. While you are connected, any badges earned on this site will be associated with this email address.';
|
||||
$string['personaconnection'] = 'Sign in with your email';
|
||||
$string['personaconnection_help'] = 'Persona is a system for identifying yourself across the web, using an email address that you own. The Open Badges backpack uses Persona as a login system, so to be able to connect to a backpack you will need a Persona account.
|
||||
|
||||
For more information about Persona visit <a href="https://login.persona.org/about">https://login.persona.org/about</a>.';
|
||||
$string['backpackemailverificationpending'] = 'Verification pending';
|
||||
$string['backpackemailverifyemailbody'] = 'Hi,
|
||||
|
||||
@ -235,11 +231,9 @@ $string['enablebadges'] = 'Enable badges';
|
||||
$string['error:backpackdatainvalid'] = 'The data return from the backpack was invalid.';
|
||||
$string['error:backpackemailnotfound'] = 'The email \'{$a}\' is not associated with a backpack. You need to <a href="http://backpack.openbadges.org">create a backpack</a> for that account or sign in with another email address.';
|
||||
$string['error:backpacknotavailable'] = 'Your site is not accessible from the Internet, so any badges issued from this site cannot be verified by external backpack services.';
|
||||
$string['error:backpackloginfailed'] = 'You could not be connected to an external backpack for the following reason: {$a}';
|
||||
$string['error:backpackproblem'] = 'There was a problem connecting to your backpack service provider. Please try again later.';
|
||||
$string['error:badgeawardnotfound'] = 'Cannot verify this awarded badge. This badge may have been revoked.';
|
||||
$string['error:badgenotfound'] = 'Badge not found';
|
||||
$string['error:badjson'] = 'The connection attempt returned invalid data.';
|
||||
$string['error:cannotact'] = 'Cannot activate the badge. ';
|
||||
$string['error:cannotawardbadge'] = 'Cannot award badge to a user.';
|
||||
$string['error:cannotrevokebadge'] = 'Cannot revoke badge from a user.';
|
||||
@ -254,7 +248,6 @@ $string['error:invalidcriteriatype'] = 'Invalid criteria type.';
|
||||
$string['error:invalidexpiredate'] = 'Expiry date has to be in the future.';
|
||||
$string['error:invalidexpireperiod'] = 'Expiry period cannot be negative or equal 0.';
|
||||
$string['error:noactivities'] = 'There are no activities with completion criteria enabled in this course.';
|
||||
$string['error:noassertion'] = 'No assertion was returned by Persona. You may have closed the dialog before completing the login process.';
|
||||
$string['error:nocourses'] = 'Course completion is not enabled for any of the courses in this site, so none can be displayed. Course completion may be enabled in the course settings.';
|
||||
$string['error:nogroups'] = '<p>There are no public collections of badges available in your backpack. </p>
|
||||
<p>Only public collections are shown, <a href="http://backpack.openbadges.org">visit your backpack</a> to create some public collections.</p>';
|
||||
@ -267,7 +260,6 @@ $string['error:nosuchrole'] = 'Warning: This role is no longer available.';
|
||||
$string['error:nosuchuser'] = 'User with this email address does not have an account with the current backpack provider.';
|
||||
$string['error:notifycoursedate'] = 'Warning: Badges associated with course and activity completions will not be issued until the course start date.';
|
||||
$string['error:parameter'] = 'Warning: At least one parameter should be selected to ensure correct badge issuing workflow.';
|
||||
$string['error:personaneedsjs'] = 'Currently, Javascript is required to connect to your backpack. If you can, enable Javascript and reload the page.';
|
||||
$string['error:requesttimeout'] = 'The connection request timed out before it could complete.';
|
||||
$string['error:requesterror'] = 'The connection request failed (error code {$a}).';
|
||||
$string['error:save'] = 'Cannot save the badge.';
|
||||
@ -391,7 +383,6 @@ $string['selectgroup_end'] = 'Only public collections are shown, <a href="http:/
|
||||
$string['selectgroup_start'] = 'Select collections from your backpack to display on this site:';
|
||||
$string['selecting'] = 'With selected badges...';
|
||||
$string['setup'] = 'Set up connection';
|
||||
$string['signinwithyouremail'] = 'Sign in with your email';
|
||||
$string['sitebadges'] = 'Site badges';
|
||||
$string['sitebadges_help'] = 'Site badges can only be awarded to users for site-related activities. These include completing a set of courses or parts of user profiles. Site badges can also be issued manually by one user to another.
|
||||
|
||||
@ -430,3 +421,13 @@ $string['visible'] = 'Visible';
|
||||
$string['warnexpired'] = ' (This badge has expired!)';
|
||||
$string['year'] = 'Year(s)';
|
||||
|
||||
// Deprecated since Moodle 3.3.
|
||||
$string['personaconnection'] = 'Sign in with your email';
|
||||
$string['personaconnection_help'] = 'Persona is a system for identifying yourself across the web, using an email address that you own. The Open Badges backpack uses Persona as a login system, so to be able to connect to a backpack you will need a Persona account.
|
||||
|
||||
For more information about Persona visit <a href="https://login.persona.org/about">https://login.persona.org/about</a>.';
|
||||
$string['error:backpackloginfailed'] = 'You could not be connected to an external backpack for the following reason: {$a}';
|
||||
$string['error:badjson'] = 'The connection attempt returned invalid data.';
|
||||
$string['error:noassertion'] = 'No assertion was returned by Persona. You may have closed the dialog before completing the login process.';
|
||||
$string['error:personaneedsjs'] = 'Currently, Javascript is required to connect to your backpack. If you can, enable Javascript and reload the page.';
|
||||
$string['signinwithyouremail'] = 'Sign in with your email';
|
||||
|
@ -61,4 +61,11 @@ timesent,core_message
|
||||
userssearchresults,core_message
|
||||
loginpasswordautocomplete,core_admin
|
||||
loginpasswordautocomplete_help,core_admin
|
||||
deletecomment,core
|
||||
deletecomment,core
|
||||
personaconnection,core_badges
|
||||
personaconnection_help,core_badges
|
||||
error:noassertion,core_badges
|
||||
error:personaneedsjs,core_badges
|
||||
error:badjson,core_badges
|
||||
error:backpackloginfailed,core_badges
|
||||
signinwithyouremail,core_badges
|
Loading…
x
Reference in New Issue
Block a user