Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Sith
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
59
Issues
59
List
Boards
Labels
Service Desk
Milestones
Merge Requests
9
Merge Requests
9
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
AE
Sith
Commits
724f3d8d
Commit
724f3d8d
authored
Jul 21, 2016
by
Skia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Templates and views
parent
28aa143f
Pipeline
#61
failed with stage
in 1 minute and 13 seconds
Changes
6
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
159 additions
and
105 deletions
+159
-105
accounting/templates/accounting/bank_account_details.jinja
accounting/templates/accounting/bank_account_details.jinja
+6
-1
accounting/templates/accounting/club_account_details.jinja
accounting/templates/accounting/club_account_details.jinja
+1
-6
accounting/views.py
accounting/views.py
+3
-4
core/templates/core/user_tools.jinja
core/templates/core/user_tools.jinja
+19
-1
locale/fr/LC_MESSAGES/django.mo
locale/fr/LC_MESSAGES/django.mo
+0
-0
locale/fr/LC_MESSAGES/django.po
locale/fr/LC_MESSAGES/django.po
+130
-93
No files found.
accounting/templates/accounting/bank_account_details.jinja
View file @
724f3d8d
...
...
@@ -5,7 +5,12 @@
<a
href=
"
{{
url
(
'accounting:bank_list'
)
}}
"
>
{%
trans
%}
Accounting
{%
endtrans
%}
</a>
>
{{
object.name
}}
</p>
<h2>
{%
trans
%}
View account
{%
endtrans
%}
</h2>
<h2>
{%
trans
%}
Bank account:
{%
endtrans
%}{{
object.name
}}
</h2>
<h4>
{%
trans
%}
Infos
{%
endtrans
%}
</h4>
<ul>
<li><strong>
{%
trans
%}
IBAN:
{%
endtrans
%}
</strong>
{{
object.iban
}}
</li>
<li><strong>
{%
trans
%}
Number:
{%
endtrans
%}
</strong>
{{
object.number
}}
</li>
</ul>
<p><a
href=
"
{{
url
(
'accounting:club_new'
)
}}
?parent=
{{
object.id
}}
"
>
{%
trans
%}
New club account
{%
endtrans
%}
</a></p>
<ul>
{%
for
c
in
object.club_accounts.all
()
%}
...
...
accounting/templates/accounting/club_account_details.jinja
View file @
724f3d8d
...
...
@@ -5,12 +5,7 @@
<a
href=
"
{{
url
(
'accounting:bank_list'
)
}}
"
>
{%
trans
%}
Accounting
{%
endtrans
%}
</a>
>
<a
href=
"
{{
url
(
'accounting:bank_details'
,
b_account_id
=
object.bank_account.id
)
}}
"
>
{{
object.bank_account
}}
</a>
>
{{
object
}}
<h2>
{%
trans
%}
View account:
{%
endtrans
%}
{{
object.name
}}
</h2>
<ul>
{%
for
k
,
v
in
object.__dict__.items
()
%}
<li>
{{
k
}}
-
{{
v
}}
</li>
{%
endfor
%}
</ul>
<h2>
{%
trans
%}
Club account:
{%
endtrans
%}
{{
object.name
}}
</h2>
{%
if
not
object.has_open_journal
()
%}
<p><a
href=
"
{{
url
(
'accounting:journal_new'
)
}}
?parent=
{{
object.id
}}
"
>
{%
trans
%}
New journal
{%
endtrans
%}
</a></p>
{%
else
%}
...
...
accounting/views.py
View file @
724f3d8d
...
...
@@ -65,7 +65,7 @@ class BankAccountCreateView(CanCreateMixin, CreateView):
Create a bank account (for the admins)
"""
model
=
BankAccount
fields
=
[
'name'
,
'iban'
,
'number'
]
fields
=
[
'name'
,
'
club'
,
'
iban'
,
'number'
]
template_name
=
'core/create.jinja'
class
BankAccountDeleteView
(
CanEditPropMixin
,
DeleteView
):
# TODO change Delete to Close
...
...
@@ -163,9 +163,8 @@ class OperationCreateView(CanCreateMixin, CreateView):
Create an operation
"""
model
=
Operation
# fields = ['type', 'amount', 'label', 'remark', 'journal', 'date', 'cheque_number', 'accounting_type', 'done']
form_class
=
modelform_factory
(
Operation
,
fields
=
[
'amount'
,
'label'
,
'remark'
,
'journal'
,
'date'
,
'cheque_number'
,
'accounting_type'
,
'done'
],
fields
=
[
'amount'
,
'label'
,
'remark'
,
'journal'
,
'date'
,
'
mode'
,
'
cheque_number'
,
'accounting_type'
,
'done'
],
widgets
=
{
'journal'
:
HiddenInput
})
template_name
=
'core/create.jinja'
...
...
@@ -183,6 +182,6 @@ class OperationEditView(CanEditMixin, UpdateView):
"""
model
=
Operation
pk_url_kwarg
=
"op_id"
fields
=
[
'amount'
,
'label'
,
'remark'
,
'date'
,
'cheque_number'
,
'accounting_type'
,
'done'
]
fields
=
[
'amount'
,
'label'
,
'remark'
,
'date'
,
'
mode'
,
'
cheque_number'
,
'accounting_type'
,
'done'
]
template_name
=
'core/edit.jinja'
core/templates/core/user_tools.jinja
View file @
724f3d8d
...
...
@@ -7,6 +7,7 @@
{%
block
content
%}
<h3>
{%
trans
%}
User Tools
{%
endtrans
%}
</h3>
<hr>
<h4>
{%
trans
%}
Sith management
{%
endtrans
%}
</h4>
<ul>
{%
if
user.is_in_group
(
settings.SITH_GROUPS
[
'root'
][
'name'
])
%}
...
...
@@ -23,6 +24,7 @@
{%
endif
%}
</ul>
<hr>
<h4>
{%
trans
%}
Counters
{%
endtrans
%}
</h4>
<ul>
{%
for
b
in
settings.SITH_COUNTER_BARS
%}
...
...
@@ -33,7 +35,23 @@
{%
endfor
%}
</ul>
<h4>
{%
trans
%}
Clubs
{%
endtrans
%}
</h4>
<hr>
<h4>
{%
trans
%}
Accounting
{%
endtrans
%}
</h4>
<ul>
{%
for
m
in
user.membership.
filter
(
end_date
=
None
)
.
filter
(
role__gte
=
7
)
.
all
()
%}
{%
for
b
in
m.club.bank_accounts.all
()
%}
<li><strong>
{%
trans
%}
Bank account:
{%
endtrans
%}
</strong>
<a
href=
"
{{
url
(
'accounting:bank_details'
,
b_account_id
=
b.id
)
}}
"
>
{{
b.club
}}
</a></li>
{%
endfor
%}
{%
if
m.club.club_account
%}
<li><strong>
{%
trans
%}
Club account:
{%
endtrans
%}
</strong>
<a
href=
"
{{
url
(
'accounting:club_details'
,
c_account_id
=
m.club.club_account.id
)
}}
"
>
{{
m.club.club_account
}}
</a></li>
{%
endif
%}
{%
endfor
%}
</ul>
<hr>
<h4>
{%
trans
%}
Club tools
{%
endtrans
%}
</h4>
<ul>
{%
for
m
in
user.membership.
filter
(
end_date
=
None
)
.
all
()
%}
<li><a
href=
"
{{
url
(
'club:tools'
,
club_id
=
m.club.id
)
}}
"
>
{{
m.club
}}
</a></li>
...
...
locale/fr/LC_MESSAGES/django.mo
View file @
724f3d8d
No preview for this file type
locale/fr/LC_MESSAGES/django.po
View file @
724f3d8d
...
...
@@ -6,7 +6,7 @@
msgid
""
msgstr
""
"Report-Msgid-Bugs-To:
\n
"
"POT-Creation-Date: 2016-07-
19 17:00+00
00
\n
"
"POT-Creation-Date: 2016-07-
21 12:08+02
00
\n
"
"PO-Revision-Date: 2016-07-18
\n
"
"Last-Translator: Skia <skia@libskia.so>
\n
"
"Language-Team: AE info <ae.info@utbm.fr>
\n
"
...
...
@@ -16,71 +16,84 @@ msgstr ""
"Content-Transfer-Encoding: 8bit
\n
"
"Plural-Forms: nplurals=2; plural=(n > 1);
\n
"
#: accounting/models.py:
29 accounting/models.py:52 accounting/models.py:91
#: club/models.py:18 counter/models.py:3
5 counter/models.py:54
#: counter/models.py:
76
#: accounting/models.py:
32 accounting/models.py:55 accounting/models.py:94
#: club/models.py:18 counter/models.py:3
9 counter/models.py:58
#: counter/models.py:
80
msgid
"name"
msgstr
"nom"
#: accounting/models.py:3
0
#: accounting/models.py:3
3
msgid
"iban"
msgstr
"IBAN"
#: accounting/models.py:3
1
#: accounting/models.py:3
4
msgid
"account number"
msgstr
"numero de compte"
#: accounting/models.py:
89 club/models.py:109 counter/models.py:211
#: accounting/models.py:
92 club/models.py:109 counter/models.py:215
msgid
"start date"
msgstr
"date de début"
#: accounting/models.py:9
0 club/models.py:110 counter/models.py:212
#: accounting/models.py:9
3 club/models.py:110 counter/models.py:216
msgid
"end date"
msgstr
"date de fin"
#: accounting/models.py:9
2
#: accounting/models.py:9
5
msgid
"is closed"
msgstr
"est fermé"
#: accounting/models.py:9
4 accounting/models.py:132 counter/models.py:21
#: counter/models.py:1
59
#: accounting/models.py:9
7 accounting/models.py:136 counter/models.py:22
#: counter/models.py:1
63
msgid
"amount"
msgstr
"montant"
#: accounting/models.py:9
5
#: accounting/models.py:9
8
msgid
"effective_amount"
msgstr
"montant effectif"
#: accounting/models.py:133 core/models.py:456 counter/models.py:162
#: counter/models.py:190
#: accounting/models.py:134
msgid
"number"
msgstr
"numéro"
#: accounting/models.py:137 core/models.py:462 counter/models.py:166
#: counter/models.py:194
msgid
"date"
msgstr
"date"
#: accounting/models.py:13
4 accounting/models.py:182
#: accounting/models.py:13
8 accounting/models.py:198
msgid
"label"
msgstr
"intitulé"
#: accounting/models.py:13
5
#: accounting/models.py:13
9
msgid
"remark"
msgstr
"remarque"
#: accounting/models.py:1
36 counter/models.py:163
subscription/models.py:34
#: accounting/models.py:1
40 counter/models.py:167
subscription/models.py:34
msgid
"payment method"
msgstr
"méthode de paiement"
#: accounting/models.py:1
37
#: accounting/models.py:1
41
msgid
"cheque number"
msgstr
"numéro de chèque"
#: accounting/models.py:1
39
#: accounting/models.py:1
43
msgid
"is done"
msgstr
"est fait"
#: accounting/models.py:181 counter/models.py:57
#: accounting/models.py:153
#, python-format
msgid
""
"The date can not be before the start date of the journal, which is
\n
"
"%(start_date)s."
msgstr
""
"La date ne peut pas être avant la date de début du journal, qui est
\n
"
"%(start_date)s."
#: accounting/models.py:197 counter/models.py:61
msgid
"code"
msgstr
"code"
#: accounting/models.py:1
83
#: accounting/models.py:1
99
msgid
"movement type"
msgstr
"type de mouvement"
...
...
@@ -100,31 +113,46 @@ msgstr "Il n'y a pas de types comptable dans ce site web."
#: accounting/templates/accounting/bank_account_details.jinja:5
#: accounting/templates/accounting/club_account_details.jinja:5
#: accounting/templates/accounting/journal_details.jinja:5
#: core/templates/core/user_tools.jinja:19
#: core/templates/core/user_tools.jinja:20
#: core/templates/core/user_tools.jinja:39
msgid
"Accounting"
msgstr
"Comptabilité"
#: accounting/templates/accounting/bank_account_details.jinja:8
msgid
"View account"
msgstr
"Voir le compte"
#: core/templates/core/user_tools.jinja:43
msgid
"Bank account: "
msgstr
"Compte en banque : "
#: accounting/templates/accounting/bank_account_details.jinja:9
#: core/templates/core/user_base.jinja:6
msgid
"Infos"
msgstr
"Infos"
#: accounting/templates/accounting/bank_account_details.jinja:11
msgid
"IBAN: "
msgstr
"IBAN : "
#: accounting/templates/accounting/bank_account_details.jinja:12
msgid
"Number: "
msgstr
"Numéro : "
#: accounting/templates/accounting/bank_account_details.jinja:14
msgid
"New club account"
msgstr
"Nouveau compte club"
#: accounting/templates/accounting/bank_account_details.jinja:1
3
#: accounting/templates/accounting/bank_account_details.jinja:1
8
#: accounting/templates/accounting/bank_account_list.jinja:15
#: accounting/templates/accounting/club_account_details.jinja:4
5
#: accounting/templates/accounting/journal_details.jinja:
48
#: accounting/templates/accounting/club_account_details.jinja:4
4
#: accounting/templates/accounting/journal_details.jinja:
51
#: club/templates/club/club_detail.jinja:7
#: core/templates/core/page_detail.jinja:7
#: core/templates/core/user_base.jinja:8
#: core/templates/core/user_tools.jinja:3
1
#: core/templates/core/user_tools.jinja:3
3
#: counter/templates/counter/counter_list.jinja:14
msgid
"Edit"
msgstr
"Éditer"
#: accounting/templates/accounting/bank_account_details.jinja:1
4
#: accounting/templates/accounting/bank_account_details.jinja:1
9
#: accounting/templates/accounting/bank_account_list.jinja:16
#: core/templates/core/group_list.jinja:13
msgid
"Delete"
...
...
@@ -148,53 +176,58 @@ msgid "There is no accounts in this website."
msgstr
"Il n'y a pas de comptes dans ce site web."
#: accounting/templates/accounting/club_account_details.jinja:8
msgid
"
View
account:"
msgstr
"
Voir le compte:
"
msgid
"
Club
account:"
msgstr
"
Compte club :
"
#: accounting/templates/accounting/club_account_details.jinja:1
5
#: accounting/templates/accounting/club_account_details.jinja:1
0
msgid
"New journal"
msgstr
"Nouveau classeur"
#: accounting/templates/accounting/club_account_details.jinja:1
7
#: accounting/templates/accounting/club_account_details.jinja:1
2
msgid
"You can not create new journal while you still have one opened"
msgstr
"Vous ne pouvez pas créer de journal tant qu'il y en a un d'ouvert"
#: accounting/templates/accounting/club_account_details.jinja:
21
#: accounting/templates/accounting/club_account_details.jinja:
17
msgid
"Name"
msgstr
"Nom"
#: accounting/templates/accounting/club_account_details.jinja:
22
#: accounting/templates/accounting/club_account_details.jinja:
18
msgid
"Start"
msgstr
"Début"
#: accounting/templates/accounting/club_account_details.jinja:
23
#: accounting/templates/accounting/club_account_details.jinja:
19
msgid
"End"
msgstr
"Fin"
#: accounting/templates/accounting/club_account_details.jinja:2
4
#: accounting/templates/accounting/journal_details.jinja:2
2
#: accounting/templates/accounting/club_account_details.jinja:2
0
#: accounting/templates/accounting/journal_details.jinja:2
3
msgid
"Amount"
msgstr
"Montant"
#: accounting/templates/accounting/club_account_details.jinja:2
5
#: accounting/templates/accounting/club_account_details.jinja:2
1
msgid
"Effective amount"
msgstr
"Montant effectif"
#: accounting/templates/accounting/club_account_details.jinja:2
6
#: accounting/templates/accounting/club_account_details.jinja:2
2
msgid
"Closed"
msgstr
"Fermé"
#: accounting/templates/accounting/club_account_details.jinja:40
#: accounting/templates/accounting/journal_details.jinja:41
#: accounting/templates/accounting/club_account_details.jinja:23
#: accounting/templates/accounting/journal_details.jinja:30
msgid
"Actions"
msgstr
"Actions"
#: accounting/templates/accounting/club_account_details.jinja:39
#: accounting/templates/accounting/journal_details.jinja:44
msgid
"Yes"
msgstr
"Oui"
#: accounting/templates/accounting/club_account_details.jinja:4
2
#: accounting/templates/accounting/journal_details.jinja:4
3
#: accounting/templates/accounting/club_account_details.jinja:4
1
#: accounting/templates/accounting/journal_details.jinja:4
6
msgid
"No"
msgstr
"Non"
#: accounting/templates/accounting/club_account_details.jinja:4
4
#: accounting/templates/accounting/club_account_details.jinja:4
3
msgid
"View"
msgstr
"Voir"
...
...
@@ -214,42 +247,38 @@ msgstr "Le classeur est fermé, vous ne pouvez pas créer d'opération"
msgid
"New operation"
msgstr
"Nouvelle opération"
#: accounting/templates/accounting/journal_details.jinja:
19
#: accounting/templates/accounting/journal_details.jinja:
20
msgid
"Nb"
msgstr
"No"
#: accounting/templates/accounting/journal_details.jinja:2
0
#: accounting/templates/accounting/journal_details.jinja:2
1
msgid
"Date"
msgstr
"Date"
#: accounting/templates/accounting/journal_details.jinja:2
1
#: accounting/templates/accounting/journal_details.jinja:2
2
msgid
"Label"
msgstr
"Intitulé"
#: accounting/templates/accounting/journal_details.jinja:2
3
#: accounting/templates/accounting/journal_details.jinja:2
4
msgid
"Payment mode"
msgstr
"Méthode de paiement"
#: accounting/templates/accounting/journal_details.jinja:2
5
#: accounting/templates/accounting/journal_details.jinja:2
6
msgid
"Code"
msgstr
"Code"
#: accounting/templates/accounting/journal_details.jinja:2
6
#: accounting/templates/accounting/journal_details.jinja:2
7
msgid
"Nature"
msgstr
"Nature"
#: accounting/templates/accounting/journal_details.jinja:2
7
#: accounting/templates/accounting/journal_details.jinja:2
8
msgid
"Done"
msgstr
"Effectué"
#: accounting/templates/accounting/journal_details.jinja:2
8
#: accounting/templates/accounting/journal_details.jinja:2
9
msgid
"Comment"
msgstr
"Commentaire"
#: accounting/templates/accounting/journal_details.jinja:29
msgid
"Actions"
msgstr
"Actions"
#: club/models.py:20
msgid
"unix name"
msgstr
"nom unix"
...
...
@@ -286,8 +315,8 @@ msgstr "club"
msgid
"role"
msgstr
"rôle"
#: club/models.py:113 core/models.py:27 counter/models.py:
36
#: counter/models.py:5
5
#: club/models.py:113 core/models.py:27 counter/models.py:
40
#: counter/models.py:5
9
msgid
"description"
msgstr
"description"
...
...
@@ -361,12 +390,13 @@ msgid "Add"
msgstr
"Ajouter"
#: club/templates/club/club_tools.jinja:4
#: core/templates/core/user_tools.jinja:54
msgid
"Club tools"
msgstr
"Outils
du
club"
msgstr
"Outils club"
#: club/templates/club/club_tools.jinja:8
msgid
"Counters:"
msgstr
"Comptoirs
:
"
msgstr
"Comptoirs
:
"
#: core/models.py:23
msgid
"meta group status"
...
...
@@ -446,35 +476,35 @@ msgstr "super-utilisateur"
msgid
"Designates whether this user is a superuser. "
msgstr
"Est-ce que l'utilisateur est super-utilisateur."
#: core/models.py:2
74
#: core/models.py:2
80
msgid
"Visitor"
msgstr
"Visiteur"
#: core/models.py:2
79
#: core/models.py:2
85
msgid
"define if we show a users stats"
msgstr
"Definit si l'on montre les statistiques de l'utilisateur"
#: core/models.py:28
1
#: core/models.py:28
7
msgid
"Show your account statistics to others"
msgstr
"Montrez vos statistiques de compte aux autres"
#: core/models.py:3
07 core/models.py:311
#: core/models.py:3
13 core/models.py:317
msgid
"page name"
msgstr
"nom de la page"
#: core/models.py:3
44
#: core/models.py:3
50
msgid
"Duplicate page"
msgstr
"Duppliquer la page"
#: core/models.py:35
0
#: core/models.py:35
6
msgid
"Loop in page tree"
msgstr
"Boucle dans l'arborescence des pages"
#: core/models.py:4
54
#: core/models.py:4
60
msgid
"page title"
msgstr
"titre de la page"
#: core/models.py:4
55
#: core/models.py:4
61
msgid
"page content"
msgstr
"contenu de la page"
...
...
@@ -519,7 +549,7 @@ msgstr "Utilisateurs"
msgid
"Pages"
msgstr
"Pages"
#: core/templates/core/base.jinja:31
core/templates/core/user_tools.jinja:36
#: core/templates/core/base.jinja:31
msgid
"Clubs"
msgstr
"Clubs"
...
...
@@ -653,6 +683,7 @@ msgid "Back to page"
msgstr
"Retour à la page"
#: core/templates/core/page_hist.jinja:6
#, python-format
msgid
"You're seeing the history of page %(page_name)s"
msgstr
"Vous consultez l'historique de la page %(page_name)s"
...
...
@@ -762,12 +793,8 @@ msgstr ""
msgid
"Your username is %(username)s."
msgstr
"Votre nom d'utilisateur est %(username)s."
#: core/templates/core/user_base.jinja:6
msgid
"Infos"
msgstr
"Infos"
#: core/templates/core/user_base.jinja:11
#: core/templates/core/user_tools.jinja:1
3
#: core/templates/core/user_tools.jinja:1
4
msgid
"Groups"
msgstr
"Groupes"
...
...
@@ -833,67 +860,71 @@ msgstr "Outils de %(user_name)s"
msgid
"User Tools"
msgstr
"Outils utilisateurs"
#: core/templates/core/user_tools.jinja:1
0
#: core/templates/core/user_tools.jinja:1
1
msgid
"Sith management"
msgstr
"Gestion de Sith"
#: core/templates/core/user_tools.jinja:1
6
#: core/templates/core/user_tools.jinja:1
7
msgid
"Counters management"
msgstr
"Gestion des comptoirs"
#: core/templates/core/user_tools.jinja:2
2
#: core/templates/core/user_tools.jinja:2
3
msgid
"Subscriptions"
msgstr
"Cotisations"
#: core/templates/core/user_tools.jinja:2
6
#: core/templates/core/user_tools.jinja:2
8
msgid
"Counters"
msgstr
"Comptoirs"
#: counter/models.py:20
#: core/templates/core/user_tools.jinja:47
msgid
"Club account: "
msgstr
"Compte club : "
#: counter/models.py:21
msgid
"account id"
msgstr
"numéro de compte"
#: counter/models.py:2
4
#: counter/models.py:2
5
msgid
"customer"
msgstr
"client"
#: counter/models.py:2
5
#: counter/models.py:2
6
msgid
"customers"
msgstr
"clients"
#: counter/models.py:
58
#: counter/models.py:
62
msgid
"purchase price"
msgstr
"prix d'achat"
#: counter/models.py:
59
#: counter/models.py:
63
msgid
"selling price"
msgstr
"prix de vente"
#: counter/models.py:6
0
#: counter/models.py:6
4
msgid
"special selling price"
msgstr
"prix de vente spécial"
#: counter/models.py:
79
subscription/models.py:29
#: counter/models.py:
83
subscription/models.py:29
msgid
"subscription type"
msgstr
"type d'inscription"
#: counter/models.py:8
1
#: counter/models.py:8
5
msgid
"Bar"
msgstr
"Bar"
#: counter/models.py:8
1
#: counter/models.py:8
5
msgid
"Office"
msgstr
"Bureau"
#: counter/models.py:16
5
#: counter/models.py:16
9
msgid
"bank"
msgstr
"banque"
#: counter/models.py:1
86
#: counter/models.py:1
90
msgid
"unit price"
msgstr
"prix unitaire"
#: counter/models.py:1
87
#: counter/models.py:1
91
msgid
"quantity"
msgstr
"quantité"
...
...
@@ -1104,11 +1135,11 @@ msgstr "début de la cotisation"
msgid
"subscription end"
msgstr
"fin de la cotisation"
#: subscription/models.py:4
7
#: subscription/models.py:4
4
msgid
"You can not subscribe many time for the same period"
msgstr
"Vous ne pouvez pas cotiser plusieurs fois pour la même période"
#: subscription/models.py:
51
#: subscription/models.py:
48
msgid
"You are trying to create a subscription without member"
msgstr
"Vous essayez de créer une cotisation sans membre"
...
...
@@ -1120,3 +1151,9 @@ msgstr "Un utilisateur avec cette adresse email existe déjà"
msgid
"You must either choose an existing user or create a new one properly"
msgstr
""
"Vous devez soit choisir un utilisateur existant, ou en créer un proprement."
#~ msgid "View account"
#~ msgstr "Voir le compte"
#~ msgid "View account:"
#~ msgstr "Voir le compte:"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment