decidim-core 0.32.0.rc2 → 0.32.0
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/app/cells/decidim/amendable/amend_button_card/show.erb +2 -2
- data/app/cells/decidim/author_cell.rb +0 -4
- data/app/cells/decidim/card_metadata_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/cta_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/hero_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_content_banner_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_content_banner_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_participatory_spaces_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/participatory_space_hero_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/static_page/section_settings_form/show.erb +3 -1
- data/app/cells/decidim/content_blocks/static_page/summary_settings_form/show.erb +3 -1
- data/app/cells/decidim/content_blocks/static_page/two_pane_section_settings_form/show.erb +4 -2
- data/app/cells/decidim/resource_types_filter/show.erb +2 -2
- data/app/commands/decidim/destroy_account.rb +12 -1
- data/app/commands/decidim/multiple_attachments_methods.rb +28 -27
- data/app/controllers/concerns/decidim/devise_controllers.rb +9 -0
- data/app/events/decidim/amendable/amendment_base_event.rb +7 -1
- data/app/jobs/decidim/process_inactive_participant_job.rb +0 -7
- data/app/mailers/decidim/delete_user_mailer.rb +14 -0
- data/app/mailers/decidim/participants_account_mailer.rb +0 -16
- data/app/models/decidim/moderation.rb +1 -1
- data/app/models/decidim/participatory_space/member.rb +1 -1
- data/app/models/decidim/user_base_entity.rb +17 -2
- data/app/models/decidim/user_moderation.rb +1 -1
- data/app/packs/src/decidim/controllers/breadcrumb_truncate/breadcrumb_truncate.test.js +230 -0
- data/app/packs/src/decidim/controllers/breadcrumb_truncate/controller.js +172 -0
- data/app/packs/src/decidim/controllers/form_validator/form_validator.js +6 -6
- data/app/packs/src/decidim/controllers/form_validator/form_validator.test.js +23 -1
- data/app/packs/src/decidim/controllers/main_menu/controller.js +33 -0
- data/app/packs/src/decidim/controllers/main_menu/main_menu.test.js +77 -0
- data/app/packs/src/decidim/controllers/mention/controller.js +296 -140
- data/app/packs/src/decidim/controllers/mention/input_mentions.test.js +120 -457
- data/app/packs/src/decidim/controllers/multiple_mentions/controller.js +68 -32
- data/app/packs/src/decidim/controllers/multiple_mentions/input_multiple_mentions.test.js +30 -23
- data/app/packs/src/decidim/direct_uploads/upload_field.js +4 -4
- data/app/packs/src/decidim/direct_uploads/upload_modal.js +11 -7
- data/app/packs/src/decidim/editor/common/suggestion.js +3 -1
- data/app/packs/src/decidim/editor/extensions/indent/index.js +9 -0
- data/app/packs/src/decidim/geocoding/reverse_geocoding.js +15 -5
- data/app/packs/src/decidim/geocoding/reverse_geocoding.test.js +197 -0
- data/app/packs/src/decidim/index.js +4 -3
- data/app/packs/src/decidim/sw/sw.js +1 -1
- data/app/packs/src/decidim/utilities/text.js +6 -6
- data/app/packs/stylesheets/decidim/_conversations.scss +14 -0
- data/app/packs/stylesheets/decidim/_dropdown.scss +1 -1
- data/app/packs/stylesheets/decidim/_editor_suggestions.scss +49 -0
- data/app/packs/stylesheets/decidim/_floating_help.scss +1 -1
- data/app/packs/stylesheets/decidim/_header.scss +41 -8
- data/app/packs/stylesheets/decidim/_tom_select.scss +23 -0
- data/app/packs/stylesheets/decidim/application.scss +2 -0
- data/app/packs/stylesheets/decidim/editor.scss +2 -33
- data/app/packs/stylesheets/decidim/geocoding_addons.scss +10 -2
- data/app/presenters/decidim/menu_item_presenter.rb +9 -3
- data/app/presenters/decidim/stats_presenter.rb +1 -1
- data/app/uploaders/decidim/image_uploader.rb +1 -1
- data/app/views/decidim/delete_user_mailer/delete.html.erb +6 -0
- data/app/views/decidim/gamification/badges/index.html.erb +1 -1
- data/app/views/decidim/homepage/show.html.erb +1 -1
- data/app/views/decidim/last_activities/index.html.erb +1 -1
- data/app/views/decidim/messaging/conversations/_error_modal.html.erb +11 -19
- data/app/views/decidim/messaging/conversations/error.js.erb +12 -7
- data/app/views/decidim/newsletters/unsubscribe.html.erb +1 -1
- data/app/views/decidim/offline/show.html.erb +1 -1
- data/app/views/decidim/pages/index.html.erb +1 -1
- data/app/views/decidim/profiles/show.html.erb +1 -1
- data/app/views/decidim/shared/_resource_actions.html.erb +4 -4
- data/app/views/decidim/user_activities/index.html.erb +1 -1
- data/app/views/layouts/decidim/_wrapper.html.erb +2 -2
- data/app/views/layouts/decidim/header/_menu.html.erb +1 -1
- data/app/views/layouts/decidim/header/_menu_breadcrumb_desktop.html.erb +31 -4
- data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile.html.erb +18 -13
- data/app/views/layouts/decidim/shared/_layout_center.html.erb +1 -1
- data/app/views/layouts/decidim/shared/_layout_item.html.erb +1 -1
- data/app/views/layouts/decidim/shared/_layout_two_col.html.erb +1 -1
- data/config/initializers/decidim_locale_aware_named_route_helper.rb +16 -0
- data/config/locales/ar.yml +0 -25
- data/config/locales/bg.yml +0 -25
- data/config/locales/ca-IT.yml +46 -35
- data/config/locales/ca.yml +46 -35
- data/config/locales/cs.yml +12 -34
- data/config/locales/de.yml +5 -46
- data/config/locales/el.yml +0 -22
- data/config/locales/en.yml +45 -34
- data/config/locales/es-MX.yml +45 -34
- data/config/locales/es-PY.yml +45 -34
- data/config/locales/es.yml +45 -34
- data/config/locales/eu.yml +85 -74
- data/config/locales/fi-plain.yml +46 -34
- data/config/locales/fi.yml +46 -34
- data/config/locales/fr-CA.yml +24 -30
- data/config/locales/fr.yml +24 -30
- data/config/locales/gl.yml +0 -22
- data/config/locales/hu.yml +0 -22
- data/config/locales/id-ID.yml +0 -21
- data/config/locales/is-IS.yml +0 -6
- data/config/locales/it.yml +1 -20
- data/config/locales/ja.yml +55 -44
- data/config/locales/lb.yml +0 -23
- data/config/locales/lt.yml +0 -24
- data/config/locales/lv.yml +0 -21
- data/config/locales/nl.yml +0 -23
- data/config/locales/no.yml +0 -23
- data/config/locales/pl.yml +2 -27
- data/config/locales/pt-BR.yml +2 -40
- data/config/locales/pt.yml +0 -23
- data/config/locales/ro-RO.yml +1 -32
- data/config/locales/ru.yml +0 -8
- data/config/locales/sk.yml +1 -43
- data/config/locales/sv.yml +6 -40
- data/config/locales/tr-TR.yml +0 -24
- data/config/locales/uk.yml +0 -6
- data/config/locales/zh-CN.yml +0 -21
- data/config/locales/zh-TW.yml +0 -24
- data/decidim-core.gemspec +1 -1
- data/lib/decidim/api/functions/user_entity_list.rb +2 -0
- data/lib/decidim/attachment_attributes.rb +58 -9
- data/lib/decidim/command.rb +1 -1
- data/lib/decidim/content_renderers/base_renderer.rb +112 -0
- data/lib/decidim/content_renderers/blob_renderer.rb +4 -7
- data/lib/decidim/content_renderers/mention_resource_renderer.rb +10 -6
- data/lib/decidim/content_renderers/resource_renderer.rb +16 -7
- data/lib/decidim/content_renderers/user_renderer.rb +11 -9
- data/lib/decidim/core/content_blocks/registry_manager.rb +4 -4
- data/lib/decidim/core/engine.rb +8 -0
- data/lib/decidim/core/test/factories.rb +3 -0
- data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +10 -10
- data/lib/decidim/core/test/shared_examples/amendable/amendment_event_examples.rb +2 -2
- data/lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb +3 -3
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +6 -6
- data/lib/decidim/core/test/shared_examples/has_space_in_mcell_examples.rb +2 -1
- data/lib/decidim/core/test/shared_examples/resource_liked_event_examples.rb +3 -3
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/map/autocomplete.rb +4 -3
- data/lib/decidim/searchable.rb +5 -0
- data/lib/decidim/view_model.rb +1 -1
- data/lib/tasks/decidim_mailers_tasks.rake +31 -9
- metadata +13 -9
- data/app/commands/decidim/gallery_methods.rb +0 -107
- data/app/packs/src/decidim/vendor/tribute.js +0 -1890
- data/app/packs/stylesheets/decidim/_tribute.scss +0 -36
- data/app/views/decidim/participants_account_mailer/removal_notification.html.erb +0 -11
data/config/locales/fi-plain.yml
CHANGED
|
@@ -423,7 +423,7 @@ fi-pl:
|
|
|
423
423
|
wizard_step_form:
|
|
424
424
|
steps:
|
|
425
425
|
'1': Luo muutos
|
|
426
|
-
'2': Julkaise
|
|
426
|
+
'2': Julkaise muutos
|
|
427
427
|
anonymous_user: Anonyymi
|
|
428
428
|
application:
|
|
429
429
|
document:
|
|
@@ -662,6 +662,13 @@ fi-pl:
|
|
|
662
662
|
all: Kaikki
|
|
663
663
|
filter_taxonomy_values:
|
|
664
664
|
all: Kaikki
|
|
665
|
+
delete_user_mailer:
|
|
666
|
+
delete:
|
|
667
|
+
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.
|
|
668
|
+
body_2: Turvallisuussyistä tietyt vahvistuksiin liittyvät tiedot säilytetään. Jos luot uuden tilin ja vahvistat sen uudestaan, tiedot voidaan liittää uuteen tiliisi.
|
|
669
|
+
greetings_html: Terveisin,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
670
|
+
hello: Hei %{username},
|
|
671
|
+
subject: Tilisi on poistettu
|
|
665
672
|
devise:
|
|
666
673
|
omniauth_registrations:
|
|
667
674
|
create:
|
|
@@ -875,13 +882,13 @@ fi-pl:
|
|
|
875
882
|
affected_user:
|
|
876
883
|
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hyväksytty. Näet sen tältä sivulta:'
|
|
877
884
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet luonut kohteen %{amendable_title}.
|
|
878
|
-
email_subject:
|
|
879
|
-
notification_title: <a href="%{emendation_author_path}">%{
|
|
885
|
+
email_subject: Muutos hyväksytty kohteelle %{amendable_title} osallistujalta %{emendation_author_name}
|
|
886
|
+
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>.
|
|
880
887
|
follower:
|
|
881
888
|
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hyväksytty. Näet sen tältä sivulta:'
|
|
882
889
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
|
883
|
-
email_subject:
|
|
884
|
-
notification_title: <a href="%{emendation_author_path}">%{
|
|
890
|
+
email_subject: Muutos hyväksytty kohteelle %{amendable_title} osallistujalta %{emendation_author_name}
|
|
891
|
+
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>.
|
|
885
892
|
amendment_created:
|
|
886
893
|
affected_user:
|
|
887
894
|
email_intro: 'Uusi muutos on luotu kohteelle %{amendable_title}. Näet sen tältä sivulta:'
|
|
@@ -897,29 +904,29 @@ fi-pl:
|
|
|
897
904
|
affected_user:
|
|
898
905
|
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on korostettu omaksi %{amendable_type} -kohteeksi. Näet sen tältä sivulta:'
|
|
899
906
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet luonut kohteen %{amendable_title}.
|
|
900
|
-
email_subject:
|
|
901
|
-
notification_title:
|
|
907
|
+
email_subject: Osallistujan %{emendation_author_name} laatima muutos 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 osallistujan <a href="%{emendation_author_path}">%{emendation_author_name}</a> toimesta.
|
|
902
909
|
follower:
|
|
903
910
|
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on korostettu omaksi %{amendable_type} -kohteeksi. Näet sen tältä sivulta:'
|
|
904
911
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
|
905
|
-
email_subject:
|
|
906
|
-
notification_title:
|
|
912
|
+
email_subject: Osallistujan %{emendation_author_name} laatima muutos on julkaistu uutena %{amendable_type} -kohteena
|
|
913
|
+
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.
|
|
907
914
|
amendment_rejected:
|
|
908
915
|
affected_user:
|
|
909
916
|
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hylätty. Näet sen tältä sivulta:'
|
|
910
917
|
email_outro: Olet saanut tämän ilmoituksen, koska olet kirjailija %{amendable_title}.
|
|
911
|
-
email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty käyttäjältä %{
|
|
912
|
-
notification_title: <a href="%{emendation_author_path}">%{
|
|
918
|
+
email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty käyttäjältä %{emendation_author_name}
|
|
919
|
+
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>.
|
|
913
920
|
follower:
|
|
914
921
|
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hylätty. Näet sen tältä sivulta:'
|
|
915
922
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
|
916
|
-
email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty
|
|
917
|
-
notification_title: <a href="%{emendation_author_path}">%{
|
|
923
|
+
email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty osallistujalta %{emendation_author_name}
|
|
924
|
+
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>.
|
|
918
925
|
emendation_promoted:
|
|
919
926
|
follower:
|
|
920
927
|
email_intro: 'Muutos on julkaistu kohteelle %{amendable_title}. Näet sen tältä sivulta:'
|
|
921
928
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet laatinut kohteen %{amendable_title}.
|
|
922
|
-
email_subject:
|
|
929
|
+
email_subject: Osallistujan %{emendation_author_name} laatima muutos on julkaistu uutena %{amendable_type} -kohteena
|
|
923
930
|
attachments:
|
|
924
931
|
attachment_created:
|
|
925
932
|
email_intro: 'Uusi asiakirja on lisätty kohteeseen %{resource_title}. Voit nähdä sen täältä:'
|
|
@@ -952,6 +959,18 @@ fi-pl:
|
|
|
952
959
|
notification_body: Olemme muuttaneet nimimerkkien sääntöjä varmistaaksemme, että alustalla ei ole useampaa tiliä samalla nimimerkillä eri tavalla kirjoitettuna. <br/> Tilisi on luotu toisen samaa nimimerkkiä käyttäneen henkilön jälkeen, joten olemme vaihtaneet nimimerkkiäsi automaattisesti. Halutessasi voit vaihtaa nimimerkkiäsi <a href="%{link_to_account_settings}">tilisi asetuksista</a>.
|
|
953
960
|
notification_event:
|
|
954
961
|
notification_title: Kohteessa <a href="%{resource_path}">%{resource_title}</a> on uutta toimintaa.
|
|
962
|
+
participatory_space:
|
|
963
|
+
member_added:
|
|
964
|
+
published:
|
|
965
|
+
email_intro: Sinut on lisätty osallistumistilan jäseneksi.
|
|
966
|
+
email_outro: Tämä viesti on lähetetty sinulle, koska hallintakäyttäjä lisäsi sinut osallistumistilaan <a href="%{resource_url}">%{resource_title}</a>. Mikäli tämä osallistumistila on rajattu ainoastaan jäsenille, pääset kyseiseen osallistumistilaan omalla käyttäjätililläsi.<br> Profiilisi näytetään osallistumistilan <a href="%{members_page}">jäsenlistauksessa</a>.
|
|
967
|
+
email_subject: Sinulla on nyt pääsy osallistumistilaan %{resource_title}.
|
|
968
|
+
notification_title: Sinulla on nyt pääsy osallistumistilaan <a href="%{resource_url}">%{resource_title}</a>.
|
|
969
|
+
unpublished:
|
|
970
|
+
email_intro: Sinut on lisätty osallistumistilan jäseneksi.
|
|
971
|
+
email_outro: Tämä viesti on lähetetty sinulle, koska hallintakäyttäjä lisäsi sinut osallistumistilaan <a href="%{resource_url}">%{resource_title}</a>. Mikäli tämä osallistumistila on rajattu ainoastaan jäsenille, pääset kyseiseen osallistumistilaan omalla käyttäjätililläsi.
|
|
972
|
+
email_subject: Sinulla on nyt pääsy osallistumistilaan %{resource_title}.
|
|
973
|
+
notification_title: Sinulla on nyt pääsy osallistumistilaan <a href="%{resource_url}">%{resource_title}</a>.
|
|
955
974
|
reports:
|
|
956
975
|
parent_hidden:
|
|
957
976
|
email_intro: |-
|
|
@@ -970,24 +989,24 @@ fi-pl:
|
|
|
970
989
|
notification_title: |-
|
|
971
990
|
Hallintakäyttäjä poisti luomasi kohteen %{resource_type}, koska se on ilmoitettu asiattomana syyllä "%{report_reasons}".</br><i>%{resource_content}</i>
|
|
972
991
|
resource_liked:
|
|
973
|
-
email_intro: '%{liker_name}
|
|
974
|
-
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet seuraat käyttäjää %{
|
|
975
|
-
email_subject: "%{
|
|
976
|
-
notification_title: <a href="%{liker_path}">%{liker_name}
|
|
992
|
+
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:'
|
|
993
|
+
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.
|
|
994
|
+
email_subject: "%{liker_name} lisäsi uuden tykkäyksen"
|
|
995
|
+
notification_title: <a href="%{liker_path}">%{liker_name} </a> tykkäsi kohteesta <a href="%{resource_path}">%{resource_title}</a> %{resource_type}.
|
|
977
996
|
resources:
|
|
978
997
|
soft_deleted:
|
|
979
998
|
notification_title: Ylläpitäjä poisti kohteen "%{resource_type}" "%{resource_title}".
|
|
980
999
|
users:
|
|
981
1000
|
profile_updated:
|
|
982
|
-
email_intro: Seuraamasi
|
|
983
|
-
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat
|
|
984
|
-
email_subject: "%{
|
|
985
|
-
notification_title: Seuraamasi
|
|
1001
|
+
email_intro: Seuraamasi osallistujan %{name} <a href="%{resource_url}">profiilisivua</a> on päivitetty.
|
|
1002
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet seuraat osallistujaa %{name}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
|
1003
|
+
email_subject: "%{name} päivitti profiiliaan"
|
|
1004
|
+
notification_title: Seuraamasi osallistujan %{name} <a href="%{resource_path}">profiilisivua</a> on päivitetty.
|
|
986
1005
|
user_officialized:
|
|
987
|
-
email_intro: Osallistuja %{name}
|
|
1006
|
+
email_intro: Osallistuja %{name} on virallistettu.
|
|
988
1007
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet tämän organisaation hallintakäyttäjä.
|
|
989
1008
|
email_subject: "%{name} on virallistettu"
|
|
990
|
-
notification_title: Osallistuja %{name}
|
|
1009
|
+
notification_title: Osallistuja %{name} on virallistettu.
|
|
991
1010
|
export_mailer:
|
|
992
1011
|
download_your_data_export:
|
|
993
1012
|
click_button_html: Napsauta seuraavaa linkkiä ladataksesi tietosi.<br/>Tiedosto on ladattavissa %{date} saakka.
|
|
@@ -1217,7 +1236,6 @@ fi-pl:
|
|
|
1217
1236
|
create:
|
|
1218
1237
|
error: Keskustelun aloittaminen epäonnistui. Yritä myöhemmin uudelleen.
|
|
1219
1238
|
error_modal:
|
|
1220
|
-
close: Sulje ikkuna
|
|
1221
1239
|
correct_errors: Korjaa virheet ja yritä uudestaan.
|
|
1222
1240
|
intro: 'Viestisi sisältää seuraavia virheitä:'
|
|
1223
1241
|
ok: OK
|
|
@@ -1343,6 +1361,7 @@ fi-pl:
|
|
|
1343
1361
|
own_activity: Oma toiminta, kuten omia ehdotuksia koskevat kommentit tai maininnat
|
|
1344
1362
|
push_notifications: Push-ilmoitukset
|
|
1345
1363
|
push_notifications_reminder: Mikäli haluat vastaanottaa push-ilmoituksia alustalta, sinun on sallittava ne ensin selaimesi asetuksista tälle sivustolle.
|
|
1364
|
+
push_notifications_unsupported_browser: Selaimesi ei ole tuettu.
|
|
1346
1365
|
receive_notifications_about: Haluan saada ilmoituksia
|
|
1347
1366
|
update_notifications_settings: Tallenna muutokset
|
|
1348
1367
|
update:
|
|
@@ -1528,13 +1547,6 @@ fi-pl:
|
|
|
1528
1547
|
log_in: kirjaudu sisään
|
|
1529
1548
|
never_logged_in: et ole koskaan kirjautunut palveluun
|
|
1530
1549
|
subject: Varoitus passiivisesta käyttäjätilistä
|
|
1531
|
-
removal_notification:
|
|
1532
|
-
body: Tilisi palvelussa %{organization_name} on poistettu, koska tiliä ei ole käytetty pitkään aikaan.
|
|
1533
|
-
greetings_html: |
|
|
1534
|
-
Terveisin,<br>
|
|
1535
|
-
%{organization_name}
|
|
1536
|
-
hello: Hei %{username},
|
|
1537
|
-
subject: Käyttämättä ollut tili on poistettu
|
|
1538
1550
|
participatory_space:
|
|
1539
1551
|
pages:
|
|
1540
1552
|
user_profile:
|
|
@@ -1545,8 +1557,8 @@ fi-pl:
|
|
|
1545
1557
|
members: Jäsenet
|
|
1546
1558
|
participatory_spaces:
|
|
1547
1559
|
show:
|
|
1548
|
-
restricted_space: Tämä on rajattu osallistumistila. Ainoastaan jäsenet näkevät tämän osallistumistilan ja voivat osallistua sen sisällä.
|
|
1549
|
-
transparent_space: Tämä on läpinäkyvä osallistumistila. Kuka tahansa voi tarkastella osallistumistilan sisältöä, mutta ainoastaan osallistumistilan jäsenet voivat osallistua sen sisällä.
|
|
1560
|
+
restricted_space: Tämä on rajattu osallistumistila. Ainoastaan jäsenet ja hallintakäyttäjät näkevät tämän osallistumistilan ja voivat osallistua sen sisällä.
|
|
1561
|
+
transparent_space: Tämä on läpinäkyvä osallistumistila. Kuka tahansa voi tarkastella osallistumistilan sisältöä, mutta ainoastaan osallistumistilan jäsenet ja hallintakäyttäjät voivat osallistua sen sisällä.
|
|
1550
1562
|
passwords:
|
|
1551
1563
|
update:
|
|
1552
1564
|
error: Salasanan päivitys epäonnistui.
|
data/config/locales/fi.yml
CHANGED
|
@@ -423,7 +423,7 @@ fi:
|
|
|
423
423
|
wizard_step_form:
|
|
424
424
|
steps:
|
|
425
425
|
'1': Luo muutos
|
|
426
|
-
'2': Julkaise
|
|
426
|
+
'2': Julkaise muutos
|
|
427
427
|
anonymous_user: Anonyymi
|
|
428
428
|
application:
|
|
429
429
|
document:
|
|
@@ -662,6 +662,13 @@ fi:
|
|
|
662
662
|
all: Kaikki
|
|
663
663
|
filter_taxonomy_values:
|
|
664
664
|
all: Kaikki
|
|
665
|
+
delete_user_mailer:
|
|
666
|
+
delete:
|
|
667
|
+
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.
|
|
668
|
+
body_2: Turvallisuussyistä tietyt vahvistuksiin liittyvät tiedot säilytetään. Jos luot uuden tilin ja vahvistat sen uudestaan, tiedot voidaan liittää uuteen tiliisi.
|
|
669
|
+
greetings_html: Terveisin,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
670
|
+
hello: Hei %{username},
|
|
671
|
+
subject: Tilisi on poistettu
|
|
665
672
|
devise:
|
|
666
673
|
omniauth_registrations:
|
|
667
674
|
create:
|
|
@@ -875,13 +882,13 @@ fi:
|
|
|
875
882
|
affected_user:
|
|
876
883
|
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hyväksytty. Voit tutustua siihen sivulta:'
|
|
877
884
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet laatinut kohteen %{amendable_title}.
|
|
878
|
-
email_subject:
|
|
879
|
-
notification_title:
|
|
885
|
+
email_subject: Muutos hyväksytty kohteelle %{amendable_title} osallistujalta %{emendation_author_name}
|
|
886
|
+
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>.
|
|
880
887
|
follower:
|
|
881
888
|
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hyväksytty. Voit tutustua siihen sivulta:'
|
|
882
889
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
|
883
|
-
email_subject:
|
|
884
|
-
notification_title:
|
|
890
|
+
email_subject: Muutos hyväksytty kohteelle %{amendable_title} osallistujalta %{emendation_author_name}
|
|
891
|
+
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>.
|
|
885
892
|
amendment_created:
|
|
886
893
|
affected_user:
|
|
887
894
|
email_intro: 'Uusi muutos on luotu kohteelle %{amendable_title}. Voit tutustua siihen sivulta:'
|
|
@@ -897,29 +904,29 @@ fi:
|
|
|
897
904
|
affected_user:
|
|
898
905
|
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on julkaistu uutena kohteena %{amendable_type}. Voit tutustua siihen sivulta:'
|
|
899
906
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet laatinut kohteen %{amendable_title}.
|
|
900
|
-
email_subject:
|
|
901
|
-
notification_title: <a href="%{emendation_path}">Hylätty muutos</a> kohteelle <a href="%{amendable_path}">%{amendable_title}</a> on julkaistu uutena %{amendable_type} -kohteena
|
|
907
|
+
email_subject: Osallistujan %{emendation_author_name} laatima muutos 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 osallistujan <a href="%{emendation_author_path}">%{emendation_author_name}</a> toimesta.
|
|
902
909
|
follower:
|
|
903
910
|
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on julkaistu uutena kohteena %{amendable_type}. Voit tutustua siihen sivulta:'
|
|
904
911
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
|
905
|
-
email_subject:
|
|
906
|
-
notification_title: <a href="%{emendation_path}">Hylätty muutos</a> kohteelle <a href="%{amendable_path}">%{amendable_title}</a> on julkaistu uutena %{amendable_type} -kohteena
|
|
912
|
+
email_subject: Osallistujan %{emendation_author_name} laatima muutos on julkaistu uutena %{amendable_type} -kohteena
|
|
913
|
+
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.
|
|
907
914
|
amendment_rejected:
|
|
908
915
|
affected_user:
|
|
909
916
|
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hylätty. Voit tutustua siihen sivulta:'
|
|
910
917
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet laatinut kohteen %{amendable_title}.
|
|
911
|
-
email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty käyttäjältä %{
|
|
912
|
-
notification_title:
|
|
918
|
+
email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty käyttäjältä %{emendation_author_name}
|
|
919
|
+
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>.
|
|
913
920
|
follower:
|
|
914
921
|
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hylätty. Voit tutustua siihen sivulta:'
|
|
915
922
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
|
916
|
-
email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty
|
|
917
|
-
notification_title:
|
|
923
|
+
email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty osallistujalta %{emendation_author_name}
|
|
924
|
+
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>.
|
|
918
925
|
emendation_promoted:
|
|
919
926
|
follower:
|
|
920
927
|
email_intro: 'Muutos on julkaistu kohteelle %{amendable_title}. Näet sen tältä sivulta:'
|
|
921
928
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet laatinut kohteen %{amendable_title}.
|
|
922
|
-
email_subject:
|
|
929
|
+
email_subject: Osallistujan %{emendation_author_name} laatima muutos on julkaistu uutena %{amendable_type} -kohteena
|
|
923
930
|
attachments:
|
|
924
931
|
attachment_created:
|
|
925
932
|
email_intro: 'Uusi asiakirja on lisätty kohteeseen %{resource_title}. Voit tutustua siihen sivulta:'
|
|
@@ -952,6 +959,18 @@ fi:
|
|
|
952
959
|
notification_body: Olemme muuttaneet nimimerkkien sääntöjä varmistaaksemme, että alustalla ei ole useampaa tiliä samalla nimimerkillä eri tavalla kirjoitettuna. <br/> Tilisi on luotu toisen samaa nimimerkkiä käyttäneen henkilön jälkeen, joten olemme vaihtaneet nimimerkkiäsi automaattisesti. Halutessasi voit vaihtaa nimimerkkiäsi <a href="%{link_to_account_settings}">tilisi asetuksista</a>.
|
|
953
960
|
notification_event:
|
|
954
961
|
notification_title: Kohteessa <a href="%{resource_path}">%{resource_title}</a> on uutta toimintaa.
|
|
962
|
+
participatory_space:
|
|
963
|
+
member_added:
|
|
964
|
+
published:
|
|
965
|
+
email_intro: Sinut on lisätty osallistumistilan jäseneksi.
|
|
966
|
+
email_outro: Tämä viesti on lähetetty sinulle, koska hallintakäyttäjä lisäsi sinut osallistumistilaan <a href="%{resource_url}">%{resource_title}</a>. Mikäli tämä osallistumistila on rajattu ainoastaan jäsenille, pääset kyseiseen osallistumistilaan omalla käyttäjätililläsi.<br> Profiilisi näytetään osallistumistilan <a href="%{members_page}">jäsenlistauksessa</a>.
|
|
967
|
+
email_subject: Sinulla on nyt pääsy osallistumistilaan %{resource_title}.
|
|
968
|
+
notification_title: Sinulla on nyt pääsy osallistumistilaan <a href="%{resource_url}">%{resource_title}</a>.
|
|
969
|
+
unpublished:
|
|
970
|
+
email_intro: Sinut on lisätty osallistumistilan jäseneksi.
|
|
971
|
+
email_outro: Tämä viesti on lähetetty sinulle, koska hallintakäyttäjä lisäsi sinut osallistumistilaan <a href="%{resource_url}">%{resource_title}</a>. Mikäli tämä osallistumistila on rajattu ainoastaan jäsenille, pääset kyseiseen osallistumistilaan omalla käyttäjätililläsi.
|
|
972
|
+
email_subject: Sinulla on nyt pääsy osallistumistilaan %{resource_title}.
|
|
973
|
+
notification_title: Sinulla on nyt pääsy osallistumistilaan <a href="%{resource_url}">%{resource_title}</a>.
|
|
955
974
|
reports:
|
|
956
975
|
parent_hidden:
|
|
957
976
|
email_intro: |-
|
|
@@ -970,24 +989,24 @@ fi:
|
|
|
970
989
|
notification_title: |-
|
|
971
990
|
Hallintakäyttäjä poisti luomasi kohteen %{resource_type}, koska se on ilmoitettu asiattomana syyllä "%{report_reasons}".</br><i>%{resource_content}</i>
|
|
972
991
|
resource_liked:
|
|
973
|
-
email_intro: '%{liker_name}
|
|
974
|
-
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet seuraat käyttäjää %{
|
|
975
|
-
email_subject: "%{
|
|
976
|
-
notification_title: <a href="%{liker_path}">%{liker_name}
|
|
992
|
+
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:'
|
|
993
|
+
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.
|
|
994
|
+
email_subject: "%{liker_name} lisäsi uuden tykkäyksen"
|
|
995
|
+
notification_title: <a href="%{liker_path}">%{liker_name} </a> tykkäsi kohteesta <a href="%{resource_path}">%{resource_title}</a> %{resource_type}.
|
|
977
996
|
resources:
|
|
978
997
|
soft_deleted:
|
|
979
998
|
notification_title: Ylläpitäjä poisti kohteen "%{resource_type}" "%{resource_title}".
|
|
980
999
|
users:
|
|
981
1000
|
profile_updated:
|
|
982
|
-
email_intro: Seuraamasi
|
|
983
|
-
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat
|
|
984
|
-
email_subject: "%{
|
|
985
|
-
notification_title: Seuraamasi
|
|
1001
|
+
email_intro: Seuraamasi osallistujan %{name} <a href="%{resource_url}">profiilisivua</a> on päivitetty.
|
|
1002
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet seuraat osallistujaa %{name}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
|
1003
|
+
email_subject: "%{name} päivitti profiiliaan"
|
|
1004
|
+
notification_title: Seuraamasi osallistujan %{name} <a href="%{resource_path}">profiilisivua</a> on päivitetty.
|
|
986
1005
|
user_officialized:
|
|
987
|
-
email_intro: Osallistuja %{name}
|
|
1006
|
+
email_intro: Osallistuja %{name} on virallistettu.
|
|
988
1007
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet tämän organisaation hallintakäyttäjä.
|
|
989
1008
|
email_subject: "%{name} on virallistettu"
|
|
990
|
-
notification_title: Osallistuja %{name}
|
|
1009
|
+
notification_title: Osallistuja %{name} on virallistettu.
|
|
991
1010
|
export_mailer:
|
|
992
1011
|
download_your_data_export:
|
|
993
1012
|
click_button_html: Napsauta seuraavaa linkkiä ladataksesi tietosi.<br/>Tiedosto on ladattavissa %{date} saakka.
|
|
@@ -1217,7 +1236,6 @@ fi:
|
|
|
1217
1236
|
create:
|
|
1218
1237
|
error: Keskustelun aloittaminen epäonnistui. Yritä myöhemmin uudestaan.
|
|
1219
1238
|
error_modal:
|
|
1220
|
-
close: Sulje ikkuna
|
|
1221
1239
|
correct_errors: Korjaa virheet ja yritä uudestaan.
|
|
1222
1240
|
intro: 'Viestisi sisältää seuraavia virheitä:'
|
|
1223
1241
|
ok: OK
|
|
@@ -1343,6 +1361,7 @@ fi:
|
|
|
1343
1361
|
own_activity: Oma toiminta, kuten omia ehdotuksia koskevat kommentit tai maininnat
|
|
1344
1362
|
push_notifications: Push-ilmoitukset
|
|
1345
1363
|
push_notifications_reminder: Mikäli haluat vastaanottaa push-ilmoituksia alustalta, sinun on sallittava ne ensin selaimesi asetuksista tälle sivustolle.
|
|
1364
|
+
push_notifications_unsupported_browser: Selaimesi ei ole tuettu.
|
|
1346
1365
|
receive_notifications_about: Haluan saada ilmoituksia
|
|
1347
1366
|
update_notifications_settings: Tallenna muutokset
|
|
1348
1367
|
update:
|
|
@@ -1528,13 +1547,6 @@ fi:
|
|
|
1528
1547
|
log_in: kirjaudu sisään
|
|
1529
1548
|
never_logged_in: et ole koskaan kirjautunut palveluun
|
|
1530
1549
|
subject: Varoitus passiivisesta käyttäjätilistä
|
|
1531
|
-
removal_notification:
|
|
1532
|
-
body: Tilisi palvelussa %{organization_name} on poistettu, koska tiliä ei ole käytetty pitkään aikaan.
|
|
1533
|
-
greetings_html: |
|
|
1534
|
-
Terveisin,<br>
|
|
1535
|
-
%{organization_name}
|
|
1536
|
-
hello: Hei %{username},
|
|
1537
|
-
subject: Käyttämättä ollut tili on poistettu
|
|
1538
1550
|
participatory_space:
|
|
1539
1551
|
pages:
|
|
1540
1552
|
user_profile:
|
|
@@ -1545,8 +1557,8 @@ fi:
|
|
|
1545
1557
|
members: Jäsenet
|
|
1546
1558
|
participatory_spaces:
|
|
1547
1559
|
show:
|
|
1548
|
-
restricted_space: Tämä on rajattu osallistumistila. Ainoastaan jäsenet näkevät tämän osallistumistilan ja voivat osallistua sen sisällä.
|
|
1549
|
-
transparent_space: Tämä on läpinäkyvä osallistumistila. Kuka tahansa voi tarkastella osallistumistilan sisältöä, mutta ainoastaan osallistumistilan jäsenet voivat osallistua sen sisällä.
|
|
1560
|
+
restricted_space: Tämä on rajattu osallistumistila. Ainoastaan jäsenet ja hallintakäyttäjät näkevät tämän osallistumistilan ja voivat osallistua sen sisällä.
|
|
1561
|
+
transparent_space: Tämä on läpinäkyvä osallistumistila. Kuka tahansa voi tarkastella osallistumistilan sisältöä, mutta ainoastaan osallistumistilan jäsenet ja hallintakäyttäjät voivat osallistua sen sisällä.
|
|
1550
1562
|
passwords:
|
|
1551
1563
|
update:
|
|
1552
1564
|
error: Salasanan päivitys epäonnistui.
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -430,6 +430,7 @@ fr-CA:
|
|
|
430
430
|
explanation: Procédure d'autorisation factice
|
|
431
431
|
name: Procédure d'autorisation factice
|
|
432
432
|
ephemeral_dummy_authorization_handler:
|
|
433
|
+
explanation: Obtenir une vérification en saisissant un numéro de document se terminant par « X ».
|
|
433
434
|
fields:
|
|
434
435
|
allowed_postal_codes: Codes postaux autorisés (séparés par des virgules)
|
|
435
436
|
document_number: Numéro du document
|
|
@@ -517,7 +518,7 @@ fr-CA:
|
|
|
517
518
|
global:
|
|
518
519
|
amendments_enabled: Modifications activées
|
|
519
520
|
comments_enabled: Activer le module de commentaire
|
|
520
|
-
comments_max_length:
|
|
521
|
+
comments_max_length: Nombre maximum de caractères par commentaire
|
|
521
522
|
dummy_global_attribute1: Attribut factice 1
|
|
522
523
|
dummy_global_attribute2: Attribut factice 2
|
|
523
524
|
dummy_global_translatable_text: Texte traduisible factice
|
|
@@ -619,6 +620,13 @@ fr-CA:
|
|
|
619
620
|
all: Tout
|
|
620
621
|
filter_scope_values:
|
|
621
622
|
all: Tout
|
|
623
|
+
delete_user_mailer:
|
|
624
|
+
delete:
|
|
625
|
+
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.
|
|
626
|
+
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.
|
|
627
|
+
greetings_html: Cordialement,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
628
|
+
hello: Cher(ère) %{username},
|
|
629
|
+
subject: Votre compte a été supprimé
|
|
622
630
|
devise:
|
|
623
631
|
omniauth_registrations:
|
|
624
632
|
create:
|
|
@@ -781,13 +789,9 @@ fr-CA:
|
|
|
781
789
|
affected_user:
|
|
782
790
|
email_intro: 'Une modification a été acceptée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
|
|
783
791
|
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de %{amendable_title}.
|
|
784
|
-
email_subject: Un amendement accepté pour %{amendable_title} du %{emendation_author_nickname}
|
|
785
|
-
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>.
|
|
786
792
|
follower:
|
|
787
793
|
email_intro: 'Une modification a été acceptée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
|
|
788
794
|
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.
|
|
789
|
-
email_subject: Un amendement accepté pour %{amendable_title} du %{emendation_author_nickname}
|
|
790
|
-
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>.
|
|
791
795
|
amendment_created:
|
|
792
796
|
affected_user:
|
|
793
797
|
email_intro: 'Une nouvelle modification a été créée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
|
|
@@ -803,29 +807,20 @@ fr-CA:
|
|
|
803
807
|
affected_user:
|
|
804
808
|
email_intro: 'Une modification rejetée pour %{amendable_title} a été promue en %{amendable_type}indépendante. Vous pouvez le voir sur cette page:'
|
|
805
809
|
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de %{amendable_title}.
|
|
806
|
-
email_subject: Un amendement de %{emendation_author_nickname} a été publié en tant que nouveau %{amendable_type}
|
|
807
|
-
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>.
|
|
808
810
|
follower:
|
|
809
811
|
email_intro: 'Une modification rejetée pour %{amendable_title} a été promue en %{amendable_type}indépendante. Vous pouvez le voir sur cette page:'
|
|
810
812
|
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.
|
|
811
|
-
email_subject: Un amendement de %{emendation_author_nickname} a été publié en tant que nouveau %{amendable_type}
|
|
812
|
-
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>.
|
|
813
813
|
amendment_rejected:
|
|
814
814
|
affected_user:
|
|
815
815
|
email_intro: 'Une modification a été rejetée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
|
|
816
816
|
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de %{amendable_title}.
|
|
817
|
-
email_subject: Un amendement rejeté pour %{amendable_title} à %{emendation_author_nickname}
|
|
818
|
-
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>.
|
|
819
817
|
follower:
|
|
820
818
|
email_intro: 'Une modification a été rejetée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
|
|
821
819
|
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.
|
|
822
|
-
email_subject: Un amendement rejeté pour %{amendable_title} à %{emendation_author_nickname}
|
|
823
|
-
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>.
|
|
824
820
|
emendation_promoted:
|
|
825
821
|
follower:
|
|
826
822
|
email_intro: 'Une correction a été publiée pour %{amendable_title}. Vous pouvez la voir sur cette page :'
|
|
827
823
|
email_outro: Vous avez reçu cette notification parce que vous êtes un(e) auteur/trice de %{amendable_title}.
|
|
828
|
-
email_subject: Une correction réalisée par %{emendation_author_nickname} a été publiée en tant que nouvelle %{amendable_type}
|
|
829
824
|
attachments:
|
|
830
825
|
attachment_created:
|
|
831
826
|
email_intro: 'Un nouveau document a été ajouté à %{resource_title}. Vous pouvez le voir sur cette page :'
|
|
@@ -858,6 +853,18 @@ fr-CA:
|
|
|
858
853
|
notification_body: Nous avons corrigé la façon dont les pseudonymes sont utilisés pour qu'il n'y ait pas de doublons, et c'est pourquoi nous avons supprimé la distinction entre les majuscules et les minuscules. <br/> Votre pseudonyme a été créé après un autre qui était identique, nous l'avons donc automatiquement modifié. Vous pouvez le modifier depuis <a href="%{link_to_account_settings}">les paramètres de votre compte</a>.
|
|
859
854
|
notification_event:
|
|
860
855
|
notification_title: Un événement a eu lieu sur <a href="%{resource_path}">%{resource_title}</a>.
|
|
856
|
+
participatory_space:
|
|
857
|
+
member_added:
|
|
858
|
+
published:
|
|
859
|
+
email_intro: Vous avez été ajouté(e) en tant que membre à un espace participatif.
|
|
860
|
+
email_outro: Vous avez reçu cette notification car un administrateur vous a ajouté à <a href="%{resource_url}">%{resource_title}</a>. Si l'accès à cet espace est restreint, vous pourrez y accéder avec votre compte.<br> Votre profil apparaîtra dans la <a href="%{members_page}">liste des membres</a> de cet espace.
|
|
861
|
+
email_subject: Vous avez maintenant accès à %{resource_title}.
|
|
862
|
+
notification_title: Vous avez maintenant accès à <a href="%{resource_url}">%{resource_title}</a>.
|
|
863
|
+
unpublished:
|
|
864
|
+
email_intro: Vous avez été ajouté(e) en tant que membre à un espace participatif.
|
|
865
|
+
email_outro: Vous avez reçu cette notification car un administrateur vous a ajouté à <a href="%{resource_url}">%{resource_title}</a>. Si l'accès à cet espace est restreint, vous pourrez y accéder avec votre compte.
|
|
866
|
+
email_subject: Vous avez maintenant accès à %{resource_title}.
|
|
867
|
+
notification_title: Vous avez maintenant accès à <a href="%{resource_url}">%{resource_title}</a>.
|
|
861
868
|
reports:
|
|
862
869
|
resource_hidden:
|
|
863
870
|
email_intro: Un administrateur a modéré votre %{resource_type} car il a été signalé comme %{report_reasons}.
|
|
@@ -868,15 +875,10 @@ fr-CA:
|
|
|
868
875
|
<i>%{resource_content}</i>
|
|
869
876
|
users:
|
|
870
877
|
profile_updated:
|
|
871
|
-
|
|
872
|
-
email_outro: Vous recevez cette notification car vous suivez « %{nickname} ». Vous pouvez cesser de le suivre à partir du lien précédent.
|
|
873
|
-
email_subject: "%{nickname} a mis à jour son profil public"
|
|
874
|
-
notification_title: Le <a href="%{resource_path}">profil public</a> de %{name} (%{nickname}), que vous suivez, a été mis à jour.
|
|
878
|
+
email_subject: "%{name} a mis à jour son profil"
|
|
875
879
|
user_officialized:
|
|
876
|
-
email_intro: Le participant %{name} (%{nickname}) a été officialisé.
|
|
877
880
|
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”.
|
|
878
881
|
email_subject: "%{name} a été officialisé"
|
|
879
|
-
notification_title: Le participant %{name} (%{nickname}) a été officialisé.
|
|
880
882
|
export_mailer:
|
|
881
883
|
download_your_data_export:
|
|
882
884
|
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}.
|
|
@@ -1093,7 +1095,6 @@ fr-CA:
|
|
|
1093
1095
|
create:
|
|
1094
1096
|
error: La conversation n'a pas commencé. Réessayez plus tard.
|
|
1095
1097
|
error_modal:
|
|
1096
|
-
close: Fermer la fenêtre de dialogue
|
|
1097
1098
|
correct_errors: Veuillez corriger les erreurs et réessayer.
|
|
1098
1099
|
intro: 'Il y a eu les erreurs suivantes avec votre message :'
|
|
1099
1100
|
ok: Ok
|
|
@@ -1380,13 +1381,6 @@ fr-CA:
|
|
|
1380
1381
|
log_in: se connecter
|
|
1381
1382
|
never_logged_in: jamais connecté
|
|
1382
1383
|
subject: Avertissement de compte inactif
|
|
1383
|
-
removal_notification:
|
|
1384
|
-
body: Votre compte %{organization_name} a été supprimé en raison de son inactivité.
|
|
1385
|
-
greetings_html: |
|
|
1386
|
-
Cordialement,<br>
|
|
1387
|
-
%{organization_name}
|
|
1388
|
-
hello: Cher(ère) %{username},
|
|
1389
|
-
subject: Compte inactif supprimé
|
|
1390
1384
|
participatory_space:
|
|
1391
1385
|
pages:
|
|
1392
1386
|
user_profile:
|
|
@@ -1397,8 +1391,8 @@ fr-CA:
|
|
|
1397
1391
|
members: Membres
|
|
1398
1392
|
participatory_spaces:
|
|
1399
1393
|
show:
|
|
1400
|
-
restricted_space:
|
|
1401
|
-
transparent_space: Ceci est un espace transparent. N'importe qui peut voir le contenu, mais seuls les membres peuvent participer.
|
|
1394
|
+
restricted_space: Il s'agit d'un espace restreint. Seuls les membres et les administrateurs peuvent le voir et y participer.
|
|
1395
|
+
transparent_space: Ceci est un espace transparent. N'importe qui peut voir le contenu, mais seuls les membres et les administrateurs peuvent participer.
|
|
1402
1396
|
passwords:
|
|
1403
1397
|
update:
|
|
1404
1398
|
error: Il y a eu un problème lors de la mise à jour de votre mot de passe.
|