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.
- 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/comments_button_cell.rb +9 -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 +2 -2
- 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/data_consent/category.erb +20 -33
- data/app/cells/decidim/footer_topics/show.erb +5 -8
- data/app/cells/decidim/participatory_space_dropdown_metadata/links.erb +1 -1
- data/app/cells/decidim/resource_types_filter/show.erb +2 -2
- data/app/cells/decidim/share_widget/qr_code_modal.erb +1 -1
- 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 +10 -0
- data/app/events/decidim/amendable/amendment_base_event.rb +7 -1
- data/app/helpers/decidim/menu_helper.rb +0 -2
- 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_private_user.rb +1 -1
- data/app/models/decidim/user.rb +2 -2
- 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/accordion/accordion.test.js +196 -42
- data/app/packs/src/decidim/controllers/accordion/controller.js +93 -17
- data/app/packs/src/decidim/controllers/dropdown/controller.js +6 -0
- data/app/packs/src/decidim/controllers/dropdown/dropdown.test.js +28 -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/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/controllers/password_toggler/controller.js +22 -1
- data/app/packs/src/decidim/controllers/password_toggler/password_toggler.test.js +11 -20
- data/app/packs/src/decidim/direct_uploads/upload_field.js +4 -4
- data/app/packs/src/decidim/direct_uploads/upload_modal.js +12 -7
- 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/map/controller.js +10 -1
- data/app/packs/src/decidim/refactor/moved/focus_guard.js +12 -12
- data/app/packs/src/decidim/refactor/moved/focus_guard.test.js +136 -0
- 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/_cards.scss +1 -1
- data/app/packs/stylesheets/decidim/_conversations.scss +14 -0
- data/app/packs/stylesheets/decidim/_cookies.scss +13 -5
- data/app/packs/stylesheets/decidim/_documents.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/_footer.scss +33 -1
- data/app/packs/stylesheets/decidim/_participatory_spaces.scss +1 -1
- 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/footer_menu_presenter.rb +2 -4
- data/app/presenters/decidim/menu_item_presenter.rb +9 -3
- data/app/presenters/decidim/stats_presenter.rb +1 -1
- data/app/resolvers/decidim/meta_image_url_resolver.rb +7 -0
- 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/searches/_filters.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/footer/_main.html.erb +1 -1
- data/app/views/layouts/decidim/footer/_main_links.html.erb +56 -28
- data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile_tablet.html.erb +1 -1
- 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/locales/ar.yml +0 -25
- data/config/locales/bg.yml +0 -25
- data/config/locales/ca-IT.yml +37 -33
- data/config/locales/ca.yml +37 -33
- data/config/locales/cs.yml +12 -31
- data/config/locales/de.yml +5 -42
- data/config/locales/el.yml +0 -22
- data/config/locales/en.yml +36 -32
- data/config/locales/es-MX.yml +36 -32
- data/config/locales/es-PY.yml +36 -32
- data/config/locales/es.yml +36 -32
- data/config/locales/eu.yml +72 -70
- data/config/locales/fi-plain.yml +37 -32
- data/config/locales/fi.yml +37 -32
- data/config/locales/fr-CA.yml +16 -28
- data/config/locales/fr.yml +16 -28
- 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 +52 -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 +4 -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 -39
- data/config/locales/sv.yml +6 -36
- 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/db/migrate/20250217192438_convert_user_groups_into_users.rb +3 -2
- data/decidim-core.gemspec +3 -0
- 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 +32 -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/core.rb +1 -1
- data/lib/decidim/map/autocomplete.rb +4 -3
- data/lib/decidim/map/dynamic_map.rb +3 -1
- 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 +32 -10
- 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.yml
CHANGED
|
@@ -424,7 +424,7 @@ fi:
|
|
|
424
424
|
wizard_step_form:
|
|
425
425
|
steps:
|
|
426
426
|
'1': Luo muutos
|
|
427
|
-
'2': Julkaise
|
|
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:
|
|
881
|
-
notification_title:
|
|
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:
|
|
886
|
-
notification_title:
|
|
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:
|
|
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
|
|
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:
|
|
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
|
|
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ä %{
|
|
914
|
-
notification_title:
|
|
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
|
|
919
|
-
notification_title:
|
|
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:
|
|
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}
|
|
976
|
-
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet seuraat käyttäjää %{
|
|
977
|
-
email_subject: "%{
|
|
978
|
-
notification_title: <a href="%{liker_path}">%{liker_name}
|
|
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
|
|
985
|
-
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat
|
|
986
|
-
email_subject: "%{
|
|
987
|
-
notification_title: Seuraamasi
|
|
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}
|
|
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}
|
|
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
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
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.
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -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:
|
|
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
|
-
|
|
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
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
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.
|
data/config/locales/fr.yml
CHANGED
|
@@ -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:
|
|
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
|
-
|
|
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
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
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.
|
data/config/locales/gl.yml
CHANGED
|
@@ -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
|
data/config/locales/hu.yml
CHANGED
|
@@ -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
|