mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 14:13:21 +00:00
Fix markdown rendering on some pages, and add a link to the syntax help
Signed-off-by: Skia <skia@libskia.so>
This commit is contained in:
parent
1bcde80a28
commit
457fc36e16
@ -470,13 +470,11 @@ em {
|
|||||||
border: solid #333 2px;
|
border: solid #333 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*---------------------------------PAGE--------------------------------*/
|
/*-------------------------------MARKDOWN------------------------------*/
|
||||||
|
|
||||||
.page_content {
|
.markdown {
|
||||||
display: block;
|
margin: 0px;
|
||||||
margin: 10px;
|
padding: 0px;
|
||||||
padding: 10px;
|
|
||||||
background: $white-color;
|
|
||||||
code {
|
code {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
color: $white-color;
|
color: $white-color;
|
||||||
@ -487,8 +485,16 @@ em {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*---------------------------------PAGE--------------------------------*/
|
||||||
|
|
||||||
|
.page_content {
|
||||||
|
display: block;
|
||||||
|
margin: 10px;
|
||||||
|
padding: 10px;
|
||||||
|
background: $white-color;
|
||||||
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
white-space: pre;
|
|
||||||
width: 98%;
|
width: 98%;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,7 @@ register = template.Library()
|
|||||||
@register.filter(is_safe=False)
|
@register.filter(is_safe=False)
|
||||||
@stringfilter
|
@stringfilter
|
||||||
def markdown(text):
|
def markdown(text):
|
||||||
return mark_safe(md(text))
|
return mark_safe("<div class=\"markdown\">%s</div>" % md(text))
|
||||||
|
|
||||||
@register.filter()
|
@register.filter()
|
||||||
@stringfilter
|
@stringfilter
|
||||||
|
@ -27,7 +27,11 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
<form action="" method="post" enctype="multipart/form-data">
|
<form action="" method="post" enctype="multipart/form-data">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{{ form.as_p() }}
|
<p>{{ form.title.errors }}<label for="{{ form.title.name }}">{{ form.title.label }}</label> {{ form.title }}</p>
|
||||||
|
<p>{{ form.message.errors }}<label for="{{ form.message.name }}">{{ form.message.label }}</label> </p>
|
||||||
|
<p class="markdown_editor"><a href="{{ syntax_help_page.get_absolute_url() }}">{% trans %}Help on the syntax{% endtrans %}</a>
|
||||||
|
{{ form.message }}
|
||||||
|
</p>
|
||||||
<p><input type="button" value="{% trans %}Preview{% endtrans %}" onclick="javascript:make_preview();" /></p>
|
<p><input type="button" value="{% trans %}Preview{% endtrans %}" onclick="javascript:make_preview();" /></p>
|
||||||
<p><input type="submit" value="{% trans %}Save{% endtrans %}" /></p>
|
<p><input type="submit" value="{% trans %}Save{% endtrans %}" /></p>
|
||||||
</form>
|
</form>
|
||||||
@ -43,7 +47,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="msg_content">
|
<div class="msg_content">
|
||||||
<hr>
|
<hr>
|
||||||
<div id="preview" class="ib w_big"></div>
|
<div id="preview" class="ib"></div>
|
||||||
<div class="forum_signature">{{ user.forum_signature|markdown }}</div>
|
<div class="forum_signature">{{ user.forum_signature|markdown }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -38,6 +38,7 @@ from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger
|
|||||||
from ajax_select import make_ajax_form, make_ajax_field
|
from ajax_select import make_ajax_form, make_ajax_field
|
||||||
|
|
||||||
from core.views import CanViewMixin, CanEditMixin, CanEditPropMixin, CanCreateMixin, TabedViewMixin
|
from core.views import CanViewMixin, CanEditMixin, CanEditPropMixin, CanCreateMixin, TabedViewMixin
|
||||||
|
from core.models import Page
|
||||||
from forum.models import Forum, ForumMessage, ForumTopic, ForumMessageMeta
|
from forum.models import Forum, ForumMessage, ForumTopic, ForumMessageMeta
|
||||||
|
|
||||||
class ForumMainView(ListView):
|
class ForumMainView(ListView):
|
||||||
@ -215,6 +216,7 @@ class ForumMessageEditView(CanEditMixin, UpdateView):
|
|||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
kwargs = super(ForumMessageEditView, self).get_context_data(**kwargs)
|
kwargs = super(ForumMessageEditView, self).get_context_data(**kwargs)
|
||||||
kwargs['topic'] = self.object.topic
|
kwargs['topic'] = self.object.topic
|
||||||
|
kwargs['syntax_help_page'] = Page.get_page_by_full_name(settings.SITH_CORE_PAGE_SYNTAX)
|
||||||
return kwargs
|
return kwargs
|
||||||
|
|
||||||
class ForumMessageDeleteView(SingleObjectMixin, RedirectView):
|
class ForumMessageDeleteView(SingleObjectMixin, RedirectView):
|
||||||
@ -271,5 +273,6 @@ class ForumMessageCreateView(CanCreateMixin, CreateView):
|
|||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
kwargs = super(ForumMessageCreateView, self).get_context_data(**kwargs)
|
kwargs = super(ForumMessageCreateView, self).get_context_data(**kwargs)
|
||||||
kwargs['topic'] = self.topic
|
kwargs['topic'] = self.topic
|
||||||
|
kwargs['syntax_help_page'] = Page.get_page_by_full_name(settings.SITH_CORE_PAGE_SYNTAX)
|
||||||
return kwargs
|
return kwargs
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2017-06-07 17:32+0200\n"
|
"POT-Creation-Date: 2017-06-10 16:53+0200\n"
|
||||||
"PO-Revision-Date: 2016-07-18\n"
|
"PO-Revision-Date: 2016-07-18\n"
|
||||||
"Last-Translator: Skia <skia@libskia.so>\n"
|
"Last-Translator: Skia <skia@libskia.so>\n"
|
||||||
"Language-Team: AE info <ae.info@utbm.fr>\n"
|
"Language-Team: AE info <ae.info@utbm.fr>\n"
|
||||||
@ -88,12 +88,12 @@ msgid "%(club_account)s on %(bank_account)s"
|
|||||||
msgstr "%(club_account)s sur %(bank_account)s"
|
msgstr "%(club_account)s sur %(bank_account)s"
|
||||||
|
|
||||||
#: accounting/models.py:192 club/models.py:184 counter/models.py:433
|
#: accounting/models.py:192 club/models.py:184 counter/models.py:433
|
||||||
#: election/models.py:17 launderette/models.py:144
|
#: election/models.py:16 launderette/models.py:144
|
||||||
msgid "start date"
|
msgid "start date"
|
||||||
msgstr "date de début"
|
msgstr "date de début"
|
||||||
|
|
||||||
#: accounting/models.py:193 club/models.py:185 counter/models.py:434
|
#: accounting/models.py:193 club/models.py:185 counter/models.py:434
|
||||||
#: election/models.py:18
|
#: election/models.py:17
|
||||||
msgid "end date"
|
msgid "end date"
|
||||||
msgstr "date de fin"
|
msgstr "date de fin"
|
||||||
|
|
||||||
@ -199,7 +199,7 @@ msgstr "Compte"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Entreprise"
|
msgstr "Entreprise"
|
||||||
|
|
||||||
#: accounting/models.py:267 sith/settings.py:362
|
#: accounting/models.py:267 sith/settings.py:365
|
||||||
#: stock/templates/stock/shopping_list_items.jinja:37
|
#: stock/templates/stock/shopping_list_items.jinja:37
|
||||||
msgid "Other"
|
msgid "Other"
|
||||||
msgstr "Autre"
|
msgstr "Autre"
|
||||||
@ -334,13 +334,14 @@ msgstr "Compte en banque : "
|
|||||||
#: counter/templates/counter/last_ops.jinja:29
|
#: counter/templates/counter/last_ops.jinja:29
|
||||||
#: counter/templates/counter/last_ops.jinja:59
|
#: counter/templates/counter/last_ops.jinja:59
|
||||||
#: election/templates/election/election_detail.jinja:280
|
#: election/templates/election/election_detail.jinja:280
|
||||||
#: election/templates/election/election_detail.jinja:329
|
#: election/templates/election/election_detail.jinja:330
|
||||||
#: election/templates/election/election_detail.jinja:377
|
#: election/templates/election/election_detail.jinja:378
|
||||||
#: forum/templates/forum/macros.jinja:21 forum/templates/forum/macros.jinja:123
|
#: forum/templates/forum/macros.jinja:21
|
||||||
|
#: forum/templates/forum/macros.jinja:123
|
||||||
#: launderette/templates/launderette/launderette_admin.jinja:16
|
#: launderette/templates/launderette/launderette_admin.jinja:16
|
||||||
#: launderette/views.py:178 sas/templates/sas/album.jinja:26
|
#: launderette/views.py:178 sas/templates/sas/album.jinja:26
|
||||||
#: sas/templates/sas/moderation.jinja:18 sas/templates/sas/picture.jinja:74
|
#: sas/templates/sas/moderation.jinja:18 sas/templates/sas/picture.jinja:74
|
||||||
#: sas/templates/sas/picture.jinja.py:124
|
#: sas/templates/sas/picture.jinja:124
|
||||||
#: stock/templates/stock/stock_shopping_list.jinja:43
|
#: stock/templates/stock/stock_shopping_list.jinja:43
|
||||||
#: stock/templates/stock/stock_shopping_list.jinja:69
|
#: stock/templates/stock/stock_shopping_list.jinja:69
|
||||||
#: trombi/templates/trombi/detail.jinja:28
|
#: trombi/templates/trombi/detail.jinja:28
|
||||||
@ -378,8 +379,8 @@ msgstr "Nouveau compte club"
|
|||||||
#: counter/templates/counter/counter_list.jinja:32
|
#: counter/templates/counter/counter_list.jinja:32
|
||||||
#: counter/templates/counter/counter_list.jinja:53
|
#: counter/templates/counter/counter_list.jinja:53
|
||||||
#: election/templates/election/election_detail.jinja:279
|
#: election/templates/election/election_detail.jinja:279
|
||||||
#: election/templates/election/election_detail.jinja:326
|
#: election/templates/election/election_detail.jinja:327
|
||||||
#: election/templates/election/election_detail.jinja:374
|
#: election/templates/election/election_detail.jinja:375
|
||||||
#: forum/templates/forum/macros.jinja:20 forum/templates/forum/macros.jinja:62
|
#: forum/templates/forum/macros.jinja:20 forum/templates/forum/macros.jinja:62
|
||||||
#: forum/templates/forum/macros.jinja:117
|
#: forum/templates/forum/macros.jinja:117
|
||||||
#: launderette/templates/launderette/launderette_list.jinja:16
|
#: launderette/templates/launderette/launderette_list.jinja:16
|
||||||
@ -491,8 +492,8 @@ msgstr "Non"
|
|||||||
|
|
||||||
#: accounting/templates/accounting/club_account_details.jinja:56
|
#: accounting/templates/accounting/club_account_details.jinja:56
|
||||||
#: com/templates/com/news_admin_list.jinja:38
|
#: com/templates/com/news_admin_list.jinja:38
|
||||||
#: com/templates/com/news_admin_list.jinja:71 core/templates/core/file.jinja:36
|
#: com/templates/com/news_admin_list.jinja:71
|
||||||
#: core/templates/core/page.jinja:28
|
#: core/templates/core/file.jinja:36 core/templates/core/page.jinja:28
|
||||||
msgid "View"
|
msgid "View"
|
||||||
msgstr "Voir"
|
msgstr "Voir"
|
||||||
|
|
||||||
@ -696,7 +697,7 @@ msgstr "Opération liée : "
|
|||||||
#: core/templates/core/user_preferences.jinja:12
|
#: core/templates/core/user_preferences.jinja:12
|
||||||
#: core/templates/core/user_preferences.jinja:19
|
#: core/templates/core/user_preferences.jinja:19
|
||||||
#: counter/templates/counter/cash_register_summary.jinja:22
|
#: counter/templates/counter/cash_register_summary.jinja:22
|
||||||
#: forum/templates/forum/reply.jinja:32
|
#: forum/templates/forum/reply.jinja:36
|
||||||
#: subscription/templates/subscription/subscription.jinja:24
|
#: subscription/templates/subscription/subscription.jinja:24
|
||||||
#: trombi/templates/trombi/comment.jinja:26
|
#: trombi/templates/trombi/comment.jinja:26
|
||||||
#: trombi/templates/trombi/user_tools.jinja:13
|
#: trombi/templates/trombi/user_tools.jinja:13
|
||||||
@ -831,19 +832,19 @@ msgid "A club with that unix_name already exists"
|
|||||||
msgstr "Un club avec ce nom UNIX existe déjà."
|
msgstr "Un club avec ce nom UNIX existe déjà."
|
||||||
|
|
||||||
#: club/models.py:182 counter/models.py:431 counter/models.py:448
|
#: club/models.py:182 counter/models.py:431 counter/models.py:448
|
||||||
#: eboutic/models.py:38 eboutic/models.py:71 election/models.py:147
|
#: eboutic/models.py:38 eboutic/models.py:71 election/models.py:140
|
||||||
#: launderette/models.py:111 launderette/models.py:148 sas/models.py:156
|
#: launderette/models.py:111 launderette/models.py:148 sas/models.py:156
|
||||||
msgid "user"
|
msgid "user"
|
||||||
msgstr "nom d'utilisateur"
|
msgstr "nom d'utilisateur"
|
||||||
|
|
||||||
#: club/models.py:186 core/models.py:169 election/models.py:145
|
#: club/models.py:186 core/models.py:169 election/models.py:139
|
||||||
#: election/models.py:165
|
#: election/models.py:155
|
||||||
msgid "role"
|
msgid "role"
|
||||||
msgstr "rôle"
|
msgstr "rôle"
|
||||||
|
|
||||||
#: club/models.py:188 core/models.py:61 counter/models.py:101
|
#: club/models.py:188 core/models.py:61 counter/models.py:101
|
||||||
#: counter/models.py:126 election/models.py:13 election/models.py:93
|
#: counter/models.py:126 election/models.py:13 election/models.py:93
|
||||||
#: election/models.py:148 forum/models.py:51 forum/models.py:184
|
#: election/models.py:141 forum/models.py:51 forum/models.py:184
|
||||||
msgid "description"
|
msgid "description"
|
||||||
msgstr "description"
|
msgstr "description"
|
||||||
|
|
||||||
@ -859,7 +860,8 @@ msgstr "L'utilisateur est déjà membre de ce club"
|
|||||||
msgid "past member"
|
msgid "past member"
|
||||||
msgstr "Anciens membres"
|
msgstr "Anciens membres"
|
||||||
|
|
||||||
#: club/templates/club/club_list.jinja:4 club/templates/club/club_list.jinja:24
|
#: club/templates/club/club_list.jinja:4
|
||||||
|
#: club/templates/club/club_list.jinja:24
|
||||||
msgid "Club list"
|
msgid "Club list"
|
||||||
msgstr "Liste des clubs"
|
msgstr "Liste des clubs"
|
||||||
|
|
||||||
@ -921,13 +923,14 @@ msgstr "Du"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "Au"
|
msgstr "Au"
|
||||||
|
|
||||||
#: club/templates/club/club_sellings.jinja:5 club/views.py:84 club/views.py:247
|
#: club/templates/club/club_sellings.jinja:5 club/views.py:84
|
||||||
#: counter/templates/counter/counter_main.jinja:19
|
#: club/views.py:247 counter/templates/counter/counter_main.jinja:19
|
||||||
#: counter/templates/counter/last_ops.jinja:35
|
#: counter/templates/counter/last_ops.jinja:35
|
||||||
msgid "Sellings"
|
msgid "Sellings"
|
||||||
msgstr "Ventes"
|
msgstr "Ventes"
|
||||||
|
|
||||||
#: club/templates/club/club_sellings.jinja:9 club/templates/club/stats.jinja:19
|
#: club/templates/club/club_sellings.jinja:9
|
||||||
|
#: club/templates/club/stats.jinja:19
|
||||||
#: counter/templates/counter/cash_summary_list.jinja:15
|
#: counter/templates/counter/cash_summary_list.jinja:15
|
||||||
msgid "Show"
|
msgid "Show"
|
||||||
msgstr "Montrer"
|
msgstr "Montrer"
|
||||||
@ -983,8 +986,8 @@ msgstr "Quantité"
|
|||||||
#: counter/templates/counter/cash_summary_list.jinja:35
|
#: counter/templates/counter/cash_summary_list.jinja:35
|
||||||
#: counter/templates/counter/last_ops.jinja:44
|
#: counter/templates/counter/last_ops.jinja:44
|
||||||
#: counter/templates/counter/stats.jinja:18
|
#: counter/templates/counter/stats.jinja:18
|
||||||
#: subscription/templates/subscription/stats.jinja:33
|
#: subscription/templates/subscription/stats.jinja:40
|
||||||
#: subscription/templates/subscription/stats.jinja:41
|
#: subscription/templates/subscription/stats.jinja:48
|
||||||
msgid "Total"
|
msgid "Total"
|
||||||
msgstr "Total"
|
msgstr "Total"
|
||||||
|
|
||||||
@ -1069,8 +1072,7 @@ msgid "Begin date"
|
|||||||
msgstr "Date de début"
|
msgstr "Date de début"
|
||||||
|
|
||||||
#: club/views.py:196 com/views.py:123 counter/views.py:1020
|
#: club/views.py:196 com/views.py:123 counter/views.py:1020
|
||||||
#: election/views.py:131 subscription/views.py:50
|
#: election/views.py:135 subscription/views.py:50
|
||||||
#: election/views.py:149
|
|
||||||
msgid "End date"
|
msgid "End date"
|
||||||
msgstr "Date de fin"
|
msgstr "Date de fin"
|
||||||
|
|
||||||
@ -1112,7 +1114,7 @@ msgid "Call"
|
|||||||
msgstr "Appel"
|
msgstr "Appel"
|
||||||
|
|
||||||
#: com/models.py:60 com/models.py:102 com/models.py:149 election/models.py:12
|
#: com/models.py:60 com/models.py:102 com/models.py:149 election/models.py:12
|
||||||
#: election/models.py:92 election/models.py:132 forum/models.py:187
|
#: election/models.py:92 election/models.py:128 forum/models.py:187
|
||||||
#: forum/models.py:234
|
#: forum/models.py:234
|
||||||
msgid "title"
|
msgid "title"
|
||||||
msgstr "titre"
|
msgstr "titre"
|
||||||
@ -1188,8 +1190,9 @@ msgid "News admin"
|
|||||||
msgstr "Administration des nouvelles"
|
msgstr "Administration des nouvelles"
|
||||||
|
|
||||||
#: com/templates/com/news_admin_list.jinja:9
|
#: com/templates/com/news_admin_list.jinja:9
|
||||||
#: com/templates/com/news_detail.jinja:5 com/templates/com/news_detail.jinja:11
|
#: com/templates/com/news_detail.jinja:5
|
||||||
#: com/templates/com/news_list.jinja:4 com/templates/com/news_list.jinja:28
|
#: com/templates/com/news_detail.jinja:11 com/templates/com/news_list.jinja:4
|
||||||
|
#: com/templates/com/news_list.jinja:28
|
||||||
msgid "News"
|
msgid "News"
|
||||||
msgstr "Nouvelles"
|
msgstr "Nouvelles"
|
||||||
|
|
||||||
@ -1208,7 +1211,7 @@ msgstr "Type"
|
|||||||
#: com/templates/com/news_admin_list.jinja:50
|
#: com/templates/com/news_admin_list.jinja:50
|
||||||
#: com/templates/com/weekmail.jinja:19 com/templates/com/weekmail.jinja:48
|
#: com/templates/com/weekmail.jinja:19 com/templates/com/weekmail.jinja:48
|
||||||
#: forum/templates/forum/forum.jinja:27 forum/templates/forum/forum.jinja:46
|
#: forum/templates/forum/forum.jinja:27 forum/templates/forum/forum.jinja:46
|
||||||
#: forum/templates/forum/main.jinja:25 forum/views.py:144
|
#: forum/templates/forum/main.jinja:25 forum/views.py:145
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titre"
|
msgstr "Titre"
|
||||||
|
|
||||||
@ -1294,7 +1297,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: com/templates/com/news_edit.jinja:55 com/templates/com/weekmail.jinja:10
|
#: com/templates/com/news_edit.jinja:55 com/templates/com/weekmail.jinja:10
|
||||||
#: core/templates/core/pagerev_edit.jinja:25
|
#: core/templates/core/pagerev_edit.jinja:25
|
||||||
#: forum/templates/forum/reply.jinja:31
|
#: forum/templates/forum/reply.jinja:35
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr "Prévisualiser"
|
msgstr "Prévisualiser"
|
||||||
|
|
||||||
@ -1417,8 +1420,7 @@ msgstr "Message d'info"
|
|||||||
msgid "Alert message"
|
msgid "Alert message"
|
||||||
msgstr "Message d'alerte"
|
msgstr "Message d'alerte"
|
||||||
|
|
||||||
#: com/views.py:122 election/views.py:130 subscription/views.py:47
|
#: com/views.py:122 election/views.py:133 subscription/views.py:47
|
||||||
#: com/views.py:122 election/views.py:146
|
|
||||||
msgid "Start date"
|
msgid "Start date"
|
||||||
msgstr "Date de début"
|
msgstr "Date de début"
|
||||||
|
|
||||||
@ -1682,9 +1684,9 @@ msgstr "Un utilisateur de ce nom d'utilisateur existe déjà"
|
|||||||
#: core/templates/core/user_detail.jinja:14
|
#: core/templates/core/user_detail.jinja:14
|
||||||
#: core/templates/core/user_detail.jinja:16
|
#: core/templates/core/user_detail.jinja:16
|
||||||
#: core/templates/core/user_edit.jinja:17
|
#: core/templates/core/user_edit.jinja:17
|
||||||
#: election/templates/election/election_detail.jinja:316
|
#: election/templates/election/election_detail.jinja:317
|
||||||
#: forum/templates/forum/macros.jinja:93 forum/templates/forum/macros.jinja:95
|
#: forum/templates/forum/macros.jinja:93 forum/templates/forum/macros.jinja:95
|
||||||
#: forum/templates/forum/reply.jinja:37 forum/templates/forum/reply.jinja:39
|
#: forum/templates/forum/reply.jinja:41 forum/templates/forum/reply.jinja:43
|
||||||
#: trombi/templates/trombi/user_tools.jinja:43
|
#: trombi/templates/trombi/user_tools.jinja:43
|
||||||
msgid "Profile"
|
msgid "Profile"
|
||||||
msgstr "Profil"
|
msgstr "Profil"
|
||||||
@ -1876,7 +1878,8 @@ msgstr "S'enregister"
|
|||||||
msgid "View more"
|
msgid "View more"
|
||||||
msgstr "Voir plus"
|
msgstr "Voir plus"
|
||||||
|
|
||||||
#: core/templates/core/base.jinja:62 forum/templates/forum/last_unread.jinja:16
|
#: core/templates/core/base.jinja:62
|
||||||
|
#: forum/templates/forum/last_unread.jinja:16
|
||||||
msgid "Mark all as read"
|
msgid "Mark all as read"
|
||||||
msgstr "Marquer tout commme lu"
|
msgstr "Marquer tout commme lu"
|
||||||
|
|
||||||
@ -1908,7 +1911,7 @@ msgstr "SAS"
|
|||||||
|
|
||||||
#: core/templates/core/base.jinja:94 forum/templates/forum/forum.jinja:10
|
#: core/templates/core/base.jinja:94 forum/templates/forum/forum.jinja:10
|
||||||
#: forum/templates/forum/last_unread.jinja:13
|
#: forum/templates/forum/last_unread.jinja:13
|
||||||
#: forum/templates/forum/main.jinja:6 forum/templates/forum/main.jinja.py:11
|
#: forum/templates/forum/main.jinja:6 forum/templates/forum/main.jinja:11
|
||||||
#: forum/templates/forum/main.jinja:14 forum/templates/forum/reply.jinja:15
|
#: forum/templates/forum/main.jinja:14 forum/templates/forum/reply.jinja:15
|
||||||
#: forum/templates/forum/topic.jinja:30
|
#: forum/templates/forum/topic.jinja:30
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
@ -2122,11 +2125,13 @@ msgstr "login"
|
|||||||
msgid "Lost password?"
|
msgid "Lost password?"
|
||||||
msgstr "Mot de passe perdu ?"
|
msgstr "Mot de passe perdu ?"
|
||||||
|
|
||||||
#: core/templates/core/macros.jinja:31 core/templates/core/user_detail.jinja:27
|
#: core/templates/core/macros.jinja:31
|
||||||
|
#: core/templates/core/user_detail.jinja:27
|
||||||
msgid "Born: "
|
msgid "Born: "
|
||||||
msgstr "Né le : "
|
msgstr "Né le : "
|
||||||
|
|
||||||
#: core/templates/core/macros.jinja:35 core/templates/core/user_detail.jinja:48
|
#: core/templates/core/macros.jinja:35
|
||||||
|
#: core/templates/core/user_detail.jinja:48
|
||||||
msgid "Promo: "
|
msgid "Promo: "
|
||||||
msgstr "Promo : "
|
msgstr "Promo : "
|
||||||
|
|
||||||
@ -2713,23 +2718,23 @@ msgstr "Élections"
|
|||||||
msgid "See available elections"
|
msgid "See available elections"
|
||||||
msgstr "Voir les élections disponibles"
|
msgstr "Voir les élections disponibles"
|
||||||
|
|
||||||
#: core/templates/core/user_tools.jinja:105
|
#: core/templates/core/user_tools.jinja:106
|
||||||
msgid "See archived elections"
|
msgid "See archived elections"
|
||||||
msgstr "Voir les élections archivées"
|
msgstr "Voir les élections archivées"
|
||||||
|
|
||||||
#: core/templates/core/user_tools.jinja:107
|
#: core/templates/core/user_tools.jinja:108
|
||||||
msgid "Create a new election"
|
msgid "Create a new election"
|
||||||
msgstr "Créer une nouvelle élection"
|
msgstr "Créer une nouvelle élection"
|
||||||
|
|
||||||
#: core/templates/core/user_tools.jinja:110
|
#: core/templates/core/user_tools.jinja:111
|
||||||
msgid "Other tools"
|
msgid "Other tools"
|
||||||
msgstr "Autres outils"
|
msgstr "Autres outils"
|
||||||
|
|
||||||
#: core/templates/core/user_tools.jinja:112
|
#: core/templates/core/user_tools.jinja:113
|
||||||
msgid "Convert dokuwiki/BBcode syntax to Markdown"
|
msgid "Convert dokuwiki/BBcode syntax to Markdown"
|
||||||
msgstr "Convertir de la syntaxe dokuwiki/BBcode vers Markdown"
|
msgstr "Convertir de la syntaxe dokuwiki/BBcode vers Markdown"
|
||||||
|
|
||||||
#: core/templates/core/user_tools.jinja:113
|
#: core/templates/core/user_tools.jinja:114
|
||||||
msgid "Trombi tools"
|
msgid "Trombi tools"
|
||||||
msgstr "Outils Trombi"
|
msgstr "Outils Trombi"
|
||||||
|
|
||||||
@ -2853,7 +2858,7 @@ msgstr "produit parent"
|
|||||||
msgid "buying groups"
|
msgid "buying groups"
|
||||||
msgstr "groupe d'achat"
|
msgstr "groupe d'achat"
|
||||||
|
|
||||||
#: counter/models.py:140 election/models.py:34
|
#: counter/models.py:140 election/models.py:36
|
||||||
msgid "archived"
|
msgid "archived"
|
||||||
msgstr "archivé"
|
msgstr "archivé"
|
||||||
|
|
||||||
@ -2882,7 +2887,7 @@ msgstr "Bureau"
|
|||||||
#: eboutic/templates/eboutic/eboutic_main.jinja:24
|
#: eboutic/templates/eboutic/eboutic_main.jinja:24
|
||||||
#: eboutic/templates/eboutic/eboutic_makecommand.jinja:8
|
#: eboutic/templates/eboutic/eboutic_makecommand.jinja:8
|
||||||
#: eboutic/templates/eboutic/eboutic_payment_result.jinja:4
|
#: eboutic/templates/eboutic/eboutic_payment_result.jinja:4
|
||||||
#: sith/settings.py:361 sith/settings.py:369
|
#: sith/settings.py:364 sith/settings.py:372
|
||||||
msgid "Eboutic"
|
msgid "Eboutic"
|
||||||
msgstr "Eboutic"
|
msgstr "Eboutic"
|
||||||
|
|
||||||
@ -2923,8 +2928,8 @@ msgstr "quantité"
|
|||||||
msgid "Sith account"
|
msgid "Sith account"
|
||||||
msgstr "Compte utilisateur"
|
msgstr "Compte utilisateur"
|
||||||
|
|
||||||
#: counter/models.py:326 sith/settings.py:354 sith/settings.py:359
|
#: counter/models.py:326 sith/settings.py:357 sith/settings.py:362
|
||||||
#: sith/settings.py:381
|
#: sith/settings.py:384
|
||||||
msgid "Credit card"
|
msgid "Credit card"
|
||||||
msgstr "Carte bancaire"
|
msgstr "Carte bancaire"
|
||||||
|
|
||||||
@ -3084,7 +3089,7 @@ msgstr "Pas de date de naissance renseignée"
|
|||||||
#: launderette/templates/launderette/launderette_admin.jinja:35
|
#: launderette/templates/launderette/launderette_admin.jinja:35
|
||||||
#: launderette/templates/launderette/launderette_click.jinja:13
|
#: launderette/templates/launderette/launderette_click.jinja:13
|
||||||
#: sas/templates/sas/picture.jinja:82
|
#: sas/templates/sas/picture.jinja:82
|
||||||
#: subscription/templates/subscription/stats.jinja:14
|
#: subscription/templates/subscription/stats.jinja:19
|
||||||
msgid "Go"
|
msgid "Go"
|
||||||
msgstr "Valider"
|
msgstr "Valider"
|
||||||
|
|
||||||
@ -3439,15 +3444,15 @@ msgstr "Retourner à l'eboutic"
|
|||||||
msgid "You do not have enough money to buy the basket"
|
msgid "You do not have enough money to buy the basket"
|
||||||
msgstr "Vous n'avez pas assez d'argent pour acheter le panier"
|
msgstr "Vous n'avez pas assez d'argent pour acheter le panier"
|
||||||
|
|
||||||
#: election/models.py:15
|
#: election/models.py:14
|
||||||
msgid "start candidature"
|
msgid "start candidature"
|
||||||
msgstr "début des candidatures"
|
msgstr "début des candidatures"
|
||||||
|
|
||||||
#: election/models.py:16
|
#: election/models.py:15
|
||||||
msgid "end candidature"
|
msgid "end candidature"
|
||||||
msgstr "fin des candidatures"
|
msgstr "fin des candidatures"
|
||||||
|
|
||||||
#: election/models.py:22
|
#: election/models.py:21
|
||||||
msgid "edit groups"
|
msgid "edit groups"
|
||||||
msgstr "groupe d'édition"
|
msgstr "groupe d'édition"
|
||||||
|
|
||||||
@ -3455,15 +3460,15 @@ msgstr "groupe d'édition"
|
|||||||
msgid "view groups"
|
msgid "view groups"
|
||||||
msgstr "groupe de vue"
|
msgstr "groupe de vue"
|
||||||
|
|
||||||
#: election/models.py:28
|
#: election/models.py:29
|
||||||
msgid "vote groups"
|
msgid "vote groups"
|
||||||
msgstr "groupe de vote"
|
msgstr "groupe de vote"
|
||||||
|
|
||||||
#: election/models.py:31
|
#: election/models.py:33
|
||||||
msgid "candidature groups"
|
msgid "candidature groups"
|
||||||
msgstr "groupe de candidature"
|
msgstr "groupe de candidature"
|
||||||
|
|
||||||
#: election/models.py:91 election/models.py:134
|
#: election/models.py:91 election/models.py:129
|
||||||
msgid "election"
|
msgid "election"
|
||||||
msgstr "élection"
|
msgstr "élection"
|
||||||
|
|
||||||
@ -3471,17 +3476,17 @@ msgstr "élection"
|
|||||||
msgid "max choice"
|
msgid "max choice"
|
||||||
msgstr "nombre de choix maxi"
|
msgstr "nombre de choix maxi"
|
||||||
|
|
||||||
#: election/models.py:151
|
#: election/models.py:142
|
||||||
msgid "election list"
|
msgid "election list"
|
||||||
msgstr "liste électorale"
|
msgstr "liste électorale"
|
||||||
|
|
||||||
#: election/models.py:167
|
#: election/models.py:156
|
||||||
msgid "candidature"
|
msgid "candidature"
|
||||||
msgstr "candidature"
|
msgstr "candidature"
|
||||||
|
|
||||||
#: election/templates/election/candidate_form.jinja:4
|
#: election/templates/election/candidate_form.jinja:4
|
||||||
#: election/templates/election/candidate_form.jinja:13
|
#: election/templates/election/candidate_form.jinja:13
|
||||||
#: election/templates/election/election_detail.jinja:365
|
#: election/templates/election/election_detail.jinja:366
|
||||||
msgid "Candidate"
|
msgid "Candidate"
|
||||||
msgstr "Candidater"
|
msgstr "Candidater"
|
||||||
|
|
||||||
@ -3523,41 +3528,41 @@ msgstr "Vous avez déjà soumis votre vote."
|
|||||||
msgid "You have voted in this election."
|
msgid "You have voted in this election."
|
||||||
msgstr "Vous avez déjà voté pour cette élection."
|
msgstr "Vous avez déjà voté pour cette élection."
|
||||||
|
|
||||||
#: election/templates/election/election_detail.jinja:266 election/views.py:90
|
#: election/templates/election/election_detail.jinja:266 election/views.py:82
|
||||||
msgid "Blank vote"
|
msgid "Blank vote"
|
||||||
msgstr "Vote blanc"
|
msgstr "Vote blanc"
|
||||||
|
|
||||||
#: election/templates/election/election_detail.jinja:283
|
#: election/templates/election/election_detail.jinja:284
|
||||||
msgid "You may choose up to"
|
msgid "You may choose up to"
|
||||||
msgstr "Vous pouvez choisir jusqu'à"
|
msgstr "Vous pouvez choisir jusqu'à"
|
||||||
|
|
||||||
#: election/templates/election/election_detail.jinja:283
|
#: election/templates/election/election_detail.jinja:284
|
||||||
msgid "people."
|
msgid "people."
|
||||||
msgstr "personne(s)"
|
msgstr "personne(s)"
|
||||||
|
|
||||||
#: election/templates/election/election_detail.jinja:297
|
#: election/templates/election/election_detail.jinja:298
|
||||||
msgid "Choose blank vote"
|
msgid "Choose blank vote"
|
||||||
msgstr "Choisir de voter blanc"
|
msgstr "Choisir de voter blanc"
|
||||||
|
|
||||||
#: election/templates/election/election_detail.jinja:304
|
#: election/templates/election/election_detail.jinja:305
|
||||||
#: election/templates/election/election_detail.jinja:344
|
#: election/templates/election/election_detail.jinja:345
|
||||||
msgid "votes"
|
msgid "votes"
|
||||||
msgstr "votes"
|
msgstr "votes"
|
||||||
|
|
||||||
#: election/templates/election/election_detail.jinja:337
|
#: election/templates/election/election_detail.jinja:338
|
||||||
#: launderette/templates/launderette/launderette_book.jinja:12
|
#: launderette/templates/launderette/launderette_book.jinja:12
|
||||||
msgid "Choose"
|
msgid "Choose"
|
||||||
msgstr "Choisir"
|
msgstr "Choisir"
|
||||||
|
|
||||||
#: election/templates/election/election_detail.jinja:360
|
#: election/templates/election/election_detail.jinja:361
|
||||||
msgid "Submit the vote !"
|
msgid "Submit the vote !"
|
||||||
msgstr "Envoyer le vote !"
|
msgstr "Envoyer le vote !"
|
||||||
|
|
||||||
#: election/templates/election/election_detail.jinja:368
|
#: election/templates/election/election_detail.jinja:369
|
||||||
msgid "Add a new list"
|
msgid "Add a new list"
|
||||||
msgstr "Ajouter une nouvelle liste"
|
msgstr "Ajouter une nouvelle liste"
|
||||||
|
|
||||||
#: election/templates/election/election_detail.jinja:372
|
#: election/templates/election/election_detail.jinja:373
|
||||||
msgid "Add a new role"
|
msgid "Add a new role"
|
||||||
msgstr "Ajouter un nouveau rôle"
|
msgstr "Ajouter un nouveau rôle"
|
||||||
|
|
||||||
@ -3582,23 +3587,23 @@ msgstr "au"
|
|||||||
msgid "Polls open from"
|
msgid "Polls open from"
|
||||||
msgstr "Votes ouverts du"
|
msgstr "Votes ouverts du"
|
||||||
|
|
||||||
#: election/views.py:46
|
#: election/views.py:43
|
||||||
msgid "You have selected too much candidates."
|
msgid "You have selected too much candidates."
|
||||||
msgstr "Vous avez sélectionné trop de candidats."
|
msgstr "Vous avez sélectionné trop de candidats."
|
||||||
|
|
||||||
#: election/views.py:62
|
#: election/views.py:58
|
||||||
msgid "User to candidate"
|
msgid "User to candidate"
|
||||||
msgstr "Utilisateur se présentant"
|
msgstr "Utilisateur se présentant"
|
||||||
|
|
||||||
#: election/views.py:112
|
#: election/views.py:102
|
||||||
msgid "This role already exists for this election"
|
msgid "This role already exists for this election"
|
||||||
msgstr "Ce rôle existe déjà pour cette élection"
|
msgstr "Ce rôle existe déjà pour cette élection"
|
||||||
|
|
||||||
#: election/views.py:152
|
#: election/views.py:137
|
||||||
msgid "Start candidature"
|
msgid "Start candidature"
|
||||||
msgstr "Début des candidatures"
|
msgstr "Début des candidatures"
|
||||||
|
|
||||||
#: election/views.py:155
|
#: election/views.py:139
|
||||||
msgid "End candidature"
|
msgid "End candidature"
|
||||||
msgstr "Fin des candidatures"
|
msgstr "Fin des candidatures"
|
||||||
|
|
||||||
@ -3718,11 +3723,15 @@ msgstr "Voir les derniers messages non lus"
|
|||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "Répondre"
|
msgstr "Répondre"
|
||||||
|
|
||||||
#: forum/views.py:98
|
#: forum/templates/forum/reply.jinja:32
|
||||||
|
msgid "Help on the syntax"
|
||||||
|
msgstr "Aide sur la syntaxe"
|
||||||
|
|
||||||
|
#: forum/views.py:99
|
||||||
msgid "Apply rights and club owner recursively"
|
msgid "Apply rights and club owner recursively"
|
||||||
msgstr "Appliquer les droits et le club propriétaire récursivement"
|
msgstr "Appliquer les droits et le club propriétaire récursivement"
|
||||||
|
|
||||||
#: forum/views.py:257
|
#: forum/views.py:259
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(author)s said"
|
msgid "%(author)s said"
|
||||||
msgstr "Citation de %(author)s"
|
msgstr "Citation de %(author)s"
|
||||||
@ -3783,12 +3792,12 @@ msgid "Washing and drying"
|
|||||||
msgstr "Lavage et séchage"
|
msgstr "Lavage et séchage"
|
||||||
|
|
||||||
#: launderette/templates/launderette/launderette_book.jinja:27
|
#: launderette/templates/launderette/launderette_book.jinja:27
|
||||||
#: sith/settings.py:519
|
#: sith/settings.py:522
|
||||||
msgid "Washing"
|
msgid "Washing"
|
||||||
msgstr "Lavage"
|
msgstr "Lavage"
|
||||||
|
|
||||||
#: launderette/templates/launderette/launderette_book.jinja:31
|
#: launderette/templates/launderette/launderette_book.jinja:31
|
||||||
#: sith/settings.py:519
|
#: sith/settings.py:522
|
||||||
msgid "Drying"
|
msgid "Drying"
|
||||||
msgstr "Séchage"
|
msgstr "Séchage"
|
||||||
|
|
||||||
@ -3938,209 +3947,209 @@ msgstr "Anglais"
|
|||||||
msgid "French"
|
msgid "French"
|
||||||
msgstr "Français"
|
msgstr "Français"
|
||||||
|
|
||||||
#: sith/settings.py:335
|
#: sith/settings.py:338
|
||||||
msgid "TC"
|
msgid "TC"
|
||||||
msgstr "TC"
|
msgstr "TC"
|
||||||
|
|
||||||
#: sith/settings.py:336
|
#: sith/settings.py:339
|
||||||
msgid "IMSI"
|
msgid "IMSI"
|
||||||
msgstr "IMSI"
|
msgstr "IMSI"
|
||||||
|
|
||||||
#: sith/settings.py:337
|
#: sith/settings.py:340
|
||||||
msgid "IMAP"
|
msgid "IMAP"
|
||||||
msgstr "IMAP"
|
msgstr "IMAP"
|
||||||
|
|
||||||
#: sith/settings.py:338
|
#: sith/settings.py:341
|
||||||
msgid "INFO"
|
msgid "INFO"
|
||||||
msgstr "INFO"
|
msgstr "INFO"
|
||||||
|
|
||||||
#: sith/settings.py:339
|
#: sith/settings.py:342
|
||||||
msgid "GI"
|
msgid "GI"
|
||||||
msgstr "GI"
|
msgstr "GI"
|
||||||
|
|
||||||
#: sith/settings.py:340
|
#: sith/settings.py:343
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr "E"
|
msgstr "E"
|
||||||
|
|
||||||
#: sith/settings.py:341
|
#: sith/settings.py:344
|
||||||
msgid "EE"
|
msgid "EE"
|
||||||
msgstr "EE"
|
msgstr "EE"
|
||||||
|
|
||||||
#: sith/settings.py:342
|
#: sith/settings.py:345
|
||||||
msgid "GESC"
|
msgid "GESC"
|
||||||
msgstr "GESC"
|
msgstr "GESC"
|
||||||
|
|
||||||
#: sith/settings.py:343
|
#: sith/settings.py:346
|
||||||
msgid "GMC"
|
msgid "GMC"
|
||||||
msgstr "GMC"
|
msgstr "GMC"
|
||||||
|
|
||||||
#: sith/settings.py:344
|
#: sith/settings.py:347
|
||||||
msgid "MC"
|
msgid "MC"
|
||||||
msgstr "MC"
|
msgstr "MC"
|
||||||
|
|
||||||
#: sith/settings.py:345
|
#: sith/settings.py:348
|
||||||
msgid "EDIM"
|
msgid "EDIM"
|
||||||
msgstr "EDIM"
|
msgstr "EDIM"
|
||||||
|
|
||||||
#: sith/settings.py:346
|
#: sith/settings.py:349
|
||||||
msgid "Humanities"
|
msgid "Humanities"
|
||||||
msgstr "Humanités"
|
msgstr "Humanités"
|
||||||
|
|
||||||
#: sith/settings.py:347
|
#: sith/settings.py:350
|
||||||
msgid "N/A"
|
msgid "N/A"
|
||||||
msgstr "N/A"
|
msgstr "N/A"
|
||||||
|
|
||||||
#: sith/settings.py:351 sith/settings.py:358 sith/settings.py:379
|
#: sith/settings.py:354 sith/settings.py:361 sith/settings.py:382
|
||||||
msgid "Check"
|
msgid "Check"
|
||||||
msgstr "Chèque"
|
msgstr "Chèque"
|
||||||
|
|
||||||
#: sith/settings.py:352 sith/settings.py:360 sith/settings.py:380
|
#: sith/settings.py:355 sith/settings.py:363 sith/settings.py:383
|
||||||
msgid "Cash"
|
msgid "Cash"
|
||||||
msgstr "Espèces"
|
msgstr "Espèces"
|
||||||
|
|
||||||
#: sith/settings.py:353
|
#: sith/settings.py:356
|
||||||
msgid "Transfert"
|
msgid "Transfert"
|
||||||
msgstr "Virement"
|
msgstr "Virement"
|
||||||
|
|
||||||
#: sith/settings.py:366
|
#: sith/settings.py:369
|
||||||
msgid "Belfort"
|
msgid "Belfort"
|
||||||
msgstr "Belfort"
|
msgstr "Belfort"
|
||||||
|
|
||||||
#: sith/settings.py:367
|
#: sith/settings.py:370
|
||||||
msgid "Sevenans"
|
msgid "Sevenans"
|
||||||
msgstr "Sevenans"
|
msgstr "Sevenans"
|
||||||
|
|
||||||
#: sith/settings.py:368
|
#: sith/settings.py:371
|
||||||
msgid "Montbéliard"
|
msgid "Montbéliard"
|
||||||
msgstr "Montbéliard"
|
msgstr "Montbéliard"
|
||||||
|
|
||||||
#: sith/settings.py:412
|
#: sith/settings.py:415
|
||||||
msgid "One semester"
|
msgid "One semester"
|
||||||
msgstr "Un semestre, 15 €"
|
msgstr "Un semestre, 15 €"
|
||||||
|
|
||||||
#: sith/settings.py:417
|
#: sith/settings.py:420
|
||||||
msgid "Two semesters"
|
msgid "Two semesters"
|
||||||
msgstr "Deux semestres, 28 €"
|
msgstr "Deux semestres, 28 €"
|
||||||
|
|
||||||
#: sith/settings.py:422
|
#: sith/settings.py:425
|
||||||
msgid "Common core cursus"
|
msgid "Common core cursus"
|
||||||
msgstr "Cursus tronc commun, 45 €"
|
msgstr "Cursus tronc commun, 45 €"
|
||||||
|
|
||||||
#: sith/settings.py:427
|
#: sith/settings.py:430
|
||||||
msgid "Branch cursus"
|
msgid "Branch cursus"
|
||||||
msgstr "Cursus branche, 45 €"
|
msgstr "Cursus branche, 45 €"
|
||||||
|
|
||||||
#: sith/settings.py:432
|
#: sith/settings.py:435
|
||||||
msgid "Alternating cursus"
|
msgid "Alternating cursus"
|
||||||
msgstr "Cursus alternant, 30 €"
|
msgstr "Cursus alternant, 30 €"
|
||||||
|
|
||||||
#: sith/settings.py:437
|
#: sith/settings.py:440
|
||||||
msgid "Honorary member"
|
msgid "Honorary member"
|
||||||
msgstr "Membre honoraire, 0 €"
|
msgstr "Membre honoraire, 0 €"
|
||||||
|
|
||||||
#: sith/settings.py:442
|
#: sith/settings.py:445
|
||||||
msgid "Assidu member"
|
msgid "Assidu member"
|
||||||
msgstr "Membre d'Assidu, 0 €"
|
msgstr "Membre d'Assidu, 0 €"
|
||||||
|
|
||||||
#: sith/settings.py:447
|
#: sith/settings.py:450
|
||||||
msgid "Amicale/DOCEO member"
|
msgid "Amicale/DOCEO member"
|
||||||
msgstr "Membre de l'Amicale/DOCEO, 0 €"
|
msgstr "Membre de l'Amicale/DOCEO, 0 €"
|
||||||
|
|
||||||
#: sith/settings.py:452
|
#: sith/settings.py:455
|
||||||
msgid "UT network member"
|
msgid "UT network member"
|
||||||
msgstr "Cotisant du réseau UT, 0 €"
|
msgstr "Cotisant du réseau UT, 0 €"
|
||||||
|
|
||||||
#: sith/settings.py:457
|
#: sith/settings.py:460
|
||||||
msgid "CROUS member"
|
msgid "CROUS member"
|
||||||
msgstr "Membres du CROUS, 0 €"
|
msgstr "Membres du CROUS, 0 €"
|
||||||
|
|
||||||
#: sith/settings.py:462
|
#: sith/settings.py:465
|
||||||
msgid "Sbarro/ESTA member"
|
msgid "Sbarro/ESTA member"
|
||||||
msgstr "Membre de Sbarro ou de l'ESTA, 15 €"
|
msgstr "Membre de Sbarro ou de l'ESTA, 15 €"
|
||||||
|
|
||||||
#: sith/settings.py:484
|
#: sith/settings.py:487
|
||||||
msgid "President"
|
msgid "President"
|
||||||
msgstr "Président"
|
msgstr "Président"
|
||||||
|
|
||||||
#: sith/settings.py:485
|
#: sith/settings.py:488
|
||||||
msgid "Vice-President"
|
msgid "Vice-President"
|
||||||
msgstr "Vice-Président"
|
msgstr "Vice-Président"
|
||||||
|
|
||||||
#: sith/settings.py:486
|
#: sith/settings.py:489
|
||||||
msgid "Treasurer"
|
msgid "Treasurer"
|
||||||
msgstr "Trésorier"
|
msgstr "Trésorier"
|
||||||
|
|
||||||
#: sith/settings.py:487
|
#: sith/settings.py:490
|
||||||
msgid "Communication supervisor"
|
msgid "Communication supervisor"
|
||||||
msgstr "Responsable communication"
|
msgstr "Responsable communication"
|
||||||
|
|
||||||
#: sith/settings.py:488
|
#: sith/settings.py:491
|
||||||
msgid "Secretary"
|
msgid "Secretary"
|
||||||
msgstr "Secrétaire"
|
msgstr "Secrétaire"
|
||||||
|
|
||||||
#: sith/settings.py:489
|
#: sith/settings.py:492
|
||||||
msgid "IT supervisor"
|
msgid "IT supervisor"
|
||||||
msgstr "Responsable info"
|
msgstr "Responsable info"
|
||||||
|
|
||||||
#: sith/settings.py:490
|
#: sith/settings.py:493
|
||||||
msgid "Board member"
|
msgid "Board member"
|
||||||
msgstr "Membre du bureau"
|
msgstr "Membre du bureau"
|
||||||
|
|
||||||
#: sith/settings.py:491
|
#: sith/settings.py:494
|
||||||
msgid "Active member"
|
msgid "Active member"
|
||||||
msgstr "Membre actif"
|
msgstr "Membre actif"
|
||||||
|
|
||||||
#: sith/settings.py:492
|
#: sith/settings.py:495
|
||||||
msgid "Curious"
|
msgid "Curious"
|
||||||
msgstr "Curieux"
|
msgstr "Curieux"
|
||||||
|
|
||||||
#: sith/settings.py:526
|
#: sith/settings.py:529
|
||||||
msgid "A fresh new to be moderated"
|
msgid "A fresh new to be moderated"
|
||||||
msgstr "Une nouvelle toute neuve à modérer"
|
msgstr "Une nouvelle toute neuve à modérer"
|
||||||
|
|
||||||
#: sith/settings.py:527
|
#: sith/settings.py:530
|
||||||
msgid "New files to be moderated"
|
msgid "New files to be moderated"
|
||||||
msgstr "Nouveaux fichiers à modérer"
|
msgstr "Nouveaux fichiers à modérer"
|
||||||
|
|
||||||
#: sith/settings.py:528
|
#: sith/settings.py:531
|
||||||
msgid "New pictures/album to be moderated in the SAS"
|
msgid "New pictures/album to be moderated in the SAS"
|
||||||
msgstr "Nouvelles photos/albums à modérer dans le SAS"
|
msgstr "Nouvelles photos/albums à modérer dans le SAS"
|
||||||
|
|
||||||
#: sith/settings.py:529
|
#: sith/settings.py:532
|
||||||
msgid "You've been identified on some pictures"
|
msgid "You've been identified on some pictures"
|
||||||
msgstr "Vous avez été identifié sur des photos"
|
msgstr "Vous avez été identifié sur des photos"
|
||||||
|
|
||||||
#: sith/settings.py:530
|
#: sith/settings.py:533
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You just refilled of %s €"
|
msgid "You just refilled of %s €"
|
||||||
msgstr "Vous avez rechargé votre compte de %s €"
|
msgstr "Vous avez rechargé votre compte de %s €"
|
||||||
|
|
||||||
#: sith/settings.py:531
|
#: sith/settings.py:534
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "You just bought %s"
|
msgid "You just bought %s"
|
||||||
msgstr "Vous avez acheté %s"
|
msgstr "Vous avez acheté %s"
|
||||||
|
|
||||||
#: sith/settings.py:532
|
#: sith/settings.py:535
|
||||||
msgid "You have a notification"
|
msgid "You have a notification"
|
||||||
msgstr "Vous avez une notification"
|
msgstr "Vous avez une notification"
|
||||||
|
|
||||||
#: sith/settings.py:536
|
#: sith/settings.py:539
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "Succès !"
|
msgstr "Succès !"
|
||||||
|
|
||||||
#: sith/settings.py:537
|
#: sith/settings.py:540
|
||||||
msgid "Fail!"
|
msgid "Fail!"
|
||||||
msgstr "Échec !"
|
msgstr "Échec !"
|
||||||
|
|
||||||
#: sith/settings.py:538
|
#: sith/settings.py:541
|
||||||
msgid "You successfully posted an article in the Weekmail"
|
msgid "You successfully posted an article in the Weekmail"
|
||||||
msgstr "Article posté avec succès dans le Weekmail"
|
msgstr "Article posté avec succès dans le Weekmail"
|
||||||
|
|
||||||
#: sith/settings.py:539
|
#: sith/settings.py:542
|
||||||
msgid "You successfully edited an article in the Weekmail"
|
msgid "You successfully edited an article in the Weekmail"
|
||||||
msgstr "Article édité avec succès dans le Weekmail"
|
msgstr "Article édité avec succès dans le Weekmail"
|
||||||
|
|
||||||
#: sith/settings.py:540
|
#: sith/settings.py:543
|
||||||
msgid "You successfully sent the Weekmail"
|
msgid "You successfully sent the Weekmail"
|
||||||
msgstr "Weekmail envoyé avec succès"
|
msgstr "Weekmail envoyé avec succès"
|
||||||
|
|
||||||
@ -4374,15 +4383,15 @@ msgstr "Vous ne pouvez pas cotiser plusieurs fois pour la même période"
|
|||||||
msgid "Subscription error"
|
msgid "Subscription error"
|
||||||
msgstr "Erreur de cotisation"
|
msgstr "Erreur de cotisation"
|
||||||
|
|
||||||
#: subscription/templates/subscription/stats.jinja:18
|
#: subscription/templates/subscription/stats.jinja:25
|
||||||
msgid "Total subscriptions"
|
msgid "Total subscriptions"
|
||||||
msgstr "Cotisations totales"
|
msgstr "Cotisations totales"
|
||||||
|
|
||||||
#: subscription/templates/subscription/stats.jinja:19
|
#: subscription/templates/subscription/stats.jinja:26
|
||||||
msgid "Subscriptions by type"
|
msgid "Subscriptions by type"
|
||||||
msgstr "Cotisations par type"
|
msgstr "Cotisations par type"
|
||||||
|
|
||||||
#: subscription/templates/subscription/stats.jinja:29
|
#: subscription/templates/subscription/stats.jinja:36
|
||||||
msgid "Subscription type"
|
msgid "Subscription type"
|
||||||
msgstr "Type de cotisation"
|
msgstr "Type de cotisation"
|
||||||
|
|
||||||
|
@ -318,6 +318,9 @@ SITH_CLUB_REFOUND_ID = 89
|
|||||||
SITH_COUNTER_REFOUND_ID = 38
|
SITH_COUNTER_REFOUND_ID = 38
|
||||||
SITH_PRODUCT_REFOUND_ID = 5
|
SITH_PRODUCT_REFOUND_ID = 5
|
||||||
|
|
||||||
|
# Pages
|
||||||
|
SITH_CORE_PAGE_SYNTAX = "Aide_sur_la_syntaxe"
|
||||||
|
|
||||||
# Forum
|
# Forum
|
||||||
|
|
||||||
SITH_FORUM_PAGE_LENGTH = 30
|
SITH_FORUM_PAGE_LENGTH = 30
|
||||||
|
Loading…
Reference in New Issue
Block a user