decidim-proposals 0.10.1 → 0.11.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/app/assets/javascripts/decidim/proposals/add_proposal.js.es6 +3 -3
- data/app/assets/javascripts/decidim/proposals/admin/proposals.es6 +6 -7
- data/app/assets/javascripts/decidim/proposals/identity_selector_dialog.js.es6 +17 -17
- data/app/assets/javascripts/decidim/proposals/utils.js.es6 +2 -2
- data/app/commands/decidim/proposals/admin/create_proposal.rb +2 -2
- data/app/commands/decidim/proposals/admin/import_proposals.rb +16 -8
- data/app/commands/decidim/proposals/create_proposal.rb +6 -6
- data/app/commands/decidim/proposals/destroy_proposal.rb +33 -0
- data/app/commands/decidim/proposals/update_proposal.rb +4 -4
- data/app/controllers/decidim/proposals/admin/application_controller.rb +2 -2
- data/app/controllers/decidim/proposals/admin/proposal_answers_controller.rb +1 -1
- data/app/controllers/decidim/proposals/admin/proposal_notes_controller.rb +1 -1
- data/app/controllers/decidim/proposals/admin/proposals_controller.rb +2 -2
- data/app/controllers/decidim/proposals/admin/proposals_imports_controller.rb +4 -4
- data/app/controllers/decidim/proposals/application_controller.rb +5 -5
- data/app/controllers/decidim/proposals/proposal_endorsements_controller.rb +1 -1
- data/app/controllers/decidim/proposals/proposal_votes_controller.rb +1 -1
- data/app/controllers/decidim/proposals/proposal_widgets_controller.rb +1 -1
- data/app/controllers/decidim/proposals/proposals_controller.rb +52 -24
- data/app/events/decidim/proposals/proposal_mentioned_event.rb +19 -0
- data/app/forms/decidim/proposals/admin/proposal_form.rb +3 -3
- data/app/forms/decidim/proposals/admin/proposals_import_form.rb +9 -9
- data/app/forms/decidim/proposals/proposal_form.rb +5 -4
- data/app/helpers/decidim/proposals/application_helper.rb +38 -3
- data/app/helpers/decidim/proposals/proposal_endorsements_helper.rb +7 -3
- data/app/helpers/decidim/proposals/proposal_votes_helper.rb +9 -9
- data/app/helpers/decidim/proposals/proposal_wizard_helper.rb +2 -1
- data/app/jobs/decidim/proposals/notify_proposals_mentioned_job.rb +28 -0
- data/app/jobs/decidim/proposals/settings_change_job.rb +4 -4
- data/app/models/decidim/proposals/abilities/admin_ability.rb +4 -4
- data/app/models/decidim/proposals/abilities/current_user_ability.rb +12 -12
- data/app/models/decidim/proposals/abilities/participatory_process_admin_ability.rb +8 -8
- data/app/models/decidim/proposals/abilities/participatory_process_moderator_ability.rb +1 -1
- data/app/models/decidim/proposals/proposal.rb +7 -7
- data/app/models/decidim/proposals/proposal_endorsement.rb +6 -2
- data/app/presenters/decidim/proposals/proposal_presenter.rb +12 -0
- data/app/queries/decidim/proposals/filtered_proposals.rb +9 -9
- data/app/queries/decidim/proposals/similar_proposals.rb +9 -9
- data/app/services/decidim/proposals/proposal_search.rb +1 -1
- data/app/types/decidim/proposals/proposal_type.rb +17 -2
- data/app/types/decidim/proposals/proposals_type.rb +6 -6
- data/app/views/decidim/participatory_processes/participatory_process_groups/_highlighted_proposals.html.erb +1 -1
- data/app/views/decidim/participatory_processes/participatory_process_groups/_proposal.html.erb +1 -1
- data/app/views/decidim/participatory_spaces/_highlighted_proposals.html.erb +2 -2
- data/app/views/decidim/participatory_spaces/_proposal.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposal_answers/edit.html.erb +3 -3
- data/app/views/decidim/proposals/admin/proposal_notes/_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_notes/index.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/_bulk-actions.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/_form.html.erb +3 -3
- data/app/views/decidim/proposals/admin/proposals/_proposal-tr.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/index.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/new.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/update_category.js.erb +3 -3
- data/app/views/decidim/proposals/admin/proposals_imports/new.html.erb +3 -3
- data/app/views/decidim/proposals/admin/shared/_info_proposal.html.erb +1 -1
- data/app/views/decidim/proposals/proposal_endorsements/_identity.html.erb +2 -2
- data/app/views/decidim/proposals/proposal_endorsements/identities.html.erb +2 -2
- data/app/views/decidim/proposals/proposal_endorsements/update_buttons_and_counters.js.erb +19 -8
- data/app/views/decidim/proposals/proposals/_endorsement_button.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/_endorsement_identities_cabin.html.erb +3 -3
- data/app/views/decidim/proposals/proposals/_endorsements_card_row.html.erb +4 -4
- data/app/views/decidim/proposals/proposals/_endorsements_count.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/_filters.html.erb +10 -10
- data/app/views/decidim/proposals/proposals/_filters_small_view.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/_identities_listing.html.erb +30 -0
- data/app/views/decidim/proposals/proposals/{_endorsement_xxs.html.erb → _identity_xxs.html.erb} +1 -2
- data/app/views/decidim/proposals/proposals/_proposal.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/_proposal_badge.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/_tags.html.erb +25 -0
- data/app/views/decidim/proposals/proposals/_vote_button.html.erb +7 -7
- data/app/views/decidim/proposals/proposals/_votes_count.html.erb +6 -5
- data/app/views/decidim/proposals/proposals/_voting_rules.html.erb +7 -7
- data/app/views/decidim/proposals/proposals/_wizard_header.html.erb +5 -5
- data/app/views/decidim/proposals/proposals/compare.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/complete.html.erb +70 -0
- data/app/views/decidim/proposals/proposals/edit.html.erb +3 -3
- data/app/views/decidim/proposals/proposals/edit_draft.html.erb +5 -3
- data/app/views/decidim/proposals/proposals/index.html.erb +5 -5
- data/app/views/decidim/proposals/proposals/new.html.erb +1 -43
- data/app/views/decidim/proposals/proposals/preview.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/show.html.erb +16 -23
- data/config/locales/ca.yml +69 -55
- data/config/locales/en.yml +64 -50
- data/config/locales/es.yml +73 -59
- data/config/locales/eu.yml +64 -50
- data/config/locales/fi.yml +64 -50
- data/config/locales/fr.yml +75 -61
- data/config/locales/gl.yml +64 -50
- data/config/locales/it.yml +64 -50
- data/config/locales/nl.yml +153 -139
- data/config/locales/pl.yml +64 -50
- data/config/locales/pt-BR.yml +64 -50
- data/config/locales/pt.yml +64 -50
- data/config/locales/ru.yml +0 -9
- data/config/locales/sv.yml +64 -50
- data/config/locales/uk.yml +2 -16
- data/db/migrate/20171212102250_enable_pg_extensions.rb +12 -1
- data/db/migrate/20180305133811_rename_features_to_components_at_proposals.rb +11 -0
- data/db/migrate/20180413135249_fix_nil_threshold_per_proposal.rb +18 -0
- data/lib/decidim/content_parsers/proposal_parser.rb +95 -0
- data/lib/decidim/content_renderers/proposal_renderer.rb +33 -0
- data/lib/decidim/proposals.rb +9 -1
- data/lib/decidim/proposals/commentable_proposal.rb +3 -3
- data/lib/decidim/proposals/{feature.rb → component.rb} +39 -38
- data/lib/decidim/proposals/engine.rb +21 -6
- data/lib/decidim/proposals/proposal_serializer.rb +3 -3
- data/lib/decidim/proposals/test/factories.rb +5 -8
- data/lib/decidim/proposals/version.rb +1 -1
- metadata +32 -23
- data/app/views/decidim/proposals/proposals/_endorsements_listing.html.erb +0 -34
data/config/locales/eu.yml
CHANGED
@@ -15,8 +15,45 @@ eu:
|
|
15
15
|
answer: Erantzuna
|
16
16
|
proposals_copy:
|
17
17
|
copy_proposals: Honek hautatutako osagaiaren unekoaren proposamen guztiak inportatuko ditu eta ekintza hori ezin da alderantzikatu.
|
18
|
-
|
18
|
+
origin_component_id: Proposamenen kopia egiteko osagaia
|
19
19
|
decidim:
|
20
|
+
components:
|
21
|
+
proposals:
|
22
|
+
actions:
|
23
|
+
create: Sortu
|
24
|
+
endorse: gatoz
|
25
|
+
vote: Bozkatu
|
26
|
+
withdraw: Erretiratuko
|
27
|
+
name: proposamenak
|
28
|
+
settings:
|
29
|
+
global:
|
30
|
+
announcement: Anuntzio
|
31
|
+
attachments_allowed: Onartu eranskinak
|
32
|
+
can_accumulate_supports_beyond_threshold: Atalasetik haratago doazen euskarriak pilatu ditzakezu
|
33
|
+
comments_enabled: Iruzkinak gaituta
|
34
|
+
geocoding_enabled: Geokodifikazioa gaituta dago
|
35
|
+
new_proposal_help_text: Proposamen berriaren laguntza testu
|
36
|
+
official_proposals_enabled: Proposamen ofizialak gaituta
|
37
|
+
proposal_answering_enabled: Proposamena erantzutea gaituta dago
|
38
|
+
proposal_edit_before_minutes: Proposamenak egileek editatu ahal izango dituzte minutu asko igaro aurretik
|
39
|
+
proposal_length: Proposamen maximoa gorputzaren luzera
|
40
|
+
proposal_limit: Proposamenaren muga erabiltzaile bakoitzeko
|
41
|
+
proposal_wizard_step_1_help_text: Proposamen laguntzailea "Sortu" urrats laguntza testua
|
42
|
+
proposal_wizard_step_2_help_text: Proposamen laguntzailea "Konparatu" urrats laguntza testua
|
43
|
+
proposal_wizard_step_3_help_text: Proposamen laguntzailea "Bete" urrats laguntza testua
|
44
|
+
proposal_wizard_step_4_help_text: Proposamen laguntzailea "Argitaratu" urrats laguntza testua
|
45
|
+
threshold_per_proposal: Proposamen bakoitzeko atalasea
|
46
|
+
vote_limit: Erabiltzaile bakoitzari botoa emateko muga
|
47
|
+
step:
|
48
|
+
announcement: Anuntzio
|
49
|
+
comments_blocked: Iruzkinak blokeatuta
|
50
|
+
creation_enabled: Proposamenaren sorrera gaituta
|
51
|
+
endorsements_blocked: Onarpen blokeatuak
|
52
|
+
endorsements_enabled: Onarpen gaituak
|
53
|
+
proposal_answering_enabled: Proposamena erantzutea gaituta dago
|
54
|
+
votes_blocked: Botoiak blokeatuta
|
55
|
+
votes_enabled: Botoiak gaituta
|
56
|
+
votes_hidden: Botoiak ezkutatuta (botoak gaituta badago, hau egiaztatuz boto kopurua ezkutatuko da)
|
20
57
|
events:
|
21
58
|
proposals:
|
22
59
|
creation_enabled:
|
@@ -44,6 +81,10 @@ eu:
|
|
44
81
|
email_outro: Jakinarazpena jaso duzu "%{resource_title}" jarraitzen ari zarenagatik. Aurreko esteka estekan jarrai dezakezu.
|
45
82
|
email_subject: Jarraitzen ari zaren proposamena ebaluatzen ari da
|
46
83
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> proposamena ebaluatzen ari da.
|
84
|
+
proposal_mentioned:
|
85
|
+
email_intro: '"%{mentioned_proposal_title}" zure proposamena <a href="%{resource_path}"></a> espazio honetan aipatu da iruzkinetan.'
|
86
|
+
email_subject: Zure proposamena "%{mentioned_proposal_title}" aipatu da
|
87
|
+
notification_title: '"%{mentioned_proposal_title}" zure proposamena <a href="%{resource_path}"></a> espazio honetan aipatu da iruzkinetan.'
|
47
88
|
proposal_published:
|
48
89
|
email_intro: "%{author_name} %{author_nickname}, jarraitzen ari zarenak, proposamen berri bat argitaratu du, egiaztatu eta lagundu:"
|
49
90
|
email_outro: Jakinarazpena jaso duzu %{author_nickname}jarraituz gero. Aurreko esteka jarraituz jakinarazpenak jasotzeari uztea erabaki dezakezu.
|
@@ -69,42 +110,6 @@ eu:
|
|
69
110
|
email_outro: Jakinarazpena jaso duzu %{participatory_space_title}jarraituz gero. Aurreko esteka jarraituz jakinarazpenak jasotzeari uztea erabaki dezakezu.
|
70
111
|
email_subject: Proposamenak hauteskundeak hasi dira %{participatory_space_title}erako
|
71
112
|
notification_title: <a href="%{resource_path}">boto-proposamen</a> <a href="%{participatory_space_url}">%{participatory_space_title}</a>-n has dezakezu orain
|
72
|
-
features:
|
73
|
-
proposals:
|
74
|
-
actions:
|
75
|
-
create: Sortu
|
76
|
-
endorse: gatoz
|
77
|
-
vote: Proiektuaren alde egin
|
78
|
-
withdraw: Erretiratuko
|
79
|
-
name: Proposamenak
|
80
|
-
settings:
|
81
|
-
global:
|
82
|
-
announcement: Anuntzio
|
83
|
-
attachments_allowed: Onartu eranskinak
|
84
|
-
can_accumulate_supports_beyond_threshold: Atalasetik haratago doazen euskarriak pilatu ditzakezu
|
85
|
-
comments_enabled: Iruzkinak gaituta
|
86
|
-
geocoding_enabled: Geokodifikazioa gaituta dago
|
87
|
-
new_proposal_help_text: Proposamen berriaren laguntza testu
|
88
|
-
official_proposals_enabled: Proposamen ofizialak gaituta
|
89
|
-
proposal_answering_enabled: Proposamena erantzutea gaituta dago
|
90
|
-
proposal_edit_before_minutes: Proposamenak egileek editatu ahal izango dituzte minutu asko igaro aurretik
|
91
|
-
proposal_length: Proposamen maximoa gorputzaren luzera
|
92
|
-
proposal_limit: Proposamenaren muga erabiltzaile bakoitzeko
|
93
|
-
proposal_wizard_step_1_help_text: Proposamen laguntzailea "Sortu" urrats laguntza testua
|
94
|
-
proposal_wizard_step_2_help_text: Proposamen laguntzailea "Konparatu" urrats laguntza testua
|
95
|
-
proposal_wizard_step_3_help_text: Proposamen laguntzailea "Argitaratu" urrats laguntza testua
|
96
|
-
threshold_per_proposal: Proposamen bakoitzeko atalasea
|
97
|
-
vote_limit: Erabiltzaile bakoitzari botoa emateko muga
|
98
|
-
step:
|
99
|
-
announcement: Anuntzio
|
100
|
-
comments_blocked: Iruzkinak blokeatuta
|
101
|
-
creation_enabled: Proposamenaren sorrera gaituta
|
102
|
-
endorsements_blocked: Onarpen blokeatuak
|
103
|
-
endorsements_enabled: Onarpen gaituak
|
104
|
-
proposal_answering_enabled: Proposamena erantzutea gaituta dago
|
105
|
-
votes_blocked: Botoiak blokeatuta
|
106
|
-
votes_enabled: Botoiak gaituta
|
107
|
-
votes_hidden: Botoiak ezkutatuta (botoak gaituta badago, hau egiaztatuz boto kopurua ezkutatuko da)
|
108
113
|
participatory_processes:
|
109
114
|
participatory_process_groups:
|
110
115
|
highlighted_proposals:
|
@@ -182,8 +187,8 @@ eu:
|
|
182
187
|
success: "%{number} proposamenak behar bezala inportatu dira"
|
183
188
|
new:
|
184
189
|
create: Inportatzeko proposamenak
|
185
|
-
|
186
|
-
|
190
|
+
no_components: Proposamenen inportazioa inportatzeko espazio parte hartzaile honetan ez dago proposamenrik.
|
191
|
+
select_component: Hautatu osagaia
|
187
192
|
select_states: Egiaztatu inportatzeko proposamenen egoera
|
188
193
|
shared:
|
189
194
|
info_proposal:
|
@@ -206,6 +211,9 @@ eu:
|
|
206
211
|
create:
|
207
212
|
error: Erroreak gertatu dira proposamena gordetzean.
|
208
213
|
success: Onartutako proposamena. Zirriborro gisa gorde da.
|
214
|
+
destroy_draft:
|
215
|
+
error: Arazoak izan dira proposamenaren zirriborroa ezabatzean.
|
216
|
+
success: Proposamenaren zirriborroa behar bezala suntsitu zen.
|
209
217
|
models:
|
210
218
|
proposal:
|
211
219
|
fields:
|
@@ -229,7 +237,7 @@ eu:
|
|
229
237
|
select_identity: Hautatu identitatea
|
230
238
|
proposal_endorsements_helper:
|
231
239
|
endorsement_button:
|
232
|
-
already_endorsed:
|
240
|
+
already_endorsed: abala
|
233
241
|
endorse: gatoz
|
234
242
|
proposal_votes:
|
235
243
|
create:
|
@@ -239,6 +247,11 @@ eu:
|
|
239
247
|
mine_is_different: Nire proposamena desberdina da
|
240
248
|
no_similars_found: Ongi egina! Ez da antzeko proposamenik aurkitu
|
241
249
|
title: Proposamen antzekoak
|
250
|
+
complete:
|
251
|
+
attachment_legend: "(Aukerakoa) Gehitu eranskina"
|
252
|
+
select_a_category: Hautatu kategoria bat
|
253
|
+
send: Bidali
|
254
|
+
title: Zure proposamena osatzea
|
242
255
|
count:
|
243
256
|
proposals_count:
|
244
257
|
one: 1 proposamen
|
@@ -249,19 +262,14 @@ eu:
|
|
249
262
|
send: Bidali
|
250
263
|
title: Editatu proposamena
|
251
264
|
edit_draft:
|
265
|
+
discard: Ezabatu zirriborro hau
|
266
|
+
discard_confirmation: Ziur zaude proposamenaren zirriborroa baztertu nahi duzula?
|
252
267
|
send: Aurreikusi
|
253
268
|
title: Editatu proposamenaren zirriborroa
|
254
|
-
endorsement_button:
|
255
|
-
already_endorsed: Dagoeneko sinatutakoa
|
256
|
-
already_endorsed_hover: Unendorse
|
257
269
|
endorsement_identities_cabin:
|
258
270
|
endorse: gatoz
|
259
271
|
endorsements_card_row:
|
260
272
|
endorse: gatoz
|
261
|
-
endorsements_listing:
|
262
|
-
see_all: Dena ikusi
|
263
|
-
see_less: Ikusi gutxiago
|
264
|
-
title: Onarpenen zerrenda
|
265
273
|
filters:
|
266
274
|
accepted: Onartuta
|
267
275
|
activity: Jarduera
|
@@ -282,6 +290,10 @@ eu:
|
|
282
290
|
filter: Iragazi
|
283
291
|
filter_by: 'Iragazi honen arabera:'
|
284
292
|
unfold: Zabaldu
|
293
|
+
identities_listing:
|
294
|
+
see_all: Dena ikusi
|
295
|
+
see_less: Ikusi gutxiago
|
296
|
+
title: Onarpenen zerrenda
|
285
297
|
index:
|
286
298
|
new_proposal: Proposamen berria
|
287
299
|
see_all_withdrawn: Ikusi guztiak kendutako proposamenak
|
@@ -291,8 +303,6 @@ eu:
|
|
291
303
|
one: proiektuaren alde egin
|
292
304
|
other: euskarriak
|
293
305
|
new:
|
294
|
-
attachment_legend: "(Aukerakoa) Gehitu eranskin bat"
|
295
|
-
select_a_category: Mesedez, aukeratu kategoria bat
|
296
306
|
send: Jarraitu
|
297
307
|
title: Sortu zure proposamena
|
298
308
|
orders:
|
@@ -322,6 +332,9 @@ eu:
|
|
322
332
|
withdraw_btn_hint: Zure proposamena uka dezakezu zure kontuan aldatzen baduzu, laguntza jaso ez baduzu. Proposamena ez da ezabatu, kendutako proposamenen zerrendan agertuko da.
|
323
333
|
withdraw_confirmation: Ziur al zaude proposamen hau kendu nahi duzula?
|
324
334
|
withdraw_proposal: Ezabatu proposamena
|
335
|
+
tags:
|
336
|
+
changed_from: "( <u>%{previous_category}</u> administratzaile batek aldatu du)"
|
337
|
+
filed_as: Filed gisa
|
325
338
|
vote_button:
|
326
339
|
already_voted: Bozkatuta duzu
|
327
340
|
already_voted_hover: Unvote
|
@@ -354,7 +367,8 @@ eu:
|
|
354
367
|
see_steps: ikusi urratsak
|
355
368
|
step_1: Sortu zure proposamena
|
356
369
|
step_2: konparatu
|
357
|
-
step_3:
|
370
|
+
step_3: osoa
|
371
|
+
step_4: Argitaratu zure proposamena
|
358
372
|
step_of: Urratsa %{current_step_num} de %{total_steps}
|
359
373
|
publish:
|
360
374
|
error: Arazoak izan dira proposamena argitaratzean.
|
data/config/locales/fi.yml
CHANGED
@@ -15,8 +15,45 @@ fi:
|
|
15
15
|
answer: Vastaa
|
16
16
|
proposals_copy:
|
17
17
|
copy_proposals: Ymmärrän, että tämä tuo kaikki valitun komponentin ehdotukset nykyiseen ja että tätä toimintaa ei voi peruuttaa.
|
18
|
-
|
18
|
+
origin_component_id: Komponentti kopioida ehdotukset osoitteesta
|
19
19
|
decidim:
|
20
|
+
components:
|
21
|
+
proposals:
|
22
|
+
actions:
|
23
|
+
create: Luoda
|
24
|
+
endorse: hyväksyä
|
25
|
+
vote: Äänestys
|
26
|
+
withdraw: Peruuttaa
|
27
|
+
name: ehdotukset
|
28
|
+
settings:
|
29
|
+
global:
|
30
|
+
announcement: Ilmoitus
|
31
|
+
attachments_allowed: Salli liitteet
|
32
|
+
can_accumulate_supports_beyond_threshold: Voidaan kerätä tukia kynnysarvon ulkopuolella
|
33
|
+
comments_enabled: Kommentit ovat käytössä
|
34
|
+
geocoding_enabled: Geokoodaus on käytössä
|
35
|
+
new_proposal_help_text: Uusi ehdotusohje teksti
|
36
|
+
official_proposals_enabled: Viralliset ehdotukset ovat mahdollisia
|
37
|
+
proposal_answering_enabled: Ehdotuksen vastaus on käytössä
|
38
|
+
proposal_edit_before_minutes: Tekijät voivat muokata ehdotuksia ennen tämän monen minuutin kuluttua
|
39
|
+
proposal_length: Suurin ehdotuksen pituus
|
40
|
+
proposal_limit: Ehdotuksen raja käyttäjää kohden
|
41
|
+
proposal_wizard_step_1_help_text: Ohjattu ohjattu "Luo" vaiheen ohjeteksti
|
42
|
+
proposal_wizard_step_2_help_text: Ohjattu ohjattu "Vertaile" vaiheen ohjeteksti
|
43
|
+
proposal_wizard_step_3_help_text: Ohjattu ohjattu "Täydellinen" vaiheen ohjeteksti
|
44
|
+
proposal_wizard_step_4_help_text: Ohjattu ohjattu "julkaise" vaiheen ohjeteksti
|
45
|
+
threshold_per_proposal: Kynnys per ehdotus
|
46
|
+
vote_limit: Äänestysraja käyttäjää kohden
|
47
|
+
step:
|
48
|
+
announcement: Ilmoitus
|
49
|
+
comments_blocked: Kommentit on estetty
|
50
|
+
creation_enabled: Ehdotuksen luominen käyttöön
|
51
|
+
endorsements_blocked: Hyväksynnät estetty
|
52
|
+
endorsements_enabled: Hyväksynnät käytössä
|
53
|
+
proposal_answering_enabled: Ehdotuksen vastaus on käytössä
|
54
|
+
votes_blocked: Äänet ovat tukossa
|
55
|
+
votes_enabled: Äänet käytössä
|
56
|
+
votes_hidden: Piilotetut äänet (jos äänet ovat käytössä, tarkistamalla tämä piilottaa äänimäärän)
|
20
57
|
events:
|
21
58
|
proposals:
|
22
59
|
creation_enabled:
|
@@ -44,6 +81,10 @@ fi:
|
|
44
81
|
email_outro: Olet saanut tämän ilmoituksen, koska seuraat "%{resource_title}". Voit purkaa sen edellisestä linkistä.
|
45
82
|
email_subject: Seuraava ehdotus arvioidaan
|
46
83
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> ehdotusta arvioidaan.
|
84
|
+
proposal_mentioned:
|
85
|
+
email_intro: Ehdotuksesi%{mentioned_proposal_title}on mainittu <a href="%{resource_path}">tässä tilassa</a> kommentissa.
|
86
|
+
email_subject: Ehdotuksesi "%{mentioned_proposal_title}" on mainittu
|
87
|
+
notification_title: Ehdotuksesi%{mentioned_proposal_title}on mainittu <a href="%{resource_path}">tässä tilassa</a> kommentissa.
|
47
88
|
proposal_published:
|
48
89
|
email_intro: "%{author_name} %{author_nickname}, jonka olet seurannut, on julkaissut uuden ehdotuksen, tarkistamalla sen ja osallistumalla:"
|
49
90
|
email_outro: Olet saanut tämän ilmoituksen, koska seuraat %{author_nickname}. Voit lopettaa ilmoitusten vastaanottamisen edellisen linkin jälkeen.
|
@@ -69,42 +110,6 @@ fi:
|
|
69
110
|
email_outro: Olet saanut tämän ilmoituksen, koska seuraat %{participatory_space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellisen linkin jälkeen.
|
70
111
|
email_subject: Äänestys ehdotuksista on alkanut %{participatory_space_title}
|
71
112
|
notification_title: Voit nyt aloittaa <a href="%{resource_path}">äänestyssuosituksen</a> <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
72
|
-
features:
|
73
|
-
proposals:
|
74
|
-
actions:
|
75
|
-
create: Luo
|
76
|
-
endorse: hyväksyä
|
77
|
-
vote: Äänestä
|
78
|
-
withdraw: Peruuttaa
|
79
|
-
name: Ehdotukset
|
80
|
-
settings:
|
81
|
-
global:
|
82
|
-
announcement: Ilmoitus
|
83
|
-
attachments_allowed: Salli liitteet
|
84
|
-
can_accumulate_supports_beyond_threshold: Voidaan kerätä tukia kynnysarvon ulkopuolella
|
85
|
-
comments_enabled: Kommentit ovat käytössä
|
86
|
-
geocoding_enabled: Geokoodaus on käytössä
|
87
|
-
new_proposal_help_text: Uusi ehdotusohje teksti
|
88
|
-
official_proposals_enabled: Viralliset ehdotukset ovat mahdollisia
|
89
|
-
proposal_answering_enabled: Ehdotuksen vastaus on käytössä
|
90
|
-
proposal_edit_before_minutes: Tekijät voivat muokata ehdotuksia ennen tämän monen minuutin kuluttua
|
91
|
-
proposal_length: Suurin ehdotuksen pituus
|
92
|
-
proposal_limit: Ehdotuksen raja käyttäjää kohden
|
93
|
-
proposal_wizard_step_1_help_text: Ohjattu ohjattu "Luo" vaiheen ohjeteksti
|
94
|
-
proposal_wizard_step_2_help_text: Ohjattu ohjattu "Vertaile" vaiheen ohjeteksti
|
95
|
-
proposal_wizard_step_3_help_text: Ohjattu ohjattu "julkaise" vaiheen ohjeteksti
|
96
|
-
threshold_per_proposal: Kynnys per ehdotus
|
97
|
-
vote_limit: Äänestysraja käyttäjää kohden
|
98
|
-
step:
|
99
|
-
announcement: Ilmoitus
|
100
|
-
comments_blocked: Kommentit on estetty
|
101
|
-
creation_enabled: Ehdotuksen luominen käyttöön
|
102
|
-
endorsements_blocked: Hyväksynnät estetty
|
103
|
-
endorsements_enabled: Hyväksynnät käytössä
|
104
|
-
proposal_answering_enabled: Ehdotuksen vastaus on käytössä
|
105
|
-
votes_blocked: Äänet ovat tukossa
|
106
|
-
votes_enabled: Äänet käytössä
|
107
|
-
votes_hidden: Piilotetut äänet (jos äänet ovat käytössä, tarkistamalla tämä piilottaa äänimäärän)
|
108
113
|
participatory_processes:
|
109
114
|
participatory_process_groups:
|
110
115
|
highlighted_proposals:
|
@@ -182,8 +187,8 @@ fi:
|
|
182
187
|
success: "%{number} ehdotukset tuodaan onnistuneesti"
|
183
188
|
new:
|
184
189
|
create: Tuo ehdotuksia
|
185
|
-
|
186
|
-
|
190
|
+
no_components: Tässä osallistuvalle tilalle ei ole muita ehdotuskomponentteja ehdotusten tuomiseksi.
|
191
|
+
select_component: Valitse komponentti
|
187
192
|
select_states: Tarkista tuontiehdotusten tilat
|
188
193
|
shared:
|
189
194
|
info_proposal:
|
@@ -206,6 +211,9 @@ fi:
|
|
206
211
|
create:
|
207
212
|
error: Ehdotuksen tallennuksessa tapahtui virhe.
|
208
213
|
success: Ehdotus luotiin onnistuneesti. Tallennetaan luonnoksena.
|
214
|
+
destroy_draft:
|
215
|
+
error: Ehdotusluonnoksen poistaminen virheistä on poistettu.
|
216
|
+
success: Ehdotusluonnos menetti onnistuneesti.
|
209
217
|
models:
|
210
218
|
proposal:
|
211
219
|
fields:
|
@@ -229,7 +237,7 @@ fi:
|
|
229
237
|
select_identity: Valitse henkilöllisyys
|
230
238
|
proposal_endorsements_helper:
|
231
239
|
endorsement_button:
|
232
|
-
already_endorsed:
|
240
|
+
already_endorsed: Myönteinen
|
233
241
|
endorse: hyväksyä
|
234
242
|
proposal_votes:
|
235
243
|
create:
|
@@ -239,6 +247,11 @@ fi:
|
|
239
247
|
mine_is_different: Ehdotukseni on erilainen
|
240
248
|
no_similars_found: Hyvin tehty! Vastaavia ehdotuksia ei löytynyt
|
241
249
|
title: Vastaavat ehdotukset
|
250
|
+
complete:
|
251
|
+
attachment_legend: "(Valinnainen) Lisää liite"
|
252
|
+
select_a_category: Valitse kategoria
|
253
|
+
send: Lähettää
|
254
|
+
title: Suorita ehdotuksesi
|
242
255
|
count:
|
243
256
|
proposals_count:
|
244
257
|
one: 1 ehdotus
|
@@ -249,19 +262,14 @@ fi:
|
|
249
262
|
send: Lähetä
|
250
263
|
title: Muokkaa ehdotusta
|
251
264
|
edit_draft:
|
265
|
+
discard: Hylkää tämä luonnos
|
266
|
+
discard_confirmation: Haluatko varmasti hylätä tämän ehdotusluonnoksen?
|
252
267
|
send: esikatselu
|
253
268
|
title: Muokkaa ehdotusluonnos
|
254
|
-
endorsement_button:
|
255
|
-
already_endorsed: Jo hyväksytty
|
256
|
-
already_endorsed_hover: Unendorse
|
257
269
|
endorsement_identities_cabin:
|
258
270
|
endorse: hyväksyä
|
259
271
|
endorsements_card_row:
|
260
272
|
endorse: hyväksyä
|
261
|
-
endorsements_listing:
|
262
|
-
see_all: Nähdä kaikki
|
263
|
-
see_less: Katso vähemmän
|
264
|
-
title: Luettelo hyväksynnästä
|
265
273
|
filters:
|
266
274
|
accepted: Hyväksytty
|
267
275
|
activity: Aktiivisuus
|
@@ -282,6 +290,10 @@ fi:
|
|
282
290
|
filter: Suodata
|
283
291
|
filter_by: Suodata
|
284
292
|
unfold: Avaa
|
293
|
+
identities_listing:
|
294
|
+
see_all: Nähdä kaikki
|
295
|
+
see_less: Katso vähemmän
|
296
|
+
title: Luettelo hyväksynnästä
|
285
297
|
index:
|
286
298
|
new_proposal: Uusi ehdotus
|
287
299
|
see_all_withdrawn: Näytä kaikki peruutetut ehdotukset
|
@@ -291,8 +303,6 @@ fi:
|
|
291
303
|
one: ääni
|
292
304
|
other: ääntä
|
293
305
|
new:
|
294
|
-
attachment_legend: "(Valinnainen) Lisää liite"
|
295
|
-
select_a_category: Valitse aihepiiri
|
296
306
|
send: Jatkaa
|
297
307
|
title: Luo ehdotuksesi
|
298
308
|
orders:
|
@@ -322,6 +332,9 @@ fi:
|
|
322
332
|
withdraw_btn_hint: Voit peruuttaa ehdotuksesi, jos muutat mieltäsi, kunhan et ole saanut tukea. Ehdotusta ei poisteta, se näkyy peruutettujen ehdotusten luettelossa.
|
323
333
|
withdraw_confirmation: Haluatko varmasti peruuttaa tämän ehdotuksen?
|
324
334
|
withdraw_proposal: Peruuta ehdotus
|
335
|
+
tags:
|
336
|
+
changed_from: "(muutettu ylläpitäjältä <u>%{previous_category}</u>)"
|
337
|
+
filed_as: Filed as
|
325
338
|
vote_button:
|
326
339
|
already_voted: Jo äänestetty
|
327
340
|
already_voted_hover: Peru äänesi
|
@@ -354,7 +367,8 @@ fi:
|
|
354
367
|
see_steps: katso vaiheet
|
355
368
|
step_1: Luo ehdotuksesi
|
356
369
|
step_2: Vertailla
|
357
|
-
step_3:
|
370
|
+
step_3: Saattaa loppuun
|
371
|
+
step_4: Julkaise ehdotuksesi
|
358
372
|
step_of: Vaihe %{current_step_num} %{total_steps}
|
359
373
|
publish:
|
360
374
|
error: Ehdotuksen julkaisemisessa on tapahtunut virheitä.
|
data/config/locales/fr.yml
CHANGED
@@ -15,35 +15,76 @@ fr:
|
|
15
15
|
answer: Répondre
|
16
16
|
proposals_copy:
|
17
17
|
copy_proposals: Je comprends que cela va importer toutes les propositions de la fonctionnalité sélectionnée à la fonctionnalité actuelle et que cette action ne peut pas être inversée.
|
18
|
-
|
18
|
+
origin_component_id: Fonctionnalité dont on veut copier les propositions
|
19
19
|
decidim:
|
20
|
+
components:
|
21
|
+
proposals:
|
22
|
+
actions:
|
23
|
+
create: Créer
|
24
|
+
endorse: Recommander
|
25
|
+
vote: Soutenir
|
26
|
+
withdraw: Retirer
|
27
|
+
name: Propositions
|
28
|
+
settings:
|
29
|
+
global:
|
30
|
+
announcement: Annonce
|
31
|
+
attachments_allowed: Autoriser les pièces jointes
|
32
|
+
can_accumulate_supports_beyond_threshold: Peut accumuler des supports au-delà du seuil
|
33
|
+
comments_enabled: Activer le module de commentaire
|
34
|
+
geocoding_enabled: Géocodage activé
|
35
|
+
new_proposal_help_text: Texte d'aide à la création d'une nouvelle proposition
|
36
|
+
official_proposals_enabled: Autoriser la création de propositions officielles
|
37
|
+
proposal_answering_enabled: Autoriser la réponse officielle aux propositions
|
38
|
+
proposal_edit_before_minutes: Délai (en minutes) après lequel les auteurs ne peuvent plus modifier leurs propositions
|
39
|
+
proposal_length: Nombre maximum de caractères du corps de la proposition
|
40
|
+
proposal_limit: Limite de proposition par utilisateur
|
41
|
+
proposal_wizard_step_1_help_text: Texte d'aide à l'étape "Créer" de la création de proposition
|
42
|
+
proposal_wizard_step_2_help_text: Texte d'aide à l'étape "Comparer" de la création de proposition
|
43
|
+
proposal_wizard_step_3_help_text: Assistant d'offre de proposition "Complete" étape texte d'aide
|
44
|
+
proposal_wizard_step_4_help_text: Texte d'aide à l'étape "Publier" de la création de proposition
|
45
|
+
threshold_per_proposal: Seuil par proposition
|
46
|
+
vote_limit: Limite de soutiens par utilisateur
|
47
|
+
step:
|
48
|
+
announcement: Annonce
|
49
|
+
comments_blocked: Bloquer la création de nouveaux commentaires
|
50
|
+
creation_enabled: Autoriser la création de nouvelles propositions
|
51
|
+
endorsements_blocked: Empêcher les utilisateurs de recommander une proposition
|
52
|
+
endorsements_enabled: Autoriser les utilisateurs à recommander une proposition
|
53
|
+
proposal_answering_enabled: Autoriser la réponse officielle aux propositions
|
54
|
+
votes_blocked: Soutiens bloqués
|
55
|
+
votes_enabled: Autoriser les utilisateurs à soutenir une proposition
|
56
|
+
votes_hidden: Cacher les soutiens (si les soutiens sont activés, le compte des soutiens sera caché)
|
20
57
|
events:
|
21
58
|
proposals:
|
22
59
|
creation_enabled:
|
23
|
-
email_intro: 'Vous pouvez maintenant créer de nouvelles propositions dans %{participatory_space_title} ! Commencez à participer sur cette page:'
|
60
|
+
email_intro: 'Vous pouvez maintenant créer de nouvelles propositions dans %{participatory_space_title} ! Commencez à participer sur cette page :'
|
24
61
|
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 le lien précédent.
|
25
62
|
email_subject: Les propositions sont maintenant disponibles dans %{participatory_space_title}
|
26
63
|
notification_title: Vous pouvez maintenant démarrer <a href="%{resource_path}">nouvelles propositions</a> dans <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
27
64
|
endorsing_enabled:
|
28
|
-
email_intro: 'Vous pouvez
|
65
|
+
email_intro: 'Vous pouvez recommander les différentes propositions dans %{participatory_space_title} ! Commencez à participer en vous rendant sur cette page :'
|
29
66
|
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.
|
30
67
|
email_subject: La promotion des différentes propositions a commencé pour %{participatory_space_title}
|
31
|
-
notification_title: Vous pouvez maintenant commencer à <a href="%{resource_path}">
|
68
|
+
notification_title: Vous pouvez maintenant commencer à <a href="%{resource_path}">recommander les propositions</a> dans <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
32
69
|
proposal_accepted:
|
33
70
|
email_intro: 'La proposition "%{resource_title}" a été acceptée. Vous pouvez lire la réponse sur cette page :'
|
34
71
|
email_outro: Vous venez de recevoir cette notification parce que vous suivez "%{resource_title}". Vous pouvez à tout moment arrêter de la suivre en cliquant sur ce dernier lien.
|
35
72
|
email_subject: Une proposition que vous suivez a été acceptée
|
36
73
|
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> a été acceptée.
|
37
74
|
proposal_endorsed:
|
38
|
-
email_intro: "
|
75
|
+
email_intro: "%{endorser_name} %{endorser_nickname}, que vous suivez, vient de recommander une proposition qui pourrait vous intéresser, consultez-la et contribuez :"
|
39
76
|
email_outro: Vous avez reçu cette notification parce que vous suivez %{endorser_nickname}. Vous pouvez arrêter de recevoir des notifications en cliquant sur ce dernier lien.
|
40
|
-
email_subject: "%{endorser_nickname} a
|
41
|
-
notification_title:
|
77
|
+
email_subject: "%{endorser_nickname} a recommandé une nouvelle proposition"
|
78
|
+
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> a été recommandée par <a href="%{endorser_path}">%{endorser_name} %{endorser_nickname}</a>.
|
42
79
|
proposal_evaluating:
|
43
80
|
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 :'
|
44
81
|
email_outro: Vous avez reçu cette notification parce que vous suivez "%{resource_title}". Vous pouvez cesser de le suivre en allant sur le lien précédent.
|
45
82
|
email_subject: Une proposition que vous suivez est en cours d'évaluation
|
46
83
|
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> est en cours d'évaluation.
|
84
|
+
proposal_mentioned:
|
85
|
+
email_intro: Votre proposition "%{mentioned_proposal_title}" a été mentionnée <a href="%{resource_path}">dans cet espace</a>, dans les commentaires.
|
86
|
+
email_subject: Votre proposition "%{mentioned_proposal_title}" a été mentionnée
|
87
|
+
notification_title: Votre proposition "%{mentioned_proposal_title}" a été mentionnée <a href="%{resource_path}">dans cet espace</a>, dans les commentaires.
|
47
88
|
proposal_published:
|
48
89
|
email_intro: "%{author_name} %{author_nickname}, que vous suivez, a publié une nouvelle proposition. Découvrez-la et contribuez :"
|
49
90
|
email_outro: Vous avez reçu cette notification car vous suivez %{author_nickname}. Vous pouvez cesser de recevoir des notifications en suivant le lien précédent.
|
@@ -69,42 +110,6 @@ fr:
|
|
69
110
|
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.
|
70
111
|
email_subject: Le soutien des propositions a commencé pour %{participatory_space_title}
|
71
112
|
notification_title: Vous pouvez maintenant commencer <a href="%{resource_path}">à soutenir les propositions</a> de <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
72
|
-
features:
|
73
|
-
proposals:
|
74
|
-
actions:
|
75
|
-
create: Créer
|
76
|
-
endorse: Promouvoir
|
77
|
-
vote: Soutenir
|
78
|
-
withdraw: Retirer
|
79
|
-
name: Propositions
|
80
|
-
settings:
|
81
|
-
global:
|
82
|
-
announcement: Annonce
|
83
|
-
attachments_allowed: Autoriser les pièces jointes
|
84
|
-
can_accumulate_supports_beyond_threshold: Peut accumuler des supports au-delà du seuil
|
85
|
-
comments_enabled: Activer le module de commentaire
|
86
|
-
geocoding_enabled: Géocodage activé
|
87
|
-
new_proposal_help_text: Texte d'aide à la création d'une nouvelle proposition
|
88
|
-
official_proposals_enabled: Autoriser la création de propositions officielles
|
89
|
-
proposal_answering_enabled: Autoriser la réponse officielle aux propositions
|
90
|
-
proposal_edit_before_minutes: Délai (en minutes) après lequel les auteurs ne peuvent plus modifier leurs propositions
|
91
|
-
proposal_length: Nombre maximum de caractères du corps de la proposition
|
92
|
-
proposal_limit: Limite de proposition par utilisateur
|
93
|
-
proposal_wizard_step_1_help_text: Texte d'aide à l'étape "Créer" de la création de proposition
|
94
|
-
proposal_wizard_step_2_help_text: Texte d'aide à l'étape "Comparer" de la création de proposition
|
95
|
-
proposal_wizard_step_3_help_text: Texte d'aide à l'étape "Publier" de la création de proposition
|
96
|
-
threshold_per_proposal: Seuil par proposition
|
97
|
-
vote_limit: Limite de soutiens par utilisateur
|
98
|
-
step:
|
99
|
-
announcement: Annonce
|
100
|
-
comments_blocked: Bloquer la création de nouveaux commentaires
|
101
|
-
creation_enabled: Autoriser la création de nouvelles propositions
|
102
|
-
endorsements_blocked: Empêcher les utilisateurs de promouvoir une proposition
|
103
|
-
endorsements_enabled: Autoriser les utilisateurs à promouvoir une proposition
|
104
|
-
proposal_answering_enabled: Autoriser la réponse officielle aux propositions
|
105
|
-
votes_blocked: Soutiens bloqués
|
106
|
-
votes_enabled: Autoriser les utilisateurs à soutenir une proposition
|
107
|
-
votes_hidden: Cacher les soutiens (si les soutiens sont activés, le compte des soutiens sera caché)
|
108
113
|
participatory_processes:
|
109
114
|
participatory_process_groups:
|
110
115
|
highlighted_proposals:
|
@@ -182,8 +187,8 @@ fr:
|
|
182
187
|
success: "%{number} propositions importées avec succès"
|
183
188
|
new:
|
184
189
|
create: Importer des propositions
|
185
|
-
|
186
|
-
|
190
|
+
no_components: Il n'y a pas d'autre fonctionnalité de proposition dans cet espace participatif dans laquelle importer les propositions.
|
191
|
+
select_component: Veuillez sélectionner une fonctionnalité
|
187
192
|
select_states: Vérifiez l'état des propositions à importer
|
188
193
|
shared:
|
189
194
|
info_proposal:
|
@@ -206,12 +211,15 @@ fr:
|
|
206
211
|
create:
|
207
212
|
error: Il y a eu des erreurs lors de la sauvegarde de la proposition.
|
208
213
|
success: Proposition créée avec succès. Enregistrée comme brouillon.
|
214
|
+
destroy_draft:
|
215
|
+
error: Des erreurs sont survenues lors de la suppression du projet de proposition.
|
216
|
+
success: Le projet de proposition a été supprimé avec succès.
|
209
217
|
models:
|
210
218
|
proposal:
|
211
219
|
fields:
|
212
220
|
category: Catégorie
|
213
221
|
comments: Commentaires
|
214
|
-
created_at: Créé
|
222
|
+
created_at: Créé le
|
215
223
|
id: ID
|
216
224
|
notes: Remarques
|
217
225
|
official_proposal: Proposition officielle
|
@@ -223,14 +231,14 @@ fr:
|
|
223
231
|
limit_reached: Vous ne pouvez pas créer de nouvelles propositions car vous avez dépassé le nombre autorisé.
|
224
232
|
proposal_endorsements:
|
225
233
|
create:
|
226
|
-
error: Des erreurs sont survenues au moment de
|
234
|
+
error: Des erreurs sont survenues au moment de recommander la proposition.
|
227
235
|
identities:
|
228
236
|
done: Terminé
|
229
237
|
select_identity: Sélectionnez l'utilisateur
|
230
238
|
proposal_endorsements_helper:
|
231
239
|
endorsement_button:
|
232
|
-
already_endorsed:
|
233
|
-
endorse:
|
240
|
+
already_endorsed: Recommandé
|
241
|
+
endorse: Recommander
|
234
242
|
proposal_votes:
|
235
243
|
create:
|
236
244
|
error: Des erreurs se sont produites lors du soutien de la proposition.
|
@@ -239,6 +247,11 @@ fr:
|
|
239
247
|
mine_is_different: Ma proposition est différente
|
240
248
|
no_similars_found: Bien joué! Aucune proposition similaire n'a été trouvée
|
241
249
|
title: Propositions similaires
|
250
|
+
complete:
|
251
|
+
attachment_legend: "(Facultatif) Ajouter une pièce jointe"
|
252
|
+
select_a_category: Veuillez sélectionner une catégorie
|
253
|
+
send: Envoyer
|
254
|
+
title: Complétez votre proposition
|
242
255
|
count:
|
243
256
|
proposals_count:
|
244
257
|
one: 1 proposition
|
@@ -249,19 +262,14 @@ fr:
|
|
249
262
|
send: Envoyer
|
250
263
|
title: Modifier la proposition
|
251
264
|
edit_draft:
|
265
|
+
discard: Supprimer ce brouillon
|
266
|
+
discard_confirmation: Êtes-vous sûr de vouloir supprimer ce projet de proposition?
|
252
267
|
send: Aperçu
|
253
268
|
title: Modifier le projet de proposition
|
254
|
-
endorsement_button:
|
255
|
-
already_endorsed: Déjà approuvé
|
256
|
-
already_endorsed_hover: Unendorse
|
257
269
|
endorsement_identities_cabin:
|
258
|
-
endorse:
|
270
|
+
endorse: Recommander
|
259
271
|
endorsements_card_row:
|
260
|
-
endorse:
|
261
|
-
endorsements_listing:
|
262
|
-
see_all: Tout voir
|
263
|
-
see_less: Voir moins
|
264
|
-
title: Liste des promoteurs
|
272
|
+
endorse: Recommander
|
265
273
|
filters:
|
266
274
|
accepted: Retenue
|
267
275
|
activity: Activité
|
@@ -282,6 +290,10 @@ fr:
|
|
282
290
|
filter: Filtrer
|
283
291
|
filter_by: Filtrer par
|
284
292
|
unfold: Déplier
|
293
|
+
identities_listing:
|
294
|
+
see_all: Tout voir
|
295
|
+
see_less: Voir moins
|
296
|
+
title: Liste des promoteurs
|
285
297
|
index:
|
286
298
|
new_proposal: Nouvelle proposition
|
287
299
|
see_all_withdrawn: Voir toutes les propositions retirées
|
@@ -291,8 +303,6 @@ fr:
|
|
291
303
|
one: soutien
|
292
304
|
other: soutiens
|
293
305
|
new:
|
294
|
-
attachment_legend: "(Facultatif) Ajouter une pièce jointe"
|
295
|
-
select_a_category: Veuillez sélectionner une catégorie
|
296
306
|
send: Continuer
|
297
307
|
title: Créez votre proposition
|
298
308
|
orders:
|
@@ -322,6 +332,9 @@ fr:
|
|
322
332
|
withdraw_btn_hint: Si vous changez d'avis et tant que vous n'avez reçu aucune promotion vous pouvez toujours retirer votre proposition. Cette dernière ne sera pas supprimée mais elle apparaîtra dans la liste des propositions retirées.
|
323
333
|
withdraw_confirmation: Êtes-vous sûr de vouloir retirer cette proposition ?
|
324
334
|
withdraw_proposal: Retirer la proposition
|
335
|
+
tags:
|
336
|
+
changed_from: "(changé depuis <u>%{previous_category}</u> par un administrateur)"
|
337
|
+
filed_as: Classée en tant que
|
325
338
|
vote_button:
|
326
339
|
already_voted: Déjà soutenue
|
327
340
|
already_voted_hover: Retirer le soutien
|
@@ -354,7 +367,8 @@ fr:
|
|
354
367
|
see_steps: voir les étapes
|
355
368
|
step_1: Créez votre proposition
|
356
369
|
step_2: Comparer
|
357
|
-
step_3:
|
370
|
+
step_3: Achevée
|
371
|
+
step_4: Publiez votre proposition
|
358
372
|
step_of: Étape %{current_step_num} sur %{total_steps}
|
359
373
|
publish:
|
360
374
|
error: Il y a eu des erreurs lors de la publication de la proposition.
|