-
Notifications
You must be signed in to change notification settings - Fork 992
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing commas to multiple values in trans blocks
- Loading branch information
Showing
26 changed files
with
104 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,5 +17,5 @@ | |
{% block content %} | ||
<p>{% trans username=username %}Your PyPI account <strong>{{ username }}</strong> has been deleted.{% endtrans %}</p> | ||
|
||
<p>{% trans href='mailto:[email protected]' email_address='[email protected]' %}If you did not make this change, you can email <a href="{{ href }}">{{ email_address }}</a> to communicate with the PyPI administrators.{% endtrans %}</p> | ||
<p>{% trans href='mailto:[email protected]', email_address='[email protected]' %}If you did not make this change, you can email <a href="{{ href }}">{{ email_address }}</a> to communicate with the PyPI administrators.{% endtrans %}</p> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
{% extends "email/_base/body.txt" %} | ||
|
||
{% block content %} | ||
{% trans trimmed username=username email_address='[email protected]' %} | ||
{% trans trimmed username=username, email_address='[email protected]' %} | ||
Your PyPI account '{{ username }}' has been deleted. | ||
|
||
If you did not make this change, you can email {{ email_address }} to communicate | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
</ul> | ||
</p> | ||
|
||
<p>{% trans href='mailto:[email protected]' email_address='[email protected]' %}If this was a mistake, you can email <a href="{{ href }}">{{ email_address }}</a> to communicate with the PyPI administrators.{% endtrans %}</p> | ||
<p>{% trans href='mailto:[email protected]', email_address='[email protected]' %}If this was a mistake, you can email <a href="{{ href }}">{{ email_address }}</a> to communicate with the PyPI administrators.{% endtrans %}</p> | ||
{% endblock %} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,5 +17,5 @@ | |
{% block content %} | ||
<p>{% trans username=username %}Someone, perhaps you, has changed the password for your PyPI account <strong>{{ username }}</strong>.{% endtrans %}</p> | ||
|
||
<p>{% trans href='mailto:[email protected]' email_address='[email protected]' %}If you did not make this change, you can email <a href="{{ href }}">{{ email_address }}</a> to communicate with the PyPI administrators.{% endtrans %}</p> | ||
<p>{% trans href='mailto:[email protected]', email_address='[email protected]' %}If you did not make this change, you can email <a href="{{ href }}">{{ email_address }}</a> to communicate with the PyPI administrators.{% endtrans %}</p> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ <h3>{% trans %}What?{% endtrans %}</h3> | |
|
||
<h3>{% trans %}What should I do?{% endtrans %}</h3> | ||
<p> | ||
{% trans trimmed reset_pw_url=request.route_url('accounts.request-password-reset', _host=request.registry.settings.get('warehouse.domain')) have_i_been_pwned_url='https://haveibeenpwned.com/' %} | ||
{% trans trimmed reset_pw_url=request.route_url('accounts.request-password-reset', _host=request.registry.settings.get('warehouse.domain')), have_i_been_pwned_url='https://haveibeenpwned.com/' %} | ||
To regain access to your account, | ||
<a href="{{ reset_pw_url }}">reset your password</a> | ||
on PyPI. We also recommend that you go to | ||
|
@@ -52,7 +52,7 @@ <h3>{% trans %}How do you know this?{% endtrans %}</h3> | |
{% endtrans %} | ||
</p> | ||
<p> | ||
{% trans trimmed faq_url=request.help_url(_anchor='compromised-password') email_href='mailto:[email protected]' email_address='[email protected]' %} | ||
{% trans trimmed faq_url=request.help_url(_anchor='compromised-password'), email_href='mailto:[email protected]', email_address='[email protected]' %} | ||
For more information, see our | ||
<a href="{{ faq_url }}">FAQ</a>. For help, | ||
you can email <a href="{{ email_href }}">{{ email_address }}</a> to communicate with | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ against PyPI and its users.{% endtrans %} | |
|
||
# {% trans %}What should I do?{% endtrans %} | ||
|
||
{% trans trimmed reset_pw_url=request.route_url('accounts.request-password-reset', _host=request.registry.settings.get('warehouse.domain')) have_i_been_pwned_url='https://haveibeenpwned.com/' %} | ||
{% trans trimmed reset_pw_url=request.route_url('accounts.request-password-reset', _host=request.registry.settings.get('warehouse.domain')), have_i_been_pwned_url='https://haveibeenpwned.com/' %} | ||
To regain access to your account, reset your password on PyPI | ||
({{ reset_pw_url }}). We also recommend that you go to | ||
HaveIBeenPwned ({{ have_i_been_pwned_url }}) and check your other passwords and get | ||
|
@@ -43,6 +43,6 @@ updating your password, we generate a SHA1 hash of your password and use the fir | |
characters of the hash to decide if the password is compromised. The plaintext password | ||
is never stored by PyPI or sent to HaveIBeenPwned.{% endtrans %} | ||
|
||
{% trans help_url=request.help_url(_anchor='compromised-password') email_address='[email protected]' %}For more information, see {{ help_url }}. For | ||
{% trans help_url=request.help_url(_anchor='compromised-password'), email_address='[email protected]' %}For more information, see {{ help_url }}. For | ||
help, you can email {{ email_address }} to communicate with the PyPI administrators.{% endtrans %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
|
||
|
||
{% block content %} | ||
<p>{% trans username=username old_email=old_email new_email=new_email %}The primary email for your PyPI account <strong>{{ username }}</strong> has been changed from <code>{{ old_email }}</code> to <code>{{ new_email }}</code>{% endtrans %}</p> | ||
<p>{% trans username=username, old_email=old_email, new_email=new_email %}The primary email for your PyPI account <strong>{{ username }}</strong> has been changed from <code>{{ old_email }}</code> to <code>{{ new_email }}</code>{% endtrans %}</p> | ||
|
||
<p>{% trans href='mailto:[email protected]' email_address='[email protected]' %}If you did not make this change, you can email <a href="{{ href }}">{{ email_address }}</a> to communicate with the PyPI administrators.{% endtrans %}</p> | ||
<p>{% trans href='mailto:[email protected]', email_address='[email protected]' %}If you did not make this change, you can email <a href="{{ href }}">{{ email_address }}</a> to communicate with the PyPI administrators.{% endtrans %}</p> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.