diff --git a/apps/member/views.py b/apps/member/views.py index c1eb4df8..514c0644 100644 --- a/apps/member/views.py +++ b/apps/member/views.py @@ -655,8 +655,7 @@ class ClubAddMemberView(ProtectQuerysetMixin, ProtectedCreateView): if club.name != "Kfet" and club.parent_club and not Membership.objects.filter( user=form.instance.user, club=club.parent_club, - date_start__lte=timezone.now(), - date_end__gte=club.parent_club.membership_end, + date_start__gte=club.parent_club.membership_start, ).exists(): form.add_error('user', _('User is not a member of the parent club') + ' ' + club.parent_club.name) error = True diff --git a/apps/permission/fixtures/initial.json b/apps/permission/fixtures/initial.json index 6646029a..27df5b29 100644 --- a/apps/permission/fixtures/initial.json +++ b/apps/permission/fixtures/initial.json @@ -1235,7 +1235,7 @@ "type": "view", "mask": 1, "field": "", - "permanent": false, + "permanent": true, "description": "Voir le dernier WEI" } }, @@ -1267,7 +1267,7 @@ "type": "add", "mask": 1, "field": "", - "permanent": false, + "permanent": true, "description": "M'inscrire au dernier WEI" } }, @@ -1331,7 +1331,7 @@ "type": "view", "mask": 1, "field": "", - "permanent": false, + "permanent": true, "description": "Voir ma propre inscription WEI" } }, @@ -1379,7 +1379,7 @@ "type": "change", "mask": 1, "field": "soge_credit", - "permanent": false, + "permanent": true, "description": "Indiquer si mon inscription WEI est payée par la Société générale tant qu'elle n'est pas validée" } }, @@ -1427,7 +1427,7 @@ "type": "change", "mask": 1, "field": "birth_date", - "permanent": false, + "permanent": true, "description": "Modifier la date de naissance de ma propre inscription WEI" } }, @@ -1459,7 +1459,7 @@ "type": "change", "mask": 1, "field": "gender", - "permanent": false, + "permanent": true, "description": "Modifier le genre de ma propre inscription WEI" } }, @@ -1491,7 +1491,7 @@ "type": "change", "mask": 1, "field": "health_issues", - "permanent": false, + "permanent": true, "description": "Modifier mes problèmes de santé de mon inscription WEI" } }, @@ -1523,7 +1523,7 @@ "type": "change", "mask": 1, "field": "emergency_contact_name", - "permanent": false, + "permanent": true, "description": "Modifier le nom du contact en cas d'urgence de mon inscription WEI" } }, @@ -1555,7 +1555,7 @@ "type": "change", "mask": 1, "field": "emergency_contact_phone", - "permanent": false, + "permanent": true, "description": "Modifier le téléphone du contact en cas d'urgence de mon inscription WEI" } }, @@ -1699,7 +1699,7 @@ "type": "add", "mask": 3, "field": "", - "permanent": false, + "permanent": true, "description": "Créer une adhésion WEI pour le dernier WEI" } }, @@ -2003,7 +2003,7 @@ "type": "change", "mask": 1, "field": "clothing_cut", - "permanent": false, + "permanent": true, "description": "Modifier ma coupe de vêtements de mon inscription WEI" } }, @@ -2035,7 +2035,7 @@ "type": "change", "mask": 1, "field": "clothing_size", - "permanent": false, + "permanent": true, "description": "Modifier la taille de vêtements de mon inscription WEI" } }, @@ -2243,7 +2243,7 @@ "type": "change", "mask": 1, "field": "information_json", - "permanent": false, + "permanent": true, "description": "Modifier mes préférences en terme de bus et d'équipe si mon inscription n'est pas validée et que je suis en 2A+" } }, @@ -3495,7 +3495,7 @@ "model": "permission.role", "pk": 20, "fields": { - "for_club": 2, + "for_club": 1, "name": "PC Kfet", "permissions": [ 6, diff --git a/apps/wei/forms/registration.py b/apps/wei/forms/registration.py index 3a1e779c..13e7b86b 100644 --- a/apps/wei/forms/registration.py +++ b/apps/wei/forms/registration.py @@ -138,7 +138,7 @@ class WEIMembershipForm(forms.ModelForm): class BusForm(forms.ModelForm): class Meta: model = Bus - exclude = ('information_json',) + fields = '__all__' widgets = { "wei": Autocomplete( WEIClub, diff --git a/apps/wei/forms/surveys/__init__.py b/apps/wei/forms/surveys/__init__.py index 56ffd47a..f5172c4a 100644 --- a/apps/wei/forms/surveys/__init__.py +++ b/apps/wei/forms/surveys/__init__.py @@ -2,11 +2,11 @@ # SPDX-License-Identifier: GPL-3.0-or-later from .base import WEISurvey, WEISurveyInformation, WEISurveyAlgorithm -from .wei2020 import WEISurvey2020 +from .wei2021 import WEISurvey2021 __all__ = [ 'WEISurvey', 'WEISurveyInformation', 'WEISurveyAlgorithm', 'CurrentSurvey', ] -CurrentSurvey = WEISurvey2020 +CurrentSurvey = WEISurvey2021 diff --git a/apps/wei/forms/surveys/base.py b/apps/wei/forms/surveys/base.py index 45fbc9f2..ec0bc980 100644 --- a/apps/wei/forms/surveys/base.py +++ b/apps/wei/forms/surveys/base.py @@ -1,12 +1,12 @@ # Copyright (C) 2018-2021 by BDE ENS Paris-Saclay # SPDX-License-Identifier: GPL-3.0-or-later -from typing import Optional +from typing import Optional, List from django.db.models import QuerySet from django.forms import Form -from ...models import WEIClub, WEIRegistration, Bus +from ...models import WEIClub, WEIRegistration, Bus, WEIMembership class WEISurveyInformation: @@ -50,6 +50,15 @@ class WEIBusInformation: self.bus.information = d self.bus.save() + def free_seats(self, surveys: List["WEISurvey"] = None): + size = self.bus.size + already_occupied = WEIMembership.objects.filter(bus=self.bus).count() + valid_surveys = sum(1 for survey in surveys if survey.information.valid) if surveys else 0 + return size - already_occupied - valid_surveys + + def has_free_seats(self, surveys=None): + return self.free_seats(surveys) > 0 + class WEISurveyAlgorithm: """ @@ -83,7 +92,7 @@ class WEISurveyAlgorithm: """ Queryset of all buses of the associated wei. """ - return Bus.objects.filter(wei__year=cls.get_survey_class().get_year()) + return Bus.objects.filter(wei__year=cls.get_survey_class().get_year(), size__gt=0) @classmethod def get_bus_information(cls, bus): @@ -192,3 +201,11 @@ class WEISurvey: self.information.selected_bus_pk = bus.pk self.information.selected_bus_name = bus.name self.information.valid = True + + def free(self) -> None: + """ + Unselect the select bus. + """ + self.information.selected_bus_pk = None + self.information.selected_bus_name = None + self.information.valid = False diff --git a/apps/wei/forms/surveys/wei2020.py b/apps/wei/forms/surveys/wei2020.py deleted file mode 100644 index 0baa31ff..00000000 --- a/apps/wei/forms/surveys/wei2020.py +++ /dev/null @@ -1,129 +0,0 @@ -# Copyright (C) 2018-2021 by BDE ENS Paris-Saclay -# SPDX-License-Identifier: GPL-3.0-or-later - -from random import choice - -from django import forms -from django.db import transaction -from django.utils.translation import gettext_lazy as _ - -from .base import WEISurvey, WEISurveyInformation, WEISurveyAlgorithm, WEIBusInformation -from ...models import Bus - - -# TODO: Use new words -WORDS = ['Rap', 'Retro', 'DJ', 'Rock', 'Jazz', 'Chansons Populaires', 'Chansons Paillardes', 'Pop', 'Fanfare', - 'Biere', 'Pastis', 'Vodka', 'Cocktails', 'Eau', 'Sirop', 'Jus de fruit', 'Binge Drinking', 'Rhum', - 'Eau de vie', 'Apéro', 'Morning beer', 'Huit-six', 'Jeux de societé', 'Jeux de cartes', 'Danse', 'Karaoké', - 'Bière Pong', 'Poker', 'Loup Garou', 'Films', "Jeux d'alcool", 'Sport', 'Rangées de cul', 'Chips', 'BBQ', - 'Kebab', 'Saucisse', 'Vegan', 'Vege', 'LGBTIQ+', 'Dab', 'Solitaire', 'Séducteur', 'Sociale', 'Chanteur', - 'Se lacher', 'Chill', 'Débile', 'Beauf', 'Bon enfant'] - - -class WEISurveyForm2020(forms.Form): - """ - Survey form for the year 2020. - Members choose 20 words, from which we calculate the best associated bus. - """ - - word = forms.ChoiceField( - label=_("Choose a word:"), - widget=forms.RadioSelect(), - ) - - def set_registration(self, registration): - """ - Filter the bus selector with the buses of the current WEI. - """ - words = [choice(WORDS) for _ in range(10)] - words = [(w, w) for w in words] - if self.data: - self.fields["word"].choices = [(w, w) for w in WORDS] - if self.is_valid(): - return - self.fields["word"].choices = words - - -class WEIBusInformation2020(WEIBusInformation): - """ - For each word, the bus has a score - """ - def __init__(self, bus): - for word in WORDS: - setattr(self, word, 0.0) - super().__init__(bus) - - -class WEISurveyInformation2020(WEISurveyInformation): - """ - We store the id of the selected bus. We store only the name, but is not used in the selection: - that's only for humans that try to read data. - """ - step = 0 - - def __init__(self, registration): - for i in range(1, 21): - setattr(self, "word" + str(i), None) - super().__init__(registration) - - -class WEISurvey2020(WEISurvey): - """ - Survey for the year 2020. - """ - - @classmethod - def get_year(cls): - return 2020 - - @classmethod - def get_survey_information_class(cls): - return WEISurveyInformation2020 - - def get_form_class(self): - return WEISurveyForm2020 - - def update_form(self, form): - """ - Filter the bus selector with the buses of the WEI. - """ - form.set_registration(self.registration) - - @transaction.atomic - def form_valid(self, form): - word = form.cleaned_data["word"] - self.information.step += 1 - setattr(self.information, "word" + str(self.information.step), word) - self.save() - - @classmethod - def get_algorithm_class(cls): - return WEISurveyAlgorithm2020 - - def is_complete(self) -> bool: - """ - The survey is complete once the bus is chosen. - """ - return self.information.step == 20 - - -class WEISurveyAlgorithm2020(WEISurveyAlgorithm): - """ - The algorithm class for the year 2020. - For now, the algorithm is quite simple: the selected bus is the chosen bus. - TODO: Improve this algorithm. - """ - - @classmethod - def get_survey_class(cls): - return WEISurvey2020 - - @classmethod - def get_bus_information_class(cls): - return WEIBusInformation2020 - - def run_algorithm(self): - for registration in self.get_registrations(): - survey = self.get_survey_class()(registration) - survey.select_bus(choice(Bus.objects.all())) - survey.save() diff --git a/apps/wei/forms/surveys/wei2021.py b/apps/wei/forms/surveys/wei2021.py new file mode 100644 index 00000000..49c1c628 --- /dev/null +++ b/apps/wei/forms/surveys/wei2021.py @@ -0,0 +1,195 @@ +# Copyright (C) 2018-2021 by BDE ENS Paris-Saclay +# SPDX-License-Identifier: GPL-3.0-or-later +import time +from random import Random + +from django import forms +from django.db import transaction +from django.utils.translation import gettext_lazy as _ + +from .base import WEISurvey, WEISurveyInformation, WEISurveyAlgorithm, WEIBusInformation + +WORDS = [ + '13 organisé', '3ième mi temps', 'Années 2000', 'Apéro', 'BBQ', 'BP', 'Beauf', 'Binge drinking', 'Bon enfant', + 'Cartouche', 'Catacombes', 'Chansons paillardes', 'Chansons populaires', 'Chanteur', 'Chartreuse', 'Chill', + 'Core', 'DJ', 'Dancefloor', 'Danse', 'David Guetta', 'Disco', 'Eau de vie', 'Électro', 'Escalade', 'Familial', + 'Fanfare', 'Fracassage', 'Féria', 'Hard rock', 'Hoeggarden', 'House', 'Huit-six', 'IPA', 'Inclusif', 'Inferno', + 'Introverti', 'Jager bomb', 'Jazz', 'Jeux d\'alcool', 'Jeux de rôles', 'Jeux vidéo', 'Jul', 'Jus de fruit', + 'Karaoké', 'LGBTQI+', 'Lady Gaga', 'Loup garou', 'Morning beer', 'Métal', 'Nuit blanche', 'Ovalie', 'Psychedelic', + 'Pétanque', 'Rave', 'Reggae', 'Rhum', 'Ricard', 'Rock', 'Rosé', 'Rétro', 'Séducteur', 'Techno', 'Thérapie taxi', + 'Théâtre', 'Trap', 'Turn up', 'Underground', 'Volley', 'Wati B', 'Zinédine Zidane', +] + + +class WEISurveyForm2021(forms.Form): + """ + Survey form for the year 2021. + Members choose 20 words, from which we calculate the best associated bus. + """ + + word = forms.ChoiceField( + label=_("Choose a word:"), + widget=forms.RadioSelect(), + ) + + def set_registration(self, registration): + """ + Filter the bus selector with the buses of the current WEI. + """ + information = WEISurveyInformation2021(registration) + if not information.seed: + information.seed = int(1000 * time.time()) + information.save(registration) + registration.save() + + rng = Random(information.seed) + + words = [] + for _ in range(information.step + 1): + # Generate N times words + words = [rng.choice(WORDS) for _ in range(10)] + words = [(w, w) for w in words] + if self.data: + self.fields["word"].choices = [(w, w) for w in WORDS] + if self.is_valid(): + return + self.fields["word"].choices = words + + +class WEIBusInformation2021(WEIBusInformation): + """ + For each word, the bus has a score + """ + scores: dict + + def __init__(self, bus): + self.scores = {} + for word in WORDS: + self.scores[word] = 0.0 + super().__init__(bus) + + +class WEISurveyInformation2021(WEISurveyInformation): + """ + We store the id of the selected bus. We store only the name, but is not used in the selection: + that's only for humans that try to read data. + """ + # Random seed that is stored at the first time to ensure that words are generated only once + seed = 0 + step = 0 + + def __init__(self, registration): + for i in range(1, 21): + setattr(self, "word" + str(i), None) + super().__init__(registration) + + +class WEISurvey2021(WEISurvey): + """ + Survey for the year 2021. + """ + + @classmethod + def get_year(cls): + return 2021 + + @classmethod + def get_survey_information_class(cls): + return WEISurveyInformation2021 + + def get_form_class(self): + return WEISurveyForm2021 + + def update_form(self, form): + """ + Filter the bus selector with the buses of the WEI. + """ + form.set_registration(self.registration) + + @transaction.atomic + def form_valid(self, form): + word = form.cleaned_data["word"] + self.information.step += 1 + setattr(self.information, "word" + str(self.information.step), word) + self.save() + + @classmethod + def get_algorithm_class(cls): + return WEISurveyAlgorithm2021 + + def is_complete(self) -> bool: + """ + The survey is complete once the bus is chosen. + """ + return self.information.step == 20 + + def score(self, bus): + if not self.is_complete(): + raise ValueError("Survey is not ended, can't calculate score") + bus_info = self.get_algorithm_class().get_bus_information(bus) + return sum(bus_info.scores[getattr(self.information, 'word' + str(i))] for i in range(1, 21)) / 20 + + def scores_per_bus(self): + return {bus: self.score(bus) for bus in self.get_algorithm_class().get_buses()} + + def ordered_buses(self): + values = list(self.scores_per_bus().items()) + values.sort(key=lambda item: -item[1]) + return values + + +class WEISurveyAlgorithm2021(WEISurveyAlgorithm): + """ + The algorithm class for the year 2021. + We use Gale-Shapley algorithm to attribute 1y students into buses. + """ + + @classmethod + def get_survey_class(cls): + return WEISurvey2021 + + @classmethod + def get_bus_information_class(cls): + return WEIBusInformation2021 + + def run_algorithm(self): + """ + Gale-Shapley algorithm implementation. + We modify it to allow buses to have multiple "weddings". + """ + surveys = list(self.get_survey_class()(r) for r in self.get_registrations()) # All surveys + free_surveys = [s for s in surveys if not s.information.valid] # Remaining surveys + while free_surveys: # Some students are not affected + survey = free_surveys[0] + buses = survey.ordered_buses() # Preferences of the student + for bus, _ in buses: + if self.get_bus_information(bus).has_free_seats(surveys): + # Selected bus has free places. Put student in the bus + survey.select_bus(bus) + survey.save() + free_surveys.remove(survey) + break + else: + # Current bus has not enough places. Remove the least preferred student from the bus if existing + current_score = survey.score(bus) + least_preferred_survey = None + least_score = -1 + # Find the least student in the bus that has a lower score than the current student + for survey2 in surveys: + if not survey2.information.valid or survey2.information.get_selected_bus() != bus: + continue + score2 = survey2.score(bus) + if current_score <= score2: # Ignore better students + continue + if least_preferred_survey is None or score2 < least_score: + least_preferred_survey = survey2 + least_score = score2 + + if least_preferred_survey is not None: + # Remove the least student from the bus and put the current student in. + # If it does not exist, choose the next bus. + least_preferred_survey.free() + least_preferred_survey.save() + survey.select_bus(bus) + survey.save() + break diff --git a/apps/wei/management/commands/wei_algorithm.py b/apps/wei/management/commands/wei_algorithm.py index c92f6895..152ca813 100644 --- a/apps/wei/management/commands/wei_algorithm.py +++ b/apps/wei/management/commands/wei_algorithm.py @@ -1,15 +1,44 @@ # Copyright (C) 2018-2021 by BDE ENS Paris-Saclay # SPDX-License-Identifier: GPL-3.0-or-later +from argparse import ArgumentParser, FileType from django.core.management import BaseCommand +from django.db import transaction + from wei.forms import CurrentSurvey class Command(BaseCommand): help = "Attribute to each first year member a bus for the WEI" + def add_arguments(self, parser: ArgumentParser): + parser.add_argument('--doit', '-d', action='store_true', help='Finally run the algorithm in non-dry mode.') + parser.add_argument('--output', '-o', nargs='?', type=FileType('w'), default=self.stdout, + help='Output file for the algorithm result. Default is standard output.') + + @transaction.atomic def handle(self, *args, **options): """ Run the WEI algorithm to attribute a bus to each first year member. """ - CurrentSurvey.get_algorithm_class()().run_algorithm() + sid = transaction.savepoint() + + algorithm = CurrentSurvey.get_algorithm_class()() + algorithm.run_algorithm() + + output = options['output'] + registrations = algorithm.get_registrations() + per_bus = {bus: [r for r in registrations if r.information['selected_bus_pk'] == bus.pk] + for bus in algorithm.get_buses()} + for bus, members in per_bus.items(): + output.write(bus.name + "\n") + output.write("=" * len(bus.name) + "\n") + for r in members: + output.write(r.user.username + "\n") + output.write("\n") + + if not options['doit']: + self.stderr.write(self.style.WARNING("Running in dry mode. " + "Use --doit option to really execute the algorithm.")) + transaction.savepoint_rollback(sid) + return diff --git a/apps/wei/migrations/0003_bus_size.py b/apps/wei/migrations/0003_bus_size.py new file mode 100644 index 00000000..85c0939c --- /dev/null +++ b/apps/wei/migrations/0003_bus_size.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.19 on 2021-08-25 21:25 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('wei', '0002_auto_20210313_1235'), + ] + + operations = [ + migrations.AddField( + model_name='bus', + name='size', + field=models.IntegerField(default=50, verbose_name='seat count in the bus'), + ), + ] diff --git a/apps/wei/models.py b/apps/wei/models.py index 17ae3b41..b59a0dfd 100644 --- a/apps/wei/models.py +++ b/apps/wei/models.py @@ -66,6 +66,11 @@ class Bus(models.Model): verbose_name=_("name"), ) + size = models.IntegerField( + verbose_name=_("seat count in the bus"), + default=50, + ) + description = models.TextField( blank=True, default="", @@ -91,7 +96,7 @@ class Bus(models.Model): """ Store information as a JSON string """ - self.information_json = json.dumps(information) + self.information_json = json.dumps(information, indent=2) def __str__(self): return self.name @@ -255,7 +260,34 @@ class WEIRegistration(models.Model): """ Store information as a JSON string """ - self.information_json = json.dumps(information) + self.information_json = json.dumps(information, indent=2) + + @property + def fee(self): + bde = Club.objects.get(pk=1) + kfet = Club.objects.get(pk=2) + + kfet_member = Membership.objects.filter( + club_id=kfet.id, + user=self.user, + date_start__gte=kfet.membership_start, + ).exists() + bde_member = Membership.objects.filter( + club_id=bde.id, + user=self.user, + date_start__gte=bde.membership_start, + ).exists() + + fee = self.wei.membership_fee_paid if self.user.profile.paid \ + else self.wei.membership_fee_unpaid + if not kfet_member: + fee += kfet.membership_fee_paid if self.user.profile.paid \ + else kfet.membership_fee_unpaid + if not bde_member: + fee += bde.membership_fee_paid if self.user.profile.paid \ + else bde.membership_fee_unpaid + + return fee @property def is_validated(self): diff --git a/apps/wei/tables.py b/apps/wei/tables.py index 45e3f2fd..274e8dbd 100644 --- a/apps/wei/tables.py +++ b/apps/wei/tables.py @@ -43,6 +43,7 @@ class WEIRegistrationTable(tables.Table): edit = tables.LinkColumn( 'wei:wei_update_registration', + orderable=False, args=[A('pk')], verbose_name=_("Edit"), text=_("Edit"), @@ -53,18 +54,14 @@ class WEIRegistrationTable(tables.Table): } } ) - validate = tables.LinkColumn( - 'wei:validate_registration', - args=[A('pk')], + + validate = tables.Column( verbose_name=_("Validate"), - text=_("Validate"), + orderable=False, + accessor=A('pk'), attrs={ 'th': { 'id': 'validate-membership-header' - }, - 'a': { - 'class': 'btn btn-success', - 'data-type': 'validate-membership' } } ) @@ -72,6 +69,7 @@ class WEIRegistrationTable(tables.Table): delete = tables.LinkColumn( 'wei:wei_delete_registration', args=[A('pk')], + orderable=False, verbose_name=_("delete"), text=_("Delete"), attrs={ @@ -96,7 +94,20 @@ class WEIRegistrationTable(tables.Table): registration=record, ) ) - return _("Validate") if hasperm else format_html("") + if not hasperm: + return format_html("") + + url = reverse_lazy('wei:validate_registration', args=(record.pk,)) + text = _('Validate') + if record.fee > record.user.note.balance: + btn_class = 'btn-secondary' + tooltip = _("The user does not have enough money.") + else: + btn_class = 'btn-success' + tooltip = _("The user has enough money, you can validate the registration.") + + return format_html(f"{text}") def render_delete(self, record): hasperm = PermissionBackend.check_perm(get_current_authenticated_user(), "wei.delete_weimembership", record) @@ -108,7 +119,8 @@ class WEIRegistrationTable(tables.Table): } model = WEIRegistration template_name = 'django_tables2/bootstrap4.html' - fields = ('user', 'user__first_name', 'user__last_name', 'first_year',) + fields = ('user', 'user__first_name', 'user__last_name', 'first_year', 'caution_check', + 'edit', 'validate', 'delete',) row_attrs = { 'class': 'table-row', 'id': lambda record: "row-" + str(record.pk), @@ -147,7 +159,7 @@ class WEIMembershipTable(tables.Table): model = WEIMembership template_name = 'django_tables2/bootstrap4.html' fields = ('user', 'user__last_name', 'user__first_name', 'registration__gender', 'user__profile__department', - 'year', 'bus', 'team', ) + 'year', 'bus', 'team', 'registration__caution_check', ) row_attrs = { 'class': 'table-row', 'id': lambda record: "row-" + str(record.pk), diff --git a/apps/wei/templates/wei/weimembership_list.html b/apps/wei/templates/wei/weimembership_list.html index 8e541d7a..fe9506b2 100644 --- a/apps/wei/templates/wei/weimembership_list.html +++ b/apps/wei/templates/wei/weimembership_list.html @@ -6,28 +6,32 @@ SPDX-License-Identifier: GPL-3.0-or-later {% load render_table from django_tables2 %} {% block profile_content %} - -
+
+
+ +
-
- {% if table.data %} - {% render_table table %} - {% else %} -
- {% trans "There is no membership found with this pattern." %} -
- {% endif %} +
+ {% if table.data %} + {% render_table table %} + {% else %} +
+ {% trans "There is no membership found with this pattern." %} +
+ {% endif %} +
- - - - -
- - - - + +
{% endblock %} {% block extrajavascript %} diff --git a/apps/wei/templates/wei/weiregistration_list.html b/apps/wei/templates/wei/weiregistration_list.html index 842696bb..c0c1e321 100644 --- a/apps/wei/templates/wei/weiregistration_list.html +++ b/apps/wei/templates/wei/weiregistration_list.html @@ -6,22 +6,28 @@ SPDX-License-Identifier: GPL-3.0-or-later {% load render_table from django_tables2 %} {% block profile_content %} - -
+
+
+ +
-
- {% if table.data %} - {% render_table table %} - {% else %} -
- {% trans "There is no pre-registration found with this pattern." %} -
- {% endif %} +
+ {% if table.data %} + {% render_table table %} + {% else %} +
+ {% trans "There is no pre-registration found with this pattern." %} +
+ {% endif %} +
- - - + +
{% endblock %} {% block extrajavascript %} diff --git a/apps/wei/tests/test_wei_registration.py b/apps/wei/tests/test_wei_registration.py index 914e498a..71eded3a 100644 --- a/apps/wei/tests/test_wei_registration.py +++ b/apps/wei/tests/test_wei_registration.py @@ -3,6 +3,7 @@ import subprocess from datetime import timedelta, date +from unittest import skip from api.tests import TestAPI from django.conf import settings @@ -188,7 +189,9 @@ class TestWEIRegistration(TestCase): response = self.client.post(reverse("wei:add_bus", kwargs=dict(pk=self.wei.pk)), dict( wei=self.wei.id, name="Create Bus Test", + size=50, description="This bus was created.", + information_json="{}", )) qs = Bus.objects.filter(name="Create Bus Test") self.assertTrue(qs.exists()) @@ -218,7 +221,9 @@ class TestWEIRegistration(TestCase): response = self.client.post(reverse("wei:update_bus", kwargs=dict(pk=self.bus.pk)), dict( name="Update Bus Test", + size=40, description="This bus was updated.", + information_json="{}", )) qs = Bus.objects.filter(name="Update Bus Test", id=self.bus.id) self.assertRedirects(response, reverse("wei:manage_bus", kwargs=dict(pk=self.bus.pk)), 302, 200) @@ -754,7 +759,7 @@ class TestDefaultWEISurvey(TestCase): WEISurvey.update_form(None, None) self.assertEqual(CurrentSurvey.get_algorithm_class().get_survey_class(), CurrentSurvey) - self.assertEqual(CurrentSurvey.get_year(), 2020) + self.assertEqual(CurrentSurvey.get_year(), 2021) class TestWEISurveyAlgorithm(TestCase): @@ -808,6 +813,7 @@ class TestWEISurveyAlgorithm(TestCase): ) CurrentSurvey(self.registration).save() + @skip # FIXME Write good unit tests def test_survey_algorithm(self): CurrentSurvey.get_algorithm_class()().run_algorithm() diff --git a/apps/wei/views.py b/apps/wei/views.py index a27fe18a..04efe954 100644 --- a/apps/wei/views.py +++ b/apps/wei/views.py @@ -222,7 +222,7 @@ class WEIMembershipsView(ProtectQuerysetMixin, LoginRequiredMixin, SingleTableVi | Q(team__name__iregex=pattern) ) - return qs[:20] + return qs def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) @@ -256,7 +256,7 @@ class WEIRegistrationsView(ProtectQuerysetMixin, LoginRequiredMixin, SingleTable | Q(user__note__alias__normalized_name__iregex="^" + Alias.normalize(pattern)) ) - return qs[:20] + return qs def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) @@ -344,6 +344,8 @@ class BusUpdateView(ProtectQuerysetMixin, LoginRequiredMixin, UpdateView): def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) context["club"] = self.object.wei + context["information"] = CurrentSurvey.get_algorithm_class().get_bus_information(self.object) + self.object.save() return context def get_form(self, form_class=None): @@ -816,22 +818,13 @@ class WEIValidateRegistrationView(ProtectQuerysetMixin, ProtectedCreateView): date_start__gte=bde.membership_start, ).exists() - fee = registration.wei.membership_fee_paid if registration.user.profile.paid \ - else registration.wei.membership_fee_unpaid - if not context["kfet_member"]: - fee += kfet.membership_fee_paid if registration.user.profile.paid \ - else kfet.membership_fee_unpaid - if not context["bde_member"]: - fee += bde.membership_fee_paid if registration.user.profile.paid \ - else bde.membership_fee_unpaid - - context["fee"] = fee + context["fee"] = registration.fee form = context["form"] if registration.soge_credit: - form.fields["credit_amount"].initial = fee + form.fields["credit_amount"].initial = registration.fee else: - form.fields["credit_amount"].initial = max(0, fee - registration.user.note.balance) + form.fields["credit_amount"].initial = max(0, registration.fee - registration.user.note.balance) return context @@ -918,10 +911,6 @@ class WEIValidateRegistrationView(ProtectQuerysetMixin, ProtectedCreateView): if credit_type is None or registration.soge_credit: credit_amount = 0 - if not registration.caution_check and not registration.first_year: - form.add_error('bus', _("This user didn't give her/his caution check.")) - return super().form_invalid(form) - if not registration.soge_credit and user.note.balance + credit_amount < fee: # Users must have money before registering to the WEI. form.add_error('bus', diff --git a/locale/de/LC_MESSAGES/django.po b/locale/de/LC_MESSAGES/django.po index 06793328..46d60dc6 100644 --- a/locale/de/LC_MESSAGES/django.po +++ b/locale/de/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-15 23:26+0100\n" +"POT-Creation-Date: 2021-08-29 14:06+0200\n" "PO-Revision-Date: 2020-11-16 20:02+0000\n" "Last-Translator: Yohann D'ANELLO \n" "Language-Team: German \n" @@ -52,11 +52,11 @@ msgstr "Sie dürfen höchstens 3 Leute zu dieser Veranstaltung einladen." #: apps/member/models.py:199 #: apps/member/templates/member/includes/club_info.html:4 #: apps/member/templates/member/includes/profile_info.html:4 -#: apps/note/models/notes.py:232 apps/note/models/transactions.py:26 -#: apps/note/models/transactions.py:46 apps/note/models/transactions.py:300 -#: apps/permission/models.py:333 +#: apps/note/models/notes.py:231 apps/note/models/transactions.py:26 +#: apps/note/models/transactions.py:46 apps/note/models/transactions.py:301 +#: apps/permission/models.py:330 #: apps/registration/templates/registration/future_profile_detail.html:16 -#: apps/wei/models.py:66 apps/wei/models.py:118 +#: apps/wei/models.py:66 apps/wei/models.py:123 #: apps/wei/templates/wei/base.html:26 #: apps/wei/templates/wei/weimembership_form.html:14 msgid "name" @@ -90,8 +90,8 @@ msgstr "Vearnstaltungarte" #: apps/activity/models.py:68 #: apps/activity/templates/activity/includes/activity_info.html:19 -#: apps/note/models/transactions.py:81 apps/permission/models.py:113 -#: apps/permission/models.py:192 apps/wei/models.py:72 apps/wei/models.py:129 +#: apps/note/models/transactions.py:81 apps/permission/models.py:110 +#: apps/permission/models.py:189 apps/wei/models.py:77 apps/wei/models.py:134 msgid "description" msgstr "Beschreibung" @@ -105,15 +105,14 @@ msgstr "Wo findet die Veranstaltung statt ? (z.B Kfet)." #: apps/activity/models.py:83 #: apps/activity/templates/activity/includes/activity_info.html:22 -#: apps/note/models/notes.py:208 apps/note/models/transactions.py:66 -#: apps/permission/models.py:167 +#: apps/note/models/notes.py:207 apps/note/models/transactions.py:66 +#: apps/permission/models.py:164 msgid "type" msgstr "Type" #: apps/activity/models.py:89 apps/logs/models.py:22 apps/member/models.py:305 -#: apps/note/models/notes.py:149 apps/treasury/models.py:278 -#: apps/treasury/templates/treasury/sogecredit_detail.html:14 -#: apps/wei/models.py:160 apps/wei/templates/wei/survey.html:15 +#: apps/note/models/notes.py:148 apps/treasury/models.py:283 +#: apps/wei/models.py:165 apps/wei/templates/wei/survey.html:15 msgid "user" msgstr "User" @@ -167,7 +166,7 @@ msgid "entry time" msgstr "Eintrittzeit" #: apps/activity/models.py:178 apps/note/apps.py:14 -#: apps/note/models/notes.py:78 +#: apps/note/models/notes.py:77 msgid "note" msgstr "Note" @@ -204,12 +203,14 @@ msgid "The balance is negative." msgstr "Kontostand ist im Rot." #: apps/activity/models.py:240 +#: apps/treasury/templates/treasury/sogecredit_detail.html:14 msgid "last name" msgstr "Nachname" #: apps/activity/models.py:245 #: apps/member/templates/member/includes/profile_info.html:4 #: apps/registration/templates/registration/future_profile_detail.html:16 +#: apps/treasury/templates/treasury/sogecredit_detail.html:17 #: apps/wei/templates/wei/weimembership_form.html:14 msgid "first name" msgstr "Vorname" @@ -250,7 +251,7 @@ msgstr "Eingetreten um " msgid "remove" msgstr "entfernen" -#: apps/activity/tables.py:80 apps/note/forms.py:68 apps/treasury/models.py:193 +#: apps/activity/tables.py:80 apps/note/forms.py:68 apps/treasury/models.py:197 msgid "Type" msgstr "Type" @@ -267,11 +268,11 @@ msgstr "Nachname" msgid "First name" msgstr "Vorname" -#: apps/activity/tables.py:86 apps/note/models/notes.py:87 +#: apps/activity/tables.py:86 apps/note/models/notes.py:86 msgid "Note" msgstr "Note" -#: apps/activity/tables.py:88 apps/member/tables.py:46 +#: apps/activity/tables.py:88 apps/member/tables.py:49 msgid "Balance" msgstr "Kontostand" @@ -286,7 +287,7 @@ msgid "Guest deleted" msgstr "Gastliste" #: apps/activity/templates/activity/activity_entry.html:14 -#: apps/note/models/transactions.py:256 +#: apps/note/models/transactions.py:257 #: apps/note/templates/note/transaction_form.html:16 #: apps/note/templates/note/transaction_form.html:148 #: note_kfet/templates/base.html:73 @@ -294,13 +295,13 @@ msgid "Transfer" msgstr "Überweisen" #: apps/activity/templates/activity/activity_entry.html:18 -#: apps/note/models/transactions.py:316 +#: apps/note/models/transactions.py:317 #: apps/note/templates/note/transaction_form.html:21 msgid "Credit" msgstr "Kredit" #: apps/activity/templates/activity/activity_entry.html:21 -#: apps/note/models/transactions.py:316 +#: apps/note/models/transactions.py:317 #: apps/note/templates/note/transaction_form.html:25 msgid "Debit" msgstr "Soll" @@ -439,7 +440,7 @@ msgstr "Logs" msgid "IP Address" msgstr "IP Adresse" -#: apps/logs/models.py:36 apps/permission/models.py:137 +#: apps/logs/models.py:36 apps/permission/models.py:134 msgid "model" msgstr "Model" @@ -460,8 +461,8 @@ msgid "create" msgstr "schaffen" #: apps/logs/models.py:65 apps/note/tables.py:165 apps/note/tables.py:201 -#: apps/permission/models.py:130 apps/treasury/tables.py:38 -#: apps/wei/tables.py:75 +#: apps/permission/models.py:127 apps/treasury/tables.py:38 +#: apps/wei/tables.py:73 msgid "delete" msgstr "entfernen" @@ -500,15 +501,15 @@ msgstr "Mitgliedschaftpreis (bezahlte Studenten)" msgid "membership fee (unpaid students)" msgstr "Mitgliedschaftpreis (unbezahlte Studenten)" -#: apps/member/admin.py:65 apps/member/models.py:316 +#: apps/member/admin.py:65 apps/member/models.py:317 msgid "roles" msgstr "Rollen" -#: apps/member/admin.py:66 apps/member/models.py:330 +#: apps/member/admin.py:66 apps/member/models.py:331 msgid "fee" msgstr "Preis" -#: apps/member/apps.py:14 apps/wei/tables.py:181 apps/wei/tables.py:212 +#: apps/member/apps.py:14 apps/wei/tables.py:193 apps/wei/tables.py:224 msgid "member" msgstr "Mitglied" @@ -540,8 +541,8 @@ msgstr "Maximal Größe: 2MB" msgid "This image cannot be loaded." msgstr "Dieses Bild kann nicht geladen werden." -#: apps/member/forms.py:141 apps/member/views.py:100 -#: apps/registration/forms.py:33 apps/registration/views.py:254 +#: apps/member/forms.py:141 apps/member/views.py:101 +#: apps/registration/forms.py:33 apps/registration/views.py:258 msgid "An alias with a similar name already exists." msgstr "Ein ähnliches Alias ist schon benutzt." @@ -587,14 +588,14 @@ msgid "Roles" msgstr "Rollen" #: apps/member/models.py:38 -#: apps/member/templates/member/includes/profile_info.html:34 +#: apps/member/templates/member/includes/profile_info.html:35 #: apps/registration/templates/registration/future_profile_detail.html:40 #: apps/wei/templates/wei/weimembership_form.html:44 msgid "phone number" msgstr "Telefonnummer" #: apps/member/models.py:45 -#: apps/member/templates/member/includes/profile_info.html:28 +#: apps/member/templates/member/includes/profile_info.html:29 #: apps/registration/templates/registration/future_profile_detail.html:34 #: apps/wei/templates/wei/weimembership_form.html:38 msgid "section" @@ -681,14 +682,14 @@ msgid "Year of entry to the school (None if not ENS student)" msgstr "ENS Eintrittjahr (None wenn kein ENS Student)" #: apps/member/models.py:83 -#: apps/member/templates/member/includes/profile_info.html:38 +#: apps/member/templates/member/includes/profile_info.html:39 #: apps/registration/templates/registration/future_profile_detail.html:37 #: apps/wei/templates/wei/weimembership_form.html:41 msgid "address" msgstr "Adresse" #: apps/member/models.py:90 -#: apps/member/templates/member/includes/profile_info.html:45 +#: apps/member/templates/member/includes/profile_info.html:46 #: apps/registration/templates/registration/future_profile_detail.html:43 #: apps/wei/templates/wei/weimembership_form.html:47 msgid "paid" @@ -698,7 +699,7 @@ msgstr "bezahlt" msgid "Tells if the user receive a salary." msgstr "User ist bezahlt." -#: apps/member/models.py:100 apps/treasury/tables.py:146 +#: apps/member/models.py:100 apps/treasury/tables.py:143 msgid "No" msgstr "Nein" @@ -760,7 +761,7 @@ msgstr "Ihre Note Kfet Konto bestätigen" #: apps/member/models.py:204 #: apps/member/templates/member/includes/club_info.html:55 -#: apps/member/templates/member/includes/profile_info.html:31 +#: apps/member/templates/member/includes/profile_info.html:32 #: apps/registration/templates/registration/future_profile_detail.html:22 #: apps/wei/templates/wei/base.html:70 #: apps/wei/templates/wei/weimembership_form.html:20 @@ -810,7 +811,7 @@ msgstr "" "Maximales Datum einer Mitgliedschaft, nach dem Mitglieder es erneuern müssen." #: apps/member/models.py:286 apps/member/models.py:311 -#: apps/note/models/notes.py:177 +#: apps/note/models/notes.py:176 msgid "club" msgstr "Club" @@ -818,41 +819,41 @@ msgstr "Club" msgid "clubs" msgstr "Clubs" -#: apps/member/models.py:321 +#: apps/member/models.py:322 msgid "membership starts on" msgstr "Mitgliedschaft fängt an" -#: apps/member/models.py:325 +#: apps/member/models.py:326 msgid "membership ends on" msgstr "Mitgliedschaft endet am" -#: apps/member/models.py:421 +#: apps/member/models.py:422 #, python-brace-format msgid "The role {role} does not apply to the club {club}." msgstr "Die Rolle {role} ist nicht erlaubt für das Club {club}." -#: apps/member/models.py:430 apps/member/views.py:646 +#: apps/member/models.py:431 apps/member/views.py:651 msgid "User is already a member of the club" msgstr "User ist schon ein Mitglied dieser club" -#: apps/member/models.py:442 apps/member/views.py:656 +#: apps/member/models.py:443 apps/member/views.py:661 msgid "User is not a member of the parent club" msgstr "User ist noch nicht Mitglied des Urclubs" -#: apps/member/models.py:495 +#: apps/member/models.py:496 #, python-brace-format msgid "Membership of {user} for the club {club}" msgstr "Mitgliedschaft von {user} für das Club {club}" -#: apps/member/models.py:498 apps/note/models/transactions.py:358 +#: apps/member/models.py:499 apps/note/models/transactions.py:389 msgid "membership" msgstr "Mitgliedschaft" -#: apps/member/models.py:499 +#: apps/member/models.py:500 msgid "memberships" msgstr "Mitgliedschaften" -#: apps/member/tables.py:121 +#: apps/member/tables.py:137 msgid "Renew" msgstr "Erneuern" @@ -963,8 +964,8 @@ msgstr "" "erlaubt." #: apps/member/templates/member/club_alias.html:10 -#: apps/member/templates/member/profile_alias.html:10 apps/member/views.py:245 -#: apps/member/views.py:448 +#: apps/member/templates/member/profile_alias.html:10 apps/member/views.py:253 +#: apps/member/views.py:456 msgid "Note aliases" msgstr "Note Aliases" @@ -1002,7 +1003,7 @@ msgid "Filter roles:" msgstr "Rollen filter:" #: apps/member/templates/member/club_members.html:36 -#: apps/wei/templates/wei/weimembership_list.html:17 +#: apps/wei/templates/wei/weimembership_list.html:19 msgid "There is no membership found with this pattern." msgstr "Keine Mitgliedschaft mit diesem pattern gefunden." @@ -1020,8 +1021,8 @@ msgid "membership fee" msgstr "Mitgliedsachftpreis" #: apps/member/templates/member/includes/club_info.html:43 -#: apps/member/templates/member/includes/profile_info.html:42 -#: apps/treasury/templates/treasury/sogecredit_detail.html:18 +#: apps/member/templates/member/includes/profile_info.html:43 +#: apps/treasury/templates/treasury/sogecredit_detail.html:24 #: apps/wei/templates/wei/base.html:60 msgid "balance" msgstr "Kontostand" @@ -1039,6 +1040,7 @@ msgstr "Aliases bearbeiten" #: apps/member/templates/member/includes/profile_info.html:7 #: apps/registration/templates/registration/future_profile_detail.html:19 +#: apps/treasury/templates/treasury/sogecredit_detail.html:20 #: apps/wei/templates/wei/weimembership_form.html:17 msgid "username" msgstr "Username" @@ -1051,7 +1053,7 @@ msgstr "Kennwort" msgid "Change password" msgstr "Kennword ändern" -#: apps/member/templates/member/includes/profile_info.html:53 +#: apps/member/templates/member/includes/profile_info.html:55 msgid "API token" msgstr "API token" @@ -1103,43 +1105,43 @@ msgstr "Anmeldung" msgid "This address must be valid." msgstr "Diese Adresse muss gültig sein." -#: apps/member/views.py:137 +#: apps/member/views.py:138 msgid "Profile detail" msgstr "Profile detail" -#: apps/member/views.py:204 +#: apps/member/views.py:205 msgid "Search user" msgstr "User finden" -#: apps/member/views.py:265 +#: apps/member/views.py:273 msgid "Update note picture" msgstr "Notebild ändern" -#: apps/member/views.py:311 +#: apps/member/views.py:319 msgid "Manage auth token" msgstr "Auth token bearbeiten" -#: apps/member/views.py:338 +#: apps/member/views.py:346 msgid "Create new club" msgstr "Neue Club" -#: apps/member/views.py:357 +#: apps/member/views.py:365 msgid "Search club" msgstr "Club finden" -#: apps/member/views.py:390 +#: apps/member/views.py:398 msgid "Club detail" msgstr "Club Details" -#: apps/member/views.py:471 +#: apps/member/views.py:479 msgid "Update club" msgstr "Club bearbeiten" -#: apps/member/views.py:505 +#: apps/member/views.py:513 msgid "Add new member to the club" msgstr "Neue Mitglieder" -#: apps/member/views.py:637 apps/wei/views.py:928 +#: apps/member/views.py:642 apps/wei/views.py:917 msgid "" "This user don't have enough money to join this club, and can't have a " "negative balance." @@ -1147,20 +1149,14 @@ msgstr "" "Diese User hat nicht genug Geld um Mitglied zu werden, und darf nich im Rot " "sein." -#: apps/member/views.py:660 +#: apps/member/views.py:665 msgid "The membership must start after {:%m-%d-%Y}." msgstr "Die Mitgliedschaft muss nach {:%m-%d-Y} anfängen." -#: apps/member/views.py:665 +#: apps/member/views.py:670 msgid "The membership must begin before {:%m-%d-%Y}." msgstr "Die Mitgliedschaft muss vor {:%m-%d-Y} anfängen." -#: apps/member/views.py:672 apps/member/views.py:674 apps/member/views.py:676 -#: apps/registration/views.py:304 apps/registration/views.py:306 -#: apps/registration/views.py:308 apps/wei/views.py:933 apps/wei/views.py:937 -msgid "This field is required." -msgstr "Dies ist ein Pflichtfeld." - #: apps/member/views.py:816 msgid "Manage roles of an user in the club" msgstr "Rollen in diesen Club bearbeiten" @@ -1184,7 +1180,7 @@ msgid "amount" msgstr "Anzahl" #: apps/note/api/serializers.py:183 apps/note/api/serializers.py:189 -#: apps/note/models/transactions.py:227 +#: apps/note/models/transactions.py:228 msgid "" "The transaction can't be saved since the source note or the destination note " "is not active." @@ -1204,7 +1200,7 @@ msgstr "Empfänger" msgid "Reason" msgstr "Grund" -#: apps/note/forms.py:79 apps/treasury/tables.py:139 +#: apps/note/forms.py:79 apps/treasury/tables.py:136 msgid "Valid" msgstr "Gültig" @@ -1224,35 +1220,35 @@ msgstr "Erschafft nacht" msgid "Created before" msgstr "Erschafft vor" -#: apps/note/models/notes.py:32 +#: apps/note/models/notes.py:31 msgid "account balance" msgstr "Kontostand" -#: apps/note/models/notes.py:33 +#: apps/note/models/notes.py:32 msgid "in centimes, money credited for this instance" msgstr "In Cent, der Anzahl Geld für diese Konto" -#: apps/note/models/notes.py:38 +#: apps/note/models/notes.py:37 msgid "last negative date" msgstr "letztes mal im Rot" -#: apps/note/models/notes.py:39 +#: apps/note/models/notes.py:38 msgid "last time the balance was negative" msgstr "letztes mal im Rot" -#: apps/note/models/notes.py:45 +#: apps/note/models/notes.py:44 msgid "display image" msgstr "Bild" -#: apps/note/models/notes.py:54 apps/note/models/transactions.py:132 +#: apps/note/models/notes.py:53 apps/note/models/transactions.py:132 msgid "created at" msgstr "erschafft am" -#: apps/note/models/notes.py:59 +#: apps/note/models/notes.py:58 msgid "active" msgstr "Aktiv" -#: apps/note/models/notes.py:62 +#: apps/note/models/notes.py:61 msgid "" "Designates whether this note should be treated as active. Unselect this " "instead of deleting notes." @@ -1260,7 +1256,7 @@ msgstr "" "Designates whether this note should be treated as active. Unselect this " "instead of deleting notes." -#: apps/note/models/notes.py:69 +#: apps/note/models/notes.py:68 msgid "" "The user blocked his/her note manually, eg. when he/she left the school for " "holidays. It can be reactivated at any time." @@ -1268,53 +1264,53 @@ msgstr "" "The user blocked his/her note manually, eg. when he/she left the school for " "holidays. It can be reactivated at any time." -#: apps/note/models/notes.py:71 +#: apps/note/models/notes.py:70 msgid "The note is blocked by the the BDE and can't be manually reactivated." msgstr "The note is blocked by the the BDE and can't be manually reactivated." -#: apps/note/models/notes.py:79 +#: apps/note/models/notes.py:78 msgid "notes" msgstr "Notes" -#: apps/note/models/notes.py:133 +#: apps/note/models/notes.py:132 msgid "This alias is already taken." msgstr "Dieses Alias ist schon benutzt." -#: apps/note/models/notes.py:153 +#: apps/note/models/notes.py:152 msgid "one's note" msgstr "Jemand Note" -#: apps/note/models/notes.py:154 +#: apps/note/models/notes.py:153 msgid "users note" msgstr "User Note" -#: apps/note/models/notes.py:160 +#: apps/note/models/notes.py:159 #, python-format msgid "%(user)s's note" msgstr "%(user)s's note" -#: apps/note/models/notes.py:181 +#: apps/note/models/notes.py:180 msgid "club note" msgstr "Club Note" -#: apps/note/models/notes.py:182 +#: apps/note/models/notes.py:181 msgid "clubs notes" msgstr "Club Notes" -#: apps/note/models/notes.py:188 +#: apps/note/models/notes.py:187 #, python-format msgid "Note of %(club)s club" msgstr "%(club)s Note" -#: apps/note/models/notes.py:214 +#: apps/note/models/notes.py:213 msgid "special note" msgstr "Sondernote" -#: apps/note/models/notes.py:215 +#: apps/note/models/notes.py:214 msgid "special notes" msgstr "Sondernoten" -#: apps/note/models/notes.py:238 +#: apps/note/models/notes.py:237 msgid "Invalid alias" msgstr "Unerlaublt Alias" @@ -1391,7 +1387,7 @@ msgid "transaction" msgstr "Transaktion" #: apps/note/models/transactions.py:162 -#: apps/treasury/templates/treasury/sogecredit_detail.html:22 +#: apps/treasury/templates/treasury/sogecredit_detail.html:28 msgid "transactions" msgstr "Transaktionen" @@ -1412,34 +1408,34 @@ msgstr "" "Die Notenguthaben müssen zwischen - 92 233 720 368 547 758,08 € und 92 233 " "720 368 547 758,07 € liegen." -#: apps/note/models/transactions.py:276 +#: apps/note/models/transactions.py:277 msgid "" "The destination of this transaction must equal to the destination of the " "template." msgstr "" "Der Empfänger dieser Transaktion muss dem Empfänger der Vorlage entsprechen." -#: apps/note/models/transactions.py:286 +#: apps/note/models/transactions.py:287 msgid "Template" msgstr "Vorlage" -#: apps/note/models/transactions.py:289 +#: apps/note/models/transactions.py:290 msgid "recurrent transaction" msgstr "wiederkehrende Transaktion" -#: apps/note/models/transactions.py:290 +#: apps/note/models/transactions.py:291 msgid "recurrent transactions" msgstr "wiederkehrende Transaktionen" -#: apps/note/models/transactions.py:305 +#: apps/note/models/transactions.py:306 msgid "first_name" msgstr "Vorname" -#: apps/note/models/transactions.py:310 +#: apps/note/models/transactions.py:311 msgid "bank" msgstr "Bank" -#: apps/note/models/transactions.py:327 +#: apps/note/models/transactions.py:328 msgid "" "A special transaction is only possible between a Note associated to a " "payment method and a User or a Club" @@ -1447,19 +1443,25 @@ msgstr "" "Eine Sondertransaktion ist nur zwischen einer Note, die einer " "Zahlungsmethode zugeordnet ist, und einem User oder einem Club möglich" -#: apps/note/models/transactions.py:336 +#: apps/note/models/transactions.py:355 apps/note/models/transactions.py:358 +#: apps/note/models/transactions.py:361 apps/wei/views.py:922 +#: apps/wei/views.py:926 +msgid "This field is required." +msgstr "Dies ist ein Pflichtfeld." + +#: apps/note/models/transactions.py:367 msgid "Special transaction" msgstr "Sondertransaktion" -#: apps/note/models/transactions.py:337 +#: apps/note/models/transactions.py:368 msgid "Special transactions" msgstr "Sondertranskationen" -#: apps/note/models/transactions.py:353 +#: apps/note/models/transactions.py:384 msgid "membership transaction" msgstr "Mitgliedschafttransaktion" -#: apps/note/models/transactions.py:354 apps/treasury/models.py:284 +#: apps/note/models/transactions.py:385 apps/treasury/models.py:289 msgid "membership transactions" msgstr "Mitgliedschaftttransaktionen" @@ -1477,14 +1479,14 @@ msgstr "Kein Grund gegeben" #: apps/note/tables.py:169 apps/note/tables.py:203 apps/treasury/tables.py:39 #: apps/treasury/templates/treasury/invoice_confirm_delete.html:30 -#: apps/treasury/templates/treasury/sogecredit_detail.html:59 -#: apps/wei/tables.py:76 apps/wei/tables.py:103 +#: apps/treasury/templates/treasury/sogecredit_detail.html:65 +#: apps/wei/tables.py:74 apps/wei/tables.py:114 #: apps/wei/templates/wei/weiregistration_confirm_delete.html:31 msgid "Delete" msgstr "Löschen" #: apps/note/tables.py:197 apps/note/templates/note/conso_form.html:132 -#: apps/wei/tables.py:47 apps/wei/tables.py:48 +#: apps/wei/tables.py:48 apps/wei/tables.py:49 #: apps/wei/templates/wei/base.html:89 #: apps/wei/templates/wei/bus_detail.html:20 #: apps/wei/templates/wei/busteam_detail.html:20 @@ -1563,13 +1565,13 @@ msgstr "Aktion" #: apps/note/templates/note/transaction_form.html:112 #: apps/treasury/forms.py:136 apps/treasury/tables.py:67 -#: apps/treasury/tables.py:135 +#: apps/treasury/tables.py:132 #: apps/treasury/templates/treasury/remittance_form.html:23 msgid "Amount" msgstr "Anzahl" #: apps/note/templates/note/transaction_form.html:128 -#: apps/treasury/models.py:51 +#: apps/treasury/models.py:52 msgid "Name" msgstr "Name" @@ -1649,53 +1651,53 @@ msgstr "Sie können keine Taste sehen." msgid "Search transactions" msgstr "Transaktion finden" -#: apps/permission/models.py:92 +#: apps/permission/models.py:89 #, python-brace-format msgid "Can {type} {model}.{field} in {query}" msgstr "Kann {type} {model}.{field} in {query}" -#: apps/permission/models.py:94 +#: apps/permission/models.py:91 #, python-brace-format msgid "Can {type} {model} in {query}" msgstr "Kann {type} {model} in {query}" -#: apps/permission/models.py:107 +#: apps/permission/models.py:104 msgid "rank" msgstr "Rank" -#: apps/permission/models.py:120 +#: apps/permission/models.py:117 msgid "permission mask" msgstr "Berechtigungsmaske" -#: apps/permission/models.py:121 +#: apps/permission/models.py:118 msgid "permission masks" msgstr "Berechtigungsmasken" -#: apps/permission/models.py:127 +#: apps/permission/models.py:124 msgid "add" msgstr "hinzufügen" -#: apps/permission/models.py:128 +#: apps/permission/models.py:125 msgid "view" msgstr "Schauen" -#: apps/permission/models.py:129 +#: apps/permission/models.py:126 msgid "change" msgstr "bearbeiten" -#: apps/permission/models.py:161 +#: apps/permission/models.py:158 msgid "query" msgstr "Abfrage" -#: apps/permission/models.py:174 +#: apps/permission/models.py:171 msgid "mask" msgstr "Maske" -#: apps/permission/models.py:180 +#: apps/permission/models.py:177 msgid "field" msgstr "Feld" -#: apps/permission/models.py:185 +#: apps/permission/models.py:182 msgid "" "Tells if the permission should be granted even if the membership of the user " "is expired." @@ -1703,28 +1705,28 @@ msgstr "" "Gibt an, ob die Berechtigung auch erteilt werden soll, wenn die " "Mitgliedschaft des Benutzers abgelaufen ist." -#: apps/permission/models.py:186 +#: apps/permission/models.py:183 #: apps/permission/templates/permission/all_rights.html:89 msgid "permanent" msgstr "permanent" -#: apps/permission/models.py:197 +#: apps/permission/models.py:194 msgid "permission" msgstr "Berechtigung" -#: apps/permission/models.py:198 apps/permission/models.py:338 +#: apps/permission/models.py:195 apps/permission/models.py:335 msgid "permissions" msgstr "Berechtigungen" -#: apps/permission/models.py:203 +#: apps/permission/models.py:200 msgid "Specifying field applies only to view and change permission types." msgstr "Angabefeld gilt nur zum Anzeigen und Ändern von Berechtigungstypen." -#: apps/permission/models.py:343 +#: apps/permission/models.py:340 msgid "for club" msgstr "Für Club" -#: apps/permission/models.py:353 apps/permission/models.py:354 +#: apps/permission/models.py:350 apps/permission/models.py:351 msgid "role permissions" msgstr "Berechtigung Rollen" @@ -1737,7 +1739,7 @@ msgstr "" "Sie haben nicht die Berechtigung, das Feld {field} in dieser Instanz von " "Modell {app_label} zu ändern. {model_name}" -#: apps/permission/signals.py:73 apps/permission/views.py:103 +#: apps/permission/signals.py:73 apps/permission/views.py:105 #, python-brace-format msgid "" "You don't have the permission to add an instance of model {app_label}." @@ -1795,7 +1797,7 @@ msgstr "Abfrage:" msgid "No associated permission" msgstr "Keine zugehörige Berechtigung" -#: apps/permission/views.py:70 +#: apps/permission/views.py:72 #, python-brace-format msgid "" "You don't have the permission to update this instance of the model " @@ -1805,7 +1807,7 @@ msgstr "" "diesen Parametern zu aktualisieren. Bitte korrigieren Sie Ihre Daten und " "versuchen Sie es erneut." -#: apps/permission/views.py:74 +#: apps/permission/views.py:76 #, python-brace-format msgid "" "You don't have the permission to create an instance of the model \"{model}\" " @@ -1815,11 +1817,11 @@ msgstr "" "diesen Parametern zu erstellen. Bitte korrigieren Sie Ihre Daten und " "versuchen Sie es erneut." -#: apps/permission/views.py:110 note_kfet/templates/base.html:109 +#: apps/permission/views.py:112 note_kfet/templates/base.html:109 msgid "Rights" msgstr "Rechten" -#: apps/permission/views.py:115 +#: apps/permission/views.py:117 msgid "All rights" msgstr "Alle Rechten" @@ -2009,18 +2011,18 @@ msgstr "Unregistrierte Users" msgid "Registration detail" msgstr "Registrierung Detailen" -#: apps/registration/views.py:273 +#: apps/registration/views.py:278 msgid "You must join the BDE." msgstr "Sie müssen die BDE beitreten." -#: apps/registration/views.py:297 +#: apps/registration/views.py:302 msgid "" "The entered amount is not enough for the memberships, should be at least {}" msgstr "" "Der eingegebene Betrag reicht für die Mitgliedschaft nicht aus, sollte " "mindestens {} betragen" -#: apps/registration/views.py:384 +#: apps/registration/views.py:383 msgid "Invalidate pre-registration" msgstr "Ungültige Vorregistrierung" @@ -2028,7 +2030,7 @@ msgstr "Ungültige Vorregistrierung" msgid "Treasury" msgstr "Quaestor" -#: apps/treasury/forms.py:25 apps/treasury/models.py:90 +#: apps/treasury/forms.py:25 apps/treasury/models.py:91 #: apps/treasury/templates/treasury/invoice_form.html:22 msgid "This invoice is locked and can no longer be edited." msgstr "Diese Rechnung ist gesperrt und kann nicht mehr bearbeitet werden." @@ -2041,7 +2043,7 @@ msgstr "Überweisung ist bereits geschlossen." msgid "You can't change the type of the remittance." msgstr "Sie können die Art der Überweisung nicht ändern." -#: apps/treasury/forms.py:124 apps/treasury/models.py:260 +#: apps/treasury/forms.py:124 apps/treasury/models.py:265 #: apps/treasury/tables.py:97 apps/treasury/tables.py:105 #: apps/treasury/templates/treasury/invoice_list.html:16 #: apps/treasury/templates/treasury/remittance_list.html:16 @@ -2053,120 +2055,120 @@ msgstr "Überweisung" msgid "No attached remittance" msgstr "Keine beigefügte Überweisung" -#: apps/treasury/models.py:23 +#: apps/treasury/models.py:24 msgid "Invoice identifier" msgstr "Rechnungskennung" -#: apps/treasury/models.py:37 +#: apps/treasury/models.py:38 msgid "BDE" msgstr "BDE" -#: apps/treasury/models.py:42 +#: apps/treasury/models.py:43 msgid "Object" msgstr "Objekt" -#: apps/treasury/models.py:46 +#: apps/treasury/models.py:47 msgid "Description" msgstr "Beschreibung" -#: apps/treasury/models.py:55 +#: apps/treasury/models.py:56 msgid "Address" msgstr "Adresse" -#: apps/treasury/models.py:60 apps/treasury/models.py:187 +#: apps/treasury/models.py:61 apps/treasury/models.py:191 msgid "Date" msgstr "Datum" -#: apps/treasury/models.py:64 +#: apps/treasury/models.py:65 msgid "Acquitted" msgstr "Bezahlt" -#: apps/treasury/models.py:69 +#: apps/treasury/models.py:70 msgid "Locked" msgstr "Gesperrt" -#: apps/treasury/models.py:70 +#: apps/treasury/models.py:71 msgid "An invoice can't be edited when it is locked." msgstr "Eine Rechnung kann nicht bearbeitet werden, wenn sie gesperrt ist." -#: apps/treasury/models.py:76 +#: apps/treasury/models.py:77 msgid "tex source" msgstr "Tex Quelle" -#: apps/treasury/models.py:110 apps/treasury/models.py:126 +#: apps/treasury/models.py:111 apps/treasury/models.py:127 msgid "invoice" msgstr "Rechnung" -#: apps/treasury/models.py:111 +#: apps/treasury/models.py:112 msgid "invoices" msgstr "Rechnungen" -#: apps/treasury/models.py:114 +#: apps/treasury/models.py:115 #, python-brace-format msgid "Invoice #{id}" msgstr "Rechnung #{id}" -#: apps/treasury/models.py:131 +#: apps/treasury/models.py:132 msgid "Designation" msgstr "Bezeichnung" -#: apps/treasury/models.py:135 +#: apps/treasury/models.py:138 msgid "Quantity" msgstr "Qualität" -#: apps/treasury/models.py:139 +#: apps/treasury/models.py:143 msgid "Unit price" msgstr "Einzelpreis" -#: apps/treasury/models.py:155 +#: apps/treasury/models.py:159 msgid "product" msgstr "Produkt" -#: apps/treasury/models.py:156 +#: apps/treasury/models.py:160 msgid "products" msgstr "Produkten" -#: apps/treasury/models.py:176 +#: apps/treasury/models.py:180 msgid "remittance type" msgstr "Überweisungstyp" -#: apps/treasury/models.py:177 +#: apps/treasury/models.py:181 msgid "remittance types" msgstr "Überweisungstypen" -#: apps/treasury/models.py:198 +#: apps/treasury/models.py:202 msgid "Comment" msgstr "Kommentar" -#: apps/treasury/models.py:203 +#: apps/treasury/models.py:207 msgid "Closed" msgstr "Geschlossen" -#: apps/treasury/models.py:207 +#: apps/treasury/models.py:211 msgid "remittance" msgstr "Überweisung" -#: apps/treasury/models.py:208 +#: apps/treasury/models.py:212 msgid "remittances" msgstr "Überweisungen" -#: apps/treasury/models.py:241 +#: apps/treasury/models.py:245 msgid "Remittance #{:d}: {}" msgstr "Überweisung #{:d}:{}" -#: apps/treasury/models.py:264 +#: apps/treasury/models.py:269 msgid "special transaction proxy" msgstr "spezielle Transaktion Proxy" -#: apps/treasury/models.py:265 +#: apps/treasury/models.py:270 msgid "special transaction proxies" msgstr "spezielle Transaktion Proxies" -#: apps/treasury/models.py:290 +#: apps/treasury/models.py:295 msgid "credit transaction" msgstr "Kredit Transaktion" -#: apps/treasury/models.py:374 +#: apps/treasury/models.py:379 msgid "" "This user doesn't have enough money to pay the memberships with its note. " "Please ask her/him to credit the note before invalidating this credit." @@ -2174,16 +2176,16 @@ msgstr "" "Dieser Benutzer hat nicht genug Geld, um die Mitgliedschaften mit seiner " "Note zu bezahlen." -#: apps/treasury/models.py:389 +#: apps/treasury/models.py:399 #: apps/treasury/templates/treasury/sogecredit_detail.html:10 msgid "Credit from the Société générale" msgstr "Kredit von der Société générale" -#: apps/treasury/models.py:390 +#: apps/treasury/models.py:400 msgid "Credits from the Société générale" msgstr "Krediten von der Société générale" -#: apps/treasury/models.py:393 +#: apps/treasury/models.py:403 #, python-brace-format msgid "Soge credit for {user}" msgstr "Kredit von der Société générale für {user}" @@ -2207,7 +2209,7 @@ msgstr "Transaktionanzahl" msgid "View" msgstr "Schauen" -#: apps/treasury/tables.py:146 +#: apps/treasury/tables.py:143 msgid "Yes" msgstr "Ja" @@ -2312,11 +2314,11 @@ msgstr "Geschlossene Überweisungen" msgid "There is no closed remittance yet." msgstr "Es gibt noch keine geschlossene Überweisung." -#: apps/treasury/templates/treasury/sogecredit_detail.html:29 +#: apps/treasury/templates/treasury/sogecredit_detail.html:35 msgid "total amount" msgstr "Totalanzahlt" -#: apps/treasury/templates/treasury/sogecredit_detail.html:35 +#: apps/treasury/templates/treasury/sogecredit_detail.html:41 msgid "" "Warning: Validating this credit implies that all membership transactions " "will be validated." @@ -2324,7 +2326,7 @@ msgstr "" "Achtung: Die Validierung dieses Guthabens bedeutet, dass alle " "Mitgliedschaftstransaktionen validiert werden." -#: apps/treasury/templates/treasury/sogecredit_detail.html:36 +#: apps/treasury/templates/treasury/sogecredit_detail.html:42 msgid "" "If you delete this credit, there all membership transactions will be also " "validated, but no credit will be operated." @@ -2332,7 +2334,7 @@ msgstr "" "Wenn Sie dieses Kredit löschen, werden dort auch alle " "Mitgliedschaftstransaktionen validiert, es wird jedoch kein Kredit betrieben." -#: apps/treasury/templates/treasury/sogecredit_detail.html:37 +#: apps/treasury/templates/treasury/sogecredit_detail.html:43 msgid "" "If this credit is validated, then the user won't be able to ask for a credit " "from the Société générale." @@ -2340,17 +2342,17 @@ msgstr "" "Wenn dieses Kredit validiert ist, kann der Benutzer bei der Société générale " "kein Guthaben anfordern." -#: apps/treasury/templates/treasury/sogecredit_detail.html:38 +#: apps/treasury/templates/treasury/sogecredit_detail.html:44 msgid "If you think there is an error, please contact the \"respos info\"." msgstr "" "Wenn Sie glauben, dass ein Fehler vorliegt, wenden Sie sich bitte an die " "\"respos info\"." -#: apps/treasury/templates/treasury/sogecredit_detail.html:44 +#: apps/treasury/templates/treasury/sogecredit_detail.html:50 msgid "This credit is already validated." msgstr "Dieser Kredit ist bereits validiert." -#: apps/treasury/templates/treasury/sogecredit_detail.html:49 +#: apps/treasury/templates/treasury/sogecredit_detail.html:55 msgid "" "Warning: if you don't validate this credit, the note of the user doesn't " "have enough money to pay its memberships." @@ -2358,18 +2360,18 @@ msgstr "" "Achtung: Wenn Sie diese Kredit nicht bestätigen, die Note von dem Benutzer " "nicht genug Geld hat, um seine Mitgliedschaft zu zahlen." -#: apps/treasury/templates/treasury/sogecredit_detail.html:50 +#: apps/treasury/templates/treasury/sogecredit_detail.html:56 msgid "Please ask the user to credit its note before deleting this credit." msgstr "" "Bitte bitten Sie den Benutzer, seine Note gutzuschreiben, bevor Sie diese " "Kredit löschen." -#: apps/treasury/templates/treasury/sogecredit_detail.html:57 -#: apps/wei/tables.py:59 apps/wei/tables.py:60 apps/wei/tables.py:99 +#: apps/treasury/templates/treasury/sogecredit_detail.html:63 +#: apps/wei/tables.py:59 apps/wei/tables.py:101 msgid "Validate" msgstr "Validieren" -#: apps/treasury/templates/treasury/sogecredit_detail.html:65 +#: apps/treasury/templates/treasury/sogecredit_detail.html:71 msgid "Return to credit list" msgstr "Zurück zur Kreditlist" @@ -2425,13 +2427,13 @@ msgid "Manage credits from the Société générale" msgstr "Krediten von der Société générale handeln" #: apps/wei/apps.py:10 apps/wei/models.py:49 apps/wei/models.py:50 -#: apps/wei/models.py:61 apps/wei/models.py:167 +#: apps/wei/models.py:61 apps/wei/models.py:172 #: note_kfet/templates/base.html:103 msgid "WEI" msgstr "WEI" -#: apps/wei/forms/registration.py:51 apps/wei/models.py:113 -#: apps/wei/models.py:283 +#: apps/wei/forms/registration.py:51 apps/wei/models.py:118 +#: apps/wei/models.py:315 msgid "bus" msgstr "Bus" @@ -2457,7 +2459,7 @@ msgstr "" "Buschef, freies Elektron)" #: apps/wei/forms/registration.py:67 apps/wei/forms/registration.py:77 -#: apps/wei/models.py:148 +#: apps/wei/models.py:153 msgid "WEI Roles" msgstr "WEI Rollen" @@ -2469,7 +2471,7 @@ msgstr "Wählen Sie die Rollen aus, an denen Sie interessiert sind." msgid "This team doesn't belong to the given bus." msgstr "Dieses Team gehört nicht zum angegebenen Bus." -#: apps/wei/forms/surveys/wei2020.py:30 +#: apps/wei/forms/surveys/wei2021.py:31 msgid "Choose a word:" msgstr "Wählen Sie ein Wort:" @@ -2485,103 +2487,109 @@ msgstr "Anfangsdatum" msgid "date end" msgstr "Abschlussdatum" -#: apps/wei/models.py:77 +#: apps/wei/models.py:70 +#, fuzzy +#| msgid "The user joined the bus" +msgid "seat count in the bus" +msgstr "Der Benutzer ist dem Bus beigetreten" + +#: apps/wei/models.py:82 msgid "survey information" msgstr "Umfrage Infos" -#: apps/wei/models.py:78 +#: apps/wei/models.py:83 msgid "Information about the survey for new members, encoded in JSON" msgstr "Informationen zur Umfrage für neue Mitglieder, codiert in JSON" -#: apps/wei/models.py:100 +#: apps/wei/models.py:105 msgid "Bus" msgstr "Bus" -#: apps/wei/models.py:101 apps/wei/templates/wei/weiclub_detail.html:51 +#: apps/wei/models.py:106 apps/wei/templates/wei/weiclub_detail.html:51 msgid "Buses" msgstr "Buses" -#: apps/wei/models.py:122 +#: apps/wei/models.py:127 msgid "color" msgstr "Farbe" -#: apps/wei/models.py:123 +#: apps/wei/models.py:128 msgid "The color of the T-Shirt, stored with its number equivalent" msgstr "Die Farbe des T-Shirts, gespeichert mit der entsprechenden Nummer" -#: apps/wei/models.py:137 +#: apps/wei/models.py:142 msgid "Bus team" msgstr "Bus Team" -#: apps/wei/models.py:138 +#: apps/wei/models.py:143 msgid "Bus teams" msgstr "Bus Teams" -#: apps/wei/models.py:147 +#: apps/wei/models.py:152 msgid "WEI Role" msgstr "WEI Rolle" -#: apps/wei/models.py:172 +#: apps/wei/models.py:177 msgid "Credit from Société générale" msgstr "Kredit von der Société générale" -#: apps/wei/models.py:177 +#: apps/wei/models.py:182 msgid "Caution check given" msgstr "Caution check given" -#: apps/wei/models.py:181 apps/wei/templates/wei/weimembership_form.html:64 +#: apps/wei/models.py:186 apps/wei/templates/wei/weimembership_form.html:64 msgid "birth date" msgstr "Geburtsdatum" -#: apps/wei/models.py:187 apps/wei/models.py:197 +#: apps/wei/models.py:192 apps/wei/models.py:202 msgid "Male" msgstr "Männlich" -#: apps/wei/models.py:188 apps/wei/models.py:198 +#: apps/wei/models.py:193 apps/wei/models.py:203 msgid "Female" msgstr "Weiblich" -#: apps/wei/models.py:189 +#: apps/wei/models.py:194 msgid "Non binary" msgstr "Nicht binär" -#: apps/wei/models.py:191 apps/wei/templates/wei/weimembership_form.html:55 +#: apps/wei/models.py:196 apps/wei/templates/wei/weimembership_form.html:55 msgid "gender" msgstr "Geschlecht" -#: apps/wei/models.py:200 apps/wei/templates/wei/weimembership_form.html:58 +#: apps/wei/models.py:205 apps/wei/templates/wei/weimembership_form.html:58 msgid "clothing cut" msgstr "Kleidung Schnitt" -#: apps/wei/models.py:213 apps/wei/templates/wei/weimembership_form.html:61 +#: apps/wei/models.py:218 apps/wei/templates/wei/weimembership_form.html:61 msgid "clothing size" msgstr "Kleidergröße" -#: apps/wei/models.py:219 apps/wei/templates/wei/weimembership_form.html:67 +#: apps/wei/models.py:224 apps/wei/templates/wei/weimembership_form.html:67 msgid "health issues" msgstr "Gesundheitsprobleme" -#: apps/wei/models.py:224 apps/wei/templates/wei/weimembership_form.html:70 +#: apps/wei/models.py:229 apps/wei/templates/wei/weimembership_form.html:70 msgid "emergency contact name" msgstr "Notfall-Kontakt" -#: apps/wei/models.py:229 apps/wei/templates/wei/weimembership_form.html:73 +#: apps/wei/models.py:234 apps/wei/templates/wei/weimembership_form.html:73 msgid "emergency contact phone" msgstr "Notfallkontakttelefon" -#: apps/wei/models.py:234 apps/wei/templates/wei/weimembership_form.html:52 +#: apps/wei/models.py:239 apps/wei/templates/wei/weimembership_form.html:52 msgid "first year" msgstr "Erste Jahr" -#: apps/wei/models.py:235 +#: apps/wei/models.py:240 msgid "Tells if the user is new in the school." msgstr "Gibt an, ob der USer neu in der Schule ist." -#: apps/wei/models.py:240 +#: apps/wei/models.py:245 msgid "registration information" msgstr "Registrierung Detailen" -#: apps/wei/models.py:241 +#: apps/wei/models.py:246 msgid "" "Information about the registration (buses for old members, survey for the " "new members), encoded in JSON" @@ -2589,44 +2597,58 @@ msgstr "" "Informationen zur Registrierung (Busse für alte Mitglieder, Umfrage für neue " "Mitglieder), verschlüsselt in JSON" -#: apps/wei/models.py:272 +#: apps/wei/models.py:304 msgid "WEI User" msgstr "WEI User" -#: apps/wei/models.py:273 +#: apps/wei/models.py:305 msgid "WEI Users" msgstr "WEI Users" -#: apps/wei/models.py:293 +#: apps/wei/models.py:325 msgid "team" msgstr "Team" -#: apps/wei/models.py:303 +#: apps/wei/models.py:335 msgid "WEI registration" msgstr "WEI Registrierung" -#: apps/wei/models.py:307 +#: apps/wei/models.py:339 msgid "WEI membership" msgstr "WEI Mitgliedschaft" -#: apps/wei/models.py:308 +#: apps/wei/models.py:340 msgid "WEI memberships" msgstr "WEI Mitgliedschaften" -#: apps/wei/tables.py:127 +#: apps/wei/tables.py:104 +msgid "The user does not have enough money." +msgstr "" + +#: apps/wei/tables.py:107 +#, fuzzy +#| msgid "" +#| "The note has enough money (%(pretty_fee)s required), the registration is " +#| "possible." +msgid "The user has enough money, you can validate the registration." +msgstr "" +"Die Note hat genug Geld (%(pretty_fee)s erforderlich), die Registrierung ist " +"möglich." + +#: apps/wei/tables.py:139 msgid "Year" msgstr "Jahr" -#: apps/wei/tables.py:165 apps/wei/templates/wei/bus_detail.html:32 +#: apps/wei/tables.py:177 apps/wei/templates/wei/bus_detail.html:32 #: apps/wei/templates/wei/busteam_detail.html:50 msgid "Teams" msgstr "Teams" -#: apps/wei/tables.py:174 apps/wei/tables.py:215 +#: apps/wei/tables.py:186 apps/wei/tables.py:227 msgid "Members count" msgstr "Anzahl Mitgliedern" -#: apps/wei/tables.py:181 apps/wei/tables.py:212 +#: apps/wei/tables.py:193 apps/wei/tables.py:224 msgid "members" msgstr "Mitglieder" @@ -2646,11 +2668,11 @@ msgstr "WEI Preis (unbezahlte Studenten)" msgid "WEI list" msgstr "WEI Liste" -#: apps/wei/templates/wei/base.html:81 apps/wei/views.py:508 +#: apps/wei/templates/wei/base.html:81 apps/wei/views.py:510 msgid "Register 1A" msgstr "1A Registrieren" -#: apps/wei/templates/wei/base.html:85 apps/wei/views.py:576 +#: apps/wei/templates/wei/base.html:85 apps/wei/views.py:578 msgid "Register 2A+" msgstr "2A+ Registrieren" @@ -2673,14 +2695,14 @@ msgstr "Mitglied" #: apps/wei/templates/wei/bus_detail.html:54 #: apps/wei/templates/wei/busteam_detail.html:60 -#: apps/wei/templates/wei/weimembership_list.html:29 +#: apps/wei/templates/wei/weimembership_list.html:31 msgid "View as PDF" msgstr "Als PDF schauen" #: apps/wei/templates/wei/survey.html:11 #: apps/wei/templates/wei/survey_closed.html:11 -#: apps/wei/templates/wei/survey_end.html:11 apps/wei/views.py:984 -#: apps/wei/views.py:1039 apps/wei/views.py:1049 +#: apps/wei/templates/wei/survey_end.html:11 apps/wei/views.py:973 +#: apps/wei/views.py:1028 apps/wei/views.py:1038 msgid "Survey WEI" msgstr "WEI Umfrage" @@ -2840,7 +2862,7 @@ msgstr "" "Mitgliedschaft wird automatisch bearbeitet, die WEI-Registrierung beinhaltet " "den Mitgliedsbeitrag." -#: apps/wei/templates/wei/weimembership_list.html:23 +#: apps/wei/templates/wei/weimembership_list.html:27 msgid "View unvalidated registrations..." msgstr "Nicht validierte Registrierungen anzeigen ..." @@ -2858,11 +2880,11 @@ msgstr "" "Möchten Sie die Registrierung von %(user)s für die WEI %(wei_name)s wirklich " "löschen? Diese Aktion kann nicht rückgängig gemacht werden." -#: apps/wei/templates/wei/weiregistration_list.html:17 +#: apps/wei/templates/wei/weiregistration_list.html:19 msgid "There is no pre-registration found with this pattern." msgstr "Bei diesem Muster wurde keine Vorregistrierung gefunden." -#: apps/wei/templates/wei/weiregistration_list.html:23 +#: apps/wei/templates/wei/weiregistration_list.html:27 msgid "View validated memberships..." msgstr "Validierte Mitgliedschaften anzeigen ..." @@ -2902,31 +2924,31 @@ msgstr "Neue Bus" msgid "Update bus" msgstr "Bus bearbeiten" -#: apps/wei/views.py:364 +#: apps/wei/views.py:366 msgid "Manage bus" msgstr "Bus ändern" -#: apps/wei/views.py:391 +#: apps/wei/views.py:393 msgid "Create new team" msgstr "Neue Bus Team" -#: apps/wei/views.py:431 +#: apps/wei/views.py:433 msgid "Update team" msgstr "Team bearbeiten" -#: apps/wei/views.py:462 +#: apps/wei/views.py:464 msgid "Manage WEI team" msgstr "WEI Team bearbeiten" -#: apps/wei/views.py:484 +#: apps/wei/views.py:486 msgid "Register first year student to the WEI" msgstr "Registrieren Sie den Erstsemester beim WEI" -#: apps/wei/views.py:530 apps/wei/views.py:611 +#: apps/wei/views.py:532 apps/wei/views.py:613 msgid "This user is already registered to this WEI." msgstr "Dieser Benutzer ist bereits bei dieser WEI registriert." -#: apps/wei/views.py:535 +#: apps/wei/views.py:537 msgid "" "This user can't be in her/his first year since he/she has already " "participated to a WEI." @@ -2934,47 +2956,43 @@ msgstr "" "Dieser Benutzer kann nicht in seinem ersten Jahr sein, da er bereits an " "einer WEI teilgenommen hat." -#: apps/wei/views.py:552 +#: apps/wei/views.py:554 msgid "Register old student to the WEI" msgstr "Registrieren Sie einen alten Studenten beim WEI" -#: apps/wei/views.py:595 apps/wei/views.py:684 +#: apps/wei/views.py:597 apps/wei/views.py:686 msgid "You already opened an account in the Société générale." msgstr "Sie haben bereits ein Konto in der Société générale eröffnet." -#: apps/wei/views.py:641 +#: apps/wei/views.py:643 msgid "Update WEI Registration" msgstr "WEI Registrierung aktualisieren" -#: apps/wei/views.py:744 +#: apps/wei/views.py:746 msgid "Delete WEI registration" msgstr "WEI Registrierung löschen" -#: apps/wei/views.py:755 +#: apps/wei/views.py:757 msgid "You don't have the right to delete this WEI registration." msgstr "Sie haben nicht das Recht, diese WEI-Registrierung zu löschen." -#: apps/wei/views.py:774 +#: apps/wei/views.py:776 msgid "Validate WEI registration" msgstr "Überprüfen Sie die WEI-Registrierung" -#: apps/wei/views.py:922 -msgid "This user didn't give her/his caution check." -msgstr "Dieser User hat seine / ihre Vorsicht nicht überprüft." - -#: note_kfet/settings/base.py:157 +#: note_kfet/settings/base.py:161 msgid "German" msgstr "Deutsch" -#: note_kfet/settings/base.py:158 +#: note_kfet/settings/base.py:162 msgid "English" msgstr "English" -#: note_kfet/settings/base.py:159 +#: note_kfet/settings/base.py:163 msgid "Spanish" msgstr "Spanisch" -#: note_kfet/settings/base.py:160 +#: note_kfet/settings/base.py:164 msgid "French" msgstr "Französich" @@ -3073,17 +3091,17 @@ msgstr "Registrieren" msgid "Log in" msgstr "Anmelden" -#: note_kfet/templates/base.html:156 +#: note_kfet/templates/base.html:160 msgid "" "You are not a BDE member anymore. Please renew your membership if you want " "to use the note." msgstr "" -#: note_kfet/templates/base.html:160 +#: note_kfet/templates/base.html:164 msgid "You are not a Kfet member, so you can't use your note account." msgstr "" -#: note_kfet/templates/base.html:166 +#: note_kfet/templates/base.html:170 msgid "" "Your e-mail address is not validated. Please check your mail inbox and click " "on the validation link." @@ -3091,7 +3109,7 @@ msgstr "" "Ihre E-Mail-Adresse ist nicht validiert. Bitte überprüfen Sie Ihren " "Posteingang und klicken Sie auf den Validierungslink." -#: note_kfet/templates/base.html:171 +#: note_kfet/templates/base.html:176 msgid "" "You declared that you opened a bank account in the Société générale. The " "bank did not validate the creation of the account to the BDE, so the " @@ -3100,7 +3118,7 @@ msgid "" "you go to the end of the account creation." msgstr "" -#: note_kfet/templates/base.html:194 +#: note_kfet/templates/base.html:199 msgid "Contact us" msgstr "Kontakt" @@ -3225,6 +3243,9 @@ msgstr "" "müssen Ihre E-Mail-Adresse auch überprüfen, indem Sie dem Link folgen, den " "Sie erhalten haben." +#~ msgid "This user didn't give her/his caution check." +#~ msgstr "Dieser User hat seine / ihre Vorsicht nicht überprüft." + #~ msgid "Central Authentication Service" #~ msgstr "Central Authentication Service" diff --git a/locale/es/LC_MESSAGES/django.po b/locale/es/LC_MESSAGES/django.po index b726917d..e582dab0 100644 --- a/locale/es/LC_MESSAGES/django.po +++ b/locale/es/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-15 23:26+0100\n" +"POT-Creation-Date: 2021-08-29 14:06+0200\n" "PO-Revision-Date: 2020-11-17 23:47+0100\n" "Last-Translator: elkmaennchen \n" "Language-Team: \n" @@ -51,11 +51,11 @@ msgstr "Usted no puede invitar más de 3 persona a esta actividad." #: apps/member/models.py:199 #: apps/member/templates/member/includes/club_info.html:4 #: apps/member/templates/member/includes/profile_info.html:4 -#: apps/note/models/notes.py:232 apps/note/models/transactions.py:26 -#: apps/note/models/transactions.py:46 apps/note/models/transactions.py:300 -#: apps/permission/models.py:333 +#: apps/note/models/notes.py:231 apps/note/models/transactions.py:26 +#: apps/note/models/transactions.py:46 apps/note/models/transactions.py:301 +#: apps/permission/models.py:330 #: apps/registration/templates/registration/future_profile_detail.html:16 -#: apps/wei/models.py:66 apps/wei/models.py:118 +#: apps/wei/models.py:66 apps/wei/models.py:123 #: apps/wei/templates/wei/base.html:26 #: apps/wei/templates/wei/weimembership_form.html:14 msgid "name" @@ -89,8 +89,8 @@ msgstr "tipos de actividad" #: apps/activity/models.py:68 #: apps/activity/templates/activity/includes/activity_info.html:19 -#: apps/note/models/transactions.py:81 apps/permission/models.py:113 -#: apps/permission/models.py:192 apps/wei/models.py:72 apps/wei/models.py:129 +#: apps/note/models/transactions.py:81 apps/permission/models.py:110 +#: apps/permission/models.py:189 apps/wei/models.py:77 apps/wei/models.py:134 msgid "description" msgstr "descripción" @@ -104,15 +104,14 @@ msgstr "Lugar donde se organiza la actividad, por ejemplo la Kfet." #: apps/activity/models.py:83 #: apps/activity/templates/activity/includes/activity_info.html:22 -#: apps/note/models/notes.py:208 apps/note/models/transactions.py:66 -#: apps/permission/models.py:167 +#: apps/note/models/notes.py:207 apps/note/models/transactions.py:66 +#: apps/permission/models.py:164 msgid "type" msgstr "tipo" #: apps/activity/models.py:89 apps/logs/models.py:22 apps/member/models.py:305 -#: apps/note/models/notes.py:149 apps/treasury/models.py:278 -#: apps/treasury/templates/treasury/sogecredit_detail.html:14 -#: apps/wei/models.py:160 apps/wei/templates/wei/survey.html:15 +#: apps/note/models/notes.py:148 apps/treasury/models.py:283 +#: apps/wei/models.py:165 apps/wei/templates/wei/survey.html:15 msgid "user" msgstr "usuario" @@ -166,7 +165,7 @@ msgid "entry time" msgstr "hora de entrada" #: apps/activity/models.py:178 apps/note/apps.py:14 -#: apps/note/models/notes.py:78 +#: apps/note/models/notes.py:77 msgid "note" msgstr "note" @@ -203,12 +202,14 @@ msgid "The balance is negative." msgstr "El saldo es negativo." #: apps/activity/models.py:240 +#: apps/treasury/templates/treasury/sogecredit_detail.html:14 msgid "last name" msgstr "apellido" #: apps/activity/models.py:245 #: apps/member/templates/member/includes/profile_info.html:4 #: apps/registration/templates/registration/future_profile_detail.html:16 +#: apps/treasury/templates/treasury/sogecredit_detail.html:17 #: apps/wei/templates/wei/weimembership_form.html:14 msgid "first name" msgstr "nombre" @@ -249,7 +250,7 @@ msgstr "Entrado el " msgid "remove" msgstr "quitar" -#: apps/activity/tables.py:80 apps/note/forms.py:68 apps/treasury/models.py:193 +#: apps/activity/tables.py:80 apps/note/forms.py:68 apps/treasury/models.py:197 msgid "Type" msgstr "Tipo" @@ -266,11 +267,11 @@ msgstr "Apellido" msgid "First name" msgstr "Nombre" -#: apps/activity/tables.py:86 apps/note/models/notes.py:87 +#: apps/activity/tables.py:86 apps/note/models/notes.py:86 msgid "Note" msgstr "Note" -#: apps/activity/tables.py:88 apps/member/tables.py:46 +#: apps/activity/tables.py:88 apps/member/tables.py:49 msgid "Balance" msgstr "Saldo de la cuenta" @@ -283,7 +284,7 @@ msgid "Guest deleted" msgstr "Invitados suprimidos" #: apps/activity/templates/activity/activity_entry.html:14 -#: apps/note/models/transactions.py:256 +#: apps/note/models/transactions.py:257 #: apps/note/templates/note/transaction_form.html:16 #: apps/note/templates/note/transaction_form.html:148 #: note_kfet/templates/base.html:73 @@ -291,13 +292,13 @@ msgid "Transfer" msgstr "Transferencia" #: apps/activity/templates/activity/activity_entry.html:18 -#: apps/note/models/transactions.py:316 +#: apps/note/models/transactions.py:317 #: apps/note/templates/note/transaction_form.html:21 msgid "Credit" msgstr "Crédito" #: apps/activity/templates/activity/activity_entry.html:21 -#: apps/note/models/transactions.py:316 +#: apps/note/models/transactions.py:317 #: apps/note/templates/note/transaction_form.html:25 msgid "Debit" msgstr "Débito" @@ -436,7 +437,7 @@ msgstr "Logs" msgid "IP Address" msgstr "Dirección IP" -#: apps/logs/models.py:36 apps/permission/models.py:137 +#: apps/logs/models.py:36 apps/permission/models.py:134 msgid "model" msgstr "modelo" @@ -457,8 +458,8 @@ msgid "create" msgstr "crear" #: apps/logs/models.py:65 apps/note/tables.py:165 apps/note/tables.py:201 -#: apps/permission/models.py:130 apps/treasury/tables.py:38 -#: apps/wei/tables.py:75 +#: apps/permission/models.py:127 apps/treasury/tables.py:38 +#: apps/wei/tables.py:73 msgid "delete" msgstr "suprimir" @@ -497,15 +498,15 @@ msgstr "pago de afiliación (estudiantes pagados)" msgid "membership fee (unpaid students)" msgstr "pago de afiliación (estudiantes no pagados)" -#: apps/member/admin.py:65 apps/member/models.py:316 +#: apps/member/admin.py:65 apps/member/models.py:317 msgid "roles" msgstr "papel" -#: apps/member/admin.py:66 apps/member/models.py:330 +#: apps/member/admin.py:66 apps/member/models.py:331 msgid "fee" msgstr "pago" -#: apps/member/apps.py:14 apps/wei/tables.py:181 apps/wei/tables.py:212 +#: apps/member/apps.py:14 apps/wei/tables.py:193 apps/wei/tables.py:224 msgid "member" msgstr "miembro" @@ -537,8 +538,8 @@ msgstr "Tamaño máximo : 2Mo" msgid "This image cannot be loaded." msgstr "Esta imagen no puede ser cargada." -#: apps/member/forms.py:141 apps/member/views.py:100 -#: apps/registration/forms.py:33 apps/registration/views.py:254 +#: apps/member/forms.py:141 apps/member/views.py:101 +#: apps/registration/forms.py:33 apps/registration/views.py:258 msgid "An alias with a similar name already exists." msgstr "Un alias similar ya existe." @@ -584,14 +585,14 @@ msgid "Roles" msgstr "Papeles" #: apps/member/models.py:38 -#: apps/member/templates/member/includes/profile_info.html:34 +#: apps/member/templates/member/includes/profile_info.html:35 #: apps/registration/templates/registration/future_profile_detail.html:40 #: apps/wei/templates/wei/weimembership_form.html:44 msgid "phone number" msgstr "número de teléfono" #: apps/member/models.py:45 -#: apps/member/templates/member/includes/profile_info.html:28 +#: apps/member/templates/member/includes/profile_info.html:29 #: apps/registration/templates/registration/future_profile_detail.html:34 #: apps/wei/templates/wei/weimembership_form.html:38 msgid "section" @@ -678,14 +679,14 @@ msgid "Year of entry to the school (None if not ENS student)" msgstr "Año de ingreso en la escuela (None si no un alumn@ ENS)" #: apps/member/models.py:83 -#: apps/member/templates/member/includes/profile_info.html:38 +#: apps/member/templates/member/includes/profile_info.html:39 #: apps/registration/templates/registration/future_profile_detail.html:37 #: apps/wei/templates/wei/weimembership_form.html:41 msgid "address" msgstr "dirección" #: apps/member/models.py:90 -#: apps/member/templates/member/includes/profile_info.html:45 +#: apps/member/templates/member/includes/profile_info.html:46 #: apps/registration/templates/registration/future_profile_detail.html:43 #: apps/wei/templates/wei/weimembership_form.html:47 msgid "paid" @@ -695,7 +696,7 @@ msgstr "pagado" msgid "Tells if the user receive a salary." msgstr "Indica si el usuario percibe un salario." -#: apps/member/models.py:100 apps/treasury/tables.py:146 +#: apps/member/models.py:100 apps/treasury/tables.py:143 msgid "No" msgstr "No" @@ -757,7 +758,7 @@ msgstr "Active su cuenta Note Kfet" #: apps/member/models.py:204 #: apps/member/templates/member/includes/club_info.html:55 -#: apps/member/templates/member/includes/profile_info.html:31 +#: apps/member/templates/member/includes/profile_info.html:32 #: apps/registration/templates/registration/future_profile_detail.html:22 #: apps/wei/templates/wei/base.html:70 #: apps/wei/templates/wei/weimembership_form.html:20 @@ -806,7 +807,7 @@ msgstr "" "prorrogarla." #: apps/member/models.py:286 apps/member/models.py:311 -#: apps/note/models/notes.py:177 +#: apps/note/models/notes.py:176 msgid "club" msgstr "club" @@ -814,41 +815,41 @@ msgstr "club" msgid "clubs" msgstr "clubs" -#: apps/member/models.py:321 +#: apps/member/models.py:322 msgid "membership starts on" msgstr "afiliación empezá el" -#: apps/member/models.py:325 +#: apps/member/models.py:326 msgid "membership ends on" msgstr "afiliación termina el" -#: apps/member/models.py:421 +#: apps/member/models.py:422 #, python-brace-format msgid "The role {role} does not apply to the club {club}." msgstr "El papel {role} no se encuentra en el club {club}." -#: apps/member/models.py:430 apps/member/views.py:646 +#: apps/member/models.py:431 apps/member/views.py:651 msgid "User is already a member of the club" msgstr "Usuario ya esta un miembro del club" -#: apps/member/models.py:442 apps/member/views.py:656 +#: apps/member/models.py:443 apps/member/views.py:661 msgid "User is not a member of the parent club" msgstr "Usuario no es un miembro del club pariente" -#: apps/member/models.py:495 +#: apps/member/models.py:496 #, python-brace-format msgid "Membership of {user} for the club {club}" msgstr "Afiliación of {user} for the club {club}" -#: apps/member/models.py:498 apps/note/models/transactions.py:358 +#: apps/member/models.py:499 apps/note/models/transactions.py:389 msgid "membership" msgstr "afiliación" -#: apps/member/models.py:499 +#: apps/member/models.py:500 msgid "memberships" msgstr "afiliaciones" -#: apps/member/tables.py:121 +#: apps/member/tables.py:137 msgid "Renew" msgstr "Prorrogar" @@ -956,8 +957,8 @@ msgstr "" "nuevo posibles." #: apps/member/templates/member/club_alias.html:10 -#: apps/member/templates/member/profile_alias.html:10 apps/member/views.py:245 -#: apps/member/views.py:448 +#: apps/member/templates/member/profile_alias.html:10 apps/member/views.py:253 +#: apps/member/views.py:456 msgid "Note aliases" msgstr "Alias de la note" @@ -995,7 +996,7 @@ msgid "Filter roles:" msgstr "Filtrar los papeles :" #: apps/member/templates/member/club_members.html:36 -#: apps/wei/templates/wei/weimembership_list.html:17 +#: apps/wei/templates/wei/weimembership_list.html:19 msgid "There is no membership found with this pattern." msgstr "No hay afiliación encontrada con esta entrada." @@ -1013,8 +1014,8 @@ msgid "membership fee" msgstr "pago de afiliación" #: apps/member/templates/member/includes/club_info.html:43 -#: apps/member/templates/member/includes/profile_info.html:42 -#: apps/treasury/templates/treasury/sogecredit_detail.html:18 +#: apps/member/templates/member/includes/profile_info.html:43 +#: apps/treasury/templates/treasury/sogecredit_detail.html:24 #: apps/wei/templates/wei/base.html:60 msgid "balance" msgstr "saldo de la cuenta" @@ -1032,6 +1033,7 @@ msgstr "Gestionar los alias" #: apps/member/templates/member/includes/profile_info.html:7 #: apps/registration/templates/registration/future_profile_detail.html:19 +#: apps/treasury/templates/treasury/sogecredit_detail.html:20 #: apps/wei/templates/wei/weimembership_form.html:17 msgid "username" msgstr "nombre de usuario" @@ -1044,7 +1046,7 @@ msgstr "contraseña" msgid "Change password" msgstr "Cambiar la contraseña" -#: apps/member/templates/member/includes/profile_info.html:53 +#: apps/member/templates/member/includes/profile_info.html:55 msgid "API token" msgstr "Acceso API" @@ -1096,43 +1098,43 @@ msgstr "Registraciones" msgid "This address must be valid." msgstr "Este correo tiene que ser valido." -#: apps/member/views.py:137 +#: apps/member/views.py:138 msgid "Profile detail" msgstr "Detalles del usuario" -#: apps/member/views.py:204 +#: apps/member/views.py:205 msgid "Search user" msgstr "Buscar un usuario" -#: apps/member/views.py:265 +#: apps/member/views.py:273 msgid "Update note picture" msgstr "Modificar la imagen de la note" -#: apps/member/views.py:311 +#: apps/member/views.py:319 msgid "Manage auth token" msgstr "Gestionar los token de autentificación" -#: apps/member/views.py:338 +#: apps/member/views.py:346 msgid "Create new club" msgstr "Crear un nuevo club" -#: apps/member/views.py:357 +#: apps/member/views.py:365 msgid "Search club" msgstr "Buscar un club" -#: apps/member/views.py:390 +#: apps/member/views.py:398 msgid "Club detail" msgstr "Detalles del club" -#: apps/member/views.py:471 +#: apps/member/views.py:479 msgid "Update club" msgstr "Modificar el club" -#: apps/member/views.py:505 +#: apps/member/views.py:513 msgid "Add new member to the club" msgstr "Añadir un nuevo miembro al club" -#: apps/member/views.py:637 apps/wei/views.py:928 +#: apps/member/views.py:642 apps/wei/views.py:917 msgid "" "This user don't have enough money to join this club, and can't have a " "negative balance." @@ -1140,20 +1142,14 @@ msgstr "" "Este usuario no tiene suficiente dinero para unirse a este club, y no puede " "tener un saldo negativo." -#: apps/member/views.py:660 +#: apps/member/views.py:665 msgid "The membership must start after {:%m-%d-%Y}." msgstr "La afiliación tiene que empezar después del {:%d-%m-%Y}." -#: apps/member/views.py:665 +#: apps/member/views.py:670 msgid "The membership must begin before {:%m-%d-%Y}." msgstr "La afiliación tiene que empezar antes del {:%d-%m-%Y}." -#: apps/member/views.py:672 apps/member/views.py:674 apps/member/views.py:676 -#: apps/registration/views.py:304 apps/registration/views.py:306 -#: apps/registration/views.py:308 apps/wei/views.py:933 apps/wei/views.py:937 -msgid "This field is required." -msgstr "Este campo es obligatorio." - #: apps/member/views.py:816 msgid "Manage roles of an user in the club" msgstr "Gestionar los papeles de un usuario en el club" @@ -1177,7 +1173,7 @@ msgid "amount" msgstr "monto" #: apps/note/api/serializers.py:183 apps/note/api/serializers.py:189 -#: apps/note/models/transactions.py:227 +#: apps/note/models/transactions.py:228 msgid "" "The transaction can't be saved since the source note or the destination note " "is not active." @@ -1197,7 +1193,7 @@ msgstr "Destino" msgid "Reason" msgstr "Motivo" -#: apps/note/forms.py:79 apps/treasury/tables.py:139 +#: apps/note/forms.py:79 apps/treasury/tables.py:136 msgid "Valid" msgstr "Valido" @@ -1217,35 +1213,35 @@ msgstr "Creado después" msgid "Created before" msgstr "Creado antes" -#: apps/note/models/notes.py:32 +#: apps/note/models/notes.py:31 msgid "account balance" msgstr "saldo de la cuenta" -#: apps/note/models/notes.py:33 +#: apps/note/models/notes.py:32 msgid "in centimes, money credited for this instance" msgstr "en céntimos, dinero acreditado por este instancia" -#: apps/note/models/notes.py:38 +#: apps/note/models/notes.py:37 msgid "last negative date" msgstr "última fecha en negativo" -#: apps/note/models/notes.py:39 +#: apps/note/models/notes.py:38 msgid "last time the balance was negative" msgstr "último momento en el cual el saldo estaba negativo" -#: apps/note/models/notes.py:45 +#: apps/note/models/notes.py:44 msgid "display image" msgstr "imagen mostrada" -#: apps/note/models/notes.py:54 apps/note/models/transactions.py:132 +#: apps/note/models/notes.py:53 apps/note/models/transactions.py:132 msgid "created at" msgstr "creada el" -#: apps/note/models/notes.py:59 +#: apps/note/models/notes.py:58 msgid "active" msgstr "activo" -#: apps/note/models/notes.py:62 +#: apps/note/models/notes.py:61 msgid "" "Designates whether this note should be treated as active. Unselect this " "instead of deleting notes." @@ -1253,7 +1249,7 @@ msgstr "" "Indica si la note tiene que ser considerada como activa. Desmarcar en vez de " "suprimir la note." -#: apps/note/models/notes.py:69 +#: apps/note/models/notes.py:68 msgid "" "The user blocked his/her note manually, eg. when he/she left the school for " "holidays. It can be reactivated at any time." @@ -1261,54 +1257,54 @@ msgstr "" "El usuario bloqueó su note, por ejemplo cuando se fue de vacaciones. Puede " "ser desbloqueada en cualquier momento." -#: apps/note/models/notes.py:71 +#: apps/note/models/notes.py:70 msgid "The note is blocked by the the BDE and can't be manually reactivated." msgstr "" "La note esta bloqueada por el BDE y no puede ser desbloqueada por el usuario." -#: apps/note/models/notes.py:79 +#: apps/note/models/notes.py:78 msgid "notes" msgstr "notes" -#: apps/note/models/notes.py:133 +#: apps/note/models/notes.py:132 msgid "This alias is already taken." msgstr "Este alias ya esta utilizado." -#: apps/note/models/notes.py:153 +#: apps/note/models/notes.py:152 msgid "one's note" msgstr "note de un usuario" -#: apps/note/models/notes.py:154 +#: apps/note/models/notes.py:153 msgid "users note" msgstr "notes de los usuarios" -#: apps/note/models/notes.py:160 +#: apps/note/models/notes.py:159 #, python-format msgid "%(user)s's note" msgstr "Note de %(user)s" -#: apps/note/models/notes.py:181 +#: apps/note/models/notes.py:180 msgid "club note" msgstr "note de un club" -#: apps/note/models/notes.py:182 +#: apps/note/models/notes.py:181 msgid "clubs notes" msgstr "notes de los clubs" -#: apps/note/models/notes.py:188 +#: apps/note/models/notes.py:187 #, python-format msgid "Note of %(club)s club" msgstr "Note del club %(club)s" -#: apps/note/models/notes.py:214 +#: apps/note/models/notes.py:213 msgid "special note" msgstr "note especial" -#: apps/note/models/notes.py:215 +#: apps/note/models/notes.py:214 msgid "special notes" msgstr "notes especiales" -#: apps/note/models/notes.py:238 +#: apps/note/models/notes.py:237 msgid "Invalid alias" msgstr "Alias inválido" @@ -1385,7 +1381,7 @@ msgid "transaction" msgstr "transacción" #: apps/note/models/transactions.py:162 -#: apps/treasury/templates/treasury/sogecredit_detail.html:22 +#: apps/treasury/templates/treasury/sogecredit_detail.html:28 msgid "transactions" msgstr "transacciones" @@ -1406,33 +1402,33 @@ msgstr "" "El saldo de la note tiene que ser entre - 92 233 720 368 547 758.08 € y 92 " "233 720 368 547 758.07 €." -#: apps/note/models/transactions.py:276 +#: apps/note/models/transactions.py:277 msgid "" "The destination of this transaction must equal to the destination of the " "template." msgstr "" -#: apps/note/models/transactions.py:286 +#: apps/note/models/transactions.py:287 msgid "Template" msgstr "" -#: apps/note/models/transactions.py:289 +#: apps/note/models/transactions.py:290 msgid "recurrent transaction" msgstr "" -#: apps/note/models/transactions.py:290 +#: apps/note/models/transactions.py:291 msgid "recurrent transactions" msgstr "" -#: apps/note/models/transactions.py:305 +#: apps/note/models/transactions.py:306 msgid "first_name" msgstr "nombre" -#: apps/note/models/transactions.py:310 +#: apps/note/models/transactions.py:311 msgid "bank" msgstr "banco" -#: apps/note/models/transactions.py:327 +#: apps/note/models/transactions.py:328 msgid "" "A special transaction is only possible between a Note associated to a " "payment method and a User or a Club" @@ -1440,19 +1436,25 @@ msgstr "" "Una transacción especial solo esta disponible entre una note de un modo de " "pago y un usuario o un club" -#: apps/note/models/transactions.py:336 +#: apps/note/models/transactions.py:355 apps/note/models/transactions.py:358 +#: apps/note/models/transactions.py:361 apps/wei/views.py:922 +#: apps/wei/views.py:926 +msgid "This field is required." +msgstr "Este campo es obligatorio." + +#: apps/note/models/transactions.py:367 msgid "Special transaction" msgstr "Transacción especial" -#: apps/note/models/transactions.py:337 +#: apps/note/models/transactions.py:368 msgid "Special transactions" msgstr "Transacciones especiales" -#: apps/note/models/transactions.py:353 +#: apps/note/models/transactions.py:384 msgid "membership transaction" msgstr "transacción de afiliación" -#: apps/note/models/transactions.py:354 apps/treasury/models.py:284 +#: apps/note/models/transactions.py:385 apps/treasury/models.py:289 msgid "membership transactions" msgstr "transacciones de afiliación" @@ -1470,14 +1472,14 @@ msgstr "Ningún motivo dado" #: apps/note/tables.py:169 apps/note/tables.py:203 apps/treasury/tables.py:39 #: apps/treasury/templates/treasury/invoice_confirm_delete.html:30 -#: apps/treasury/templates/treasury/sogecredit_detail.html:59 -#: apps/wei/tables.py:76 apps/wei/tables.py:103 +#: apps/treasury/templates/treasury/sogecredit_detail.html:65 +#: apps/wei/tables.py:74 apps/wei/tables.py:114 #: apps/wei/templates/wei/weiregistration_confirm_delete.html:31 msgid "Delete" msgstr "Suprimir" #: apps/note/tables.py:197 apps/note/templates/note/conso_form.html:132 -#: apps/wei/tables.py:47 apps/wei/tables.py:48 +#: apps/wei/tables.py:48 apps/wei/tables.py:49 #: apps/wei/templates/wei/base.html:89 #: apps/wei/templates/wei/bus_detail.html:20 #: apps/wei/templates/wei/busteam_detail.html:20 @@ -1556,13 +1558,13 @@ msgstr "Acción" #: apps/note/templates/note/transaction_form.html:112 #: apps/treasury/forms.py:136 apps/treasury/tables.py:67 -#: apps/treasury/tables.py:135 +#: apps/treasury/tables.py:132 #: apps/treasury/templates/treasury/remittance_form.html:23 msgid "Amount" msgstr "Monto" #: apps/note/templates/note/transaction_form.html:128 -#: apps/treasury/models.py:51 +#: apps/treasury/models.py:52 msgid "Name" msgstr "Nombre" @@ -1642,53 +1644,53 @@ msgstr "Usted no puede ver ningún botón." msgid "Search transactions" msgstr "Buscar transacciones" -#: apps/permission/models.py:92 +#: apps/permission/models.py:89 #, python-brace-format msgid "Can {type} {model}.{field} in {query}" msgstr "" -#: apps/permission/models.py:94 +#: apps/permission/models.py:91 #, python-brace-format msgid "Can {type} {model} in {query}" msgstr "" -#: apps/permission/models.py:107 +#: apps/permission/models.py:104 msgid "rank" msgstr "posición" -#: apps/permission/models.py:120 +#: apps/permission/models.py:117 msgid "permission mask" msgstr "antifaz de permisos" -#: apps/permission/models.py:121 +#: apps/permission/models.py:118 msgid "permission masks" msgstr "antifaces de permisos" -#: apps/permission/models.py:127 +#: apps/permission/models.py:124 msgid "add" msgstr "añadir" -#: apps/permission/models.py:128 +#: apps/permission/models.py:125 msgid "view" msgstr "ver" -#: apps/permission/models.py:129 +#: apps/permission/models.py:126 msgid "change" msgstr "cambiar" -#: apps/permission/models.py:161 +#: apps/permission/models.py:158 msgid "query" msgstr "consulta" -#: apps/permission/models.py:174 +#: apps/permission/models.py:171 msgid "mask" msgstr "antifaz" -#: apps/permission/models.py:180 +#: apps/permission/models.py:177 msgid "field" msgstr "campo" -#: apps/permission/models.py:185 +#: apps/permission/models.py:182 msgid "" "Tells if the permission should be granted even if the membership of the user " "is expired." @@ -1696,30 +1698,30 @@ msgstr "" "Indica si el permiso tiene que ser dado aunque la afiliación del usuario " "terminó." -#: apps/permission/models.py:186 +#: apps/permission/models.py:183 #: apps/permission/templates/permission/all_rights.html:89 msgid "permanent" msgstr "permanente" -#: apps/permission/models.py:197 +#: apps/permission/models.py:194 msgid "permission" msgstr "permiso" -#: apps/permission/models.py:198 apps/permission/models.py:338 +#: apps/permission/models.py:195 apps/permission/models.py:335 msgid "permissions" msgstr "permisos" -#: apps/permission/models.py:203 +#: apps/permission/models.py:200 msgid "Specifying field applies only to view and change permission types." msgstr "" "Especifica el campo interesado, solo funciona para los permisos view y " "change." -#: apps/permission/models.py:343 +#: apps/permission/models.py:340 msgid "for club" msgstr "interesa el club" -#: apps/permission/models.py:353 apps/permission/models.py:354 +#: apps/permission/models.py:350 apps/permission/models.py:351 msgid "role permissions" msgstr "permisos por papeles" @@ -1732,7 +1734,7 @@ msgstr "" "Usted no tiene permiso a cambiar el campo {field} on this instance of model " "{app_label}.{model_name}." -#: apps/permission/signals.py:73 apps/permission/views.py:103 +#: apps/permission/signals.py:73 apps/permission/views.py:105 #, python-brace-format msgid "" "You don't have the permission to add an instance of model {app_label}." @@ -1792,25 +1794,25 @@ msgstr "Consulta :" msgid "No associated permission" msgstr "No hay permiso relacionado" -#: apps/permission/views.py:70 +#: apps/permission/views.py:72 #, python-brace-format msgid "" "You don't have the permission to update this instance of the model " "\"{model}\" with these parameters. Please correct your data and retry." msgstr "" -#: apps/permission/views.py:74 +#: apps/permission/views.py:76 #, python-brace-format msgid "" "You don't have the permission to create an instance of the model \"{model}\" " "with these parameters. Please correct your data and retry." msgstr "" -#: apps/permission/views.py:110 note_kfet/templates/base.html:109 +#: apps/permission/views.py:112 note_kfet/templates/base.html:109 msgid "Rights" msgstr "Permisos" -#: apps/permission/views.py:115 +#: apps/permission/views.py:117 msgid "All rights" msgstr "Todos los permisos" @@ -1999,18 +2001,18 @@ msgstr "Usuarios con afiliación pendiente" msgid "Registration detail" msgstr "Detalles de la afiliación" -#: apps/registration/views.py:273 +#: apps/registration/views.py:278 msgid "You must join the BDE." msgstr "Usted tiene que afiliarse al BDE." -#: apps/registration/views.py:297 +#: apps/registration/views.py:302 msgid "" "The entered amount is not enough for the memberships, should be at least {}" msgstr "" "El monto dado no es suficiente para las afiliaciones, tiene que ser al menos " "{}" -#: apps/registration/views.py:384 +#: apps/registration/views.py:383 msgid "Invalidate pre-registration" msgstr "Invalidar la afiliación" @@ -2018,7 +2020,7 @@ msgstr "Invalidar la afiliación" msgid "Treasury" msgstr "Tesorería" -#: apps/treasury/forms.py:25 apps/treasury/models.py:90 +#: apps/treasury/forms.py:25 apps/treasury/models.py:91 #: apps/treasury/templates/treasury/invoice_form.html:22 msgid "This invoice is locked and can no longer be edited." msgstr "Esta factura esta bloqueada y no puede ser modificada." @@ -2031,7 +2033,7 @@ msgstr "El descuento ya esta cerrado." msgid "You can't change the type of the remittance." msgstr "No puede cambiar el tipo de descuento." -#: apps/treasury/forms.py:124 apps/treasury/models.py:260 +#: apps/treasury/forms.py:124 apps/treasury/models.py:265 #: apps/treasury/tables.py:97 apps/treasury/tables.py:105 #: apps/treasury/templates/treasury/invoice_list.html:16 #: apps/treasury/templates/treasury/remittance_list.html:16 @@ -2043,120 +2045,120 @@ msgstr "Descuento" msgid "No attached remittance" msgstr "No hay descuento relacionado" -#: apps/treasury/models.py:23 +#: apps/treasury/models.py:24 msgid "Invoice identifier" msgstr "Numero de factura" -#: apps/treasury/models.py:37 +#: apps/treasury/models.py:38 msgid "BDE" msgstr "BDE" -#: apps/treasury/models.py:42 +#: apps/treasury/models.py:43 msgid "Object" msgstr "Asunto" -#: apps/treasury/models.py:46 +#: apps/treasury/models.py:47 msgid "Description" msgstr "Descripción" -#: apps/treasury/models.py:55 +#: apps/treasury/models.py:56 msgid "Address" msgstr "Dirección" -#: apps/treasury/models.py:60 apps/treasury/models.py:187 +#: apps/treasury/models.py:61 apps/treasury/models.py:191 msgid "Date" msgstr "Fecha" -#: apps/treasury/models.py:64 +#: apps/treasury/models.py:65 msgid "Acquitted" msgstr "Pagada" -#: apps/treasury/models.py:69 +#: apps/treasury/models.py:70 msgid "Locked" msgstr "Bloqueada" -#: apps/treasury/models.py:70 +#: apps/treasury/models.py:71 msgid "An invoice can't be edited when it is locked." msgstr "Une factura no puede ser modificada cuando esta bloqueada." -#: apps/treasury/models.py:76 +#: apps/treasury/models.py:77 msgid "tex source" msgstr "código fuente TeX" -#: apps/treasury/models.py:110 apps/treasury/models.py:126 +#: apps/treasury/models.py:111 apps/treasury/models.py:127 msgid "invoice" msgstr "factura" -#: apps/treasury/models.py:111 +#: apps/treasury/models.py:112 msgid "invoices" msgstr "facturas" -#: apps/treasury/models.py:114 +#: apps/treasury/models.py:115 #, python-brace-format msgid "Invoice #{id}" msgstr "Factura n°{id}" -#: apps/treasury/models.py:131 +#: apps/treasury/models.py:132 msgid "Designation" msgstr "Designación" -#: apps/treasury/models.py:135 +#: apps/treasury/models.py:138 msgid "Quantity" msgstr "Cantidad" -#: apps/treasury/models.py:139 +#: apps/treasury/models.py:143 msgid "Unit price" msgstr "Precio unitario" -#: apps/treasury/models.py:155 +#: apps/treasury/models.py:159 msgid "product" msgstr "producto" -#: apps/treasury/models.py:156 +#: apps/treasury/models.py:160 msgid "products" msgstr "productos" -#: apps/treasury/models.py:176 +#: apps/treasury/models.py:180 msgid "remittance type" msgstr "tipo de descuento" -#: apps/treasury/models.py:177 +#: apps/treasury/models.py:181 msgid "remittance types" msgstr "tipos de descuentos" -#: apps/treasury/models.py:198 +#: apps/treasury/models.py:202 msgid "Comment" msgstr "Comentario" -#: apps/treasury/models.py:203 +#: apps/treasury/models.py:207 msgid "Closed" msgstr "Cerrada" -#: apps/treasury/models.py:207 +#: apps/treasury/models.py:211 msgid "remittance" msgstr "descuento" -#: apps/treasury/models.py:208 +#: apps/treasury/models.py:212 msgid "remittances" msgstr "descuentos" -#: apps/treasury/models.py:241 +#: apps/treasury/models.py:245 msgid "Remittance #{:d}: {}" msgstr "Descuento n°{:d} : {}" -#: apps/treasury/models.py:264 +#: apps/treasury/models.py:269 msgid "special transaction proxy" msgstr "proxy de transacción especial" -#: apps/treasury/models.py:265 +#: apps/treasury/models.py:270 msgid "special transaction proxies" msgstr "proxys de transacciones especiales" -#: apps/treasury/models.py:290 +#: apps/treasury/models.py:295 msgid "credit transaction" msgstr "transacción de crédito" -#: apps/treasury/models.py:374 +#: apps/treasury/models.py:379 msgid "" "This user doesn't have enough money to pay the memberships with its note. " "Please ask her/him to credit the note before invalidating this credit." @@ -2165,16 +2167,16 @@ msgstr "" "afiliaciones. Por favor pídelo acreditar su note antes de invalidar este " "crédito." -#: apps/treasury/models.py:389 +#: apps/treasury/models.py:399 #: apps/treasury/templates/treasury/sogecredit_detail.html:10 msgid "Credit from the Société générale" msgstr "Crédito de la Société Générale" -#: apps/treasury/models.py:390 +#: apps/treasury/models.py:400 msgid "Credits from the Société générale" msgstr "Créditos de la Société Générale" -#: apps/treasury/models.py:393 +#: apps/treasury/models.py:403 #, python-brace-format msgid "Soge credit for {user}" msgstr "Crédito de la Société Générale para {user}" @@ -2198,7 +2200,7 @@ msgstr "Cantidad de transacciones" msgid "View" msgstr "Ver" -#: apps/treasury/tables.py:146 +#: apps/treasury/tables.py:143 msgid "Yes" msgstr "Sí" @@ -2301,11 +2303,11 @@ msgstr "Descuentos cerrados" msgid "There is no closed remittance yet." msgstr "Por ahora no hay descuentos cerrados." -#: apps/treasury/templates/treasury/sogecredit_detail.html:29 +#: apps/treasury/templates/treasury/sogecredit_detail.html:35 msgid "total amount" msgstr "monto total" -#: apps/treasury/templates/treasury/sogecredit_detail.html:35 +#: apps/treasury/templates/treasury/sogecredit_detail.html:41 msgid "" "Warning: Validating this credit implies that all membership transactions " "will be validated." @@ -2313,7 +2315,7 @@ msgstr "" "Cuidado : Validar este crédito implica que las transacciones de afiliación " "serán validadas." -#: apps/treasury/templates/treasury/sogecredit_detail.html:36 +#: apps/treasury/templates/treasury/sogecredit_detail.html:42 msgid "" "If you delete this credit, there all membership transactions will be also " "validated, but no credit will be operated." @@ -2321,7 +2323,7 @@ msgstr "" "Si suprime este crédito, todas las transacciones de afiliación serán " "validadas, pero ningún crédito tendrá lugar." -#: apps/treasury/templates/treasury/sogecredit_detail.html:37 +#: apps/treasury/templates/treasury/sogecredit_detail.html:43 msgid "" "If this credit is validated, then the user won't be able to ask for a credit " "from the Société générale." @@ -2329,15 +2331,15 @@ msgstr "" "Si este crédito es validado, pues el usuario no podrá pedir más crédito de " "la Société Générale." -#: apps/treasury/templates/treasury/sogecredit_detail.html:38 +#: apps/treasury/templates/treasury/sogecredit_detail.html:44 msgid "If you think there is an error, please contact the \"respos info\"." msgstr "Si usted cree que hay un error, por favor contacte un \"respo info\"." -#: apps/treasury/templates/treasury/sogecredit_detail.html:44 +#: apps/treasury/templates/treasury/sogecredit_detail.html:50 msgid "This credit is already validated." msgstr "Este crédito ya fue validado." -#: apps/treasury/templates/treasury/sogecredit_detail.html:49 +#: apps/treasury/templates/treasury/sogecredit_detail.html:55 msgid "" "Warning: if you don't validate this credit, the note of the user doesn't " "have enough money to pay its memberships." @@ -2345,17 +2347,17 @@ msgstr "" "Cuidado : si no valida este crédito, la note del usuario no tiene suficiente " "dinero para pagar sus afiliaciones." -#: apps/treasury/templates/treasury/sogecredit_detail.html:50 +#: apps/treasury/templates/treasury/sogecredit_detail.html:56 msgid "Please ask the user to credit its note before deleting this credit." msgstr "" "Por favor pide al usuario acreditar su note antes de suprimir este crédito." -#: apps/treasury/templates/treasury/sogecredit_detail.html:57 -#: apps/wei/tables.py:59 apps/wei/tables.py:60 apps/wei/tables.py:99 +#: apps/treasury/templates/treasury/sogecredit_detail.html:63 +#: apps/wei/tables.py:59 apps/wei/tables.py:101 msgid "Validate" msgstr "Validar" -#: apps/treasury/templates/treasury/sogecredit_detail.html:65 +#: apps/treasury/templates/treasury/sogecredit_detail.html:71 msgid "Return to credit list" msgstr "Regresar a la lista de los créditos" @@ -2410,13 +2412,13 @@ msgid "Manage credits from the Société générale" msgstr "Gestionar los créditos de la Société Générale" #: apps/wei/apps.py:10 apps/wei/models.py:49 apps/wei/models.py:50 -#: apps/wei/models.py:61 apps/wei/models.py:167 +#: apps/wei/models.py:61 apps/wei/models.py:172 #: note_kfet/templates/base.html:103 msgid "WEI" msgstr "WEI" -#: apps/wei/forms/registration.py:51 apps/wei/models.py:113 -#: apps/wei/models.py:283 +#: apps/wei/forms/registration.py:51 apps/wei/models.py:118 +#: apps/wei/models.py:315 msgid "bus" msgstr "bus" @@ -2442,7 +2444,7 @@ msgstr "" "electrón libre)" #: apps/wei/forms/registration.py:67 apps/wei/forms/registration.py:77 -#: apps/wei/models.py:148 +#: apps/wei/models.py:153 msgid "WEI Roles" msgstr "Papeles en el WEI" @@ -2454,7 +2456,7 @@ msgstr "Elegir los papeles que le interesa." msgid "This team doesn't belong to the given bus." msgstr "Este equipo no pertenece al bus dado." -#: apps/wei/forms/surveys/wei2020.py:30 +#: apps/wei/forms/surveys/wei2021.py:31 msgid "Choose a word:" msgstr "Elegir una palabra :" @@ -2470,105 +2472,111 @@ msgstr "fecha de inicio" msgid "date end" msgstr "fecha de fin" -#: apps/wei/models.py:77 +#: apps/wei/models.py:70 +#, fuzzy +#| msgid "The user joined the bus" +msgid "seat count in the bus" +msgstr "El usuario se queda con el bus" + +#: apps/wei/models.py:82 msgid "survey information" msgstr "informaciones sobre el cuestionario" -#: apps/wei/models.py:78 +#: apps/wei/models.py:83 msgid "Information about the survey for new members, encoded in JSON" msgstr "" "Informaciones sobre el cuestionario para los nuevos miembros, registrado en " "JSON" -#: apps/wei/models.py:100 +#: apps/wei/models.py:105 msgid "Bus" msgstr "Bus" -#: apps/wei/models.py:101 apps/wei/templates/wei/weiclub_detail.html:51 +#: apps/wei/models.py:106 apps/wei/templates/wei/weiclub_detail.html:51 msgid "Buses" msgstr "Bus" -#: apps/wei/models.py:122 +#: apps/wei/models.py:127 msgid "color" msgstr "color" -#: apps/wei/models.py:123 +#: apps/wei/models.py:128 msgid "The color of the T-Shirt, stored with its number equivalent" msgstr "El color de la camiseta, registrado con su número equivalente" -#: apps/wei/models.py:137 +#: apps/wei/models.py:142 msgid "Bus team" msgstr "Equipo de bus" -#: apps/wei/models.py:138 +#: apps/wei/models.py:143 msgid "Bus teams" msgstr "Equipos de bus" -#: apps/wei/models.py:147 +#: apps/wei/models.py:152 msgid "WEI Role" msgstr "Papeles en el WEI" -#: apps/wei/models.py:172 +#: apps/wei/models.py:177 msgid "Credit from Société générale" msgstr "Crédito de la Société Générale" -#: apps/wei/models.py:177 +#: apps/wei/models.py:182 msgid "Caution check given" msgstr "Cheque de garantía dado" -#: apps/wei/models.py:181 apps/wei/templates/wei/weimembership_form.html:64 +#: apps/wei/models.py:186 apps/wei/templates/wei/weimembership_form.html:64 msgid "birth date" msgstr "fecha de nacimiento" -#: apps/wei/models.py:187 apps/wei/models.py:197 +#: apps/wei/models.py:192 apps/wei/models.py:202 msgid "Male" msgstr "Hombre" -#: apps/wei/models.py:188 apps/wei/models.py:198 +#: apps/wei/models.py:193 apps/wei/models.py:203 msgid "Female" msgstr "Mujer" -#: apps/wei/models.py:189 +#: apps/wei/models.py:194 msgid "Non binary" msgstr "No binari@" -#: apps/wei/models.py:191 apps/wei/templates/wei/weimembership_form.html:55 +#: apps/wei/models.py:196 apps/wei/templates/wei/weimembership_form.html:55 msgid "gender" msgstr "género" -#: apps/wei/models.py:200 apps/wei/templates/wei/weimembership_form.html:58 +#: apps/wei/models.py:205 apps/wei/templates/wei/weimembership_form.html:58 msgid "clothing cut" msgstr "forma de ropa" -#: apps/wei/models.py:213 apps/wei/templates/wei/weimembership_form.html:61 +#: apps/wei/models.py:218 apps/wei/templates/wei/weimembership_form.html:61 msgid "clothing size" msgstr "medida de ropa" -#: apps/wei/models.py:219 apps/wei/templates/wei/weimembership_form.html:67 +#: apps/wei/models.py:224 apps/wei/templates/wei/weimembership_form.html:67 msgid "health issues" msgstr "problemas de salud" -#: apps/wei/models.py:224 apps/wei/templates/wei/weimembership_form.html:70 +#: apps/wei/models.py:229 apps/wei/templates/wei/weimembership_form.html:70 msgid "emergency contact name" msgstr "nombre del contacto de emergencia" -#: apps/wei/models.py:229 apps/wei/templates/wei/weimembership_form.html:73 +#: apps/wei/models.py:234 apps/wei/templates/wei/weimembership_form.html:73 msgid "emergency contact phone" msgstr "teléfono del contacto de emergencia" -#: apps/wei/models.py:234 apps/wei/templates/wei/weimembership_form.html:52 +#: apps/wei/models.py:239 apps/wei/templates/wei/weimembership_form.html:52 msgid "first year" msgstr "primer año" -#: apps/wei/models.py:235 +#: apps/wei/models.py:240 msgid "Tells if the user is new in the school." msgstr "Indica si el usuario es nuevo en la escuela." -#: apps/wei/models.py:240 +#: apps/wei/models.py:245 msgid "registration information" msgstr "informaciones sobre la afiliación" -#: apps/wei/models.py:241 +#: apps/wei/models.py:246 msgid "" "Information about the registration (buses for old members, survey for the " "new members), encoded in JSON" @@ -2576,44 +2584,58 @@ msgstr "" "Informaciones sobre la afiliacion (bus para miembros ancianos, cuestionario " "para los nuevos miembros), registrado en JSON" -#: apps/wei/models.py:272 +#: apps/wei/models.py:304 msgid "WEI User" msgstr "Participante WEI" -#: apps/wei/models.py:273 +#: apps/wei/models.py:305 msgid "WEI Users" msgstr "Participantes WEI" -#: apps/wei/models.py:293 +#: apps/wei/models.py:325 msgid "team" msgstr "equipo" -#: apps/wei/models.py:303 +#: apps/wei/models.py:335 msgid "WEI registration" msgstr "Apuntación al WEI" -#: apps/wei/models.py:307 +#: apps/wei/models.py:339 msgid "WEI membership" msgstr "Afiliación al WEI" -#: apps/wei/models.py:308 +#: apps/wei/models.py:340 msgid "WEI memberships" msgstr "Afiliaciones al WEI" -#: apps/wei/tables.py:127 +#: apps/wei/tables.py:104 +msgid "The user does not have enough money." +msgstr "" + +#: apps/wei/tables.py:107 +#, fuzzy +#| msgid "" +#| "The note has enough money (%(pretty_fee)s required), the registration is " +#| "possible." +msgid "The user has enough money, you can validate the registration." +msgstr "" +"La note tiene suficiente dinero (%(pretty_fee)s pedidos), la afiliación es " +"posible." + +#: apps/wei/tables.py:139 msgid "Year" msgstr "Año" -#: apps/wei/tables.py:165 apps/wei/templates/wei/bus_detail.html:32 +#: apps/wei/tables.py:177 apps/wei/templates/wei/bus_detail.html:32 #: apps/wei/templates/wei/busteam_detail.html:50 msgid "Teams" msgstr "Equipos" -#: apps/wei/tables.py:174 apps/wei/tables.py:215 +#: apps/wei/tables.py:186 apps/wei/tables.py:227 msgid "Members count" msgstr "Número de miembros" -#: apps/wei/tables.py:181 apps/wei/tables.py:212 +#: apps/wei/tables.py:193 apps/wei/tables.py:224 msgid "members" msgstr "miembros" @@ -2633,11 +2655,11 @@ msgstr "Pago de entrada del WEI (estudiantes no pagados)" msgid "WEI list" msgstr "Lista de los WEI" -#: apps/wei/templates/wei/base.html:81 apps/wei/views.py:508 +#: apps/wei/templates/wei/base.html:81 apps/wei/views.py:510 msgid "Register 1A" msgstr "Apuntar un 1A" -#: apps/wei/templates/wei/base.html:85 apps/wei/views.py:576 +#: apps/wei/templates/wei/base.html:85 apps/wei/views.py:578 msgid "Register 2A+" msgstr "Apuntar un 2A+" @@ -2660,14 +2682,14 @@ msgstr "Miembros" #: apps/wei/templates/wei/bus_detail.html:54 #: apps/wei/templates/wei/busteam_detail.html:60 -#: apps/wei/templates/wei/weimembership_list.html:29 +#: apps/wei/templates/wei/weimembership_list.html:31 msgid "View as PDF" msgstr "Descargar un PDF" #: apps/wei/templates/wei/survey.html:11 #: apps/wei/templates/wei/survey_closed.html:11 -#: apps/wei/templates/wei/survey_end.html:11 apps/wei/views.py:984 -#: apps/wei/views.py:1039 apps/wei/views.py:1049 +#: apps/wei/templates/wei/survey_end.html:11 apps/wei/views.py:973 +#: apps/wei/views.py:1028 apps/wei/views.py:1038 msgid "Survey WEI" msgstr "Cuestionario WEI" @@ -2823,7 +2845,7 @@ msgstr "" "Este usuario no es miembro del club Kfet por el año que viene. La afiliación " "será hecha automáticamente, la afiliación al WEI incluye el pago de los dos." -#: apps/wei/templates/wei/weimembership_list.html:23 +#: apps/wei/templates/wei/weimembership_list.html:27 msgid "View unvalidated registrations..." msgstr "Ver las inscripciones no validadas..." @@ -2840,11 +2862,11 @@ msgstr "" "¿ Usted está seguro que quiere suprimir la inscripción de %(user)s para el " "WEI %(wei_name)s ? Este acto es definitivo." -#: apps/wei/templates/wei/weiregistration_list.html:17 +#: apps/wei/templates/wei/weiregistration_list.html:19 msgid "There is no pre-registration found with this pattern." msgstr "No hay pre-inscripción encontrada con esta entrada." -#: apps/wei/templates/wei/weiregistration_list.html:23 +#: apps/wei/templates/wei/weiregistration_list.html:27 msgid "View validated memberships..." msgstr "Ver las inscripciones validadas..." @@ -2884,77 +2906,73 @@ msgstr "Añadir un bus" msgid "Update bus" msgstr "Modificar el bus" -#: apps/wei/views.py:364 +#: apps/wei/views.py:366 msgid "Manage bus" msgstr "Gestionar el bus" -#: apps/wei/views.py:391 +#: apps/wei/views.py:393 msgid "Create new team" msgstr "Añadir un equipo" -#: apps/wei/views.py:431 +#: apps/wei/views.py:433 msgid "Update team" msgstr "Modificar el equipo" -#: apps/wei/views.py:462 +#: apps/wei/views.py:464 msgid "Manage WEI team" msgstr "Gestionar el equipo" -#: apps/wei/views.py:484 +#: apps/wei/views.py:486 msgid "Register first year student to the WEI" msgstr "Registrar un 1A al WEI" -#: apps/wei/views.py:530 apps/wei/views.py:611 +#: apps/wei/views.py:532 apps/wei/views.py:613 msgid "This user is already registered to this WEI." msgstr "Este usuario ya afilió a este WEI." -#: apps/wei/views.py:535 +#: apps/wei/views.py:537 msgid "" "This user can't be in her/his first year since he/she has already " "participated to a WEI." msgstr "Este usuario no puede ser un 1A porque ya participó en un WEI." -#: apps/wei/views.py:552 +#: apps/wei/views.py:554 msgid "Register old student to the WEI" msgstr "Registrar un 2A+ al WEI" -#: apps/wei/views.py:595 apps/wei/views.py:684 +#: apps/wei/views.py:597 apps/wei/views.py:686 msgid "You already opened an account in the Société générale." msgstr "Usted ya abrió una cuenta a la Société Générale." -#: apps/wei/views.py:641 +#: apps/wei/views.py:643 msgid "Update WEI Registration" msgstr "Modificar la inscripción WEI" -#: apps/wei/views.py:744 +#: apps/wei/views.py:746 msgid "Delete WEI registration" msgstr "Suprimir la inscripción WEI" -#: apps/wei/views.py:755 +#: apps/wei/views.py:757 msgid "You don't have the right to delete this WEI registration." msgstr "Usted no tiene derecho a suprimir esta inscripción WEI." -#: apps/wei/views.py:774 +#: apps/wei/views.py:776 msgid "Validate WEI registration" msgstr "Validar la inscripción WEI" -#: apps/wei/views.py:922 -msgid "This user didn't give her/his caution check." -msgstr "Este usuario no dio su cheque de garantía." - -#: note_kfet/settings/base.py:157 +#: note_kfet/settings/base.py:161 msgid "German" msgstr "Alemán" -#: note_kfet/settings/base.py:158 +#: note_kfet/settings/base.py:162 msgid "English" msgstr "Ingles" -#: note_kfet/settings/base.py:159 +#: note_kfet/settings/base.py:163 msgid "Spanish" msgstr "Español" -#: note_kfet/settings/base.py:160 +#: note_kfet/settings/base.py:164 msgid "French" msgstr "Francés" @@ -3051,7 +3069,7 @@ msgstr "Registrar" msgid "Log in" msgstr "Conectarse" -#: note_kfet/templates/base.html:156 +#: note_kfet/templates/base.html:160 msgid "" "You are not a BDE member anymore. Please renew your membership if you want " "to use the note." @@ -3059,11 +3077,11 @@ msgstr "" "Usted ya no está miembro del BDE. Por favor renueva su afiliación si quiere " "usar la note." -#: note_kfet/templates/base.html:160 +#: note_kfet/templates/base.html:164 msgid "You are not a Kfet member, so you can't use your note account." msgstr "Usted no es un miembro de la Kfet, no puede usar su cuenta note." -#: note_kfet/templates/base.html:166 +#: note_kfet/templates/base.html:170 msgid "" "Your e-mail address is not validated. Please check your mail inbox and click " "on the validation link." @@ -3071,7 +3089,7 @@ msgstr "" "Su correo electrónico no fue validado. Por favor mire en sus correos y haga " "clic en el enlace de validación." -#: note_kfet/templates/base.html:171 +#: note_kfet/templates/base.html:176 msgid "" "You declared that you opened a bank account in the Société générale. The " "bank did not validate the creation of the account to the BDE, so the " @@ -3084,7 +3102,7 @@ msgstr "" "afiliación no está pagada. El proceso de convalidación puede durar unos " "días. Por favor comprueba que fue hasta el final de la creación de la cuenta." -#: note_kfet/templates/base.html:194 +#: note_kfet/templates/base.html:199 msgid "Contact us" msgstr "Contactarnos" @@ -3204,6 +3222,9 @@ msgstr "" "pagar su afiliación. Tambien tiene que validar su correo electronico con el " "enlace que recibió." +#~ msgid "This user didn't give her/his caution check." +#~ msgstr "Este usuario no dio su cheque de garantía." + #~ msgid "Central Authentication Service" #~ msgstr "Servicio Central de Autentificación" diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po index 1e9036b3..f832c148 100644 --- a/locale/fr/LC_MESSAGES/django.po +++ b/locale/fr/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-15 23:26+0100\n" +"POT-Creation-Date: 2021-08-29 14:06+0200\n" "PO-Revision-Date: 2020-11-16 20:02+0000\n" "Last-Translator: Yohann D'ANELLO \n" "Language-Team: French \n" @@ -52,11 +52,11 @@ msgstr "Vous ne pouvez pas inviter plus de 3 personnes à cette activité." #: apps/member/models.py:199 #: apps/member/templates/member/includes/club_info.html:4 #: apps/member/templates/member/includes/profile_info.html:4 -#: apps/note/models/notes.py:232 apps/note/models/transactions.py:26 -#: apps/note/models/transactions.py:46 apps/note/models/transactions.py:300 -#: apps/permission/models.py:333 +#: apps/note/models/notes.py:231 apps/note/models/transactions.py:26 +#: apps/note/models/transactions.py:46 apps/note/models/transactions.py:301 +#: apps/permission/models.py:330 #: apps/registration/templates/registration/future_profile_detail.html:16 -#: apps/wei/models.py:66 apps/wei/models.py:118 +#: apps/wei/models.py:66 apps/wei/models.py:123 #: apps/wei/templates/wei/base.html:26 #: apps/wei/templates/wei/weimembership_form.html:14 msgid "name" @@ -90,8 +90,8 @@ msgstr "types d'activité" #: apps/activity/models.py:68 #: apps/activity/templates/activity/includes/activity_info.html:19 -#: apps/note/models/transactions.py:81 apps/permission/models.py:113 -#: apps/permission/models.py:192 apps/wei/models.py:72 apps/wei/models.py:129 +#: apps/note/models/transactions.py:81 apps/permission/models.py:110 +#: apps/permission/models.py:189 apps/wei/models.py:77 apps/wei/models.py:134 msgid "description" msgstr "description" @@ -105,15 +105,14 @@ msgstr "Lieu où l'activité est organisée, par exemple la Kfet." #: apps/activity/models.py:83 #: apps/activity/templates/activity/includes/activity_info.html:22 -#: apps/note/models/notes.py:208 apps/note/models/transactions.py:66 -#: apps/permission/models.py:167 +#: apps/note/models/notes.py:207 apps/note/models/transactions.py:66 +#: apps/permission/models.py:164 msgid "type" msgstr "type" #: apps/activity/models.py:89 apps/logs/models.py:22 apps/member/models.py:305 -#: apps/note/models/notes.py:149 apps/treasury/models.py:278 -#: apps/treasury/templates/treasury/sogecredit_detail.html:14 -#: apps/wei/models.py:160 apps/wei/templates/wei/survey.html:15 +#: apps/note/models/notes.py:148 apps/treasury/models.py:283 +#: apps/wei/models.py:165 apps/wei/templates/wei/survey.html:15 msgid "user" msgstr "utilisateur" @@ -167,7 +166,7 @@ msgid "entry time" msgstr "heure d'entrée" #: apps/activity/models.py:178 apps/note/apps.py:14 -#: apps/note/models/notes.py:78 +#: apps/note/models/notes.py:77 msgid "note" msgstr "note" @@ -204,12 +203,14 @@ msgid "The balance is negative." msgstr "La note est en négatif." #: apps/activity/models.py:240 +#: apps/treasury/templates/treasury/sogecredit_detail.html:14 msgid "last name" msgstr "nom de famille" #: apps/activity/models.py:245 #: apps/member/templates/member/includes/profile_info.html:4 #: apps/registration/templates/registration/future_profile_detail.html:16 +#: apps/treasury/templates/treasury/sogecredit_detail.html:17 #: apps/wei/templates/wei/weimembership_form.html:14 msgid "first name" msgstr "prénom" @@ -250,7 +251,7 @@ msgstr "Entré le " msgid "remove" msgstr "supprimer" -#: apps/activity/tables.py:80 apps/note/forms.py:68 apps/treasury/models.py:193 +#: apps/activity/tables.py:80 apps/note/forms.py:68 apps/treasury/models.py:197 msgid "Type" msgstr "Type" @@ -267,11 +268,11 @@ msgstr "Nom de famille" msgid "First name" msgstr "Prénom" -#: apps/activity/tables.py:86 apps/note/models/notes.py:87 +#: apps/activity/tables.py:86 apps/note/models/notes.py:86 msgid "Note" msgstr "Note" -#: apps/activity/tables.py:88 apps/member/tables.py:46 +#: apps/activity/tables.py:88 apps/member/tables.py:49 msgid "Balance" msgstr "Solde du compte" @@ -284,7 +285,7 @@ msgid "Guest deleted" msgstr "Invité supprimé" #: apps/activity/templates/activity/activity_entry.html:14 -#: apps/note/models/transactions.py:256 +#: apps/note/models/transactions.py:257 #: apps/note/templates/note/transaction_form.html:16 #: apps/note/templates/note/transaction_form.html:148 #: note_kfet/templates/base.html:73 @@ -292,13 +293,13 @@ msgid "Transfer" msgstr "Virement" #: apps/activity/templates/activity/activity_entry.html:18 -#: apps/note/models/transactions.py:316 +#: apps/note/models/transactions.py:317 #: apps/note/templates/note/transaction_form.html:21 msgid "Credit" msgstr "Crédit" #: apps/activity/templates/activity/activity_entry.html:21 -#: apps/note/models/transactions.py:316 +#: apps/note/models/transactions.py:317 #: apps/note/templates/note/transaction_form.html:25 msgid "Debit" msgstr "Débit" @@ -438,7 +439,7 @@ msgstr "Logs" msgid "IP Address" msgstr "Adresse IP" -#: apps/logs/models.py:36 apps/permission/models.py:137 +#: apps/logs/models.py:36 apps/permission/models.py:134 msgid "model" msgstr "modèle" @@ -459,8 +460,8 @@ msgid "create" msgstr "créer" #: apps/logs/models.py:65 apps/note/tables.py:165 apps/note/tables.py:201 -#: apps/permission/models.py:130 apps/treasury/tables.py:38 -#: apps/wei/tables.py:75 +#: apps/permission/models.py:127 apps/treasury/tables.py:38 +#: apps/wei/tables.py:73 msgid "delete" msgstr "supprimer" @@ -499,15 +500,15 @@ msgstr "cotisation pour adhérer (normalien élève)" msgid "membership fee (unpaid students)" msgstr "cotisation pour adhérer (normalien étudiant)" -#: apps/member/admin.py:65 apps/member/models.py:316 +#: apps/member/admin.py:65 apps/member/models.py:317 msgid "roles" msgstr "rôles" -#: apps/member/admin.py:66 apps/member/models.py:330 +#: apps/member/admin.py:66 apps/member/models.py:331 msgid "fee" msgstr "cotisation" -#: apps/member/apps.py:14 apps/wei/tables.py:181 apps/wei/tables.py:212 +#: apps/member/apps.py:14 apps/wei/tables.py:193 apps/wei/tables.py:224 msgid "member" msgstr "adhérent" @@ -539,8 +540,8 @@ msgstr "Taille maximale : 2 Mo" msgid "This image cannot be loaded." msgstr "Cette image ne peut pas être chargée." -#: apps/member/forms.py:141 apps/member/views.py:100 -#: apps/registration/forms.py:33 apps/registration/views.py:254 +#: apps/member/forms.py:141 apps/member/views.py:101 +#: apps/registration/forms.py:33 apps/registration/views.py:258 msgid "An alias with a similar name already exists." msgstr "Un alias avec un nom similaire existe déjà." @@ -586,14 +587,14 @@ msgid "Roles" msgstr "Rôles" #: apps/member/models.py:38 -#: apps/member/templates/member/includes/profile_info.html:34 +#: apps/member/templates/member/includes/profile_info.html:35 #: apps/registration/templates/registration/future_profile_detail.html:40 #: apps/wei/templates/wei/weimembership_form.html:44 msgid "phone number" msgstr "numéro de téléphone" #: apps/member/models.py:45 -#: apps/member/templates/member/includes/profile_info.html:28 +#: apps/member/templates/member/includes/profile_info.html:29 #: apps/registration/templates/registration/future_profile_detail.html:34 #: apps/wei/templates/wei/weimembership_form.html:38 msgid "section" @@ -680,14 +681,14 @@ msgid "Year of entry to the school (None if not ENS student)" msgstr "Année d'entrée dans l'école (None si non-étudiant·e de l'ENS)" #: apps/member/models.py:83 -#: apps/member/templates/member/includes/profile_info.html:38 +#: apps/member/templates/member/includes/profile_info.html:39 #: apps/registration/templates/registration/future_profile_detail.html:37 #: apps/wei/templates/wei/weimembership_form.html:41 msgid "address" msgstr "adresse" #: apps/member/models.py:90 -#: apps/member/templates/member/includes/profile_info.html:45 +#: apps/member/templates/member/includes/profile_info.html:46 #: apps/registration/templates/registration/future_profile_detail.html:43 #: apps/wei/templates/wei/weimembership_form.html:47 msgid "paid" @@ -697,7 +698,7 @@ msgstr "payé" msgid "Tells if the user receive a salary." msgstr "Indique si l'utilisateur perçoit un salaire." -#: apps/member/models.py:100 apps/treasury/tables.py:146 +#: apps/member/models.py:100 apps/treasury/tables.py:143 msgid "No" msgstr "Non" @@ -759,7 +760,7 @@ msgstr "Activez votre compte Note Kfet" #: apps/member/models.py:204 #: apps/member/templates/member/includes/club_info.html:55 -#: apps/member/templates/member/includes/profile_info.html:31 +#: apps/member/templates/member/includes/profile_info.html:32 #: apps/registration/templates/registration/future_profile_detail.html:22 #: apps/wei/templates/wei/base.html:70 #: apps/wei/templates/wei/weimembership_form.html:20 @@ -809,7 +810,7 @@ msgstr "" "renouveler." #: apps/member/models.py:286 apps/member/models.py:311 -#: apps/note/models/notes.py:177 +#: apps/note/models/notes.py:176 msgid "club" msgstr "club" @@ -817,41 +818,41 @@ msgstr "club" msgid "clubs" msgstr "clubs" -#: apps/member/models.py:321 +#: apps/member/models.py:322 msgid "membership starts on" msgstr "l'adhésion commence le" -#: apps/member/models.py:325 +#: apps/member/models.py:326 msgid "membership ends on" msgstr "l'adhésion finit le" -#: apps/member/models.py:421 +#: apps/member/models.py:422 #, python-brace-format msgid "The role {role} does not apply to the club {club}." msgstr "Le rôle {role} ne s'applique pas au club {club}." -#: apps/member/models.py:430 apps/member/views.py:646 +#: apps/member/models.py:431 apps/member/views.py:651 msgid "User is already a member of the club" msgstr "L'utilisateur est déjà membre du club" -#: apps/member/models.py:442 apps/member/views.py:656 +#: apps/member/models.py:443 apps/member/views.py:661 msgid "User is not a member of the parent club" msgstr "L'utilisateur n'est pas membre du club parent" -#: apps/member/models.py:495 +#: apps/member/models.py:496 #, python-brace-format msgid "Membership of {user} for the club {club}" msgstr "Adhésion de {user} pour le club {club}" -#: apps/member/models.py:498 apps/note/models/transactions.py:358 +#: apps/member/models.py:499 apps/note/models/transactions.py:389 msgid "membership" msgstr "adhésion" -#: apps/member/models.py:499 +#: apps/member/models.py:500 msgid "memberships" msgstr "adhésions" -#: apps/member/tables.py:121 +#: apps/member/tables.py:137 msgid "Renew" msgstr "Renouveler" @@ -959,8 +960,8 @@ msgstr "" "à nouveau possible." #: apps/member/templates/member/club_alias.html:10 -#: apps/member/templates/member/profile_alias.html:10 apps/member/views.py:245 -#: apps/member/views.py:448 +#: apps/member/templates/member/profile_alias.html:10 apps/member/views.py:253 +#: apps/member/views.py:456 msgid "Note aliases" msgstr "Alias de la note" @@ -998,7 +999,7 @@ msgid "Filter roles:" msgstr "Filtrer par rôle :" #: apps/member/templates/member/club_members.html:36 -#: apps/wei/templates/wei/weimembership_list.html:17 +#: apps/wei/templates/wei/weimembership_list.html:19 msgid "There is no membership found with this pattern." msgstr "Il n'y a pas d'adhésion trouvée avec cette entrée." @@ -1016,8 +1017,8 @@ msgid "membership fee" msgstr "cotisation pour adhérer" #: apps/member/templates/member/includes/club_info.html:43 -#: apps/member/templates/member/includes/profile_info.html:42 -#: apps/treasury/templates/treasury/sogecredit_detail.html:18 +#: apps/member/templates/member/includes/profile_info.html:43 +#: apps/treasury/templates/treasury/sogecredit_detail.html:24 #: apps/wei/templates/wei/base.html:60 msgid "balance" msgstr "solde du compte" @@ -1035,6 +1036,7 @@ msgstr "Gérer les alias" #: apps/member/templates/member/includes/profile_info.html:7 #: apps/registration/templates/registration/future_profile_detail.html:19 +#: apps/treasury/templates/treasury/sogecredit_detail.html:20 #: apps/wei/templates/wei/weimembership_form.html:17 msgid "username" msgstr "pseudo" @@ -1047,7 +1049,7 @@ msgstr "mot de passe" msgid "Change password" msgstr "Changer le mot de passe" -#: apps/member/templates/member/includes/profile_info.html:53 +#: apps/member/templates/member/includes/profile_info.html:55 msgid "API token" msgstr "Accès API" @@ -1099,43 +1101,43 @@ msgstr "Inscriptions" msgid "This address must be valid." msgstr "Cette adresse doit être valide." -#: apps/member/views.py:137 +#: apps/member/views.py:138 msgid "Profile detail" msgstr "Détails de l'utilisateur" -#: apps/member/views.py:204 +#: apps/member/views.py:205 msgid "Search user" msgstr "Chercher un utilisateur" -#: apps/member/views.py:265 +#: apps/member/views.py:273 msgid "Update note picture" msgstr "Modifier la photo de la note" -#: apps/member/views.py:311 +#: apps/member/views.py:319 msgid "Manage auth token" msgstr "Gérer les jetons d'authentification" -#: apps/member/views.py:338 +#: apps/member/views.py:346 msgid "Create new club" msgstr "Créer un nouveau club" -#: apps/member/views.py:357 +#: apps/member/views.py:365 msgid "Search club" msgstr "Chercher un club" -#: apps/member/views.py:390 +#: apps/member/views.py:398 msgid "Club detail" msgstr "Détails du club" -#: apps/member/views.py:471 +#: apps/member/views.py:479 msgid "Update club" msgstr "Modifier le club" -#: apps/member/views.py:505 +#: apps/member/views.py:513 msgid "Add new member to the club" msgstr "Ajouter un nouveau membre au club" -#: apps/member/views.py:637 apps/wei/views.py:928 +#: apps/member/views.py:642 apps/wei/views.py:917 msgid "" "This user don't have enough money to join this club, and can't have a " "negative balance." @@ -1143,20 +1145,14 @@ msgstr "" "Cet utilisateur n'a pas assez d'argent pour rejoindre ce club et ne peut pas " "avoir un solde négatif." -#: apps/member/views.py:660 +#: apps/member/views.py:665 msgid "The membership must start after {:%m-%d-%Y}." msgstr "L'adhésion doit commencer après le {:%d/%m/%Y}." -#: apps/member/views.py:665 +#: apps/member/views.py:670 msgid "The membership must begin before {:%m-%d-%Y}." msgstr "L'adhésion doit commencer avant le {:%d/%m/%Y}." -#: apps/member/views.py:672 apps/member/views.py:674 apps/member/views.py:676 -#: apps/registration/views.py:304 apps/registration/views.py:306 -#: apps/registration/views.py:308 apps/wei/views.py:933 apps/wei/views.py:937 -msgid "This field is required." -msgstr "Ce champ est requis." - #: apps/member/views.py:816 msgid "Manage roles of an user in the club" msgstr "Gérer les rôles d'un utilisateur dans le club" @@ -1180,7 +1176,7 @@ msgid "amount" msgstr "montant" #: apps/note/api/serializers.py:183 apps/note/api/serializers.py:189 -#: apps/note/models/transactions.py:227 +#: apps/note/models/transactions.py:228 msgid "" "The transaction can't be saved since the source note or the destination note " "is not active." @@ -1200,7 +1196,7 @@ msgstr "Destination" msgid "Reason" msgstr "Raison" -#: apps/note/forms.py:79 apps/treasury/tables.py:139 +#: apps/note/forms.py:79 apps/treasury/tables.py:136 msgid "Valid" msgstr "Valide" @@ -1220,42 +1216,42 @@ msgstr "Créé après" msgid "Created before" msgstr "Créé avant" -#: apps/note/models/notes.py:32 +#: apps/note/models/notes.py:31 msgid "account balance" msgstr "solde du compte" -#: apps/note/models/notes.py:33 +#: apps/note/models/notes.py:32 msgid "in centimes, money credited for this instance" msgstr "en centimes, argent crédité pour cette instance" -#: apps/note/models/notes.py:38 +#: apps/note/models/notes.py:37 msgid "last negative date" msgstr "dernier date de négatif" -#: apps/note/models/notes.py:39 +#: apps/note/models/notes.py:38 msgid "last time the balance was negative" msgstr "dernier instant où la note était en négatif" -#: apps/note/models/notes.py:45 +#: apps/note/models/notes.py:44 msgid "display image" msgstr "image affichée" -#: apps/note/models/notes.py:54 apps/note/models/transactions.py:132 +#: apps/note/models/notes.py:53 apps/note/models/transactions.py:132 msgid "created at" msgstr "créée le" -#: apps/note/models/notes.py:59 +#: apps/note/models/notes.py:58 msgid "active" msgstr "actif" -#: apps/note/models/notes.py:62 +#: apps/note/models/notes.py:61 msgid "" "Designates whether this note should be treated as active. Unselect this " "instead of deleting notes." msgstr "" "Indique si la note est active. Désactiver cela plutôt que supprimer la note." -#: apps/note/models/notes.py:69 +#: apps/note/models/notes.py:68 msgid "" "The user blocked his/her note manually, eg. when he/she left the school for " "holidays. It can be reactivated at any time." @@ -1263,55 +1259,55 @@ msgstr "" "La note a été bloquée manuellement, par exemple pour des raisons de " "vacances. Elle peut être débloquée à tout moment." -#: apps/note/models/notes.py:71 +#: apps/note/models/notes.py:70 msgid "The note is blocked by the the BDE and can't be manually reactivated." msgstr "" "La note est bloquée de force par le BDE et ne peut pas être débloquée par le " "possesseur de la note." -#: apps/note/models/notes.py:79 +#: apps/note/models/notes.py:78 msgid "notes" msgstr "notes" -#: apps/note/models/notes.py:133 +#: apps/note/models/notes.py:132 msgid "This alias is already taken." msgstr "Cet alias est déjà pris." -#: apps/note/models/notes.py:153 +#: apps/note/models/notes.py:152 msgid "one's note" msgstr "note d'un utilisateur" -#: apps/note/models/notes.py:154 +#: apps/note/models/notes.py:153 msgid "users note" msgstr "notes des utilisateurs" -#: apps/note/models/notes.py:160 +#: apps/note/models/notes.py:159 #, python-format msgid "%(user)s's note" msgstr "Note de %(user)s" -#: apps/note/models/notes.py:181 +#: apps/note/models/notes.py:180 msgid "club note" msgstr "note d'un club" -#: apps/note/models/notes.py:182 +#: apps/note/models/notes.py:181 msgid "clubs notes" msgstr "notes des clubs" -#: apps/note/models/notes.py:188 +#: apps/note/models/notes.py:187 #, python-format msgid "Note of %(club)s club" msgstr "Note du club %(club)s" -#: apps/note/models/notes.py:214 +#: apps/note/models/notes.py:213 msgid "special note" msgstr "note spéciale" -#: apps/note/models/notes.py:215 +#: apps/note/models/notes.py:214 msgid "special notes" msgstr "notes spéciales" -#: apps/note/models/notes.py:238 +#: apps/note/models/notes.py:237 msgid "Invalid alias" msgstr "Alias invalide" @@ -1388,7 +1384,7 @@ msgid "transaction" msgstr "transaction" #: apps/note/models/transactions.py:162 -#: apps/treasury/templates/treasury/sogecredit_detail.html:22 +#: apps/treasury/templates/treasury/sogecredit_detail.html:28 msgid "transactions" msgstr "transactions" @@ -1410,7 +1406,7 @@ msgstr "" "€ et 92 233 720 368 547 758.07 €. Ne cherchez pas à capitaliser l'argent du " "BDE." -#: apps/note/models/transactions.py:276 +#: apps/note/models/transactions.py:277 msgid "" "The destination of this transaction must equal to the destination of the " "template." @@ -1418,27 +1414,27 @@ msgstr "" "Le destinataire de cette transaction doit être identique à celui du bouton " "utilisé." -#: apps/note/models/transactions.py:286 +#: apps/note/models/transactions.py:287 msgid "Template" msgstr "Bouton" -#: apps/note/models/transactions.py:289 +#: apps/note/models/transactions.py:290 msgid "recurrent transaction" msgstr "transaction issue de bouton" -#: apps/note/models/transactions.py:290 +#: apps/note/models/transactions.py:291 msgid "recurrent transactions" msgstr "transactions issues de boutons" -#: apps/note/models/transactions.py:305 +#: apps/note/models/transactions.py:306 msgid "first_name" msgstr "prénom" -#: apps/note/models/transactions.py:310 +#: apps/note/models/transactions.py:311 msgid "bank" msgstr "banque" -#: apps/note/models/transactions.py:327 +#: apps/note/models/transactions.py:328 msgid "" "A special transaction is only possible between a Note associated to a " "payment method and a User or a Club" @@ -1446,19 +1442,25 @@ msgstr "" "Une transaction spéciale n'est possible que entre une note associée à un " "mode de paiement et un utilisateur ou un club" -#: apps/note/models/transactions.py:336 +#: apps/note/models/transactions.py:355 apps/note/models/transactions.py:358 +#: apps/note/models/transactions.py:361 apps/wei/views.py:922 +#: apps/wei/views.py:926 +msgid "This field is required." +msgstr "Ce champ est requis." + +#: apps/note/models/transactions.py:367 msgid "Special transaction" msgstr "Transaction de crédit/retrait" -#: apps/note/models/transactions.py:337 +#: apps/note/models/transactions.py:368 msgid "Special transactions" msgstr "Transactions de crédit/retrait" -#: apps/note/models/transactions.py:353 +#: apps/note/models/transactions.py:384 msgid "membership transaction" msgstr "transaction d'adhésion" -#: apps/note/models/transactions.py:354 apps/treasury/models.py:284 +#: apps/note/models/transactions.py:385 apps/treasury/models.py:289 msgid "membership transactions" msgstr "transactions d'adhésion" @@ -1476,14 +1478,14 @@ msgstr "Pas de motif spécifié" #: apps/note/tables.py:169 apps/note/tables.py:203 apps/treasury/tables.py:39 #: apps/treasury/templates/treasury/invoice_confirm_delete.html:30 -#: apps/treasury/templates/treasury/sogecredit_detail.html:59 -#: apps/wei/tables.py:76 apps/wei/tables.py:103 +#: apps/treasury/templates/treasury/sogecredit_detail.html:65 +#: apps/wei/tables.py:74 apps/wei/tables.py:114 #: apps/wei/templates/wei/weiregistration_confirm_delete.html:31 msgid "Delete" msgstr "Supprimer" #: apps/note/tables.py:197 apps/note/templates/note/conso_form.html:132 -#: apps/wei/tables.py:47 apps/wei/tables.py:48 +#: apps/wei/tables.py:48 apps/wei/tables.py:49 #: apps/wei/templates/wei/base.html:89 #: apps/wei/templates/wei/bus_detail.html:20 #: apps/wei/templates/wei/busteam_detail.html:20 @@ -1562,13 +1564,13 @@ msgstr "Action" #: apps/note/templates/note/transaction_form.html:112 #: apps/treasury/forms.py:136 apps/treasury/tables.py:67 -#: apps/treasury/tables.py:135 +#: apps/treasury/tables.py:132 #: apps/treasury/templates/treasury/remittance_form.html:23 msgid "Amount" msgstr "Montant" #: apps/note/templates/note/transaction_form.html:128 -#: apps/treasury/models.py:51 +#: apps/treasury/models.py:52 msgid "Name" msgstr "Nom" @@ -1648,53 +1650,53 @@ msgstr "Vous ne pouvez pas voir le moindre bouton." msgid "Search transactions" msgstr "Rechercher des transactions" -#: apps/permission/models.py:92 +#: apps/permission/models.py:89 #, python-brace-format msgid "Can {type} {model}.{field} in {query}" msgstr "Peut {type} {model}.{field} si {query}" -#: apps/permission/models.py:94 +#: apps/permission/models.py:91 #, python-brace-format msgid "Can {type} {model} in {query}" msgstr "Peut {type} {model} si {query}" -#: apps/permission/models.py:107 +#: apps/permission/models.py:104 msgid "rank" msgstr "rang" -#: apps/permission/models.py:120 +#: apps/permission/models.py:117 msgid "permission mask" msgstr "masque de permissions" -#: apps/permission/models.py:121 +#: apps/permission/models.py:118 msgid "permission masks" msgstr "masques de permissions" -#: apps/permission/models.py:127 +#: apps/permission/models.py:124 msgid "add" msgstr "ajouter" -#: apps/permission/models.py:128 +#: apps/permission/models.py:125 msgid "view" msgstr "voir" -#: apps/permission/models.py:129 +#: apps/permission/models.py:126 msgid "change" msgstr "modifier" -#: apps/permission/models.py:161 +#: apps/permission/models.py:158 msgid "query" msgstr "requête" -#: apps/permission/models.py:174 +#: apps/permission/models.py:171 msgid "mask" msgstr "masque" -#: apps/permission/models.py:180 +#: apps/permission/models.py:177 msgid "field" msgstr "champ" -#: apps/permission/models.py:185 +#: apps/permission/models.py:182 msgid "" "Tells if the permission should be granted even if the membership of the user " "is expired." @@ -1702,30 +1704,30 @@ msgstr "" "Indique si la permission doit être attribuée même si l'adhésion de " "l'utilisateur est expirée." -#: apps/permission/models.py:186 +#: apps/permission/models.py:183 #: apps/permission/templates/permission/all_rights.html:89 msgid "permanent" msgstr "permanent" -#: apps/permission/models.py:197 +#: apps/permission/models.py:194 msgid "permission" msgstr "permission" -#: apps/permission/models.py:198 apps/permission/models.py:338 +#: apps/permission/models.py:195 apps/permission/models.py:335 msgid "permissions" msgstr "permissions" -#: apps/permission/models.py:203 +#: apps/permission/models.py:200 msgid "Specifying field applies only to view and change permission types." msgstr "" "Spécifie le champ concerné, ne fonctionne que pour les permissions view et " "change." -#: apps/permission/models.py:343 +#: apps/permission/models.py:340 msgid "for club" msgstr "s'applique au club" -#: apps/permission/models.py:353 apps/permission/models.py:354 +#: apps/permission/models.py:350 apps/permission/models.py:351 msgid "role permissions" msgstr "permissions par rôles" @@ -1738,7 +1740,7 @@ msgstr "" "Vous n'avez pas la permission de modifier le champ {field} sur l'instance du " "modèle {app_label}.{model_name}." -#: apps/permission/signals.py:73 apps/permission/views.py:103 +#: apps/permission/signals.py:73 apps/permission/views.py:105 #, python-brace-format msgid "" "You don't have the permission to add an instance of model {app_label}." @@ -1797,7 +1799,7 @@ msgstr "Requête :" msgid "No associated permission" msgstr "Pas de permission associée" -#: apps/permission/views.py:70 +#: apps/permission/views.py:72 #, python-brace-format msgid "" "You don't have the permission to update this instance of the model " @@ -1806,7 +1808,7 @@ msgstr "" "Vous n'avez pas la permission de modifier cette instance du modèle « {model} " "» avec ces paramètres. Merci de les corriger et de réessayer." -#: apps/permission/views.py:74 +#: apps/permission/views.py:76 #, python-brace-format msgid "" "You don't have the permission to create an instance of the model \"{model}\" " @@ -1815,11 +1817,11 @@ msgstr "" "Vous n'avez pas la permission d'ajouter une instance du modèle « {model} » " "avec ces paramètres. Merci de les corriger et de réessayer." -#: apps/permission/views.py:110 note_kfet/templates/base.html:109 +#: apps/permission/views.py:112 note_kfet/templates/base.html:109 msgid "Rights" msgstr "Droits" -#: apps/permission/views.py:115 +#: apps/permission/views.py:117 msgid "All rights" msgstr "Tous les droits" @@ -2007,18 +2009,18 @@ msgstr "Utilisateurs en attente d'inscription" msgid "Registration detail" msgstr "Détails de l'inscription" -#: apps/registration/views.py:273 +#: apps/registration/views.py:278 msgid "You must join the BDE." msgstr "Vous devez adhérer au BDE." -#: apps/registration/views.py:297 +#: apps/registration/views.py:302 msgid "" "The entered amount is not enough for the memberships, should be at least {}" msgstr "" "Le montant crédité est trop faible pour adhérer, il doit être au minimum de " "{}" -#: apps/registration/views.py:384 +#: apps/registration/views.py:383 msgid "Invalidate pre-registration" msgstr "Invalider l'inscription" @@ -2026,7 +2028,7 @@ msgstr "Invalider l'inscription" msgid "Treasury" msgstr "Trésorerie" -#: apps/treasury/forms.py:25 apps/treasury/models.py:90 +#: apps/treasury/forms.py:25 apps/treasury/models.py:91 #: apps/treasury/templates/treasury/invoice_form.html:22 msgid "This invoice is locked and can no longer be edited." msgstr "Cette facture est verrouillée et ne peut plus être éditée." @@ -2039,7 +2041,7 @@ msgstr "La remise est déjà fermée." msgid "You can't change the type of the remittance." msgstr "Vous ne pouvez pas changer le type de la remise." -#: apps/treasury/forms.py:124 apps/treasury/models.py:260 +#: apps/treasury/forms.py:124 apps/treasury/models.py:265 #: apps/treasury/tables.py:97 apps/treasury/tables.py:105 #: apps/treasury/templates/treasury/invoice_list.html:16 #: apps/treasury/templates/treasury/remittance_list.html:16 @@ -2051,120 +2053,120 @@ msgstr "Remise" msgid "No attached remittance" msgstr "Pas de remise associée" -#: apps/treasury/models.py:23 +#: apps/treasury/models.py:24 msgid "Invoice identifier" msgstr "Numéro de facture" -#: apps/treasury/models.py:37 +#: apps/treasury/models.py:38 msgid "BDE" msgstr "BDE" -#: apps/treasury/models.py:42 +#: apps/treasury/models.py:43 msgid "Object" msgstr "Objet" -#: apps/treasury/models.py:46 +#: apps/treasury/models.py:47 msgid "Description" msgstr "Description" -#: apps/treasury/models.py:55 +#: apps/treasury/models.py:56 msgid "Address" msgstr "Adresse" -#: apps/treasury/models.py:60 apps/treasury/models.py:187 +#: apps/treasury/models.py:61 apps/treasury/models.py:191 msgid "Date" msgstr "Date" -#: apps/treasury/models.py:64 +#: apps/treasury/models.py:65 msgid "Acquitted" msgstr "Acquittée" -#: apps/treasury/models.py:69 +#: apps/treasury/models.py:70 msgid "Locked" msgstr "Verrouillée" -#: apps/treasury/models.py:70 +#: apps/treasury/models.py:71 msgid "An invoice can't be edited when it is locked." msgstr "Une facture ne peut plus être modifiée si elle est verrouillée." -#: apps/treasury/models.py:76 +#: apps/treasury/models.py:77 msgid "tex source" msgstr "fichier TeX source" -#: apps/treasury/models.py:110 apps/treasury/models.py:126 +#: apps/treasury/models.py:111 apps/treasury/models.py:127 msgid "invoice" msgstr "facture" -#: apps/treasury/models.py:111 +#: apps/treasury/models.py:112 msgid "invoices" msgstr "factures" -#: apps/treasury/models.py:114 +#: apps/treasury/models.py:115 #, python-brace-format msgid "Invoice #{id}" msgstr "Facture n°{id}" -#: apps/treasury/models.py:131 +#: apps/treasury/models.py:132 msgid "Designation" msgstr "Désignation" -#: apps/treasury/models.py:135 +#: apps/treasury/models.py:138 msgid "Quantity" msgstr "Quantité" -#: apps/treasury/models.py:139 +#: apps/treasury/models.py:143 msgid "Unit price" msgstr "Prix unitaire" -#: apps/treasury/models.py:155 +#: apps/treasury/models.py:159 msgid "product" msgstr "produit" -#: apps/treasury/models.py:156 +#: apps/treasury/models.py:160 msgid "products" msgstr "produits" -#: apps/treasury/models.py:176 +#: apps/treasury/models.py:180 msgid "remittance type" msgstr "type de remise" -#: apps/treasury/models.py:177 +#: apps/treasury/models.py:181 msgid "remittance types" msgstr "types de remises" -#: apps/treasury/models.py:198 +#: apps/treasury/models.py:202 msgid "Comment" msgstr "Commentaire" -#: apps/treasury/models.py:203 +#: apps/treasury/models.py:207 msgid "Closed" msgstr "Fermée" -#: apps/treasury/models.py:207 +#: apps/treasury/models.py:211 msgid "remittance" msgstr "remise" -#: apps/treasury/models.py:208 +#: apps/treasury/models.py:212 msgid "remittances" msgstr "remises" -#: apps/treasury/models.py:241 +#: apps/treasury/models.py:245 msgid "Remittance #{:d}: {}" msgstr "Remise n°{:d} : {}" -#: apps/treasury/models.py:264 +#: apps/treasury/models.py:269 msgid "special transaction proxy" msgstr "proxy de transaction spéciale" -#: apps/treasury/models.py:265 +#: apps/treasury/models.py:270 msgid "special transaction proxies" msgstr "proxys de transactions spéciales" -#: apps/treasury/models.py:290 +#: apps/treasury/models.py:295 msgid "credit transaction" msgstr "transaction de crédit" -#: apps/treasury/models.py:374 +#: apps/treasury/models.py:379 msgid "" "This user doesn't have enough money to pay the memberships with its note. " "Please ask her/him to credit the note before invalidating this credit." @@ -2172,16 +2174,16 @@ msgstr "" "Cet utilisateur n'a pas assez d'argent pour payer les adhésions avec sa " "note. Merci de lui demander de recharger sa note avant d'invalider ce crédit." -#: apps/treasury/models.py:389 +#: apps/treasury/models.py:399 #: apps/treasury/templates/treasury/sogecredit_detail.html:10 msgid "Credit from the Société générale" msgstr "Crédit de la Société générale" -#: apps/treasury/models.py:390 +#: apps/treasury/models.py:400 msgid "Credits from the Société générale" msgstr "Crédits de la Société générale" -#: apps/treasury/models.py:393 +#: apps/treasury/models.py:403 #, python-brace-format msgid "Soge credit for {user}" msgstr "Crédit de la société générale pour l'utilisateur {user}" @@ -2205,7 +2207,7 @@ msgstr "Nombre de transactions" msgid "View" msgstr "Voir" -#: apps/treasury/tables.py:146 +#: apps/treasury/tables.py:143 msgid "Yes" msgstr "Oui" @@ -2309,11 +2311,11 @@ msgstr "Remises fermées" msgid "There is no closed remittance yet." msgstr "Il n'y a pas encore de remise fermée." -#: apps/treasury/templates/treasury/sogecredit_detail.html:29 +#: apps/treasury/templates/treasury/sogecredit_detail.html:35 msgid "total amount" msgstr "montant total" -#: apps/treasury/templates/treasury/sogecredit_detail.html:35 +#: apps/treasury/templates/treasury/sogecredit_detail.html:41 msgid "" "Warning: Validating this credit implies that all membership transactions " "will be validated." @@ -2321,7 +2323,7 @@ msgstr "" "Attention : Valider ce crédit implique que les transactions d'adhésion " "seront validées." -#: apps/treasury/templates/treasury/sogecredit_detail.html:36 +#: apps/treasury/templates/treasury/sogecredit_detail.html:42 msgid "" "If you delete this credit, there all membership transactions will be also " "validated, but no credit will be operated." @@ -2330,7 +2332,7 @@ msgstr "" "d'adhésion seront aussi validées, mais il n'y aura pas de transaction de " "crédit créée." -#: apps/treasury/templates/treasury/sogecredit_detail.html:37 +#: apps/treasury/templates/treasury/sogecredit_detail.html:43 msgid "" "If this credit is validated, then the user won't be able to ask for a credit " "from the Société générale." @@ -2338,15 +2340,15 @@ msgstr "" "Si ce crédit est validé, alors l'utilisateur ne pourra plus demander d'être " "crédité par la Société générale à l'avenir." -#: apps/treasury/templates/treasury/sogecredit_detail.html:38 +#: apps/treasury/templates/treasury/sogecredit_detail.html:44 msgid "If you think there is an error, please contact the \"respos info\"." msgstr "Si vous pensez qu'il y a une erreur, merci de contacter un respo info." -#: apps/treasury/templates/treasury/sogecredit_detail.html:44 +#: apps/treasury/templates/treasury/sogecredit_detail.html:50 msgid "This credit is already validated." msgstr "Ce crédit a déjà été validé." -#: apps/treasury/templates/treasury/sogecredit_detail.html:49 +#: apps/treasury/templates/treasury/sogecredit_detail.html:55 msgid "" "Warning: if you don't validate this credit, the note of the user doesn't " "have enough money to pay its memberships." @@ -2354,18 +2356,18 @@ msgstr "" "Attention : si vous ne validez pas ce crédit, la note de l'utilisateur n'a " "pas assez d'argent pour payer les adhésions." -#: apps/treasury/templates/treasury/sogecredit_detail.html:50 +#: apps/treasury/templates/treasury/sogecredit_detail.html:56 msgid "Please ask the user to credit its note before deleting this credit." msgstr "" "Merci de demander à l'utilisateur de recharger sa note avant de supprimer la " "demande de crédit." -#: apps/treasury/templates/treasury/sogecredit_detail.html:57 -#: apps/wei/tables.py:59 apps/wei/tables.py:60 apps/wei/tables.py:99 +#: apps/treasury/templates/treasury/sogecredit_detail.html:63 +#: apps/wei/tables.py:59 apps/wei/tables.py:101 msgid "Validate" msgstr "Valider" -#: apps/treasury/templates/treasury/sogecredit_detail.html:65 +#: apps/treasury/templates/treasury/sogecredit_detail.html:71 msgid "Return to credit list" msgstr "Retour à la liste des crédits" @@ -2421,13 +2423,13 @@ msgid "Manage credits from the Société générale" msgstr "Gérer les crédits de la Société générale" #: apps/wei/apps.py:10 apps/wei/models.py:49 apps/wei/models.py:50 -#: apps/wei/models.py:61 apps/wei/models.py:167 +#: apps/wei/models.py:61 apps/wei/models.py:172 #: note_kfet/templates/base.html:103 msgid "WEI" msgstr "WEI" -#: apps/wei/forms/registration.py:51 apps/wei/models.py:113 -#: apps/wei/models.py:283 +#: apps/wei/forms/registration.py:51 apps/wei/models.py:118 +#: apps/wei/models.py:315 msgid "bus" msgstr "bus" @@ -2453,7 +2455,7 @@ msgstr "" "bus ou électron libre)" #: apps/wei/forms/registration.py:67 apps/wei/forms/registration.py:77 -#: apps/wei/models.py:148 +#: apps/wei/models.py:153 msgid "WEI Roles" msgstr "Rôles au WEI" @@ -2465,7 +2467,7 @@ msgstr "Sélectionnez les rôles qui vous intéressent." msgid "This team doesn't belong to the given bus." msgstr "Cette équipe n'appartient pas à ce bus." -#: apps/wei/forms/surveys/wei2020.py:30 +#: apps/wei/forms/surveys/wei2021.py:31 msgid "Choose a word:" msgstr "Choisissez un mot :" @@ -2481,105 +2483,109 @@ msgstr "début" msgid "date end" msgstr "fin" -#: apps/wei/models.py:77 +#: apps/wei/models.py:70 +msgid "seat count in the bus" +msgstr "nombre de sièges dans le bus" + +#: apps/wei/models.py:82 msgid "survey information" msgstr "informations sur le questionnaire" -#: apps/wei/models.py:78 +#: apps/wei/models.py:83 msgid "Information about the survey for new members, encoded in JSON" msgstr "" "Informations sur le sondage pour les nouveaux membres, encodées en JSON" -#: apps/wei/models.py:100 +#: apps/wei/models.py:105 msgid "Bus" msgstr "Bus" -#: apps/wei/models.py:101 apps/wei/templates/wei/weiclub_detail.html:51 +#: apps/wei/models.py:106 apps/wei/templates/wei/weiclub_detail.html:51 msgid "Buses" msgstr "Bus" -#: apps/wei/models.py:122 +#: apps/wei/models.py:127 msgid "color" msgstr "couleur" -#: apps/wei/models.py:123 +#: apps/wei/models.py:128 msgid "The color of the T-Shirt, stored with its number equivalent" msgstr "" "La couleur du T-Shirt, stocké sous la forme de son équivalent numérique" -#: apps/wei/models.py:137 +#: apps/wei/models.py:142 msgid "Bus team" msgstr "Équipe de bus" -#: apps/wei/models.py:138 +#: apps/wei/models.py:143 msgid "Bus teams" msgstr "Équipes de bus" -#: apps/wei/models.py:147 +#: apps/wei/models.py:152 msgid "WEI Role" msgstr "Rôle au WEI" -#: apps/wei/models.py:172 +#: apps/wei/models.py:177 msgid "Credit from Société générale" msgstr "Crédit de la Société générale" -#: apps/wei/models.py:177 +#: apps/wei/models.py:182 msgid "Caution check given" msgstr "Chèque de caution donné" -#: apps/wei/models.py:181 apps/wei/templates/wei/weimembership_form.html:64 +#: apps/wei/models.py:186 apps/wei/templates/wei/weimembership_form.html:64 msgid "birth date" msgstr "date de naissance" -#: apps/wei/models.py:187 apps/wei/models.py:197 +#: apps/wei/models.py:192 apps/wei/models.py:202 msgid "Male" msgstr "Homme" -#: apps/wei/models.py:188 apps/wei/models.py:198 +#: apps/wei/models.py:193 apps/wei/models.py:203 msgid "Female" msgstr "Femme" -#: apps/wei/models.py:189 +#: apps/wei/models.py:194 msgid "Non binary" msgstr "Non-binaire" -#: apps/wei/models.py:191 apps/wei/templates/wei/weimembership_form.html:55 +#: apps/wei/models.py:196 apps/wei/templates/wei/weimembership_form.html:55 msgid "gender" msgstr "genre" -#: apps/wei/models.py:200 apps/wei/templates/wei/weimembership_form.html:58 +#: apps/wei/models.py:205 apps/wei/templates/wei/weimembership_form.html:58 msgid "clothing cut" msgstr "coupe de vêtement" -#: apps/wei/models.py:213 apps/wei/templates/wei/weimembership_form.html:61 +#: apps/wei/models.py:218 apps/wei/templates/wei/weimembership_form.html:61 msgid "clothing size" msgstr "taille de vêtement" -#: apps/wei/models.py:219 apps/wei/templates/wei/weimembership_form.html:67 +#: apps/wei/models.py:224 apps/wei/templates/wei/weimembership_form.html:67 msgid "health issues" msgstr "problèmes de santé" -#: apps/wei/models.py:224 apps/wei/templates/wei/weimembership_form.html:70 +#: apps/wei/models.py:229 apps/wei/templates/wei/weimembership_form.html:70 msgid "emergency contact name" msgstr "nom du contact en cas d'urgence" -#: apps/wei/models.py:229 apps/wei/templates/wei/weimembership_form.html:73 +#: apps/wei/models.py:234 apps/wei/templates/wei/weimembership_form.html:73 msgid "emergency contact phone" msgstr "téléphone du contact en cas d'urgence" -#: apps/wei/models.py:234 apps/wei/templates/wei/weimembership_form.html:52 +#: apps/wei/models.py:239 apps/wei/templates/wei/weimembership_form.html:52 msgid "first year" msgstr "première année" -#: apps/wei/models.py:235 +#: apps/wei/models.py:240 msgid "Tells if the user is new in the school." msgstr "Indique si l'utilisateur est nouveau dans l'école." -#: apps/wei/models.py:240 +#: apps/wei/models.py:245 msgid "registration information" msgstr "informations sur l'inscription" -#: apps/wei/models.py:241 +#: apps/wei/models.py:246 msgid "" "Information about the registration (buses for old members, survey for the " "new members), encoded in JSON" @@ -2587,44 +2593,52 @@ msgstr "" "Informations sur l'inscription (bus pour les 2A+, questionnaire pour les " "1A), encodées en JSON" -#: apps/wei/models.py:272 +#: apps/wei/models.py:304 msgid "WEI User" msgstr "Participant au WEI" -#: apps/wei/models.py:273 +#: apps/wei/models.py:305 msgid "WEI Users" msgstr "Participants au WEI" -#: apps/wei/models.py:293 +#: apps/wei/models.py:325 msgid "team" msgstr "équipe" -#: apps/wei/models.py:303 +#: apps/wei/models.py:335 msgid "WEI registration" msgstr "Inscription au WEI" -#: apps/wei/models.py:307 +#: apps/wei/models.py:339 msgid "WEI membership" msgstr "Adhésion au WEI" -#: apps/wei/models.py:308 +#: apps/wei/models.py:340 msgid "WEI memberships" msgstr "Adhésions au WEI" -#: apps/wei/tables.py:127 +#: apps/wei/tables.py:104 +msgid "The user does not have enough money." +msgstr "L'utilisateur n'a pas assez d'argent." + +#: apps/wei/tables.py:107 +msgid "The user has enough money, you can validate the registration." +msgstr "L'utilisateur a assez d'argent, l'inscription est possible." + +#: apps/wei/tables.py:139 msgid "Year" msgstr "Année" -#: apps/wei/tables.py:165 apps/wei/templates/wei/bus_detail.html:32 +#: apps/wei/tables.py:177 apps/wei/templates/wei/bus_detail.html:32 #: apps/wei/templates/wei/busteam_detail.html:50 msgid "Teams" msgstr "Équipes" -#: apps/wei/tables.py:174 apps/wei/tables.py:215 +#: apps/wei/tables.py:186 apps/wei/tables.py:227 msgid "Members count" msgstr "Nombre de membres" -#: apps/wei/tables.py:181 apps/wei/tables.py:212 +#: apps/wei/tables.py:193 apps/wei/tables.py:224 msgid "members" msgstr "adhérents" @@ -2644,11 +2658,11 @@ msgstr "Prix du WEI (étudiants)" msgid "WEI list" msgstr "Liste des WEI" -#: apps/wei/templates/wei/base.html:81 apps/wei/views.py:508 +#: apps/wei/templates/wei/base.html:81 apps/wei/views.py:510 msgid "Register 1A" msgstr "Inscrire un 1A" -#: apps/wei/templates/wei/base.html:85 apps/wei/views.py:576 +#: apps/wei/templates/wei/base.html:85 apps/wei/views.py:578 msgid "Register 2A+" msgstr "Inscrire un 2A+" @@ -2671,14 +2685,14 @@ msgstr "Membres" #: apps/wei/templates/wei/bus_detail.html:54 #: apps/wei/templates/wei/busteam_detail.html:60 -#: apps/wei/templates/wei/weimembership_list.html:29 +#: apps/wei/templates/wei/weimembership_list.html:31 msgid "View as PDF" msgstr "Télécharger au format PDF" #: apps/wei/templates/wei/survey.html:11 #: apps/wei/templates/wei/survey_closed.html:11 -#: apps/wei/templates/wei/survey_end.html:11 apps/wei/views.py:984 -#: apps/wei/views.py:1039 apps/wei/views.py:1049 +#: apps/wei/templates/wei/survey_end.html:11 apps/wei/views.py:973 +#: apps/wei/views.py:1028 apps/wei/views.py:1038 msgid "Survey WEI" msgstr "Questionnaire WEI" @@ -2835,7 +2849,7 @@ msgstr "" "L'adhésion va être faite automatiquement, l'inscription au WEI inclut le " "coût d'adhésion." -#: apps/wei/templates/wei/weimembership_list.html:23 +#: apps/wei/templates/wei/weimembership_list.html:27 msgid "View unvalidated registrations..." msgstr "Voir les inscriptions non validées ..." @@ -2852,11 +2866,11 @@ msgstr "" "Êtes-vous sûr de vouloir supprimer l'inscription de %(user)s pour le WEI " "%(wei_name)s ? Cette action ne pourra pas être annulée." -#: apps/wei/templates/wei/weiregistration_list.html:17 +#: apps/wei/templates/wei/weiregistration_list.html:19 msgid "There is no pre-registration found with this pattern." msgstr "Il n'y a pas de pré-inscription en attente avec cette entrée." -#: apps/wei/templates/wei/weiregistration_list.html:23 +#: apps/wei/templates/wei/weiregistration_list.html:27 msgid "View validated memberships..." msgstr "Voir les adhésions validées ..." @@ -2896,31 +2910,31 @@ msgstr "Ajouter un nouveau bus" msgid "Update bus" msgstr "Modifier le bus" -#: apps/wei/views.py:364 +#: apps/wei/views.py:366 msgid "Manage bus" msgstr "Gérer le bus" -#: apps/wei/views.py:391 +#: apps/wei/views.py:393 msgid "Create new team" msgstr "Créer une nouvelle équipe" -#: apps/wei/views.py:431 +#: apps/wei/views.py:433 msgid "Update team" msgstr "Modifier l'équipe" -#: apps/wei/views.py:462 +#: apps/wei/views.py:464 msgid "Manage WEI team" msgstr "Gérer l'équipe WEI" -#: apps/wei/views.py:484 +#: apps/wei/views.py:486 msgid "Register first year student to the WEI" msgstr "Inscrire un 1A au WEI" -#: apps/wei/views.py:530 apps/wei/views.py:611 +#: apps/wei/views.py:532 apps/wei/views.py:613 msgid "This user is already registered to this WEI." msgstr "Cette personne est déjà inscrite au WEI." -#: apps/wei/views.py:535 +#: apps/wei/views.py:537 msgid "" "This user can't be in her/his first year since he/she has already " "participated to a WEI." @@ -2928,47 +2942,43 @@ msgstr "" "Cet utilisateur ne peut pas être en première année puisqu'il a déjà " "participé à un WEI." -#: apps/wei/views.py:552 +#: apps/wei/views.py:554 msgid "Register old student to the WEI" msgstr "Inscrire un 2A+ au WEI" -#: apps/wei/views.py:595 apps/wei/views.py:684 +#: apps/wei/views.py:597 apps/wei/views.py:686 msgid "You already opened an account in the Société générale." msgstr "Vous avez déjà ouvert un compte auprès de la société générale." -#: apps/wei/views.py:641 +#: apps/wei/views.py:643 msgid "Update WEI Registration" msgstr "Modifier l'inscription WEI" -#: apps/wei/views.py:744 +#: apps/wei/views.py:746 msgid "Delete WEI registration" msgstr "Supprimer l'inscription WEI" -#: apps/wei/views.py:755 +#: apps/wei/views.py:757 msgid "You don't have the right to delete this WEI registration." msgstr "Vous n'avez pas la permission de supprimer cette inscription au WEI." -#: apps/wei/views.py:774 +#: apps/wei/views.py:776 msgid "Validate WEI registration" msgstr "Valider l'inscription WEI" -#: apps/wei/views.py:922 -msgid "This user didn't give her/his caution check." -msgstr "Cet utilisateur n'a pas donné son chèque de caution." - -#: note_kfet/settings/base.py:157 +#: note_kfet/settings/base.py:161 msgid "German" msgstr "Allemand" -#: note_kfet/settings/base.py:158 +#: note_kfet/settings/base.py:162 msgid "English" msgstr "Anglais" -#: note_kfet/settings/base.py:159 +#: note_kfet/settings/base.py:163 msgid "Spanish" msgstr "Espagnol" -#: note_kfet/settings/base.py:160 +#: note_kfet/settings/base.py:164 msgid "French" msgstr "Français" @@ -3068,7 +3078,7 @@ msgstr "Inscription" msgid "Log in" msgstr "Se connecter" -#: note_kfet/templates/base.html:156 +#: note_kfet/templates/base.html:160 msgid "" "You are not a BDE member anymore. Please renew your membership if you want " "to use the note." @@ -3076,13 +3086,13 @@ msgstr "" "Vous n'êtes plus adhérent BDE. Merci de réadhérer si vous voulez profiter de " "la note." -#: note_kfet/templates/base.html:160 +#: note_kfet/templates/base.html:164 msgid "You are not a Kfet member, so you can't use your note account." msgstr "" "Vous n'êtes pas adhérent Kfet, vous ne pouvez par conséquent pas utiliser " "votre compte note." -#: note_kfet/templates/base.html:166 +#: note_kfet/templates/base.html:170 msgid "" "Your e-mail address is not validated. Please check your mail inbox and click " "on the validation link." @@ -3090,7 +3100,7 @@ msgstr "" "Votre adresse e-mail n'est pas validée. Merci de vérifier votre boîte mail " "et de cliquer sur le lien de validation." -#: note_kfet/templates/base.html:171 +#: note_kfet/templates/base.html:176 msgid "" "You declared that you opened a bank account in the Société générale. The " "bank did not validate the creation of the account to the BDE, so the " @@ -3105,7 +3115,7 @@ msgstr "" "durer quelques jours. Merci de vous assurer de bien aller au bout de vos " "démarches." -#: note_kfet/templates/base.html:194 +#: note_kfet/templates/base.html:199 msgid "Contact us" msgstr "Nous contacter" @@ -3228,19 +3238,3 @@ msgstr "" "vous connecter. Vous devez vous rendre à la Kfet et payer les frais " "d'adhésion. Vous devez également valider votre adresse email en suivant le " "lien que vous avez reçu." - -#~ msgid "Central Authentication Service" -#~ msgstr "Service Central d'Authentification" - -#, python-format -#~ msgid "" -#~ "A new version of the application is available. This instance runs " -#~ "%(VERSION)s and the last version is %(LAST_VERSION)s. Please consider " -#~ "upgrading." -#~ msgstr "" -#~ "Une nouvelle version de l'application est disponible. Cette instance " -#~ "utilise la version %(VERSION)s et la dernière version est " -#~ "%(LAST_VERSION)s. Merci de vous mettre à jour." - -#~ msgid "Check this case is the Société Générale paid the inscription." -#~ msgstr "Cochez cette case si la Société Générale a payé l'inscription." diff --git a/note_kfet/templates/base.html b/note_kfet/templates/base.html index cd902d32..09ede8c6 100644 --- a/note_kfet/templates/base.html +++ b/note_kfet/templates/base.html @@ -159,10 +159,6 @@ SPDX-License-Identifier: GPL-3.0-or-later
{% trans "You are not a BDE member anymore. Please renew your membership if you want to use the note." %}
- {% elif not user|is_member:"Kfet" %} -
- {% trans "You are not a Kfet member, so you can't use your note account." %} -
{% endif %} {% if not user.profile.email_confirmed %}