decidim-initiatives 0.30.1 → 0.31.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 +46 -9
- data/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_settings_form/show.erb +7 -2
- data/app/cells/decidim/initiatives/initiative_g_cell.rb +5 -1
- data/app/commands/decidim/initiatives/admin/publish_initiative.rb +1 -5
- data/app/commands/decidim/initiatives/admin/update_initiative.rb +1 -2
- data/app/commands/decidim/initiatives/create_initiative.rb +0 -1
- data/app/commands/decidim/initiatives/update_initiative.rb +1 -3
- data/app/commands/decidim/initiatives/vote_initiative.rb +1 -11
- data/app/controllers/concerns/decidim/initiatives/has_signature_workflow.rb +36 -0
- data/app/controllers/concerns/decidim/initiatives/needs_initiative.rb +1 -12
- data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/admin/initiatives_settings_controller.rb +1 -1
- data/app/controllers/decidim/initiatives/admin/initiatives_type_scopes_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/committee_requests_controller.rb +10 -2
- data/app/controllers/decidim/initiatives/create_initiative_controller.rb +84 -18
- data/app/controllers/decidim/initiatives/initiative_signatures_controller.rb +133 -42
- data/app/controllers/decidim/initiatives/initiative_votes_controller.rb +3 -2
- data/app/controllers/decidim/initiatives/initiatives_controller.rb +21 -2
- data/app/forms/decidim/initiatives/admin/initiative_form.rb +0 -1
- data/app/forms/decidim/initiatives/initiative_form.rb +0 -3
- data/app/helpers/decidim/initiatives/application_helper.rb +2 -0
- data/app/helpers/decidim/initiatives/initiatives_helper.rb +0 -1
- data/app/models/decidim/initiative.rb +7 -31
- data/app/models/decidim/initiatives_committee_member.rb +1 -1
- data/app/models/decidim/initiatives_type.rb +5 -2
- data/app/models/decidim/initiatives_vote.rb +2 -2
- data/app/packs/entrypoints/decidim_initiatives.js +1 -1
- data/app/packs/entrypoints/decidim_initiatives_admin.scss +1 -1
- data/app/packs/src/decidim/initiatives/admin/initiatives_types.js +2 -11
- data/app/packs/src/decidim/initiatives/admin/invite_users.js +1 -1
- data/app/packs/src/decidim/initiatives/application.js +1 -1
- data/app/packs/src/decidim/initiatives/check_code.js +114 -0
- data/app/packs/src/decidim/initiatives/initiative_creation_wizard.js +16 -0
- data/app/packs/src/decidim/initiatives/scoped_type.js +1 -1
- data/app/packs/stylesheets/initiatives.scss +16 -2
- data/app/permissions/decidim/initiatives/admin/permissions.rb +4 -7
- data/app/permissions/decidim/initiatives/permissions.rb +26 -16
- data/app/presenters/decidim/initiative_presenter.rb +12 -6
- data/app/presenters/decidim/initiatives/admin_log/initiative_presenter.rb +1 -2
- data/app/queries/decidim/initiatives/initiatives_stats_followers_count.rb +14 -0
- data/app/queries/decidim/initiatives/initiatives_stats_participants_count.rb +14 -0
- data/app/serializers/decidim/initiatives/open_data_initiative_serializer.rb +0 -1
- data/app/services/decidim/initiatives/data_encryptor.rb +1 -1
- data/app/services/decidim/initiatives/legacy_signature_handler.rb +25 -0
- data/app/services/decidim/initiatives/progress_notifier.rb +1 -7
- data/app/services/decidim/initiatives/signature_handler.rb +248 -0
- data/app/services/decidim/initiatives/status_change_notifier.rb +1 -7
- data/app/views/decidim/initiatives/admin/committee_requests/index.html.erb +29 -11
- data/app/views/decidim/initiatives/admin/exports/_dropdown.html.erb +17 -20
- data/app/views/decidim/initiatives/admin/initiatives/_form.html.erb +7 -13
- data/app/views/decidim/initiatives/admin/initiatives/_initiative_attachments.erb +2 -2
- data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +76 -47
- data/app/views/decidim/initiatives/admin/initiatives_types/_form.html.erb +13 -21
- data/app/views/decidim/initiatives/admin/initiatives_types/_initiative_type_scopes.html.erb +28 -12
- data/app/views/decidim/initiatives/admin/initiatives_types/index.html.erb +33 -15
- data/app/views/decidim/initiatives/create_initiative/_committee_member.html.erb +27 -0
- data/app/views/decidim/initiatives/create_initiative/_return_to_initiatives_button.html.erb +3 -0
- data/app/views/decidim/initiatives/create_initiative/_send_to_technical_validation_button.html.erb +10 -0
- data/app/views/decidim/initiatives/create_initiative/_share_committee_link.html.erb +5 -1
- data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +7 -11
- data/app/views/decidim/initiatives/create_initiative/finish.html.erb +16 -13
- data/app/views/decidim/initiatives/create_initiative/promotal_committee.html.erb +33 -6
- data/app/views/decidim/initiatives/create_initiative/select_initiative_type.html.erb +40 -26
- data/app/views/decidim/initiatives/initiative_signatures/_sms_code_form.html.erb +22 -0
- data/app/views/decidim/initiatives/initiative_signatures/_sms_phone_number_form.html.erb +13 -0
- data/app/views/decidim/initiatives/initiative_signatures/fill_personal_data.html.erb +23 -22
- data/app/views/decidim/initiatives/initiative_signatures/finish.html.erb +17 -5
- data/app/views/decidim/initiatives/initiative_signatures/sms_code.html.erb +6 -8
- data/app/views/decidim/initiatives/initiative_signatures/sms_phone_number.html.erb +3 -8
- data/app/views/decidim/initiatives/initiative_signatures/update_buttons_and_counters.js.erb +3 -14
- data/app/views/decidim/initiatives/initiative_votes/update_buttons_and_counters.js.erb +3 -14
- data/app/views/decidim/initiatives/initiatives/_committee_members.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_form.html.erb +1 -3
- data/app/views/decidim/initiatives/initiatives/_new_initiative_button.html.erb +10 -3
- data/app/views/decidim/initiatives/initiatives/_pending_initiatives.html.erb +5 -0
- data/app/views/decidim/initiatives/initiatives/index.html.erb +8 -0
- data/app/views/decidim/initiatives/initiatives/show.html.erb +2 -2
- data/app/views/layouts/decidim/_initiative_signature_creation_header.html.erb +20 -2
- data/app/views/layouts/decidim/admin/_manage_initiatives.html.erb +1 -1
- data/app/views/layouts/decidim/initiative_signature_creation.html.erb +3 -1
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +0 -45
- data/config/locales/bg.yml +0 -54
- data/config/locales/ca-IT.yml +99 -51
- data/config/locales/ca.yml +99 -51
- data/config/locales/cs.yml +93 -54
- data/config/locales/de.yml +100 -52
- data/config/locales/el.yml +0 -45
- data/config/locales/en.yml +99 -51
- data/config/locales/es-MX.yml +99 -51
- data/config/locales/es-PY.yml +99 -51
- data/config/locales/es.yml +99 -51
- data/config/locales/eu.yml +120 -72
- data/config/locales/fi-plain.yml +99 -51
- data/config/locales/fi.yml +99 -51
- data/config/locales/fr-CA.yml +44 -51
- data/config/locales/fr.yml +44 -51
- data/config/locales/ga-IE.yml +0 -17
- data/config/locales/gl.yml +0 -41
- data/config/locales/hu.yml +0 -54
- data/config/locales/id-ID.yml +0 -40
- data/config/locales/is-IS.yml +0 -22
- data/config/locales/it.yml +0 -53
- data/config/locales/ja.yml +98 -49
- data/config/locales/lb.yml +0 -50
- data/config/locales/lt.yml +0 -56
- data/config/locales/lv.yml +0 -46
- data/config/locales/nl.yml +0 -47
- data/config/locales/no.yml +0 -53
- data/config/locales/pl.yml +0 -56
- data/config/locales/pt-BR.yml +0 -53
- data/config/locales/pt.yml +0 -53
- data/config/locales/ro-RO.yml +92 -50
- data/config/locales/ru.yml +0 -25
- data/config/locales/sk.yml +0 -43
- data/config/locales/sl.yml +0 -1
- data/config/locales/sv.yml +10 -53
- data/config/locales/tr-TR.yml +0 -53
- data/config/locales/uk.yml +0 -25
- data/config/locales/zh-CN.yml +0 -45
- data/config/locales/zh-TW.yml +0 -53
- data/db/migrate/20250605104500_remove_hashtag_column_initiatives.rb +7 -0
- data/lib/decidim/api/initiative_api_type.rb +3 -0
- data/lib/decidim/api/initiative_type.rb +23 -4
- data/lib/decidim/exporters/initiative_votes_pdf.rb +1 -1
- data/lib/decidim/initiatives/default_signature_authorizer.rb +17 -0
- data/lib/decidim/initiatives/engine.rb +17 -14
- data/lib/decidim/initiatives/menu.rb +1 -1
- data/lib/decidim/initiatives/participatory_space.rb +15 -1
- data/lib/decidim/initiatives/seeds.rb +1 -2
- data/lib/decidim/initiatives/signature_workflow_manifest.rb +176 -0
- data/lib/decidim/initiatives/signatures.rb +12 -0
- data/lib/decidim/initiatives/test/factories.rb +7 -7
- data/lib/decidim/initiatives/test/initiatives_signatures_test_helpers.rb +19 -0
- data/lib/decidim/initiatives/validatable_authorizations.rb +83 -0
- data/lib/decidim/initiatives/version.rb +1 -1
- data/lib/decidim/initiatives.rb +23 -12
- metadata +33 -21
- data/app/events/decidim/initiatives/endorse_initiative_event.rb +0 -13
- data/app/forms/decidim/initiatives/vote_form.rb +0 -208
- data/app/packs/src/decidim/initiatives/identity_selector_dialog.js +0 -14
- data/app/services/decidim/initiatives/pdf_signature_example.rb +0 -110
- data/app/views/decidim/initiatives/initiative_signatures/_wizard_steps.html.erb +0 -15
- data/app/views/decidim/initiatives/initiatives/_interactions.html.erb +0 -10
- data/app/views/layouts/decidim/_initiative_header.html.erb +0 -27
data/config/locales/fr-CA.yml
CHANGED
@@ -7,9 +7,7 @@ fr-CA:
|
|
7
7
|
answer_url: URL de la réponse
|
8
8
|
area_id: Périmètre d'assemblée
|
9
9
|
decidim_scope_id: Secteur
|
10
|
-
decidim_user_group_id: Auteur
|
11
10
|
description: Description
|
12
|
-
hashtag: Hashtag
|
13
11
|
offline_votes: Votes en présentiel
|
14
12
|
offline_votes_for_scope: Signatures en personne pour %{scope_name}
|
15
13
|
scope_id: Secteur
|
@@ -36,7 +34,6 @@ fr-CA:
|
|
36
34
|
comments_enabled: Activer les commentaires
|
37
35
|
custom_signature_end_date_enabled: Permettre aux auteurs de choisir la fin de la période de collecte des signatures
|
38
36
|
description: Description
|
39
|
-
document_number_authorization_handler: Niveau d'autorisation nécessaire pour signer les initiatives de ce type d'initiative
|
40
37
|
extra_fields_legal_information: Informations juridiques sur la collecte de données personnelles
|
41
38
|
minimum_committee_members: Minimum de membres du comité
|
42
39
|
online_signature_enabled: Signature en ligne activée
|
@@ -80,6 +77,7 @@ fr-CA:
|
|
80
77
|
decidim:
|
81
78
|
admin:
|
82
79
|
actions:
|
80
|
+
cannot_answer: Impossible de répondre à cette pétition
|
83
81
|
new_initiative_type: Nouveau type d'initiative
|
84
82
|
new_initiative_type_scope: Nouveau secteur du type de pétition
|
85
83
|
filters:
|
@@ -90,7 +88,6 @@ fr-CA:
|
|
90
88
|
label: État
|
91
89
|
values:
|
92
90
|
accepted: Assez de signatures
|
93
|
-
created: Créée
|
94
91
|
discarded: Rejetée
|
95
92
|
open: Ouverte
|
96
93
|
rejected: Pas assez de signatures
|
@@ -98,7 +95,7 @@ fr-CA:
|
|
98
95
|
type_id_eq:
|
99
96
|
label: Type d'initiative
|
100
97
|
search_placeholder:
|
101
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Rechercher %{collection} par titre, description, ID ou nom de l'auteur
|
98
|
+
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Rechercher %{collection} par titre, description, ID ou nom de l'auteur
|
102
99
|
initiatives_settings:
|
103
100
|
update:
|
104
101
|
success: Les paramètres des pétitions ont bien été mis à jour.
|
@@ -124,8 +121,12 @@ fr-CA:
|
|
124
121
|
state: État
|
125
122
|
supports_count: Signatures
|
126
123
|
title: Pétitions
|
124
|
+
initiatives_committee_member:
|
125
|
+
fields:
|
126
|
+
actions: Actions
|
127
127
|
initiatives_type_scope:
|
128
128
|
fields:
|
129
|
+
actions: Actions
|
129
130
|
scope: Secteur
|
130
131
|
supports_required: Signatures requises
|
131
132
|
name: Secteur du type d'initiative
|
@@ -248,6 +249,7 @@ fr-CA:
|
|
248
249
|
success: La pétition a été envoyée à la validation technique.
|
249
250
|
update: Mettre à jour
|
250
251
|
form:
|
252
|
+
attachments_title: Pièces jointes
|
251
253
|
settings: Paramètres
|
252
254
|
title: Informations générales
|
253
255
|
index:
|
@@ -290,7 +292,6 @@ fr-CA:
|
|
290
292
|
edit:
|
291
293
|
update: Mettre à jour
|
292
294
|
form:
|
293
|
-
authorizations: Paramètres d'autorisation
|
294
295
|
child_scope_threshold_enabled_help_html: 'Cette option de configuration ne prend pas en charge les votes hors-ligne, elle permet d''activer des sous-secteurs et fonctionne avec un gestionnaire d''autorisation qui associe un secteur à l''utilisateur. Assurez-vous de sélectionner cette autorisation dans les paramètres d''autorisation ci-dessous. Pour que cela fonctionne, les secteurs doivent être configurés de manière hiérarchique : 1 Parent - N Enfants. Pour plus d''informations sur le fonctionnement de cette configuration, consultez la <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">documentation sur l''administration des initiatives</a>.'
|
295
296
|
only_global_scope_enabled_help_html: Cochez cette case si vous avez activé "Autoriser les signatures par sous-secteur" et configuré la portée globale comme votre secteur parent. En activant cette option, la sélection du type d'initiative sera ignorée dans l'assistant de création d'initiative. Pour plus d'informations sur le fonctionnement de cette configuration, consultez la <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">documentation sur l'administration des initiatives</a>.
|
296
297
|
options: Paramètres
|
@@ -315,7 +316,6 @@ fr-CA:
|
|
315
316
|
update: "%{user_name} a mis à jour le type de pétition %{resource_name}"
|
316
317
|
admin_states:
|
317
318
|
accepted: Assez de signatures
|
318
|
-
created: Créée
|
319
319
|
discarded: Retirée
|
320
320
|
open: Ouverte
|
321
321
|
rejected: Pas assez de signatures
|
@@ -345,38 +345,21 @@ fr-CA:
|
|
345
345
|
name: Initiatives mises en avant
|
346
346
|
create_initiative:
|
347
347
|
fill_data:
|
348
|
-
back: Retour
|
349
348
|
continue: Continuer
|
350
349
|
fill_data_help: "<ul> <li>Vérifier le contenu de votre pétition : le titre est-il facile à comprendre ? L'objectif de votre pétition est-il clair ?</li> <li>Vous devez choisir le type de signature : en présentiel, en ligne ou une combinaison des deux</li> <li>Quelle est le secteur géographique de l'initiative ?</li> </ul>"
|
351
|
-
more_information: "(Plus d'informations)"
|
352
350
|
select_area: Sélectionnez une zone
|
353
351
|
select_scope: Sélectionnez une portée
|
354
352
|
finish:
|
355
353
|
back: Retour
|
356
|
-
back_to_initiatives: Retour à l'index des initiatives
|
357
|
-
confirm: Vous allez envoyer la pétition à un administrateur pour qu'il la consulte et la publie. Une fois publiée, vous ne serez plus en mesure de l'éditer. Êtes-vous sûr que votre pétition est prête ?
|
358
|
-
edit_my_initiative: Modifier mon initiative
|
359
|
-
go_to_my_initiatives: Consulter mes initiatives
|
360
|
-
more_information: "(Plus d'informations)"
|
361
|
-
send_my_initiative: Envoyer mon initiative pour la validation technique
|
362
|
-
finish_help:
|
363
|
-
publish_helper_text: N'oubliez pas que pour que votre pétition soit publiée, vous devez compléter les informations requises et <strong>l'envoyer à la validation technique</strong> pour qu'un administrateur puisse l'examiner.
|
364
354
|
previous_form:
|
365
355
|
back: Retour
|
366
|
-
continue: Continuer
|
367
|
-
promotal_committee:
|
368
|
-
individual_help_text: Ce type de pétition nécessite un Comité de promotion composé d’au moins %{committee_size} personnes (garants). Pour réunir un comité de promotion, partagez le lien suivant aux personnes que vous souhaitez. Lorsque ces personnes recevront ce lien, elles devront suivre les étapes indiquées.
|
369
|
-
more_information: "(Plus d'informations)"
|
370
356
|
select_initiative_type:
|
371
357
|
back: Retour
|
372
358
|
choose_html: Je veux créer un <strong>%{title}</strong>
|
373
359
|
more_information: (Plus d'informations)
|
374
360
|
new: Créer une nouvelle pétition
|
375
361
|
select: Créer une initiative
|
376
|
-
select_initiative_type_help: Les pétitions sont un moyen par lequel les participants peuvent intervenir afin que l'organisation puisse entreprendre des actions en faveur de l'intérêt général. Quelle pétition voulez-vous lancer?
|
377
362
|
verification_required: Vérifiez votre compte pour créer une pétition
|
378
|
-
share_committee_link:
|
379
|
-
invite_to_committee_help: Lien pour inviter des personnes à faire partie du Comité de promotion
|
380
363
|
edit:
|
381
364
|
accept: Accepter la pétition
|
382
365
|
back: Retour
|
@@ -398,11 +381,6 @@ fr-CA:
|
|
398
381
|
email_outro: Vous avez reçu cette notification, car vous suivez %{author_nickname}. Vous pouvez arrêter de recevoir des notifications à partir du lien précédent.
|
399
382
|
email_subject: Nouvelle initiative de %{author_nickname}
|
400
383
|
notification_title: L'initiative <a href="%{resource_path}">%{resource_title}</a> a été créée par <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
401
|
-
endorse_initiative_event:
|
402
|
-
email_intro: "%{author_name} %{author_nickname}, que vous suivez, a soutenu l'initiative suivante; vous pouvez y contribuer si vous le souhaitez :"
|
403
|
-
email_outro: Vous avez reçu cette notification, car vous suivez %{author_nickname}. Vous pouvez arrêter de recevoir des notifications à partir du lien précédent.
|
404
|
-
email_subject: Initiative soutenue par %{author_nickname}
|
405
|
-
notification_title: L'initiative<a href="%{resource_path}">%{resource_title}</a> a été soutenue par <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
406
384
|
revoke_membership_request:
|
407
385
|
email_intro: "%{author_nickname} a accepté votre candidature pour faire partie du comité de promotion de la pétition %{resource_title}."
|
408
386
|
email_outro: 'Vous avez reçu cette notification parce que vous avez demandé à rejoindre cette pétition : %{resource_title}.'
|
@@ -423,24 +401,44 @@ fr-CA:
|
|
423
401
|
index:
|
424
402
|
uninitialized: Les pétitions ne sont pas encore configurées par un administrateur.
|
425
403
|
initiative_signatures:
|
404
|
+
dummy_signature:
|
405
|
+
form:
|
406
|
+
fields:
|
407
|
+
date_of_birth:
|
408
|
+
label: Date de naissance
|
409
|
+
document_number:
|
410
|
+
placeholder: Numéro du document
|
411
|
+
document_type:
|
412
|
+
prompt: Type de document
|
413
|
+
document_type_and_number:
|
414
|
+
label: Type et numéro de document
|
415
|
+
gender:
|
416
|
+
options:
|
417
|
+
man: Homme
|
418
|
+
non_binary: Non-binaire
|
419
|
+
woman: Femme
|
426
420
|
fill_personal_data:
|
427
|
-
continue:
|
421
|
+
continue: Valider vos données
|
428
422
|
help: S'il vous plaît, remplissez les champs suivants avec vos données personnelles pour signer la pétition.
|
423
|
+
invalid_data: Certaines des données personnelles fournies pour vérifier votre identité ne sont pas valides.
|
429
424
|
finish:
|
430
425
|
back_to_initiative: Retour à l'initiative
|
431
|
-
|
432
|
-
continue: Vérifier le code et continuer
|
433
|
-
help: Vérifiez les SMS reçus sur votre téléphone
|
426
|
+
title: Vous avez signé la pétition
|
434
427
|
sms_phone_number:
|
435
|
-
|
436
|
-
|
428
|
+
confirmed_data: Vous avez confirmé vos données.
|
429
|
+
continue: Signer la pétition
|
430
|
+
help_enter_your_number: Veuillez entrer votre numéro de téléphone. Vous recevrez ensuite un SMS avec un code de validation.
|
431
|
+
receive_code: Recevoir le code
|
432
|
+
resend_code_html: Vous n'avez pas reçu le code ? <a href="%{new_code_path}">Réessayez</a>
|
433
|
+
your_code_is_correct: Votre code est correct.
|
434
|
+
your_code_is_incorrect: Le code n'est pas correct. Vérifiez-le ou <a href="%{new_code_path}">réessayez</a>.
|
435
|
+
your_confirmation_code: Votre code de confirmation
|
437
436
|
initiative_votes:
|
438
437
|
create:
|
438
|
+
already_voted: Votre signature a déjà été enregistrée avec vos données.
|
439
439
|
error: Il y a eu des erreurs lors de la signature de l'initiative.
|
440
440
|
invalid: Les données fournies pour signer la pétition ne sont pas valides.
|
441
441
|
success_html: Toutes nos félicitations ! La pétition <strong> %{title}</strong> a été signée correctement.
|
442
|
-
personal_data:
|
443
|
-
invalid: Les données personnelles ne correspondent pas aux données fournies pour autorisation.
|
444
442
|
sms_code:
|
445
443
|
invalid: Votre code de vérification ne correspond pas au nôtre. Veuillez revérifier le SMS que nous vous avons envoyé.
|
446
444
|
sms_phone:
|
@@ -476,11 +474,6 @@ fr-CA:
|
|
476
474
|
initiatives:
|
477
475
|
closed_initiatives_warning: À l'heure actuelle, il n'y a pas de pétitions publiées, mais vous trouverez ici une liste de toutes les pétitions fermées.
|
478
476
|
no_initiatives_warning: Aucune initiative ne correspond à vos critères de recherche.
|
479
|
-
interactions:
|
480
|
-
comments_count:
|
481
|
-
count:
|
482
|
-
one: Commentaire
|
483
|
-
other: commentaires
|
484
477
|
orders:
|
485
478
|
label: 'Trier les initiatives par :'
|
486
479
|
most_commented: Les plus commentées
|
@@ -560,11 +553,14 @@ fr-CA:
|
|
560
553
|
show:
|
561
554
|
badge_name:
|
562
555
|
accepted: Assez de signatures
|
563
|
-
created: Créé le
|
564
556
|
discarded: Abandonné
|
565
557
|
open: Ouverte
|
566
558
|
rejected: Pas assez de signatures
|
567
559
|
validating: Validation technique
|
560
|
+
signatures:
|
561
|
+
workflows:
|
562
|
+
dummy_signature_handler:
|
563
|
+
description: Signature qui prend les informations personnelles de l'utilisateur, valide l'autorisation et vérifie le code SMS
|
568
564
|
states:
|
569
565
|
accepted: Acceptées
|
570
566
|
expired: Expirées
|
@@ -580,20 +576,17 @@ fr-CA:
|
|
580
576
|
initiatives_type:
|
581
577
|
actions:
|
582
578
|
title: Actions
|
583
|
-
|
579
|
+
statistics:
|
580
|
+
initiatives_count: Pétitions
|
581
|
+
initiatives_count_tooltip: Le nombre de pétitions citoyennes publiées.
|
584
582
|
layouts:
|
585
583
|
decidim:
|
586
584
|
initiative_creation_header:
|
587
585
|
fill_data: Complétez votre initiative
|
588
|
-
finish: terminer
|
589
|
-
promotal_committee: Comité de promotion
|
590
586
|
select_initiative_type: Sélectionnez le type de d'initiative
|
591
587
|
initiative_signature_creation_header:
|
592
|
-
|
593
|
-
|
594
|
-
sms_code: Vérification du code SMS
|
595
|
-
sms_phone_number: numéro de téléphone portable
|
596
|
-
title: Signer %{initiative_title}
|
588
|
+
help_information_html: Pour signer la pétition <strong>%{initiative_title}</strong> promue par %{initiative_author} , vous devez fournir des informations qui rendront la signature de la pétition juridiquement contraignante. Aucune information vous concernant ne sera rendue publique.
|
589
|
+
verify_your_identity: Vérifiez votre identité
|
597
590
|
initiatives:
|
598
591
|
no_initiatives_yet:
|
599
592
|
no_initiatives_yet: Aucune initiative pour le moment !
|
data/config/locales/fr.yml
CHANGED
@@ -7,9 +7,7 @@ fr:
|
|
7
7
|
answer_url: URL de la réponse
|
8
8
|
area_id: Périmètre d'assemblée
|
9
9
|
decidim_scope_id: Secteur
|
10
|
-
decidim_user_group_id: Auteur
|
11
10
|
description: Description
|
12
|
-
hashtag: Hashtag
|
13
11
|
offline_votes: Votes en présentiel
|
14
12
|
offline_votes_for_scope: Signatures en personne pour %{scope_name}
|
15
13
|
scope_id: Secteur
|
@@ -36,7 +34,6 @@ fr:
|
|
36
34
|
comments_enabled: Activer les commentaires
|
37
35
|
custom_signature_end_date_enabled: Permettre aux auteurs de choisir la fin de la période de collecte des signatures
|
38
36
|
description: Description
|
39
|
-
document_number_authorization_handler: Niveau d'autorisation nécessaire pour signer les pétitions de ce type de pétition
|
40
37
|
extra_fields_legal_information: Informations juridiques sur la collecte de données personnelles
|
41
38
|
minimum_committee_members: Minimum de membres du comité
|
42
39
|
online_signature_enabled: Signature en ligne activée
|
@@ -80,6 +77,7 @@ fr:
|
|
80
77
|
decidim:
|
81
78
|
admin:
|
82
79
|
actions:
|
80
|
+
cannot_answer: Impossible de répondre à cette pétition
|
83
81
|
new_initiative_type: Nouveau type de pétition
|
84
82
|
new_initiative_type_scope: Nouveau secteur du type de pétition
|
85
83
|
filters:
|
@@ -90,7 +88,6 @@ fr:
|
|
90
88
|
label: État
|
91
89
|
values:
|
92
90
|
accepted: Assez de signatures
|
93
|
-
created: Créée
|
94
91
|
discarded: Rejetée
|
95
92
|
open: Ouverte
|
96
93
|
rejected: Pas assez de signatures
|
@@ -98,7 +95,7 @@ fr:
|
|
98
95
|
type_id_eq:
|
99
96
|
label: Type de pétition
|
100
97
|
search_placeholder:
|
101
|
-
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Rechercher %{collection} par titre, description, ID ou nom de l'auteur
|
98
|
+
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Rechercher %{collection} par titre, description, ID ou nom de l'auteur
|
102
99
|
initiatives_settings:
|
103
100
|
update:
|
104
101
|
success: Les paramètres des pétitions ont bien été mis à jour.
|
@@ -124,8 +121,12 @@ fr:
|
|
124
121
|
state: État
|
125
122
|
supports_count: Signatures
|
126
123
|
title: Pétitions
|
124
|
+
initiatives_committee_member:
|
125
|
+
fields:
|
126
|
+
actions: Actions
|
127
127
|
initiatives_type_scope:
|
128
128
|
fields:
|
129
|
+
actions: Actions
|
129
130
|
scope: Secteur
|
130
131
|
supports_required: Signatures requises
|
131
132
|
name: Secteur du type de pétition
|
@@ -248,6 +249,7 @@ fr:
|
|
248
249
|
success: La pétition a été envoyée à la validation technique.
|
249
250
|
update: Mettre à jour
|
250
251
|
form:
|
252
|
+
attachments_title: Pièces jointes
|
251
253
|
settings: Paramètres
|
252
254
|
title: Informations générales
|
253
255
|
index:
|
@@ -290,7 +292,6 @@ fr:
|
|
290
292
|
edit:
|
291
293
|
update: Mettre à jour
|
292
294
|
form:
|
293
|
-
authorizations: Paramètres d'autorisation
|
294
295
|
child_scope_threshold_enabled_help_html: 'Cette option de configuration ne prend pas en charge les votes hors-ligne, elle permet d''activer des sous-secteurs et fonctionne avec un gestionnaire d''autorisation qui associe un secteur à l''utilisateur. Assurez-vous de sélectionner cette autorisation dans les paramètres d''autorisation ci-dessous. Pour que cela fonctionne, les secteurs doivent être configurés de manière hiérarchique : 1 Parent - N Enfants. Pour plus d''informations sur le fonctionnement de cette configuration, consultez la <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">documentation sur l''administration des initiatives</a>.'
|
295
296
|
only_global_scope_enabled_help_html: Cochez cette case si vous avez activé "Autoriser les signatures par sous-secteur" et configuré la portée globale comme votre secteur parent. En activant cette option, la sélection du type d'initiative sera ignorée dans l'assistant de création d'initiative. Pour plus d'informations sur le fonctionnement de cette configuration, consultez la <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">documentation sur l'administration des initiatives</a>.
|
296
297
|
options: Paramètres
|
@@ -315,7 +316,6 @@ fr:
|
|
315
316
|
update: "%{user_name} a mis à jour le type de pétition %{resource_name}"
|
316
317
|
admin_states:
|
317
318
|
accepted: Assez de signatures
|
318
|
-
created: Créée
|
319
319
|
discarded: Retirée
|
320
320
|
open: Ouverte
|
321
321
|
rejected: Pas assez de signatures
|
@@ -345,38 +345,21 @@ fr:
|
|
345
345
|
name: Pétitions mises en avant
|
346
346
|
create_initiative:
|
347
347
|
fill_data:
|
348
|
-
back: Retour
|
349
348
|
continue: Continuer
|
350
349
|
fill_data_help: "<ul> <li>Vérifier le contenu de votre pétition : le titre est-il facile à comprendre ? L'objectif de votre pétition est-il clair ?</li> <li>Vous devez choisir le type de signature : en présentiel, en ligne ou une combinaison des deux</li> <li>Quelle est le secteur géographique de l'initiative ?</li> </ul>"
|
351
|
-
more_information: "(Plus d'informations)"
|
352
350
|
select_area: Sélectionnez une zone
|
353
351
|
select_scope: Sélectionnez une portée
|
354
352
|
finish:
|
355
353
|
back: Retour
|
356
|
-
back_to_initiatives: Retour à l'index des pétitions
|
357
|
-
confirm: Vous allez envoyer la pétition à un administrateur pour qu'il la consulte et la publie. Une fois publiée, vous ne serez plus en mesure de l'éditer. Êtes-vous sûr que votre pétition est prête ?
|
358
|
-
edit_my_initiative: Modifier ma pétition
|
359
|
-
go_to_my_initiatives: Consulter mes pétitions
|
360
|
-
more_information: "(Plus d'informations)"
|
361
|
-
send_my_initiative: Envoyer ma pétition pour validation technique
|
362
|
-
finish_help:
|
363
|
-
publish_helper_text: N'oubliez pas que pour que votre pétition soit publiée, vous devez compléter les informations requises et <strong>l'envoyer à la validation technique</strong> pour qu'un administrateur puisse l'examiner.
|
364
354
|
previous_form:
|
365
355
|
back: Retour
|
366
|
-
continue: Continuer
|
367
|
-
promotal_committee:
|
368
|
-
individual_help_text: Ce type de pétition nécessite un Comité de promotion composé d’au moins %{committee_size} personnes (garants). Pour réunir un comité de promotion, partagez le lien suivant aux personnes que vous souhaitez. Lorsque ces personnes recevront ce lien, elles devront suivre les étapes indiquées.
|
369
|
-
more_information: "(Plus d'informations)"
|
370
356
|
select_initiative_type:
|
371
357
|
back: Retour
|
372
358
|
choose_html: Je veux créer un <strong>%{title}</strong>
|
373
359
|
more_information: Plus d'informations
|
374
360
|
new: Créer une nouvelle pétition
|
375
361
|
select: Créer une pétition
|
376
|
-
select_initiative_type_help: Les pétitions sont un moyen par lequel les participants peuvent intervenir afin que l'organisation puisse entreprendre des actions en faveur de l'intérêt général. Quelle pétition voulez-vous lancer?
|
377
362
|
verification_required: Vérifiez votre compte pour créer une pétition
|
378
|
-
share_committee_link:
|
379
|
-
invite_to_committee_help: Lien pour inviter des personnes à faire partie du Comité de promotion
|
380
363
|
edit:
|
381
364
|
accept: Accepter la pétition
|
382
365
|
back: Retour
|
@@ -398,11 +381,6 @@ fr:
|
|
398
381
|
email_outro: Vous avez reçu cette notification, car vous suivez %{author_nickname}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
399
382
|
email_subject: Nouvelle pétition de %{author_nickname}
|
400
383
|
notification_title: La pétition <a href="%{resource_path}">%{resource_title}</a> a été créée par <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
401
|
-
endorse_initiative_event:
|
402
|
-
email_intro: "%{author_name} %{author_nickname}, que vous suivez, a soutenu la pétition suivante; vous pouvez y contribuer si vous le souhaitez :"
|
403
|
-
email_outro: Vous avez reçu cette notification, car vous suivez %{author_nickname}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
404
|
-
email_subject: Pétition soutenue par %{author_nickname}
|
405
|
-
notification_title: La pétition <a href="%{resource_path}">%{resource_title}</a> a été soutenue par <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
406
384
|
revoke_membership_request:
|
407
385
|
email_intro: "%{author_nickname} a rejeté votre candidature pour faire partie du comité de promotion de la pétition %{resource_title}."
|
408
386
|
email_outro: 'Vous avez reçu cette notification parce que vous avez demandé à rejoindre cette pétition : %{resource_title}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l''onglet “Mon compte” > “Paramètres des notifications”.'
|
@@ -423,24 +401,44 @@ fr:
|
|
423
401
|
index:
|
424
402
|
uninitialized: Les pétitions ne sont pas encore configurées par un administrateur.
|
425
403
|
initiative_signatures:
|
404
|
+
dummy_signature:
|
405
|
+
form:
|
406
|
+
fields:
|
407
|
+
date_of_birth:
|
408
|
+
label: Date de naissance
|
409
|
+
document_number:
|
410
|
+
placeholder: Numéro du document
|
411
|
+
document_type:
|
412
|
+
prompt: Type de document
|
413
|
+
document_type_and_number:
|
414
|
+
label: Type et numéro de document
|
415
|
+
gender:
|
416
|
+
options:
|
417
|
+
man: Homme
|
418
|
+
non_binary: Non-binaire
|
419
|
+
woman: Femme
|
426
420
|
fill_personal_data:
|
427
|
-
continue:
|
421
|
+
continue: Valider vos données
|
428
422
|
help: S'il vous plaît, remplissez les champs suivants avec vos données personnelles pour signer la pétition.
|
423
|
+
invalid_data: Certaines des données personnelles fournies pour vérifier votre identité ne sont pas valides.
|
429
424
|
finish:
|
430
425
|
back_to_initiative: Retour à la pétition
|
431
|
-
|
432
|
-
continue: Vérifier le code et continuer
|
433
|
-
help: Vérifiez les SMS reçus sur votre téléphone
|
426
|
+
title: Vous avez signé la pétition
|
434
427
|
sms_phone_number:
|
435
|
-
|
436
|
-
|
428
|
+
confirmed_data: Vous avez confirmé vos données.
|
429
|
+
continue: Signer la pétition
|
430
|
+
help_enter_your_number: Veuillez entrer votre numéro de téléphone. Vous recevrez ensuite un SMS avec un code de validation.
|
431
|
+
receive_code: Recevoir le code
|
432
|
+
resend_code_html: Vous n'avez pas reçu le code ? <a href="%{new_code_path}">Réessayez</a>
|
433
|
+
your_code_is_correct: Votre code est correct.
|
434
|
+
your_code_is_incorrect: Le code n'est pas correct. Vérifiez-le ou <a href="%{new_code_path}">réessayez</a>.
|
435
|
+
your_confirmation_code: Votre code de confirmation
|
437
436
|
initiative_votes:
|
438
437
|
create:
|
438
|
+
already_voted: Votre signature a déjà été enregistrée avec vos données.
|
439
439
|
error: Il y a eu des erreurs lors de la signature de la pétition.
|
440
440
|
invalid: Les données fournies pour signer la pétition ne sont pas valides.
|
441
441
|
success_html: Toutes nos félicitations ! La pétition <strong> %{title}</strong> a été signée correctement.
|
442
|
-
personal_data:
|
443
|
-
invalid: Les données personnelles ne correspondent pas aux données fournies pour autorisation.
|
444
442
|
sms_code:
|
445
443
|
invalid: Votre code de vérification ne correspond pas au nôtre. Veuillez revérifier le SMS que nous vous avons envoyé.
|
446
444
|
sms_phone:
|
@@ -476,11 +474,6 @@ fr:
|
|
476
474
|
initiatives:
|
477
475
|
closed_initiatives_warning: À l'heure actuelle, il n'y a pas de pétitions publiées, mais vous trouverez ici une liste de toutes les pétitions fermées.
|
478
476
|
no_initiatives_warning: Aucune pétition ne correspond à vos critères de recherche.
|
479
|
-
interactions:
|
480
|
-
comments_count:
|
481
|
-
count:
|
482
|
-
one: Commentaire
|
483
|
-
other: commentaires
|
484
477
|
orders:
|
485
478
|
label: 'Trier les pétitions par :'
|
486
479
|
most_commented: Les plus commentées
|
@@ -560,11 +553,14 @@ fr:
|
|
560
553
|
show:
|
561
554
|
badge_name:
|
562
555
|
accepted: Assez de signatures
|
563
|
-
created: Créé le
|
564
556
|
discarded: Retirée
|
565
557
|
open: Ouverte
|
566
558
|
rejected: Pas assez de signatures
|
567
559
|
validating: Validation technique
|
560
|
+
signatures:
|
561
|
+
workflows:
|
562
|
+
dummy_signature_handler:
|
563
|
+
description: Signature qui prend les informations personnelles de l'utilisateur, valide l'autorisation et vérifie le code SMS
|
568
564
|
states:
|
569
565
|
accepted: Acceptées
|
570
566
|
expired: Expirées
|
@@ -580,20 +576,17 @@ fr:
|
|
580
576
|
initiatives_type:
|
581
577
|
actions:
|
582
578
|
title: Actions
|
583
|
-
|
579
|
+
statistics:
|
580
|
+
initiatives_count: Pétitions
|
581
|
+
initiatives_count_tooltip: Le nombre de pétitions citoyennes publiées.
|
584
582
|
layouts:
|
585
583
|
decidim:
|
586
584
|
initiative_creation_header:
|
587
585
|
fill_data: Complétez votre pétition
|
588
|
-
finish: terminer
|
589
|
-
promotal_committee: Comité de promotion
|
590
586
|
select_initiative_type: Sélectionnez le type de pétition
|
591
587
|
initiative_signature_creation_header:
|
592
|
-
|
593
|
-
|
594
|
-
sms_code: Vérification du code SMS
|
595
|
-
sms_phone_number: numéro de téléphone portable
|
596
|
-
title: Signer %{initiative_title}
|
588
|
+
help_information_html: Pour signer la pétition <strong>%{initiative_title}</strong> promue par %{initiative_author} , vous devez fournir des informations qui rendront la signature de la pétition juridiquement contraignante. Aucune information vous concernant ne sera rendue publique.
|
589
|
+
verify_your_identity: Vérifiez votre identité
|
597
590
|
initiatives:
|
598
591
|
no_initiatives_yet:
|
599
592
|
no_initiatives_yet: Aucune pétition en ce moment !
|
data/config/locales/ga-IE.yml
CHANGED
@@ -3,7 +3,6 @@ ga:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
initiative:
|
6
|
-
decidim_user_group_id: Údar
|
7
6
|
scope_id: Scóip
|
8
7
|
signature_type_values:
|
9
8
|
any: Measctha
|
@@ -32,8 +31,6 @@ ga:
|
|
32
31
|
label: Ceantar
|
33
32
|
state_eq:
|
34
33
|
label: Staid
|
35
|
-
values:
|
36
|
-
created: Cruthaithe
|
37
34
|
type_id_eq:
|
38
35
|
label: Cineál
|
39
36
|
menu:
|
@@ -89,8 +86,6 @@ ga:
|
|
89
86
|
options: Roghanna
|
90
87
|
new:
|
91
88
|
create: Cruthaigh
|
92
|
-
admin_states:
|
93
|
-
created: Cruthaithe
|
94
89
|
application_helper:
|
95
90
|
filter_state_values:
|
96
91
|
all: Uile
|
@@ -103,21 +98,16 @@ ga:
|
|
103
98
|
continue: Lean ar aghaidh
|
104
99
|
create_initiative:
|
105
100
|
fill_data:
|
106
|
-
back: Ar Ais
|
107
101
|
continue: Lean ar aghaidh
|
108
102
|
finish:
|
109
103
|
back: Ar Ais
|
110
104
|
previous_form:
|
111
105
|
back: Ar Ais
|
112
|
-
continue: Lean ar aghaidh
|
113
106
|
select_initiative_type:
|
114
107
|
back: Ar Ais
|
115
108
|
edit:
|
116
109
|
back: Ar Ais
|
117
110
|
update: Nuashonraigh
|
118
|
-
initiative_signatures:
|
119
|
-
fill_personal_data:
|
120
|
-
continue: Lean ar aghaidh
|
121
111
|
initiatives:
|
122
112
|
committee_members:
|
123
113
|
approve: Ceadaigh
|
@@ -145,9 +135,6 @@ ga:
|
|
145
135
|
initiatives_mailer:
|
146
136
|
initiative_link:
|
147
137
|
here: anseo
|
148
|
-
show:
|
149
|
-
badge_name:
|
150
|
-
created: Cruthaithe
|
151
138
|
states:
|
152
139
|
accepted: Glactha
|
153
140
|
expired: Éagtha
|
@@ -158,12 +145,8 @@ ga:
|
|
158
145
|
initiatives_type:
|
159
146
|
actions:
|
160
147
|
title: Gníomhartha
|
161
|
-
vote: Sínigh
|
162
148
|
layouts:
|
163
149
|
decidim:
|
164
150
|
initiative_creation_header:
|
165
151
|
fill_data: Cruthaigh
|
166
|
-
finish: Críochnaigh
|
167
152
|
select_initiative_type: Roghnaigh
|
168
|
-
initiative_signature_creation_header:
|
169
|
-
finish: Críochnaigh
|
data/config/locales/gl.yml
CHANGED
@@ -3,7 +3,6 @@ gl:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
initiative:
|
6
|
-
decidim_user_group_id: Autor
|
7
6
|
description: Descrición
|
8
7
|
offline_votes: Soportes cara a cara
|
9
8
|
scope_id: Alcance
|
@@ -22,7 +21,6 @@ gl:
|
|
22
21
|
banner_image: Imaxe do banner
|
23
22
|
collect_user_extra_fields: Recolle datos persoais do usuario na sinatura
|
24
23
|
description: Descrición
|
25
|
-
document_number_authorization_handler: Autorización para verificar o número do documento nos votos
|
26
24
|
extra_fields_legal_information: Información legal sobre a recollida de datos persoais
|
27
25
|
minimum_committee_members: Mínimo de membros da comisión
|
28
26
|
online_signature_enabled: Sinatura en liña habilitada
|
@@ -187,7 +185,6 @@ gl:
|
|
187
185
|
unpublish: "%{user_name} eliminou a iniciativa %{resource_name}"
|
188
186
|
update: "%{user_name} actualizou a iniciativa %{resource_name}"
|
189
187
|
admin_states:
|
190
|
-
created: Creada
|
191
188
|
discarded: Descartou
|
192
189
|
validating: Validación técnica
|
193
190
|
application_helper:
|
@@ -204,53 +201,29 @@ gl:
|
|
204
201
|
name: Iniciativas destacadas
|
205
202
|
create_initiative:
|
206
203
|
fill_data:
|
207
|
-
back: De volta
|
208
204
|
continue: Continuar
|
209
|
-
more_information: "(Máis información)"
|
210
205
|
select_scope: Seleccione un alcance
|
211
206
|
finish:
|
212
207
|
back: De volta
|
213
|
-
back_to_initiatives: Volver a iniciativas
|
214
|
-
go_to_my_initiatives: Vaia ás miñas iniciativas
|
215
|
-
more_information: "(Máis información)"
|
216
208
|
previous_form:
|
217
209
|
back: De volta
|
218
|
-
continue: Continuar
|
219
|
-
promotal_committee:
|
220
|
-
more_information: "(Máis información)"
|
221
210
|
select_initiative_type:
|
222
211
|
back: De volta
|
223
212
|
choose_html: Quero crear un <strong>%{title}</strong>
|
224
213
|
more_information: (Máis información)
|
225
214
|
select: Quero promocionar esta iniciativa
|
226
|
-
share_committee_link:
|
227
|
-
invite_to_committee_help: Ligazón para convidar persoas que formarán parte do comité promotor
|
228
215
|
events:
|
229
216
|
create_initiative_event:
|
230
217
|
email_intro: "%{author_name} %{author_nickname}, quen está seguindo, creou unha nova iniciativa, revisa e contribúe:"
|
231
218
|
email_outro: Recibiches esta notificación porque estás seguindo %{author_nickname}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
|
232
219
|
email_subject: Nova iniciativa por %{author_nickname}
|
233
220
|
notification_title: A <a href="%{resource_path}">%{resource_title}</a> iniciativa foi creada por <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
234
|
-
endorse_initiative_event:
|
235
|
-
email_intro: "%{author_name} %{author_nickname}, a quen estás seguindo, apoiou a seguinte iniciativa, talvez queres contribuír á conversa:"
|
236
|
-
email_outro: Recibiches esta notificación porque estás seguindo %{author_nickname}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
|
237
|
-
email_subject: Iniciativa aprobada por %{author_nickname}
|
238
|
-
notification_title: A <a href="%{resource_path}">%{resource_title}</a> iniciativa foi aprobada por <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
239
221
|
initiative_signatures:
|
240
|
-
fill_personal_data:
|
241
|
-
continue: Continuar
|
242
222
|
finish:
|
243
223
|
back_to_initiative: Volver á iniciativa
|
244
|
-
sms_code:
|
245
|
-
continue: Comprobe o código e continúe
|
246
|
-
help: Comprobe o SMS recibido no seu teléfono
|
247
|
-
sms_phone_number:
|
248
|
-
continue: Envíame un SMS
|
249
224
|
initiative_votes:
|
250
225
|
create:
|
251
226
|
error: Houbo erros ao asinar a iniciativa.
|
252
|
-
personal_data:
|
253
|
-
invalid: Os datos persoais non son consistentes cos datos proporcionados para a autorización.
|
254
227
|
sms_phone:
|
255
228
|
invalid: O número de teléfono non é válido nin está en espera de autorización. Verifique as súas autorizacións.
|
256
229
|
initiatives:
|
@@ -270,11 +243,6 @@ gl:
|
|
270
243
|
type: Tipo
|
271
244
|
index_header:
|
272
245
|
new_initiative: Nova iniciativa
|
273
|
-
interactions:
|
274
|
-
comments_count:
|
275
|
-
count:
|
276
|
-
one: Comentario
|
277
|
-
other: Comentarios
|
278
246
|
orders:
|
279
247
|
label: 'Ordenar iniciativas por:'
|
280
248
|
most_commented: A maioría comentada
|
@@ -317,20 +285,11 @@ gl:
|
|
317
285
|
initiatives_type:
|
318
286
|
actions:
|
319
287
|
title: Accións
|
320
|
-
vote: Iniciar sesión
|
321
288
|
layouts:
|
322
289
|
decidim:
|
323
290
|
initiative_creation_header:
|
324
291
|
fill_data: Crear
|
325
|
-
finish: Finalizar
|
326
|
-
promotal_committee: Comité de promoción
|
327
292
|
select_initiative_type: Elixe
|
328
|
-
initiative_signature_creation_header:
|
329
|
-
fill_personal_data: Completa os teus datos
|
330
|
-
finish: Finalizar
|
331
|
-
sms_code: Verificación do código SMS
|
332
|
-
sms_phone_number: Número de teléfono
|
333
|
-
title: Rexistrar %{initiative_title}
|
334
293
|
initiatives:
|
335
294
|
no_initiatives_yet:
|
336
295
|
no_initiatives_yet: Non hai iniciativas aínda.
|