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/lv.yml
CHANGED
|
@@ -182,9 +182,6 @@ lv:
|
|
|
182
182
|
update_draft:
|
|
183
183
|
error: Grozījuma melnraksta atjaunināšanas laikā radās kļūda.
|
|
184
184
|
success: Grozījuma melnraksts ir veiksmīgi atjaunināts.
|
|
185
|
-
wizard_step_form:
|
|
186
|
-
steps:
|
|
187
|
-
'1': Izveidot savu grozījumu
|
|
188
185
|
anonymous_user: Anonīms
|
|
189
186
|
application:
|
|
190
187
|
document:
|
|
@@ -356,13 +353,9 @@ lv:
|
|
|
356
353
|
affected_user:
|
|
357
354
|
email_intro: '%{amendable_title} ir pieņemts grozījums. To var redzēt šajā lapā:'
|
|
358
355
|
email_outro: Jūs saņēmāt šo paziņojumu, jo esat %{amendable_title} autors.
|
|
359
|
-
email_subject: Pieņemts grozījums %{amendable_title} no %{emendation_author_nickname}
|
|
360
|
-
notification_title: <a href="%{emendation_path}"> Grozījums </a>, ko izveidoja <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>, ir pieņemts <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
361
356
|
follower:
|
|
362
357
|
email_intro: '%{amendable_title} ir pieņemts grozījums. To var redzēt šajā lapā:'
|
|
363
358
|
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{amendable_title}. Jūs varat atteikties no paziņojumu saņemšanas, sekojot iepriekšējai saitei.
|
|
364
|
-
email_subject: Pieņemts grozījums %{amendable_title} no %{emendation_author_nickname}
|
|
365
|
-
notification_title: <a href="%{emendation_path}"> Grozījums </a>, ko izveidoja <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>, ir pieņemts <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
366
359
|
amendment_created:
|
|
367
360
|
affected_user:
|
|
368
361
|
email_intro: '%{amendable_title} ir izveidots jauns grozījums. To var redzēt šajā lapā.'
|
|
@@ -378,24 +371,16 @@ lv:
|
|
|
378
371
|
affected_user:
|
|
379
372
|
email_intro: 'Noraidītais %{amendable_title} grozījums ir publicēts kā jauns %{amendable_type}. To var redzēt šajā lapā:'
|
|
380
373
|
email_outro: Jūs saņēmāt šo paziņojumu, jo esat %{amendable_title} autors.
|
|
381
|
-
email_subject: '%{emendation_author_nickname} grozījums ir publicēts kā jauns %{amendable_type}'
|
|
382
|
-
notification_title: <a href="%{emendation_path}">noraidītais grozījums<a href="%{amendable_path}">%{amendable_title}</a> ir publicēts kā jauns %{amendable_type}, to publicēja <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
383
374
|
follower:
|
|
384
375
|
email_intro: 'Noraidītais %{amendable_title} grozījums ir publicēts kā jauns %{amendable_type}. To var redzēt šajā lapā:'
|
|
385
376
|
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{amendable_title}. Jūs varat atteikties no paziņojumu saņemšanas, sekojot iepriekšējai saitei.
|
|
386
|
-
email_subject: '%{emendation_author_nickname} grozījums ir publicēts kā jauns %{amendable_type}'
|
|
387
|
-
notification_title: <a href="%{emendation_path}">noraidītais grozījums<a href="%{amendable_path}">%{amendable_title}</a> ir publicēts kā jauns %{amendable_type}, to publicēja <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
388
377
|
amendment_rejected:
|
|
389
378
|
affected_user:
|
|
390
379
|
email_intro: '%{amendable_title} ir noraidīts grozījums. To var redzēt šajā lapā:'
|
|
391
380
|
email_outro: Jūs saņēmāt šo paziņojumu, jo esat %{amendable_title} autors.
|
|
392
|
-
email_subject: Noraidīts grozījums %{amendable_title} no %{emendation_author_nickname}
|
|
393
|
-
notification_title: <a href="%{emendation_path}"> grozījums </a>, ko izveidoja <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>, ir noraidīts <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
394
381
|
follower:
|
|
395
382
|
email_intro: '%{amendable_title} ir noraidīts grozījums. To var redzēt šajā lapā:'
|
|
396
383
|
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{amendable_title}. Jūs varat atteikties no paziņojumu saņemšanas, sekojot iepriekšējai saitei.
|
|
397
|
-
email_subject: Noraidīts grozījums %{amendable_title} no %{emendation_author_nickname}
|
|
398
|
-
notification_title: <a href="%{emendation_path}"> grozījums </a>, ko izveidoja <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>, ir noraidīts <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
399
384
|
attachments:
|
|
400
385
|
attachment_created:
|
|
401
386
|
email_intro: '%{resource_title} ir pievienots jauns dokuments. Jūs to varat redzēt šajā lapā:'
|
|
@@ -418,12 +403,6 @@ lv:
|
|
|
418
403
|
email_outro: Jūs saņēmāt šo paziņojumu, jo veicāt darbību mūsu tīmekļvietnē.
|
|
419
404
|
level_up:
|
|
420
405
|
email_outro: Jūs saņēmāt šo paziņojumu, jo veicāt darbību mūsu tīmekļvietnē.
|
|
421
|
-
users:
|
|
422
|
-
profile_updated:
|
|
423
|
-
email_intro: '%{name} (%{nickname}) <a href="%{resource_url}">profila lapa</a>, kam jūs sekojat, ir atjaunināta.'
|
|
424
|
-
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{nickname}. Jūs varat atteikties no paziņojumu saņemšanas, sekojot iepriekšējai saitei.
|
|
425
|
-
email_subject: "%{nickname} atjaunināja savu profilu"
|
|
426
|
-
notification_title: '%{name} (%{nickname}) <a href="%{resource_path}">profila lapa</a>, kam jūs sekojat, ir atjaunināta.'
|
|
427
406
|
export_mailer:
|
|
428
407
|
download_your_data_export:
|
|
429
408
|
download: Lejupielādēt
|
data/config/locales/nl.yml
CHANGED
|
@@ -206,9 +206,6 @@ nl:
|
|
|
206
206
|
update_draft:
|
|
207
207
|
error: Er is een fout opgetreden bij het bijwerken van dit amendement.
|
|
208
208
|
success: Amendement ontwerp is succesvol bijgewerkt.
|
|
209
|
-
wizard_step_form:
|
|
210
|
-
steps:
|
|
211
|
-
'1': Maak uw amendement
|
|
212
209
|
anonymous_user: Anoniem
|
|
213
210
|
application:
|
|
214
211
|
document:
|
|
@@ -305,7 +302,6 @@ nl:
|
|
|
305
302
|
global:
|
|
306
303
|
amendments_enabled: Wijzigingen toegestaan
|
|
307
304
|
comments_enabled: Reacties ingeschakeld
|
|
308
|
-
comments_max_length: Commentaar maximale lengte
|
|
309
305
|
dummy_global_attribute1: Voorbeeld-kenmerk 1
|
|
310
306
|
dummy_global_attribute2: Voorbeeld-kenmerk 2
|
|
311
307
|
dummy_global_translatable_text: Vertaalbare tekst Dummy
|
|
@@ -410,13 +406,9 @@ nl:
|
|
|
410
406
|
affected_user:
|
|
411
407
|
email_intro: 'Een eervolle vermelding is geaccepteerd voor %{amendable_title}. Je kunt het vanaf deze pagina bekijken:'
|
|
412
408
|
email_outro: U hebt deze melding ontvangen omdat u een auteur bent van %{amendable_title}.
|
|
413
|
-
email_subject: Geaccepteerd amendement voor %{amendable_title} van %{emendation_author_nickname}
|
|
414
|
-
notification_title: De <a href="%{emendation_path}">amendement</a> door <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> is aanvaard voor <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
415
409
|
follower:
|
|
416
410
|
email_intro: 'Een eervolle vermelding is geaccepteerd voor %{amendable_title}. Je kunt het vanaf deze pagina bekijken:'
|
|
417
411
|
email_outro: U hebt deze melding ontvangen omdat u %{amendable_title} volgt. Je kunt de meldingen stoppen door de vorige link te volgen.
|
|
418
|
-
email_subject: Geaccepteerd amendement voor %{amendable_title} van %{emendation_author_nickname}
|
|
419
|
-
notification_title: De <a href="%{emendation_path}">amendement</a> door <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> is aanvaard voor <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
420
412
|
amendment_created:
|
|
421
413
|
affected_user:
|
|
422
414
|
email_intro: 'Er is een nieuwe eervolle vermelding gemaakt voor %{amendable_title}. Je kunt het vanaf deze pagina bekijken:'
|
|
@@ -432,24 +424,16 @@ nl:
|
|
|
432
424
|
affected_user:
|
|
433
425
|
email_intro: 'Een afgewezen amendement voor %{amendable_title} is als nieuw gepubliceerd %{amendable_type}. U kunt het vanaf deze pagina bekijken:'
|
|
434
426
|
email_outro: U hebt deze melding ontvangen omdat u een auteur bent van %{amendable_title}.
|
|
435
|
-
email_subject: Een amendement van %{emendation_author_nickname} is als nieuw gepubliceerd %{amendable_type}
|
|
436
|
-
notification_title: Een <a href="%{emendation_path}">afgewezen amendement</a> voor <a href="%{amendable_path}">%{amendable_title}</a> is gepubliceerd als een nieuwe %{amendable_type} bij <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
437
427
|
follower:
|
|
438
428
|
email_intro: 'Een amendement afgewezen voor %{amendable_title} is gepubliceerd als een nieuw %{amendable_type}. Je kunt het op deze pagina bekijken:'
|
|
439
429
|
email_outro: U heeft deze melding ontvangen omdat u %{amendable_title} volgt. Je kunt stoppen met het ontvangen van meldingen door de vorige link te volgen.
|
|
440
|
-
email_subject: Een amendement van %{emendation_author_nickname} is gepubliceerd als %{amendable_type}
|
|
441
|
-
notification_title: Een <a href="%{emendation_path}">afgewezen amendement</a> voor <a href="%{amendable_path}">%{amendable_title}</a> is gepubliceerd als een nieuwe %{amendable_type} bij <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
442
430
|
amendment_rejected:
|
|
443
431
|
affected_user:
|
|
444
432
|
email_intro: 'Een amendement is afgewezen door %{amendable_title}. Je kunt het op deze pagina bekijken:'
|
|
445
433
|
email_outro: U heeft deze melding ontvangen omdat u een auteur bent van %{amendable_title}.
|
|
446
|
-
email_subject: Een amendement afgewezen voor %{amendable_title} van %{emendation_author_nickname}
|
|
447
|
-
notification_title: De <a href="%{emendation_path}">amendement</a> door <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> is afgekeurd door <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
448
434
|
follower:
|
|
449
435
|
email_intro: 'Een amendement is afgewezen voor %{amendable_title}. Je kunt het op deze pagina bekijken:'
|
|
450
436
|
email_outro: U heeft deze melding ontvangen omdat u %{amendable_title} volgt. U kunt stoppen met het ontvangen van meldingen via de vorige link.
|
|
451
|
-
email_subject: Een amendement afgewezen voor %{amendable_title} van %{emendation_author_nickname}
|
|
452
|
-
notification_title: De <a href="%{emendation_path}">amendement</a> door <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> is afgekeurde <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
453
437
|
attachments:
|
|
454
438
|
attachment_created:
|
|
455
439
|
email_intro: 'Een nieuw document we’d toegevoegd aan %{resource_title}. Je kan het via deze link bekijken:'
|
|
@@ -472,12 +456,6 @@ nl:
|
|
|
472
456
|
email_outro: U heeft deze melding ontvangen omdat u activiteiten op onze website heeft uitgevoerd.
|
|
473
457
|
level_up:
|
|
474
458
|
email_outro: U heeft deze melding ontvangen omdat u activiteiten op onze website heeft uitgevoerd.
|
|
475
|
-
users:
|
|
476
|
-
profile_updated:
|
|
477
|
-
email_intro: De <a href="%{resource_url}">profile page</a> of %{name} (%{nickname}), die je volgt, is bijgewerkt.
|
|
478
|
-
email_outro: Je hebt deze melding ontvangen omdat je %{nickname} volgt. Je kan de meldingen uitschakelen door te klikken op de vorige link.
|
|
479
|
-
email_subject: "%{nickname} heeft zijn/haar profiel bijgewerkt"
|
|
480
|
-
notification_title: De <a href="%{resource_path}">profile page</a> van %{name} (%{nickname}), die je volgt, is bijgewerkt.
|
|
481
459
|
export_mailer:
|
|
482
460
|
download_your_data_export:
|
|
483
461
|
download: Download
|
|
@@ -614,7 +592,6 @@ nl:
|
|
|
614
592
|
modal_title: Nieuwe conversatie
|
|
615
593
|
no_results: Geen resultaten gevonden
|
|
616
594
|
error_modal:
|
|
617
|
-
close: Sluit venster
|
|
618
595
|
correct_errors: Corrigeer de fouten en probeer opnieuw.
|
|
619
596
|
intro: 'Er waren de volgende fouten met je bericht:'
|
|
620
597
|
ok: OK
|
data/config/locales/no.yml
CHANGED
|
@@ -209,9 +209,6 @@
|
|
|
209
209
|
update_draft:
|
|
210
210
|
error: Det oppsto et problem med å oppdatere endrings utkastet.
|
|
211
211
|
success: Endrings utkastet ble oppdatert.
|
|
212
|
-
wizard_step_form:
|
|
213
|
-
steps:
|
|
214
|
-
'1': Opprett endringen din
|
|
215
212
|
anonymous_user: Anonym
|
|
216
213
|
application:
|
|
217
214
|
document:
|
|
@@ -311,7 +308,6 @@
|
|
|
311
308
|
global:
|
|
312
309
|
amendments_enabled: Endringer aktivert
|
|
313
310
|
comments_enabled: Kommentarer aktivert
|
|
314
|
-
comments_max_length: Maks lengde på kommentarer
|
|
315
311
|
dummy_global_attribute1: Dummy Egenskap 1
|
|
316
312
|
dummy_global_attribute2: Dummy Egenskap 2
|
|
317
313
|
dummy_global_translatable_text: Dummy Oversettbar tekst
|
|
@@ -416,13 +412,9 @@
|
|
|
416
412
|
affected_user:
|
|
417
413
|
email_intro: 'En endring har blitt akseptert for %{amendable_title}. Du kan se den fra denne siden:'
|
|
418
414
|
email_outro: Du har mottatt denne varslingen fordi du er en forfatter av %{amendable_title}.
|
|
419
|
-
email_subject: Aksepterte ending til %{amendable_title} fra %{emendation_author_nickname}
|
|
420
|
-
notification_title: <a href="%{emendation_path}">Endingen</a> opprettet av <a href="%{emendation_author_path}">%{emendation_author_nickname}%</a> har blitt godtatt for <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
421
415
|
follower:
|
|
422
416
|
email_intro: 'En endring har blitt akseptert for %{amendable_title}. Du kan se den fra denne siden:'
|
|
423
417
|
email_outro: Du har mottatt denne varslingen fordi du følger %{amendable_title}. Du kan slutte å motta varsler hvis du følger den forrige lenken.
|
|
424
|
-
email_subject: Aksepterte ending til %{amendable_title} fra %{emendation_author_nickname}
|
|
425
|
-
notification_title: <a href="%{emendation_path}">Endingen</a> opprettet av <a href="%{emendation_author_path}">%{emendation_author_nickname}%</a> har blitt godtatt for <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
426
418
|
amendment_created:
|
|
427
419
|
affected_user:
|
|
428
420
|
email_intro: 'En ny endring er blitt opprettet for%{amendable_title}. Du kan se den fra denne siden:'
|
|
@@ -438,24 +430,16 @@
|
|
|
438
430
|
affected_user:
|
|
439
431
|
email_intro: 'En avslått ending for %{amendable_title} er blitt publisert som en ny %{amendable_type}. Du kan se den fra denne siden:'
|
|
440
432
|
email_outro: Du har mottatt denne varslingen fordi du er en forfatter av %{amendable_title}.
|
|
441
|
-
email_subject: En endring fra %{emendation_author_nickname} er blitt publisert som en ny %{amendable_type}
|
|
442
|
-
notification_title: En <a href="%{emendation_path}">avvist endring</a> til <a href="%{amendable_path}">%{amendable_title}</a> har blitt publisert som et nytt %{amendable_type} av <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
443
433
|
follower:
|
|
444
434
|
email_intro: 'En avslått ending for %{amendable_title} er blitt publisert som en ny %{amendable_type}. Du kan se den fra denne siden:'
|
|
445
435
|
email_outro: Du har mottatt denne varslingen fordi du følger %{amendable_title}. Du kan slutte å motta varsler hvis du følger den forrige lenken.
|
|
446
|
-
email_subject: En endring fra %{emendation_author_nickname} er blitt publisert som en ny %{amendable_type}
|
|
447
|
-
notification_title: En <a href="%{emendation_path}">avvist endring</a> til <a href="%{amendable_path}">%{amendable_title}</a> har blitt publisert som et nytt %{amendable_type} av <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
448
436
|
amendment_rejected:
|
|
449
437
|
affected_user:
|
|
450
438
|
email_intro: 'En endring har blitt avvist for %{amendable_title}. Du kan se den fra denne siden:'
|
|
451
439
|
email_outro: Du har mottatt denne varslingen fordi du er en forfatter av %{amendable_title}.
|
|
452
|
-
email_subject: Endring avvist for %{amendable_title} fra %{emendation_author_nickname}
|
|
453
|
-
notification_title: <a href="%{emendation_path}">Endingen</a> opprettet av <a href="%{emendation_author_path}">%{emendation_author_nickname}%</a> har blitt avvist for <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
454
440
|
follower:
|
|
455
441
|
email_intro: 'En endring har blitt avvist for %{amendable_title}. Du kan se den fra denne siden:'
|
|
456
442
|
email_outro: Du har mottatt denne varslingen fordi du følger %{amendable_title}. Du kan slutte å motta varsler hvis du følger den forrige lenken.
|
|
457
|
-
email_subject: Endring avvist for %{amendable_title} fra %{emendation_author_nickname}
|
|
458
|
-
notification_title: <a href="%{emendation_path}">Endingen</a> opprettet av <a href="%{emendation_author_path}">%{emendation_author_nickname}%</a> har blitt avvist for <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
459
443
|
attachments:
|
|
460
444
|
attachment_created:
|
|
461
445
|
email_intro: 'Et nytt dokument er blitt lagt til %{resource_title}. Du kan se den fra denne siden:'
|
|
@@ -486,12 +470,6 @@
|
|
|
486
470
|
notification_title: |-
|
|
487
471
|
En administrator har fjernet din %{resource_type} fordi den er rapportert som %{report_reasons}.</br>
|
|
488
472
|
<i>%{resource_content}</i>
|
|
489
|
-
users:
|
|
490
|
-
profile_updated:
|
|
491
|
-
email_intro: <a href="%{resource_url}">Profilsiden</a> til %{name} (%{nickname}), som du følger er blitt oppdatert.
|
|
492
|
-
email_outro: Du har mottatt denne varslingen fordi du følger %{nickname}. Du kan slutte å motta varsler hvis du følger den forrige lenken.
|
|
493
|
-
email_subject: "%{nickname} oppdaterte profilens sin"
|
|
494
|
-
notification_title: <a href="%{resource_path}">Profilsiden</a> til %{name} (%{nickname}), som du følger er blitt oppdatert.
|
|
495
473
|
export_mailer:
|
|
496
474
|
download_your_data_export:
|
|
497
475
|
download: Last ned
|
|
@@ -628,7 +606,6 @@
|
|
|
628
606
|
modal_title: Ny Samtale
|
|
629
607
|
no_results: Ingen resultater
|
|
630
608
|
error_modal:
|
|
631
|
-
close: Lukk modal
|
|
632
609
|
correct_errors: Vennligst korriger feilene og prøv på nytt.
|
|
633
610
|
intro: 'Det var følgende feil med din melding:'
|
|
634
611
|
ok: Ok
|
data/config/locales/pl.yml
CHANGED
|
@@ -320,10 +320,6 @@ pl:
|
|
|
320
320
|
success: Szkic poprawki został pomyślnie zaktualizowany.
|
|
321
321
|
withdraw:
|
|
322
322
|
success: Poprawka została pomyślnie wycofana.
|
|
323
|
-
wizard_step_form:
|
|
324
|
-
steps:
|
|
325
|
-
'1': Utwórz poprawkę
|
|
326
|
-
'2': Opublikuj poprawkę
|
|
327
323
|
anonymous_user: Anonim
|
|
328
324
|
application:
|
|
329
325
|
document:
|
|
@@ -449,7 +445,6 @@ pl:
|
|
|
449
445
|
global:
|
|
450
446
|
amendments_enabled: Poprawki dozwolone
|
|
451
447
|
comments_enabled: Komentarze włączone
|
|
452
|
-
comments_max_length: Maksymalna długość komentarzy
|
|
453
448
|
dummy_global_attribute1: Przykładowy atrybut 1
|
|
454
449
|
dummy_global_attribute2: Przykładowy atrybut 2
|
|
455
450
|
dummy_global_translatable_text: Przykładowy tekst do tłumaczenia
|
|
@@ -576,7 +571,7 @@ pl:
|
|
|
576
571
|
notice: |-
|
|
577
572
|
<p>Hej, czy jesteś pewien, że nie chcesz otrzymywać newslettera?
|
|
578
573
|
Prosimy o ponowne zaznaczenie pola wyboru newslettera poniżej. To dla nas bardzo ważne, abyś mógł otrzymywać sporadyczne e-maile z ważnymi informacjami. Zawsze możesz zmienić to na stronie ustawień o powiadomieniach.</p>
|
|
579
|
-
<p>Jeśli nie zaznaczysz tego pola, mogą cię ominąć istotne informacje na temat możliwości
|
|
574
|
+
<p>Jeśli nie zaznaczysz tego pola, mogą cię ominąć istotne informacje na temat możliwości
|
|
580
575
|
uczestnictwa w procesach na platformie.<br>Jeśli mimo wszystko nie chcesz otrzymywać newsletterów, doskonale rozumiemy twoją decyzję.</p>
|
|
581
576
|
<p>Dziękujemy za uwagę!</p>
|
|
582
577
|
title: Powiadomienia newslettera
|
|
@@ -646,13 +641,9 @@ pl:
|
|
|
646
641
|
affected_user:
|
|
647
642
|
email_intro: 'Poprawka została zaakceptowana dla %{amendable_title}. Możesz ją zobaczyć na tej stronie:'
|
|
648
643
|
email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś autorem %{amendable_title}.
|
|
649
|
-
email_subject: Poprawka przyjęta dla %{amendable_title} z %{emendation_author_nickname}
|
|
650
|
-
notification_title: <a href="%{emendation_path}">Poprawka</a> utworzona przez <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> została przyjęta w <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
651
644
|
follower:
|
|
652
645
|
email_intro: 'Poprawka została zaakceptowana dla %{amendable_title}. Możesz ją zobaczyć na tej stronie:'
|
|
653
646
|
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{amendable_title}. Możesz przestać otrzymywać powiadomienia klikając poprzedni link.
|
|
654
|
-
email_subject: Poprawka przyjęta w %{amendable_title} od %{emendation_author_nickname}
|
|
655
|
-
notification_title: <a href="%{emendation_path}">Poprawka</a> utworzona przez <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> została przyjęta w <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
656
647
|
amendment_created:
|
|
657
648
|
affected_user:
|
|
658
649
|
email_intro: 'Nowa poprawka została utworzona do %{amendable_title}. Możesz ją zobaczyć na tej stronie:'
|
|
@@ -668,24 +659,16 @@ pl:
|
|
|
668
659
|
affected_user:
|
|
669
660
|
email_intro: 'Odrzucona poprawka do %{amendable_title} została opublikowana jako %{amendable_type}. Możesz ją zobaczyć na tej stronie:'
|
|
670
661
|
email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś autorem %{amendable_title}.
|
|
671
|
-
email_subject: Poprawka od %{emendation_author_nickname} została opublikowana jako %{amendable_type}
|
|
672
|
-
notification_title: <a href="%{emendation_path}">Odrzucona poprawka</a> do <a href="%{amendable_path}">%{amendable_title}</a> została opublikowana jako %{amendable_type} przez <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
673
662
|
follower:
|
|
674
663
|
email_intro: 'Odrzucona poprawka do %{amendable_title} została opublikowana jako %{amendable_type}. Możesz ją zobaczyć na tej stronie:'
|
|
675
664
|
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{amendable_title}. Możesz przestać otrzymywać powiadomienia klikając w poprzedni link.
|
|
676
|
-
email_subject: Poprawka od %{emendation_author_nickname} została opublikowana jako %{amendable_type}
|
|
677
|
-
notification_title: <a href="%{emendation_path}">Odrzucona poprawka</a> do <a href="%{amendable_path}">%{amendable_title}</a> została opublikowana jako %{amendable_type} przez <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
678
665
|
amendment_rejected:
|
|
679
666
|
affected_user:
|
|
680
667
|
email_intro: 'Poprawka do %{amendable_title} została odrzucona. Możesz ją zobaczyć na tej stronie:'
|
|
681
668
|
email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś autorem %{amendable_title}.
|
|
682
|
-
email_subject: Poprawka użytkownika %{emendation_author_nickname} do %{amendable_title} została odrzucona
|
|
683
|
-
notification_title: <a href="%{emendation_path}">Poprawka</a> utworzona przez <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> została odrzucona w <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
684
669
|
follower:
|
|
685
670
|
email_intro: 'Poprawka do %{amendable_title} została odrzucona. Możesz ją zobaczyć na tej stronie:'
|
|
686
671
|
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{amendable_title}. Możesz przestać otrzymywać powiadomienia po kliknięciu w poprzedni link.
|
|
687
|
-
email_subject: Poprawka użytkownika %{emendation_author_nickname} do %{amendable_title} została odrzucona
|
|
688
|
-
notification_title: <a href="%{emendation_path}">Poprawka</a> do <a href="%{amendable_path}">%{amendable_title}</a> utworzona przez <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> została odrzucona.
|
|
689
672
|
attachments:
|
|
690
673
|
attachment_created:
|
|
691
674
|
email_intro: 'Nowy dokument został dodany do %{resource_title}. Możesz go zobaczyć na tej stronie:'
|
|
@@ -727,16 +710,9 @@ pl:
|
|
|
727
710
|
Administrator usunął %{resource_type}, ponieważ treść została zgłoszona jako %{report_reasons}.</br>
|
|
728
711
|
<i>%{resource_content}</i>
|
|
729
712
|
users:
|
|
730
|
-
profile_updated:
|
|
731
|
-
email_intro: Zaktualizowano <a href="%{resource_url}">stronę profilową</a> użytkownika %{name} (%{nickname}), którego obserwujesz.
|
|
732
|
-
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{nickname}. Możesz przestać otrzymywać powiadomienia klikając w poprzedni link.
|
|
733
|
-
email_subject: "%{nickname} zaktualizował(a) swój profil"
|
|
734
|
-
notification_title: Zaktualizowano <a href="%{resource_path}">stronę profilową</a> użytkownika %{name} (%{nickname}), którego obserwujesz.
|
|
735
713
|
user_officialized:
|
|
736
|
-
email_intro: Uczestnik %{name} (%{nickname}) został oficjalnie zarejestrowany.
|
|
737
714
|
email_outro: Otrzymujesz to powiadomienie, ponieważ jesteś administratorem platformy.
|
|
738
715
|
email_subject: "%{name} zostało oficjalnie zarejestrowane"
|
|
739
|
-
notification_title: Uczestnik %{name} (%{nickname}) został oficjalnie zarejestrowany.
|
|
740
716
|
export_mailer:
|
|
741
717
|
download_your_data_export:
|
|
742
718
|
download: Pobieranie
|
|
@@ -904,6 +880,8 @@ pl:
|
|
|
904
880
|
dynamic:
|
|
905
881
|
screen_reader_explanation: Poniższy element to mapa, która przedstawia elementy na tej stronie jako punkty mapy. Element może być użyty z czytnikiem ekranu, ale może być trudny do zrozumienia.
|
|
906
882
|
skip_button: Pomiń mapę
|
|
883
|
+
zoom_in: Przybliż
|
|
884
|
+
zoom_out: Oddal
|
|
907
885
|
static:
|
|
908
886
|
latlng_text: 'szerokość geograficzna: %{latitude}, długość geograficzna: %{longitude}'
|
|
909
887
|
map_service_brand: OpenStreetMap
|
|
@@ -932,7 +910,6 @@ pl:
|
|
|
932
910
|
create:
|
|
933
911
|
error: Rozmowa nie została rozpoczęta. Spróbuj ponownie później.
|
|
934
912
|
error_modal:
|
|
935
|
-
close: Zamknij okno
|
|
936
913
|
correct_errors: Popraw daty i spróbuj ponownie.
|
|
937
914
|
intro: 'W wiadomości wystąpiły błędy:'
|
|
938
915
|
ok: ok
|
|
@@ -1333,7 +1310,7 @@ pl:
|
|
|
1333
1310
|
hello: Witaj %{email},
|
|
1334
1311
|
ignore: |-
|
|
1335
1312
|
Jeżeli nie chcesz zaakceptować zaproszenia, zignoruj ten e-mail.<br />
|
|
1336
|
-
|
|
1313
|
+
Twoje konto nie zostanie utworzone, dopóki nie skorzystasz z linku powyżej i nie ustawisz pseudonimu i hasła.
|
|
1337
1314
|
invited_you_as_admin: "%{invited_by} zaprasza Cię jako administratora %{application}. Możesz zaakceptować zaproszenie za pomocą poniższego linku."
|
|
1338
1315
|
invited_you_as_private_user: "%{invited_by} zaprasza Cię jako prywatnego użytkownika %{application}. Możesz zaakceptować to zaproszenie za pomocą poniższego linku."
|
|
1339
1316
|
someone_invited_you: Ktoś zaprosił Cię do %{application}. Możesz zaakceptować zaproszenie za pomocą poniższego linku.
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -421,10 +421,6 @@ pt-BR:
|
|
|
421
421
|
withdraw:
|
|
422
422
|
error: Houve um problema ao retirar a emenda.
|
|
423
423
|
success: A emenda foi retirada com sucesso.
|
|
424
|
-
wizard_step_form:
|
|
425
|
-
steps:
|
|
426
|
-
'1': Crie sua emenda
|
|
427
|
-
'2': Publique sua emenda
|
|
428
424
|
anonymous_user: Anônimo
|
|
429
425
|
application:
|
|
430
426
|
document:
|
|
@@ -557,7 +553,6 @@ pt-BR:
|
|
|
557
553
|
global:
|
|
558
554
|
amendments_enabled: Alterações ativadas
|
|
559
555
|
comments_enabled: Comentários ativados
|
|
560
|
-
comments_max_length: Comprimento máximo de comentários
|
|
561
556
|
define_taxonomy_filters: Por favor, defina alguns filtros para este espaço participativo antes de usar esta configuração.
|
|
562
557
|
dummy_global_attribute1: Dummy Atributo 1
|
|
563
558
|
dummy_global_attribute2: Dummy Attribute 2
|
|
@@ -880,13 +875,9 @@ pt-BR:
|
|
|
880
875
|
affected_user:
|
|
881
876
|
email_intro: 'Uma emendação foi aceita para %{amendable_title}. Você pode ver a partir desta página:'
|
|
882
877
|
email_outro: Você recebeu esta notificação porque é um autor de %{amendable_title}.
|
|
883
|
-
email_subject: Uma emenda aceita para %{amendable_title} partir de %{emendation_author_nickname}
|
|
884
|
-
notification_title: A <a href="%{emendation_path}">alteração</a> criado por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> tem sido aceite para <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
885
878
|
follower:
|
|
886
879
|
email_intro: 'Uma emendação foi aceita para %{amendable_title}. Você pode ver a partir desta página:'
|
|
887
880
|
email_outro: Você recebeu esta notificação porque está seguindo %{amendable_title}. Você pode parar de receber notificações após o link anterior.
|
|
888
|
-
email_subject: Uma emenda aceita para %{amendable_title} partir de %{emendation_author_nickname}
|
|
889
|
-
notification_title: A <a href="%{emendation_path}">alteração</a> criado por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> tem sido aceite para <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
890
881
|
amendment_created:
|
|
891
882
|
affected_user:
|
|
892
883
|
email_intro: 'Uma nova emendação foi criada para %{amendable_title}. Você pode ver a partir desta página:'
|
|
@@ -902,29 +893,20 @@ pt-BR:
|
|
|
902
893
|
affected_user:
|
|
903
894
|
email_intro: 'Uma emenda rejeitada por %{amendable_title} foi promovida a um independente %{amendable_type}. Você pode ver a partir desta página:'
|
|
904
895
|
email_outro: Você recebeu esta notificação porque é um autor de %{amendable_title}.
|
|
905
|
-
email_subject: Uma emenda de %{emendation_author_nickname} foi publicada como um novo %{amendable_type}
|
|
906
|
-
notification_title: Um <a href="%{emendation_path}">rejeitado alteração</a> para <a href="%{amendable_path}">%{amendable_title}</a> foi publicado como uma nova %{amendable_type} por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
907
896
|
follower:
|
|
908
897
|
email_intro: 'Uma emenda rejeitada por %{amendable_title} foi promovida a um independente %{amendable_type}. Você pode ver a partir desta página:'
|
|
909
898
|
email_outro: Você recebeu esta notificação porque está seguindo %{amendable_title}. Você pode parar de receber notificações após o link anterior.
|
|
910
|
-
email_subject: Uma emenda de %{emendation_author_nickname} foi publicada como um novo %{amendable_type}
|
|
911
|
-
notification_title: Um <a href="%{emendation_path}">rejeitado alteração</a> para <a href="%{amendable_path}">%{amendable_title}</a> foi publicado como uma nova %{amendable_type} por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
912
899
|
amendment_rejected:
|
|
913
900
|
affected_user:
|
|
914
901
|
email_intro: 'Uma emenda foi rejeitada por %{amendable_title}. Você pode ver a partir desta página:'
|
|
915
902
|
email_outro: Você recebeu esta notificação porque é um autor de %{amendable_title}.
|
|
916
|
-
email_subject: Uma alteração rejeitada por %{amendable_title} %{emendation_author_nickname}
|
|
917
|
-
notification_title: A <a href="%{emendation_path}">alteração</a> criado por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi rejeitado por <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
918
903
|
follower:
|
|
919
904
|
email_intro: 'Uma emenda foi rejeitada por %{amendable_title}. Você pode ver a partir desta página:'
|
|
920
905
|
email_outro: Você recebeu esta notificação porque está seguindo %{amendable_title}. Você pode parar de receber notificações após o link anterior.
|
|
921
|
-
email_subject: Uma alteração rejeitada por %{amendable_title} %{emendation_author_nickname}
|
|
922
|
-
notification_title: A <a href="%{emendation_path}">alteração</a> criado por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi rejeitado por <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
923
906
|
emendation_promoted:
|
|
924
907
|
follower:
|
|
925
908
|
email_intro: 'Uma emenda foi publicada para %{amendable_title}. Você pode ver a partir desta página:'
|
|
926
909
|
email_outro: Você recebeu essa notificação porque você é autor de %{amendable_title}.
|
|
927
|
-
email_subject: Uma emenda de %{emendation_author_nickname} foi publicada como um novo %{amendable_type}
|
|
928
910
|
attachments:
|
|
929
911
|
attachment_created:
|
|
930
912
|
email_intro: 'Um novo documento foi adicionado a %{resource_title}. Você pode vê-lo a partir desta página:'
|
|
@@ -964,8 +946,8 @@ pt-BR:
|
|
|
964
946
|
email_outro: Você recebeu está notificação porque você é autor do %{resource_type} afetado.
|
|
965
947
|
email_subject: Seu %{resource_type} não está mais visível
|
|
966
948
|
notification_title: |-
|
|
967
|
-
Seu %{resource_type} não está mais visível. <br>
|
|
968
|
-
|
|
949
|
+
Seu %{resource_type} não está mais visível. <br>
|
|
950
|
+
Isso aconteceu porque a proposta, reunião, debate ou comentário que você respondeu foi moderado. Se voltar a ficar disponível, o seu comentário será restaurado automaticamente.<i>%{resource_content}</i>
|
|
969
951
|
resource_hidden:
|
|
970
952
|
email_intro: Um administrador removeu seu %{resource_type} porque ele foi reportado como %{report_reasons}.
|
|
971
953
|
email_outro: Você recebeu esta notificação porque você é um autor do conteúdo removido.
|
|
@@ -973,25 +955,13 @@ pt-BR:
|
|
|
973
955
|
notification_title: |-
|
|
974
956
|
Um administrador removeu seu %{resource_type} porque ele foi reportado como %{report_reasons}.</br>
|
|
975
957
|
<i>%{resource_content}</i>
|
|
976
|
-
resource_liked:
|
|
977
|
-
email_intro: '%{liker_name} %{liker_nickname}, que você está seguindo, acabou de curtir "%{resource_title}" e pensamos que pode interessar você. Confira e contribua:'
|
|
978
|
-
email_outro: Você recebeu está notificação porque está seguindo %{liker_nickname}. Você pode parar de receber notificações após o link anterior.
|
|
979
|
-
email_subject: "%{liker_nickname} Realizou uma nova curtida"
|
|
980
|
-
notification_title: O <a href="%{resource_path}">%{resource_title}</a> %{resource_type} foi curtido por <a href="%{liker_path}">%{liker_name} %{liker_nickname}</a>.
|
|
981
958
|
resources:
|
|
982
959
|
soft_deleted:
|
|
983
960
|
notification_title: Um administrador excluiu seu "%{resource_type}" "%{resource_title}".
|
|
984
961
|
users:
|
|
985
|
-
profile_updated:
|
|
986
|
-
email_intro: O <a href="%{resource_url}">profile page</a> de %{name} (%{nickname}), quem você está seguindo, foi atualizado.
|
|
987
|
-
email_outro: Você recebeu esta notificação porque está seguindo %{nickname}. Você pode parar de receber notificações após o link anterior.
|
|
988
|
-
email_subject: "%{nickname} atualizaram seu perfil"
|
|
989
|
-
notification_title: O <a href="%{resource_path}">profile page</a> de %{name} (%{nickname}), quem você está seguindo, foi atualizado.
|
|
990
962
|
user_officialized:
|
|
991
|
-
email_intro: O participante %{name} (%{nickname}) foi oficializado.
|
|
992
963
|
email_outro: Você recebeu esta notificação porque é um administrador da organização.
|
|
993
964
|
email_subject: "%{name} foi oficializada"
|
|
994
|
-
notification_title: O participante %{name} (%{nickname}) foi oficializado.
|
|
995
965
|
export_mailer:
|
|
996
966
|
download_your_data_export:
|
|
997
967
|
click_button_html: Clique no link a seguir para baixar seus dados.<br/>O arquivo estará disponível para baixar até %{date}.
|
|
@@ -1213,7 +1183,6 @@ pt-BR:
|
|
|
1213
1183
|
create:
|
|
1214
1184
|
error: Conversa não iniciada. Tente mais tarde.
|
|
1215
1185
|
error_modal:
|
|
1216
|
-
close: Fechar modal
|
|
1217
1186
|
correct_errors: Por favor, corrija os itens citados e tente novamente.
|
|
1218
1187
|
intro: 'Sua mensagem contém os seguintes erros:'
|
|
1219
1188
|
ok: OK
|
|
@@ -1524,13 +1493,6 @@ pt-BR:
|
|
|
1524
1493
|
log_in: iniciar sessão
|
|
1525
1494
|
never_logged_in: nunca iniciou sessão
|
|
1526
1495
|
subject: Aviso de conta inativa
|
|
1527
|
-
removal_notification:
|
|
1528
|
-
body: Sua conta %{organization_name} foi excluída devido a inatividade.
|
|
1529
|
-
greetings_html: |
|
|
1530
|
-
Atenciosamente,<br>
|
|
1531
|
-
%{organization_name}
|
|
1532
|
-
hello: Prezado %{username},
|
|
1533
|
-
subject: Conta inativa excluída
|
|
1534
1496
|
passwords:
|
|
1535
1497
|
update:
|
|
1536
1498
|
error: Houve um problema ao atualizar a senha.
|
data/config/locales/pt.yml
CHANGED
|
@@ -202,9 +202,6 @@ pt:
|
|
|
202
202
|
update_draft:
|
|
203
203
|
error: Ocorreu um problema ao atualizar o rascunho da modificação.
|
|
204
204
|
success: Rascunho da modificação atualizado corretamente.
|
|
205
|
-
wizard_step_form:
|
|
206
|
-
steps:
|
|
207
|
-
'1': Criar a sua modificação
|
|
208
205
|
anonymous_user: Anônimo
|
|
209
206
|
application:
|
|
210
207
|
document:
|
|
@@ -304,7 +301,6 @@ pt:
|
|
|
304
301
|
global:
|
|
305
302
|
amendments_enabled: Modificações ativadas
|
|
306
303
|
comments_enabled: Comentários ativados
|
|
307
|
-
comments_max_length: Comprimento máximo dos comentários
|
|
308
304
|
dummy_global_attribute1: Atributo Fictício 1
|
|
309
305
|
dummy_global_attribute2: Atributo Fictício 2
|
|
310
306
|
dummy_global_translatable_text: Texto Traduzível Fictício
|
|
@@ -407,13 +403,9 @@ pt:
|
|
|
407
403
|
affected_user:
|
|
408
404
|
email_intro: 'Uma modificação foi aceite para %{amendable_title}. Pode vê-la a partir desta página:'
|
|
409
405
|
email_outro: Recebeu esta notificação por ser um autor de %{amendable_title}.
|
|
410
|
-
email_subject: Modificação aceite para %{amendable_title} de %{emendation_author_nickname}
|
|
411
|
-
notification_title: A <a href="%{emendation_path}">emenda</a> criada por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi aceite para <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
412
406
|
follower:
|
|
413
407
|
email_intro: 'Uma modificação foi aceite para %{amendable_title}. Pode vê-la a partir desta página:'
|
|
414
408
|
email_outro: Recebeu esta notificação porque segue %{amendable_title}. Pode parar de receber notificações a partir da hiperligação anterior.
|
|
415
|
-
email_subject: Modificação aceite para %{amendable_title} por %{emendation_author_nickname}
|
|
416
|
-
notification_title: A <a href="%{emendation_path}">modificação</a> criada por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi aceite para <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
417
409
|
amendment_created:
|
|
418
410
|
affected_user:
|
|
419
411
|
email_intro: 'Uma nova modificação foi criada para %{amendable_title}. Pode vê-la a partir desta página:'
|
|
@@ -429,24 +421,16 @@ pt:
|
|
|
429
421
|
affected_user:
|
|
430
422
|
email_intro: 'Uma modificação rejeitada por %{amendable_title} foi publicada como um novo %{amendable_type}. Pode vê-la a partir desta página:'
|
|
431
423
|
email_outro: Recebeu esta notificação por ser um autor de %{amendable_title}.
|
|
432
|
-
email_subject: Uma modificação de %{emendation_author_nickname} foi publicada como um novo %{amendable_type}
|
|
433
|
-
notification_title: Uma <a href="%{emendation_path}">modificação rejeitada</a> para <a href="%{amendable_path}">%{amendable_title}</a> foi publicada como um novo %{amendable_type} por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
434
424
|
follower:
|
|
435
425
|
email_intro: 'Uma modificação rejeitada de %{amendable_title} foi publicada como um novo %{amendable_type}. Pode vê-la a partir desta página:'
|
|
436
426
|
email_outro: Recebeu esta notificação porque segue %{amendable_title}. Pode parar de receber notificações seguindo a hiperligação anterior.
|
|
437
|
-
email_subject: Uma modificação de %{emendation_author_nickname} foi publicada como um novo %{amendable_type}
|
|
438
|
-
notification_title: Uma <a href="%{emendation_path}">modificação rejeitada</a> de <a href="%{amendable_path}">%{amendable_title}</a> foi publicada como um novo %{amendable_type} por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
439
427
|
amendment_rejected:
|
|
440
428
|
affected_user:
|
|
441
429
|
email_intro: 'Uma modificação foi rejeitada por %{amendable_title}. Pode vê-la a partir desta página:'
|
|
442
430
|
email_outro: Recebeu esta notificação por ser um autor de %{amendable_title}.
|
|
443
|
-
email_subject: Modificação de %{amendable_title} rejeitada por %{emendation_author_nickname}
|
|
444
|
-
notification_title: A <a href="%{emendation_path}">modificação</a> criada por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi rejeitada por <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
445
431
|
follower:
|
|
446
432
|
email_intro: 'Uma modificação foi rejeitada por %{amendable_title}. Pode vê-la a partir desta página:'
|
|
447
433
|
email_outro: Recebeu esta notificação porque segue %{amendable_title}. Pode parar de receber notificações seguindo a hiperligação anterior.
|
|
448
|
-
email_subject: Modificação de %{amendable_title} rejeitada por %{emendation_author_nickname}
|
|
449
|
-
notification_title: A <a href="%{emendation_path}">modificação</a> criada por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi rejeitada por <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
450
434
|
attachments:
|
|
451
435
|
attachment_created:
|
|
452
436
|
email_intro: 'Um novo documento foi adicionado a %{resource_title}. Pode vê-lo a partir desta página:'
|
|
@@ -477,12 +461,6 @@ pt:
|
|
|
477
461
|
notification_title: |-
|
|
478
462
|
Um administrador removeu o seu %{resource_type} porque foi denunciado como %{report_reasons}.</br>
|
|
479
463
|
<i>%{resource_content}</i>
|
|
480
|
-
users:
|
|
481
|
-
profile_updated:
|
|
482
|
-
email_intro: A <a href="%{resource_url}">página de perfil</a> de %{name} (%{nickname}), que você segue, foi atualizada.
|
|
483
|
-
email_outro: Recebeu esta notificação porque segue %{nickname}. Pode parar de receber notificações seguindo a hiperligação anterior.
|
|
484
|
-
email_subject: "%{nickname} atualizaram seu perfil"
|
|
485
|
-
notification_title: A <a href="%{resource_path}">página de perfil</a> de %{name} (%{nickname}), que você segue, foi atualizada.
|
|
486
464
|
export_mailer:
|
|
487
465
|
download_your_data_export:
|
|
488
466
|
download: Transferir
|
|
@@ -617,7 +595,6 @@ pt:
|
|
|
617
595
|
modal_title: Nova conversa
|
|
618
596
|
no_results: Sem resultados
|
|
619
597
|
error_modal:
|
|
620
|
-
close: Fechar modal
|
|
621
598
|
correct_errors: Por favor corrija os erros e tente de novo
|
|
622
599
|
intro: 'Há os seguintes erros com a sua mensagem:'
|
|
623
600
|
ok: OK
|