Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions pytition/locale/fr_FR/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: Pytition\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-08-15 21:12+0200\n"
"PO-Revision-Date: 2024-03-30 22:20+0200\n"
"Last-Translator: Yann Sionneau <[email protected]>\n"
"PO-Revision-Date: 2024-03-31 22:24+0200\n"
"Last-Translator: Fares Sellaouti <[email protected]>\n"
"Language-Team: French (France) <https://weblate.framasoft.org/projects/"
"pytition/pytitions/fr_FR/>\n"
"Language: fr_FR\n"
Expand Down Expand Up @@ -2105,5 +2105,25 @@ msgstr "Italien"
msgid "Occitan"
msgstr "Occitan"

#: pytition/petition/templates/petition/edit_petition.html:19
msgid "Publication date"
msgstr "Date de publication"

#: pytition/petition/templates/petition/edit_petition.html:19
msgid "Show publication date"
msgstr "Afficher date de publication"

#: pytition/petition/templates/petition/edit_petition.html:19
msgid "Target"
msgstr "Objectif"

#: pytition/petition/templates/petition/edit_petition.html:19
msgid "Side text"
msgstr "Texte latéral"

#: pytition/petition/templates/petition/edit_petition.html:19
msgid "Sign form footer"
msgstr "Pied de formulaire de signature"

#~ msgid "View all petitions"
#~ msgstr "Voir toutes les pétitions"
3 changes: 2 additions & 1 deletion pytition/petition/templates/petition/bs4_form.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{% load i18n %}
{% load widget_tweaks %}
{% load petition_extras %}

Expand All @@ -15,7 +16,7 @@

{% for field in form.visible_fields %}
<div class="form-group row">
<label for="{{ field.auto_id }}" class="col-sm-12 col-md-3 col-lg-2 col-form-label">{{ field.label }}</label>
<label for="{{ field.auto_id }}" class="col-sm-12 col-md-3 col-lg-2 col-form-label">{% trans field.label %}</label>

{% if form.is_bound %}
{% if field.errors %}
Expand Down