decidim-proposals 0.28.5 → 0.29.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -18
- data/app/cells/decidim/proposals/cost_report_cell.rb +0 -3
- data/app/cells/decidim/proposals/highlighted_proposals_for_component/show.erb +11 -11
- data/app/cells/decidim/proposals/highlighted_proposals_for_component_cell.rb +1 -1
- data/app/cells/decidim/proposals/participatory_text_proposal/buttons.erb +1 -1
- data/app/cells/decidim/proposals/participatory_text_proposal_cell.rb +2 -3
- data/app/cells/decidim/proposals/proposal_cell.rb +2 -0
- data/app/cells/decidim/proposals/proposal_g/show.erb +23 -0
- data/app/cells/decidim/proposals/proposal_g_cell.rb +48 -0
- data/app/cells/decidim/proposals/proposal_l_cell.rb +18 -19
- data/app/cells/decidim/proposals/proposal_metadata_cell.rb +23 -15
- data/app/commands/decidim/proposals/admin/answer_proposal.rb +2 -1
- data/app/commands/decidim/proposals/admin/assign_proposals_to_valuator.rb +7 -5
- data/app/commands/decidim/proposals/admin/create_proposal.rb +4 -6
- data/app/commands/decidim/proposals/admin/create_proposal_state.rb +15 -0
- data/app/commands/decidim/proposals/admin/destroy_proposal_state.rb +10 -0
- data/app/commands/decidim/proposals/admin/import_proposals.rb +10 -2
- data/app/commands/decidim/proposals/admin/notify_proposal_answer.rb +4 -21
- data/app/commands/decidim/proposals/admin/unassign_proposals_from_valuator.rb +6 -4
- data/app/commands/decidim/proposals/admin/update_proposal_state.rb +13 -0
- data/app/commands/decidim/proposals/create_proposal.rb +21 -2
- data/app/commands/decidim/proposals/update_proposal.rb +2 -2
- data/app/commands/decidim/proposals/vote_proposal.rb +1 -1
- data/app/commands/decidim/proposals/withdraw_proposal.rb +3 -7
- data/app/controllers/concerns/decidim/proposals/admin/filterable.rb +10 -22
- data/app/controllers/decidim/proposals/admin/proposal_states_controller.rb +86 -0
- data/app/controllers/decidim/proposals/admin/proposals_controller.rb +4 -0
- data/app/controllers/decidim/proposals/admin/valuation_assignments_controller.rb +8 -11
- data/app/controllers/decidim/proposals/proposals_controller.rb +38 -39
- data/app/events/decidim/proposals/proposal_state_changed_event.rb +37 -0
- data/app/forms/decidim/proposals/admin/proposal_answer_form.rb +8 -4
- data/app/forms/decidim/proposals/admin/proposal_form.rb +1 -1
- data/app/forms/decidim/proposals/admin/proposal_state_form.rb +22 -0
- data/app/forms/decidim/proposals/admin/proposals_fork_form.rb +1 -1
- data/app/forms/decidim/proposals/admin/proposals_import_form.rb +1 -1
- data/app/forms/decidim/proposals/admin/valuation_assignment_form.rb +12 -14
- data/app/forms/decidim/proposals/proposal_form.rb +25 -4
- data/app/forms/decidim/proposals/reject_access_to_collaborative_draft_form.rb +1 -1
- data/app/forms/decidim/proposals/request_access_to_collaborative_draft_form.rb +1 -1
- data/app/helpers/decidim/proposals/admin/proposal_bulk_actions_helper.rb +7 -17
- data/app/helpers/decidim/proposals/admin/proposals_helper.rb +13 -89
- data/app/helpers/decidim/proposals/application_helper.rb +16 -10
- data/app/helpers/decidim/proposals/map_helper.rb +1 -1
- data/app/helpers/decidim/proposals/proposal_cells_helper.rb +6 -2
- data/app/helpers/decidim/proposals/proposal_votes_helper.rb +3 -3
- data/app/helpers/decidim/proposals/proposal_wizard_helper.rb +5 -8
- data/app/helpers/decidim/proposals/proposals_helper.rb +18 -24
- data/app/models/decidim/proposals/proposal.rb +83 -29
- data/app/models/decidim/proposals/proposal_state.rb +58 -0
- data/app/packs/documents/decidim/proposals/participatory_texts/participatory_text.md +1 -3
- data/app/packs/images/decidim/proposals/proposal-placeholder-card-g.svg +15 -0
- data/app/packs/src/decidim/proposals/add_proposal.js +2 -0
- data/app/packs/src/decidim/proposals/admin/proposals.js +43 -8
- data/app/packs/stylesheets/decidim/proposals/proposals.scss +39 -1
- data/app/permissions/decidim/proposals/admin/permissions.rb +16 -4
- data/app/permissions/decidim/proposals/permissions.rb +3 -4
- data/app/presenters/decidim/proposals/admin_log/proposal_state_presenter.rb +21 -0
- data/app/presenters/decidim/proposals/proposal_presenter.rb +12 -3
- data/app/queries/decidim/proposals/metrics/endorsements_metric_manage.rb +1 -1
- data/app/queries/decidim/proposals/metrics/proposal_followers_metric_measure.rb +1 -1
- data/app/queries/decidim/proposals/metrics/proposal_participants_metric_measure.rb +4 -4
- data/app/queries/decidim/proposals/metrics/proposals_metric_manage.rb +1 -1
- data/app/queries/decidim/proposals/metrics/votes_metric_manage.rb +1 -1
- data/app/services/decidim/proposals/diff_renderer.rb +1 -3
- data/app/services/decidim/proposals/proposal_builder.rb +1 -1
- data/app/views/decidim/proposals/admin/imports/_proposals_fields.html.erb +1 -1
- data/app/views/decidim/proposals/admin/participatory_texts/index.html.erb +3 -2
- data/app/views/decidim/proposals/admin/proposal_answers/_form.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposal_notes/_proposal_notes.html.erb +3 -3
- data/app/views/decidim/proposals/admin/proposal_states/_form.html.erb +67 -0
- data/app/views/decidim/proposals/admin/proposal_states/edit.html.erb +18 -0
- data/app/views/decidim/proposals/admin/proposal_states/index.html.erb +50 -0
- data/app/views/decidim/proposals/admin/proposal_states/new.html.erb +18 -0
- data/app/views/decidim/proposals/admin/proposals/_bulk-actions.html.erb +6 -12
- data/app/views/decidim/proposals/admin/proposals/_form.html.erb +6 -6
- data/app/views/decidim/proposals/admin/proposals/_proposal-tr.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_assign_to_valuator.html.erb +11 -7
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_dropdown.html.erb +7 -5
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_merge.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_publish_answers.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_recategorize.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_scope-change.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_split.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_unassign_from_valuator.html.erb +11 -7
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_valuators_picker.html.erb +12 -0
- data/app/views/decidim/proposals/admin/proposals/index.html.erb +11 -7
- data/app/views/decidim/proposals/admin/proposals/publish_answers.js.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/show.html.erb +3 -2
- data/app/views/decidim/proposals/admin/proposals/update_attribute.js.erb +3 -3
- data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +12 -5
- data/app/views/decidim/proposals/proposals/_proposal.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/_proposal_aside.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/_proposals.html.erb +9 -3
- data/app/views/decidim/proposals/proposals/_vote_button.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/_voting_rules.html.erb +3 -3
- data/app/views/decidim/proposals/proposals/_wizard_header.html.erb +0 -1
- data/app/views/decidim/proposals/proposals/index.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/index.js.erb +0 -12
- data/app/views/decidim/proposals/proposals/new.html.erb +2 -7
- data/app/views/decidim/proposals/proposals/participatory_texts/_proposal_vote_button.html.erb +4 -4
- data/app/views/decidim/proposals/proposals/participatory_texts/_proposal_votes_count.html.erb +8 -8
- data/app/views/decidim/proposals/proposals/preview.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/show.html.erb +3 -3
- data/config/locales/ar.yml +9 -115
- data/config/locales/bg.yml +117 -111
- data/config/locales/ca.yml +86 -83
- data/config/locales/cs.yml +65 -127
- data/config/locales/de.yml +128 -125
- data/config/locales/el.yml +8 -121
- data/config/locales/en.yml +110 -107
- data/config/locales/es-MX.yml +85 -82
- data/config/locales/es-PY.yml +88 -85
- data/config/locales/es.yml +83 -80
- data/config/locales/eu.yml +166 -170
- data/config/locales/fi-plain.yml +90 -87
- data/config/locales/fi.yml +139 -136
- data/config/locales/fr-CA.yml +92 -87
- data/config/locales/fr.yml +83 -78
- data/config/locales/ga-IE.yml +1 -27
- data/config/locales/gl.yml +11 -107
- data/config/locales/he-IL.yml +0 -17
- data/config/locales/hu.yml +18 -90
- data/config/locales/id-ID.yml +6 -106
- data/config/locales/is-IS.yml +8 -33
- data/config/locales/it.yml +14 -103
- data/config/locales/ja.yml +117 -112
- data/config/locales/lb.yml +1 -0
- data/config/locales/lt.yml +6 -123
- data/config/locales/lv.yml +4 -101
- data/config/locales/nl.yml +11 -102
- data/config/locales/no.yml +7 -108
- data/config/locales/pl.yml +110 -115
- data/config/locales/pt-BR.yml +10 -84
- data/config/locales/pt.yml +9 -109
- data/config/locales/ro-RO.yml +15 -117
- data/config/locales/ru.yml +9 -53
- data/config/locales/sk.yml +5 -109
- data/config/locales/sl.yml +4 -0
- data/config/locales/sv.yml +142 -337
- data/config/locales/tr-TR.yml +64 -108
- data/config/locales/uk.yml +11 -55
- data/config/locales/zh-CN.yml +5 -100
- data/config/locales/zh-TW.yml +8 -119
- data/db/migrate/20240110203500_add_withdrawn_at_field_to_proposals.rb +27 -0
- data/db/migrate/20240110203501_create_decidim_proposals_proposal_state.rb +14 -0
- data/db/migrate/20240110203502_add_state_id_to_decidim_proposals_proposals.rb +13 -0
- data/db/migrate/20240110203503_remove_state_from_decidim_proposals_proposals.rb +11 -0
- data/db/migrate/20240110203504_create_default_proposal_states.rb +31 -0
- data/db/migrate/20240209092404_change_color_fields_on_proposals_states.rb +54 -0
- data/decidim-proposals.gemspec +3 -3
- data/lib/decidim/api/proposal_type.rb +4 -13
- data/lib/decidim/api/proposals_type.rb +3 -1
- data/lib/decidim/proposals/admin_engine.rb +8 -0
- data/lib/decidim/proposals/admin_filter.rb +37 -0
- data/lib/decidim/proposals/component.rb +8 -5
- data/lib/decidim/proposals/engine.rb +1 -15
- data/lib/decidim/proposals/import/proposal_answer_creator.rb +6 -6
- data/lib/decidim/proposals/import/proposal_creator.rb +1 -1
- data/lib/decidim/proposals/markdown_to_proposals.rb +2 -8
- data/lib/decidim/proposals/proposal_serializer.rb +8 -9
- data/lib/decidim/proposals/seeds.rb +60 -51
- data/lib/decidim/proposals/test/factories.rb +69 -14
- data/lib/decidim/proposals/version.rb +1 -1
- data/lib/decidim/proposals.rb +84 -12
- data/lib/tasks/proposals/upgrade/{decdim_proposals_upgrade_tasks.rake → decidim_proposals_upgrade_tasks.rake} +0 -13
- metadata +51 -40
- data/app/events/decidim/proposals/accepted_proposal_event.rb +0 -17
- data/app/events/decidim/proposals/evaluating_proposal_event.rb +0 -11
- data/app/events/decidim/proposals/rejected_proposal_event.rb +0 -17
- data/app/forms/decidim/proposals/proposal_wizard_create_step_form.rb +0 -44
- data/app/queries/decidim/proposals/similar_proposals.rb +0 -67
- data/app/services/decidim/proposals/collaborative_draft_diff_renderer.rb +0 -22
- data/app/views/decidim/proposals/proposals/_endorsements_card_row.html.erb +0 -0
- data/app/views/decidim/proposals/proposals/_proposal_badge.html.erb +0 -3
- data/app/views/decidim/proposals/proposals/compare.html.erb +0 -24
- data/app/views/decidim/proposals/proposals/complete.html.erb +0 -31
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -100
data/config/locales/fr-CA.yml
CHANGED
@@ -31,6 +31,19 @@ fr-CA:
|
|
31
31
|
cost: Coût
|
32
32
|
cost_report: Rapport de coût
|
33
33
|
execution_period: Période d'exécution
|
34
|
+
proposal_state:
|
35
|
+
announcement_title: En-tête de réponse
|
36
|
+
bg_color: Couleur d'arrière-plan
|
37
|
+
colors:
|
38
|
+
blue: Bleu
|
39
|
+
gray: Gris
|
40
|
+
green: Vert
|
41
|
+
orange: Orange
|
42
|
+
pink: Rose
|
43
|
+
purple: Violet
|
44
|
+
red: Rouge
|
45
|
+
yellow: Jaune
|
46
|
+
text_color: Couleur du texte
|
34
47
|
proposals_copy:
|
35
48
|
copy_proposals: Je comprends que cela importera toutes les propositions de la fonctionnalité sélectionnée dans la fonctionnalité actuelle et que cette action ne peut être annulée.
|
36
49
|
origin_component_id: Fonctionnalité dont on veut copier les propositions
|
@@ -62,22 +75,19 @@ fr-CA:
|
|
62
75
|
attributes:
|
63
76
|
base:
|
64
77
|
not_official: Non officiels
|
65
|
-
|
78
|
+
voted: A reçu des votes ou des soutiens
|
66
79
|
proposals_split:
|
67
80
|
attributes:
|
68
81
|
base:
|
69
82
|
not_official: Non officiels
|
70
|
-
|
83
|
+
voted: A reçu des votes ou des soutiens
|
71
84
|
models:
|
72
|
-
decidim/proposals/accepted_proposal_event: Proposition acceptée
|
73
85
|
decidim/proposals/admin/update_proposal_category_event: Catégorie de proposition modifiée
|
74
86
|
decidim/proposals/admin/update_proposal_scope_event: La portée de la proposition a été modifiée
|
75
87
|
decidim/proposals/creation_enabled_event: Autoriser la création de nouvelles propositions
|
76
88
|
decidim/proposals/endorsing_enabled_event: Activer le module de soutiens
|
77
|
-
decidim/proposals/evaluating_proposal_event: Proposition en cours d'évaluation
|
78
89
|
decidim/proposals/proposal_mentioned_event: Proposition mentionnée
|
79
90
|
decidim/proposals/publish_proposal_event: Proposition publiée
|
80
|
-
decidim/proposals/rejected_proposal_event: Proposition non retenue
|
81
91
|
decidim/proposals/voting_enabled_event: Activer le module de vote simple
|
82
92
|
activerecord:
|
83
93
|
models:
|
@@ -104,8 +114,10 @@ fr-CA:
|
|
104
114
|
values:
|
105
115
|
'false': Propositions
|
106
116
|
'true': Amendements
|
117
|
+
proposal_state_id_eq:
|
118
|
+
label: État
|
107
119
|
scope_id_eq:
|
108
|
-
label:
|
120
|
+
label: Secteur
|
109
121
|
state_eq:
|
110
122
|
label: État
|
111
123
|
values:
|
@@ -143,7 +155,8 @@ fr-CA:
|
|
143
155
|
amendments_wizard_help_text: Texte d'aide de l'assistant
|
144
156
|
announcement: Annonce
|
145
157
|
attachments_allowed: Autoriser les pièces jointes
|
146
|
-
|
158
|
+
attachments_allowed_help: En activant cette option, les propositions seront en mode grille par défaut, et la première image liée à la proposition apparaîtra sur la carte.
|
159
|
+
can_accumulate_votes_beyond_threshold: Peut accumuler des votes au-delà du seuil
|
147
160
|
collaborative_drafts_enabled: Brouillons collaboratifs activés
|
148
161
|
comments_enabled: Activer le module de commentaire
|
149
162
|
comments_max_length: Longueur maximum (en caractères) des commentaires (laisser 0 pour la valeur par défaut)
|
@@ -154,7 +167,7 @@ fr-CA:
|
|
154
167
|
most_commented: Les plus commentées
|
155
168
|
most_endorsed: Les plus approuvées
|
156
169
|
most_followed: Les plus suivies
|
157
|
-
most_voted: Les plus
|
170
|
+
most_voted: Les plus votées
|
158
171
|
random: Aléatoire
|
159
172
|
recent: Les plus récents
|
160
173
|
with_more_authors: Avec le plus d'auteurs
|
@@ -175,11 +188,9 @@ fr-CA:
|
|
175
188
|
proposal_length: Nombre maximum de caractères du corps de la proposition
|
176
189
|
proposal_limit: Limite de proposition par utilisateur
|
177
190
|
proposal_wizard_step_1_help_text: Texte d'aide à l'étape "Créer" de la création de proposition
|
178
|
-
proposal_wizard_step_2_help_text: Texte d'aide à l'étape "
|
179
|
-
proposal_wizard_step_3_help_text: Texte d'aide à l'étape "Compléter" de la création de proposition
|
180
|
-
proposal_wizard_step_4_help_text: Texte d'aide à l'étape "Publier" de la création de proposition
|
191
|
+
proposal_wizard_step_2_help_text: Texte d'aide à l'étape "Publier" de la création de proposition
|
181
192
|
resources_permissions_enabled: Les autorisations d'actions peuvent être définies pour chaque proposition
|
182
|
-
scope_id:
|
193
|
+
scope_id: Secteur
|
183
194
|
scopes_enabled: Secteurs activés
|
184
195
|
threshold_per_proposal: Seuil par proposition
|
185
196
|
vote_limit: Limite de votes par utilisateur
|
@@ -218,7 +229,7 @@ fr-CA:
|
|
218
229
|
publish_answers_immediately: Publier immédiatement les réponses à la proposition
|
219
230
|
publish_answers_immediately_help_html: "Notez que si vous répondez à une proposition sans que cette case soit activée, vous devrez publier la réponse manuellement en sélectionnant la proposition et en utilisant l'action de publication.\nPour plus d'informations sur le fonctionnement de cette action, voir <a href=\"https://docs.decidim.org/en/admin/components/proposals/answers#_publication\" target=\"_blank\">la page de documentation sur les réponses aux propositions</a>."
|
220
231
|
suggested_hashtags: Hashtags suggérés aux utilisateurs pour de nouvelles propositions
|
221
|
-
votes_blocked:
|
232
|
+
votes_blocked: Votes bloqués
|
222
233
|
votes_enabled: Activer le module de vote simple
|
223
234
|
votes_hidden: Cacher les votes (si le module de votes est activé, le décompte des votes sera caché)
|
224
235
|
events:
|
@@ -269,28 +280,6 @@ fr-CA:
|
|
269
280
|
email_outro: Vous avez reçu cette notification car vous suivez %{participatory_space_title}. Vous pouvez arrêter de recevoir des notifications en cliquant sur ce dernier lien.
|
270
281
|
email_subject: Vous pouvez désormais soutenir des propositions dans %{participatory_space_title}
|
271
282
|
notification_title: Vous pouvez maintenant commencer à <a href="%{resource_path}">soutenir les propositions</a> dans <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
272
|
-
proposal_accepted:
|
273
|
-
affected_user:
|
274
|
-
email_intro: 'Votre proposition "%{resource_title}" a été acceptée. Vous pouvez lire la réponse sur cette page:'
|
275
|
-
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de "%{resource_title}".
|
276
|
-
email_subject: Votre proposition a été acceptée
|
277
|
-
notification_title: Votre proposition <a href="%{resource_path}">%{resource_title}</a> a été acceptée.
|
278
|
-
follower:
|
279
|
-
email_intro: 'La proposition "%{resource_title}" a été acceptée. Vous pouvez lire la réponse sur cette page :'
|
280
|
-
email_outro: Vous recevez cette notification car vous suivez « %{resource_title} ». Vous pouvez annuler ce suivi en allant sur le lien précédent.
|
281
|
-
email_subject: Une proposition que vous suivez a été acceptée
|
282
|
-
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> a été acceptée.
|
283
|
-
proposal_evaluating:
|
284
|
-
affected_user:
|
285
|
-
email_intro: 'Votre proposition "%{resource_title}" est en cours d''évaluation. Vous pouvez rechercher une réponse sur cette page:'
|
286
|
-
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de "%{resource_title}".
|
287
|
-
email_subject: Votre proposition est en cours d'évaluation
|
288
|
-
notification_title: Votre proposition <a href="%{resource_path}">%{resource_title}</a> est en cours d'évaluation.
|
289
|
-
follower:
|
290
|
-
email_intro: 'La proposition "%{resource_title}" est en cours d''évaluation. Vous pouvez consulter cette page pour voir si une réponse a été formulée :'
|
291
|
-
email_outro: Vous recevez cette notification car vous suivez « %{resource_title} ». Vous pouvez annuler ce suivi en allant sur le lien précédent.
|
292
|
-
email_subject: Une proposition que vous suivez est en cours d'évaluation
|
293
|
-
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> est en cours d'évaluation.
|
294
283
|
proposal_mentioned:
|
295
284
|
email_intro: Votre proposition "%{mentioned_proposal_title}" a été mentionnée <a href="%{resource_url}">dans cet espace</a> dans les commentaires.
|
296
285
|
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de "%{resource_title}".
|
@@ -307,29 +296,31 @@ fr-CA:
|
|
307
296
|
email_subject: Nouvelle proposition "%{resource_title}" ajoutée à %{participatory_space_title}
|
308
297
|
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> a été ajoutée à %{participatory_space_title} par %{author}.
|
309
298
|
notification_title_official: La proposition officielle <a href="%{resource_path}">%{resource_title}</a> a été ajoutée à %{participatory_space_title}.
|
310
|
-
|
299
|
+
proposal_state_changed:
|
311
300
|
affected_user:
|
312
|
-
email_intro: '
|
313
|
-
email_outro: Vous avez reçu cette notification parce que vous êtes
|
314
|
-
email_subject: Votre proposition a
|
315
|
-
notification_title:
|
301
|
+
email_intro: 'La proposition "%{resource_title}" est passée à l''état "%{state}". Vous pouvez lire la réponse sur cette page :'
|
302
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes un(e) auteur(e) de "%{resource_title}".
|
303
|
+
email_subject: Votre proposition a changé d'état (%{state})
|
304
|
+
notification_title: L'état de votre proposition <a href="%{resource_path}">%{resource_title}</a> est passé à %{state}.
|
316
305
|
follower:
|
317
|
-
email_intro: 'La proposition "%{resource_title}"
|
306
|
+
email_intro: 'La proposition "%{resource_title}" est passée à l''état "%{state}". Vous pouvez lire la réponse sur cette page :'
|
318
307
|
email_outro: Vous recevez cette notification car vous suivez « %{resource_title} ». Vous pouvez annuler ce suivi en allant sur le lien précédent.
|
319
|
-
email_subject: Une proposition que vous suivez a
|
320
|
-
notification_title:
|
308
|
+
email_subject: Une proposition que vous suivez a changé d'état (%{state})
|
309
|
+
notification_title: L'état de la proposition <a href="%{resource_path}">%{resource_title}</a> est passé à "%{state}".
|
321
310
|
proposal_update_category:
|
322
311
|
email_intro: 'Un administrateur a mis à jour la catégorie de votre proposition "%{resource_title}". Vous pouvez y accéder ici :'
|
312
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de la proposition.
|
323
313
|
email_subject: La catégorie de la proposition %{resource_title} a été mise à jour
|
324
314
|
notification_title: La catégorie de la proposition <a href="%{resource_path}">%{resource_title}</a> a été mise à jour par un administrateur.
|
325
315
|
proposal_update_scope:
|
326
316
|
email_intro: 'Un administrateur a mis à jour la portée de votre proposition "%{resource_title}", regardez-la dans cette page :'
|
317
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de la proposition.
|
327
318
|
email_subject: La portée de la proposition %{resource_title} a été mise à jour
|
328
319
|
notification_title: La portée de la proposition <a href="%{resource_path}">%{resource_title}</a> a été mise à jour par un administrateur.
|
329
320
|
voting_enabled:
|
330
321
|
email_intro: 'Vous pouvez soutenir les propositions de %{participatory_space_title} ! Participez ici :'
|
331
322
|
email_outro: Vous avez reçu cette notification car vous suivez %{participatory_space_title}. Vous pouvez arrêter de recevoir des notifications en suivant le lien précédent.
|
332
|
-
email_subject: Vous pouvez désormais voter les propositions dans %{participatory_space_title}
|
323
|
+
email_subject: Vous pouvez désormais voter pour les propositions dans %{participatory_space_title}
|
333
324
|
notification_title: Vous pouvez maintenant commencer <a href="%{resource_path}">à voter pour les propositions</a> de <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
334
325
|
gamification:
|
335
326
|
badges:
|
@@ -347,14 +338,14 @@ fr-CA:
|
|
347
338
|
proposal_votes:
|
348
339
|
conditions:
|
349
340
|
- Parcourir et passer du temps à lire les propositions d'autres personnes
|
350
|
-
-
|
351
|
-
description: Ce badge est attribué lorsque vous
|
352
|
-
description_another: Cet utilisateur a
|
353
|
-
description_own: Vous avez
|
354
|
-
name:
|
355
|
-
next_level_in:
|
341
|
+
- Votez pour les propositions que vous aimez ou trouvez intéressantes
|
342
|
+
description: Ce badge est attribué lorsque vous votez pour les propositions d'autres personnes.
|
343
|
+
description_another: Cet utilisateur a voté pour %{score} propositions.
|
344
|
+
description_own: Vous avez voté pour %{score} propositions.
|
345
|
+
name: Votes de proposition
|
346
|
+
next_level_in: Votez pour %{score} proposition(s) supplémentaire(s) pour atteindre le niveau supérieur !
|
356
347
|
unearned_another: Cet utilisateur n'a voté pour aucune proposition pour le moment.
|
357
|
-
unearned_own: Vous n'avez
|
348
|
+
unearned_own: Vous n'avez voté pour aucune proposition pour le moment.
|
358
349
|
proposals:
|
359
350
|
conditions:
|
360
351
|
- Choisissez l'espace de participation qui vous intéresse avec la soumission des propositions activée
|
@@ -380,19 +371,23 @@ fr-CA:
|
|
380
371
|
object: propositions
|
381
372
|
title: Propositions
|
382
373
|
votes:
|
383
|
-
description: Nombre de votes
|
374
|
+
description: Nombre de votes sur des propositions
|
384
375
|
object: votes
|
385
376
|
title: Votes
|
386
377
|
participatory_spaces:
|
387
378
|
highlighted_proposals:
|
388
379
|
last: Dernières propositions
|
389
|
-
see_all:
|
380
|
+
see_all: Tout voir (%{count})
|
390
381
|
proposals:
|
391
382
|
actions:
|
392
383
|
answer_proposal: Répondre à la proposition
|
384
|
+
delete_proposal_state_confirm: Etes-vous sûr(e) de vouloir supprimer cet état?
|
385
|
+
destroy: Supprimer l'état
|
393
386
|
edit_proposal: Modifier la proposition
|
387
|
+
edit_proposal_state: Modifier l'état
|
394
388
|
import: Importer depuis une autre fonctionnalité
|
395
389
|
new: Nouvelle proposition
|
390
|
+
new_proposal_state: Nouvel état
|
396
391
|
participatory_texts: Textes participatifs
|
397
392
|
show: Afficher la proposition
|
398
393
|
title: Actions
|
@@ -470,11 +465,7 @@ fr-CA:
|
|
470
465
|
success: Texte participatif mis à jour avec succès.
|
471
466
|
proposal_answers:
|
472
467
|
form:
|
473
|
-
accepted: Retenue
|
474
468
|
answer_proposal: Répondre
|
475
|
-
evaluating: En cours d'évaluation
|
476
|
-
not_answered: En attente de réponse
|
477
|
-
rejected: Non retenue
|
478
469
|
title: Réponse à la proposition %{title}
|
479
470
|
proposal_notes:
|
480
471
|
create:
|
@@ -485,6 +476,25 @@ fr-CA:
|
|
485
476
|
submit: Soumettre
|
486
477
|
leave_your_note: Laisser une remarque
|
487
478
|
title: Notes privées
|
479
|
+
proposal_states:
|
480
|
+
create:
|
481
|
+
error: Erreur lors de la création de l'état
|
482
|
+
success: Etat créé avec succès
|
483
|
+
destroy:
|
484
|
+
success: Etat supprimé avec succès
|
485
|
+
edit:
|
486
|
+
title: Modifier l'état
|
487
|
+
update: Mettre à jour
|
488
|
+
form:
|
489
|
+
preview: Aperçu
|
490
|
+
index:
|
491
|
+
title: États
|
492
|
+
new:
|
493
|
+
create: Créer
|
494
|
+
title: Nouvel état
|
495
|
+
update:
|
496
|
+
error: Erreur lors de la mise à jour de l'état
|
497
|
+
success: Etat mis à jour avec succès
|
488
498
|
proposals:
|
489
499
|
answer:
|
490
500
|
invalid: Il y a eu un problème lors de la réponse à cette proposition.
|
@@ -513,9 +523,11 @@ fr-CA:
|
|
513
523
|
publish: Publier
|
514
524
|
publish_answers: Publier les réponses
|
515
525
|
select_component: Sélectionnez un composant
|
526
|
+
select_valuators: Sélectionnez un ou plusieurs évaluateurs
|
516
527
|
selected: choisi
|
517
528
|
split: Fractionner la proposition
|
518
529
|
split_button: Scinder
|
530
|
+
statuses: États
|
519
531
|
title: Propositions
|
520
532
|
unassign_from_valuator: Retirer de l'évaluateur
|
521
533
|
unassign_from_valuator_button: Ne plus assigner
|
@@ -606,11 +618,8 @@ fr-CA:
|
|
606
618
|
participants: Participants
|
607
619
|
user_groups: Groupes d'utilisateurs
|
608
620
|
filter_state_values:
|
609
|
-
accepted: Retenue
|
610
621
|
all: Tout
|
611
|
-
evaluating: En cours d'évaluation
|
612
622
|
not_answered: En attente de réponse
|
613
|
-
rejected: Non retenue
|
614
623
|
filter_type_values:
|
615
624
|
all: Tout
|
616
625
|
amendments: Amendements
|
@@ -737,12 +746,15 @@ fr-CA:
|
|
737
746
|
official_proposal: Proposition officielle
|
738
747
|
published_answer: Réponse publiée
|
739
748
|
published_at: Publiée à
|
740
|
-
scope:
|
749
|
+
scope: Périmètre d'application
|
741
750
|
state: État
|
742
751
|
title: Titre
|
743
752
|
valuator: Évaluateur
|
744
753
|
valuators: Évaluateurs
|
745
754
|
votes: Votes
|
755
|
+
proposal_state:
|
756
|
+
css_class: Classe CSS
|
757
|
+
title: État
|
746
758
|
new:
|
747
759
|
limit_reached: Vous ne pouvez plus créer de nouvelles propositions car vous avez atteint la limite autorisée.
|
748
760
|
participatory_text_proposal:
|
@@ -752,15 +764,8 @@ fr-CA:
|
|
752
764
|
comment: Commentaire
|
753
765
|
proposal_votes:
|
754
766
|
create:
|
755
|
-
error:
|
767
|
+
error: Il y a eu un problème lors du vote de la proposition.
|
756
768
|
proposals:
|
757
|
-
compare:
|
758
|
-
continue: Continuer
|
759
|
-
no_similars_found: Bien joué ! Aucune proposition similaire n'a été trouvée
|
760
|
-
title: Propositions similaires
|
761
|
-
complete:
|
762
|
-
send: Envoyer
|
763
|
-
title: Complétez votre proposition
|
764
769
|
dynamic_map_instructions:
|
765
770
|
description: Les coordonnées seront mises à jour en cliquant sur le bouton 'Aperçu'. Cependant, l'adresse ne change pas.
|
766
771
|
instructions: Vous pouvez déplacer le point sur la carte.
|
@@ -776,7 +781,9 @@ fr-CA:
|
|
776
781
|
discard: Supprimer ce brouillon
|
777
782
|
discard_confirmation: Êtes-vous sûr de vouloir supprimer le brouillon de votre proposition ?
|
778
783
|
send: Aperçu
|
779
|
-
title: Modifier le brouillon de
|
784
|
+
title: Modifier le brouillon de votre proposition
|
785
|
+
edit_form_fields:
|
786
|
+
marker_added: Marqueur ajouté à la carte.
|
780
787
|
filters:
|
781
788
|
activity: Mon activité
|
782
789
|
all: Tout
|
@@ -796,6 +803,8 @@ fr-CA:
|
|
796
803
|
count:
|
797
804
|
one: "%{count} proposition"
|
798
805
|
other: "%{count} propositions"
|
806
|
+
grid_mode: Vue grille
|
807
|
+
list_mode: Vue liste
|
799
808
|
new_proposal: Nouvelle proposition
|
800
809
|
see_all: Voir toutes les propositions
|
801
810
|
see_all_withdrawn: Voir toutes les propositions retirées
|
@@ -846,7 +855,7 @@ fr-CA:
|
|
846
855
|
proposal_accepted_reason: 'Cette proposition a été retenue parce que :'
|
847
856
|
proposal_in_evaluation_reason: Cette proposition est en cours d'évaluation
|
848
857
|
proposal_rejected_reason: 'Cette proposition n''a pas été retenue parce que :'
|
849
|
-
withdraw_btn_hint: Si vous changez d'avis et tant que votre proposition n'a pas reçu de vote,
|
858
|
+
withdraw_btn_hint: Si vous changez d'avis et tant que votre proposition n'a pas reçu de vote, vous pouvez toujours la retirer. Cette dernière ne sera pas supprimée, mais elle apparaîtra dans la liste des propositions retirées.
|
850
859
|
withdraw_confirmation_html: Êtes-vous sûr de vouloir retirer cette proposition ?<br><br><strong>Cette action ne peut pas être annulée !</strong>
|
851
860
|
withdraw_proposal: Retirer la proposition
|
852
861
|
update:
|
@@ -856,39 +865,35 @@ fr-CA:
|
|
856
865
|
already_voted_hover: Retirer le vote
|
857
866
|
maximum_votes_reached: Nombre maximum de votes atteint
|
858
867
|
no_votes_remaining: Aucun vote restant
|
859
|
-
vote:
|
868
|
+
vote: Soutenir
|
860
869
|
votes_blocked: Votes désactivés
|
861
870
|
votes_count:
|
862
871
|
count:
|
863
|
-
one:
|
864
|
-
other:
|
872
|
+
one: Vote
|
873
|
+
other: Votes
|
865
874
|
voting_rules:
|
866
|
-
|
867
|
-
description: Chaque proposition
|
875
|
+
can_accumulate_votes_beyond_threshold:
|
876
|
+
description: Chaque proposition peut accumuler plus de %{limit} votes
|
868
877
|
minimum_votes_per_user:
|
869
878
|
description: Vous devez répartir un minimum de %{votes} voix entre différentes propositions.
|
870
879
|
given_enough_votes: Vous avez attribué suffisamment de votes.
|
871
|
-
|
880
|
+
votes_remaining: Vous devez voter pour %{remaining_votes} propositions supplémentaires pour que vos votes soient pris en compte.
|
872
881
|
proposal_limit:
|
873
882
|
description: Vous pouvez créer jusqu'à %{limit} propositions.
|
874
883
|
threshold_per_proposal:
|
875
884
|
description: Pour être acceptées, les propositions doivent atteindre %{limit} votes.
|
876
|
-
title: '
|
885
|
+
title: 'Les votes sont soumis aux règles suivantes :'
|
877
886
|
vote_limit:
|
878
887
|
description: Vous pouvez voter pour %{limit} propositions au maximum.
|
879
|
-
votes:
|
888
|
+
votes: '%{number} votes restants'
|
880
889
|
wizard_aside:
|
881
890
|
back: Retour
|
882
891
|
back_from_step_1: Retour aux propositions
|
883
|
-
back_from_step_2: Retour
|
884
|
-
back_from_step_3: Retour à la comparaison des propositions
|
885
|
-
back_from_step_4: Retour à l'édition du brouillon
|
892
|
+
back_from_step_2: Retour à l'édition
|
886
893
|
wizard_steps:
|
887
894
|
current_step: Étape actuelle
|
888
895
|
step_1: Créer une proposition
|
889
|
-
step_2:
|
890
|
-
step_3: Compléter votre proposition
|
891
|
-
step_4: Publier la proposition
|
896
|
+
step_2: Publier votre proposition
|
892
897
|
title: Étapes de création de proposition
|
893
898
|
proposals_picker:
|
894
899
|
choose_proposals: Choisir les propositions
|
@@ -909,7 +914,7 @@ fr-CA:
|
|
909
914
|
title: Versions
|
910
915
|
withdraw:
|
911
916
|
errors:
|
912
|
-
|
917
|
+
has_votes: Cette proposition ne peut pas être retirée, car elle a déjà reçu des votes.
|
913
918
|
resource_links:
|
914
919
|
copied_from_component:
|
915
920
|
proposal_proposal: Propositions associées
|
@@ -921,4 +926,4 @@ fr-CA:
|
|
921
926
|
statistics:
|
922
927
|
proposals_accepted: Propositions acceptées
|
923
928
|
proposals_count: Propositions
|
924
|
-
|
929
|
+
votes_count: Votes
|