decidim-core 0.32.0.rc2 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/amendable/amend_button_card/show.erb +2 -2
- data/app/cells/decidim/author_cell.rb +0 -4
- data/app/cells/decidim/card_metadata_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/cta_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/hero_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_content_banner_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_content_banner_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_participatory_spaces_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/participatory_space_hero_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/static_page/section_settings_form/show.erb +3 -1
- data/app/cells/decidim/content_blocks/static_page/summary_settings_form/show.erb +3 -1
- data/app/cells/decidim/content_blocks/static_page/two_pane_section_settings_form/show.erb +4 -2
- data/app/cells/decidim/resource_types_filter/show.erb +2 -2
- data/app/commands/decidim/destroy_account.rb +12 -1
- data/app/commands/decidim/multiple_attachments_methods.rb +28 -27
- data/app/controllers/concerns/decidim/devise_controllers.rb +9 -0
- data/app/events/decidim/amendable/amendment_base_event.rb +7 -1
- data/app/jobs/decidim/process_inactive_participant_job.rb +0 -7
- data/app/mailers/decidim/delete_user_mailer.rb +14 -0
- data/app/mailers/decidim/participants_account_mailer.rb +0 -16
- data/app/models/decidim/moderation.rb +1 -1
- data/app/models/decidim/participatory_space/member.rb +1 -1
- data/app/models/decidim/user_base_entity.rb +17 -2
- data/app/models/decidim/user_moderation.rb +1 -1
- data/app/packs/src/decidim/controllers/breadcrumb_truncate/breadcrumb_truncate.test.js +230 -0
- data/app/packs/src/decidim/controllers/breadcrumb_truncate/controller.js +172 -0
- data/app/packs/src/decidim/controllers/form_validator/form_validator.js +6 -6
- data/app/packs/src/decidim/controllers/form_validator/form_validator.test.js +23 -1
- data/app/packs/src/decidim/controllers/main_menu/controller.js +33 -0
- data/app/packs/src/decidim/controllers/main_menu/main_menu.test.js +77 -0
- data/app/packs/src/decidim/controllers/mention/controller.js +296 -140
- data/app/packs/src/decidim/controllers/mention/input_mentions.test.js +120 -457
- data/app/packs/src/decidim/controllers/multiple_mentions/controller.js +68 -32
- data/app/packs/src/decidim/controllers/multiple_mentions/input_multiple_mentions.test.js +30 -23
- data/app/packs/src/decidim/direct_uploads/upload_field.js +4 -4
- data/app/packs/src/decidim/direct_uploads/upload_modal.js +11 -7
- data/app/packs/src/decidim/editor/common/suggestion.js +3 -1
- data/app/packs/src/decidim/editor/extensions/indent/index.js +9 -0
- data/app/packs/src/decidim/geocoding/reverse_geocoding.js +15 -5
- data/app/packs/src/decidim/geocoding/reverse_geocoding.test.js +197 -0
- data/app/packs/src/decidim/index.js +4 -3
- data/app/packs/src/decidim/sw/sw.js +1 -1
- data/app/packs/src/decidim/utilities/text.js +6 -6
- data/app/packs/stylesheets/decidim/_conversations.scss +14 -0
- data/app/packs/stylesheets/decidim/_dropdown.scss +1 -1
- data/app/packs/stylesheets/decidim/_editor_suggestions.scss +49 -0
- data/app/packs/stylesheets/decidim/_floating_help.scss +1 -1
- data/app/packs/stylesheets/decidim/_header.scss +41 -8
- data/app/packs/stylesheets/decidim/_tom_select.scss +23 -0
- data/app/packs/stylesheets/decidim/application.scss +2 -0
- data/app/packs/stylesheets/decidim/editor.scss +2 -33
- data/app/packs/stylesheets/decidim/geocoding_addons.scss +10 -2
- data/app/presenters/decidim/menu_item_presenter.rb +9 -3
- data/app/presenters/decidim/stats_presenter.rb +1 -1
- data/app/uploaders/decidim/image_uploader.rb +1 -1
- data/app/views/decidim/delete_user_mailer/delete.html.erb +6 -0
- data/app/views/decidim/gamification/badges/index.html.erb +1 -1
- data/app/views/decidim/homepage/show.html.erb +1 -1
- data/app/views/decidim/last_activities/index.html.erb +1 -1
- data/app/views/decidim/messaging/conversations/_error_modal.html.erb +11 -19
- data/app/views/decidim/messaging/conversations/error.js.erb +12 -7
- data/app/views/decidim/newsletters/unsubscribe.html.erb +1 -1
- data/app/views/decidim/offline/show.html.erb +1 -1
- data/app/views/decidim/pages/index.html.erb +1 -1
- data/app/views/decidim/profiles/show.html.erb +1 -1
- data/app/views/decidim/shared/_resource_actions.html.erb +4 -4
- data/app/views/decidim/user_activities/index.html.erb +1 -1
- data/app/views/layouts/decidim/_wrapper.html.erb +2 -2
- data/app/views/layouts/decidim/header/_menu.html.erb +1 -1
- data/app/views/layouts/decidim/header/_menu_breadcrumb_desktop.html.erb +31 -4
- data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile.html.erb +18 -13
- data/app/views/layouts/decidim/shared/_layout_center.html.erb +1 -1
- data/app/views/layouts/decidim/shared/_layout_item.html.erb +1 -1
- data/app/views/layouts/decidim/shared/_layout_two_col.html.erb +1 -1
- data/config/initializers/decidim_locale_aware_named_route_helper.rb +16 -0
- data/config/locales/ar.yml +0 -25
- data/config/locales/bg.yml +0 -25
- data/config/locales/ca-IT.yml +46 -35
- data/config/locales/ca.yml +46 -35
- data/config/locales/cs.yml +12 -34
- data/config/locales/de.yml +5 -46
- data/config/locales/el.yml +0 -22
- data/config/locales/en.yml +45 -34
- data/config/locales/es-MX.yml +45 -34
- data/config/locales/es-PY.yml +45 -34
- data/config/locales/es.yml +45 -34
- data/config/locales/eu.yml +85 -74
- data/config/locales/fi-plain.yml +46 -34
- data/config/locales/fi.yml +46 -34
- data/config/locales/fr-CA.yml +24 -30
- data/config/locales/fr.yml +24 -30
- data/config/locales/gl.yml +0 -22
- data/config/locales/hu.yml +0 -22
- data/config/locales/id-ID.yml +0 -21
- data/config/locales/is-IS.yml +0 -6
- data/config/locales/it.yml +1 -20
- data/config/locales/ja.yml +55 -44
- data/config/locales/lb.yml +0 -23
- data/config/locales/lt.yml +0 -24
- data/config/locales/lv.yml +0 -21
- data/config/locales/nl.yml +0 -23
- data/config/locales/no.yml +0 -23
- data/config/locales/pl.yml +2 -27
- data/config/locales/pt-BR.yml +2 -40
- data/config/locales/pt.yml +0 -23
- data/config/locales/ro-RO.yml +1 -32
- data/config/locales/ru.yml +0 -8
- data/config/locales/sk.yml +1 -43
- data/config/locales/sv.yml +6 -40
- data/config/locales/tr-TR.yml +0 -24
- data/config/locales/uk.yml +0 -6
- data/config/locales/zh-CN.yml +0 -21
- data/config/locales/zh-TW.yml +0 -24
- data/decidim-core.gemspec +1 -1
- data/lib/decidim/api/functions/user_entity_list.rb +2 -0
- data/lib/decidim/attachment_attributes.rb +58 -9
- data/lib/decidim/command.rb +1 -1
- data/lib/decidim/content_renderers/base_renderer.rb +112 -0
- data/lib/decidim/content_renderers/blob_renderer.rb +4 -7
- data/lib/decidim/content_renderers/mention_resource_renderer.rb +10 -6
- data/lib/decidim/content_renderers/resource_renderer.rb +16 -7
- data/lib/decidim/content_renderers/user_renderer.rb +11 -9
- data/lib/decidim/core/content_blocks/registry_manager.rb +4 -4
- data/lib/decidim/core/engine.rb +8 -0
- data/lib/decidim/core/test/factories.rb +3 -0
- data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +10 -10
- data/lib/decidim/core/test/shared_examples/amendable/amendment_event_examples.rb +2 -2
- data/lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb +3 -3
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +6 -6
- data/lib/decidim/core/test/shared_examples/has_space_in_mcell_examples.rb +2 -1
- data/lib/decidim/core/test/shared_examples/resource_liked_event_examples.rb +3 -3
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/map/autocomplete.rb +4 -3
- data/lib/decidim/searchable.rb +5 -0
- data/lib/decidim/view_model.rb +1 -1
- data/lib/tasks/decidim_mailers_tasks.rake +31 -9
- metadata +13 -9
- data/app/commands/decidim/gallery_methods.rb +0 -107
- data/app/packs/src/decidim/vendor/tribute.js +0 -1890
- data/app/packs/stylesheets/decidim/_tribute.scss +0 -36
- data/app/views/decidim/participants_account_mailer/removal_notification.html.erb +0 -11
data/config/locales/no.yml
CHANGED
|
@@ -205,9 +205,6 @@
|
|
|
205
205
|
update_draft:
|
|
206
206
|
error: Det oppsto et problem med å oppdatere endrings utkastet.
|
|
207
207
|
success: Endrings utkastet ble oppdatert.
|
|
208
|
-
wizard_step_form:
|
|
209
|
-
steps:
|
|
210
|
-
'1': Opprett endringen din
|
|
211
208
|
anonymous_user: Anonym
|
|
212
209
|
application:
|
|
213
210
|
document:
|
|
@@ -307,7 +304,6 @@
|
|
|
307
304
|
global:
|
|
308
305
|
amendments_enabled: Endringer aktivert
|
|
309
306
|
comments_enabled: Kommentarer aktivert
|
|
310
|
-
comments_max_length: Maks lengde på kommentarer
|
|
311
307
|
dummy_global_attribute1: Dummy Egenskap 1
|
|
312
308
|
dummy_global_attribute2: Dummy Egenskap 2
|
|
313
309
|
dummy_global_translatable_text: Dummy Oversettbar tekst
|
|
@@ -412,13 +408,9 @@
|
|
|
412
408
|
affected_user:
|
|
413
409
|
email_intro: 'En endring har blitt akseptert for %{amendable_title}. Du kan se den fra denne siden:'
|
|
414
410
|
email_outro: Du har mottatt denne varslingen fordi du er en forfatter av %{amendable_title}.
|
|
415
|
-
email_subject: Aksepterte ending til %{amendable_title} fra %{emendation_author_nickname}
|
|
416
|
-
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>.
|
|
417
411
|
follower:
|
|
418
412
|
email_intro: 'En endring har blitt akseptert for %{amendable_title}. Du kan se den fra denne siden:'
|
|
419
413
|
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.
|
|
420
|
-
email_subject: Aksepterte ending til %{amendable_title} fra %{emendation_author_nickname}
|
|
421
|
-
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>.
|
|
422
414
|
amendment_created:
|
|
423
415
|
affected_user:
|
|
424
416
|
email_intro: 'En ny endring er blitt opprettet for%{amendable_title}. Du kan se den fra denne siden:'
|
|
@@ -434,24 +426,16 @@
|
|
|
434
426
|
affected_user:
|
|
435
427
|
email_intro: 'En avslått ending for %{amendable_title} er blitt publisert som en ny %{amendable_type}. Du kan se den fra denne siden:'
|
|
436
428
|
email_outro: Du har mottatt denne varslingen fordi du er en forfatter av %{amendable_title}.
|
|
437
|
-
email_subject: En endring fra %{emendation_author_nickname} er blitt publisert som en ny %{amendable_type}
|
|
438
|
-
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>.
|
|
439
429
|
follower:
|
|
440
430
|
email_intro: 'En avslått ending for %{amendable_title} er blitt publisert som en ny %{amendable_type}. Du kan se den fra denne siden:'
|
|
441
431
|
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.
|
|
442
|
-
email_subject: En endring fra %{emendation_author_nickname} er blitt publisert som en ny %{amendable_type}
|
|
443
|
-
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>.
|
|
444
432
|
amendment_rejected:
|
|
445
433
|
affected_user:
|
|
446
434
|
email_intro: 'En endring har blitt avvist for %{amendable_title}. Du kan se den fra denne siden:'
|
|
447
435
|
email_outro: Du har mottatt denne varslingen fordi du er en forfatter av %{amendable_title}.
|
|
448
|
-
email_subject: Endring avvist for %{amendable_title} fra %{emendation_author_nickname}
|
|
449
|
-
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>.
|
|
450
436
|
follower:
|
|
451
437
|
email_intro: 'En endring har blitt avvist for %{amendable_title}. Du kan se den fra denne siden:'
|
|
452
438
|
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.
|
|
453
|
-
email_subject: Endring avvist for %{amendable_title} fra %{emendation_author_nickname}
|
|
454
|
-
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>.
|
|
455
439
|
attachments:
|
|
456
440
|
attachment_created:
|
|
457
441
|
email_intro: 'Et nytt dokument er blitt lagt til %{resource_title}. Du kan se den fra denne siden:'
|
|
@@ -482,12 +466,6 @@
|
|
|
482
466
|
notification_title: |-
|
|
483
467
|
En administrator har fjernet din %{resource_type} fordi den er rapportert som %{report_reasons}.</br>
|
|
484
468
|
<i>%{resource_content}</i>
|
|
485
|
-
users:
|
|
486
|
-
profile_updated:
|
|
487
|
-
email_intro: <a href="%{resource_url}">Profilsiden</a> til %{name} (%{nickname}), som du følger er blitt oppdatert.
|
|
488
|
-
email_outro: Du har mottatt denne varslingen fordi du følger %{nickname}. Du kan slutte å motta varsler hvis du følger den forrige lenken.
|
|
489
|
-
email_subject: "%{nickname} oppdaterte profilens sin"
|
|
490
|
-
notification_title: <a href="%{resource_path}">Profilsiden</a> til %{name} (%{nickname}), som du følger er blitt oppdatert.
|
|
491
469
|
export_mailer:
|
|
492
470
|
download_your_data_export:
|
|
493
471
|
download: Last ned
|
|
@@ -623,7 +601,6 @@
|
|
|
623
601
|
modal_title: Ny Samtale
|
|
624
602
|
no_results: Ingen resultater
|
|
625
603
|
error_modal:
|
|
626
|
-
close: Lukk modal
|
|
627
604
|
correct_errors: Vennligst korriger feilene og prøv på nytt.
|
|
628
605
|
intro: 'Det var følgende feil med din melding:'
|
|
629
606
|
ok: Ok
|
data/config/locales/pl.yml
CHANGED
|
@@ -316,10 +316,6 @@ pl:
|
|
|
316
316
|
success: Szkic poprawki został pomyślnie zaktualizowany.
|
|
317
317
|
withdraw:
|
|
318
318
|
success: Poprawka została pomyślnie wycofana.
|
|
319
|
-
wizard_step_form:
|
|
320
|
-
steps:
|
|
321
|
-
'1': Utwórz poprawkę
|
|
322
|
-
'2': Opublikuj poprawkę
|
|
323
319
|
anonymous_user: Anonim
|
|
324
320
|
application:
|
|
325
321
|
document:
|
|
@@ -445,7 +441,6 @@ pl:
|
|
|
445
441
|
global:
|
|
446
442
|
amendments_enabled: Poprawki dozwolone
|
|
447
443
|
comments_enabled: Komentarze włączone
|
|
448
|
-
comments_max_length: Maksymalna długość komentarzy
|
|
449
444
|
dummy_global_attribute1: Przykładowy atrybut 1
|
|
450
445
|
dummy_global_attribute2: Przykładowy atrybut 2
|
|
451
446
|
dummy_global_translatable_text: Przykładowy tekst do tłumaczenia
|
|
@@ -570,7 +565,7 @@ pl:
|
|
|
570
565
|
notice: |-
|
|
571
566
|
<p>Hej, czy jesteś pewien, że nie chcesz otrzymywać newslettera?
|
|
572
567
|
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>
|
|
573
|
-
<p>Jeśli nie zaznaczysz tego pola, mogą cię ominąć istotne informacje na temat możliwości
|
|
568
|
+
<p>Jeśli nie zaznaczysz tego pola, mogą cię ominąć istotne informacje na temat możliwości
|
|
574
569
|
uczestnictwa w procesach na platformie.<br>Jeśli mimo wszystko nie chcesz otrzymywać newsletterów, doskonale rozumiemy twoją decyzję.</p>
|
|
575
570
|
<p>Dziękujemy za uwagę!</p>
|
|
576
571
|
title: Powiadomienia newslettera
|
|
@@ -640,13 +635,9 @@ pl:
|
|
|
640
635
|
affected_user:
|
|
641
636
|
email_intro: 'Poprawka została zaakceptowana dla %{amendable_title}. Możesz ją zobaczyć na tej stronie:'
|
|
642
637
|
email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś autorem %{amendable_title}.
|
|
643
|
-
email_subject: Poprawka przyjęta dla %{amendable_title} z %{emendation_author_nickname}
|
|
644
|
-
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>.
|
|
645
638
|
follower:
|
|
646
639
|
email_intro: 'Poprawka została zaakceptowana dla %{amendable_title}. Możesz ją zobaczyć na tej stronie:'
|
|
647
640
|
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{amendable_title}. Możesz przestać otrzymywać powiadomienia klikając poprzedni link.
|
|
648
|
-
email_subject: Poprawka przyjęta w %{amendable_title} od %{emendation_author_nickname}
|
|
649
|
-
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>.
|
|
650
641
|
amendment_created:
|
|
651
642
|
affected_user:
|
|
652
643
|
email_intro: 'Nowa poprawka została utworzona do %{amendable_title}. Możesz ją zobaczyć na tej stronie:'
|
|
@@ -662,24 +653,16 @@ pl:
|
|
|
662
653
|
affected_user:
|
|
663
654
|
email_intro: 'Odrzucona poprawka do %{amendable_title} została opublikowana jako %{amendable_type}. Możesz ją zobaczyć na tej stronie:'
|
|
664
655
|
email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś autorem %{amendable_title}.
|
|
665
|
-
email_subject: Poprawka od %{emendation_author_nickname} została opublikowana jako %{amendable_type}
|
|
666
|
-
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>.
|
|
667
656
|
follower:
|
|
668
657
|
email_intro: 'Odrzucona poprawka do %{amendable_title} została opublikowana jako %{amendable_type}. Możesz ją zobaczyć na tej stronie:'
|
|
669
658
|
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{amendable_title}. Możesz przestać otrzymywać powiadomienia klikając w poprzedni link.
|
|
670
|
-
email_subject: Poprawka od %{emendation_author_nickname} została opublikowana jako %{amendable_type}
|
|
671
|
-
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>.
|
|
672
659
|
amendment_rejected:
|
|
673
660
|
affected_user:
|
|
674
661
|
email_intro: 'Poprawka do %{amendable_title} została odrzucona. Możesz ją zobaczyć na tej stronie:'
|
|
675
662
|
email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś autorem %{amendable_title}.
|
|
676
|
-
email_subject: Poprawka użytkownika %{emendation_author_nickname} do %{amendable_title} została odrzucona
|
|
677
|
-
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>.
|
|
678
663
|
follower:
|
|
679
664
|
email_intro: 'Poprawka do %{amendable_title} została odrzucona. Możesz ją zobaczyć na tej stronie:'
|
|
680
665
|
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{amendable_title}. Możesz przestać otrzymywać powiadomienia po kliknięciu w poprzedni link.
|
|
681
|
-
email_subject: Poprawka użytkownika %{emendation_author_nickname} do %{amendable_title} została odrzucona
|
|
682
|
-
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.
|
|
683
666
|
attachments:
|
|
684
667
|
attachment_created:
|
|
685
668
|
email_intro: 'Nowy dokument został dodany do %{resource_title}. Możesz go zobaczyć na tej stronie:'
|
|
@@ -721,16 +704,9 @@ pl:
|
|
|
721
704
|
Administrator usunął %{resource_type}, ponieważ treść została zgłoszona jako %{report_reasons}.</br>
|
|
722
705
|
<i>%{resource_content}</i>
|
|
723
706
|
users:
|
|
724
|
-
profile_updated:
|
|
725
|
-
email_intro: Zaktualizowano <a href="%{resource_url}">stronę profilową</a> użytkownika %{name} (%{nickname}), którego obserwujesz.
|
|
726
|
-
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{nickname}. Możesz przestać otrzymywać powiadomienia klikając w poprzedni link.
|
|
727
|
-
email_subject: "%{nickname} zaktualizował(a) swój profil"
|
|
728
|
-
notification_title: Zaktualizowano <a href="%{resource_path}">stronę profilową</a> użytkownika %{name} (%{nickname}), którego obserwujesz.
|
|
729
707
|
user_officialized:
|
|
730
|
-
email_intro: Uczestnik %{name} (%{nickname}) został oficjalnie zarejestrowany.
|
|
731
708
|
email_outro: Otrzymujesz to powiadomienie, ponieważ jesteś administratorem platformy.
|
|
732
709
|
email_subject: "%{name} zostało oficjalnie zarejestrowane"
|
|
733
|
-
notification_title: Uczestnik %{name} (%{nickname}) został oficjalnie zarejestrowany.
|
|
734
710
|
export_mailer:
|
|
735
711
|
download_your_data_export:
|
|
736
712
|
download: Pobieranie
|
|
@@ -925,7 +901,6 @@ pl:
|
|
|
925
901
|
create:
|
|
926
902
|
error: Rozmowa nie została rozpoczęta. Spróbuj ponownie później.
|
|
927
903
|
error_modal:
|
|
928
|
-
close: Zamknij okno
|
|
929
904
|
correct_errors: Popraw daty i spróbuj ponownie.
|
|
930
905
|
intro: 'W wiadomości wystąpiły błędy:'
|
|
931
906
|
ok: ok
|
|
@@ -1329,7 +1304,7 @@ pl:
|
|
|
1329
1304
|
hello: Witaj %{email},
|
|
1330
1305
|
ignore: |-
|
|
1331
1306
|
Jeżeli nie chcesz zaakceptować zaproszenia, zignoruj ten e-mail.<br />
|
|
1332
|
-
|
|
1307
|
+
Twoje konto nie zostanie utworzone, dopóki nie skorzystasz z linku powyżej i nie ustawisz pseudonimu i hasła.
|
|
1333
1308
|
invited_you_as_admin: "%{invited_by} zaprasza Cię jako administratora %{application}. Możesz zaakceptować zaproszenie za pomocą poniższego linku."
|
|
1334
1309
|
someone_invited_you: Ktoś zaprosił Cię do %{application}. Możesz zaakceptować zaproszenie za pomocą poniższego linku.
|
|
1335
1310
|
someone_invited_you_as_admin: Ktoś zaprosił Cię jako administratora %{application}, możesz zaakceptować zaproszenie za pomocą poniższego linku.
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -420,10 +420,6 @@ pt-BR:
|
|
|
420
420
|
withdraw:
|
|
421
421
|
error: Houve um problema ao retirar a emenda.
|
|
422
422
|
success: A emenda foi retirada com sucesso.
|
|
423
|
-
wizard_step_form:
|
|
424
|
-
steps:
|
|
425
|
-
'1': Crie sua emenda
|
|
426
|
-
'2': Publique sua emenda
|
|
427
423
|
anonymous_user: Anônimo
|
|
428
424
|
application:
|
|
429
425
|
document:
|
|
@@ -556,7 +552,6 @@ pt-BR:
|
|
|
556
552
|
global:
|
|
557
553
|
amendments_enabled: Alterações ativadas
|
|
558
554
|
comments_enabled: Comentários ativados
|
|
559
|
-
comments_max_length: Comprimento máximo de comentários
|
|
560
555
|
define_taxonomy_filters: Por favor, defina alguns filtros para este espaço participativo antes de usar esta configuração.
|
|
561
556
|
dummy_global_attribute1: Dummy Atributo 1
|
|
562
557
|
dummy_global_attribute2: Dummy Attribute 2
|
|
@@ -877,13 +872,9 @@ pt-BR:
|
|
|
877
872
|
affected_user:
|
|
878
873
|
email_intro: 'Uma emendação foi aceita para %{amendable_title}. Você pode ver a partir desta página:'
|
|
879
874
|
email_outro: Você recebeu esta notificação porque é um autor de %{amendable_title}.
|
|
880
|
-
email_subject: Uma emenda aceita para %{amendable_title} partir de %{emendation_author_nickname}
|
|
881
|
-
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>.
|
|
882
875
|
follower:
|
|
883
876
|
email_intro: 'Uma emendação foi aceita para %{amendable_title}. Você pode ver a partir desta página:'
|
|
884
877
|
email_outro: Você recebeu esta notificação porque está seguindo %{amendable_title}. Você pode parar de receber notificações após o link anterior.
|
|
885
|
-
email_subject: Uma emenda aceita para %{amendable_title} partir de %{emendation_author_nickname}
|
|
886
|
-
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>.
|
|
887
878
|
amendment_created:
|
|
888
879
|
affected_user:
|
|
889
880
|
email_intro: 'Uma nova emendação foi criada para %{amendable_title}. Você pode ver a partir desta página:'
|
|
@@ -899,29 +890,20 @@ pt-BR:
|
|
|
899
890
|
affected_user:
|
|
900
891
|
email_intro: 'Uma emenda rejeitada por %{amendable_title} foi promovida a um independente %{amendable_type}. Você pode ver a partir desta página:'
|
|
901
892
|
email_outro: Você recebeu esta notificação porque é um autor de %{amendable_title}.
|
|
902
|
-
email_subject: Uma emenda de %{emendation_author_nickname} foi publicada como um novo %{amendable_type}
|
|
903
|
-
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>.
|
|
904
893
|
follower:
|
|
905
894
|
email_intro: 'Uma emenda rejeitada por %{amendable_title} foi promovida a um independente %{amendable_type}. Você pode ver a partir desta página:'
|
|
906
895
|
email_outro: Você recebeu esta notificação porque está seguindo %{amendable_title}. Você pode parar de receber notificações após o link anterior.
|
|
907
|
-
email_subject: Uma emenda de %{emendation_author_nickname} foi publicada como um novo %{amendable_type}
|
|
908
|
-
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>.
|
|
909
896
|
amendment_rejected:
|
|
910
897
|
affected_user:
|
|
911
898
|
email_intro: 'Uma emenda foi rejeitada por %{amendable_title}. Você pode ver a partir desta página:'
|
|
912
899
|
email_outro: Você recebeu esta notificação porque é um autor de %{amendable_title}.
|
|
913
|
-
email_subject: Uma alteração rejeitada por %{amendable_title} %{emendation_author_nickname}
|
|
914
|
-
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>.
|
|
915
900
|
follower:
|
|
916
901
|
email_intro: 'Uma emenda foi rejeitada por %{amendable_title}. Você pode ver a partir desta página:'
|
|
917
902
|
email_outro: Você recebeu esta notificação porque está seguindo %{amendable_title}. Você pode parar de receber notificações após o link anterior.
|
|
918
|
-
email_subject: Uma alteração rejeitada por %{amendable_title} %{emendation_author_nickname}
|
|
919
|
-
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>.
|
|
920
903
|
emendation_promoted:
|
|
921
904
|
follower:
|
|
922
905
|
email_intro: 'Uma emenda foi publicada para %{amendable_title}. Você pode ver a partir desta página:'
|
|
923
906
|
email_outro: Você recebeu essa notificação porque você é autor de %{amendable_title}.
|
|
924
|
-
email_subject: Uma emenda de %{emendation_author_nickname} foi publicada como um novo %{amendable_type}
|
|
925
907
|
attachments:
|
|
926
908
|
attachment_created:
|
|
927
909
|
email_intro: 'Um novo documento foi adicionado a %{resource_title}. Você pode vê-lo a partir desta página:'
|
|
@@ -961,8 +943,8 @@ pt-BR:
|
|
|
961
943
|
email_outro: Você recebeu está notificação porque você é autor do %{resource_type} afetado.
|
|
962
944
|
email_subject: Seu %{resource_type} não está mais visível
|
|
963
945
|
notification_title: |-
|
|
964
|
-
Seu %{resource_type} não está mais visível. <br>
|
|
965
|
-
|
|
946
|
+
Seu %{resource_type} não está mais visível. <br>
|
|
947
|
+
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>
|
|
966
948
|
resource_hidden:
|
|
967
949
|
email_intro: Um administrador removeu seu %{resource_type} porque ele foi reportado como %{report_reasons}.
|
|
968
950
|
email_outro: Você recebeu esta notificação porque você é um autor do conteúdo removido.
|
|
@@ -970,25 +952,13 @@ pt-BR:
|
|
|
970
952
|
notification_title: |-
|
|
971
953
|
Um administrador removeu seu %{resource_type} porque ele foi reportado como %{report_reasons}.</br>
|
|
972
954
|
<i>%{resource_content}</i>
|
|
973
|
-
resource_liked:
|
|
974
|
-
email_intro: '%{liker_name} %{liker_nickname}, que você está seguindo, acabou de curtir "%{resource_title}" e pensamos que pode interessar você. Confira e contribua:'
|
|
975
|
-
email_outro: Você recebeu está notificação porque está seguindo %{liker_nickname}. Você pode parar de receber notificações após o link anterior.
|
|
976
|
-
email_subject: "%{liker_nickname} Realizou uma nova curtida"
|
|
977
|
-
notification_title: O <a href="%{resource_path}">%{resource_title}</a> %{resource_type} foi curtido por <a href="%{liker_path}">%{liker_name} %{liker_nickname}</a>.
|
|
978
955
|
resources:
|
|
979
956
|
soft_deleted:
|
|
980
957
|
notification_title: Um administrador excluiu seu "%{resource_type}" "%{resource_title}".
|
|
981
958
|
users:
|
|
982
|
-
profile_updated:
|
|
983
|
-
email_intro: O <a href="%{resource_url}">profile page</a> de %{name} (%{nickname}), quem você está seguindo, foi atualizado.
|
|
984
|
-
email_outro: Você recebeu esta notificação porque está seguindo %{nickname}. Você pode parar de receber notificações após o link anterior.
|
|
985
|
-
email_subject: "%{nickname} atualizaram seu perfil"
|
|
986
|
-
notification_title: O <a href="%{resource_path}">profile page</a> de %{name} (%{nickname}), quem você está seguindo, foi atualizado.
|
|
987
959
|
user_officialized:
|
|
988
|
-
email_intro: O participante %{name} (%{nickname}) foi oficializado.
|
|
989
960
|
email_outro: Você recebeu esta notificação porque é um administrador da organização.
|
|
990
961
|
email_subject: "%{name} foi oficializada"
|
|
991
|
-
notification_title: O participante %{name} (%{nickname}) foi oficializado.
|
|
992
962
|
export_mailer:
|
|
993
963
|
download_your_data_export:
|
|
994
964
|
click_button_html: Clique no link a seguir para baixar seus dados.<br/>O arquivo estará disponível para baixar até %{date}.
|
|
@@ -1209,7 +1179,6 @@ pt-BR:
|
|
|
1209
1179
|
create:
|
|
1210
1180
|
error: Conversa não iniciada. Tente mais tarde.
|
|
1211
1181
|
error_modal:
|
|
1212
|
-
close: Fechar modal
|
|
1213
1182
|
correct_errors: Por favor, corrija os itens citados e tente novamente.
|
|
1214
1183
|
intro: 'Sua mensagem contém os seguintes erros:'
|
|
1215
1184
|
ok: OK
|
|
@@ -1520,13 +1489,6 @@ pt-BR:
|
|
|
1520
1489
|
log_in: iniciar sessão
|
|
1521
1490
|
never_logged_in: nunca iniciou sessão
|
|
1522
1491
|
subject: Aviso de conta inativa
|
|
1523
|
-
removal_notification:
|
|
1524
|
-
body: Sua conta %{organization_name} foi excluída devido a inatividade.
|
|
1525
|
-
greetings_html: |
|
|
1526
|
-
Atenciosamente,<br>
|
|
1527
|
-
%{organization_name}
|
|
1528
|
-
hello: Prezado %{username},
|
|
1529
|
-
subject: Conta inativa excluída
|
|
1530
1492
|
participatory_space_members:
|
|
1531
1493
|
index:
|
|
1532
1494
|
members: Membros
|
data/config/locales/pt.yml
CHANGED
|
@@ -198,9 +198,6 @@ pt:
|
|
|
198
198
|
update_draft:
|
|
199
199
|
error: Ocorreu um problema ao atualizar o rascunho da modificação.
|
|
200
200
|
success: Rascunho da modificação atualizado corretamente.
|
|
201
|
-
wizard_step_form:
|
|
202
|
-
steps:
|
|
203
|
-
'1': Criar a sua modificação
|
|
204
201
|
anonymous_user: Anônimo
|
|
205
202
|
application:
|
|
206
203
|
document:
|
|
@@ -300,7 +297,6 @@ pt:
|
|
|
300
297
|
global:
|
|
301
298
|
amendments_enabled: Modificações ativadas
|
|
302
299
|
comments_enabled: Comentários ativados
|
|
303
|
-
comments_max_length: Comprimento máximo dos comentários
|
|
304
300
|
dummy_global_attribute1: Atributo Fictício 1
|
|
305
301
|
dummy_global_attribute2: Atributo Fictício 2
|
|
306
302
|
dummy_global_translatable_text: Texto Traduzível Fictício
|
|
@@ -403,13 +399,9 @@ pt:
|
|
|
403
399
|
affected_user:
|
|
404
400
|
email_intro: 'Uma modificação foi aceite para %{amendable_title}. Pode vê-la a partir desta página:'
|
|
405
401
|
email_outro: Recebeu esta notificação por ser um autor de %{amendable_title}.
|
|
406
|
-
email_subject: Modificação aceite para %{amendable_title} de %{emendation_author_nickname}
|
|
407
|
-
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>.
|
|
408
402
|
follower:
|
|
409
403
|
email_intro: 'Uma modificação foi aceite para %{amendable_title}. Pode vê-la a partir desta página:'
|
|
410
404
|
email_outro: Recebeu esta notificação porque segue %{amendable_title}. Pode parar de receber notificações a partir da hiperligação anterior.
|
|
411
|
-
email_subject: Modificação aceite para %{amendable_title} por %{emendation_author_nickname}
|
|
412
|
-
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>.
|
|
413
405
|
amendment_created:
|
|
414
406
|
affected_user:
|
|
415
407
|
email_intro: 'Uma nova modificação foi criada para %{amendable_title}. Pode vê-la a partir desta página:'
|
|
@@ -425,24 +417,16 @@ pt:
|
|
|
425
417
|
affected_user:
|
|
426
418
|
email_intro: 'Uma modificação rejeitada por %{amendable_title} foi publicada como um novo %{amendable_type}. Pode vê-la a partir desta página:'
|
|
427
419
|
email_outro: Recebeu esta notificação por ser um autor de %{amendable_title}.
|
|
428
|
-
email_subject: Uma modificação de %{emendation_author_nickname} foi publicada como um novo %{amendable_type}
|
|
429
|
-
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>.
|
|
430
420
|
follower:
|
|
431
421
|
email_intro: 'Uma modificação rejeitada de %{amendable_title} foi publicada como um novo %{amendable_type}. Pode vê-la a partir desta página:'
|
|
432
422
|
email_outro: Recebeu esta notificação porque segue %{amendable_title}. Pode parar de receber notificações seguindo a hiperligação anterior.
|
|
433
|
-
email_subject: Uma modificação de %{emendation_author_nickname} foi publicada como um novo %{amendable_type}
|
|
434
|
-
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>.
|
|
435
423
|
amendment_rejected:
|
|
436
424
|
affected_user:
|
|
437
425
|
email_intro: 'Uma modificação foi rejeitada por %{amendable_title}. Pode vê-la a partir desta página:'
|
|
438
426
|
email_outro: Recebeu esta notificação por ser um autor de %{amendable_title}.
|
|
439
|
-
email_subject: Modificação de %{amendable_title} rejeitada por %{emendation_author_nickname}
|
|
440
|
-
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>.
|
|
441
427
|
follower:
|
|
442
428
|
email_intro: 'Uma modificação foi rejeitada por %{amendable_title}. Pode vê-la a partir desta página:'
|
|
443
429
|
email_outro: Recebeu esta notificação porque segue %{amendable_title}. Pode parar de receber notificações seguindo a hiperligação anterior.
|
|
444
|
-
email_subject: Modificação de %{amendable_title} rejeitada por %{emendation_author_nickname}
|
|
445
|
-
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>.
|
|
446
430
|
attachments:
|
|
447
431
|
attachment_created:
|
|
448
432
|
email_intro: 'Um novo documento foi adicionado a %{resource_title}. Pode vê-lo a partir desta página:'
|
|
@@ -473,12 +457,6 @@ pt:
|
|
|
473
457
|
notification_title: |-
|
|
474
458
|
Um administrador removeu o seu %{resource_type} porque foi denunciado como %{report_reasons}.</br>
|
|
475
459
|
<i>%{resource_content}</i>
|
|
476
|
-
users:
|
|
477
|
-
profile_updated:
|
|
478
|
-
email_intro: A <a href="%{resource_url}">página de perfil</a> de %{name} (%{nickname}), que você segue, foi atualizada.
|
|
479
|
-
email_outro: Recebeu esta notificação porque segue %{nickname}. Pode parar de receber notificações seguindo a hiperligação anterior.
|
|
480
|
-
email_subject: "%{nickname} atualizaram seu perfil"
|
|
481
|
-
notification_title: A <a href="%{resource_path}">página de perfil</a> de %{name} (%{nickname}), que você segue, foi atualizada.
|
|
482
460
|
export_mailer:
|
|
483
461
|
download_your_data_export:
|
|
484
462
|
download: Transferir
|
|
@@ -612,7 +590,6 @@ pt:
|
|
|
612
590
|
modal_title: Nova conversa
|
|
613
591
|
no_results: Sem resultados
|
|
614
592
|
error_modal:
|
|
615
|
-
close: Fechar modal
|
|
616
593
|
correct_errors: Por favor corrija os erros e tente de novo
|
|
617
594
|
intro: 'Há os seguintes erros com a sua mensagem:'
|
|
618
595
|
ok: OK
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -431,10 +431,6 @@ ro:
|
|
|
431
431
|
withdraw:
|
|
432
432
|
error: A apărut o eroare la retragerea amendamentului.
|
|
433
433
|
success: Amendamentul a fost retras cu succes.
|
|
434
|
-
wizard_step_form:
|
|
435
|
-
steps:
|
|
436
|
-
'1': Creeați un amendament
|
|
437
|
-
'2': Publicați amendamentul
|
|
438
434
|
anonymous_user: Anonim
|
|
439
435
|
application:
|
|
440
436
|
document:
|
|
@@ -570,7 +566,6 @@ ro:
|
|
|
570
566
|
global:
|
|
571
567
|
amendments_enabled: Amendamente activate
|
|
572
568
|
comments_enabled: Comentarii activate
|
|
573
|
-
comments_max_length: Lungimea maximă a comentariilor
|
|
574
569
|
define_taxonomy_filters: Vă rugăm să definiți niște filtre pentru acest spațiu participativ înainte de a utiliza această setare.
|
|
575
570
|
dummy_global_attribute1: Mostră de atribut 1
|
|
576
571
|
dummy_global_attribute2: Mostră de atribut 2
|
|
@@ -715,7 +710,7 @@ ro:
|
|
|
715
710
|
<p>Sigur nu doriți să primiți un buletin informativ?<br>
|
|
716
711
|
Vă rugăm să bifați din nou caseta din buletinul informativ de mai jos.<br>
|
|
717
712
|
Este foarte important pentru noi să puteți primi e-mailuri ocazionale
|
|
718
|
-
pentru a face anunțuri importante, puteți modifica oricând opțiunea pe
|
|
713
|
+
pentru a face anunțuri importante, puteți modifica oricând opțiunea pe
|
|
719
714
|
pagina cu setări pentru notificări. </p>
|
|
720
715
|
<p>Dacă nu bifați caseta ați putea rata informații importante
|
|
721
716
|
despre noi oportunități de participare în cadrul platformei.<br>Dacă, totuși, doriți să evitați primirea de buletine informative, înțelegem
|
|
@@ -875,13 +870,9 @@ ro:
|
|
|
875
870
|
affected_user:
|
|
876
871
|
email_intro: 'A fost acceptat un amendament pentru %{amendable_title}. Îl puteți vedea de pe această pagină:'
|
|
877
872
|
email_outro: Ați primit această notificare deoarece sunteți un autor al %{amendable_title}.
|
|
878
|
-
email_subject: Amendamentul acceptat pentru %{amendable_title} de la %{emendation_author_nickname}
|
|
879
|
-
notification_title: <a href="%{emendation_path}">Amendamentul</a> creat de <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a fost acceptat pentru <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
880
873
|
follower:
|
|
881
874
|
email_intro: 'Un amendament a fost acceptat pentru %{amendable_title}. Îl poți vedea de pe această pagină:'
|
|
882
875
|
email_outro: Ați primit această notificare deoarece urmăriți %{amendable_title}. Puteți înceta să primiți notificări urmând linkul anterior.
|
|
883
|
-
email_subject: Amendament acceptat pentru %{amendable_title} de la %{emendation_author_nickname}
|
|
884
|
-
notification_title: Amendamentul <a href="%{emendation_path}"></a> creat de <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a fost acceptat pentru <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
885
876
|
amendment_created:
|
|
886
877
|
affected_user:
|
|
887
878
|
email_intro: 'A fost creat un nou amendament pentru %{amendable_title}. Îl poți vedea de pe această pagină:'
|
|
@@ -897,24 +888,16 @@ ro:
|
|
|
897
888
|
affected_user:
|
|
898
889
|
email_intro: 'Un amendament respins pentru %{amendable_title} a fost publicat ca un nou %{amendable_type}. Îl poți vedea de pe această pagină:'
|
|
899
890
|
email_outro: Ați primit această notificare deoarece sunteți autorul amendamentului %{amendable_title}.
|
|
900
|
-
email_subject: Un amendament primit de la %{emendation_author_nickname} a fost publicat ca un nou %{amendable_type}
|
|
901
|
-
notification_title: Un <a href="%{emendation_path}">amendament respins</a> pentru <a href="%{amendable_path}">%{amendable_title}</a> a fost publicat ca un nou %{amendable_type} de <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
902
891
|
follower:
|
|
903
892
|
email_intro: 'Un amendament respins pentru %{amendable_title} a fost publicat ca un nou %{amendable_type}. Îl poți vedea de pe această pagină:'
|
|
904
893
|
email_outro: Ai primit această notificare deoarece urmărești %{amendable_title}. Poți înceta să primești notificări urmând linkul anterior.
|
|
905
|
-
email_subject: Un amendament primit de la %{emendation_author_nickname} a fost publicat ca un nou %{amendable_type}
|
|
906
|
-
notification_title: Un <a href="%{emendation_path}">amendament respins</a> pentru <a href="%{amendable_path}">%{amendable_title}</a> a fost publicat ca un nou %{amendable_type} de <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
907
894
|
amendment_rejected:
|
|
908
895
|
affected_user:
|
|
909
896
|
email_intro: 'Un amendament al %{amendable_title} a fost respins. Îl puteți vedea de pe această pagină:'
|
|
910
897
|
email_outro: Ați primit această notificare deoarece sunteți un autor al %{amendable_title}.
|
|
911
|
-
email_subject: Amendament respins pentru %{amendable_title} de la %{emendation_author_nickname}
|
|
912
|
-
notification_title: <a href="%{emendation_path}">Amendamentul</a> creat de <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a fost respins pentru <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
913
898
|
follower:
|
|
914
899
|
email_intro: 'Un amendament a fost respins pentru %{amendable_title}. Îl poți vedea de pe această pagină:'
|
|
915
900
|
email_outro: Ai primit această notificare deoarece urmărești %{amendable_title}. Poți înceta să primești notificări urmând linkul anterior.
|
|
916
|
-
email_subject: Amendament respins pentru %{amendable_title} de la %{emendation_author_nickname}
|
|
917
|
-
notification_title: <a href="%{emendation_path}">Amendamentul</a> creat de <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a fost respins pentru <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
918
901
|
emendation_promoted:
|
|
919
902
|
follower:
|
|
920
903
|
email_outro: Ai primit această notificare deoarece ești autor al propunerii "%{amendable_title}.
|
|
@@ -967,13 +950,7 @@ ro:
|
|
|
967
950
|
soft_deleted:
|
|
968
951
|
notification_title: Un administrator a șters "%{resource_type}" "%{resource_title}".
|
|
969
952
|
users:
|
|
970
|
-
profile_updated:
|
|
971
|
-
email_intro: <a href="%{resource_url}">Pagina de profil</a> din %{name} (%{nickname}), pe care o urmăriți, a fost actualizată.
|
|
972
|
-
email_outro: Ați primit această notificare deoarece urmăriți activitatea lui %{endorser_nickname}. Puteți înceta să primiți notificări urmând linkul anterior.
|
|
973
|
-
email_subject: "%{nickname} și-a actualizat profilul"
|
|
974
|
-
notification_title: Pagina de profil <a href="%{resource_path}"></a> din %{name} (%{nickname}), pe care o urmărești, a fost actualizată.
|
|
975
953
|
user_officialized:
|
|
976
|
-
email_intro: Participantul %{name} (%{nickname}) a fost oficializat.
|
|
977
954
|
email_outro: Ați primit această notificare deoarece sunteți un administrator al organizației.
|
|
978
955
|
email_subject: "%{name} a fost oficializat"
|
|
979
956
|
export_mailer:
|
|
@@ -1177,7 +1154,6 @@ ro:
|
|
|
1177
1154
|
participants:
|
|
1178
1155
|
title: Participanți
|
|
1179
1156
|
error_modal:
|
|
1180
|
-
close: Închidere
|
|
1181
1157
|
correct_errors: Vă rugăm să remediați erorile și să încercați din nou.
|
|
1182
1158
|
intro: 'Au existat următoarele erori cu mesajul tău:'
|
|
1183
1159
|
ok: Ok
|
|
@@ -1406,13 +1382,6 @@ ro:
|
|
|
1406
1382
|
log_in: autentificare
|
|
1407
1383
|
never_logged_in: niciodată autentificat
|
|
1408
1384
|
subject: Avertizare cont inactiv
|
|
1409
|
-
removal_notification:
|
|
1410
|
-
body: Contul dumneavoastră din %{organization_name} a fost șters din cauza inactivității.
|
|
1411
|
-
greetings_html: |
|
|
1412
|
-
Cu stimă,<br>
|
|
1413
|
-
%{organization_name}
|
|
1414
|
-
hello: Dragă %{username},
|
|
1415
|
-
subject: Cont inactiv șters
|
|
1416
1385
|
participatory_space_members:
|
|
1417
1386
|
index:
|
|
1418
1387
|
members: Membri
|
data/config/locales/ru.yml
CHANGED
|
@@ -287,8 +287,6 @@ ru:
|
|
|
287
287
|
affected_user:
|
|
288
288
|
email_intro: 'Для %{amendable_title} была принята поправка. Вы можете увидеть ее на этой странице:'
|
|
289
289
|
email_outro: Вы получили это уведомление, потому что вы автор %{amendable_title}.
|
|
290
|
-
email_subject: Принята поправка для %{amendable_title} от %{emendation_author_nickname}
|
|
291
|
-
notification_title: <a href="%{emendation_path}">Эта поправка</a> создана <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> была принята для <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
292
290
|
follower:
|
|
293
291
|
email_intro: 'Для %{amendable_title} была принята поправка. Вы можете увидеть ее на этой странице:'
|
|
294
292
|
email_outro: Вы получили это уведомление, потому что вы следите за «%{amendable_title}». Вы можете отписаться от уведомлений, перейдя по приведенной выше ссылке.
|
|
@@ -309,12 +307,6 @@ ru:
|
|
|
309
307
|
email_intro: '«%{resource_title}» обновили. Вы можете посмотреть его на странице:'
|
|
310
308
|
email_outro: Вы получили это уведомление, потому что вы следите за «%{resource_title}». Вы можете перестать за ним следить, перейдя по приведенной выше ссылке.
|
|
311
309
|
email_subject: Обновление %{resource_title}
|
|
312
|
-
users:
|
|
313
|
-
profile_updated:
|
|
314
|
-
email_intro: Страница <a href="%{resource_url}">профиля</a> участника %{name} (%{nickname}), за которым вы следите, была обновлена.
|
|
315
|
-
email_outro: Вы получили это уведомление, потому что вы следите за «%{nickname}». Вы можете отписаться от уведомлений, перейдя по приведенной выше ссылке.
|
|
316
|
-
email_subject: "%{nickname} обновил свой профиль"
|
|
317
|
-
notification_title: Страница <a href="%{resource_path}">профиля</a> участника %{name} (%{nickname}), за которым вы следите, была обновлена.
|
|
318
310
|
export_mailer:
|
|
319
311
|
download_your_data_export:
|
|
320
312
|
download: Скачать
|