decidim-core 0.30.0.rc3 → 0.30.1
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/address/show.erb +3 -3
- data/app/cells/decidim/author/show.erb +1 -1
- data/app/cells/decidim/content_blocks/participatory_space_extra_data/extra_data.erb +2 -2
- data/app/cells/decidim/participatory_space_dropdown_metadata/metadata.erb +4 -4
- data/app/cells/decidim/participatory_space_dropdown_metadata/show.erb +5 -3
- data/app/commands/decidim/create_report.rb +6 -7
- data/app/commands/decidim/invite_user.rb +1 -1
- data/app/commands/decidim/search.rb +14 -0
- data/app/controllers/concerns/decidim/participatory_space_context.rb +4 -1
- data/app/controllers/decidim/reports_controller.rb +7 -2
- data/app/forms/decidim/account_form.rb +4 -1
- data/app/forms/decidim/ephemeral_user_form.rb +1 -1
- data/app/forms/decidim/omniauth_registration_form.rb +1 -1
- data/app/forms/decidim/registration_form.rb +1 -1
- data/app/helpers/decidim/menu_helper.rb +2 -2
- data/app/helpers/decidim/paginate_helper.rb +1 -1
- data/app/helpers/decidim/tooltip_helper.rb +4 -1
- data/app/mailers/decidim/notifications_digest_mailer.rb +7 -1
- data/app/mailers/decidim/reported_mailer.rb +18 -2
- data/app/models/decidim/action_log.rb +1 -9
- data/app/packs/src/decidim/datepicker/datepicker_functions.js +3 -3
- data/app/packs/src/decidim/index.js +4 -2
- data/app/packs/src/decidim/input_character_counter.js +1 -1
- data/app/packs/stylesheets/decidim/_cards.scss +1 -1
- data/app/packs/stylesheets/decidim/_content_blocks.scss +4 -0
- data/app/packs/stylesheets/decidim/_header.scss +60 -37
- data/app/packs/stylesheets/decidim/resource_history.scss +14 -4
- data/app/permissions/decidim/default_permissions.rb +2 -0
- data/app/presenters/decidim/log/user_presenter.rb +1 -0
- data/app/presenters/decidim/notification_to_mailer_presenter.rb +7 -3
- data/app/presenters/decidim/user_presenter.rb +1 -1
- data/app/queries/decidim/last_activity.rb +25 -0
- data/app/services/decidim/base_diff_renderer.rb +2 -0
- data/app/views/decidim/messaging/conversations/_reply_form.html.erb +1 -2
- data/app/views/decidim/messaging/conversations/_start.html.erb +1 -1
- data/app/views/decidim/reported_mailer/hidden_automatically.html.erb +25 -0
- data/app/views/decidim/reported_mailer/hidden_manually.html.erb +25 -0
- data/app/views/decidim/reported_mailer/report.html.erb +1 -1
- data/app/views/decidim/searches/_count.html.erb +1 -1
- data/app/views/decidim/searches/_filters.html.erb +40 -38
- data/app/views/decidim/shared/_results_per_page.html.erb +1 -1
- data/app/views/kaminari/decidim/_page.html.erb +1 -1
- data/app/views/kaminari/decidim/_paginator.html.erb +1 -1
- data/app/views/layouts/decidim/_logo.html.erb +2 -2
- data/app/views/layouts/decidim/footer/_main_legal.html.erb +1 -1
- data/app/views/layouts/decidim/header/_menu_breadcrumb_main_dropdown_desktop.html.erb +5 -11
- data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile_tablet.html.erb +5 -5
- data/config/locales/ar.yml +3 -10
- data/config/locales/bg.yml +2 -9
- data/config/locales/bs-BA.yml +2 -0
- data/config/locales/ca-IT.yml +2411 -0
- data/config/locales/ca.yml +36 -3
- data/config/locales/cs.yml +33 -14
- data/config/locales/de.yml +39 -15
- data/config/locales/el.yml +2 -9
- data/config/locales/en.yml +34 -1
- data/config/locales/es-MX.yml +38 -5
- data/config/locales/es-PY.yml +38 -5
- data/config/locales/es.yml +35 -2
- data/config/locales/eu.yml +68 -35
- data/config/locales/fi-plain.yml +4 -18
- data/config/locales/fi.yml +4 -18
- data/config/locales/fr-CA.yml +30 -12
- data/config/locales/fr.yml +29 -11
- data/config/locales/ga-IE.yml +2 -0
- data/config/locales/gl.yml +3 -6
- data/config/locales/hu.yml +2 -9
- data/config/locales/id-ID.yml +2 -7
- data/config/locales/is-IS.yml +0 -5
- data/config/locales/it.yml +12 -11
- data/config/locales/ja.yml +87 -23
- data/config/locales/lb.yml +5 -8
- data/config/locales/lt.yml +0 -7
- data/config/locales/lv.yml +2 -7
- data/config/locales/nl.yml +2 -5
- data/config/locales/no.yml +2 -5
- data/config/locales/pl.yml +2 -9
- data/config/locales/pt-BR.yml +3 -10
- data/config/locales/pt.yml +2 -5
- data/config/locales/ro-RO.yml +165 -7
- data/config/locales/ru.yml +0 -5
- data/config/locales/sk.yml +2 -7
- data/config/locales/sr-CS.yml +2 -0
- data/config/locales/sv.yml +54 -12
- data/config/locales/tr-TR.yml +3 -8
- data/config/locales/uk.yml +0 -5
- data/config/locales/zh-CN.yml +2 -7
- data/config/locales/zh-TW.yml +2 -7
- data/db/migrate/20171212103803_create_unique_nicknames.rb +1 -1
- data/db/migrate/20180221101934_fix_nickname_index.rb +1 -1
- data/db/migrate/20180706104107_add_nickname_to_managed_users.rb +1 -1
- data/db/migrate/20181001124950_move_users_groups_to_users_table.rb +1 -1
- data/db/migrate/20190412131728_fix_user_names.rb +1 -1
- data/lib/decidim/asset_router/storage.rb +7 -2
- data/lib/decidim/attributes/time_with_zone.rb +5 -1
- data/lib/decidim/content_parsers/blob_parser.rb +10 -8
- data/lib/decidim/core/test/factories.rb +12 -0
- data/lib/decidim/core/test/shared_examples/map_examples.rb +2 -2
- data/lib/decidim/core/test/shared_examples/reports_examples.rb +8 -15
- data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +26 -0
- data/lib/decidim/core/test/shared_examples/versions_controller_examples.rb +26 -0
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/moderation_tools.rb +14 -8
- data/lib/decidim/nicknamizable.rb +6 -9
- data/lib/decidim/participatory_space_user.rb +1 -3
- data/lib/decidim/private_download_helper.rb +3 -3
- data/lib/decidim/reportable.rb +6 -2
- data/lib/decidim/translatable_attributes.rb +5 -1
- data/lib/tasks/upgrade/clean.rake +9 -1
- data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +4 -4
- data/lib/tasks/upgrade/migrations.rake +2 -0
- metadata +9 -8
- data/app/views/decidim/reported_mailer/hide.html.erb +0 -9
- data/lib/tasks/upgrade/clean_hidden_resources.rake +0 -33
data/config/locales/ca.yml
CHANGED
@@ -6,6 +6,7 @@ ca:
|
|
6
6
|
delete_reason: Raó per eliminar el teu compte
|
7
7
|
attachment:
|
8
8
|
documents: Documents
|
9
|
+
image: Imatge
|
9
10
|
photos: Fotos
|
10
11
|
common:
|
11
12
|
created_at: Creat el
|
@@ -55,6 +56,12 @@ ca:
|
|
55
56
|
tos_agreement: Termes i condicions d'ús
|
56
57
|
user_group:
|
57
58
|
avatar: Avatar
|
59
|
+
errors:
|
60
|
+
models:
|
61
|
+
user:
|
62
|
+
attributes:
|
63
|
+
nickname:
|
64
|
+
format: L'àlies o sobrenom s'ha d'escriure en minúscules i no ha de tenir cap espai
|
58
65
|
models:
|
59
66
|
decidim/attachment_created_event: Arxiu adjunt
|
60
67
|
decidim/component_published_event: Component actiu
|
@@ -117,7 +124,7 @@ ca:
|
|
117
124
|
decidim_with_month_name_short: "%d %b"
|
118
125
|
help:
|
119
126
|
date_format: 'Format: dd/mm/aaaa'
|
120
|
-
order: d-m-
|
127
|
+
order: d-m-y
|
121
128
|
separator: "/"
|
122
129
|
datetime:
|
123
130
|
distance_in_words:
|
@@ -172,6 +179,7 @@ ca:
|
|
172
179
|
front_page_link: Anar a la pàgina principal
|
173
180
|
logo: "Logo oficial de %{organization}"
|
174
181
|
opens_in_new_tab: Obrir en una pestanya nova
|
182
|
+
secondary_menu: Menú secundari
|
175
183
|
skip_button: Vés al contingut principal
|
176
184
|
account:
|
177
185
|
blocked: Aquest compte ha estat bloquejat degut a una violació dels termes i condicions d'ús
|
@@ -999,6 +1007,16 @@ ca:
|
|
999
1007
|
notification_event:
|
1000
1008
|
notification_title: S'ha produït un esdeveniment a <a href="%{resource_path}">%{resource_title}</a>.
|
1001
1009
|
reports:
|
1010
|
+
parent_hidden:
|
1011
|
+
email_intro: |-
|
1012
|
+
El teu/la teva %{resource_type} ja no està visible.<br>
|
1013
|
+
Això passa perquè la proposta, la trobada, el debat o el comentari al qual vas respondre ha estat moderat. Si torna a estar disponible, el teu comentari es restaurarà automàticament.
|
1014
|
+
email_outro: Has rebut aquesta notificació perquè és autora del/ de la %{resource_type}.
|
1015
|
+
email_subject: El teu/la teva %{resource_type} ja no és visible
|
1016
|
+
notification_title: |-
|
1017
|
+
El teu/la teva %{resource_type} ja no està visible.<br>
|
1018
|
+
Això passa perquè la proposta, la trobada, el debat o el comentari al qual vas respondre ha estat moderat. Si torna a estar disponible, el teu comentari es restaurarà automàticament.
|
1019
|
+
<i>%{resource_content}</i>
|
1002
1020
|
resource_hidden:
|
1003
1021
|
email_intro: Una administradora ha eliminat el teu %{resource_type} degut a que has estat reportada com a %{report_reasons}.
|
1004
1022
|
email_outro: Has rebut aquesta notificació perquè s'ha eliminiat un contingut que havies creat.
|
@@ -1377,7 +1395,7 @@ ca:
|
|
1377
1395
|
followers:
|
1378
1396
|
description: Nombre de participants que segueixen aquest espai de participació
|
1379
1397
|
object: seguidores
|
1380
|
-
title:
|
1398
|
+
title: Seguidors
|
1381
1399
|
participants:
|
1382
1400
|
description: Nombre de participants actives a l'organització
|
1383
1401
|
object: participants
|
@@ -1710,11 +1728,24 @@ ca:
|
|
1710
1728
|
confirmation_instructions_sent: Instruccions de confirmació enviades per correu electrònic.
|
1711
1729
|
fill_in_email_to_confirm_it: Si us plau, omple el correu electrònic del teu grup per confirmar-lo.
|
1712
1730
|
reported_mailer:
|
1713
|
-
|
1731
|
+
hidden_automatically:
|
1732
|
+
content: Contingut reportat
|
1733
|
+
details: Detalls
|
1714
1734
|
hello: Hola %{name},
|
1715
1735
|
manage_moderations: Gestiona moderacions
|
1736
|
+
participatory_space: Espai de participació
|
1737
|
+
reason: Motiu
|
1716
1738
|
report_html: <p>El següent <a href="%{url}">contingut</a> s'ha ocultat automàticament.</p>
|
1717
1739
|
subject: Un contingut s'ha ocultat automàticament
|
1740
|
+
hidden_manually:
|
1741
|
+
content: Contingut reportat
|
1742
|
+
details: Detalls
|
1743
|
+
hello: Hola %{name},
|
1744
|
+
manage_moderations: Gestiona moderacions
|
1745
|
+
participatory_space: Espai de participació
|
1746
|
+
reason: Motiu
|
1747
|
+
report_html: <p>El següent <a href="%{url}">contingut</a> s'ha ocultat automàticament per %{moderator}.</p>
|
1748
|
+
subject: Un recurs ha estat amagat per %{moderator}
|
1718
1749
|
report:
|
1719
1750
|
authors: Autores
|
1720
1751
|
content: Contingut reportat
|
@@ -1732,6 +1763,8 @@ ca:
|
|
1732
1763
|
create:
|
1733
1764
|
error: Hi ha hagut un problema en crear l'informe d'error. Si us plau, torna-ho a provar.
|
1734
1765
|
success: El contingut s'ha denunciat amb èxit i serà revisat per una administradora.
|
1766
|
+
hide:
|
1767
|
+
success: Aquest recurs s'ha amagat.
|
1735
1768
|
parent_hidden:
|
1736
1769
|
report_details: El recurs principal estava amagat
|
1737
1770
|
resource:
|
data/config/locales/cs.yml
CHANGED
@@ -6,6 +6,7 @@ cs:
|
|
6
6
|
delete_reason: Důvod odstranění vašeho účtu
|
7
7
|
attachment:
|
8
8
|
documents: Dokumenty
|
9
|
+
image: Obrázek
|
9
10
|
photos: Fotky
|
10
11
|
common:
|
11
12
|
created_at: Vytvořeno v
|
@@ -55,6 +56,12 @@ cs:
|
|
55
56
|
tos_agreement: Podmínky smlouvy o poskytování služeb
|
56
57
|
user_group:
|
57
58
|
avatar: Avatar
|
59
|
+
errors:
|
60
|
+
models:
|
61
|
+
user:
|
62
|
+
attributes:
|
63
|
+
nickname:
|
64
|
+
format: Přezdívka musí být malými písmeny a nesmí obsahovat mezery
|
58
65
|
models:
|
59
66
|
decidim/attachment_created_event: Příloha
|
60
67
|
decidim/component_published_event: Aktivní komponenty
|
@@ -127,7 +134,7 @@ cs:
|
|
127
134
|
decidim_with_month_name_short: "%d %b"
|
128
135
|
help:
|
129
136
|
date_format: 'Formát: dd/mm/rrrr'
|
130
|
-
order: d-m-
|
137
|
+
order: d-m-y
|
131
138
|
separator: "/"
|
132
139
|
datetime:
|
133
140
|
distance_in_words:
|
@@ -200,6 +207,7 @@ cs:
|
|
200
207
|
front_page_link: Přejít na titulní stránku
|
201
208
|
logo: "Oficiální logo %{organization}"
|
202
209
|
opens_in_new_tab: Otevře se v nové kartě
|
210
|
+
secondary_menu: Sekundární menu
|
203
211
|
skip_button: Přeskočit na hlavní obsah
|
204
212
|
account:
|
205
213
|
blocked: Tento účet byl zablokován kvůli porušení smluvních podmínek
|
@@ -880,20 +888,14 @@ cs:
|
|
880
888
|
drag_and_drop_help: Přidejte obrázky přetažením nebo vložením.
|
881
889
|
endorsement_buttons_cell:
|
882
890
|
already_endorsed: Vrátit označení Líbí se
|
883
|
-
endorse:
|
891
|
+
endorse: Like
|
884
892
|
endorsements:
|
885
893
|
identities:
|
886
894
|
done: Hotovo
|
887
895
|
select_identity: Vybrat identitu
|
888
896
|
endorsers_list:
|
889
|
-
|
890
|
-
|
891
|
-
few: Líbí se %{visible} a %{others}
|
892
|
-
many: Líbí se %{visible} a %{others}
|
893
|
-
other: Líbí se %{visible} a %{others}
|
894
|
-
others: "%{count} dalších"
|
895
|
-
title: Líbí se
|
896
|
-
you: vy
|
897
|
+
title: Toto se líbí
|
898
|
+
you: vám
|
897
899
|
ephemeral_user: Návštěvník
|
898
900
|
errors:
|
899
901
|
files:
|
@@ -1046,6 +1048,9 @@ cs:
|
|
1046
1048
|
notification_event:
|
1047
1049
|
notification_title: Objevila se událost na <a href="%{resource_path}">%{resource_title}</a>.
|
1048
1050
|
reports:
|
1051
|
+
parent_hidden:
|
1052
|
+
email_outro: Obdrželi jste toto oznámení, protože jste autorem ovlivněného %{resource_type}.
|
1053
|
+
email_subject: Váš %{resource_type} již není viditelný
|
1049
1054
|
resource_hidden:
|
1050
1055
|
email_intro: Administrátor odstranil váš %{resource_type} protože byl nahlášen jako %{report_reasons}.
|
1051
1056
|
email_outro: Obdrželi jste toto oznámení, protože jste autorem odstraněného obsahu.
|
@@ -1440,7 +1445,7 @@ cs:
|
|
1440
1445
|
users:
|
1441
1446
|
description: Počet uživatelů v organizaci
|
1442
1447
|
object: uživatelů
|
1443
|
-
title:
|
1448
|
+
title: Účastníci
|
1444
1449
|
newsletter_mailer:
|
1445
1450
|
newsletter:
|
1446
1451
|
no_reply_notice: Tento e-mail byl odeslán z e-mailové adresy, která nemůže přijmout příchozí email. Prosím, neodpovídejte na tuto zprávu.
|
@@ -1536,6 +1541,7 @@ cs:
|
|
1536
1541
|
push_notifications_reminder: Chcete-li dostávat oznámení z platformy, musíte je nejdříve povolit v nastavení prohlížeče.
|
1537
1542
|
receive_notifications_about: Chci dostávat oznámení
|
1538
1543
|
update_notifications_settings: Uložit změny
|
1544
|
+
valuators: Hodnotitelé
|
1539
1545
|
update:
|
1540
1546
|
error: Při aktualizaci nastavení oznámení došlo k chybě.
|
1541
1547
|
success: Nastavení oznámení bylo úspěšně aktualizováno.
|
@@ -1760,11 +1766,22 @@ cs:
|
|
1760
1766
|
confirmation_instructions_sent: Pokyny pro potvrzení e-mailu byly odeslány.
|
1761
1767
|
fill_in_email_to_confirm_it: Pro potvrzení vyplňte e-mailovou adresu skupiny.
|
1762
1768
|
reported_mailer:
|
1763
|
-
|
1764
|
-
|
1765
|
-
|
1769
|
+
hidden_automatically:
|
1770
|
+
details: Podrobnosti
|
1771
|
+
hello: Dobrý den %{name},
|
1772
|
+
participatory_space: Participativní prostor
|
1773
|
+
reason: Důvod
|
1766
1774
|
report_html: <p>Následující <a href="%{url}">obsah</a> byl automaticky skryt.</p>
|
1767
1775
|
subject: Zdroj byl automaticky skryt
|
1776
|
+
hidden_manually:
|
1777
|
+
content: Nahlášený obsah
|
1778
|
+
details: Podrobnosti
|
1779
|
+
hello: Dobrý den %{name},
|
1780
|
+
manage_moderations: Spravovat moderace
|
1781
|
+
participatory_space: Participativní prostor
|
1782
|
+
reason: Důvod
|
1783
|
+
report_html: <p>Následující <a href="%{url}">obsah</a> byl skrytý od %{moderator}.</p>
|
1784
|
+
subject: Zdroj byl skryt %{moderator}
|
1768
1785
|
report:
|
1769
1786
|
authors: Autoři
|
1770
1787
|
content: Nahlášený obsah
|
@@ -1782,6 +1799,8 @@ cs:
|
|
1782
1799
|
create:
|
1783
1800
|
error: Při vytváření zprávy došlo k chybě. Zkuste to prosím znovu.
|
1784
1801
|
success: Zpráva byla úspěšně vytvořena a bude kontrolována administrátorem.
|
1802
|
+
hide:
|
1803
|
+
success: Tento zdroj byl skryt.
|
1785
1804
|
parent_hidden:
|
1786
1805
|
report_details: Nadřazený dokument byl skryt
|
1787
1806
|
resource:
|
data/config/locales/de.yml
CHANGED
@@ -6,6 +6,7 @@ de:
|
|
6
6
|
delete_reason: Grund, Ihr Konto zu löschen
|
7
7
|
attachment:
|
8
8
|
documents: Dokumente
|
9
|
+
image: Bild
|
9
10
|
photos: Fotos
|
10
11
|
common:
|
11
12
|
created_at: Erstellt am
|
@@ -55,6 +56,12 @@ de:
|
|
55
56
|
tos_agreement: Nutzungsvereinbarung
|
56
57
|
user_group:
|
57
58
|
avatar: Profilbild
|
59
|
+
errors:
|
60
|
+
models:
|
61
|
+
user:
|
62
|
+
attributes:
|
63
|
+
nickname:
|
64
|
+
format: Der Spitzname muss Kleinbuchstaben sein und keine Leerzeichen enthalten
|
58
65
|
models:
|
59
66
|
decidim/attachment_created_event: Anhang
|
60
67
|
decidim/component_published_event: Aktive Komponente
|
@@ -172,6 +179,7 @@ de:
|
|
172
179
|
front_page_link: Zur Startseite gehen
|
173
180
|
logo: "Offizielles Logo von %{organization}"
|
174
181
|
opens_in_new_tab: In neuem Tab öffnen
|
182
|
+
secondary_menu: Sekundäres Menü
|
175
183
|
skip_button: Zu Hauptinhalten überspringen
|
176
184
|
account:
|
177
185
|
blocked: Dieses Konto wurde wegen Verletzung der Nutzungsbedingungen gesperrt
|
@@ -532,7 +540,7 @@ de:
|
|
532
540
|
comment: Kommentar
|
533
541
|
debate: Debatte
|
534
542
|
initiative: Initiative
|
535
|
-
meeting:
|
543
|
+
meeting: Veranstaltung
|
536
544
|
order: Budget-Abstimmung
|
537
545
|
post: Beitrag
|
538
546
|
proposal: Vorschlag
|
@@ -615,7 +623,7 @@ de:
|
|
615
623
|
metrics:
|
616
624
|
name: Organisationsmetriken
|
617
625
|
participatory_space_metrics:
|
618
|
-
name:
|
626
|
+
name: Teilnahme an Zahlen
|
619
627
|
participatory_space_stats:
|
620
628
|
name: Statistiken
|
621
629
|
social_networks_metadata:
|
@@ -840,20 +848,10 @@ de:
|
|
840
848
|
error: Fehler beim Hochladen des Bildes.
|
841
849
|
success: Bild erfolgreich hochgeladen.
|
842
850
|
drag_and_drop_help: Sie können Bilder per Drag & Drop hinzufügen oder per Copy & Paste.
|
843
|
-
endorsement_buttons_cell:
|
844
|
-
already_endorsed: Zustimmung zurückziehen
|
845
|
-
endorse: Gefällt mir
|
846
851
|
endorsements:
|
847
852
|
identities:
|
848
853
|
done: Erledigt
|
849
854
|
select_identity: Identität auswählen
|
850
|
-
endorsers_list:
|
851
|
-
endorsed_by:
|
852
|
-
one: '%{visible} stimmt zu'
|
853
|
-
other: '%{visible} und %{others} stimmen zu'
|
854
|
-
others: "%{count} weitere"
|
855
|
-
title: Zustimmende
|
856
|
-
you: du
|
857
855
|
ephemeral_user: Gast
|
858
856
|
errors:
|
859
857
|
files:
|
@@ -1006,6 +1004,16 @@ de:
|
|
1006
1004
|
notification_event:
|
1007
1005
|
notification_title: Ein Ereignis trat auf <a href="%{resource_path}">%{resource_title}</a>.
|
1008
1006
|
reports:
|
1007
|
+
parent_hidden:
|
1008
|
+
email_intro: |-
|
1009
|
+
Dein %{resource_type} ist nicht mehr sichtbar.<br>
|
1010
|
+
Dies geschah, weil der Vorschlag, die Veranstaltung, die Debatte oder die Kommentare, auf die Sie geantwortet haben, verborgen wurden. Wenn sie wieder eingeblendet werden, wird ihr Kommentar automatisch wiederhergestellt.
|
1011
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des betroffenen %{resource_type}s sind.
|
1012
|
+
email_subject: Ihr %{resource_type} ist nicht mehr sichtbar
|
1013
|
+
notification_title: |-
|
1014
|
+
Dein %{resource_type} ist nicht mehr sichtbar.<br>
|
1015
|
+
Dies geschah, weil der Vorschlag, die Veranstaltung, die Debatte oder die Kommentare, auf die Sie geantwortet haben, verborgen wurden. Wenn sie wieder eingeblendet werden, wird ihr Kommentar automatisch wiederhergestellt.
|
1016
|
+
<i>%{resource_content}</i>
|
1009
1017
|
resource_hidden:
|
1010
1018
|
email_intro: Ein Administrator hat Ihr/e/n %{resource_type} entfernt, weil diese/r/s als %{report_reasons} gemeldet wurde.
|
1011
1019
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie Autor des entfernten Inhalts sind.
|
@@ -1384,7 +1392,7 @@ de:
|
|
1384
1392
|
followers:
|
1385
1393
|
description: Anzahl der Benutzer, die dieser Teilnahme folgen
|
1386
1394
|
object: Anhänger
|
1387
|
-
title:
|
1395
|
+
title: Follower
|
1388
1396
|
participants:
|
1389
1397
|
description: Anzahl der aktiven Benutzer in der Organisation
|
1390
1398
|
object: Teilnehmer
|
@@ -1396,7 +1404,7 @@ de:
|
|
1396
1404
|
users:
|
1397
1405
|
description: Anzahl der Benutzer in der Organisation
|
1398
1406
|
object: Benutzer
|
1399
|
-
title:
|
1407
|
+
title: Teilnehmer
|
1400
1408
|
newsletter_mailer:
|
1401
1409
|
newsletter:
|
1402
1410
|
no_reply_notice: Diese E-Mail wurde von einer Benachrichtigungs-E-Mail-Adresse versendet, die keine eingehende E-Mails akzeptieren kann. Bitte antworten Sie nicht auf diese Nachricht.
|
@@ -1492,6 +1500,7 @@ de:
|
|
1492
1500
|
push_notifications_reminder: Um Benachrichtigungen von der Plattform zu erhalten, müssen Sie diese zuerst in den Browser-Einstellungen zulassen.
|
1493
1501
|
receive_notifications_about: Ich möchte Benachrichtigungen erhalten über
|
1494
1502
|
update_notifications_settings: Änderungen speichern
|
1503
|
+
valuators: Bewertende Personen
|
1495
1504
|
update:
|
1496
1505
|
error: Beim Aktualisieren der Benachrichtigungseinstellungen ist ein Fehler aufgetreten.
|
1497
1506
|
success: Ihre Benachrichtigungseinstellungen wurden erfolgreich aktualisiert.
|
@@ -1716,11 +1725,24 @@ de:
|
|
1716
1725
|
confirmation_instructions_sent: E-Mail-Bestätigungsanweisungen gesendet.
|
1717
1726
|
fill_in_email_to_confirm_it: Bitte geben Sie die E-Mail-Adresse Ihrer Gruppe zur Bestätigung ein.
|
1718
1727
|
reported_mailer:
|
1719
|
-
|
1728
|
+
hidden_automatically:
|
1729
|
+
content: Gemeldeter Inhalt
|
1730
|
+
details: Details
|
1720
1731
|
hello: Hallo %{name},
|
1721
1732
|
manage_moderations: Moderationen verwalten
|
1733
|
+
participatory_space: Beteiligungsbereich
|
1734
|
+
reason: Begründung
|
1722
1735
|
report_html: <p>Der folgende <a href="%{url}">Inhalt</a> wurde automatisch ausgeblendet.</p>
|
1723
1736
|
subject: Eine Ressource wurde automatisch ausgeblendet
|
1737
|
+
hidden_manually:
|
1738
|
+
content: Gemeldeter Inhalt
|
1739
|
+
details: Details
|
1740
|
+
hello: Hallo %{name},
|
1741
|
+
manage_moderations: Moderationen verwalten
|
1742
|
+
participatory_space: Beteiligungsbereich
|
1743
|
+
reason: Begründung
|
1744
|
+
report_html: <p>Der folgende <a href="%{url}">Inhalt</a> wurde durch %{moderator} ausgeblendet.</p>
|
1745
|
+
subject: Eine Ressource wurde durch %{moderator} ausgeblendet
|
1724
1746
|
report:
|
1725
1747
|
authors: Autoren
|
1726
1748
|
content: Gemeldeter Inhalt
|
@@ -1738,6 +1760,8 @@ de:
|
|
1738
1760
|
create:
|
1739
1761
|
error: Bei der Erstellung des Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.
|
1740
1762
|
success: Der Bericht wurde erfolgreich erstellt und wird von einem Administrator überprüft.
|
1763
|
+
hide:
|
1764
|
+
success: Diese Ressource wurde ausgeblendet.
|
1741
1765
|
parent_hidden:
|
1742
1766
|
report_details: Die übergeordnete Ressource wurde ausgeblendet
|
1743
1767
|
resource:
|
data/config/locales/el.yml
CHANGED
@@ -432,6 +432,8 @@ el:
|
|
432
432
|
view_all: Προβολή όλων
|
433
433
|
metrics:
|
434
434
|
name: Μετρικά οργανισμού
|
435
|
+
participatory_space_metrics:
|
436
|
+
name: Μετρικά
|
435
437
|
static_page:
|
436
438
|
section:
|
437
439
|
name: Ενότητα
|
@@ -501,8 +503,6 @@ el:
|
|
501
503
|
error: Σφάλμα φόρτωσης εικόνας.
|
502
504
|
success: Η εικόνα ανέβηκε επιτυχώς.
|
503
505
|
drag_and_drop_help: Προσθήκη εικόνων σύροντας τις & ρίχνοντας ή επικολλώντας αυτές.
|
504
|
-
endorsement_buttons_cell:
|
505
|
-
endorse: Μου αρέσει
|
506
506
|
endorsements:
|
507
507
|
identities:
|
508
508
|
done: Τέλος
|
@@ -910,11 +910,9 @@ el:
|
|
910
910
|
participants:
|
911
911
|
description: Αριθμός ενεργών συμμετεχόντων στον οργανισμό
|
912
912
|
object: συμμετέχοντες
|
913
|
-
title: Συμμετέχοντες
|
914
913
|
users:
|
915
914
|
description: Αριθμός συμμετεχόντων στον οργανισμό
|
916
915
|
object: συμμετέχοντες
|
917
|
-
title: Συμμετέχοντες
|
918
916
|
newsletter_mailer:
|
919
917
|
newsletter:
|
920
918
|
unsubscribe: Για να εξαιρεθείτε από τη λήψη αυτού του τύπου email, πατήστε <a href="%{link}" target="_blank" class="unsubscribe">Κατάργηση εγγραφής</a>.
|
@@ -1064,11 +1062,6 @@ el:
|
|
1064
1062
|
confirmation_instructions_sent: Στάλθηκαν οι οδηγίες επιβεβαίωσης email.
|
1065
1063
|
fill_in_email_to_confirm_it: Συμπληρώστε τη διεύθυνση email της ομάδας σας για να την επιβεβαιώσετε.
|
1066
1064
|
reported_mailer:
|
1067
|
-
hide:
|
1068
|
-
hello: Γεια σας %{name},
|
1069
|
-
manage_moderations: Διαχείριση εποπτεύσεων
|
1070
|
-
report_html: <p>Το παρακάτω <a href="%{url}">περιεχόμενο</a> αποκρύφτηκε αυτόματα.</p>
|
1071
|
-
subject: Ένας πόρος αποκρύφτηκε αυτόματα
|
1072
1065
|
report:
|
1073
1066
|
authors: Συγγραφείς
|
1074
1067
|
content: Αναφερόμενο περιεχόμενο
|
data/config/locales/en.yml
CHANGED
@@ -6,6 +6,7 @@ en:
|
|
6
6
|
delete_reason: Reason to delete your account
|
7
7
|
attachment:
|
8
8
|
documents: Documents
|
9
|
+
image: Image
|
9
10
|
photos: Photos
|
10
11
|
common:
|
11
12
|
created_at: Created at
|
@@ -55,6 +56,12 @@ en:
|
|
55
56
|
tos_agreement: Terms of service agreement
|
56
57
|
user_group:
|
57
58
|
avatar: Avatar
|
59
|
+
errors:
|
60
|
+
models:
|
61
|
+
user:
|
62
|
+
attributes:
|
63
|
+
nickname:
|
64
|
+
format: The nickname must be lowercase and contain no spaces
|
58
65
|
models:
|
59
66
|
decidim/attachment_created_event: Attachment
|
60
67
|
decidim/component_published_event: Active component
|
@@ -172,6 +179,7 @@ en:
|
|
172
179
|
front_page_link: Go to front page
|
173
180
|
logo: "%{organization}'s official logo"
|
174
181
|
opens_in_new_tab: Opens in new tab
|
182
|
+
secondary_menu: Secondary menu
|
175
183
|
skip_button: Skip to main content
|
176
184
|
account:
|
177
185
|
blocked: This account has been blocked due to terms of service violation
|
@@ -1006,6 +1014,16 @@ en:
|
|
1006
1014
|
notification_event:
|
1007
1015
|
notification_title: An event occurred to <a href="%{resource_path}">%{resource_title}</a>.
|
1008
1016
|
reports:
|
1017
|
+
parent_hidden:
|
1018
|
+
email_intro: |-
|
1019
|
+
Your %{resource_type} is no longer visible.<br>
|
1020
|
+
This happened because the proposal, meeting, debate or comment you replied to has been moderated. If it becomes available again, your comment will be automatically restored.
|
1021
|
+
email_outro: You have received this notification because you are an author of the affected %{resource_type}.
|
1022
|
+
email_subject: Your %{resource_type} is no longer visible
|
1023
|
+
notification_title: |-
|
1024
|
+
Your %{resource_type} is no longer visible.<br>
|
1025
|
+
This happened because the proposal, meeting, debate or comment you replied to has been moderated. If it becomes available again, your comment will be automatically restored.
|
1026
|
+
<i>%{resource_content}</i>
|
1009
1027
|
resource_hidden:
|
1010
1028
|
email_intro: An administrator removed your %{resource_type} because it has been reported as %{report_reasons}.
|
1011
1029
|
email_outro: You have received this notification because you are an author of the removed content.
|
@@ -1717,11 +1735,24 @@ en:
|
|
1717
1735
|
confirmation_instructions_sent: Email confirmation instructions sent.
|
1718
1736
|
fill_in_email_to_confirm_it: Please, fill in your group's email to confirm it.
|
1719
1737
|
reported_mailer:
|
1720
|
-
|
1738
|
+
hidden_automatically:
|
1739
|
+
content: Reported content
|
1740
|
+
details: Details
|
1721
1741
|
hello: Hello %{name},
|
1722
1742
|
manage_moderations: Manage moderations
|
1743
|
+
participatory_space: Participatory space
|
1744
|
+
reason: Reason
|
1723
1745
|
report_html: <p>The following <a href="%{url}">content</a> has been hidden automatically.</p>
|
1724
1746
|
subject: A resource has been hidden automatically
|
1747
|
+
hidden_manually:
|
1748
|
+
content: Reported content
|
1749
|
+
details: Details
|
1750
|
+
hello: Hello %{name},
|
1751
|
+
manage_moderations: Manage moderations
|
1752
|
+
participatory_space: Participatory space
|
1753
|
+
reason: Reason
|
1754
|
+
report_html: <p>The following <a href="%{url}">content</a> has been hidden by %{moderator}.</p>
|
1755
|
+
subject: A resource has been hidden by %{moderator}
|
1725
1756
|
report:
|
1726
1757
|
authors: Authors
|
1727
1758
|
content: Reported content
|
@@ -1739,6 +1770,8 @@ en:
|
|
1739
1770
|
create:
|
1740
1771
|
error: There was a problem creating the report. Please, try it again.
|
1741
1772
|
success: The report has been created successfully and it will be reviewed by an admin.
|
1773
|
+
hide:
|
1774
|
+
success: This resource has been hidden.
|
1742
1775
|
parent_hidden:
|
1743
1776
|
report_details: The parent resource was hidden
|
1744
1777
|
resource:
|
data/config/locales/es-MX.yml
CHANGED
@@ -6,6 +6,7 @@ es-MX:
|
|
6
6
|
delete_reason: Motivo de eliminar tu cuenta
|
7
7
|
attachment:
|
8
8
|
documents: Documentos
|
9
|
+
image: Imagen
|
9
10
|
photos: Fotos
|
10
11
|
common:
|
11
12
|
created_at: Creado el
|
@@ -55,6 +56,12 @@ es-MX:
|
|
55
56
|
tos_agreement: Términos y condiciones uso
|
56
57
|
user_group:
|
57
58
|
avatar: Avatar
|
59
|
+
errors:
|
60
|
+
models:
|
61
|
+
user:
|
62
|
+
attributes:
|
63
|
+
nickname:
|
64
|
+
format: El alias o apodo debe estar en minúsculas y no contener espacios
|
58
65
|
models:
|
59
66
|
decidim/attachment_created_event: Archivo adjunto
|
60
67
|
decidim/component_published_event: Componente activo
|
@@ -117,7 +124,7 @@ es-MX:
|
|
117
124
|
decidim_with_month_name_short: "%d %b"
|
118
125
|
help:
|
119
126
|
date_format: 'Formato: dd/mm/aaaa'
|
120
|
-
order: d-m-
|
127
|
+
order: d-m-y
|
121
128
|
separator: "/"
|
122
129
|
datetime:
|
123
130
|
distance_in_words:
|
@@ -172,6 +179,7 @@ es-MX:
|
|
172
179
|
front_page_link: Ir a la página principal
|
173
180
|
logo: "Logo oficial de %{organization}"
|
174
181
|
opens_in_new_tab: Abrir en una pestaña nueva
|
182
|
+
secondary_menu: Menú secundario
|
175
183
|
skip_button: Saltar al contenido principal
|
176
184
|
account:
|
177
185
|
blocked: Esta cuenta ha sido bloqueada por una violación de los términos y condiciones de uso
|
@@ -615,7 +623,7 @@ es-MX:
|
|
615
623
|
metrics:
|
616
624
|
name: Métricas de la organización
|
617
625
|
participatory_space_metrics:
|
618
|
-
name:
|
626
|
+
name: Participación en cifras
|
619
627
|
participatory_space_stats:
|
620
628
|
name: Estadísticas
|
621
629
|
social_networks_metadata:
|
@@ -1002,6 +1010,16 @@ es-MX:
|
|
1002
1010
|
notification_event:
|
1003
1011
|
notification_title: Se ha producido un evento en <a href="%{resource_path}">%{resource_title}</a>.
|
1004
1012
|
reports:
|
1013
|
+
parent_hidden:
|
1014
|
+
email_intro: |-
|
1015
|
+
Tu %{resource_type} ya no está visible.<br>
|
1016
|
+
Esto ocurre porque la propuesta, el encuentro, el debate o el comentario al que respondiste ha sido moderado. Si vuelve a estar disponible, su comentario se restaurará automáticamente.
|
1017
|
+
email_outro: Has recibido esta notificación porque es autora del/de la %{resource_type}.
|
1018
|
+
email_subject: Tu %{resource_type} ya no es visible
|
1019
|
+
notification_title: |-
|
1020
|
+
Tu %{resource_type} ya no está visible.<br>
|
1021
|
+
Esto ocurre porque la propuesta, el encuentro, el debate o el comentario al que respondiste ha sido moderado. Si vuelve a estar disponible, su comentario se restaurará automáticamente.
|
1022
|
+
<i>%{resource_content}</i>
|
1005
1023
|
resource_hidden:
|
1006
1024
|
email_intro: Una administradora eliminó su %{resource_type} porque ha sido reportado como %{report_reasons}.
|
1007
1025
|
email_outro: Has recibido esta notificación porque eres un autora del contenido eliminado.
|
@@ -1392,7 +1410,7 @@ es-MX:
|
|
1392
1410
|
users:
|
1393
1411
|
description: Número de usuarios en la organización.
|
1394
1412
|
object: usuarios
|
1395
|
-
title:
|
1413
|
+
title: Participantes
|
1396
1414
|
newsletter_mailer:
|
1397
1415
|
newsletter:
|
1398
1416
|
no_reply_notice: Este correo electrónico se ha enviado desde una dirección de correo de notificación que no acepta entrada de correos. Por favor, no respondas a este mensaje.
|
@@ -1713,11 +1731,24 @@ es-MX:
|
|
1713
1731
|
confirmation_instructions_sent: Instrucciones de confirmación enviadas por correo electrónico.
|
1714
1732
|
fill_in_email_to_confirm_it: Por favor, introduce el correo electrónico de tu grupo para confirmarlo.
|
1715
1733
|
reported_mailer:
|
1716
|
-
|
1734
|
+
hidden_automatically:
|
1735
|
+
content: Contenido reportado
|
1736
|
+
details: Detalles
|
1717
1737
|
hello: Hola %{name},
|
1718
|
-
manage_moderations:
|
1738
|
+
manage_moderations: Gestiona moderaciones
|
1739
|
+
participatory_space: Espacio de participación
|
1740
|
+
reason: Motivo
|
1719
1741
|
report_html: <p>El siguiente <a href="%{url}">contenido</a> se ha ocultado automáticamente.</p>
|
1720
1742
|
subject: Un contenido se ha ocultado de forma automática
|
1743
|
+
hidden_manually:
|
1744
|
+
content: Contenido reportado
|
1745
|
+
details: Detalles
|
1746
|
+
hello: Hola %{name},
|
1747
|
+
manage_moderations: Gestiona moderaciones
|
1748
|
+
participatory_space: Espacio de participación
|
1749
|
+
reason: Razón
|
1750
|
+
report_html: <p>El siguiente <a href="%{url}">contenido</a> se ha ocultado automáticamente por %{moderator}.</p>
|
1751
|
+
subject: Un recurso ha sido oculto por %{moderator}
|
1721
1752
|
report:
|
1722
1753
|
authors: Autoras
|
1723
1754
|
content: Contenido reportado
|
@@ -1735,6 +1766,8 @@ es-MX:
|
|
1735
1766
|
create:
|
1736
1767
|
error: Se ha producido un problema al crear el informe de error. Por favor, vuelve a intentarlo.
|
1737
1768
|
success: La denuncia se ha creado correctament y será revisada por un administrador.
|
1769
|
+
hide:
|
1770
|
+
success: Se ha ocultado este recurso.
|
1738
1771
|
parent_hidden:
|
1739
1772
|
report_details: El recurso principal estaba oculto
|
1740
1773
|
resource:
|