Discord button removed, css fix when 0 at category stat, messages recompiled
This commit is contained in:
parent
0f92cf3da1
commit
4a2504be73
|
@ -39,26 +39,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="ctf-block">
|
|
||||||
<div class="ctf-head">
|
|
||||||
<h3>{% trans "Connected accounts" %}</h3>
|
|
||||||
</div>
|
|
||||||
<div class="bloc-body">
|
|
||||||
<div class="d-flex">
|
|
||||||
{% if user.userprofileinfo.discord_id|length > 0 %}
|
|
||||||
<form action="{% url 'accounts:connections-disconnect-discord' %}" method='POST' class="form-inline p-2">
|
|
||||||
{%csrf_token%}
|
|
||||||
<button class="btn btn-dark" type="submit">{% trans "Disconnect Discord" %}</button>
|
|
||||||
</form>
|
|
||||||
{% else %}
|
|
||||||
<form action="{% url 'accounts:connections-connect-discord' %}" method='POST' class="form-inline p-2">
|
|
||||||
{%csrf_token%}
|
|
||||||
<button class="btn btn-dark" type="submit">{% trans "Connect Discord" %}</button>
|
|
||||||
</form>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="d-none d-md-block col-10 col-md-3 right-sidebar">
|
<div class="d-none d-md-block col-10 col-md-3 right-sidebar">
|
||||||
<ul class="list-group">
|
<ul class="list-group">
|
||||||
|
|
|
@ -84,8 +84,12 @@
|
||||||
<li class="list-group-item" style="padding-bottom: 3;padding-top: 0;">
|
<li class="list-group-item" style="padding-bottom: 3;padding-top: 0;">
|
||||||
<span>{{ cat.0 }}</span>
|
<span>{{ cat.0 }}</span>
|
||||||
<div class="progress">
|
<div class="progress">
|
||||||
<div class="progress-bar bg-success" role="progressbar" style="width: {{ cat.3 }}%" aria-valuenow="{{ cat.3 }}" aria-valuemin="0" aria-valuemax="100">{{ cat.3 }} %</div>
|
{% if cat.3 == '0' %}
|
||||||
</div>
|
<div class="progress-bar bg-success" role="progressbar" style="width: 0%;color:#d9d9d9;" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100">0 %</div>
|
||||||
|
{% else %}
|
||||||
|
<div class="progress-bar bg-success" role="progressbar" style="width: {{ cat.3 }}%" aria-valuenow="{{ cat.3 }}" aria-valuemin="0" aria-valuemax="100">{{ cat.3 }} %</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2021-09-07 21:12+0200\n"
|
"POT-Creation-Date: 2021-09-08 19:35+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -40,27 +40,17 @@ msgstr ""
|
||||||
msgid "Apply"
|
msgid "Apply"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:44
|
#: accounts/templates/accounts/edit.html:47
|
||||||
msgid "Connected accounts"
|
#: accounts/templates/accounts/profile.html:10
|
||||||
msgstr ""
|
#: accounts/templates/accounts/profile.html:70
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:51
|
|
||||||
msgid "Disconnect Discord"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:56
|
|
||||||
msgid "Connect Discord"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:66
|
|
||||||
#: accounts/templates/accounts/profile.html:37
|
|
||||||
#: ctfs/templates/ctfs/ctf_info.html:56 ctfs/templates/ctfs/ctfs_list.html:13
|
#: ctfs/templates/ctfs/ctf_info.html:56 ctfs/templates/ctfs/ctfs_list.html:13
|
||||||
#: scoreboard/templates/scoreboard/scoreboard.html:14
|
#: scoreboard/templates/scoreboard/scoreboard.html:14
|
||||||
msgid "Score"
|
msgid "Score"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:74
|
#: accounts/templates/accounts/edit.html:55
|
||||||
#: accounts/templates/accounts/profile.html:45
|
#: accounts/templates/accounts/profile.html:18
|
||||||
|
#: accounts/templates/accounts/profile.html:78
|
||||||
msgid "Member since"
|
msgid "Member since"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -80,39 +70,44 @@ msgstr ""
|
||||||
#: accounts/templates/accounts/login.html:31
|
#: accounts/templates/accounts/login.html:31
|
||||||
#: accounts/templates/accounts/register.html:38 templates/base.html:84
|
#: accounts/templates/accounts/register.html:38 templates/base.html:84
|
||||||
#: templates/registration/password_reset_complete.html:18
|
#: templates/registration/password_reset_complete.html:18
|
||||||
#: templates/registration/password_reset_confirm.html:37
|
#: templates/registration/password_reset_confirm.html:38
|
||||||
#: templates/registration/password_reset_done.html:17
|
#: templates/registration/password_reset_done.html:18
|
||||||
#: templates/registration/password_reset_form.html:25
|
#: templates/registration/password_reset_form.html:26
|
||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/login.html:32
|
#: accounts/templates/accounts/login.html:32
|
||||||
#: accounts/templates/accounts/register.html:37
|
#: accounts/templates/accounts/register.html:37
|
||||||
#: templates/registration/password_reset_complete.html:19
|
#: templates/registration/password_reset_complete.html:19
|
||||||
#: templates/registration/password_reset_confirm.html:38
|
#: templates/registration/password_reset_confirm.html:39
|
||||||
#: templates/registration/password_reset_done.html:18
|
#: templates/registration/password_reset_done.html:19
|
||||||
#: templates/registration/password_reset_form.html:26
|
#: templates/registration/password_reset_form.html:27
|
||||||
msgid "Sign up"
|
msgid "Sign up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:12
|
#: accounts/templates/accounts/profile.html:22
|
||||||
|
#: accounts/templates/accounts/profile.html:82
|
||||||
|
msgid "Categories stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: accounts/templates/accounts/profile.html:45
|
||||||
msgid "Challenge Name"
|
msgid "Challenge Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:13
|
#: accounts/templates/accounts/profile.html:46
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:14
|
#: accounts/templates/accounts/profile.html:47
|
||||||
msgid "Points"
|
msgid "Points"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:15
|
#: accounts/templates/accounts/profile.html:48
|
||||||
#: ctfs/templates/ctfs/ctf_info.html:57
|
#: ctfs/templates/ctfs/ctf_info.html:57
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:30
|
#: accounts/templates/accounts/profile.html:63
|
||||||
msgid "It's seem {{ user.username }} have never solved any CTF yet..."
|
msgid "It's seem {{ user.username }} have never solved any CTF yet..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -295,36 +290,36 @@ msgstr ""
|
||||||
msgid "Your new password has been set."
|
msgid "Your new password has been set."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:19
|
#: templates/registration/password_reset_confirm.html:20
|
||||||
msgid "Your password can’t be too similar to your other personal information."
|
msgid "Your password can’t be too similar to your other personal information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:20
|
#: templates/registration/password_reset_confirm.html:21
|
||||||
msgid "Your password must contain at least 8 characters."
|
msgid "Your password must contain at least 8 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:21
|
#: templates/registration/password_reset_confirm.html:22
|
||||||
msgid "Your password can’t be a commonly used password."
|
msgid "Your password can’t be a commonly used password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:22
|
#: templates/registration/password_reset_confirm.html:23
|
||||||
msgid "Your password can’t be entirely numeric."
|
msgid "Your password can’t be entirely numeric."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:25
|
#: templates/registration/password_reset_confirm.html:26
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:27
|
#: templates/registration/password_reset_confirm.html:28
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_done.html:10
|
#: templates/registration/password_reset_done.html:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"We've emailed you instructions for setting your password. You should receive "
|
"We've emailed you instructions for setting your password. You should receive "
|
||||||
"the email shortly!"
|
"the email shortly!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_form.html:15
|
#: templates/registration/password_reset_form.html:16
|
||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2021-09-07 21:12+0200\n"
|
"POT-Creation-Date: 2021-09-08 19:35+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -40,27 +40,17 @@ msgstr ""
|
||||||
msgid "Apply"
|
msgid "Apply"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:44
|
#: accounts/templates/accounts/edit.html:47
|
||||||
msgid "Connected accounts"
|
#: accounts/templates/accounts/profile.html:10
|
||||||
msgstr ""
|
#: accounts/templates/accounts/profile.html:70
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:51
|
|
||||||
msgid "Disconnect Discord"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:56
|
|
||||||
msgid "Connect Discord"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:66
|
|
||||||
#: accounts/templates/accounts/profile.html:37
|
|
||||||
#: ctfs/templates/ctfs/ctf_info.html:56 ctfs/templates/ctfs/ctfs_list.html:13
|
#: ctfs/templates/ctfs/ctf_info.html:56 ctfs/templates/ctfs/ctfs_list.html:13
|
||||||
#: scoreboard/templates/scoreboard/scoreboard.html:14
|
#: scoreboard/templates/scoreboard/scoreboard.html:14
|
||||||
msgid "Score"
|
msgid "Score"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:74
|
#: accounts/templates/accounts/edit.html:55
|
||||||
#: accounts/templates/accounts/profile.html:45
|
#: accounts/templates/accounts/profile.html:18
|
||||||
|
#: accounts/templates/accounts/profile.html:78
|
||||||
msgid "Member since"
|
msgid "Member since"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -80,39 +70,44 @@ msgstr ""
|
||||||
#: accounts/templates/accounts/login.html:31
|
#: accounts/templates/accounts/login.html:31
|
||||||
#: accounts/templates/accounts/register.html:38 templates/base.html:84
|
#: accounts/templates/accounts/register.html:38 templates/base.html:84
|
||||||
#: templates/registration/password_reset_complete.html:18
|
#: templates/registration/password_reset_complete.html:18
|
||||||
#: templates/registration/password_reset_confirm.html:37
|
#: templates/registration/password_reset_confirm.html:38
|
||||||
#: templates/registration/password_reset_done.html:17
|
#: templates/registration/password_reset_done.html:18
|
||||||
#: templates/registration/password_reset_form.html:25
|
#: templates/registration/password_reset_form.html:26
|
||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/login.html:32
|
#: accounts/templates/accounts/login.html:32
|
||||||
#: accounts/templates/accounts/register.html:37
|
#: accounts/templates/accounts/register.html:37
|
||||||
#: templates/registration/password_reset_complete.html:19
|
#: templates/registration/password_reset_complete.html:19
|
||||||
#: templates/registration/password_reset_confirm.html:38
|
#: templates/registration/password_reset_confirm.html:39
|
||||||
#: templates/registration/password_reset_done.html:18
|
#: templates/registration/password_reset_done.html:19
|
||||||
#: templates/registration/password_reset_form.html:26
|
#: templates/registration/password_reset_form.html:27
|
||||||
msgid "Sign up"
|
msgid "Sign up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:12
|
#: accounts/templates/accounts/profile.html:22
|
||||||
|
#: accounts/templates/accounts/profile.html:82
|
||||||
|
msgid "Categories stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: accounts/templates/accounts/profile.html:45
|
||||||
msgid "Challenge Name"
|
msgid "Challenge Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:13
|
#: accounts/templates/accounts/profile.html:46
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:14
|
#: accounts/templates/accounts/profile.html:47
|
||||||
msgid "Points"
|
msgid "Points"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:15
|
#: accounts/templates/accounts/profile.html:48
|
||||||
#: ctfs/templates/ctfs/ctf_info.html:57
|
#: ctfs/templates/ctfs/ctf_info.html:57
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:30
|
#: accounts/templates/accounts/profile.html:63
|
||||||
msgid "It's seem {{ user.username }} have never solved any CTF yet..."
|
msgid "It's seem {{ user.username }} have never solved any CTF yet..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -295,36 +290,36 @@ msgstr ""
|
||||||
msgid "Your new password has been set."
|
msgid "Your new password has been set."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:19
|
#: templates/registration/password_reset_confirm.html:20
|
||||||
msgid "Your password can’t be too similar to your other personal information."
|
msgid "Your password can’t be too similar to your other personal information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:20
|
#: templates/registration/password_reset_confirm.html:21
|
||||||
msgid "Your password must contain at least 8 characters."
|
msgid "Your password must contain at least 8 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:21
|
#: templates/registration/password_reset_confirm.html:22
|
||||||
msgid "Your password can’t be a commonly used password."
|
msgid "Your password can’t be a commonly used password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:22
|
#: templates/registration/password_reset_confirm.html:23
|
||||||
msgid "Your password can’t be entirely numeric."
|
msgid "Your password can’t be entirely numeric."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:25
|
#: templates/registration/password_reset_confirm.html:26
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:27
|
#: templates/registration/password_reset_confirm.html:28
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_done.html:10
|
#: templates/registration/password_reset_done.html:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"We've emailed you instructions for setting your password. You should receive "
|
"We've emailed you instructions for setting your password. You should receive "
|
||||||
"the email shortly!"
|
"the email shortly!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_form.html:15
|
#: templates/registration/password_reset_form.html:16
|
||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2021-09-07 21:12+0200\n"
|
"POT-Creation-Date: 2021-09-08 19:35+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -40,27 +40,17 @@ msgstr ""
|
||||||
msgid "Apply"
|
msgid "Apply"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:44
|
#: accounts/templates/accounts/edit.html:47
|
||||||
msgid "Connected accounts"
|
#: accounts/templates/accounts/profile.html:10
|
||||||
msgstr ""
|
#: accounts/templates/accounts/profile.html:70
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:51
|
|
||||||
msgid "Disconnect Discord"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:56
|
|
||||||
msgid "Connect Discord"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:66
|
|
||||||
#: accounts/templates/accounts/profile.html:37
|
|
||||||
#: ctfs/templates/ctfs/ctf_info.html:56 ctfs/templates/ctfs/ctfs_list.html:13
|
#: ctfs/templates/ctfs/ctf_info.html:56 ctfs/templates/ctfs/ctfs_list.html:13
|
||||||
#: scoreboard/templates/scoreboard/scoreboard.html:14
|
#: scoreboard/templates/scoreboard/scoreboard.html:14
|
||||||
msgid "Score"
|
msgid "Score"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:74
|
#: accounts/templates/accounts/edit.html:55
|
||||||
#: accounts/templates/accounts/profile.html:45
|
#: accounts/templates/accounts/profile.html:18
|
||||||
|
#: accounts/templates/accounts/profile.html:78
|
||||||
msgid "Member since"
|
msgid "Member since"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -80,39 +70,44 @@ msgstr ""
|
||||||
#: accounts/templates/accounts/login.html:31
|
#: accounts/templates/accounts/login.html:31
|
||||||
#: accounts/templates/accounts/register.html:38 templates/base.html:84
|
#: accounts/templates/accounts/register.html:38 templates/base.html:84
|
||||||
#: templates/registration/password_reset_complete.html:18
|
#: templates/registration/password_reset_complete.html:18
|
||||||
#: templates/registration/password_reset_confirm.html:37
|
#: templates/registration/password_reset_confirm.html:38
|
||||||
#: templates/registration/password_reset_done.html:17
|
#: templates/registration/password_reset_done.html:18
|
||||||
#: templates/registration/password_reset_form.html:25
|
#: templates/registration/password_reset_form.html:26
|
||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/login.html:32
|
#: accounts/templates/accounts/login.html:32
|
||||||
#: accounts/templates/accounts/register.html:37
|
#: accounts/templates/accounts/register.html:37
|
||||||
#: templates/registration/password_reset_complete.html:19
|
#: templates/registration/password_reset_complete.html:19
|
||||||
#: templates/registration/password_reset_confirm.html:38
|
#: templates/registration/password_reset_confirm.html:39
|
||||||
#: templates/registration/password_reset_done.html:18
|
#: templates/registration/password_reset_done.html:19
|
||||||
#: templates/registration/password_reset_form.html:26
|
#: templates/registration/password_reset_form.html:27
|
||||||
msgid "Sign up"
|
msgid "Sign up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:12
|
#: accounts/templates/accounts/profile.html:22
|
||||||
|
#: accounts/templates/accounts/profile.html:82
|
||||||
|
msgid "Categories stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: accounts/templates/accounts/profile.html:45
|
||||||
msgid "Challenge Name"
|
msgid "Challenge Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:13
|
#: accounts/templates/accounts/profile.html:46
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:14
|
#: accounts/templates/accounts/profile.html:47
|
||||||
msgid "Points"
|
msgid "Points"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:15
|
#: accounts/templates/accounts/profile.html:48
|
||||||
#: ctfs/templates/ctfs/ctf_info.html:57
|
#: ctfs/templates/ctfs/ctf_info.html:57
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:30
|
#: accounts/templates/accounts/profile.html:63
|
||||||
msgid "It's seem {{ user.username }} have never solved any CTF yet..."
|
msgid "It's seem {{ user.username }} have never solved any CTF yet..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -295,36 +290,36 @@ msgstr ""
|
||||||
msgid "Your new password has been set."
|
msgid "Your new password has been set."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:19
|
#: templates/registration/password_reset_confirm.html:20
|
||||||
msgid "Your password can’t be too similar to your other personal information."
|
msgid "Your password can’t be too similar to your other personal information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:20
|
#: templates/registration/password_reset_confirm.html:21
|
||||||
msgid "Your password must contain at least 8 characters."
|
msgid "Your password must contain at least 8 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:21
|
#: templates/registration/password_reset_confirm.html:22
|
||||||
msgid "Your password can’t be a commonly used password."
|
msgid "Your password can’t be a commonly used password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:22
|
#: templates/registration/password_reset_confirm.html:23
|
||||||
msgid "Your password can’t be entirely numeric."
|
msgid "Your password can’t be entirely numeric."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:25
|
#: templates/registration/password_reset_confirm.html:26
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:27
|
#: templates/registration/password_reset_confirm.html:28
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_done.html:10
|
#: templates/registration/password_reset_done.html:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"We've emailed you instructions for setting your password. You should receive "
|
"We've emailed you instructions for setting your password. You should receive "
|
||||||
"the email shortly!"
|
"the email shortly!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_form.html:15
|
#: templates/registration/password_reset_form.html:16
|
||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2021-09-07 21:12+0200\n"
|
"POT-Creation-Date: 2021-09-08 19:35+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -40,27 +40,17 @@ msgstr "Site internet"
|
||||||
msgid "Apply"
|
msgid "Apply"
|
||||||
msgstr "Appliquer"
|
msgstr "Appliquer"
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:44
|
#: accounts/templates/accounts/edit.html:47
|
||||||
msgid "Connected accounts"
|
#: accounts/templates/accounts/profile.html:10
|
||||||
msgstr "Comptes connectés"
|
#: accounts/templates/accounts/profile.html:70
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:51
|
|
||||||
msgid "Disconnect Discord"
|
|
||||||
msgstr "Déconnecter Discord"
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:56
|
|
||||||
msgid "Connect Discord"
|
|
||||||
msgstr "Connecter Discord"
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:66
|
|
||||||
#: accounts/templates/accounts/profile.html:37
|
|
||||||
#: ctfs/templates/ctfs/ctf_info.html:56 ctfs/templates/ctfs/ctfs_list.html:13
|
#: ctfs/templates/ctfs/ctf_info.html:56 ctfs/templates/ctfs/ctfs_list.html:13
|
||||||
#: scoreboard/templates/scoreboard/scoreboard.html:14
|
#: scoreboard/templates/scoreboard/scoreboard.html:14
|
||||||
msgid "Score"
|
msgid "Score"
|
||||||
msgstr "Score"
|
msgstr "Score"
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:74
|
#: accounts/templates/accounts/edit.html:55
|
||||||
#: accounts/templates/accounts/profile.html:45
|
#: accounts/templates/accounts/profile.html:18
|
||||||
|
#: accounts/templates/accounts/profile.html:78
|
||||||
msgid "Member since"
|
msgid "Member since"
|
||||||
msgstr "Membre depuis"
|
msgstr "Membre depuis"
|
||||||
|
|
||||||
|
@ -80,39 +70,46 @@ msgstr "Réinitialiser le mot de passe"
|
||||||
#: accounts/templates/accounts/login.html:31
|
#: accounts/templates/accounts/login.html:31
|
||||||
#: accounts/templates/accounts/register.html:38 templates/base.html:84
|
#: accounts/templates/accounts/register.html:38 templates/base.html:84
|
||||||
#: templates/registration/password_reset_complete.html:18
|
#: templates/registration/password_reset_complete.html:18
|
||||||
#: templates/registration/password_reset_confirm.html:37
|
#: templates/registration/password_reset_confirm.html:38
|
||||||
#: templates/registration/password_reset_done.html:17
|
#: templates/registration/password_reset_done.html:18
|
||||||
#: templates/registration/password_reset_form.html:25
|
#: templates/registration/password_reset_form.html:26
|
||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Connexion"
|
msgstr "Connexion"
|
||||||
|
|
||||||
#: accounts/templates/accounts/login.html:32
|
#: accounts/templates/accounts/login.html:32
|
||||||
#: accounts/templates/accounts/register.html:37
|
#: accounts/templates/accounts/register.html:37
|
||||||
#: templates/registration/password_reset_complete.html:19
|
#: templates/registration/password_reset_complete.html:19
|
||||||
#: templates/registration/password_reset_confirm.html:38
|
#: templates/registration/password_reset_confirm.html:39
|
||||||
#: templates/registration/password_reset_done.html:18
|
#: templates/registration/password_reset_done.html:19
|
||||||
#: templates/registration/password_reset_form.html:26
|
#: templates/registration/password_reset_form.html:27
|
||||||
msgid "Sign up"
|
msgid "Sign up"
|
||||||
msgstr "Inscription"
|
msgstr "Inscription"
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:12
|
#: accounts/templates/accounts/profile.html:22
|
||||||
|
#: accounts/templates/accounts/profile.html:82
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid "Categories"
|
||||||
|
msgid "Categories stats"
|
||||||
|
msgstr "Catégories"
|
||||||
|
|
||||||
|
#: accounts/templates/accounts/profile.html:45
|
||||||
msgid "Challenge Name"
|
msgid "Challenge Name"
|
||||||
msgstr "Nom du challenge"
|
msgstr "Nom du challenge"
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:13
|
#: accounts/templates/accounts/profile.html:46
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr "Catégorie"
|
msgstr "Catégorie"
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:14
|
#: accounts/templates/accounts/profile.html:47
|
||||||
msgid "Points"
|
msgid "Points"
|
||||||
msgstr "Points"
|
msgstr "Points"
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:15
|
#: accounts/templates/accounts/profile.html:48
|
||||||
#: ctfs/templates/ctfs/ctf_info.html:57
|
#: ctfs/templates/ctfs/ctf_info.html:57
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Date"
|
msgstr "Date"
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:30
|
#: accounts/templates/accounts/profile.html:63
|
||||||
msgid "It's seem {{ user.username }} have never solved any CTF yet..."
|
msgid "It's seem {{ user.username }} have never solved any CTF yet..."
|
||||||
msgstr "Il semble que {{ user.username }} n'a pas encore résolu de CTF..."
|
msgstr "Il semble que {{ user.username }} n'a pas encore résolu de CTF..."
|
||||||
|
|
||||||
|
@ -297,31 +294,31 @@ msgstr "Inscription"
|
||||||
msgid "Your new password has been set."
|
msgid "Your new password has been set."
|
||||||
msgstr "Votre mot de passe a été mis à jour."
|
msgstr "Votre mot de passe a été mis à jour."
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:19
|
#: templates/registration/password_reset_confirm.html:20
|
||||||
msgid "Your password can’t be too similar to your other personal information."
|
msgid "Your password can’t be too similar to your other personal information."
|
||||||
msgstr "Votre mot de passe ne peut pas être similaire à votre adresse mail."
|
msgstr "Votre mot de passe ne peut pas être similaire à votre adresse mail."
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:20
|
#: templates/registration/password_reset_confirm.html:21
|
||||||
msgid "Your password must contain at least 8 characters."
|
msgid "Your password must contain at least 8 characters."
|
||||||
msgstr "Votre mot de passe doit contenir au moins 8 caractères."
|
msgstr "Votre mot de passe doit contenir au moins 8 caractères."
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:21
|
#: templates/registration/password_reset_confirm.html:22
|
||||||
msgid "Your password can’t be a commonly used password."
|
msgid "Your password can’t be a commonly used password."
|
||||||
msgstr "Votre mot de passe ne peut pas être un mot de passe commun."
|
msgstr "Votre mot de passe ne peut pas être un mot de passe commun."
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:22
|
#: templates/registration/password_reset_confirm.html:23
|
||||||
msgid "Your password can’t be entirely numeric."
|
msgid "Your password can’t be entirely numeric."
|
||||||
msgstr "Votre mot de passe ne peut pas être entièrement numérique."
|
msgstr "Votre mot de passe ne peut pas être entièrement numérique."
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:25
|
#: templates/registration/password_reset_confirm.html:26
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Confirmer"
|
msgstr "Confirmer"
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:27
|
#: templates/registration/password_reset_confirm.html:28
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
msgstr "Soumettre"
|
msgstr "Soumettre"
|
||||||
|
|
||||||
#: templates/registration/password_reset_done.html:10
|
#: templates/registration/password_reset_done.html:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"We've emailed you instructions for setting your password. You should receive "
|
"We've emailed you instructions for setting your password. You should receive "
|
||||||
"the email shortly!"
|
"the email shortly!"
|
||||||
|
@ -329,6 +326,15 @@ msgstr ""
|
||||||
"Vous devrierz recevoir rapidement un email avec des instructions pour "
|
"Vous devrierz recevoir rapidement un email avec des instructions pour "
|
||||||
"réinitialiser votre mot de passe."
|
"réinitialiser votre mot de passe."
|
||||||
|
|
||||||
#: templates/registration/password_reset_form.html:15
|
#: templates/registration/password_reset_form.html:16
|
||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Réinitialiser"
|
msgstr "Réinitialiser"
|
||||||
|
|
||||||
|
#~ msgid "Connected accounts"
|
||||||
|
#~ msgstr "Comptes connectés"
|
||||||
|
|
||||||
|
#~ msgid "Disconnect Discord"
|
||||||
|
#~ msgstr "Déconnecter Discord"
|
||||||
|
|
||||||
|
#~ msgid "Connect Discord"
|
||||||
|
#~ msgstr "Connecter Discord"
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2021-09-07 21:12+0200\n"
|
"POT-Creation-Date: 2021-09-08 19:35+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -40,27 +40,17 @@ msgstr ""
|
||||||
msgid "Apply"
|
msgid "Apply"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:44
|
#: accounts/templates/accounts/edit.html:47
|
||||||
msgid "Connected accounts"
|
#: accounts/templates/accounts/profile.html:10
|
||||||
msgstr ""
|
#: accounts/templates/accounts/profile.html:70
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:51
|
|
||||||
msgid "Disconnect Discord"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:56
|
|
||||||
msgid "Connect Discord"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:66
|
|
||||||
#: accounts/templates/accounts/profile.html:37
|
|
||||||
#: ctfs/templates/ctfs/ctf_info.html:56 ctfs/templates/ctfs/ctfs_list.html:13
|
#: ctfs/templates/ctfs/ctf_info.html:56 ctfs/templates/ctfs/ctfs_list.html:13
|
||||||
#: scoreboard/templates/scoreboard/scoreboard.html:14
|
#: scoreboard/templates/scoreboard/scoreboard.html:14
|
||||||
msgid "Score"
|
msgid "Score"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:74
|
#: accounts/templates/accounts/edit.html:55
|
||||||
#: accounts/templates/accounts/profile.html:45
|
#: accounts/templates/accounts/profile.html:18
|
||||||
|
#: accounts/templates/accounts/profile.html:78
|
||||||
msgid "Member since"
|
msgid "Member since"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -80,39 +70,44 @@ msgstr ""
|
||||||
#: accounts/templates/accounts/login.html:31
|
#: accounts/templates/accounts/login.html:31
|
||||||
#: accounts/templates/accounts/register.html:38 templates/base.html:84
|
#: accounts/templates/accounts/register.html:38 templates/base.html:84
|
||||||
#: templates/registration/password_reset_complete.html:18
|
#: templates/registration/password_reset_complete.html:18
|
||||||
#: templates/registration/password_reset_confirm.html:37
|
#: templates/registration/password_reset_confirm.html:38
|
||||||
#: templates/registration/password_reset_done.html:17
|
#: templates/registration/password_reset_done.html:18
|
||||||
#: templates/registration/password_reset_form.html:25
|
#: templates/registration/password_reset_form.html:26
|
||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/login.html:32
|
#: accounts/templates/accounts/login.html:32
|
||||||
#: accounts/templates/accounts/register.html:37
|
#: accounts/templates/accounts/register.html:37
|
||||||
#: templates/registration/password_reset_complete.html:19
|
#: templates/registration/password_reset_complete.html:19
|
||||||
#: templates/registration/password_reset_confirm.html:38
|
#: templates/registration/password_reset_confirm.html:39
|
||||||
#: templates/registration/password_reset_done.html:18
|
#: templates/registration/password_reset_done.html:19
|
||||||
#: templates/registration/password_reset_form.html:26
|
#: templates/registration/password_reset_form.html:27
|
||||||
msgid "Sign up"
|
msgid "Sign up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:12
|
#: accounts/templates/accounts/profile.html:22
|
||||||
|
#: accounts/templates/accounts/profile.html:82
|
||||||
|
msgid "Categories stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: accounts/templates/accounts/profile.html:45
|
||||||
msgid "Challenge Name"
|
msgid "Challenge Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:13
|
#: accounts/templates/accounts/profile.html:46
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:14
|
#: accounts/templates/accounts/profile.html:47
|
||||||
msgid "Points"
|
msgid "Points"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:15
|
#: accounts/templates/accounts/profile.html:48
|
||||||
#: ctfs/templates/ctfs/ctf_info.html:57
|
#: ctfs/templates/ctfs/ctf_info.html:57
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:30
|
#: accounts/templates/accounts/profile.html:63
|
||||||
msgid "It's seem {{ user.username }} have never solved any CTF yet..."
|
msgid "It's seem {{ user.username }} have never solved any CTF yet..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -295,36 +290,36 @@ msgstr ""
|
||||||
msgid "Your new password has been set."
|
msgid "Your new password has been set."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:19
|
#: templates/registration/password_reset_confirm.html:20
|
||||||
msgid "Your password can’t be too similar to your other personal information."
|
msgid "Your password can’t be too similar to your other personal information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:20
|
#: templates/registration/password_reset_confirm.html:21
|
||||||
msgid "Your password must contain at least 8 characters."
|
msgid "Your password must contain at least 8 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:21
|
#: templates/registration/password_reset_confirm.html:22
|
||||||
msgid "Your password can’t be a commonly used password."
|
msgid "Your password can’t be a commonly used password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:22
|
#: templates/registration/password_reset_confirm.html:23
|
||||||
msgid "Your password can’t be entirely numeric."
|
msgid "Your password can’t be entirely numeric."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:25
|
#: templates/registration/password_reset_confirm.html:26
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:27
|
#: templates/registration/password_reset_confirm.html:28
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_done.html:10
|
#: templates/registration/password_reset_done.html:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"We've emailed you instructions for setting your password. You should receive "
|
"We've emailed you instructions for setting your password. You should receive "
|
||||||
"the email shortly!"
|
"the email shortly!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_form.html:15
|
#: templates/registration/password_reset_form.html:16
|
||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2021-09-07 21:12+0200\n"
|
"POT-Creation-Date: 2021-09-08 19:35+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -42,27 +42,17 @@ msgstr ""
|
||||||
msgid "Apply"
|
msgid "Apply"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:44
|
#: accounts/templates/accounts/edit.html:47
|
||||||
msgid "Connected accounts"
|
#: accounts/templates/accounts/profile.html:10
|
||||||
msgstr ""
|
#: accounts/templates/accounts/profile.html:70
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:51
|
|
||||||
msgid "Disconnect Discord"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:56
|
|
||||||
msgid "Connect Discord"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:66
|
|
||||||
#: accounts/templates/accounts/profile.html:37
|
|
||||||
#: ctfs/templates/ctfs/ctf_info.html:56 ctfs/templates/ctfs/ctfs_list.html:13
|
#: ctfs/templates/ctfs/ctf_info.html:56 ctfs/templates/ctfs/ctfs_list.html:13
|
||||||
#: scoreboard/templates/scoreboard/scoreboard.html:14
|
#: scoreboard/templates/scoreboard/scoreboard.html:14
|
||||||
msgid "Score"
|
msgid "Score"
|
||||||
msgstr "счет"
|
msgstr "счет"
|
||||||
|
|
||||||
#: accounts/templates/accounts/edit.html:74
|
#: accounts/templates/accounts/edit.html:55
|
||||||
#: accounts/templates/accounts/profile.html:45
|
#: accounts/templates/accounts/profile.html:18
|
||||||
|
#: accounts/templates/accounts/profile.html:78
|
||||||
msgid "Member since"
|
msgid "Member since"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -82,39 +72,44 @@ msgstr ""
|
||||||
#: accounts/templates/accounts/login.html:31
|
#: accounts/templates/accounts/login.html:31
|
||||||
#: accounts/templates/accounts/register.html:38 templates/base.html:84
|
#: accounts/templates/accounts/register.html:38 templates/base.html:84
|
||||||
#: templates/registration/password_reset_complete.html:18
|
#: templates/registration/password_reset_complete.html:18
|
||||||
#: templates/registration/password_reset_confirm.html:37
|
#: templates/registration/password_reset_confirm.html:38
|
||||||
#: templates/registration/password_reset_done.html:17
|
#: templates/registration/password_reset_done.html:18
|
||||||
#: templates/registration/password_reset_form.html:25
|
#: templates/registration/password_reset_form.html:26
|
||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Авторизоваться"
|
msgstr "Авторизоваться"
|
||||||
|
|
||||||
#: accounts/templates/accounts/login.html:32
|
#: accounts/templates/accounts/login.html:32
|
||||||
#: accounts/templates/accounts/register.html:37
|
#: accounts/templates/accounts/register.html:37
|
||||||
#: templates/registration/password_reset_complete.html:19
|
#: templates/registration/password_reset_complete.html:19
|
||||||
#: templates/registration/password_reset_confirm.html:38
|
#: templates/registration/password_reset_confirm.html:39
|
||||||
#: templates/registration/password_reset_done.html:18
|
#: templates/registration/password_reset_done.html:19
|
||||||
#: templates/registration/password_reset_form.html:26
|
#: templates/registration/password_reset_form.html:27
|
||||||
msgid "Sign up"
|
msgid "Sign up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:12
|
#: accounts/templates/accounts/profile.html:22
|
||||||
|
#: accounts/templates/accounts/profile.html:82
|
||||||
|
msgid "Categories stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: accounts/templates/accounts/profile.html:45
|
||||||
msgid "Challenge Name"
|
msgid "Challenge Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:13
|
#: accounts/templates/accounts/profile.html:46
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr "Категории"
|
msgstr "Категории"
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:14
|
#: accounts/templates/accounts/profile.html:47
|
||||||
msgid "Points"
|
msgid "Points"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:15
|
#: accounts/templates/accounts/profile.html:48
|
||||||
#: ctfs/templates/ctfs/ctf_info.html:57
|
#: ctfs/templates/ctfs/ctf_info.html:57
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: accounts/templates/accounts/profile.html:30
|
#: accounts/templates/accounts/profile.html:63
|
||||||
msgid "It's seem {{ user.username }} have never solved any CTF yet..."
|
msgid "It's seem {{ user.username }} have never solved any CTF yet..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -297,36 +292,36 @@ msgstr ""
|
||||||
msgid "Your new password has been set."
|
msgid "Your new password has been set."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:19
|
#: templates/registration/password_reset_confirm.html:20
|
||||||
msgid "Your password can’t be too similar to your other personal information."
|
msgid "Your password can’t be too similar to your other personal information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:20
|
#: templates/registration/password_reset_confirm.html:21
|
||||||
msgid "Your password must contain at least 8 characters."
|
msgid "Your password must contain at least 8 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:21
|
#: templates/registration/password_reset_confirm.html:22
|
||||||
msgid "Your password can’t be a commonly used password."
|
msgid "Your password can’t be a commonly used password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:22
|
#: templates/registration/password_reset_confirm.html:23
|
||||||
msgid "Your password can’t be entirely numeric."
|
msgid "Your password can’t be entirely numeric."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:25
|
#: templates/registration/password_reset_confirm.html:26
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_confirm.html:27
|
#: templates/registration/password_reset_confirm.html:28
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_done.html:10
|
#: templates/registration/password_reset_done.html:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"We've emailed you instructions for setting your password. You should receive "
|
"We've emailed you instructions for setting your password. You should receive "
|
||||||
"the email shortly!"
|
"the email shortly!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: templates/registration/password_reset_form.html:15
|
#: templates/registration/password_reset_form.html:16
|
||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
Loading…
Reference in New Issue