Skip to content

Commit

Permalink
Simplify translation
Browse files Browse the repository at this point in the history
  • Loading branch information
SchrodingersGat committed Feb 10, 2024
1 parent 8f966b9 commit 5a57e1d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions InvenTree/templates/socialaccount/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@
{% block content %}
<h3>{% trans "Sign Up" %}</h3>

<p>{% blocktrans with provider_name=account.get_provider.name site_name=site.name %}You are about to use your {{provider_name}} account to login to
{{site_name}}.<br>As a final step, please complete the following form:{% endblocktrans %}</p>
<p>
{% blocktrans with provider_name=account.get_provider.name site_name=site.name %}
You are about to use your {{provider_name}} account to login to {{site_name}}.
{% endblocktrans %}
<br>
{% trans "As a final step, please complete the following form" %}:
</p>

<form class="signup" id="signup_form" method="post" action="{% url 'socialaccount_signup' %}">
{% csrf_token %}
Expand Down

0 comments on commit 5a57e1d

Please sign in to comment.