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/cs.yml
CHANGED
|
@@ -446,10 +446,6 @@ cs:
|
|
|
446
446
|
withdraw:
|
|
447
447
|
error: Při stahování pozměňovacího návrhu došlo k chybě.
|
|
448
448
|
success: Pozměňovací návrh byl úspěšně stažen.
|
|
449
|
-
wizard_step_form:
|
|
450
|
-
steps:
|
|
451
|
-
'1': Vytvořte svůj pozměňovací návrh
|
|
452
|
-
'2': Publikovat svůj pozměňovací návrh
|
|
453
449
|
anonymous_user: Anonymní
|
|
454
450
|
application:
|
|
455
451
|
document:
|
|
@@ -588,7 +584,7 @@ cs:
|
|
|
588
584
|
global:
|
|
589
585
|
amendments_enabled: Pozměňovací návrhy povoleny
|
|
590
586
|
comments_enabled: Komentáře povoleny
|
|
591
|
-
comments_max_length: Maximální
|
|
587
|
+
comments_max_length: Maximální počet znaků na komentář
|
|
592
588
|
define_taxonomy_filters: Před použitím tohoto nastavení prosím definujte některé filtry pro tento participační prostor.
|
|
593
589
|
dummy_global_attribute1: Zástupný atribut 1
|
|
594
590
|
dummy_global_attribute2: Zástupný atribut 2
|
|
@@ -913,13 +909,9 @@ cs:
|
|
|
913
909
|
affected_user:
|
|
914
910
|
email_intro: 'Změna byla přijata pro %{amendable_title}. Můžete ji vidět z této stránky:'
|
|
915
911
|
email_outro: Toto oznámení jste obdrželi, protože jste autorem %{amendable_title}.
|
|
916
|
-
email_subject: Pozměňovací návrh přijatý pro %{amendable_title} od %{emendation_author_nickname}
|
|
917
|
-
notification_title: <a href="%{emendation_path}">pozměňovací návrh</a> vytvořený <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> byl přijat <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
918
912
|
follower:
|
|
919
913
|
email_intro: 'Změna byla přijata pro %{amendable_title}. Můžete ji vidět z této stránky:'
|
|
920
914
|
email_outro: Toto oznámení jste obdrželi, protože jste sledovali %{amendable_title}. Po kliknutí na předchozí odkaz můžete přestat přijímat oznámení.
|
|
921
|
-
email_subject: Pozměňovací návrh přijatý k %{amendable_title} od %{emendation_author_nickname}
|
|
922
|
-
notification_title: <a href="%{emendation_path}">Pozměňovací návrh</a> vytvořený od <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> k <a href="%{amendable_path}">%{amendable_title}</a> byl přijat.
|
|
923
915
|
amendment_created:
|
|
924
916
|
affected_user:
|
|
925
917
|
email_intro: 'Nová změna byla vytvořena pro %{amendable_title}. Můžete ji vidět z této stránky:'
|
|
@@ -935,29 +927,20 @@ cs:
|
|
|
935
927
|
affected_user:
|
|
936
928
|
email_intro: 'Zamítnutý pozměňovací návrh pro %{amendable_title} byl publikován jako nový %{amendable_type}. Můžete ho vidět z této stránky:'
|
|
937
929
|
email_outro: Toto oznámení jste obdrželi, protože jste autorem %{amendable_title}.
|
|
938
|
-
email_subject: Pozměňovací návrh od %{emendation_author_nickname} byl zveřejněn jako nový %{amendable_type}
|
|
939
|
-
notification_title: <a href="%{emendation_path}">Odmítnutý pozměňovací návrh</a> k <a href="%{amendable_path}">%{amendable_title}</a> byl publikován jako nový %{amendable_type} od <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
940
930
|
follower:
|
|
941
931
|
email_intro: 'Označení odmítnuté pro číslo %{amendable_title} bylo povýšeno na nezávislý %{amendable_type}. Můžete ji vidět z této stránky:'
|
|
942
932
|
email_outro: Toto oznámení jste obdrželi, protože jste sledovali %{amendable_title}. Po předchozím propojení můžete přestat přijímat oznámení.
|
|
943
|
-
email_subject: Pozměňovací návrh od %{emendation_author_nickname} byl zveřejněn jako nový %{amendable_type}
|
|
944
|
-
notification_title: <a href="%{emendation_path}">Odmítnutý pozměňovací návrh</a> k <a href="%{amendable_path}">%{amendable_title}</a> byla publikován jako nový %{amendable_type} od <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
945
933
|
amendment_rejected:
|
|
946
934
|
affected_user:
|
|
947
935
|
email_intro: 'Oznámení bylo zamítnuto za %{amendable_title}. Můžete ji vidět z této stránky:'
|
|
948
936
|
email_outro: Toto oznámení jste obdrželi, protože jste autorem %{amendable_title}.
|
|
949
|
-
email_subject: Pozměňovací návrh k %{amendable_title} byl zamítnut od %{emendation_author_nickname}
|
|
950
|
-
notification_title: <a href="%{emendation_path}">Pozměňovací návrh</a> vytvořen od <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> k <a href="%{amendable_path}">%{amendable_title}</a> byl odmítnut.
|
|
951
937
|
follower:
|
|
952
938
|
email_intro: 'Oznámení bylo zamítnuto za %{amendable_title}. Můžete ji vidět z této stránky:'
|
|
953
939
|
email_outro: Toto oznámení jste obdrželi, protože jste sledovali %{amendable_title}. Po předchozím propojení můžete přestat přijímat oznámení.
|
|
954
|
-
email_subject: Pozměňovací návrh k %{amendable_title} byl zamítnut od %{emendation_author_nickname}
|
|
955
|
-
notification_title: <a href="%{emendation_path}">Pozměňovací návrh</a> vytvořen od <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> k <a href="%{amendable_path}">%{amendable_title}</a> byl odmítnut.
|
|
956
940
|
emendation_promoted:
|
|
957
941
|
follower:
|
|
958
942
|
email_intro: 'Byla zveřejněna oprava pro %{amendable_title}. Můžete si ji prohlédnout na této stránce:'
|
|
959
943
|
email_outro: Toto oznámení jste obdrželi, protože jste autorem %{amendable_title}.
|
|
960
|
-
email_subject: Doplněk z %{emendation_author_nickname} byl zveřejněn jako nový %{amendable_type}
|
|
961
944
|
attachments:
|
|
962
945
|
attachment_created:
|
|
963
946
|
email_intro: 'Do dokumentu %{resource_title} byl přidán nový dokument. Můžete jej vidět z této stránky:'
|
|
@@ -1001,22 +984,15 @@ cs:
|
|
|
1001
984
|
notification_title: |-
|
|
1002
985
|
Administrátor odstranil váš %{resource_type}, protože byl nahlášen jako %{report_reasons}.</br>
|
|
1003
986
|
<i>%{resource_content}</i>
|
|
1004
|
-
resource_liked:
|
|
1005
|
-
email_outro: Toto oznámení jste obdrželi, protože sledujete %{liker_nickname}. Můžete přestat přijímat oznámení na předchozím odkazu.
|
|
1006
987
|
resources:
|
|
1007
988
|
soft_deleted:
|
|
1008
989
|
notification_title: Administrátor odstranil váš "%{resource_type}" "%{resource_title}".
|
|
1009
990
|
users:
|
|
1010
991
|
profile_updated:
|
|
1011
|
-
|
|
1012
|
-
email_outro: Toto oznámení jste obdrželi, protože jste sledovali %{nickname}. Na předchozím odkazu můžete přestat přijímat oznámení.
|
|
1013
|
-
email_subject: "%{nickname} aktualizoval svůj profil"
|
|
1014
|
-
notification_title: <a href="%{resource_path}">Profilová stránka</a> od %{name} (%{nickname}), kterou sledujete, byla aktualizována.
|
|
992
|
+
email_subject: "%{name} aktualizoval svůj profil"
|
|
1015
993
|
user_officialized:
|
|
1016
|
-
email_intro: Uživatel %{name} (%{nickname}) byl oficiálně zveřejněn.
|
|
1017
994
|
email_outro: Obdrželi jste toto oznámení, protože jste správcem organizace.
|
|
1018
995
|
email_subject: "%{name} byl oficializován"
|
|
1019
|
-
notification_title: Uživatel %{name} (%{nickname}) byl oficiálně zveřejněn.
|
|
1020
996
|
export_mailer:
|
|
1021
997
|
download_your_data_export:
|
|
1022
998
|
click_button_html: Klikněte na následující odkaz pro stažení vašich dat.<br/>Soubor bude k dispozici ke stažení do %{date}.
|
|
@@ -1245,7 +1221,6 @@ cs:
|
|
|
1245
1221
|
create:
|
|
1246
1222
|
error: Konverzace nebyla zahájena. Zkuste to znovu později.
|
|
1247
1223
|
error_modal:
|
|
1248
|
-
close: Zavřít okno
|
|
1249
1224
|
correct_errors: Opravte chyby a zkuste to znovu.
|
|
1250
1225
|
intro: 'Došlo k následujícím chybám ve vaší zprávě:'
|
|
1251
1226
|
ok: OK
|
|
@@ -1551,16 +1526,18 @@ cs:
|
|
|
1551
1526
|
log_in: přihlásit se
|
|
1552
1527
|
never_logged_in: nikdy se nepřihlásil
|
|
1553
1528
|
subject: Upozornění na neaktivní účet
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
hello: Dobrý den %{username},
|
|
1560
|
-
subject: Neaktivní účet byl smazán
|
|
1529
|
+
participatory_space:
|
|
1530
|
+
pages:
|
|
1531
|
+
user_profile:
|
|
1532
|
+
member_of:
|
|
1533
|
+
member_of: Je členem
|
|
1561
1534
|
participatory_space_members:
|
|
1562
1535
|
index:
|
|
1563
1536
|
members: Členové
|
|
1537
|
+
participatory_spaces:
|
|
1538
|
+
show:
|
|
1539
|
+
restricted_space: Toto je omezený prostor. Pouze členové a administrátoři jej mohou zobrazit a účastnit se.
|
|
1540
|
+
transparent_space: Toto je transparentní prostor. Kdokoli může zobrazit obsah, ale mohou se účastnit pouze členové a správci.
|
|
1564
1541
|
passwords:
|
|
1565
1542
|
update:
|
|
1566
1543
|
error: Došlo k problému s aktualizací hesla.
|
|
@@ -1853,6 +1830,7 @@ cs:
|
|
|
1853
1830
|
submit_button: Odeslat pozvánku
|
|
1854
1831
|
no_invitations_remaining: Žádné zbývající pozvánky
|
|
1855
1832
|
send_instructions: Pozvánka byla odeslána na %{email}.
|
|
1833
|
+
updated_not_active: Pozvánka úspěšně přijata.
|
|
1856
1834
|
mailer:
|
|
1857
1835
|
confirmation_instructions:
|
|
1858
1836
|
action: Potvrďte svůj účet
|
data/config/locales/de.yml
CHANGED
|
@@ -416,10 +416,6 @@ de:
|
|
|
416
416
|
withdraw:
|
|
417
417
|
error: Beim Zurückziehen der Änderung ist ein Problem aufgetreten.
|
|
418
418
|
success: Die Änderung wurde erfolgreich zurückgezogen.
|
|
419
|
-
wizard_step_form:
|
|
420
|
-
steps:
|
|
421
|
-
'1': Erstellen Sie Ihre Änderung
|
|
422
|
-
'2': Änderung veröffentlichen
|
|
423
419
|
anonymous_user: Anonym
|
|
424
420
|
application:
|
|
425
421
|
document:
|
|
@@ -552,7 +548,6 @@ de:
|
|
|
552
548
|
global:
|
|
553
549
|
amendments_enabled: Änderungen aktiviert
|
|
554
550
|
comments_enabled: Kommentare aktiviert
|
|
555
|
-
comments_max_length: Maximallänge der Kommentare
|
|
556
551
|
define_taxonomy_filters: Bitte definieren Sie einige Filter für diesen partizipativen Bereich, bevor Sie diese Einstellung verwenden.
|
|
557
552
|
dummy_global_attribute1: Dummy-Attribut 1
|
|
558
553
|
dummy_global_attribute2: Dummy-Attribut 2
|
|
@@ -701,12 +696,12 @@ de:
|
|
|
701
696
|
notice: |-
|
|
702
697
|
<p>Hallo, sind Sie sicher, dass Sie keinen Newsletter erhalten möchten?
|
|
703
698
|
Bitte prüfen Sie noch einmal, ob Sie das Kästchen mit der Bestellung des Newsletters nicht doch ankreuzen möchten.
|
|
704
|
-
Es ist sehr wichtig für uns, dass Sie gelegentlich E-Mails erhalten können,
|
|
699
|
+
Es ist sehr wichtig für uns, dass Sie gelegentlich E-Mails erhalten können,
|
|
705
700
|
damit wir Ihnen wichtige Informationen mitteilen können. Sie können die
|
|
706
701
|
Seite mit den Einstellungen für Mitteilungen jederzeit ändern.</p>
|
|
707
702
|
<p>Wenn Sie das Kästchen nicht ankreuzen, könnten Sie vielleicht wichtige Informationen
|
|
708
|
-
|
|
709
|
-
Wenn Sie dennoch keinen Newsletter erhalten möchten,
|
|
703
|
+
über neue Möglichkeiten der Teilnahme an der Plattform verpassen.<br>
|
|
704
|
+
Wenn Sie dennoch keinen Newsletter erhalten möchten,
|
|
710
705
|
haben wir vollstes Verständnis für Ihre Entscheidung.</p>
|
|
711
706
|
<p>Vielen Dank, dass Sie sich die Zeit zum Lesen genommen haben!</p>
|
|
712
707
|
title: Newsletter Benachrichtigungen
|
|
@@ -794,6 +789,7 @@ de:
|
|
|
794
789
|
invitation_sent_at: Datum und Uhrzeit, an dem die Einladung versendet wurde
|
|
795
790
|
invitations_count: Die Anzahl der an diesen Benutzer gesendeten Einladungen
|
|
796
791
|
invited_by: Der Benutzer, der diesen Benutzer eingeladen hat
|
|
792
|
+
last_sign_in_at: Datum und Uhrzeit des letzten Logins
|
|
797
793
|
locale: Die Plattformsprache, die dieser Benutzer ausgewählt hat
|
|
798
794
|
managed: Ob dieser Benutzer von einem anderen Benutzer verwaltet wird
|
|
799
795
|
name: Der Name des Benutzers
|
|
@@ -859,13 +855,9 @@ de:
|
|
|
859
855
|
affected_user:
|
|
860
856
|
email_intro: 'Eine Änderung an %{amendable_title} wurde akzeptiert. Sehen Sie es sich auf dieser Seite an:'
|
|
861
857
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title} sind.
|
|
862
|
-
email_subject: Akzeptierte Änderung für %{amendable_title} von %{emendation_author_nickname}
|
|
863
|
-
notification_title: Die <a href="%{emendation_path}">Änderung</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde angenommen.
|
|
864
858
|
follower:
|
|
865
859
|
email_intro: 'Eine Änderung für %{amendable_title} wurde akzeptiert. Sehen Sie es sich auf dieser Seite an:'
|
|
866
860
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
|
867
|
-
email_subject: Akzeptierte Änderung für %{amendable_title} von %{emendation_author_nickname}
|
|
868
|
-
notification_title: Die <a href="%{emendation_path}">Änderung</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde akzeptiert.
|
|
869
861
|
amendment_created:
|
|
870
862
|
affected_user:
|
|
871
863
|
email_intro: 'Eine neue Änderung wurde für %{amendable_title} vorgeschlagen. Sehen Sie es sich auf dieser Seite an:'
|
|
@@ -881,29 +873,20 @@ de:
|
|
|
881
873
|
affected_user:
|
|
882
874
|
email_intro: 'Eine abgelehnte Änderung an %{amendable_title} wurde als neue/n %{amendable_type} veröffentlicht. Sehen Sie es sich auf dieser Seite an:'
|
|
883
875
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title} sind.
|
|
884
|
-
email_subject: Eine Änderung von %{emendation_author_nickname} wurde als neue/n %{amendable_type} veröffentlicht
|
|
885
|
-
notification_title: Die <a href="%{emendation_path}">abgelehnte Änderung</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> als neue/n %{amendable_type} veröffentlicht.
|
|
886
876
|
follower:
|
|
887
877
|
email_intro: 'Eine abgelehnte Änderung für %{amendable_title} wurde als neue/n %{amendable_type} veröffentlicht. Sehen Sie es sich auf dieser Seite an:'
|
|
888
878
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
|
889
|
-
email_subject: Eine Änderung von %{emendation_author_nickname} wurde als neue/n/s %{amendable_type} veröffentlicht
|
|
890
|
-
notification_title: Eine <a href="%{emendation_path}">abgelehnte Änderung</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> als neue/n/s %{amendable_type} veröffentlicht.
|
|
891
879
|
amendment_rejected:
|
|
892
880
|
affected_user:
|
|
893
881
|
email_intro: 'Eine Änderung an %{amendable_title} wurde abgelehnt. Sehen Sie es sich auf dieser Seite an:'
|
|
894
882
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title} sind.
|
|
895
|
-
email_subject: Abgelehnter Änderungsantrag für %{amendable_title} von %{emendation_author_nickname}
|
|
896
|
-
notification_title: Die <a href="%{emendation_path}">Änderung</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde abgelehnt.
|
|
897
883
|
follower:
|
|
898
884
|
email_intro: 'Eine Änderung für %{amendable_title} wurde abgelehnt. Sehen Sie es sich auf dieser Seite an:'
|
|
899
885
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title}. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
|
900
|
-
email_subject: Abgelehnte Änderung für %{amendable_title} von %{emendation_author_nickname}
|
|
901
|
-
notification_title: Die <a href="%{emendation_path}">Änderung</a> für <a href="%{amendable_path}">%{amendable_title}</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> wurde abgelehnt.
|
|
902
886
|
emendation_promoted:
|
|
903
887
|
follower:
|
|
904
888
|
email_intro: 'Eine Änderung wurde für %{amendable_title} abgelehnt. Sehen Sie es sich auf dieser Seite an:'
|
|
905
889
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} mitverfasst haben.
|
|
906
|
-
email_subject: Eine Änderung von %{emendation_author_nickname} ist als neuer %{amendable_type} veröffentlicht worden
|
|
907
890
|
attachments:
|
|
908
891
|
attachment_created:
|
|
909
892
|
email_intro: 'Ein neues Dokument wurde zu %{resource_title} hinzugefügt. Sehen Sie es sich auf dieser Seite an:'
|
|
@@ -954,25 +937,13 @@ de:
|
|
|
954
937
|
notification_title: |-
|
|
955
938
|
Ein Administrator hat Ihr/e %{resource_type} entfernt, weil es als %{report_reasons} gemeldet wurde.</br>
|
|
956
939
|
<i>%{resource_content}</i>
|
|
957
|
-
resource_liked:
|
|
958
|
-
email_intro: '%{liker_name} %{liker_nickname}, dem Sie folgen, hat gerade "%{resource_title}" unterstützt. Wir denken, das könnte interessant für Sie sein. Jetzt anschauen und mitreden:'
|
|
959
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{liker_nickname} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den angegebenen Link.
|
|
960
|
-
email_subject: "%{liker_nickname} etwas Neues unterstützt"
|
|
961
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> %{resource_type} wurde von <a href="%{liker_path}">%{liker_name} %{liker_nickname}</a> unterstützt.
|
|
962
940
|
resources:
|
|
963
941
|
soft_deleted:
|
|
964
942
|
notification_title: Ein Admin hat Ihre "%{resource_type}" "%{resource_title} " gelöscht.
|
|
965
943
|
users:
|
|
966
|
-
profile_updated:
|
|
967
|
-
email_intro: Die <a href="%{resource_url}">Profilseite</a> von %{name} (%{nickname}), der Sie folgen, wurde aktualisiert.
|
|
968
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{nickname} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
|
969
|
-
email_subject: "%{nickname} hat ihr Profil aktualisiert"
|
|
970
|
-
notification_title: Die <a href="%{resource_path}">Profilseite</a> von %{name} (%{nickname}), der Sie folgen, wurde aktualisiert.
|
|
971
944
|
user_officialized:
|
|
972
|
-
email_intro: Teilnehmer %{name} (%{nickname}) wurde offiziell bestätigt.
|
|
973
945
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Administrator der Organisation sind.
|
|
974
946
|
email_subject: "%{name} wurde offiziell bestätigt"
|
|
975
|
-
notification_title: Teilnehmer %{name} (%{nickname}) wurde offiziell bestätigt.
|
|
976
947
|
export_mailer:
|
|
977
948
|
download_your_data_export:
|
|
978
949
|
click_button_html: Klicken Sie auf den nächsten Link, um Ihre Daten herunterzuladen.<br/>Die Datei steht bis %{date} zum Download zur Verfügung.
|
|
@@ -1200,7 +1171,6 @@ de:
|
|
|
1200
1171
|
create:
|
|
1201
1172
|
error: Die Unterhaltung wurde nicht gestartet. Versuchen Sie es später noch einmal.
|
|
1202
1173
|
error_modal:
|
|
1203
|
-
close: Fenster schließen
|
|
1204
1174
|
correct_errors: Bitte korrigiere diese Fehler und versuche es erneut.
|
|
1205
1175
|
intro: 'Es gab folgende Fehler bei Ihrer Nachricht:'
|
|
1206
1176
|
ok: OK
|
|
@@ -1358,7 +1328,7 @@ de:
|
|
|
1358
1328
|
one: "%{count} Ressource"
|
|
1359
1329
|
other: "%{count} Ressourcen"
|
|
1360
1330
|
spaces: Bereiche
|
|
1361
|
-
title: Open Data Dateien für %{organization}
|
|
1331
|
+
title: Open Data Dateien für %{organization}
|
|
1362
1332
|
moderated_users:
|
|
1363
1333
|
about: Die Beschreibung des Kontos
|
|
1364
1334
|
block_reasons: Der Grund der Blockierung eines Kontos durch einen Admin
|
|
@@ -1511,20 +1481,9 @@ de:
|
|
|
1511
1481
|
log_in: anmelden
|
|
1512
1482
|
never_logged_in: Nie angemeldet
|
|
1513
1483
|
subject: Inaktive Kontowarnung
|
|
1514
|
-
removal_notification:
|
|
1515
|
-
body: Ihr %{organization_name} Konto wurde aufgrund von Inaktivität gelöscht.
|
|
1516
|
-
greetings_html: |
|
|
1517
|
-
Freundliche Grüsse,<br>
|
|
1518
|
-
%{organization_name}
|
|
1519
|
-
hello: Hallo %{username},
|
|
1520
|
-
subject: Inaktives Konto gelöscht
|
|
1521
1484
|
participatory_space_members:
|
|
1522
1485
|
index:
|
|
1523
1486
|
members: Mitglieder
|
|
1524
|
-
participatory_spaces:
|
|
1525
|
-
show:
|
|
1526
|
-
restricted_space: Dies ist ein eingeschränkter Bereich. Nur Mitglieder können ihn sehen und teilnehmen.
|
|
1527
|
-
transparent_space: Dies ist ein öffentlich sichtbarer Bereich. Alle können die Inhalte einsehen, aber nur Mitglieder können teilnehmen.
|
|
1528
1487
|
passwords:
|
|
1529
1488
|
update:
|
|
1530
1489
|
error: Es gab ein Problem bei der Aktualisierung des Passwortes.
|
data/config/locales/el.yml
CHANGED
|
@@ -258,9 +258,6 @@ el:
|
|
|
258
258
|
update_draft:
|
|
259
259
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση του πρόχειρου τροποποίησης.
|
|
260
260
|
success: Το πρόχειρο τροποποίησης ενημερώθηκε επιτυχώς.
|
|
261
|
-
wizard_step_form:
|
|
262
|
-
steps:
|
|
263
|
-
'1': Δημιουργήστε την τροποποίησή σας
|
|
264
261
|
anonymous_user: Ανώνυμη
|
|
265
262
|
application:
|
|
266
263
|
document:
|
|
@@ -368,7 +365,6 @@ el:
|
|
|
368
365
|
global:
|
|
369
366
|
amendments_enabled: Οι τροποποιήσεις ενεργοποιήθηκαν
|
|
370
367
|
comments_enabled: Τα σχόλια ενεργοποιήθηκαν
|
|
371
|
-
comments_max_length: Μέγιστο μήκος σχολίων
|
|
372
368
|
dummy_global_attribute1: Εικονικό χαρακτηριστικό 1
|
|
373
369
|
dummy_global_attribute2: Εικονικό χαρακτηριστικό 2
|
|
374
370
|
dummy_global_translatable_text: Εικονικό μετατρέψιμο κείμενο
|
|
@@ -494,13 +490,9 @@ el:
|
|
|
494
490
|
affected_user:
|
|
495
491
|
email_intro: 'Μια τροποποίηση έγινε δεκτή για %{amendable_title}. Μπορείτε να την δείτε από αυτήν τη σελίδα:'
|
|
496
492
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή είστε συντάκτης της τροποποίησης %{amendable_title}.
|
|
497
|
-
email_subject: Αποδεκτή τροποποίηση για %{amendable_title} από τον συντάκτη %{emendation_author_nickname}
|
|
498
|
-
notification_title: Η <a href="%{emendation_path}">τροποποίηση</a> που δημιουργήθηκε από τον συντάκτη <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> έγινε δεκτή για την τροποποίηση <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
499
493
|
follower:
|
|
500
494
|
email_intro: 'Μια τροποποίηση έγινε δεκτή για %{amendable_title}. Μπορείτε να την δείτε από αυτήν τη σελίδα:'
|
|
501
495
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε την πρόταση %{amendable_title}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
|
|
502
|
-
email_subject: Αποδεκτή τροποποίηση για %{amendable_title} από τον συντάκτη %{emendation_author_nickname}
|
|
503
|
-
notification_title: Η <a href="%{emendation_path}">τροποποίηση</a> που δημιουργήθηκε από τον συντάκτη <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> έγινε δεκτή για την τροποποίηση <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
504
496
|
amendment_created:
|
|
505
497
|
affected_user:
|
|
506
498
|
email_intro: 'Μια νέα τροποποίηση δημιουργήθηκε για %{amendable_title}. Μπορείτε να την δείτε από αυτήν τη σελίδα:'
|
|
@@ -516,24 +508,16 @@ el:
|
|
|
516
508
|
affected_user:
|
|
517
509
|
email_intro: 'Μια τροποποίηση που απορρίφθηκε για %{amendable_title} δημοσιεύτηκε ως νέος τύπος τροποποίησης %{amendable_type}. Μπορείτε να την δείτε από αυτήν τη σελίδα:'
|
|
518
510
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή είστε συντάκτης της τροποποίησης %{amendable_title}.
|
|
519
|
-
email_subject: Μια τροποποίηση από τον συντάκτη %{emendation_author_nickname} δημοσιεύτηκε ως νέος τύπος τροποποίησης %{amendable_type}
|
|
520
|
-
notification_title: Μια <a href="%{emendation_path}">τροποποίηση που απορρίφθηκε</a> για <a href="%{amendable_path}">%{amendable_title}</a> δημοσιεύτηκε ως νέος τύπος τροποποίησης %{amendable_type} από τον συντάκτη <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
521
511
|
follower:
|
|
522
512
|
email_intro: 'Μια τροποποίηση που απορρίφθηκε για %{amendable_title} δημοσιεύτηκε ως νέος τύπος τροποποίησης %{amendable_type}. Μπορείτε να την δείτε από αυτήν τη σελίδα:'
|
|
523
513
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε την πρόταση %{amendable_title}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
|
|
524
|
-
email_subject: Μια τροποποίηση από τον συντάκτη %{emendation_author_nickname} δημοσιεύτηκε ως νέος τύπος τροποποίησης %{amendable_type}
|
|
525
|
-
notification_title: Μια <a href="%{emendation_path}">τροποποίηση που απορρίφθηκε</a> για <a href="%{amendable_path}">%{amendable_title}</a> δημοσιεύτηκε ως νέος τύπος τροποποίησης %{amendable_type} από τον συντάκτη <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
526
514
|
amendment_rejected:
|
|
527
515
|
affected_user:
|
|
528
516
|
email_intro: 'Μια τροποποίηση απορρίφθηκε για %{amendable_title}. Μπορείτε να την δείτε από αυτήν τη σελίδα:'
|
|
529
517
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή είστε συντάκτης της τροποποίησης %{amendable_title}.
|
|
530
|
-
email_subject: Η τροποποίηση απορρίφθηκε για %{amendable_title} από τον συντάκτη %{emendation_author_nickname}
|
|
531
|
-
notification_title: Η <a href="%{emendation_path}">τροποποίηση</a> που δημιουργήθηκε από τον συντάκτη <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> απορρίφθηκε για την τροποποίηση <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
532
518
|
follower:
|
|
533
519
|
email_intro: 'Μια τροποποίηση απορρίφθηκε για %{amendable_title}. Μπορείτε να την δείτε από αυτήν τη σελίδα:'
|
|
534
520
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε την πρόταση %{amendable_title}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
|
|
535
|
-
email_subject: Η τροποποίηση απορρίφθηκε για %{amendable_title} από τον συντάκτη %{emendation_author_nickname}
|
|
536
|
-
notification_title: Η <a href="%{emendation_path}">τροποποίηση</a> που δημιουργήθηκε από τον συντάκτη <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> απορρίφθηκε για την τροποποίηση <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
537
521
|
attachments:
|
|
538
522
|
attachment_created:
|
|
539
523
|
email_intro: 'Ένα νέο έγγραφο προστέθηκε στο στοιχείο %{resource_title}. Μπορείτε να το δείτε από αυτήν τη σελίδα:'
|
|
@@ -556,12 +540,6 @@ el:
|
|
|
556
540
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή κάνατε μια δραστηριότητα στον ιστότοπό μας.
|
|
557
541
|
level_up:
|
|
558
542
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή κάνατε μια δραστηριότητα στον ιστότοπό μας.
|
|
559
|
-
users:
|
|
560
|
-
profile_updated:
|
|
561
|
-
email_intro: Η <a href="%{resource_url}">σελίδα προφίλ</a> του υποστηρικτή %{name} (%{nickname}), τον οποίο ακολουθείτε, έχει ενημερωθεί.
|
|
562
|
-
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον/την %{nickname}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
|
|
563
|
-
email_subject: "Ο/η %{nickname} ενημέρωσε το προφίλ του/της"
|
|
564
|
-
notification_title: Η <a href="%{resource_path}">σελίδα προφίλ</a> του υποστηρικτή %{name} (%{nickname}), τον οποίο ακολουθείτε, έχει ενημερωθεί.
|
|
565
543
|
export_mailer:
|
|
566
544
|
download_your_data_export:
|
|
567
545
|
download: Λήψη
|
data/config/locales/en.yml
CHANGED
|
@@ -556,7 +556,7 @@ en:
|
|
|
556
556
|
global:
|
|
557
557
|
amendments_enabled: Amendments enabled
|
|
558
558
|
comments_enabled: Comments enabled
|
|
559
|
-
comments_max_length:
|
|
559
|
+
comments_max_length: Max characters per comment
|
|
560
560
|
define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
|
|
561
561
|
dummy_global_attribute1: Dummy Attribute 1
|
|
562
562
|
dummy_global_attribute2: Dummy Attribute 2
|
|
@@ -662,6 +662,13 @@ en:
|
|
|
662
662
|
all: All
|
|
663
663
|
filter_taxonomy_values:
|
|
664
664
|
all: All
|
|
665
|
+
delete_user_mailer:
|
|
666
|
+
delete:
|
|
667
|
+
body_1: Your account has been deactivated and is no longer accessible. Your personal data is scheduled for permanent deletion in accordance with our data retention policies.
|
|
668
|
+
body_2: For security reasons, some authorization-related data will be retained; if you create a new account and authorize again, it may be linked to your new account.
|
|
669
|
+
greetings_html: Kind regards,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
670
|
+
hello: Dear %{username},
|
|
671
|
+
subject: Your account has been deleted
|
|
665
672
|
devise:
|
|
666
673
|
omniauth_registrations:
|
|
667
674
|
create:
|
|
@@ -879,13 +886,13 @@ en:
|
|
|
879
886
|
affected_user:
|
|
880
887
|
email_intro: 'An amendment has been accepted for %{amendable_title}. You can see it from this page:'
|
|
881
888
|
email_outro: You have received this notification because you are an author of %{amendable_title}.
|
|
882
|
-
email_subject: Accepted amendment for %{amendable_title} from %{
|
|
883
|
-
notification_title: The <a href="%{emendation_path}">amendment</a> created by <a href="%{emendation_author_path}">%{
|
|
889
|
+
email_subject: Accepted amendment for %{amendable_title} from %{emendation_author_name}
|
|
890
|
+
notification_title: The <a href="%{emendation_path}">amendment</a> created by <a href="%{emendation_author_path}">%{emendation_author_name}</a> has been accepted for <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
884
891
|
follower:
|
|
885
892
|
email_intro: 'An amendment has been accepted for %{amendable_title}. You can see it from this page:'
|
|
886
893
|
email_outro: You have received this notification because you are following %{amendable_title}. You can stop receiving notifications following the previous link.
|
|
887
|
-
email_subject: Accepted amendment for %{amendable_title} from %{
|
|
888
|
-
notification_title: The <a href="%{emendation_path}">amendment</a> created by <a href="%{emendation_author_path}">%{
|
|
894
|
+
email_subject: Accepted amendment for %{amendable_title} from %{emendation_author_name}
|
|
895
|
+
notification_title: The <a href="%{emendation_path}">amendment</a> created by <a href="%{emendation_author_path}">%{emendation_author_name}</a> has been accepted for <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
889
896
|
amendment_created:
|
|
890
897
|
affected_user:
|
|
891
898
|
email_intro: 'A new amendment has been created for %{amendable_title}. You can see it from this page:'
|
|
@@ -901,29 +908,29 @@ en:
|
|
|
901
908
|
affected_user:
|
|
902
909
|
email_intro: 'A rejected amendment for %{amendable_title} has been published as a new %{amendable_type}. You can see it from this page:'
|
|
903
910
|
email_outro: You have received this notification because you are an author of %{amendable_title}.
|
|
904
|
-
email_subject: An amendment from %{
|
|
905
|
-
notification_title: A <a href="%{emendation_path}">rejected amendment</a> for <a href="%{amendable_path}">%{amendable_title}</a> has been published as a new %{amendable_type} by <a href="%{emendation_author_path}">%{
|
|
911
|
+
email_subject: An amendment from %{emendation_author_name} has been published as a new %{amendable_type}
|
|
912
|
+
notification_title: A <a href="%{emendation_path}">rejected amendment</a> for <a href="%{amendable_path}">%{amendable_title}</a> has been published as a new %{amendable_type} by <a href="%{emendation_author_path}">%{emendation_author_name}</a>.
|
|
906
913
|
follower:
|
|
907
914
|
email_intro: 'A rejected amendment for %{amendable_title} has been published as a new %{amendable_type}. You can see it from this page:'
|
|
908
915
|
email_outro: You have received this notification because you are following %{amendable_title}. You can stop receiving notifications following the previous link.
|
|
909
|
-
email_subject: An amendment from %{
|
|
910
|
-
notification_title: A <a href="%{emendation_path}">rejected amendment</a> for <a href="%{amendable_path}">%{amendable_title}</a> has been published as a new %{amendable_type} by <a href="%{emendation_author_path}">%{
|
|
916
|
+
email_subject: An amendment from %{emendation_author_name} has been published as a new %{amendable_type}
|
|
917
|
+
notification_title: A <a href="%{emendation_path}">rejected amendment</a> for <a href="%{amendable_path}">%{amendable_title}</a> has been published as a new %{amendable_type} by <a href="%{emendation_author_path}">%{emendation_author_name}</a>.
|
|
911
918
|
amendment_rejected:
|
|
912
919
|
affected_user:
|
|
913
920
|
email_intro: 'An amendment has been rejected for %{amendable_title}. You can see it from this page:'
|
|
914
921
|
email_outro: You have received this notification because you are an author of %{amendable_title}.
|
|
915
|
-
email_subject: Amendment rejected for %{amendable_title} from %{
|
|
916
|
-
notification_title: The <a href="%{emendation_path}">amendment</a> created by <a href="%{emendation_author_path}">%{
|
|
922
|
+
email_subject: Amendment rejected for %{amendable_title} from %{emendation_author_name}
|
|
923
|
+
notification_title: The <a href="%{emendation_path}">amendment</a> created by <a href="%{emendation_author_path}">%{emendation_author_name}</a> has been rejected for <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
917
924
|
follower:
|
|
918
925
|
email_intro: 'An amendment has been rejected for %{amendable_title}. You can see it from this page:'
|
|
919
926
|
email_outro: You have received this notification because you are following %{amendable_title}. You can stop receiving notifications following the previous link.
|
|
920
|
-
email_subject: Amendment rejected for %{amendable_title} from %{
|
|
921
|
-
notification_title: The <a href="%{emendation_path}">amendment</a> created by <a href="%{emendation_author_path}">%{
|
|
927
|
+
email_subject: Amendment rejected for %{amendable_title} from %{emendation_author_name}
|
|
928
|
+
notification_title: The <a href="%{emendation_path}">amendment</a> created by <a href="%{emendation_author_path}">%{emendation_author_name}</a> has been rejected for <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
922
929
|
emendation_promoted:
|
|
923
930
|
follower:
|
|
924
931
|
email_intro: 'An emendation has been published for %{amendable_title}. You can see it from this page:'
|
|
925
932
|
email_outro: You have received this notification because you are an author of %{amendable_title}.
|
|
926
|
-
email_subject: An emendation from %{
|
|
933
|
+
email_subject: An emendation from %{emendation_author_name} has been published as a new %{amendable_type}
|
|
927
934
|
attachments:
|
|
928
935
|
attachment_created:
|
|
929
936
|
email_intro: 'A new document has been added to %{resource_title}. You can see it from this page:'
|
|
@@ -956,6 +963,18 @@ en:
|
|
|
956
963
|
notification_body: We have corrected the way nicknames are used so that there are no duplicates, and that is why we have removed the case-sensitive rule. <br/> Your nickname was created after another one with the same name, so we have automatically renamed it. You can change it from <a href="%{link_to_account_settings}">your account settings</a>.
|
|
957
964
|
notification_event:
|
|
958
965
|
notification_title: An event occurred to <a href="%{resource_path}">%{resource_title}</a>.
|
|
966
|
+
participatory_space:
|
|
967
|
+
member_added:
|
|
968
|
+
published:
|
|
969
|
+
email_intro: You have been added as a member to a participatory space.
|
|
970
|
+
email_outro: You have received this notification because an administrator has added you to <a href="%{resource_url}">%{resource_title}</a>. If access to this space is restricted, you will be able to access it with your account.<br> Your profile will appear in the <a href="%{members_page}">list of members</a> of the space.
|
|
971
|
+
email_subject: You now have access to %{resource_title}.
|
|
972
|
+
notification_title: You now have access to <a href="%{resource_url}">%{resource_title}</a>.
|
|
973
|
+
unpublished:
|
|
974
|
+
email_intro: You have been added as a member to a participatory space.
|
|
975
|
+
email_outro: You have received this notification because an administrator has added you to <a href="%{resource_url}">%{resource_title}</a>. If access to this space is restricted, you will be able to access it with your account.
|
|
976
|
+
email_subject: You now have access to %{resource_title}.
|
|
977
|
+
notification_title: You now have access to <a href="%{resource_url}">%{resource_title}</a>.
|
|
959
978
|
reports:
|
|
960
979
|
parent_hidden:
|
|
961
980
|
email_intro: |-
|
|
@@ -975,24 +994,24 @@ en:
|
|
|
975
994
|
An administrator removed your %{resource_type} because it has been reported as %{report_reasons}.</br>
|
|
976
995
|
<i>%{resource_content}</i>
|
|
977
996
|
resource_liked:
|
|
978
|
-
email_intro: '%{liker_name}
|
|
979
|
-
email_outro: You have received this notification because you are following %{
|
|
980
|
-
email_subject: "%{
|
|
981
|
-
notification_title: The <a href="%{resource_path}">%{resource_title}</a> %{resource_type} has been liked by <a href="%{liker_path}">%{liker_name}
|
|
997
|
+
email_intro: '%{liker_name}, who you are following, has just liked "%{resource_title}" and we think it may be interesting to you. Check it out and contribute:'
|
|
998
|
+
email_outro: You have received this notification because you are following %{liker_name}. You can stop receiving notifications following the previous link.
|
|
999
|
+
email_subject: "%{liker_name} has performed a new like"
|
|
1000
|
+
notification_title: The <a href="%{resource_path}">%{resource_title}</a> %{resource_type} has been liked by <a href="%{liker_path}">%{liker_name}</a>.
|
|
982
1001
|
resources:
|
|
983
1002
|
soft_deleted:
|
|
984
1003
|
notification_title: An admin has deleted your "%{resource_type}" "%{resource_title}".
|
|
985
1004
|
users:
|
|
986
1005
|
profile_updated:
|
|
987
|
-
email_intro: The <a href="%{resource_url}">profile page</a> of %{name}
|
|
988
|
-
email_outro: You have received this notification because you are following %{
|
|
989
|
-
email_subject: "%{
|
|
990
|
-
notification_title: The <a href="%{resource_path}">profile page</a> of %{name}
|
|
1006
|
+
email_intro: The <a href="%{resource_url}">profile page</a> of %{name}, who you are following, has been updated.
|
|
1007
|
+
email_outro: You have received this notification because you are following %{name}. You can stop receiving notifications following the previous link.
|
|
1008
|
+
email_subject: "%{name} updated their profile"
|
|
1009
|
+
notification_title: The <a href="%{resource_path}">profile page</a> of %{name}, who you are following, has been updated.
|
|
991
1010
|
user_officialized:
|
|
992
|
-
email_intro: Participant %{name}
|
|
1011
|
+
email_intro: Participant %{name} has been officialized.
|
|
993
1012
|
email_outro: You have received this notification because you are an administrator of the organization.
|
|
994
1013
|
email_subject: "%{name} has been officialized"
|
|
995
|
-
notification_title: Participant %{name}
|
|
1014
|
+
notification_title: Participant %{name} has been officialized.
|
|
996
1015
|
export_mailer:
|
|
997
1016
|
download_your_data_export:
|
|
998
1017
|
click_button_html: Click the next link to download your data.<br/>The file will be available for download until %{date}.
|
|
@@ -1222,7 +1241,6 @@ en:
|
|
|
1222
1241
|
create:
|
|
1223
1242
|
error: Conversation not started. Try again later.
|
|
1224
1243
|
error_modal:
|
|
1225
|
-
close: Close modal
|
|
1226
1244
|
correct_errors: Please correct the errors and try again.
|
|
1227
1245
|
intro: 'There were the following errors with your message:'
|
|
1228
1246
|
ok: OK
|
|
@@ -1534,13 +1552,6 @@ en:
|
|
|
1534
1552
|
log_in: log in
|
|
1535
1553
|
never_logged_in: never logged in
|
|
1536
1554
|
subject: Inactive account warning
|
|
1537
|
-
removal_notification:
|
|
1538
|
-
body: Your %{organization_name} account has been deleted due to inactivity.
|
|
1539
|
-
greetings_html: |
|
|
1540
|
-
Kind regards,<br>
|
|
1541
|
-
%{organization_name}
|
|
1542
|
-
hello: Dear %{username},
|
|
1543
|
-
subject: Inactive account deleted
|
|
1544
1555
|
participatory_space:
|
|
1545
1556
|
pages:
|
|
1546
1557
|
user_profile:
|
|
@@ -1551,8 +1562,8 @@ en:
|
|
|
1551
1562
|
members: Members
|
|
1552
1563
|
participatory_spaces:
|
|
1553
1564
|
show:
|
|
1554
|
-
restricted_space: This is a restricted space. Only members can view it and participate.
|
|
1555
|
-
transparent_space: This is a transparent space. Anyone can view the content, but only members can participate.
|
|
1565
|
+
restricted_space: This is a restricted space. Only members and administrators can view it and participate.
|
|
1566
|
+
transparent_space: This is a transparent space. Anyone can view the content, but only members and administrators can participate.
|
|
1556
1567
|
passwords:
|
|
1557
1568
|
update:
|
|
1558
1569
|
error: There was a problem updating the password.
|