Skip to content

Commit a362818

Browse files
authored
Merge pull request EGCETSII#67 from Villanueva-del-Trabuco-EGC/trad-ing/framigdom
Traducción inglés de booth.html
2 parents b1ea3b2 + 2751e6b commit a362818

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

decide/booth/locale/en_US/LC_MESSAGES/django.po

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ msgstr "Decide"
2222
msgid "logout"
2323
msgstr "Logout"
2424

25+
msgid "logoutFrom"
26+
msgstr "Logout from "
27+
28+
msgid "or"
29+
msgstr "------or------"
30+
2531
msgid "vID"
2632
msgstr "ID of Vote"
2733

@@ -34,6 +40,9 @@ msgstr "Login"
3440
msgid "LoginGitHub"
3541
msgstr "Login with GitHub"
3642

43+
msgid "LoginTwitter"
44+
msgstr "Login with Twitter"
45+
3746
msgid "LoginFacebook"
3847
msgstr "Login with Facebook"
3948

decide/booth/templates/booth/booth.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ <h3>{% trans "vName" %}: [[ voting.name ]]</h3>
5555
<!--LOGIN CON GITHUB-->
5656

5757
{% if not user.is_authenticated and not user.is_staff %}
58-
<h2>------or------</h2>
58+
<h2>{% trans "or" %}</h2>
5959
<a id='githubButton' v-if="signup" href="{% url 'social:begin' 'github' %}?next={{ request.path }}" class="btn btn-secondary">
6060
<span>{% trans "LoginGitHub" %}</span>
6161
</a>
6262

6363
<a id='twitterButton' v-if="signup" href="{% url 'social:begin' 'twitter' %}?next={{ request.path }}" class="btn btn-secondary">
64-
<span>Login with Twitter</span>
64+
<span>{% trans "LoginTwitter" %}</span>
6565
</a>
6666

6767
{% elif not user.is_staff %}
@@ -70,7 +70,7 @@ <h2>------or------</h2>
7070
{% trans "vote_with" %} {{user.social_auth.get.provider}}
7171
</b-button>
7272
<a id='logoutButton' href="/booth/logout" v-if="signup" class="btn btn-danger">
73-
<span>Logout from {{user.social_auth.get.provider}}</span>
73+
<span>{% trans "logoutFrom" %}{{user.social_auth.get.provider}}</span>
7474
</a>
7575
{% endif %}
7676

0 commit comments

Comments
 (0)