Merge pull request #22804 from mahyard/master
Delete extra parentheses which prevented a message from being extracted
This commit is contained in:
@@ -36,11 +36,11 @@ from openedx.core.djangolib.markup import HTML, Text
|
|||||||
<div class="status submission-error">
|
<div class="status submission-error">
|
||||||
<h4 class="message-title">${_("Invalid Password Reset Link")}</h4>
|
<h4 class="message-title">${_("Invalid Password Reset Link")}</h4>
|
||||||
<ul class="message-copy">
|
<ul class="message-copy">
|
||||||
${Text(_((
|
${Text(_(
|
||||||
"This password reset link is invalid. It may have been used already. "
|
"This password reset link is invalid. It may have been used already. "
|
||||||
"To reset your password, go to the {start_link}sign-in{end_link} page and "
|
"To reset your password, go to the {start_link}sign-in{end_link} page and "
|
||||||
"select {start_strong}Forgot password{end_strong}."
|
"select {start_strong}Forgot password{end_strong}."
|
||||||
))).format(
|
)).format(
|
||||||
start_link=HTML('<a href="/login">'),
|
start_link=HTML('<a href="/login">'),
|
||||||
end_link=HTML('</a>'),
|
end_link=HTML('</a>'),
|
||||||
start_strong=HTML('<strong>'),
|
start_strong=HTML('<strong>'),
|
||||||
|
|||||||
Reference in New Issue
Block a user