decidim-core 0.28.4 → 0.28.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/activity_cell.rb +1 -4
  3. data/app/cells/decidim/author/show.erb +5 -4
  4. data/app/cells/decidim/author_cell.rb +26 -0
  5. data/app/cells/decidim/card_s/show.erb +5 -3
  6. data/app/cells/decidim/diff_cell.rb +4 -0
  7. data/app/cells/decidim/newsletter_templates/image_text_cta_cell.rb +1 -1
  8. data/app/cells/decidim/participatory_space_dropdown_metadata/show.erb +5 -3
  9. data/app/cells/decidim/resource_types_filter/show.erb +1 -1
  10. data/app/cells/decidim/resource_types_filter_cell.rb +6 -6
  11. data/app/cells/decidim/translation_bar/show.erb +3 -3
  12. data/app/cells/decidim/translation_bar_cell.rb +1 -1
  13. data/app/cells/decidim/user_activity/show.erb +1 -1
  14. data/app/commands/decidim/create_omniauth_registration.rb +14 -8
  15. data/app/commands/decidim/destroy_account.rb +3 -0
  16. data/app/commands/decidim/search.rb +14 -0
  17. data/app/controllers/decidim/doorkeeper/credentials_controller.rb +1 -1
  18. data/app/controllers/decidim/links_controller.rb +1 -1
  19. data/app/controllers/decidim/profiles_controller.rb +6 -2
  20. data/app/controllers/decidim/reports_controller.rb +1 -1
  21. data/app/controllers/decidim/user_activities_controller.rb +1 -1
  22. data/app/forms/decidim/account_form.rb +5 -2
  23. data/app/helpers/concerns/decidim/user_role_checker.rb +46 -0
  24. data/app/helpers/decidim/cta_button_helper.rb +1 -1
  25. data/app/helpers/decidim/map_helper.rb +6 -1
  26. data/app/helpers/decidim/orders_helper.rb +2 -1
  27. data/app/helpers/decidim/participatory_space_helpers.rb +1 -1
  28. data/app/helpers/decidim/sanitize_helper.rb +11 -2
  29. data/app/models/decidim/attachment.rb +1 -1
  30. data/app/models/decidim/user.rb +0 -4
  31. data/app/models/decidim/user_base_entity.rb +4 -0
  32. data/app/packs/src/decidim/append_redirect_url_to_modals.js +14 -6
  33. data/app/packs/src/decidim/direct_uploads/upload_field.js +21 -8
  34. data/app/packs/src/decidim/index.js +5 -0
  35. data/app/packs/src/decidim/map/provider/here.js +1 -1
  36. data/app/packs/src/decidim/remote_tooltips.js +38 -0
  37. data/app/packs/src/decidim/toggle.js +1 -1
  38. data/app/packs/src/decidim/tooltips.js +42 -22
  39. data/app/packs/stylesheets/decidim/_hashtags.scss +5 -0
  40. data/app/packs/stylesheets/decidim/_header.scss +20 -2
  41. data/app/packs/stylesheets/decidim/_profile.scss +1 -1
  42. data/app/packs/stylesheets/decidim/_progress-bar.scss +1 -1
  43. data/app/packs/stylesheets/decidim/application.scss +1 -0
  44. data/app/packs/stylesheets/decidim/legacy/conference-diploma.scss +2 -1
  45. data/app/presenters/decidim/attachment_presenter.rb +1 -1
  46. data/app/presenters/decidim/log/user_presenter.rb +1 -0
  47. data/app/services/decidim/base_diff_renderer.rb +28 -2
  48. data/app/services/decidim/email_notification_generator.rb +14 -5
  49. data/app/services/decidim/static_map_generator.rb +1 -1
  50. data/app/views/decidim/last_activities/index.html.erb +1 -1
  51. data/app/views/decidim/pages/_tabbed.html.erb +2 -2
  52. data/app/views/decidim/reported_mailer/hide.html.erb +1 -1
  53. data/app/views/decidim/reported_mailer/report.html.erb +1 -1
  54. data/app/views/decidim/searches/_count.html.erb +1 -1
  55. data/app/views/decidim/searches/_filters.html.erb +40 -38
  56. data/app/views/decidim/shared/_orders.html.erb +2 -2
  57. data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile_tablet.html.erb +1 -1
  58. data/config/locales/ar.yml +55 -12
  59. data/config/locales/bg.yml +17 -8
  60. data/config/locales/bn-BD.yml +1 -0
  61. data/config/locales/bs-BA.yml +100 -0
  62. data/config/locales/ca-IT.yml +2115 -0
  63. data/config/locales/ca.yml +69 -22
  64. data/config/locales/cs.yml +62 -15
  65. data/config/locales/de.yml +67 -20
  66. data/config/locales/el.yml +17 -2
  67. data/config/locales/en.yml +47 -0
  68. data/config/locales/eo.yml +2 -0
  69. data/config/locales/es-MX.yml +61 -14
  70. data/config/locales/es-PY.yml +65 -18
  71. data/config/locales/es.yml +72 -25
  72. data/config/locales/eu.yml +308 -250
  73. data/config/locales/fi-plain.yml +50 -11
  74. data/config/locales/fi.yml +87 -48
  75. data/config/locales/fr-CA.yml +57 -10
  76. data/config/locales/fr.yml +55 -8
  77. data/config/locales/ga-IE.yml +11 -0
  78. data/config/locales/gl.yml +33 -2
  79. data/config/locales/hu.yml +17 -10
  80. data/config/locales/id-ID.yml +32 -3
  81. data/config/locales/is-IS.yml +18 -2
  82. data/config/locales/it.yml +84 -14
  83. data/config/locales/ja.yml +70 -23
  84. data/config/locales/lb.yml +32 -7
  85. data/config/locales/lt.yml +9 -3
  86. data/config/locales/lv.yml +26 -2
  87. data/config/locales/nl.yml +33 -6
  88. data/config/locales/no.yml +25 -0
  89. data/config/locales/pl.yml +15 -6
  90. data/config/locales/pt-BR.yml +18 -8
  91. data/config/locales/pt.yml +31 -0
  92. data/config/locales/ro-RO.yml +475 -207
  93. data/config/locales/ru.yml +33 -1
  94. data/config/locales/sk.yml +39 -7
  95. data/config/locales/sl.yml +4 -0
  96. data/config/locales/sr-CS.yml +2 -0
  97. data/config/locales/sv.yml +35 -16
  98. data/config/locales/tr-TR.yml +32 -8
  99. data/config/locales/uk.yml +20 -2
  100. data/config/locales/zh-CN.yml +27 -2
  101. data/config/locales/zh-TW.yml +14 -0
  102. data/config/routes.rb +1 -0
  103. data/decidim-core.gemspec +4 -1
  104. data/lib/decidim/api/functions/component_list.rb +1 -1
  105. data/lib/decidim/api/functions/participatory_space_finder_base.rb +11 -1
  106. data/lib/decidim/api/interfaces/participatory_space_interface.rb +1 -1
  107. data/lib/decidim/api/types/component_type.rb +7 -0
  108. data/lib/decidim/api/types/user_group_type.rb +4 -0
  109. data/lib/decidim/api/types/user_type.rb +4 -0
  110. data/lib/decidim/attributes/rich_text.rb +38 -0
  111. data/lib/decidim/attributes/time_with_zone.rb +16 -2
  112. data/lib/decidim/attributes.rb +2 -0
  113. data/lib/decidim/content_parsers/blob_parser.rb +95 -0
  114. data/lib/decidim/content_parsers/user_parser.rb +1 -1
  115. data/lib/decidim/content_parsers.rb +1 -0
  116. data/lib/decidim/content_renderers/blob_renderer.rb +90 -0
  117. data/lib/decidim/content_renderers.rb +1 -0
  118. data/lib/decidim/core/engine.rb +29 -1
  119. data/lib/decidim/core/test/factories.rb +28 -0
  120. data/lib/decidim/core/test/shared_examples/authorable_interface_examples.rb +1 -1
  121. data/lib/decidim/core/test/shared_examples/comments_examples.rb +15 -2
  122. data/lib/decidim/core/test/shared_examples/reports_examples.rb +48 -6
  123. data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +26 -0
  124. data/lib/decidim/core/test/shared_examples/versions_controller_examples.rb +26 -0
  125. data/lib/decidim/core/version.rb +1 -1
  126. data/lib/decidim/diffy_extension.rb +18 -0
  127. data/lib/decidim/form_builder.rb +1 -1
  128. data/lib/decidim/map/autocomplete.rb +1 -0
  129. data/lib/decidim/map/provider/dynamic_map/here.rb +1 -40
  130. data/lib/decidim/map/provider/static_map/here.rb +34 -0
  131. data/lib/decidim/nicknamizable.rb +1 -1
  132. data/lib/decidim/participatory_space_user.rb +4 -0
  133. data/lib/decidim/query_extensions.rb +0 -26
  134. data/lib/decidim/reportable.rb +6 -2
  135. data/lib/decidim/settings_manifest.rb +2 -0
  136. data/lib/decidim/translatable_attributes.rb +10 -1
  137. data/lib/decidim/view_model.rb +1 -0
  138. data/lib/tasks/upgrade/decidim_fix_categorization.rake +34 -8
  139. data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +23 -20
  140. metadata +30 -8
  141. data/app/packs/src/decidim/vendor/leaflet-tilelayer-here.js +0 -212
@@ -4,10 +4,19 @@ de:
4
4
  attributes:
5
5
  account:
6
6
  delete_reason: Grund, Ihr Konto zu löschen
7
+ attachment:
8
+ documents: Dokumente
9
+ image: Bild
10
+ photos: Fotos
7
11
  common:
8
12
  created_at: Erstellt am
13
+ content_block_attachment:
14
+ background_image: Hintergrundbild
15
+ main_image: Hauptbild
9
16
  conversation:
10
17
  body: Haupttext
18
+ editor_image:
19
+ file: Datei
11
20
  group:
12
21
  about: Über
13
22
  avatar: Profilbild
@@ -16,12 +25,15 @@ de:
16
25
  name: Name
17
26
  nickname: Spitzname
18
27
  phone: Telefonnummer
28
+ import:
29
+ file: Datei
19
30
  message:
20
31
  body: Haupttext
21
32
  report:
22
33
  details: Zusätzliche Kommentare
23
34
  user:
24
35
  about: Über
36
+ avatar: Profilbild
25
37
  email: Ihre E-Mail
26
38
  encrypted_password: Passwort
27
39
  locale: Spracheinstellung
@@ -33,6 +45,14 @@ de:
33
45
  personal_url: Persönliche URL
34
46
  remove_avatar: Avatar entfernen
35
47
  tos_agreement: Nutzungsvereinbarung
48
+ user_group:
49
+ avatar: Profilbild
50
+ errors:
51
+ models:
52
+ user:
53
+ attributes:
54
+ nickname:
55
+ format: Der Spitzname muss Kleinbuchstaben sein und keine Leerzeichen enthalten
36
56
  models:
37
57
  decidim/attachment_created_event: Anhang
38
58
  decidim/component_published_event: Aktive Komponente
@@ -85,6 +105,9 @@ de:
85
105
  file_size_too_large: Datei ist zu groß
86
106
  not_inside_organization: Die Datei ist keiner Organisation angefügt.
87
107
  date:
108
+ buttons:
109
+ close: Schliessen
110
+ select: Wählen
88
111
  formats:
89
112
  decidim_short: "%d/%m/%Y"
90
113
  decidim_short_dashed: "%d-%m-%Y"
@@ -92,6 +115,10 @@ de:
92
115
  decidim_with_day_and_month_name: "%A, %d. %b %Y"
93
116
  decidim_with_month_name: "%d %B %Y"
94
117
  decidim_with_month_name_short: "%d. %b"
118
+ help:
119
+ date_format: 'Format: dd/mm/yyyy'
120
+ order: d-m-y
121
+ separator: "/"
95
122
  datetime:
96
123
  distance_in_words:
97
124
  about_x_hours:
@@ -145,6 +172,7 @@ de:
145
172
  front_page_link: Zur Startseite gehen
146
173
  logo: "Offizielles Logo von %{organization}"
147
174
  opens_in_new_tab: In neuem Tab öffnen
175
+ secondary_menu: Sekundäres Menü
148
176
  skip_button: Zu Hauptinhalten überspringen
149
177
  account:
150
178
  blocked: Dieses Konto wurde wegen Verletzung der Nutzungsbedingungen gesperrt
@@ -188,7 +216,7 @@ de:
188
216
  cancel: Abbrechen
189
217
  password_change:
190
218
  alert: Sie müssen Ihr Passwort ändern, um fortzufahren.
191
- notification: Administratoren müssen ihr Passwort alle %{days} Tage ändern.
219
+ notification: Admins müssen ihr Passwort alle %{days} Tage ändern.
192
220
  admin_log:
193
221
  area:
194
222
  create: "%{user_name} hat den Bereich %{resource_name} erstellt"
@@ -468,7 +496,7 @@ de:
468
496
  comment: Kommentar
469
497
  debate: Debatte
470
498
  initiative: Initiative
471
- meeting: Treffen
499
+ meeting: Veranstaltung
472
500
  order: Budget-Abstimmung
473
501
  post: Beitrag
474
502
  proposal: Vorschlag
@@ -500,6 +528,8 @@ de:
500
528
  dummy_step_attribute1: Dummy-Schritt-Attribut 1
501
529
  dummy_step_attribute2: Dummy-Schritt-Attribut 2
502
530
  dummy_step_translatable_text: Übersetzbarer Blindtext des Schritts
531
+ pagination:
532
+ page_title: "%{component_name} - Seite %{current_page} von %{total_pages}"
503
533
  contact: Kontakt
504
534
  content_blocks:
505
535
  announcement:
@@ -548,7 +578,7 @@ de:
548
578
  metrics:
549
579
  name: Organisationsmetriken
550
580
  participatory_space_metrics:
551
- name: Metriken
581
+ name: Teilnahme an Zahlen
552
582
  participatory_space_stats:
553
583
  name: Statistiken
554
584
  social_networks_metadata:
@@ -736,6 +766,11 @@ de:
736
766
  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.
737
767
  email_subject: Abgelehnte Änderung für %{amendable_title} von %{emendation_author_nickname}
738
768
  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.
769
+ emendation_promoted:
770
+ follower:
771
+ email_intro: 'Eine Änderung wurde für %{amendable_title} abgelehnt. Sie können es auf dieser Seite sehen:'
772
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} mitverfasst haben.
773
+ email_subject: Eine Änderung von %{emendation_author_nickname} ist als neuer %{amendable_type} veröffentlicht worden
739
774
  attachments:
740
775
  attachment_created:
741
776
  email_intro: 'Ein neues Dokument wurde zu %{resource_title} hinzugefügt. Sie können es auf dieser Seite sehen:'
@@ -851,7 +886,7 @@ de:
851
886
  answer: Antwort
852
887
  collaborative_draft: Kollaborativer Entwurf
853
888
  dummy_resource: Dummy-Ressourcen
854
- meeting: Meetings
889
+ meeting: Veranstaltungen
855
890
  project: Projekte
856
891
  proposal: Vorschläge
857
892
  result: Ergebnisse
@@ -880,7 +915,7 @@ de:
880
915
  error: Beim Folgen dieser Ressource ist ein Fehler aufgetreten.
881
916
  participatory_space: Sie folgen <span class="show-for-sr">%{resource_name}</span>
882
917
  destroy:
883
- button: Entfolgen
918
+ button: Nicht mehr folgen
884
919
  error: Beim Entfolgen dieser Ressource ist ein Fehler aufgetreten.
885
920
  forms:
886
921
  errors:
@@ -1081,6 +1116,8 @@ de:
1081
1116
  not_found: 'Der Bereich wurde nicht in der Datenbank gefunden (ID: %{id})'
1082
1117
  scope_type_presenter:
1083
1118
  not_found: 'Der Bereichstyp wurde nicht in der Datenbank gefunden (ID: %{id})'
1119
+ machine_translations:
1120
+ automatic: automatische Übersetzung in %{locale_name}
1084
1121
  managed_users:
1085
1122
  expired_session: Die aktuelle Identitätswechselsitzung ist abgelaufen.
1086
1123
  map:
@@ -1171,20 +1208,26 @@ de:
1171
1208
  not_started: Noch nicht begonnen
1172
1209
  remaining: "%{time_distance} verbleibend"
1173
1210
  metrics:
1211
+ blocked_users:
1212
+ description: Anzahl der blockierten Teilnehmenden
1174
1213
  download:
1175
1214
  csv: Daten herunterladen (CSV)
1176
1215
  followers:
1177
1216
  description: Anzahl der Benutzer, die dieser Teilnahme folgen
1178
1217
  object: Anhänger
1179
- title: Anhänger
1218
+ title: Follower
1180
1219
  participants:
1181
1220
  description: Anzahl der aktiven Benutzer in der Organisation
1182
1221
  object: Teilnehmer
1183
1222
  title: Teilnehmer
1223
+ reported_users:
1224
+ description: Anzahl der gemeldeten Teilnehmenden
1225
+ user_reports:
1226
+ description: Anzahl der von Teilnehmenden getätigten Meldungen
1184
1227
  users:
1185
1228
  description: Anzahl der Benutzer in der Organisation
1186
1229
  object: Benutzer
1187
- title: Benutzer
1230
+ title: Teilnehmer
1188
1231
  newsletter_mailer:
1189
1232
  newsletter:
1190
1233
  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.
@@ -1245,10 +1288,12 @@ de:
1245
1288
  notifications_digest_mailer:
1246
1289
  header:
1247
1290
  daily: Tägliche Zusammenfassung
1291
+ real_time: In Echtzeit
1248
1292
  weekly: Wöchentliche Zusammenfassung
1249
1293
  hello: Hallo %{name}
1250
1294
  intro:
1251
1295
  daily: 'Dies sind die Benachrichtigungen vom letzten Tag basierend auf den Aktivitäten, denen Sie folgen:'
1296
+ real_time: 'Es gibt eine Benachrichtigung über die Aktivität, die du folgst:'
1252
1297
  weekly: 'Dies sind die Benachrichtigungen der letzten Woche, basierend auf den Aktivitäten, die Sie folgen:'
1253
1298
  outro: Sie haben diese Benachrichtigung erhalten, weil Sie diesen Inhalt oder seine Verfassenden folgen. Sie können dem Inhalt direkt auf seiner Seite entfolgen.
1254
1299
  see_more: Weitere Benachrichtigungen ansehen
@@ -1289,7 +1334,7 @@ de:
1289
1334
  not_available_yet: Die Open Data-Dateien sind noch nicht verfügbar. Bitte versuchen Sie es in einigen Minuten erneut.
1290
1335
  pad_iframe:
1291
1336
  disclaimer: Der Inhalt dieses Blocks wird von registrierten Benutzern verfasst und gibt deren Meinung wieder. %{organization} kann nicht für den Inhalt verantwortlich gemacht werden.
1292
- explanation: Verwenden Sie dieses Pad, um während des Meetings gemeinsam Notizen zu machen, was die Protokollerstellung erleichtert.
1337
+ explanation: Verwenden Sie dieses Pad, um während der Veranstaltung gemeinsam Notizen zu machen, was die Protokollerstellung erleichtert.
1293
1338
  pad: Pad
1294
1339
  pages:
1295
1340
  home:
@@ -1297,9 +1342,9 @@ de:
1297
1342
  debates: Diskussionen
1298
1343
  debates_explanation: Teilen Sie Ihre Ansichten und bereichern Sie die aus Ihrer Sicht relevanten Themen.
1299
1344
  how_to_participate: Wie nehme ich an einem Prozess teil?
1300
- meetings: Meetings
1345
+ meetings: Veranstaltungen
1301
1346
  meetings_explanation: Finden Sie heraus, wo und wann Sie an öffentlichen Veranstaltungen teilnehmen können.
1302
- more_info: Mehr Informationen
1347
+ more_info: Mehr Informationen über %{resource_name}
1303
1348
  proposals: Vorschläge
1304
1349
  proposals_explanation: Machen Sie Vorschläge, unterstützen Sie bestehende und fördern Sie die Änderungen, die Sie sehen möchten.
1305
1350
  footer_sub_hero:
@@ -1311,7 +1356,7 @@ de:
1311
1356
  participate_title: Beteiligen Sie sich an den Prozessen auf dieser Plattform
1312
1357
  welcome: Willkommen bei %{organization}!
1313
1358
  statistics:
1314
- headline: Aktueller Status von %{organization}
1359
+ headline: Starea curentă a %{organization}
1315
1360
  sub_hero:
1316
1361
  register: Registrieren
1317
1362
  register_title: Registrieren Sie sich um ein Konto anzulegen
@@ -1375,14 +1420,14 @@ de:
1375
1420
  disabled_message: Nachricht
1376
1421
  edit_profile: Profil bearbeiten
1377
1422
  edit_user_group: Gruppenprofil bearbeiten
1378
- invite_user: Teilnehmer einladen
1379
- join_user_group: Gruppenbeitritt anfragen
1423
+ invite_user: Nutzer einladen
1424
+ join_user_group: Anfrage zur Teilnahme an der Gruppe
1380
1425
  leave_user_group: Gruppe verlassen
1381
1426
  manage_user_group: Gruppe verwalten
1382
1427
  manage_user_group_admins: Admins verwalten
1383
1428
  manage_user_group_users: Mitglieder verwalten
1384
1429
  message: Nachricht
1385
- resend_email_confirmation_instructions: E-Mail-Bestätigungsanweisungen erneut versenden
1430
+ resend_email_confirmation_instructions: Senden Sie die E-Mail-Bestätigungsanweisungen erneut
1386
1431
  confirmation_instructions_sent: E-Mail-Bestätigungsanweisungen gesendet.
1387
1432
  create_user_group: Gruppe erstellen
1388
1433
  edit_profile: Profil bearbeiten
@@ -1477,7 +1522,7 @@ de:
1477
1522
  does_not_belong: Enthält illegale Aktivitäten, Selbstmorddrohungen, persönliche Informationen oder etwas anderes, von dem Sie denken, dass es nicht auf %{organization_name} gehört.
1478
1523
  hide: Verbergen
1479
1524
  hide_content: Diesen Inhalt verbergen
1480
- offensive: Enthält Rassismus, Sexismus, Verunglimpfungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder jede Form von Hassreden.
1525
+ offensive: Enthält Formen von Rassismus, Sexismus, Verleumdungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder andere Formen von seelischer Gewalt.
1481
1526
  reason: Begründung
1482
1527
  report: Meldung erfassen
1483
1528
  spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
@@ -1489,7 +1534,7 @@ de:
1489
1534
  description: Was ist unangebracht über den Benutzer?
1490
1535
  does_not_belong: Enthält illegale Aktivitäten, Selbstmorddrohungen, persönliche Informationen oder etwas anderes, von dem Sie denken, dass es nicht auf %{organization_name} gehört.
1491
1536
  hide: Alle dessen Inhalte verbergen
1492
- offensive: Enthält Rassismus, Sexismus, Verunglimpfungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder eine Form von Hassrede.
1537
+ offensive: Enthält Formen von Rassismus, Sexismus, Verleumdungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder andere Formen von seelischer Gewalt.
1493
1538
  report: Melden
1494
1539
  spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
1495
1540
  title: Unangemessenen Nutzer melden
@@ -1506,7 +1551,7 @@ de:
1506
1551
  filters:
1507
1552
  area: Gebiet
1508
1553
  areas: Bereiche
1509
- scope: Thema
1554
+ scope: Umfang
1510
1555
  select_an_area: Wählen Sie einen Bereich aus
1511
1556
  progress: Fortschritt
1512
1557
  public_participation:
@@ -1529,7 +1574,7 @@ de:
1529
1574
  share_to: Teilen mit %{service}
1530
1575
  statistics:
1531
1576
  comments_count: Kommentare
1532
- endorsements_count: Befürworungen
1577
+ endorsements_count: Befürwortungen
1533
1578
  followers_count: Follower
1534
1579
  headline: Statistik
1535
1580
  no_stats: Es gibt noch keine Statistiken.
@@ -1878,13 +1923,13 @@ de:
1878
1923
  description: Beschreibung
1879
1924
  name: Name
1880
1925
  service: Service
1881
- type: Art
1926
+ type: Typ
1882
1927
  items:
1883
1928
  _session_id:
1884
1929
  description: Ermöglicht es Websites, sich an Benutzer zu erinnern, wenn diese verschiedene Seiten aufrufen.
1885
1930
  service: Diese Website
1886
1931
  decidim-consent:
1887
- description: Speichert Informationen über die vom Benutzer erlaubten Cookies auf dieser Website.
1932
+ description: Speichert Informationen über die nutzendenseitig zugelassenen Cookies auf dieser Website.
1888
1933
  service: Diese Website
1889
1934
  pwaInstallPromptSeen:
1890
1935
  description: Speichert den Status, wenn die progressive Web-Anwendung (PWA) Installationsbenachrichtigung bereits vom Nutzenden gesehen wurde.
@@ -1944,6 +1989,8 @@ de:
1944
1989
  expire_time_html: Ihre Sitzung wird in <b><span class="minutes">%{minutes}</span> Minuten</b>ablaufen.
1945
1990
  language_chooser:
1946
1991
  choose_language: Sprache wählen
1992
+ navigation:
1993
+ aria_label: 'Navigationsmenü: %{title}'
1947
1994
  notifications_dashboard:
1948
1995
  mark_all_as_read: Alles als gelesen markieren
1949
1996
  mark_as_read: Als gelesen markieren
@@ -31,6 +31,8 @@ el:
31
31
  personal_url: Προσωπική ιστοσελίδα
32
32
  remove_avatar: Αφαίρεση avatar
33
33
  tos_agreement: Όροι Παροχής Υπηρεσιών
34
+ user_group:
35
+ avatar: Άβαταρ
34
36
  models:
35
37
  decidim/attachment_created_event: Συνημμένο
36
38
  decidim/component_published_event: Ενεργό στοιχείο
@@ -80,6 +82,8 @@ el:
80
82
  errors:
81
83
  file_size_too_large: Το μέγεθος του αρχείου είναι πολύ μεγάλο
82
84
  date:
85
+ buttons:
86
+ select: Επιλέξτε
83
87
  formats:
84
88
  decidim_short: "%d/%m/%Y"
85
89
  decidim_short_with_month_name_short: "%d %b %Y"
@@ -443,6 +447,8 @@ el:
443
447
  view_all: Προβολή όλων
444
448
  metrics:
445
449
  name: Μετρικά οργανισμού
450
+ participatory_space_metrics:
451
+ name: Μετρικά
446
452
  static_page:
447
453
  section:
448
454
  name: Ενότητα
@@ -462,6 +468,9 @@ el:
462
468
  actions:
463
469
  login_before_access: Συνδεθείτε με τον λογαριασμό σας πριν από την πρόσβαση.
464
470
  unauthorized: Δεν είστε εξουσιοδοτημένοι να εκτελέσετε αυτήν την ενέργεια.
471
+ application_helper:
472
+ filter_category_values:
473
+ all: Όλα
465
474
  devise:
466
475
  omniauth_registrations:
467
476
  create:
@@ -924,6 +933,8 @@ el:
924
933
  new_conversation: Νέα συνομιλία
925
934
  next: Επόμενο
926
935
  title: Συνομιλίες
936
+ reply_form:
937
+ placeholder: Η απάντησή σας...
927
938
  show:
928
939
  back: Πίσω σε όλες τις συνομιλίες
929
940
  chat_with: Συνομιλία με
@@ -938,11 +949,9 @@ el:
938
949
  participants:
939
950
  description: Αριθμός ενεργών συμμετεχόντων στον οργανισμό
940
951
  object: συμμετέχοντες
941
- title: Συμμετέχοντες
942
952
  users:
943
953
  description: Αριθμός συμμετεχόντων στον οργανισμό
944
954
  object: συμμετέχοντες
945
- title: Συμμετέχοντες
946
955
  newsletter_mailer:
947
956
  newsletter:
948
957
  unsubscribe: Για να εξαιρεθείτε από τη λήψη αυτού του τύπου email, πατήστε <a href="%{link}" target="_blank" class="unsubscribe">Κατάργηση εγγραφής</a>.
@@ -1074,6 +1083,8 @@ el:
1074
1083
  conversations: Συνομιλίες
1075
1084
  followers: Ακόλουθοι
1076
1085
  following: Ακολουθεί
1086
+ group_admins: Διαχείριση διαχειριστών
1087
+ group_members: Διαχείριση μελών
1077
1088
  groups: Ομάδες
1078
1089
  members: Μέλη
1079
1090
  officialized: Επίσημος συμμετέχων
@@ -1089,9 +1100,11 @@ el:
1089
1100
  edit_user_group: Επεξεργασία προφίλ ομάδας
1090
1101
  invite_user: Πρόσκληση συμμετέχοντα
1091
1102
  join_user_group: Αίτημα συμμετοχής σε ομάδα
1103
+ leave_user_group: Αποχώρηση από την ομάδα
1092
1104
  manage_user_group_admins: Διαχείριση διαχειριστών
1093
1105
  manage_user_group_users: Διαχείριση μελών
1094
1106
  message: Μήνυμα
1107
+ resend_email_confirmation_instructions: Επανάληψη αποστολής των οδηγιών επιβεβαίωσης μέσω email
1095
1108
  confirmation_instructions_sent: Στάλθηκαν οι οδηγίες επιβεβαίωσης email.
1096
1109
  create_user_group: Δημιουργία ομάδας
1097
1110
  edit_profile: Επεξεργασία προφίλ
@@ -1184,6 +1197,8 @@ el:
1184
1197
  report: Αναφορά
1185
1198
  spam: Περιέχει clickbait, διαφημίσεις, απάτες ή script bot.
1186
1199
  title: Αναφορά ακατάλληλου περιεχομένου
1200
+ flag_user_modal:
1201
+ close: Κλείσιμο
1187
1202
  floating_help:
1188
1203
  help: Βοήθεια
1189
1204
  login_modal:
@@ -4,10 +4,19 @@ en:
4
4
  attributes:
5
5
  account:
6
6
  delete_reason: Reason to delete your account
7
+ attachment:
8
+ documents: Documents
9
+ image: Image
10
+ photos: Photos
7
11
  common:
8
12
  created_at: Created at
13
+ content_block_attachment:
14
+ background_image: Background image
15
+ main_image: Main image
9
16
  conversation:
10
17
  body: Body
18
+ editor_image:
19
+ file: File
11
20
  group:
12
21
  about: About
13
22
  avatar: Avatar
@@ -16,12 +25,15 @@ en:
16
25
  name: Name
17
26
  nickname: Nickname
18
27
  phone: Phone
28
+ import:
29
+ file: File
19
30
  message:
20
31
  body: Body
21
32
  report:
22
33
  details: Additional comments
23
34
  user:
24
35
  about: About
36
+ avatar: Avatar
25
37
  email: Your email
26
38
  encrypted_password: Password
27
39
  locale: Locale
@@ -33,6 +45,14 @@ en:
33
45
  personal_url: Personal URL
34
46
  remove_avatar: Remove avatar
35
47
  tos_agreement: Terms of service agreement
48
+ user_group:
49
+ avatar: Avatar
50
+ errors:
51
+ models:
52
+ user:
53
+ attributes:
54
+ nickname:
55
+ format: The nickname must be lowercase and contain no spaces
36
56
  models:
37
57
  decidim/attachment_created_event: Attachment
38
58
  decidim/component_published_event: Active component
@@ -85,6 +105,9 @@ en:
85
105
  file_size_too_large: File size is too large
86
106
  not_inside_organization: The file is not attached to any organization
87
107
  date:
108
+ buttons:
109
+ close: Close
110
+ select: Select
88
111
  formats:
89
112
  decidim_short: "%d/%m/%Y"
90
113
  decidim_short_dashed: "%d-%m-%Y"
@@ -92,6 +115,10 @@ en:
92
115
  decidim_with_day_and_month_name: "%A %d %b %Y"
93
116
  decidim_with_month_name: "%d %B %Y"
94
117
  decidim_with_month_name_short: "%d %b"
118
+ help:
119
+ date_format: 'Format: dd/mm/yyyy'
120
+ order: d-m-y
121
+ separator: "/"
95
122
  datetime:
96
123
  distance_in_words:
97
124
  about_x_hours:
@@ -145,6 +172,7 @@ en:
145
172
  front_page_link: Go to front page
146
173
  logo: "%{organization}'s official logo"
147
174
  opens_in_new_tab: Opens in new tab
175
+ secondary_menu: Secondary menu
148
176
  skip_button: Skip to main content
149
177
  account:
150
178
  blocked: This account has been blocked due to terms of service violation
@@ -500,6 +528,8 @@ en:
500
528
  dummy_step_attribute1: Dummy Step Attribute 1
501
529
  dummy_step_attribute2: Dummy Step Attribute 2
502
530
  dummy_step_translatable_text: Dummy Step Translatable Text
531
+ pagination:
532
+ page_title: "%{component_name} - Page %{current_page} of %{total_pages}"
503
533
  contact: Contact
504
534
  content_blocks:
505
535
  announcement:
@@ -738,6 +768,11 @@ en:
738
768
  email_outro: You have received this notification because you are following %{amendable_title}. You can stop receiving notifications following the previous link.
739
769
  email_subject: Amendment rejected for %{amendable_title} from %{emendation_author_nickname}
740
770
  notification_title: The <a href="%{emendation_path}">amendment</a> created by <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> has been rejected for <a href="%{amendable_path}">%{amendable_title}</a>.
771
+ emendation_promoted:
772
+ follower:
773
+ email_intro: 'An emendation has been published for %{amendable_title}. You can see it from this page:'
774
+ email_outro: You have received this notification because you are an author of %{amendable_title}.
775
+ email_subject: An emendation from %{emendation_author_nickname} has been published as a new %{amendable_type}
741
776
  attachments:
742
777
  attachment_created:
743
778
  email_intro: 'A new document has been added to %{resource_title}. You can see it from this page:'
@@ -1083,6 +1118,8 @@ en:
1083
1118
  not_found: 'The scope was not found on the database (ID: %{id})'
1084
1119
  scope_type_presenter:
1085
1120
  not_found: 'The scope type was not found on the database (ID: %{id})'
1121
+ machine_translations:
1122
+ automatic: automatic translation in %{locale_name}
1086
1123
  managed_users:
1087
1124
  expired_session: The current administration session of a participant has expired.
1088
1125
  map:
@@ -1173,6 +1210,8 @@ en:
1173
1210
  not_started: Not started yet
1174
1211
  remaining: "%{time_distance} remaining"
1175
1212
  metrics:
1213
+ blocked_users:
1214
+ description: Number of blocked participants
1176
1215
  download:
1177
1216
  csv: Download data (CSV)
1178
1217
  followers:
@@ -1183,6 +1222,10 @@ en:
1183
1222
  description: Number of active participants in organization
1184
1223
  object: participants
1185
1224
  title: Participants
1225
+ reported_users:
1226
+ description: Number of reported participants
1227
+ user_reports:
1228
+ description: Number of reports done by participants
1186
1229
  users:
1187
1230
  description: Number of participants in organization
1188
1231
  object: participants
@@ -1247,10 +1290,12 @@ en:
1247
1290
  notifications_digest_mailer:
1248
1291
  header:
1249
1292
  daily: Daily Notification Digest
1293
+ real_time: Real time
1250
1294
  weekly: Weekly Notification Digest
1251
1295
  hello: Hello %{name},
1252
1296
  intro:
1253
1297
  daily: 'These are the notifications from the last day based on the activity you are following:'
1298
+ real_time: 'These is a notification on the activity you are following:'
1254
1299
  weekly: 'These are the notifications from the last week based on the activity you are following:'
1255
1300
  outro: You have received these notifications because you are following this content or its authors. You can unfollow them from their respective pages.
1256
1301
  see_more: See more notifications
@@ -1946,6 +1991,8 @@ en:
1946
1991
  expire_time_html: Your session will expire in <b><span class="minutes">%{minutes}</span> minutes</b>.
1947
1992
  language_chooser:
1948
1993
  choose_language: Choose language
1994
+ navigation:
1995
+ aria_label: Navigation menu- %{title}
1949
1996
  notifications_dashboard:
1950
1997
  mark_all_as_read: Mark all as read
1951
1998
  mark_as_read: Mark as read
@@ -23,6 +23,8 @@ eo:
23
23
  password_confirmation: Konfirmu vian pasvorton
24
24
  personal_url: Persona URL
25
25
  remove_avatar: Forigi avataron
26
+ user_group:
27
+ avatar: Avataro
26
28
  models:
27
29
  decidim/attachment_created_event: Ligiteco
28
30
  decidim/component_published_event: Aktiva komponanto