decidim-core 0.31.4 → 0.31.6
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/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/html_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_cell.rb +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_cell.rb +1 -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_cell.rb +2 -2
- 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 +5 -5
- data/app/cells/decidim/resource_types_filter/show.erb +2 -2
- data/app/cells/decidim/upload_modal_cell.rb +5 -0
- 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/controllers/decidim/download_your_data_controller.rb +1 -1
- data/app/controllers/decidim/notifications_subscriptions_controller.rb +8 -0
- data/app/controllers/decidim/private_downloads_controller.rb +29 -0
- 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/attachment.rb +20 -2
- data/app/models/decidim/authorization.rb +7 -0
- data/app/models/decidim/moderation.rb +1 -1
- data/app/models/decidim/participatory_space_private_user.rb +1 -1
- data/app/models/decidim/private_download.rb +61 -0
- data/app/models/decidim/private_export.rb +6 -0
- 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/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/direct_uploads/upload_field.js +4 -4
- data/app/packs/src/decidim/direct_uploads/upload_modal.js +11 -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/sw/push-permissions.js +48 -13
- 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/_editor_suggestions.scss +49 -0
- data/app/packs/stylesheets/decidim/_floating_help.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/menu_item_presenter.rb +9 -3
- data/app/presenters/decidim/stats_presenter.rb +1 -1
- data/app/services/decidim/notifications_subscriptions_persistor.rb +6 -0
- data/app/services/decidim/push_subscription_endpoint_validator.rb +34 -0
- data/app/services/decidim/send_push_notification.rb +5 -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/notifications_settings/show.html.erb +5 -5
- 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_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 -5
- data/config/locales/bg.yml +0 -6
- data/config/locales/ca-IT.yml +10 -10
- data/config/locales/ca.yml +10 -10
- data/config/locales/cs.yml +4 -13
- data/config/locales/de.yml +5 -17
- data/config/locales/el.yml +0 -4
- data/config/locales/en.yml +9 -9
- data/config/locales/es-MX.yml +9 -9
- data/config/locales/es-PY.yml +9 -9
- data/config/locales/es.yml +9 -9
- data/config/locales/eu.yml +49 -49
- data/config/locales/fi-plain.yml +9 -9
- data/config/locales/fi.yml +11 -11
- data/config/locales/fr-CA.yml +10 -9
- data/config/locales/fr.yml +10 -9
- data/config/locales/gl.yml +0 -3
- data/config/locales/hu.yml +0 -5
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/it.yml +11 -3
- data/config/locales/ja.yml +24 -21
- data/config/locales/lb.yml +0 -5
- data/config/locales/lt.yml +0 -5
- data/config/locales/lv.yml +0 -3
- data/config/locales/nl.yml +0 -5
- data/config/locales/no.yml +0 -5
- data/config/locales/pl.yml +2 -8
- data/config/locales/pt-BR.yml +3 -16
- data/config/locales/pt.yml +0 -5
- data/config/locales/ro-RO.yml +1 -14
- data/config/locales/sk.yml +1408 -4
- data/config/locales/sv.yml +3 -11
- data/config/locales/tr-TR.yml +0 -6
- data/config/locales/zh-CN.yml +0 -5
- data/config/locales/zh-TW.yml +0 -5
- data/config/routes.rb +1 -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/comments_examples.rb +6 -6
- 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 +14 -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/eu.yml
CHANGED
|
@@ -209,7 +209,7 @@ eu:
|
|
|
209
209
|
cancel_error: Ezin izan da ezeztatu helbide elektronikoaren aldaketa.
|
|
210
210
|
cancel_successfully: Posta elektronikoaren aldaketa zuzen ezeztatua.
|
|
211
211
|
resend_error: Ezin izan da birbidali berresteko helbide elektronikoa.
|
|
212
|
-
resend_successfully:
|
|
212
|
+
resend_successfully: Correo de confirmación reenviado con éxito a %{unconfirmed_email}.
|
|
213
213
|
send_again: Bidali berriro
|
|
214
214
|
title: Posta elektronikoaren aldaketak egiaztatzea
|
|
215
215
|
show:
|
|
@@ -224,13 +224,13 @@ eu:
|
|
|
224
224
|
time_ago: "duela %{time}"
|
|
225
225
|
admin:
|
|
226
226
|
actions:
|
|
227
|
-
cancel:
|
|
227
|
+
cancel: Utzi
|
|
228
228
|
password_change:
|
|
229
229
|
alert: Aurrera jarraitu ahal izateko pasahitza aldatu behar duzu.
|
|
230
230
|
notification: Administratzaile rola duten parte-hartzaileek pasahitza aldatu behar dute %{days} egunik behin.
|
|
231
231
|
admin_log:
|
|
232
232
|
area:
|
|
233
|
-
create: "%{user_name} parte-hartzaileak%{resource_name} arloa sortu du"
|
|
233
|
+
create: "%{user_name} parte-hartzaileak %{resource_name} arloa sortu du"
|
|
234
234
|
delete: "%{user_name} parte-hartzaileak %{resource_name} arloa ezabatu da"
|
|
235
235
|
update: "%{user_name} parte-hartzaileak %{resource_name} arloa eguneratu du"
|
|
236
236
|
area_type:
|
|
@@ -421,7 +421,7 @@ eu:
|
|
|
421
421
|
success: Zuzenketa zuzen kendu da.
|
|
422
422
|
wizard_step_form:
|
|
423
423
|
steps:
|
|
424
|
-
'1':
|
|
424
|
+
'1': Zure zuzenketa egin
|
|
425
425
|
'2': Zure zuzenketa argitaratu
|
|
426
426
|
anonymous_user: Anonimoa
|
|
427
427
|
application:
|
|
@@ -479,7 +479,7 @@ eu:
|
|
|
479
479
|
expires_at: '%{timestamp} iraungitzen da'
|
|
480
480
|
foo_authorization:
|
|
481
481
|
fields:
|
|
482
|
-
bar:
|
|
482
|
+
bar: Barra
|
|
483
483
|
foo: Foo
|
|
484
484
|
name: Foo baimena
|
|
485
485
|
granted_at: Onartua %{timestamp}
|
|
@@ -513,7 +513,7 @@ eu:
|
|
|
513
513
|
explanation: Sentitzen dugu, baina ezin diozu heldu ekintza honi, zure baimen-datuetako batzuk ez datozelako bat.
|
|
514
514
|
invalid_field: "%{field} datu-eremuaren balioa %{value} ez da baliozkoa."
|
|
515
515
|
ok: Ados
|
|
516
|
-
title: Ez
|
|
516
|
+
title: Ez zaude baimenduta
|
|
517
517
|
unconfirmed:
|
|
518
518
|
confirmation_instructions: 'Berrespen-argibideak jaso ez badituzu, berriro eska ditzakezu:'
|
|
519
519
|
explanation_html: Ekintza hau burutzeko baimena behar da, egiten zure email berretsi behar duzula aurretik behar duzu <strong>%{email}</strong>.
|
|
@@ -555,7 +555,7 @@ eu:
|
|
|
555
555
|
global:
|
|
556
556
|
amendments_enabled: Zuzenketak gaituta
|
|
557
557
|
comments_enabled: Iruzkinak gaituta
|
|
558
|
-
comments_max_length:
|
|
558
|
+
comments_max_length: Iruzkin bakoitzeko gehieneko karaktereak
|
|
559
559
|
define_taxonomy_filters: Mesedez, eszenatoki hau erabili aurretik, zehaztu espazio parte-hartzaile honetarako iragazki batzuk.
|
|
560
560
|
dummy_global_attribute1: Balizko atributua 1
|
|
561
561
|
dummy_global_attribute2: Balizko atributua 2
|
|
@@ -662,6 +662,13 @@ eu:
|
|
|
662
662
|
all: Guztiak
|
|
663
663
|
filter_taxonomy_values:
|
|
664
664
|
all: Guztiak
|
|
665
|
+
delete_user_mailer:
|
|
666
|
+
delete:
|
|
667
|
+
body_1: Zure kontua desaktibatu egin da eta ezin da sartu. Zure datu pertsonalak behin betiko ezabatuko dira, datuak gordetzeko gure politikekin bat etorriz.
|
|
668
|
+
body_2: Segurtasun arrazoiengatik, baimenarekin lotutako datu batzuk gordeko dira; kontu berri bat sortu eta berriro baimena ematen baduzu, zure kontu berriarekin lotuta egon daiteke.
|
|
669
|
+
greetings_html: Adeitasunez, <br/><a href="%{organization_url}">%{organization_name}</a>
|
|
670
|
+
hello: '%{username}, estimatua:'
|
|
671
|
+
subject: Zure kontua ezabatu egin da
|
|
665
672
|
devise:
|
|
666
673
|
omniauth_registrations:
|
|
667
674
|
create:
|
|
@@ -774,7 +781,7 @@ eu:
|
|
|
774
781
|
created_at: Zein datatan eta zein ordutan sortu zen parte-hartzaile pribatu hau
|
|
775
782
|
id: Parte-hartzaile honen identifikatzaile bakarra
|
|
776
783
|
privatable_to: Zein espaziotakoa den parte-hartzaile pribatu hau
|
|
777
|
-
published:
|
|
784
|
+
published: Parte-hartzaile pribatu hau argitaratuta dagoen ala ez
|
|
778
785
|
role: Zein rol duen parte-hartzaile pribatu honek
|
|
779
786
|
updated_at: Zein datatan eta zein ordutan eguneratu zen parte-hartzaile pribatu hau
|
|
780
787
|
reports:
|
|
@@ -864,7 +871,7 @@ eu:
|
|
|
864
871
|
try_later: Mesedez, geroago saiatu berriro. Erroreak jarraitzen badu, mesedez, kopiatu ondoko informazio hau eta bidali plataformaren mantentzaileei partekatu nahi duzun bestelako informazioarekin batera.
|
|
865
872
|
unknown: Ezezaguna
|
|
866
873
|
url: URL
|
|
867
|
-
user: Parte-hartzailearen ID
|
|
874
|
+
user: Parte-hartzailearen ID-a
|
|
868
875
|
not_found:
|
|
869
876
|
back_home: Itzuli hasierara
|
|
870
877
|
content_doesnt_exist: Helbide hau okerra da edo ezabatua izan da.
|
|
@@ -878,7 +885,7 @@ eu:
|
|
|
878
885
|
email_subject: Onartu da %{emendation_author_nickname} ren %{amendable_title} zuzenketa
|
|
879
886
|
notification_title: '<a href="%{emendation_author_path}">%{emendation_author_nickname} egileak sortutako </a><a href="% emendation_path}">zuzenketa onartu da honetarako: <a href="%{amendable_path}">%{amendable_title}</a>.'
|
|
880
887
|
follower:
|
|
881
|
-
email_intro: '
|
|
888
|
+
email_intro: 'Zuzenketa bat onartu honetarako %{amendable_title}. Orrialde honetatik ikus dezakezu:'
|
|
882
889
|
email_outro: Jakinarazpen hau jaso duzu %{amendable_title} jarraitzen duzulako. Aurreko estekan sartu jakinarazpenak jasotzeari utzi nahi badiozu.
|
|
883
890
|
email_subject: '%{emendation_author_nickname} ren aldaketa onartuta honetarako: %{amendable_title}'
|
|
884
891
|
notification_title: '<a href="%{emendation_author_path}">%{emendation_author_nickname}</a> k sortutako <a href="%{emendation_path}"></a> zuzenketa onartu da honetarako: <a href="%{amendable_path}">%{amendable_title}</a>.'
|
|
@@ -902,7 +909,7 @@ eu:
|
|
|
902
909
|
follower:
|
|
903
910
|
email_intro: '%{amendable_title} rako zuzenketa %{amendable_type} berri gisa argitaratu da. Orrialde honetan ikusi dezakezu:'
|
|
904
911
|
email_outro: Jakinarazpen hau jaso duzu %{amendable_title} jarraitzen duzulako. Aurreko esteka jarraituz jakinarazpenak jasotzeari uztea erabaki dezakezu.
|
|
905
|
-
email_subject:
|
|
912
|
+
email_subject: 'Hemendik: %{emendation_author_nickname} zuzenketa bat argitaratu da %{amendable_type} berri gisa'
|
|
906
913
|
notification_title: <a href="%{emendation_path}"> k ukatu du </a> zuzenketa honetarako <a href="%{amendable_path}">%{amendable_title}</a> argitaratu du %{amendable_type} berri gisa honek <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
907
914
|
amendment_rejected:
|
|
908
915
|
affected_user:
|
|
@@ -930,7 +937,7 @@ eu:
|
|
|
930
937
|
component_published:
|
|
931
938
|
email_intro: '%{resource_title} osagaia aktibatu da %{participatory_space_title} espazioan. Orrialde honetan ikus dezakezu:'
|
|
932
939
|
email_outro: Jakinarazpena jaso duzu %{participatory_space_title} jarraituz gero. Aurreko esteka jarraituz jakinarazpenak jasotzeari uztea erabaki dezakezu.
|
|
933
|
-
email_subject: '%{participatory_space_title}
|
|
940
|
+
email_subject: 'Eguneraketa bat honetarako: %{participatory_space_title}'
|
|
934
941
|
notification_title: '%{resource_title} osagaia aktibo dago iadanik <a href="%{resource_path}">%{participatory_space_title}</a> espaziorako'
|
|
935
942
|
email_event:
|
|
936
943
|
email_greeting: Kaixo, %{user_name},
|
|
@@ -957,7 +964,7 @@ eu:
|
|
|
957
964
|
email_intro: |-
|
|
958
965
|
Zure %{resource_type} ez da ikusgai egongo.<br>
|
|
959
966
|
Hori gertatu da zuk erantzun duzun proposamena, bilera, eztabaida edo iruzkina moderatu egin delako. Berriro erabilgarri jartzen bada, zure iruzkina automatikoki leheneratuko da.
|
|
960
|
-
email_outro: Jakinarazpen hau jaso duzu
|
|
967
|
+
email_outro: Jakinarazpen hau jaso duzu %{resource_type} ekimenaren egilea zarelako.
|
|
961
968
|
email_subject: Zure %{resource_type} ez da dagoeneko ikusten
|
|
962
969
|
notification_title: |-
|
|
963
970
|
Zure %{resource_type} ez da ikusgai egongo.<br>
|
|
@@ -1004,7 +1011,7 @@ eu:
|
|
|
1004
1011
|
dummy_resource: Balizko baliabideak
|
|
1005
1012
|
meeting: Topaketa-zerrenda
|
|
1006
1013
|
project: Proiektuak
|
|
1007
|
-
proposal:
|
|
1014
|
+
proposal: Proposamen
|
|
1008
1015
|
result: Emaitzak
|
|
1009
1016
|
fingerprint:
|
|
1010
1017
|
check: Egiaztatu hatz-marka
|
|
@@ -1094,7 +1101,7 @@ eu:
|
|
|
1094
1101
|
conditions:
|
|
1095
1102
|
- Beste pertsona batzuei aktibo eta jarraitzen zaien ziurgabetasuna beste pertsona batzuek segituko dute.
|
|
1096
1103
|
description: Bereizgarria jarraitzaile kopuru jakin batera iristen zarenean ematen da. %{organization_name} sare soziala eta politikoa da, zure web-orria plataforman beste pertsona batzuekin komunikatzeko ehuna egiten du.
|
|
1097
|
-
description_another:
|
|
1104
|
+
description_another: Erabiltzaile honek %{score} jarraitzaile ditu.
|
|
1098
1105
|
description_own: "%{score} parte-hartzailek jarraitzen zaituzte."
|
|
1099
1106
|
name: Jarraitzaileak
|
|
1100
1107
|
next_level_in: Lortu %{score} parte-hartzaile gehiago jarraitzeko hurrengo mailara iristeko!
|
|
@@ -1150,7 +1157,7 @@ eu:
|
|
|
1150
1157
|
log:
|
|
1151
1158
|
base_presenter:
|
|
1152
1159
|
create: "%{user_name} parte-hartzaileak %{resource_name} sortu du"
|
|
1153
|
-
create_with_space: "%{user_name}
|
|
1160
|
+
create_with_space: "%{user_name} parte-hartzaileak %{resource_name} emaitza sortu du %{space_name} espazioan"
|
|
1154
1161
|
delete: "%{user_name} parte-hartzaileak %{resource_name} ezabatu du"
|
|
1155
1162
|
delete_with_space: "%{user_name} parte-hartzaileak %{resource_name} ezabatu du %{space_name} espazioan"
|
|
1156
1163
|
publish: "%{user_name} parte-hartzaileak %{resource_name} argitaratu du"
|
|
@@ -1158,11 +1165,11 @@ eu:
|
|
|
1158
1165
|
unknown_action: "%{user_name} parte-hartzaileak ekintza batzuk egin ditu %{resource_name} ean"
|
|
1159
1166
|
unknown_action_with_space: "%{user_name} parte-hartzaileak ekintza batzuk egin ditu %{resource_name} ean %{space_name} espazioan"
|
|
1160
1167
|
unpublish_with_space: "%{user_name} parte-hartzaileak %{resource_name} despargitaratu du %{space_name} espaziotik"
|
|
1161
|
-
update: "%{user_name}
|
|
1168
|
+
update: "%{user_name} parte-hartzaileak %{resource_name} eguneratu du"
|
|
1162
1169
|
update_filters: "%{user_name} parte-hartzaileak %{resource_name} iragazkia eguneratu du"
|
|
1163
1170
|
update_filters_with_space: "%{user_name} parte-hartzaileak %{resource_name} ren iragazkiak eguneratu ditu %{space_name} espazioan"
|
|
1164
|
-
update_permissions_with_space: "%{user_name}
|
|
1165
|
-
update_with_space: "%{user_name} parte-
|
|
1171
|
+
update_permissions_with_space: "%{user_name} parte-hartzaileak %{resource_name} ren baimenak eguneratu ditu %{space_name} espazioan"
|
|
1172
|
+
update_with_space: "%{user_name} parte-hartzileak eguneratu du %{resource_name} hemen %{space_name}"
|
|
1166
1173
|
value_types:
|
|
1167
1174
|
area_presenter:
|
|
1168
1175
|
not_found: 'Arloa ez da (ID: %{id}) datu-basean aurkitu'
|
|
@@ -1193,12 +1200,12 @@ eu:
|
|
|
1193
1200
|
new_conversation:
|
|
1194
1201
|
greeting: Kaixo, %{recipient}!
|
|
1195
1202
|
intro: "%{sender} bidaltzaileak beste elkarrizketa bat hasi du zurekin. Egin klik hemen ikusteko:"
|
|
1196
|
-
outro:
|
|
1203
|
+
outro: Gozatu plataforma!
|
|
1197
1204
|
subject: "%{sender} bidaltzaileak elkarrizketa bat hasi du zurekin"
|
|
1198
1205
|
new_message:
|
|
1199
1206
|
greeting: Kaixo, %{recipient}!
|
|
1200
1207
|
intro: "%{sender} bidaltzaileak elkarrizketan mezu berriak argitaratu ditu. Egin klik hemen ikusteko:"
|
|
1201
|
-
outro:
|
|
1208
|
+
outro: Gozatu plataforma!
|
|
1202
1209
|
subject: '%{sender} bidaltzailearen mezu berriak dituzu'
|
|
1203
1210
|
conversations:
|
|
1204
1211
|
add_conversation_users:
|
|
@@ -1212,7 +1219,6 @@ eu:
|
|
|
1212
1219
|
create:
|
|
1213
1220
|
error: Elkarrizketa ez da hasi. Saiatu berriro geroago.
|
|
1214
1221
|
error_modal:
|
|
1215
|
-
close: Itxi leihoa
|
|
1216
1222
|
correct_errors: Mesedez, zuzendu akatsak eta saiatu berriro.
|
|
1217
1223
|
intro: 'Zure mezuan honako akats hauek gertatu dira:'
|
|
1218
1224
|
ok: Ados
|
|
@@ -1307,7 +1313,7 @@ eu:
|
|
|
1307
1313
|
daily: Jakinarazpenen eguneroko laburpena
|
|
1308
1314
|
real_time: Denbora erreala
|
|
1309
1315
|
weekly: Jakinarazpenen asteko laburpena
|
|
1310
|
-
hello: Kaixo %{name}
|
|
1316
|
+
hello: Kaixo, %{name}
|
|
1311
1317
|
intro:
|
|
1312
1318
|
daily: 'Hona hemen aktibitatean oinarritutako azken egunetako jakinarazpenak:'
|
|
1313
1319
|
real_time: 'Jarraitzen ari zaren jarduerari buruzko jakinarazpena da hau:'
|
|
@@ -1338,6 +1344,7 @@ eu:
|
|
|
1338
1344
|
own_activity: Neure jarduera, norbaitek nire proposamenean iruzkina egiten duenean bezala, edo aipatzen nauenean
|
|
1339
1345
|
push_notifications: Push jakinarazpenak
|
|
1340
1346
|
push_notifications_reminder: Plataformaren jakinarazpenak jasotzeko, lehen zure nabigatzailearen konfigurazioan baimendu behar dituzu.
|
|
1347
|
+
push_notifications_unsupported_browser: Zure nabigatzaileak ez du euskarririk.
|
|
1341
1348
|
receive_notifications_about: Jakinarazpenak jaso nahi ditut
|
|
1342
1349
|
update_notifications_settings: Gorde aldaketak
|
|
1343
1350
|
update:
|
|
@@ -1472,11 +1479,11 @@ eu:
|
|
|
1472
1479
|
how_to_participate: Nola har dezaket parte prozesu batean?
|
|
1473
1480
|
meetings: Bilerak
|
|
1474
1481
|
meetings_explanation: Jakin non eta noiz har dezakezun parte bilera publikoetan.
|
|
1475
|
-
more_info:
|
|
1482
|
+
more_info: Informazio gehiago %{resource_name} prozesuari buruz
|
|
1476
1483
|
proposals: Proposamenak
|
|
1477
1484
|
proposals_explanation: Egin proposamenak, babestu lehendik daudenak, eta sustatu ikusi nahi dituzun aldaketak.
|
|
1478
1485
|
footer_sub_hero:
|
|
1479
|
-
footer_sub_hero_body_html: Eraiki dezagun gizarte
|
|
1486
|
+
footer_sub_hero_body_html: Eraiki dezagun gizarte irekiagoa, gardenagoa eta kolaboratiboagoa <br /> Lotu, hartu parte eta erabaki.
|
|
1480
1487
|
footer_sub_hero_headline: Ongi etorri %{organization} erakundearen partaidetzarako plataformara.
|
|
1481
1488
|
register: Kontu bat sortu
|
|
1482
1489
|
hero:
|
|
@@ -1499,7 +1506,7 @@ eu:
|
|
|
1499
1506
|
success: Bikain! Onartu dituzu zerbitzuaren baldintzak.
|
|
1500
1507
|
form:
|
|
1501
1508
|
agreement: Ados nago baldintza hauekin
|
|
1502
|
-
legend:
|
|
1509
|
+
legend: Onartu zerbitzuaren baldintzak
|
|
1503
1510
|
refuse:
|
|
1504
1511
|
modal_body: Onartzen ez baduzu, ezin izango duzu plataforman parte hartu, <a href="%{download_your_data_path}">zure datuak deskargatu ahal dituzu</a> eta/edo <a href="%{delete_path}">zure kontua ezabatu</a>.
|
|
1505
1512
|
modal_btn_continue: Onartu baldintzak eta jarraitu
|
|
@@ -1523,13 +1530,6 @@ eu:
|
|
|
1523
1530
|
log_in: hasi saioa
|
|
1524
1531
|
never_logged_in: inoiz ez konektatua
|
|
1525
1532
|
subject: Kontu inaktiboaren abisua
|
|
1526
|
-
removal_notification:
|
|
1527
|
-
body: Zure %{organization_name} kontua ezabatu egin da inaktibitateagatik.
|
|
1528
|
-
greetings_html: |
|
|
1529
|
-
Adeitasunez,<br>
|
|
1530
|
-
%{organization_name}
|
|
1531
|
-
hello: "%{username}, agurgarria:\n"
|
|
1532
|
-
subject: Kontu inaktiboa ezabatua
|
|
1533
1533
|
passwords:
|
|
1534
1534
|
update:
|
|
1535
1535
|
error: Arazo bat egon da pasahitza eguneratzean.
|
|
@@ -1584,10 +1584,10 @@ eu:
|
|
|
1584
1584
|
details: Xehetasunak
|
|
1585
1585
|
hello: Kaixo, %{name},
|
|
1586
1586
|
id: ID
|
|
1587
|
-
participatory_space:
|
|
1587
|
+
participatory_space: Espazio parte-hartzailea
|
|
1588
1588
|
reason: Arrazoia
|
|
1589
1589
|
report_html: <p>Hurrengo <a href="%{url}"> edukia </a> salatua izan da.</p>
|
|
1590
|
-
see_report:
|
|
1590
|
+
see_report: Ikusi txostena
|
|
1591
1591
|
subject: Eduki bat salatua izan da
|
|
1592
1592
|
reports:
|
|
1593
1593
|
create:
|
|
@@ -1625,7 +1625,7 @@ eu:
|
|
|
1625
1625
|
filters_small_view:
|
|
1626
1626
|
filter: Iragazi
|
|
1627
1627
|
filter_and_search: Iragazi eta bilatu
|
|
1628
|
-
filter_by: Iragazi arabera
|
|
1628
|
+
filter_by: Iragazi honen arabera
|
|
1629
1629
|
results:
|
|
1630
1630
|
view_all: Ikusi dena (%{count})
|
|
1631
1631
|
security:
|
|
@@ -1654,10 +1654,10 @@ eu:
|
|
|
1654
1654
|
description: Eduki hau desegokia da?
|
|
1655
1655
|
does_not_belong: Bertan badago legez kontrako jardunik, suizidio-mehatxurik, informazio pertsonalik edo beste zernahi, zure ustez %{organization_name}-ri ez dagokionik.
|
|
1656
1656
|
hide: Ezkutatu
|
|
1657
|
-
hide_content:
|
|
1657
|
+
hide_content: Ezkutatu edukia
|
|
1658
1658
|
offensive: Bertan badago arrazakeriarik, sexismorik, irainik, eraso pertsonalik, heriotza-mehatxurik, suizidio-eskaerarik edo beste edozein eratako gorroto-diskurtsorik.
|
|
1659
1659
|
reason: Arrazoia
|
|
1660
|
-
report:
|
|
1660
|
+
report: Txostena
|
|
1661
1661
|
spam: Clickbait, publizitatea, iruzurrak edo script bot-ak ditu.
|
|
1662
1662
|
title: Salatu eduki desegokia
|
|
1663
1663
|
flag_user_modal:
|
|
@@ -1700,7 +1700,7 @@ eu:
|
|
|
1700
1700
|
comments_count: Iruzkinak
|
|
1701
1701
|
comments_count_tooltip: Espazio honetan dauden iruzkin guztiak.
|
|
1702
1702
|
followers_count: Jarraitzaileak
|
|
1703
|
-
followers_count_tooltip: Zenbat parte-
|
|
1703
|
+
followers_count_tooltip: Zenbat parte-hartzailek jarraitzen duten espazio honen parteren bat eguneratuta egoteko.
|
|
1704
1704
|
headline: Estatistikak
|
|
1705
1705
|
likes_count: Likeak
|
|
1706
1706
|
no_stats: Oraindik ez dago estatistikarik.
|
|
@@ -1738,7 +1738,7 @@ eu:
|
|
|
1738
1738
|
notify_deprecation_to_owner:
|
|
1739
1739
|
body_1: '%{organization_name} (e) n duzun taldearen profilari buruzko eguneraketa garrantzitsu baten berri ematera gatozkizu.'
|
|
1740
1740
|
body_2: 'Zurea bezalako erakundeen esperientzia sinplifikatzeko gure ahaleginen zati gisa, orain arte ezagutzen dugun "Erabiltzaile Taldeak" funtzioa zaharkituta geratuko da. Taldearen profila: <strong>%{name}</strong>, ohiko parte-hartzailearen profil bihurtu da.'
|
|
1741
|
-
body_3: Zure kontuan sartzen jarraitzeko eta sarbidea partekatzeko, pasahitz bat
|
|
1741
|
+
body_3: Zure kontuan sartzen jarraitzeko eta sarbidea partekatzeko, pasahitz bat ezarri behar dizugu. Behin ezarrita, saioa hasteko kredentzialak (posta elektronikoa eta pasahitza) edonorekin parteka ditzakezu.
|
|
1742
1742
|
greeting: '%{name}, agurgarria:'
|
|
1743
1743
|
instructions_1: 'Egin klik beheko estekan zure pasahitza ezartzeko:'
|
|
1744
1744
|
instructions_2: 'Partekatu saioa hasteko kredentzialak (posta elektronikoa: %{email} eta pasahitz berria) zure lankideekin.'
|
|
@@ -1788,7 +1788,7 @@ eu:
|
|
|
1788
1788
|
version_index: '%{total} en %{index} bertsioa'
|
|
1789
1789
|
welcome_notification:
|
|
1790
1790
|
default_body: <p>Kaixo {{name}}, eskerrik asko {{organization}}-era lotzeagatik eta ongi etorria!</p><ul><li>Hemen zer egin dezakezun ideia azkar bat nahi baduzu, begiratu <a href="{{help_url}}">Laguntza</a> atalean.</li><li>Behin irakurri ondoren, zure lehen garaikurra jasoko duzu. Hemen da <a href="{{badges_url}}">garaikur guztien zerrenda</a> zuk lor ditzakezunak {{organization}} ean parte hartuz.</li><li> Azkenik, lotu beste pertsona batzuei eta partekatu haiekin inplikatzearen eta {{organization}} ean parte hartzearen esperientzia. Egin proposamenak, iruzkinak, eztabaidak, pentsatu nola lagundu denon onerako, eman argudioak konbentzitzeko, entzun eta irakurri zeure burua konbentzitzeko, adierazi zure ideiak modu zehatzean, erantzun pazientziaz eta erabakiz, defendatu zure ideiak eta mantendu burua zabalik, beste pertsona batzuen ideietan lankidetzan aritzeko.</li></ul>
|
|
1791
|
-
default_subject:
|
|
1791
|
+
default_subject: Eskerrik asko {{organization}} erakundearekin bat egiteagatik!
|
|
1792
1792
|
wizard_step_form:
|
|
1793
1793
|
wizard_aside:
|
|
1794
1794
|
back: Atzera
|
|
@@ -1799,7 +1799,7 @@ eu:
|
|
|
1799
1799
|
confirmations:
|
|
1800
1800
|
confirmed: Zure helbide elektronikoa ondo egiaztatu da.
|
|
1801
1801
|
new:
|
|
1802
|
-
resend_confirmation_instructions:
|
|
1802
|
+
resend_confirmation_instructions: Birbidali berrespen-jarraibideak
|
|
1803
1803
|
send_instructions: Jarraibideak azaltzen dituen mezu elektroniko bat jasoko duzu, zure helbide elektronikoa berretsi ahal izateko minutu gutxi barru.
|
|
1804
1804
|
send_paranoid_instructions: Zure helbide elektronikoa gure datu-basean badago, mezu elektroniko bat jasoko duzu zure helbide elektronikoa minutu gutxi barru baieztatzeko jarraibideekin.
|
|
1805
1805
|
failure:
|
|
@@ -1838,17 +1838,17 @@ eu:
|
|
|
1838
1838
|
email_changed:
|
|
1839
1839
|
greeting: Kaixo %{recipient}!
|
|
1840
1840
|
message: 'Zuregana jotzen dugu jakinarazteko zure posta elektronikoa aldatu dela honengatik: %{email}.'
|
|
1841
|
-
subject:
|
|
1841
|
+
subject: Helbide elektronikoa aldatu da
|
|
1842
1842
|
invitation_instructions:
|
|
1843
1843
|
accept: Gonbita onartu
|
|
1844
1844
|
accept_until: 'Gonbidapen hau data honetan iraungiko da: %{due_date}.'
|
|
1845
|
-
decline:
|
|
1845
|
+
decline: Baztertu gonbidapena
|
|
1846
1846
|
hello: Kaixo, %{email},
|
|
1847
1847
|
ignore: |-
|
|
1848
1848
|
Gonbidapena onartu nahi ez baduzu, mesedez, ez egin kasurik mezu elektroniko honi. Zure kontua ez da sortuko, goiko estekara sartu eta zure erabiltzaile-izena eta pasahitza ezarri arte.
|
|
1849
1849
|
invited_you_as_admin: "%{invited_by} admnisitrariak %{application} administratzaile gisa gonbidatu zaitu. Beheko estekan onartu dezakezu."
|
|
1850
1850
|
invited_you_as_private_user: "%{invited_by} parte-hartzaileak egonbidatu zaitu %{application} ko erabiltzaile pribatu gisa. Beheko estekan onartu dezakezu."
|
|
1851
|
-
someone_invited_you: Norbaitek %{application} gonbidatu zaitu. Beheko estekan onar dezakezu.
|
|
1851
|
+
someone_invited_you: Norbaitek %{application} aplikaziora gonbidatu zaitu. Beheko estekan onar dezakezu.
|
|
1852
1852
|
someone_invited_you_as_admin: Norbaitek %{application} administratzaile gisa gonbidatu zaitu, beheko estekan onar dezakezu.
|
|
1853
1853
|
someone_invited_you_as_private_user: Norbaitek %{application} ko parte-hartzaile pribatu gisa gonbidatu zaitu, beheko estekan onar dezakezu.
|
|
1854
1854
|
subject: Gonbidapenaren argibideak
|
|
@@ -1866,14 +1866,14 @@ eu:
|
|
|
1866
1866
|
subject: Pasahitza aldatu da
|
|
1867
1867
|
reset_password_instructions:
|
|
1868
1868
|
action: Nire pasahitza aldatu
|
|
1869
|
-
greeting: Kaixo %{recipient}!
|
|
1869
|
+
greeting: Kaixo, %{recipient}!
|
|
1870
1870
|
instruction: Norbaitek esteka bat eskatu du zure pasahitza aldatzeko, eta beheko estekaren bidez egin dezakezu.
|
|
1871
1871
|
instruction_2: Ez baduzu hori eskatu, ez egin kasurik mezu honi.
|
|
1872
1872
|
instruction_3: Zure pasahitza ez da aldatuko aurreko estekara sartu eta beste bat sortu arte.
|
|
1873
1873
|
subject: Berrezarri pasahitzaren argibideak
|
|
1874
1874
|
unlock_instructions:
|
|
1875
1875
|
action: Nire kontua desbloqueatu
|
|
1876
|
-
greeting: Kaixo %{recipient}!
|
|
1876
|
+
greeting: Kaixo, %{recipient}!
|
|
1877
1877
|
instruction: 'Egin klik beheko estekan zure kontua desblokeatzeko:'
|
|
1878
1878
|
message: Zure kontua blokeatu egin da saiakeretan izandako gehiegizko saio porrokatuengatik.
|
|
1879
1879
|
subject: Desblokeatu argibideak
|
|
@@ -1925,7 +1925,7 @@ eu:
|
|
|
1925
1925
|
sign_up: Sortu kontu bat
|
|
1926
1926
|
minimum_password_length:
|
|
1927
1927
|
one: "(karaktere bat gutxienez)"
|
|
1928
|
-
other: "(
|
|
1928
|
+
other: "(%{count} karaktere gutxienez)"
|
|
1929
1929
|
unlocks:
|
|
1930
1930
|
new:
|
|
1931
1931
|
resend_unlock_instructions: Birbidali desblokeatzeko argibideak
|
|
@@ -2127,7 +2127,7 @@ eu:
|
|
|
2127
2127
|
social_media: Sare Sozialak
|
|
2128
2128
|
terms_of_service: Zerbitzuaren baldintzak
|
|
2129
2129
|
header:
|
|
2130
|
-
back:
|
|
2130
|
+
back: Atzera
|
|
2131
2131
|
close: Itxi
|
|
2132
2132
|
confirm_close_ephemeral_session: Nabigatzeari uzten badiozu, zure behin-behineko saioa itxita egongo da. Hala ere, zure aurrerapen eta jarduera guztiak salbatuko dira. Jarduera amaitu baduzu, egin klik Ok botoian.
|
|
2133
2133
|
confirm_title_close_ephemeral_session: Orri honetatik irten baino lehen…
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -424,7 +424,7 @@ fi-pl:
|
|
|
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-pl:
|
|
|
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:
|
|
@@ -1214,7 +1221,6 @@ fi-pl:
|
|
|
1214
1221
|
create:
|
|
1215
1222
|
error: Keskustelun aloittaminen epäonnistui. Yritä myöhemmin uudelleen.
|
|
1216
1223
|
error_modal:
|
|
1217
|
-
close: Sulje ikkuna
|
|
1218
1224
|
correct_errors: Korjaa virheet ja yritä uudestaan.
|
|
1219
1225
|
intro: 'Viestisi sisältää seuraavia virheitä:'
|
|
1220
1226
|
ok: OK
|
|
@@ -1340,6 +1346,7 @@ fi-pl:
|
|
|
1340
1346
|
own_activity: Oma toiminta, kuten omia ehdotuksia koskevat kommentit tai maininnat
|
|
1341
1347
|
push_notifications: Push-ilmoitukset
|
|
1342
1348
|
push_notifications_reminder: Mikäli haluat vastaanottaa push-ilmoituksia alustalta, sinun on sallittava ne ensin selaimesi asetuksista tälle sivustolle.
|
|
1349
|
+
push_notifications_unsupported_browser: Selaimesi ei ole tuettu.
|
|
1343
1350
|
receive_notifications_about: Haluan saada ilmoituksia
|
|
1344
1351
|
update_notifications_settings: Tallenna muutokset
|
|
1345
1352
|
update:
|
|
@@ -1525,13 +1532,6 @@ fi-pl:
|
|
|
1525
1532
|
log_in: kirjaudu sisään
|
|
1526
1533
|
never_logged_in: et ole koskaan kirjautunut palveluun
|
|
1527
1534
|
subject: Varoitus passiivisesta käyttäjätilistä
|
|
1528
|
-
removal_notification:
|
|
1529
|
-
body: Tilisi palvelussa %{organization_name} on poistettu, koska tiliä ei ole käytetty pitkään aikaan.
|
|
1530
|
-
greetings_html: |
|
|
1531
|
-
Terveisin,<br>
|
|
1532
|
-
%{organization_name}
|
|
1533
|
-
hello: Hei %{username},
|
|
1534
|
-
subject: Käyttämättä ollut tili on poistettu
|
|
1535
1535
|
passwords:
|
|
1536
1536
|
update:
|
|
1537
1537
|
error: Salasanan päivitys epäonnistui.
|
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:
|
|
@@ -1214,7 +1221,6 @@ fi:
|
|
|
1214
1221
|
create:
|
|
1215
1222
|
error: Keskustelun aloittaminen epäonnistui. Yritä myöhemmin uudestaan.
|
|
1216
1223
|
error_modal:
|
|
1217
|
-
close: Sulje ikkuna
|
|
1218
1224
|
correct_errors: Korjaa virheet ja yritä uudestaan.
|
|
1219
1225
|
intro: 'Viestisi sisältää seuraavia virheitä:'
|
|
1220
1226
|
ok: OK
|
|
@@ -1340,6 +1346,7 @@ fi:
|
|
|
1340
1346
|
own_activity: Oma toiminta, kuten omia ehdotuksia koskevat kommentit tai maininnat
|
|
1341
1347
|
push_notifications: Push-ilmoitukset
|
|
1342
1348
|
push_notifications_reminder: Mikäli haluat vastaanottaa push-ilmoituksia alustalta, sinun on sallittava ne ensin selaimesi asetuksista tälle sivustolle.
|
|
1349
|
+
push_notifications_unsupported_browser: Selaimesi ei ole tuettu.
|
|
1343
1350
|
receive_notifications_about: Haluan saada ilmoituksia
|
|
1344
1351
|
update_notifications_settings: Tallenna muutokset
|
|
1345
1352
|
update:
|
|
@@ -1525,13 +1532,6 @@ fi:
|
|
|
1525
1532
|
log_in: kirjaudu sisään
|
|
1526
1533
|
never_logged_in: et ole koskaan kirjautunut palveluun
|
|
1527
1534
|
subject: Varoitus passiivisesta käyttäjätilistä
|
|
1528
|
-
removal_notification:
|
|
1529
|
-
body: Tilisi palvelussa %{organization_name} on poistettu, koska tiliä ei ole käytetty pitkään aikaan.
|
|
1530
|
-
greetings_html: |
|
|
1531
|
-
Terveisin,<br>
|
|
1532
|
-
%{organization_name}
|
|
1533
|
-
hello: Hei %{username},
|
|
1534
|
-
subject: Käyttämättä ollut tili on poistettu
|
|
1535
1535
|
passwords:
|
|
1536
1536
|
update:
|
|
1537
1537
|
error: Salasanan päivitys epäonnistui.
|
|
@@ -2052,8 +2052,8 @@ fi:
|
|
|
2052
2052
|
correct_errors: Lomakkeella on virheitä, korjaa ne jatkaaksesi.
|
|
2053
2053
|
length_validator:
|
|
2054
2054
|
minimum:
|
|
2055
|
-
one: Vähintään %{count}
|
|
2056
|
-
other: Vähintään %{count}
|
|
2055
|
+
one: Vähintään %{count} merkki
|
|
2056
|
+
other: Vähintään %{count} merkkiä
|
|
2057
2057
|
required: Pakollinen kenttä
|
|
2058
2058
|
required_explanation: "* Vaaditut kentät on merkitty tähtimerkillä"
|
|
2059
2059
|
invisible_captcha:
|
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:
|
|
@@ -1090,7 +1098,6 @@ fr-CA:
|
|
|
1090
1098
|
create:
|
|
1091
1099
|
error: La conversation n'a pas commencé. Réessayez plus tard.
|
|
1092
1100
|
error_modal:
|
|
1093
|
-
close: Fermer la fenêtre de dialogue
|
|
1094
1101
|
correct_errors: Veuillez corriger les erreurs et réessayer.
|
|
1095
1102
|
intro: 'Il y a eu les erreurs suivantes avec votre message :'
|
|
1096
1103
|
ok: Ok
|
|
@@ -1216,6 +1223,7 @@ fr-CA:
|
|
|
1216
1223
|
own_activity: Ma propre activité, comme quand quelqu'un commente dans ma proposition ou me mentionne
|
|
1217
1224
|
push_notifications: Notifications push
|
|
1218
1225
|
push_notifications_reminder: Pour recevoir des notifications de la plateforme, vous devez d'abord les autoriser dans les paramètres de votre navigateur.
|
|
1226
|
+
push_notifications_unsupported_browser: Votre navigateur n'est pas pris en charge.
|
|
1219
1227
|
receive_notifications_about: Je veux recevoir des notifications sur
|
|
1220
1228
|
update_notifications_settings: Enregistrer les modifications
|
|
1221
1229
|
update:
|
|
@@ -1376,13 +1384,6 @@ fr-CA:
|
|
|
1376
1384
|
log_in: se connecter
|
|
1377
1385
|
never_logged_in: jamais connecté
|
|
1378
1386
|
subject: Avertissement de compte inactif
|
|
1379
|
-
removal_notification:
|
|
1380
|
-
body: Votre compte %{organization_name} a été supprimé en raison de son inactivité.
|
|
1381
|
-
greetings_html: |
|
|
1382
|
-
Cordialement,<br>
|
|
1383
|
-
%{organization_name}
|
|
1384
|
-
hello: Cher(ère) %{username},
|
|
1385
|
-
subject: Compte inactif supprimé
|
|
1386
1387
|
passwords:
|
|
1387
1388
|
update:
|
|
1388
1389
|
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:
|
|
@@ -1090,7 +1098,6 @@ fr:
|
|
|
1090
1098
|
create:
|
|
1091
1099
|
error: La conversation n'a pas commencé. Réessayez plus tard.
|
|
1092
1100
|
error_modal:
|
|
1093
|
-
close: Fermer la fenêtre de dialogue
|
|
1094
1101
|
correct_errors: Veuillez corriger les erreurs et réessayer.
|
|
1095
1102
|
intro: 'Il y a eu les erreurs suivantes avec votre message :'
|
|
1096
1103
|
ok: Ok
|
|
@@ -1216,6 +1223,7 @@ fr:
|
|
|
1216
1223
|
own_activity: Ma propre activité, comme quand quelqu'un commente dans ma proposition ou me mentionne
|
|
1217
1224
|
push_notifications: Notifications push
|
|
1218
1225
|
push_notifications_reminder: Pour recevoir des notifications de la plateforme, vous devez d'abord les autoriser dans les paramètres de votre navigateur.
|
|
1226
|
+
push_notifications_unsupported_browser: Votre navigateur n'est pas pris en charge.
|
|
1219
1227
|
receive_notifications_about: Je veux recevoir des notifications sur
|
|
1220
1228
|
update_notifications_settings: Enregistrer les modifications
|
|
1221
1229
|
update:
|
|
@@ -1376,13 +1384,6 @@ fr:
|
|
|
1376
1384
|
log_in: se connecter
|
|
1377
1385
|
never_logged_in: jamais connecté
|
|
1378
1386
|
subject: Avertissement de compte inactif
|
|
1379
|
-
removal_notification:
|
|
1380
|
-
body: Votre compte %{organization_name} a été supprimé en raison de son inactivité.
|
|
1381
|
-
greetings_html: |
|
|
1382
|
-
Cordialement,<br>
|
|
1383
|
-
%{organization_name}
|
|
1384
|
-
hello: Cher(ère) %{username},
|
|
1385
|
-
subject: Compte inactif supprimé
|
|
1386
1387
|
passwords:
|
|
1387
1388
|
update:
|
|
1388
1389
|
error: Il y a eu un problème lors de la mise à jour de votre mot de passe.
|
data/config/locales/gl.yml
CHANGED
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
|
|
@@ -840,7 +836,6 @@ hu:
|
|
|
840
836
|
create:
|
|
841
837
|
error: A beszélgetés nem kezdődött el. Próbáld újra később.
|
|
842
838
|
error_modal:
|
|
843
|
-
close: Ablak bezárás
|
|
844
839
|
correct_errors: Kérjük javítsa a hibákat és próbálja újra.
|
|
845
840
|
intro: 'A következő hibákat tartalmazza az üzenet:'
|
|
846
841
|
ok: OK
|