decidim-core 0.31.5 → 0.31.7

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.
Files changed (160) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/amendable/amend_button_card/show.erb +2 -2
  3. data/app/cells/decidim/author_cell.rb +0 -4
  4. data/app/cells/decidim/card_metadata_cell.rb +1 -1
  5. data/app/cells/decidim/comments_button_cell.rb +9 -1
  6. data/app/cells/decidim/content_blocks/cta_settings_form/show.erb +1 -1
  7. data/app/cells/decidim/content_blocks/hero_settings_form/show.erb +2 -2
  8. data/app/cells/decidim/content_blocks/highlighted_content_banner_cell.rb +1 -1
  9. data/app/cells/decidim/content_blocks/highlighted_content_banner_settings_form/show.erb +1 -1
  10. data/app/cells/decidim/content_blocks/highlighted_participatory_spaces_cell.rb +1 -1
  11. data/app/cells/decidim/content_blocks/participatory_space_hero_settings_form/show.erb +1 -1
  12. data/app/cells/decidim/content_blocks/static_page/section_settings_form/show.erb +3 -1
  13. data/app/cells/decidim/content_blocks/static_page/summary_settings_form/show.erb +3 -1
  14. data/app/cells/decidim/content_blocks/static_page/two_pane_section_settings_form/show.erb +4 -2
  15. data/app/cells/decidim/data_consent/category.erb +20 -33
  16. data/app/cells/decidim/footer_topics/show.erb +5 -8
  17. data/app/cells/decidim/participatory_space_dropdown_metadata/links.erb +1 -1
  18. data/app/cells/decidim/resource_types_filter/show.erb +2 -2
  19. data/app/cells/decidim/share_widget/qr_code_modal.erb +1 -1
  20. data/app/commands/decidim/destroy_account.rb +12 -1
  21. data/app/commands/decidim/multiple_attachments_methods.rb +28 -27
  22. data/app/controllers/concerns/decidim/devise_controllers.rb +10 -0
  23. data/app/events/decidim/amendable/amendment_base_event.rb +7 -1
  24. data/app/helpers/decidim/menu_helper.rb +0 -2
  25. data/app/jobs/decidim/process_inactive_participant_job.rb +0 -7
  26. data/app/mailers/decidim/delete_user_mailer.rb +14 -0
  27. data/app/mailers/decidim/participants_account_mailer.rb +0 -16
  28. data/app/models/decidim/moderation.rb +1 -1
  29. data/app/models/decidim/participatory_space_private_user.rb +1 -1
  30. data/app/models/decidim/user.rb +2 -2
  31. data/app/models/decidim/user_base_entity.rb +17 -2
  32. data/app/models/decidim/user_moderation.rb +1 -1
  33. data/app/packs/src/decidim/controllers/accordion/accordion.test.js +196 -42
  34. data/app/packs/src/decidim/controllers/accordion/controller.js +93 -17
  35. data/app/packs/src/decidim/controllers/dropdown/controller.js +6 -0
  36. data/app/packs/src/decidim/controllers/dropdown/dropdown.test.js +28 -0
  37. data/app/packs/src/decidim/controllers/form_validator/form_validator.js +6 -6
  38. data/app/packs/src/decidim/controllers/form_validator/form_validator.test.js +23 -1
  39. data/app/packs/src/decidim/controllers/mention/controller.js +296 -140
  40. data/app/packs/src/decidim/controllers/mention/input_mentions.test.js +120 -457
  41. data/app/packs/src/decidim/controllers/multiple_mentions/controller.js +68 -32
  42. data/app/packs/src/decidim/controllers/multiple_mentions/input_multiple_mentions.test.js +30 -23
  43. data/app/packs/src/decidim/controllers/password_toggler/controller.js +22 -1
  44. data/app/packs/src/decidim/controllers/password_toggler/password_toggler.test.js +11 -20
  45. data/app/packs/src/decidim/direct_uploads/upload_field.js +4 -4
  46. data/app/packs/src/decidim/direct_uploads/upload_modal.js +12 -7
  47. data/app/packs/src/decidim/geocoding/reverse_geocoding.js +15 -5
  48. data/app/packs/src/decidim/geocoding/reverse_geocoding.test.js +197 -0
  49. data/app/packs/src/decidim/index.js +4 -3
  50. data/app/packs/src/decidim/map/controller.js +10 -1
  51. data/app/packs/src/decidim/refactor/moved/focus_guard.js +12 -12
  52. data/app/packs/src/decidim/refactor/moved/focus_guard.test.js +136 -0
  53. data/app/packs/src/decidim/sw/sw.js +1 -1
  54. data/app/packs/src/decidim/utilities/text.js +6 -6
  55. data/app/packs/stylesheets/decidim/_cards.scss +1 -1
  56. data/app/packs/stylesheets/decidim/_conversations.scss +14 -0
  57. data/app/packs/stylesheets/decidim/_cookies.scss +13 -5
  58. data/app/packs/stylesheets/decidim/_documents.scss +1 -1
  59. data/app/packs/stylesheets/decidim/_editor_suggestions.scss +49 -0
  60. data/app/packs/stylesheets/decidim/_floating_help.scss +1 -1
  61. data/app/packs/stylesheets/decidim/_footer.scss +33 -1
  62. data/app/packs/stylesheets/decidim/_participatory_spaces.scss +1 -1
  63. data/app/packs/stylesheets/decidim/_tom_select.scss +23 -0
  64. data/app/packs/stylesheets/decidim/application.scss +2 -0
  65. data/app/packs/stylesheets/decidim/editor.scss +2 -33
  66. data/app/packs/stylesheets/decidim/geocoding_addons.scss +10 -2
  67. data/app/presenters/decidim/footer_menu_presenter.rb +2 -4
  68. data/app/presenters/decidim/menu_item_presenter.rb +9 -3
  69. data/app/presenters/decidim/stats_presenter.rb +1 -1
  70. data/app/resolvers/decidim/meta_image_url_resolver.rb +7 -0
  71. data/app/uploaders/decidim/image_uploader.rb +1 -1
  72. data/app/views/decidim/delete_user_mailer/delete.html.erb +6 -0
  73. data/app/views/decidim/gamification/badges/index.html.erb +1 -1
  74. data/app/views/decidim/homepage/show.html.erb +1 -1
  75. data/app/views/decidim/last_activities/index.html.erb +1 -1
  76. data/app/views/decidim/messaging/conversations/_error_modal.html.erb +11 -19
  77. data/app/views/decidim/messaging/conversations/error.js.erb +12 -7
  78. data/app/views/decidim/newsletters/unsubscribe.html.erb +1 -1
  79. data/app/views/decidim/offline/show.html.erb +1 -1
  80. data/app/views/decidim/pages/index.html.erb +1 -1
  81. data/app/views/decidim/profiles/show.html.erb +1 -1
  82. data/app/views/decidim/searches/_filters.html.erb +1 -1
  83. data/app/views/decidim/shared/_resource_actions.html.erb +4 -4
  84. data/app/views/decidim/user_activities/index.html.erb +1 -1
  85. data/app/views/layouts/decidim/_wrapper.html.erb +2 -2
  86. data/app/views/layouts/decidim/footer/_main.html.erb +1 -1
  87. data/app/views/layouts/decidim/footer/_main_links.html.erb +56 -28
  88. data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile_tablet.html.erb +1 -1
  89. data/app/views/layouts/decidim/shared/_layout_center.html.erb +1 -1
  90. data/app/views/layouts/decidim/shared/_layout_item.html.erb +1 -1
  91. data/app/views/layouts/decidim/shared/_layout_two_col.html.erb +1 -1
  92. data/config/locales/ar.yml +0 -25
  93. data/config/locales/bg.yml +0 -25
  94. data/config/locales/ca-IT.yml +37 -33
  95. data/config/locales/ca.yml +37 -33
  96. data/config/locales/cs.yml +12 -31
  97. data/config/locales/de.yml +5 -42
  98. data/config/locales/el.yml +0 -22
  99. data/config/locales/en.yml +36 -32
  100. data/config/locales/es-MX.yml +36 -32
  101. data/config/locales/es-PY.yml +36 -32
  102. data/config/locales/es.yml +36 -32
  103. data/config/locales/eu.yml +72 -70
  104. data/config/locales/fi-plain.yml +37 -32
  105. data/config/locales/fi.yml +37 -32
  106. data/config/locales/fr-CA.yml +16 -28
  107. data/config/locales/fr.yml +16 -28
  108. data/config/locales/gl.yml +0 -22
  109. data/config/locales/hu.yml +0 -22
  110. data/config/locales/id-ID.yml +0 -21
  111. data/config/locales/is-IS.yml +0 -6
  112. data/config/locales/it.yml +1 -20
  113. data/config/locales/ja.yml +52 -44
  114. data/config/locales/lb.yml +0 -23
  115. data/config/locales/lt.yml +0 -24
  116. data/config/locales/lv.yml +0 -21
  117. data/config/locales/nl.yml +0 -23
  118. data/config/locales/no.yml +0 -23
  119. data/config/locales/pl.yml +4 -27
  120. data/config/locales/pt-BR.yml +2 -40
  121. data/config/locales/pt.yml +0 -23
  122. data/config/locales/ro-RO.yml +1 -32
  123. data/config/locales/ru.yml +0 -8
  124. data/config/locales/sk.yml +1 -39
  125. data/config/locales/sv.yml +6 -36
  126. data/config/locales/tr-TR.yml +0 -24
  127. data/config/locales/uk.yml +0 -6
  128. data/config/locales/zh-CN.yml +0 -21
  129. data/config/locales/zh-TW.yml +0 -24
  130. data/db/migrate/20250217192438_convert_user_groups_into_users.rb +3 -2
  131. data/decidim-core.gemspec +3 -0
  132. data/lib/decidim/api/functions/user_entity_list.rb +2 -0
  133. data/lib/decidim/attachment_attributes.rb +58 -9
  134. data/lib/decidim/command.rb +1 -1
  135. data/lib/decidim/content_renderers/base_renderer.rb +112 -0
  136. data/lib/decidim/content_renderers/blob_renderer.rb +4 -7
  137. data/lib/decidim/content_renderers/mention_resource_renderer.rb +10 -6
  138. data/lib/decidim/content_renderers/resource_renderer.rb +16 -7
  139. data/lib/decidim/content_renderers/user_renderer.rb +11 -9
  140. data/lib/decidim/core/content_blocks/registry_manager.rb +4 -4
  141. data/lib/decidim/core/engine.rb +8 -0
  142. data/lib/decidim/core/test/factories.rb +3 -0
  143. data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +10 -10
  144. data/lib/decidim/core/test/shared_examples/amendable/amendment_event_examples.rb +2 -2
  145. data/lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb +3 -3
  146. data/lib/decidim/core/test/shared_examples/comments_examples.rb +32 -6
  147. data/lib/decidim/core/test/shared_examples/has_space_in_mcell_examples.rb +2 -1
  148. data/lib/decidim/core/test/shared_examples/resource_liked_event_examples.rb +3 -3
  149. data/lib/decidim/core/version.rb +1 -1
  150. data/lib/decidim/core.rb +1 -1
  151. data/lib/decidim/map/autocomplete.rb +4 -3
  152. data/lib/decidim/map/dynamic_map.rb +3 -1
  153. data/lib/decidim/searchable.rb +5 -0
  154. data/lib/decidim/view_model.rb +1 -1
  155. data/lib/tasks/decidim_mailers_tasks.rake +31 -9
  156. metadata +32 -10
  157. data/app/commands/decidim/gallery_methods.rb +0 -107
  158. data/app/packs/src/decidim/vendor/tribute.js +0 -1890
  159. data/app/packs/stylesheets/decidim/_tribute.scss +0 -36
  160. data/app/views/decidim/participants_account_mailer/removal_notification.html.erb +0 -11
@@ -424,7 +424,7 @@ fi:
424
424
  wizard_step_form:
425
425
  steps:
426
426
  '1': Luo muutos
427
- '2': Julkaise muutoksesi
427
+ '2': Julkaise muutos
428
428
  anonymous_user: Anonyymi
429
429
  application:
430
430
  document:
@@ -664,6 +664,13 @@ fi:
664
664
  all: Kaikki
665
665
  filter_taxonomy_values:
666
666
  all: Kaikki
667
+ delete_user_mailer:
668
+ delete:
669
+ body_1: Tilisi on poistettu käytöstä ja se ei ole enää käytettävissä. Henkilötietosi on tarkoitus poistaa pysyvästi tietojen säilyttämiskäytäntöjemme mukaisesti.
670
+ body_2: Turvallisuussyistä tietyt vahvistuksiin liittyvät tiedot säilytetään. Jos luot uuden tilin ja vahvistat sen uudestaan, tiedot voidaan liittää uuteen tiliisi.
671
+ greetings_html: Terveisin,<br/><a href="%{organization_url}">%{organization_name}</a>
672
+ hello: Hei %{username},
673
+ subject: Tilisi on poistettu
667
674
  devise:
668
675
  omniauth_registrations:
669
676
  create:
@@ -877,13 +884,13 @@ fi:
877
884
  affected_user:
878
885
  email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hyväksytty. Voit tutustua siihen sivulta:'
879
886
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet laatinut kohteen %{amendable_title}.
880
- email_subject: Kohdetta %{amendable_title} koskeva muutos on hyväksytty käyttäjältä %{emendation_author_nickname}
881
- notification_title: Käyttäjän <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> luoma <a href="%{emendation_path}">muutos</a> hyväksyttiin kohteelle <a href="%{amendable_path}">%{amendable_title}</a>.
887
+ email_subject: Muutos hyväksytty kohteelle %{amendable_title} osallistujalta %{emendation_author_name}
888
+ notification_title: Osallistujan <a href="%{emendation_author_path}">%{emendation_author_name}</a> luoma <a href="%{emendation_path}">muutos</a> hyväksyttiin kohteelle <a href="%{amendable_path}">%{amendable_title}</a>.
882
889
  follower:
883
890
  email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hyväksytty. Voit tutustua siihen sivulta:'
884
891
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
885
- email_subject: Kohdetta %{amendable_title} koskeva muutos on hyväksytty käyttäjältä %{emendation_author_nickname}
886
- notification_title: Käyttäjän <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> luoma <a href="%{emendation_path}">muutos</a> hyväksyttiin kohteelle <a href="%{amendable_path}">%{amendable_title}</a>.
892
+ email_subject: Muutos hyväksytty kohteelle %{amendable_title} osallistujalta %{emendation_author_name}
893
+ notification_title: Osallistujan <a href="%{emendation_author_path}">%{emendation_author_name}</a> luoma <a href="%{emendation_path}">muutos</a> hyväksyttiin kohteelle <a href="%{amendable_path}">%{amendable_title}</a>.
887
894
  amendment_created:
888
895
  affected_user:
889
896
  email_intro: 'Uusi muutos on luotu kohteelle %{amendable_title}. Voit tutustua siihen sivulta:'
@@ -899,29 +906,29 @@ fi:
899
906
  affected_user:
900
907
  email_intro: 'Kohdetta %{amendable_title} koskeva muutos on julkaistu uutena kohteena %{amendable_type}. Voit tutustua siihen sivulta:'
901
908
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet laatinut kohteen %{amendable_title}.
902
- email_subject: Käyttäjän %{emendation_author_nickname} laatima muutos on julkaistu uutena %{amendable_type} -kohteena
903
- notification_title: <a href="%{emendation_path}">Hylätty muutos</a> kohteelle <a href="%{amendable_path}">%{amendable_title}</a> on julkaistu uutena %{amendable_type} -kohteena käyttäjän <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> toimesta.
909
+ email_subject: Osallistujan %{emendation_author_name} laatima muutos on julkaistu uutena %{amendable_type} -kohteena
910
+ notification_title: <a href="%{emendation_path}">Hylätty muutos</a> kohteelle <a href="%{amendable_path}">%{amendable_title}</a> on julkaistu uutena %{amendable_type} -kohteena osallistujan <a href="%{emendation_author_path}">%{emendation_author_name}</a> toimesta.
904
911
  follower:
905
912
  email_intro: 'Kohdetta %{amendable_title} koskeva muutos on julkaistu uutena kohteena %{amendable_type}. Voit tutustua siihen sivulta:'
906
913
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
907
- email_subject: Muutos %{emendation_author_nickname} on julkaistu uutena %{amendable_type} -kohteena
908
- notification_title: <a href="%{emendation_path}">Hylätty muutos</a> kohteelle <a href="%{amendable_path}">%{amendable_title}</a> on julkaistu uutena %{amendable_type} -kohteena käyttäjän <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> toimesta.
914
+ email_subject: Osallistujan %{emendation_author_name} laatima muutos on julkaistu uutena %{amendable_type} -kohteena
915
+ notification_title: <a href="%{emendation_path}">Hylätty muutos</a> kohteelle <a href="%{amendable_path}">%{amendable_title}</a> on julkaistu uutena %{amendable_type} -kohteena osallistujan <a href="%{emendation_author_path}">%{emendation_author_name}</a> toimesta.
909
916
  amendment_rejected:
910
917
  affected_user:
911
918
  email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hylätty. Voit tutustua siihen sivulta:'
912
919
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet laatinut kohteen %{amendable_title}.
913
- email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty käyttäjältä %{emendation_author_nickname}
914
- notification_title: Käyttäjän <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> laatima <a href="%{emendation_path}">muutos</a> hylättiin kohteelle <a href="%{amendable_path}">%{amendable_title}</a>.
920
+ email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty käyttäjältä %{emendation_author_name}
921
+ notification_title: Osallistujan <a href="%{emendation_author_path}">%{emendation_author_name}</a> laatima <a href="%{emendation_path}">muutos</a> hylättiin kohteelle <a href="%{amendable_path}">%{amendable_title}</a>.
915
922
  follower:
916
923
  email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hylätty. Voit tutustua siihen sivulta:'
917
924
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
918
- email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty käyttäjältä %{emendation_author_nickname}
919
- notification_title: Käyttäjän <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> laatima <a href="%{emendation_path}">muutos</a> hylättiin kohteelle <a href="%{amendable_path}">%{amendable_title}</a>.
925
+ email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty osallistujalta %{emendation_author_name}
926
+ notification_title: Osallistujan <a href="%{emendation_author_path}">%{emendation_author_name}</a> laatima <a href="%{emendation_path}">muutos</a> hylättiin kohteelle <a href="%{amendable_path}">%{amendable_title}</a>.
920
927
  emendation_promoted:
921
928
  follower:
922
929
  email_intro: 'Muutos on julkaistu kohteelle %{amendable_title}. Näet sen tältä sivulta:'
923
930
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet laatinut kohteen %{amendable_title}.
924
- email_subject: Laatijan %{emendation_author_nickname} muutos on julkaistu uutena kohteena %{amendable_type}
931
+ email_subject: Osallistujan %{emendation_author_name} laatima muutos on julkaistu uutena %{amendable_type} -kohteena
925
932
  attachments:
926
933
  attachment_created:
927
934
  email_intro: 'Uusi asiakirja on lisätty kohteeseen %{resource_title}. Voit tutustua siihen sivulta:'
@@ -972,24 +979,24 @@ fi:
972
979
  notification_title: |-
973
980
  Hallintakäyttäjä poisti luomasi kohteen %{resource_type}, koska se on ilmoitettu asiattomana syyllä "%{report_reasons}".</br><i>%{resource_content}</i>
974
981
  resource_liked:
975
- email_intro: '%{liker_name} %{liker_nickname}, jota seuraat, on juuri tykännyt kohteesta "%{resource_title}" ja uskomme, että tämä voi kiinnostaa sinua. Tutustu tykättyyn kohteeseen ja osallistu:'
976
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet seuraat käyttäjää %{liker_nickname}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
977
- email_subject: "%{liker_nickname} teki uuden tykkäyksen"
978
- notification_title: <a href="%{liker_path}">%{liker_name} %{liker_nickname}</a> tykkäsi kohteesta <a href="%{resource_path}">%{resource_title}</a> (%{resource_type}).
982
+ email_intro: 'Seuraamasi osallistuja %{liker_name} tykkäsi kohteesta "%{resource_title}" ja uskomme, että tämä voi kiinnostaa sinua. Tutustu tykättyyn asiaan ja osallistu:'
983
+ email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet seuraat käyttäjää %{liker_name}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
984
+ email_subject: "%{liker_name} lisäsi uuden tykkäyksen"
985
+ notification_title: <a href="%{liker_path}">%{liker_name} </a> tykkäsi kohteesta <a href="%{resource_path}">%{resource_title}</a> %{resource_type}.
979
986
  resources:
980
987
  soft_deleted:
981
988
  notification_title: Ylläpitäjä poisti kohteen "%{resource_type}" "%{resource_title}".
982
989
  users:
983
990
  profile_updated:
984
- email_intro: Seuraamasi käyttäjän %{name} (%{nickname}) <a href="%{resource_url}">profiilisivua</a> on päivitetty.
985
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat käyttäjää %{nickname}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
986
- email_subject: "%{nickname} päivitti profiiliaan"
987
- notification_title: Seuraamasi käyttäjän %{name} (%{nickname}) <a href="%{resource_path}">profiilisivua</a> on päivitetty.
991
+ email_intro: Seuraamasi osallistujan %{name} <a href="%{resource_url}">profiilisivua</a> on päivitetty.
992
+ email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet seuraat osallistujaa %{name}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
993
+ email_subject: "%{name} päivitti profiiliaan"
994
+ notification_title: Seuraamasi osallistujan %{name} <a href="%{resource_path}">profiilisivua</a> on päivitetty.
988
995
  user_officialized:
989
- email_intro: Osallistuja %{name} (%{nickname}) on virallistettu.
996
+ email_intro: Osallistuja %{name} on virallistettu.
990
997
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet tämän organisaation hallintakäyttäjä.
991
998
  email_subject: "%{name} on virallistettu"
992
- notification_title: Osallistuja %{name} (%{nickname}) on virallistettu.
999
+ notification_title: Osallistuja %{name} on virallistettu.
993
1000
  export_mailer:
994
1001
  download_your_data_export:
995
1002
  click_button_html: Napsauta seuraavaa linkkiä ladataksesi tietosi.<br/>Tiedosto on ladattavissa %{date} saakka.
@@ -1184,6 +1191,8 @@ fi:
1184
1191
  dynamic:
1185
1192
  screen_reader_explanation: Seuraavassa elementissä on kartta, joka esittää tämän sivun tietueet karttapisteinä. Elementtiä voi käyttää ruudunlukijalla, mutta se voi olla vaikeaselkoinen.
1186
1193
  skip_button: Ohita kartta
1194
+ zoom_in: Lähennä
1195
+ zoom_out: Loitonna
1187
1196
  static:
1188
1197
  latlng_text: 'leveysaste: %{latitude}, pituusaste: %{longitude}'
1189
1198
  map_service_brand: OpenStreetMap
@@ -1214,7 +1223,6 @@ fi:
1214
1223
  create:
1215
1224
  error: Keskustelun aloittaminen epäonnistui. Yritä myöhemmin uudestaan.
1216
1225
  error_modal:
1217
- close: Sulje ikkuna
1218
1226
  correct_errors: Korjaa virheet ja yritä uudestaan.
1219
1227
  intro: 'Viestisi sisältää seuraavia virheitä:'
1220
1228
  ok: OK
@@ -1340,6 +1348,7 @@ fi:
1340
1348
  own_activity: Oma toiminta, kuten omia ehdotuksia koskevat kommentit tai maininnat
1341
1349
  push_notifications: Push-ilmoitukset
1342
1350
  push_notifications_reminder: Mikäli haluat vastaanottaa push-ilmoituksia alustalta, sinun on sallittava ne ensin selaimesi asetuksista tälle sivustolle.
1351
+ push_notifications_unsupported_browser: Selaimesi ei ole tuettu.
1343
1352
  receive_notifications_about: Haluan saada ilmoituksia
1344
1353
  update_notifications_settings: Tallenna muutokset
1345
1354
  update:
@@ -1525,13 +1534,9 @@ fi:
1525
1534
  log_in: kirjaudu sisään
1526
1535
  never_logged_in: et ole koskaan kirjautunut palveluun
1527
1536
  subject: Varoitus passiivisesta käyttäjätilistä
1528
- removal_notification:
1529
- body: Tilisi palvelussa %{organization_name} on poistettu, koska tiliä ei ole käytetty pitkään aikaan.
1530
- greetings_html: |
1531
- Terveisin,<br>
1532
- %{organization_name}
1533
- hello: Hei %{username},
1534
- subject: Käyttämättä ollut tili on poistettu
1537
+ participatory_space:
1538
+ labels:
1539
+ reference: Tilan viite
1535
1540
  passwords:
1536
1541
  update:
1537
1542
  error: Salasanan päivitys epäonnistui.
@@ -431,6 +431,7 @@ fr-CA:
431
431
  explanation: Procédure d'autorisation factice
432
432
  name: Procédure d'autorisation factice
433
433
  ephemeral_dummy_authorization_handler:
434
+ explanation: Obtenir une vérification en saisissant un numéro de document se terminant par « X ».
434
435
  fields:
435
436
  allowed_postal_codes: Codes postaux autorisés (séparés par des virgules)
436
437
  document_number: Numéro du document
@@ -518,7 +519,7 @@ fr-CA:
518
519
  global:
519
520
  amendments_enabled: Modifications activées
520
521
  comments_enabled: Activer le module de commentaire
521
- comments_max_length: Longueur maximale des commentaires
522
+ comments_max_length: Nombre maximum de caractères par commentaire
522
523
  dummy_global_attribute1: Attribut factice 1
523
524
  dummy_global_attribute2: Attribut factice 2
524
525
  dummy_global_translatable_text: Texte traduisible factice
@@ -621,6 +622,13 @@ fr-CA:
621
622
  all: Tout
622
623
  filter_scope_values:
623
624
  all: Tout
625
+ delete_user_mailer:
626
+ delete:
627
+ body_1: Votre compte a été désactivé et n'est plus accessible. La suppression permanente de vos données personnelles a été programmée, conformément à nos politiques de conservation.
628
+ body_2: Pour des raisons de sécurité, certaines données relatives à l’autorisation seront conservées ; si vous créez un nouveau compte et que vous l'autorisez à nouveau, elles peuvent être reliées à votre nouveau compte.
629
+ greetings_html: Cordialement,<br/><a href="%{organization_url}">%{organization_name}</a>
630
+ hello: Cher(ère) %{username},
631
+ subject: Votre compte a été supprimé
624
632
  devise:
625
633
  omniauth_registrations:
626
634
  create:
@@ -783,13 +791,9 @@ fr-CA:
783
791
  affected_user:
784
792
  email_intro: 'Une modification a été acceptée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
785
793
  email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de %{amendable_title}.
786
- email_subject: Un amendement accepté pour %{amendable_title} du %{emendation_author_nickname}
787
- notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été accepté pour <a href="%{amendable_path}">%{amendable_title}</a>.
788
794
  follower:
789
795
  email_intro: 'Une modification a été acceptée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
790
796
  email_outro: Vous avez reçu cette notification parce que vous suivez %{amendable_title}. Vous pouvez cesser de recevoir des notifications en suivant le lien précédent.
791
- email_subject: Un amendement accepté pour %{amendable_title} du %{emendation_author_nickname}
792
- notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été accepté pour <a href="%{amendable_path}">%{amendable_title}</a>.
793
797
  amendment_created:
794
798
  affected_user:
795
799
  email_intro: 'Une nouvelle modification a été créée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
@@ -805,29 +809,20 @@ fr-CA:
805
809
  affected_user:
806
810
  email_intro: 'Une modification rejetée pour %{amendable_title} a été promue en %{amendable_type}indépendante. Vous pouvez le voir sur cette page:'
807
811
  email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de %{amendable_title}.
808
- email_subject: Un amendement de %{emendation_author_nickname} a été publié en tant que nouveau %{amendable_type}
809
- notification_title: A <a href="%{emendation_path}">a rejeté l' amendement</a> pour <a href="%{amendable_path}">%{amendable_title}</a> a été publiée en tant que nouveau %{amendable_type} par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
810
812
  follower:
811
813
  email_intro: 'Une modification rejetée pour %{amendable_title} a été promue en %{amendable_type}indépendante. Vous pouvez le voir sur cette page:'
812
814
  email_outro: Vous avez reçu cette notification parce que vous suivez %{amendable_title}. Vous pouvez cesser de recevoir des notifications en suivant le lien précédent.
813
- email_subject: Un amendement de %{emendation_author_nickname} a été publié en tant que nouveau %{amendable_type}
814
- notification_title: A <a href="%{emendation_path}">a rejeté l' amendement</a> pour <a href="%{amendable_path}">%{amendable_title}</a> a été publiée en tant que nouveau %{amendable_type} par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
815
815
  amendment_rejected:
816
816
  affected_user:
817
817
  email_intro: 'Une modification a été rejetée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
818
818
  email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de %{amendable_title}.
819
- email_subject: Un amendement rejeté pour %{amendable_title} à %{emendation_author_nickname}
820
- notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été rejetée pour <a href="%{amendable_path}">%{amendable_title}</a>.
821
819
  follower:
822
820
  email_intro: 'Une modification a été rejetée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
823
821
  email_outro: Vous avez reçu cette notification parce que vous suivez %{amendable_title}. Vous pouvez cesser de recevoir des notifications en suivant le lien précédent.
824
- email_subject: Un amendement rejeté pour %{amendable_title} à %{emendation_author_nickname}
825
- notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été rejetée pour <a href="%{amendable_path}">%{amendable_title}</a>.
826
822
  emendation_promoted:
827
823
  follower:
828
824
  email_intro: 'Une correction a été publiée pour %{amendable_title}. Vous pouvez la voir sur cette page :'
829
825
  email_outro: Vous avez reçu cette notification parce que vous êtes un(e) auteur/trice de %{amendable_title}.
830
- email_subject: Une correction réalisée par %{emendation_author_nickname} a été publiée en tant que nouvelle %{amendable_type}
831
826
  attachments:
832
827
  attachment_created:
833
828
  email_intro: 'Un nouveau document a été ajouté à %{resource_title}. Vous pouvez le voir sur cette page :'
@@ -870,15 +865,10 @@ fr-CA:
870
865
  <i>%{resource_content}</i>
871
866
  users:
872
867
  profile_updated:
873
- email_intro: Le <a href="%{resource_url}">profil public</a> de %{name} (%{nickname}), que vous suivez, a été mis à jour.
874
- email_outro: Vous recevez cette notification car vous suivez « %{nickname} ». Vous pouvez cesser de le suivre à partir du lien précédent.
875
- email_subject: "%{nickname} a mis à jour son profil public"
876
- notification_title: Le <a href="%{resource_path}">profil public</a> de %{name} (%{nickname}), que vous suivez, a été mis à jour.
868
+ email_subject: "%{name} a mis à jour son profil"
877
869
  user_officialized:
878
- email_intro: Le participant %{name} (%{nickname}) a été officialisé.
879
870
  email_outro: Vous avez reçu cette notification parce que vous êtes un administrateur de l'organisation. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
880
871
  email_subject: "%{name} a été officialisé"
881
- notification_title: Le participant %{name} (%{nickname}) a été officialisé.
882
872
  export_mailer:
883
873
  download_your_data_export:
884
874
  click_button_html: Cliquez sur le lien suivant pour télécharger vos données.<br/>Le fichier sera disponible au téléchargement jusqu'à %{date}.
@@ -1060,6 +1050,8 @@ fr-CA:
1060
1050
  dynamic:
1061
1051
  screen_reader_explanation: L'élément suivant est une carte qui présente les éléments de cette page comme des points de carte. L'élément peut être utilisé avec un lecteur d'écran, mais il peut être difficile à comprendre.
1062
1052
  skip_button: Passer la carte
1053
+ zoom_in: Zoomer
1054
+ zoom_out: Dézoomer
1063
1055
  static:
1064
1056
  latlng_text: 'latitude : %{latitude}, longitude : %{longitude}'
1065
1057
  map_service_brand: OpenStreetMap
@@ -1090,7 +1082,6 @@ fr-CA:
1090
1082
  create:
1091
1083
  error: La conversation n'a pas commencé. Réessayez plus tard.
1092
1084
  error_modal:
1093
- close: Fermer la fenêtre de dialogue
1094
1085
  correct_errors: Veuillez corriger les erreurs et réessayer.
1095
1086
  intro: 'Il y a eu les erreurs suivantes avec votre message :'
1096
1087
  ok: Ok
@@ -1269,6 +1260,7 @@ fr-CA:
1269
1260
  badge: Le badge de l'utilisateur
1270
1261
  groups: L'identifiant et le nom du groupe d'utilisateurs
1271
1262
  id: L'identifiant unique de l'utilisateur
1263
+ name: Le nom d'affichage de l'utilisateur
1272
1264
  nickname: Le pseudonyme de l'utilisateur
1273
1265
  profile_url: L'url du profil
1274
1266
  index:
@@ -1377,13 +1369,9 @@ fr-CA:
1377
1369
  log_in: se connecter
1378
1370
  never_logged_in: jamais connecté
1379
1371
  subject: Avertissement de compte inactif
1380
- removal_notification:
1381
- body: Votre compte %{organization_name} a été supprimé en raison de son inactivité.
1382
- greetings_html: |
1383
- Cordialement,<br>
1384
- %{organization_name}
1385
- hello: Cher(ère) %{username},
1386
- subject: Compte inactif supprimé
1372
+ participatory_space:
1373
+ labels:
1374
+ reference: Référence de l'espace
1387
1375
  passwords:
1388
1376
  update:
1389
1377
  error: Il y a eu un problème lors de la mise à jour de votre mot de passe.
@@ -431,6 +431,7 @@ fr:
431
431
  explanation: Procédure d'autorisation factice
432
432
  name: Procédure d'autorisation factice
433
433
  ephemeral_dummy_authorization_handler:
434
+ explanation: Obtenir une vérification en saisissant un numéro de document se terminant par « X ».
434
435
  fields:
435
436
  allowed_postal_codes: Codes postaux autorisés (séparés par des virgules)
436
437
  document_number: Numéro du document
@@ -518,7 +519,7 @@ fr:
518
519
  global:
519
520
  amendments_enabled: Modifications activées
520
521
  comments_enabled: Activer le module de commentaire
521
- comments_max_length: Longueur maximale des commentaires
522
+ comments_max_length: Nombre maximum de caractères par commentaire
522
523
  dummy_global_attribute1: Attribut factice 1
523
524
  dummy_global_attribute2: Attribut factice 2
524
525
  dummy_global_translatable_text: Texte traduisible factice
@@ -621,6 +622,13 @@ fr:
621
622
  all: Tout
622
623
  filter_scope_values:
623
624
  all: Tout
625
+ delete_user_mailer:
626
+ delete:
627
+ body_1: Votre compte a été désactivé et n'est plus accessible. La suppression permanente de vos données personnelles a été programmée, conformément à nos politiques de conservation.
628
+ body_2: Pour des raisons de sécurité, certaines données relatives à l’autorisation seront conservées ; si vous créez un nouveau compte et que vous l'autorisez à nouveau, elles peuvent être reliées à votre nouveau compte.
629
+ greetings_html: Cordialement,<br/><a href="%{organization_url}">%{organization_name}</a>
630
+ hello: Cher(ère) %{username},
631
+ subject: Votre compte a été supprimé
624
632
  devise:
625
633
  omniauth_registrations:
626
634
  create:
@@ -783,13 +791,9 @@ fr:
783
791
  affected_user:
784
792
  email_intro: 'Une modification a été acceptée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
785
793
  email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de %{amendable_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”.
786
- email_subject: Un amendement accepté pour %{amendable_title} du %{emendation_author_nickname}
787
- notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été accepté pour <a href="%{amendable_path}">%{amendable_title}</a>.
788
794
  follower:
789
795
  email_intro: 'Une modification a été acceptée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
790
796
  email_outro: Vous avez reçu cette notification parce que vous suivez %{amendable_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”.
791
- email_subject: Un amendement accepté pour %{amendable_title} du %{emendation_author_nickname}
792
- notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été accepté pour <a href="%{amendable_path}">%{amendable_title}</a>.
793
797
  amendment_created:
794
798
  affected_user:
795
799
  email_intro: 'Une nouvelle modification a été créée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
@@ -805,29 +809,20 @@ fr:
805
809
  affected_user:
806
810
  email_intro: 'Une modification rejetée pour %{amendable_title} a été promue en %{amendable_type}indépendante. Vous pouvez le voir sur cette page:'
807
811
  email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de %{amendable_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”.
808
- email_subject: Un amendement de %{emendation_author_nickname} a été publié en tant que nouveau %{amendable_type}
809
- notification_title: A <a href="%{emendation_path}">a rejeté l' amendement</a> pour <a href="%{amendable_path}">%{amendable_title}</a> a été publiée en tant que nouveau %{amendable_type} par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
810
812
  follower:
811
813
  email_intro: 'Une modification rejetée pour %{amendable_title} a été promue en %{amendable_type}indépendante. Vous pouvez le voir sur cette page:'
812
814
  email_outro: Vous avez reçu cette notification parce que vous suivez %{amendable_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”.
813
- email_subject: Un amendement de %{emendation_author_nickname} a été publié en tant que nouveau %{amendable_type}
814
- notification_title: A <a href="%{emendation_path}">a rejeté l' amendement</a> pour <a href="%{amendable_path}">%{amendable_title}</a> a été publiée en tant que nouveau %{amendable_type} par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
815
815
  amendment_rejected:
816
816
  affected_user:
817
817
  email_intro: 'Une modification a été rejetée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
818
818
  email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de %{amendable_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”.
819
- email_subject: Un amendement rejeté pour %{amendable_title} à %{emendation_author_nickname}
820
- notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été rejetée pour <a href="%{amendable_path}">%{amendable_title}</a>.
821
819
  follower:
822
820
  email_intro: 'Une modification a été rejetée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
823
821
  email_outro: Vous avez reçu cette notification parce que vous suivez %{amendable_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”.
824
- email_subject: Un amendement rejeté pour %{amendable_title} à %{emendation_author_nickname}
825
- notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été rejetée pour <a href="%{amendable_path}">%{amendable_title}</a>.
826
822
  emendation_promoted:
827
823
  follower:
828
824
  email_intro: 'Une correction a été publiée pour %{amendable_title}. Vous pouvez la voir sur cette page :'
829
825
  email_outro: Vous avez reçu cette notification parce que vous êtes un(e) auteur/trice de %{amendable_title}.
830
- email_subject: Une correction réalisée par %{emendation_author_nickname} a été publiée en tant que nouvelle %{amendable_type}
831
826
  attachments:
832
827
  attachment_created:
833
828
  email_intro: 'Un nouveau document a été ajouté à %{resource_title}. Vous pouvez le voir sur cette page :'
@@ -870,15 +865,10 @@ fr:
870
865
  <i>%{resource_content}</i>
871
866
  users:
872
867
  profile_updated:
873
- email_intro: Le <a href="%{resource_url}">profil public</a> de %{name} (%{nickname}), que vous suivez, a été mis à jour.
874
- email_outro: Vous recevez cette notification car vous suivez « %{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”.
875
- email_subject: "%{nickname} a mis à jour son profil public"
876
- notification_title: Le <a href="%{resource_path}">profil public</a> de %{name} (%{nickname}), que vous suivez, a été mis à jour.
868
+ email_subject: "%{name} a mis à jour son profil"
877
869
  user_officialized:
878
- email_intro: Le participant %{name} (%{nickname}) a été officialisé.
879
870
  email_outro: Vous avez reçu cette notification parce que vous êtes un administrateur de l'organisation. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
880
871
  email_subject: "%{name} a été officialisé"
881
- notification_title: Le participant %{name} (%{nickname}) a été officialisé.
882
872
  export_mailer:
883
873
  download_your_data_export:
884
874
  click_button_html: Cliquez sur le lien suivant pour télécharger vos données.<br/>Le fichier sera disponible au téléchargement jusqu'à %{date}.
@@ -1060,6 +1050,8 @@ fr:
1060
1050
  dynamic:
1061
1051
  screen_reader_explanation: L'élément suivant est une carte qui présente les éléments de cette page comme des points de carte. L'élément peut être utilisé avec un lecteur d'écran, mais il peut être difficile à comprendre.
1062
1052
  skip_button: Passer la carte
1053
+ zoom_in: Zoomer
1054
+ zoom_out: Dézoomer
1063
1055
  static:
1064
1056
  latlng_text: 'latitude : %{latitude}, longitude : %{longitude}'
1065
1057
  map_service_brand: OpenStreetMap
@@ -1090,7 +1082,6 @@ fr:
1090
1082
  create:
1091
1083
  error: La conversation n'a pas commencé. Réessayez plus tard.
1092
1084
  error_modal:
1093
- close: Fermer la fenêtre de dialogue
1094
1085
  correct_errors: Veuillez corriger les erreurs et réessayer.
1095
1086
  intro: 'Il y a eu les erreurs suivantes avec votre message :'
1096
1087
  ok: Ok
@@ -1269,6 +1260,7 @@ fr:
1269
1260
  badge: Le badge de l'utilisateur
1270
1261
  groups: L'identifiant et le nom du groupe d'utilisateurs
1271
1262
  id: L'identifiant unique de l'utilisateur
1263
+ name: Le nom d'affichage de l'utilisateur
1272
1264
  nickname: Le pseudonyme de l'utilisateur
1273
1265
  profile_url: L'url du profil
1274
1266
  index:
@@ -1377,13 +1369,9 @@ fr:
1377
1369
  log_in: se connecter
1378
1370
  never_logged_in: jamais connecté
1379
1371
  subject: Avertissement de compte inactif
1380
- removal_notification:
1381
- body: Votre compte %{organization_name} a été supprimé en raison de son inactivité.
1382
- greetings_html: |
1383
- Cordialement,<br>
1384
- %{organization_name}
1385
- hello: Cher(ère) %{username},
1386
- subject: Compte inactif supprimé
1372
+ participatory_space:
1373
+ labels:
1374
+ reference: Référence de l'espace
1387
1375
  passwords:
1388
1376
  update:
1389
1377
  error: Il y a eu un problème lors de la mise à jour de votre mot de passe.
@@ -161,9 +161,6 @@ gl:
161
161
  back: De volta
162
162
  heading: Revisa a modificación
163
163
  send: Aceptar a emenda
164
- wizard_step_form:
165
- steps:
166
- '1': Crea a túa emenda
167
164
  anonymous_user: Anónimo
168
165
  application:
169
166
  documents:
@@ -319,13 +316,9 @@ gl:
319
316
  affected_user:
320
317
  email_intro: 'A emenda foi aceptada para %{amendable_title}. Podes velo desde esta páxina:'
321
318
  email_outro: Recibiches esta notificación porque es un autor de %{amendable_title}.
322
- email_subject: Unha enmenda aceptada para %{amendable_title} de %{emendation_author_nickname}
323
- notification_title: A <a href="%{emendation_path}">cambio</a> creado por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi aceptado para <a href="%{amendable_path}">%{amendable_title}</a>.
324
319
  follower:
325
320
  email_intro: 'A emenda foi aceptada para %{amendable_title}. Podes velo desde esta páxina:'
326
321
  email_outro: Recibiches esta notificación porque estás seguindo %{amendable_title}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
327
- email_subject: Unha enmenda aceptada para %{amendable_title} de %{emendation_author_nickname}
328
- notification_title: A <a href="%{emendation_path}">cambio</a> creado por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi aceptado para <a href="%{amendable_path}">%{amendable_title}</a>.
329
322
  amendment_created:
330
323
  affected_user:
331
324
  email_intro: 'Creouse unha nova emenda para %{amendable_title}. Podes velo desde esta páxina:'
@@ -341,24 +334,16 @@ gl:
341
334
  affected_user:
342
335
  email_intro: 'Unha enmenda rexeitada para %{amendable_title} foi promovida a unha independente %{amendable_type}. Podes velo desde esta páxina:'
343
336
  email_outro: Recibiches esta notificación porque es un autor de %{amendable_title}.
344
- email_subject: Unha emenda de %{emendation_author_nickname} publicouse como un novo %{amendable_type}
345
- notification_title: Un <a href="%{emendation_path}">rexeitado cambio</a> para <a href="%{amendable_path}">%{amendable_title}</a> publicouse como unha nova %{amendable_type} por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
346
337
  follower:
347
338
  email_intro: 'Unha enmenda rexeitada para %{amendable_title} foi promovida a unha independente %{amendable_type}. Podes velo desde esta páxina:'
348
339
  email_outro: Recibiches esta notificación porque estás seguindo %{amendable_title}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
349
- email_subject: Unha emenda de %{emendation_author_nickname} publicouse como un novo %{amendable_type}
350
- notification_title: Un <a href="%{emendation_path}">rexeitado cambio</a> para <a href="%{amendable_path}">%{amendable_title}</a> publicouse como unha nova %{amendable_type} por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
351
340
  amendment_rejected:
352
341
  affected_user:
353
342
  email_intro: 'Rexeitouse unha modificación para %{amendable_title}. Podes velo desde esta páxina:'
354
343
  email_outro: Recibiches esta notificación porque es un autor de %{amendable_title}.
355
- email_subject: Unha enmenda rexeitada para %{amendable_title} de %{emendation_author_nickname}
356
- notification_title: A <a href="%{emendation_path}">cambio</a> creado por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi rexeitado por <a href="%{amendable_path}">%{amendable_title}</a>.
357
344
  follower:
358
345
  email_intro: 'Rexeitouse unha modificación para %{amendable_title}. Podes velo desde esta páxina:'
359
346
  email_outro: Recibiches esta notificación porque estás seguindo %{amendable_title}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
360
- email_subject: Unha enmenda rexeitada para %{amendable_title} de %{emendation_author_nickname}
361
- notification_title: A <a href="%{emendation_path}">cambio</a> creado por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi rexeitado por <a href="%{amendable_path}">%{amendable_title}</a>.
362
347
  attachments:
363
348
  attachment_created:
364
349
  email_intro: 'Engadiuse un novo documento a %{resource_title}. Podes velo desde esta páxina:'
@@ -382,16 +367,9 @@ gl:
382
367
  level_up:
383
368
  email_outro: Recibiches esta notificación porque realizaches actividade no noso sitio web.
384
369
  users:
385
- profile_updated:
386
- email_intro: O <a href="%{resource_url}">profile páxina</a> de %{name} (%{nickname}), quen está a seguir, foi actualizado.
387
- email_outro: Recibiches esta notificación porque estás seguindo %{nickname}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
388
- email_subject: "%{nickname} actualizou o seu perfil"
389
- notification_title: O <a href="%{resource_path}">profile páxina</a> de %{name} (%{nickname}), quen está a seguir, foi actualizado.
390
370
  user_officialized:
391
- email_intro: O participante %{name} (%{nickname}) foi oficializado.
392
371
  email_outro: Recibiches esta notificación por que es administrador da organización.
393
372
  email_subject: "%{name} foi oficializado"
394
- notification_title: O participante %{name} (%{nickname}) foi oficializado.
395
373
  export_mailer:
396
374
  download_your_data_export:
397
375
  download: Descarga
@@ -299,9 +299,6 @@ hu:
299
299
  success: A módosító javaslat sikeresen frissítve.
300
300
  withdraw:
301
301
  success: A módosítás visszavonása sikeres.
302
- wizard_step_form:
303
- steps:
304
- '1': Készítse el a módosítását
305
302
  anonymous_user: Névtelen
306
303
  application:
307
304
  document:
@@ -419,7 +416,6 @@ hu:
419
416
  global:
420
417
  amendments_enabled: A módosítások engedélyezve vannak
421
418
  comments_enabled: Megjegyzések engedélyezve
422
- comments_max_length: A hozzászólások maximális hossza
423
419
  dummy_global_attribute1: Dummy tulajdonság 1
424
420
  dummy_global_attribute2: Dummy tulajdonság 2
425
421
  dummy_global_translatable_text: Kenyérszöveg - nem valódi fordítható szöveg
@@ -587,13 +583,9 @@ hu:
587
583
  affected_user:
588
584
  email_intro: 'Módosítást fogadtak el %{amendable_title}. Láthatja ezt erről az oldalról:'
589
585
  email_outro: Ezt az értesítést megkaptuk, mert Ön szerzője a %{amendable_title}.
590
- email_subject: Egy módosítás elfogadva %{amendable_title} innen %{emendation_author_nickname}
591
- notification_title: A <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> által létrehozott <a href="%{emendation_path}"></a> módosítás elfogadott <a href="%{amendable_path}">%{amendable_title}</a>.
592
586
  follower:
593
587
  email_intro: 'Módosítást fogadtak el %{amendable_title}. Láthatja ezt az oldalról:'
594
588
  email_outro: Ezt az értesítést megkapta, mert %{amendable_title} követi. Leállíthatja az értesítések fogadását az előző link segítségével.
595
- email_subject: Egy módosítás elfogadva %{amendable_title} -ra %{emendation_author_nickname}-tól
596
- notification_title: A <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> által létrehozott <a href="%{emendation_path}"></a> módosítás elfogadásra került. <a href="%{amendable_path}">%{amendable_title}</a>.
597
589
  amendment_created:
598
590
  affected_user:
599
591
  email_intro: 'Új módosítási javaslat érkezett - %{amendable_title}. Erről az oldalról tudod megnézni:'
@@ -609,24 +601,16 @@ hu:
609
601
  affected_user:
610
602
  email_intro: 'Ezt az elutasított módosítást %{amendable_title} önálló módosítássá %{amendable_type} emelték. Láthatja ezt az oldalról:'
611
603
  email_outro: Ezt az értesítést azért kapta, mert Ön szerzője a %{amendable_title} dokumentumnak.
612
- email_subject: A %{emendation_author_nickname} ból származó módosítást új szövegként tették közzé %{amendable_type}
613
- notification_title: A <a href="%{emendation_path}">elutasított módosítás </a> erre<a href="%{amendable_path}">%{amendable_title}</a> újként %{amendable_type} került közzétételre <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
614
604
  follower:
615
605
  email_intro: 'A %{amendable_title} című elutasított módosítást önálló %{amendable_type} módosításra emelték. Láthatja ezt az oldalról:'
616
606
  email_outro: Ezt az értesítést azért kapta, mert a %{amendable_title} követi. Leállíthatja az értesítések fogadását az előző link segítségével.
617
- email_subject: A %{emendation_author_nickname} tól származó módosítást új szövegként tették közzé %{amendable_type}
618
- notification_title: A <a href="%{emendation_path}">elutasított módosítása </a> a <a href="%{amendable_path}">%{amendable_title}</a> re vonatkozóan újként került közzétételre %{amendable_type} <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
619
607
  amendment_rejected:
620
608
  affected_user:
621
609
  email_intro: 'Egy módosítást elutasítottunk %{amendable_title}. Láthatja ezt az oldalról:'
622
610
  email_outro: Ezt az értesítést azért kapta, mert Ön szerzője a %{amendable_title} dokumentumnak.
623
- email_subject: Egy módosítás elutasítva %{amendable_title} melynek szerzője %{emendation_author_nickname}
624
- notification_title: A <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> által létrehozott <a href="%{emendation_path}"></a> módosítást elutasították <a href="%{amendable_path}">%{amendable_title}</a>.
625
611
  follower:
626
612
  email_intro: 'Egy módosítást elutasítottunk %{amendable_title}. Látható ez az oldalról:'
627
613
  email_outro: Ezt az értesítést azért kapta, mert a %{amendable_title}-t követi. Leállíthatja az értesítések fogadását az előző link segítségével.
628
- email_subject: "A %{emendation_author_nickname} által létrehozott módosítás itt \n%{amendable_title} elutasításra került"
629
- notification_title: A <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> által létrehozott <a href="%{emendation_path}"></a> módosítás elutasításra került <a href="%{amendable_path}">%{amendable_title}</a>.
630
614
  attachments:
631
615
  attachment_created:
632
616
  email_intro: 'Új dokumentumot adtak hozzá a következőhöz: %{resource_title}. Innen érheted el:'
@@ -668,11 +652,6 @@ hu:
668
652
  Egy adminisztrátor eltávolította a %{resource_type} -ját mert %{report_reasons}-ként jelentették </br>
669
653
  <i>%{resource_content}</i>
670
654
  users:
671
- profile_updated:
672
- email_intro: '%{name} (%{nickname}) (akit követsz) <a href="%{resource_url}">profil oldala</a> frissült.'
673
- email_outro: 'Ezt az értesítést azért kaptad, mert őt követed: "%{nickname}". Az értesítéseket a következő linkre kattintva kapcsolhatod ki.'
674
- email_subject: "%{nickname} frissítette profilját"
675
- notification_title: '%{name} (%{nickname}) (akit egyébként követsz) <a href="%{resource_path}">profil oldala</a> frissült.'
676
655
  user_officialized:
677
656
  email_outro: Azért kapta ezt az értesítést, mert Ön a szervezet adminisztrátora.
678
657
  email_subject: "%{name} regisztrációja hivatalossá lett téva"
@@ -840,7 +819,6 @@ hu:
840
819
  create:
841
820
  error: A beszélgetés nem kezdődött el. Próbáld újra később.
842
821
  error_modal:
843
- close: Ablak bezárás
844
822
  correct_errors: Kérjük javítsa a hibákat és próbálja újra.
845
823
  intro: 'A következő hibákat tartalmazza az üzenet:'
846
824
  ok: OK