On remplace organisateur par organisation

This commit is contained in:
Jean-Marie Favreau 2025-04-06 15:05:21 +02:00
parent ea19bb9bc0
commit b229fa7cf9
11 changed files with 20 additions and 20 deletions

View File

@ -742,7 +742,7 @@ msgid ""
"Place mainly associated with this organizer. Mainly used if there is a " "Place mainly associated with this organizer. Mainly used if there is a "
"similarity in the name, to avoid redundant displays." "similarity in the name, to avoid redundant displays."
msgstr "" msgstr ""
"Lieu principalement associé à cet organisateur. Principalement utilisé s'il " "Lieu principalement associé à cette organisation. Principalement utilisé s'il "
"y a une similarité de nom, pour éviter les affichages redondants." "y a une similarité de nom, pour éviter les affichages redondants."
#: agenda_culturel/models.py:800 #: agenda_culturel/models.py:800
@ -837,14 +837,14 @@ msgstr ""
#: agenda_culturel/models.py:947 #: agenda_culturel/models.py:947
msgid "Organisers" msgid "Organisers"
msgstr "Organisateurs" msgstr "Organisations"
#: agenda_culturel/models.py:949 #: agenda_culturel/models.py:949
msgid "" msgid ""
"list of event organisers. Organizers will only be displayed if one of them " "list of event organisers. Organizers will only be displayed if one of them "
"does not normally use the venue." "does not normally use the venue."
msgstr "" msgstr ""
"Liste des organisateurs de l'événements. Les organisateurs seront affichés " "Liste des organisations de l'événements. Les organisations seront affichés "
"uniquement si au moins un d'entre eux n'utilise pas habituellement le lieu." "uniquement si au moins un d'entre eux n'utilise pas habituellement le lieu."
#: agenda_culturel/models.py:963 #: agenda_culturel/models.py:963
@ -1202,11 +1202,11 @@ msgstr "Forcer la localisation même si une autre a été détectée."
#: agenda_culturel/models.py:2905 #: agenda_culturel/models.py:2905
msgid "Organiser" msgid "Organiser"
msgstr "Organisateur" msgstr "Organisation"
#: agenda_culturel/models.py:2906 #: agenda_culturel/models.py:2906
msgid "Organiser of each imported event" msgid "Organiser of each imported event"
msgstr "Organisateur de chaque événement importé" msgstr "Organisme à l'origine de chaque événement importé"
#: agenda_culturel/models.py:2916 #: agenda_culturel/models.py:2916
msgid "Category of each imported event" msgid "Category of each imported event"

View File

@ -227,7 +227,7 @@
const organisers = document.querySelector('#id_organisers'); const organisers = document.querySelector('#id_organisers');
const choices_organisers = new Choices(organisers, const choices_organisers = new Choices(organisers,
{ {
placeholderValue: 'Sélectionner les organisateurs ', placeholderValue: 'Sélectionner les organisations ',
allowHTML: true, allowHTML: true,
searchResultLimit: 10, searchResultLimit: 10,
delimiter: ',', delimiter: ',',

View File

@ -167,7 +167,7 @@
const organisers = document.querySelector('#id_organisers'); const organisers = document.querySelector('#id_organisers');
const choices_organisers = new Choices(organisers, const choices_organisers = new Choices(organisers,
{ {
placeholderValue: 'Sélectionner les organisateurs ', placeholderValue: 'Sélectionner les organismes ',
allowHTML: true, allowHTML: true,
searchResultLimit: 10, searchResultLimit: 10,
delimiter: ',', delimiter: ',',

View File

@ -1,17 +1,17 @@
{% extends "agenda_culturel/page.html" %} {% extends "agenda_culturel/page.html" %}
{% block title %} {% block title %}
{% block og_title %}Supprimer l'organisateur {{ object.name }}{% endblock %} {% block og_title %}Supprimer l'organisation {{ object.name }}{% endblock %}
{% endblock %} {% endblock %}
{% block fluid %}{% endblock %} {% block fluid %}{% endblock %}
{% block configurer-bouton %}{% endblock %} {% block configurer-bouton %}{% endblock %}
{% block content %} {% block content %}
<article> <article>
<header> <header>
<h1>Supprimer l'organisateur {{ object.name }}</h1> <h1>Supprimer l'organisation {{ object.name }}</h1>
</header> </header>
<form method="post"> <form method="post">
{% csrf_token %} {% csrf_token %}
<p>Êtes-vous sûr·e de vouloir supprimer l'organisateur «&nbsp;{{ object.name }} ({{ object.pk }})&nbsp;»&nbsp;?</p> <p>Êtes-vous sûr·e de vouloir supprimer l'organisation «&nbsp;{{ object.name }} ({{ object.pk }})&nbsp;»&nbsp;?</p>
{{ form }} {{ form }}
<div class="grid buttons"> <div class="grid buttons">
<a href="{% if request.META.HTTP_REFERER %}{{ request.META.HTTP_REFERER }}{% else %}{{ object.get_absolute_url }}{% endif %}" <a href="{% if request.META.HTTP_REFERER %}{{ request.META.HTTP_REFERER }}{% else %}{{ object.get_absolute_url }}{% endif %}"

View File

@ -48,11 +48,11 @@
{% if user.is_authenticated %} {% if user.is_authenticated %}
{% if object.recurrentimport_set.all|length == 1 %} {% if object.recurrentimport_set.all|length == 1 %}
<p> <p>
Cet organisateur est associé à l'import récurrent <a href="{{ object.recurrentimport_set.all.0.get_absolute_url }}">{{ object.recurrentimport_set.all.0 }}</a>. Cette organisation est associée à l'import récurrent <a href="{{ object.recurrentimport_set.all.0.get_absolute_url }}">{{ object.recurrentimport_set.all.0 }}</a>.
</p> </p>
{% endif %} {% endif %}
{% if object.recurrentimport_set.count > 1 %} {% if object.recurrentimport_set.count > 1 %}
<p>Cet organisateur est associé aux imports récurrents&nbsp;:</p> <p>Cette organisation est associée aux imports récurrents&nbsp;:</p>
<ul> <ul>
{% for ir in object.recurrentimport_set.all %} {% for ir in object.recurrentimport_set.all %}
<li> <li>

View File

@ -71,7 +71,7 @@
</li> </li>
{% if object.defaultOrganiser %} {% if object.defaultOrganiser %}
<li> <li>
<strong>Organisateur&nbsp;:</strong> <a href="{{ object.defaultOrganiser.get_absolute_url }}">{{ object.defaultOrganiser }}</a> <strong>organisation&nbsp;:</strong> <a href="{{ object.defaultOrganiser.get_absolute_url }}">{{ object.defaultOrganiser }}</a>
</li> </li>
{% endif %} {% endif %}
<li> <li>

View File

@ -155,7 +155,7 @@
<div> <div>
<a href="{% url 'view_places' %}">{% picto_from_name "map-pin" %} lieux</a> <a href="{% url 'view_places' %}">{% picto_from_name "map-pin" %} lieux</a>
<br> <br>
<a href="{% url 'view_organisations' %}">{% picto_from_name "users" %} organisateurs</a> <a href="{% url 'view_organisations' %}">{% picto_from_name "users" %} organisations</a>
<br> <br>
<a href="{% url 'view_all_tags' %}">{% picto_from_name "tag" %} étiquettes</a> <a href="{% url 'view_all_tags' %}">{% picto_from_name "tag" %} étiquettes</a>
<br> <br>

View File

@ -76,7 +76,7 @@
</li> </li>
{% if object.defaultOrganiser %} {% if object.defaultOrganiser %}
<li> <li>
<strong>Organisateur&nbsp;:</strong> <a href="{{ object.defaultOrganiser.get_absolute_url }}">{{ object.defaultOrganiser }}</a> <strong>Organisation&nbsp;:</strong> <a href="{{ object.defaultOrganiser.get_absolute_url }}">{{ object.defaultOrganiser }}</a>
</li> </li>
{% endif %} {% endif %}
<li> <li>

View File

@ -64,9 +64,9 @@
{% if organisations %} {% if organisations %}
<div class="message success"> <div class="message success">
{% if organisations.count > 1 %} {% if organisations.count > 1 %}
Retrouvez les événements correspondant aux organisateurs Retrouvez les événements correspondant aux organisations
{% else %} {% else %}
Retrouvez les événements correspondant à l'organisateur Retrouvez les événements correspondant à l'organisation
{% endif %} {% endif %}
{% for o in organisations %} {% for o in organisations %}
<a href="{{ o.get_absolute_url }}">{{ o }}</a> <a href="{{ o.get_absolute_url }}">{{ o }}</a>

View File

@ -37,7 +37,7 @@
</ul> </ul>
</nav> </nav>
{% if perms.agenda_culturel.change_place or perms.agenda_culturel.change_organisation %} {% if perms.agenda_culturel.change_place or perms.agenda_culturel.change_organisation %}
<h3>Lieux et organisateurs</h3> <h3>Lieux et organisations</h3>
<nav> <nav>
<ul> <ul>
{% if perms.agenda_culturel.change_place %} {% if perms.agenda_culturel.change_place %}
@ -49,7 +49,7 @@
{% if perms.agenda_culturel.change_organisation %} {% if perms.agenda_culturel.change_organisation %}
<li> <li>
<a {% if current == "organisations" %}class="selected"{% endif %} <a {% if current == "organisations" %}class="selected"{% endif %}
href="{% url 'view_organisations' %}">Liste des organisateurs</a> href="{% url 'view_organisations' %}">Liste des organisations</a>
</li> </li>
{% endif %} {% endif %}
{% if perms.agenda_culturel.change_place and perms.agenda_culturel.change_event %} {% if perms.agenda_culturel.change_place and perms.agenda_culturel.change_event %}

View File

@ -173,7 +173,7 @@
{% if event.exact_location and event.location %} {% if event.exact_location and event.location %}
<p class="footer"> <p class="footer">
{% picto_from_name "map-pin" %} {% picto_from_name "map-pin" %}
Adresse indiquée par l'organisateur&nbsp;: {{ event.location }} Adresse indiquée par l'organisation&nbsp;: {{ event.location }}
</p> </p>
{% endif %} {% endif %}
{% if event.has_recurrences %} {% if event.has_recurrences %}