decidim-core 0.29.1 → 0.29.3

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 (169) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/activity_cell.rb +0 -3
  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/profile_actions/show.erb +1 -1
  10. data/app/cells/decidim/report_button/already_reported_modal.erb +2 -2
  11. data/app/cells/decidim/report_button/flag_modal.erb +13 -27
  12. data/app/cells/decidim/report_button_cell.rb +2 -8
  13. data/app/cells/decidim/report_user_button/already_reported_modal.erb +11 -0
  14. data/app/cells/decidim/report_user_button/flag_modal.erb +46 -0
  15. data/app/cells/decidim/report_user_button/show.erb +2 -0
  16. data/app/cells/decidim/report_user_button_cell.rb +59 -0
  17. data/app/cells/decidim/resource_types_filter/show.erb +1 -1
  18. data/app/cells/decidim/resource_types_filter_cell.rb +6 -6
  19. data/app/cells/decidim/translation_bar/show.erb +2 -2
  20. data/app/cells/decidim/translation_bar_cell.rb +1 -1
  21. data/app/cells/decidim/user_activity/show.erb +1 -1
  22. data/app/commands/decidim/create_omniauth_registration.rb +14 -8
  23. data/app/commands/decidim/create_report.rb +1 -6
  24. data/app/commands/decidim/destroy_account.rb +3 -0
  25. data/app/commands/decidim/search.rb +14 -0
  26. data/app/controllers/decidim/doorkeeper/credentials_controller.rb +1 -1
  27. data/app/controllers/decidim/links_controller.rb +1 -1
  28. data/app/controllers/decidim/profiles_controller.rb +6 -2
  29. data/app/controllers/decidim/reports_controller.rb +1 -1
  30. data/app/controllers/decidim/user_activities_controller.rb +1 -1
  31. data/app/forms/decidim/account_form.rb +5 -2
  32. data/app/helpers/concerns/decidim/user_role_checker.rb +46 -0
  33. data/app/helpers/decidim/cta_button_helper.rb +1 -1
  34. data/app/helpers/decidim/map_helper.rb +6 -1
  35. data/app/helpers/decidim/orders_helper.rb +2 -1
  36. data/app/helpers/decidim/participatory_space_helpers.rb +1 -1
  37. data/app/helpers/decidim/sanitize_helper.rb +11 -2
  38. data/app/jobs/decidim/hide_child_resources_job.rb +24 -0
  39. data/app/mailers/decidim/reported_mailer.rb +1 -0
  40. data/app/models/decidim/action_log.rb +1 -9
  41. data/app/models/decidim/attachment.rb +1 -1
  42. data/app/models/decidim/report.rb +1 -1
  43. data/app/models/decidim/user.rb +0 -4
  44. data/app/models/decidim/user_base_entity.rb +4 -0
  45. data/app/packs/src/decidim/append_redirect_url_to_modals.js +14 -6
  46. data/app/packs/src/decidim/datepicker/datepicker_functions.js +3 -3
  47. data/app/packs/src/decidim/direct_uploads/upload_field.js +21 -8
  48. data/app/packs/src/decidim/index.js +5 -0
  49. data/app/packs/src/decidim/map/provider/here.js +1 -1
  50. data/app/packs/src/decidim/remote_tooltips.js +38 -0
  51. data/app/packs/src/decidim/toggle.js +1 -1
  52. data/app/packs/src/decidim/tooltips.js +42 -22
  53. data/app/packs/stylesheets/decidim/_content_blocks.scss +4 -0
  54. data/app/packs/stylesheets/decidim/_hashtags.scss +5 -0
  55. data/app/packs/stylesheets/decidim/_header.scss +11 -5
  56. data/app/packs/stylesheets/decidim/_labels.scss +1 -1
  57. data/app/packs/stylesheets/decidim/_profile.scss +1 -1
  58. data/app/packs/stylesheets/decidim/_progress-bar.scss +1 -1
  59. data/app/packs/stylesheets/decidim/application.scss +1 -0
  60. data/app/packs/stylesheets/decidim/legacy/conference-diploma.scss +2 -1
  61. data/app/presenters/decidim/attachment_presenter.rb +1 -1
  62. data/app/presenters/decidim/log/user_presenter.rb +1 -0
  63. data/app/presenters/decidim/user_presenter.rb +1 -1
  64. data/app/services/decidim/base_diff_renderer.rb +28 -2
  65. data/app/services/decidim/email_notification_generator.rb +14 -5
  66. data/app/services/decidim/static_map_generator.rb +1 -1
  67. data/app/views/decidim/last_activities/index.html.erb +1 -1
  68. data/app/views/decidim/pages/_tabbed.html.erb +2 -2
  69. data/app/views/decidim/reported_mailer/hide.html.erb +17 -1
  70. data/app/views/decidim/reported_mailer/report.html.erb +1 -1
  71. data/app/views/decidim/searches/_count.html.erb +1 -1
  72. data/app/views/decidim/searches/_filters.html.erb +40 -38
  73. data/app/views/decidim/shared/_orders.html.erb +2 -2
  74. data/app/views/layouts/decidim/footer/_main_legal.html.erb +1 -1
  75. data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile_tablet.html.erb +1 -1
  76. data/config/locales/ar.yml +56 -27
  77. data/config/locales/bg.yml +10 -24
  78. data/config/locales/bn-BD.yml +1 -0
  79. data/config/locales/bs-BA.yml +100 -0
  80. data/config/locales/ca-IT.yml +2111 -0
  81. data/config/locales/ca.yml +70 -38
  82. data/config/locales/cs.yml +60 -32
  83. data/config/locales/de.yml +66 -38
  84. data/config/locales/el.yml +17 -15
  85. data/config/locales/en.yml +48 -16
  86. data/config/locales/eo.yml +2 -0
  87. data/config/locales/es-MX.yml +61 -29
  88. data/config/locales/es-PY.yml +66 -34
  89. data/config/locales/es.yml +71 -39
  90. data/config/locales/eu.yml +303 -261
  91. data/config/locales/fi-plain.yml +48 -28
  92. data/config/locales/fi.yml +85 -65
  93. data/config/locales/fr-CA.yml +64 -27
  94. data/config/locales/fr.yml +62 -25
  95. data/config/locales/ga-IE.yml +13 -4
  96. data/config/locales/gl.yml +33 -15
  97. data/config/locales/hu.yml +12 -26
  98. data/config/locales/id-ID.yml +32 -16
  99. data/config/locales/is-IS.yml +18 -2
  100. data/config/locales/it.yml +54 -27
  101. data/config/locales/ja.yml +70 -38
  102. data/config/locales/lb.yml +33 -22
  103. data/config/locales/lt.yml +10 -18
  104. data/config/locales/lv.yml +26 -15
  105. data/config/locales/nl.yml +33 -19
  106. data/config/locales/no.yml +27 -16
  107. data/config/locales/pl.yml +8 -22
  108. data/config/locales/pt-BR.yml +13 -25
  109. data/config/locales/pt.yml +32 -16
  110. data/config/locales/ro-RO.yml +500 -220
  111. data/config/locales/ru.yml +31 -8
  112. data/config/locales/sk.yml +38 -19
  113. data/config/locales/sl.yml +4 -0
  114. data/config/locales/sr-CS.yml +2 -0
  115. data/config/locales/sv.yml +29 -33
  116. data/config/locales/tr-TR.yml +34 -24
  117. data/config/locales/uk.yml +20 -3
  118. data/config/locales/zh-CN.yml +27 -15
  119. data/config/locales/zh-TW.yml +16 -16
  120. data/config/routes.rb +1 -0
  121. data/decidim-core.gemspec +4 -1
  122. data/lib/decidim/api/functions/component_list.rb +1 -1
  123. data/lib/decidim/api/functions/participatory_space_finder_base.rb +11 -1
  124. data/lib/decidim/api/interfaces/participatory_space_interface.rb +1 -1
  125. data/lib/decidim/api/types/component_type.rb +7 -0
  126. data/lib/decidim/api/types/user_group_type.rb +4 -0
  127. data/lib/decidim/api/types/user_type.rb +4 -0
  128. data/lib/decidim/asset_router/storage.rb +7 -2
  129. data/lib/decidim/attributes/rich_text.rb +38 -0
  130. data/lib/decidim/attributes/time_with_zone.rb +16 -2
  131. data/lib/decidim/attributes.rb +2 -0
  132. data/lib/decidim/content_parsers/blob_parser.rb +95 -0
  133. data/lib/decidim/content_parsers/user_parser.rb +1 -1
  134. data/lib/decidim/content_parsers.rb +1 -0
  135. data/lib/decidim/content_renderers/blob_renderer.rb +90 -0
  136. data/lib/decidim/content_renderers.rb +1 -0
  137. data/lib/decidim/core/engine.rb +29 -1
  138. data/lib/decidim/core/test/factories.rb +28 -0
  139. data/lib/decidim/core/test/shared_examples/authorable_interface_examples.rb +1 -1
  140. data/lib/decidim/core/test/shared_examples/comments_examples.rb +15 -2
  141. data/lib/decidim/core/test/shared_examples/reports_examples.rb +48 -6
  142. data/lib/decidim/core/test/shared_examples/social_share_examples.rb +32 -0
  143. data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +26 -0
  144. data/lib/decidim/core/test/shared_examples/versions_controller_examples.rb +26 -0
  145. data/lib/decidim/core/version.rb +1 -1
  146. data/lib/decidim/diffy_extension.rb +18 -0
  147. data/lib/decidim/form_builder.rb +1 -1
  148. data/lib/decidim/map/autocomplete.rb +1 -0
  149. data/lib/decidim/map/provider/dynamic_map/here.rb +1 -40
  150. data/lib/decidim/map/provider/static_map/here.rb +34 -0
  151. data/lib/decidim/moderation_tools.rb +16 -2
  152. data/lib/decidim/nicknamizable.rb +1 -1
  153. data/lib/decidim/participatory_space_user.rb +4 -0
  154. data/lib/decidim/query_extensions.rb +0 -26
  155. data/lib/decidim/reportable.rb +6 -2
  156. data/lib/decidim/settings_manifest.rb +2 -0
  157. data/lib/decidim/translatable_attributes.rb +10 -1
  158. data/lib/tasks/upgrade/clean_hidden_resources.rake +33 -0
  159. data/lib/tasks/upgrade/decidim_fix_categorization.rake +34 -8
  160. data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +23 -20
  161. metadata +37 -15
  162. data/app/cells/decidim/author/flag.erb +0 -6
  163. data/app/cells/decidim/author/flag_user.erb +0 -14
  164. data/app/cells/decidim/flag_modal/flag_user.erb +0 -34
  165. data/app/cells/decidim/flag_modal/show.erb +0 -52
  166. data/app/cells/decidim/flag_modal_cell.rb +0 -56
  167. data/app/cells/decidim/profile_sidebar/show.erb +0 -167
  168. data/app/cells/decidim/profile_sidebar_cell.rb +0 -68
  169. 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
@@ -81,7 +101,7 @@ de:
81
101
  date:
82
102
  buttons:
83
103
  close: Schliessen
84
- select: Auswählen
104
+ select: Wählen
85
105
  formats:
86
106
  decidim_short: "%d/%m/%Y"
87
107
  decidim_short_dashed: "%d-%m-%Y"
@@ -146,6 +166,7 @@ de:
146
166
  front_page_link: Zur Startseite gehen
147
167
  logo: "Offizielles Logo von %{organization}"
148
168
  opens_in_new_tab: In neuem Tab öffnen
169
+ secondary_menu: Sekundäres Menü
149
170
  skip_button: Zu Hauptinhalten überspringen
150
171
  account:
151
172
  blocked: Dieses Konto wurde wegen Verletzung der Nutzungsbedingungen gesperrt
@@ -189,7 +210,7 @@ de:
189
210
  cancel: Abbrechen
190
211
  password_change:
191
212
  alert: Sie müssen Ihr Passwort ändern, um fortzufahren.
192
- notification: Administratoren müssen ihr Passwort alle %{days} Tage ändern.
213
+ notification: Admins müssen ihr Passwort alle %{days} Tage ändern.
193
214
  admin_log:
194
215
  area:
195
216
  create: "%{user_name} hat den Bereich %{resource_name} erstellt"
@@ -467,7 +488,7 @@ de:
467
488
  comment: Kommentar
468
489
  debate: Debatte
469
490
  initiative: Initiative
470
- meeting: Treffen
491
+ meeting: Veranstaltung
471
492
  order: Budget-Abstimmung
472
493
  post: Beitrag
473
494
  proposal: Vorschlag
@@ -499,6 +520,8 @@ de:
499
520
  dummy_step_attribute1: Dummy-Schritt-Attribut 1
500
521
  dummy_step_attribute2: Dummy-Schritt-Attribut 2
501
522
  dummy_step_translatable_text: Übersetzbarer Blindtext des Schritts
523
+ pagination:
524
+ page_title: "%{component_name} - Seite %{current_page} von %{total_pages}"
502
525
  contact: Kontakt
503
526
  content_blocks:
504
527
  announcement:
@@ -547,7 +570,7 @@ de:
547
570
  metrics:
548
571
  name: Organisationsmetriken
549
572
  participatory_space_metrics:
550
- name: Metriken
573
+ name: Teilnahme an Zahlen
551
574
  participatory_space_stats:
552
575
  name: Statistiken
553
576
  social_networks_metadata:
@@ -739,6 +762,11 @@ de:
739
762
  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.
740
763
  email_subject: Abgelehnte Änderung für %{amendable_title} von %{emendation_author_nickname}
741
764
  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.
765
+ emendation_promoted:
766
+ follower:
767
+ email_intro: 'Eine Änderung wurde für %{amendable_title} abgelehnt. Sie können es auf dieser Seite sehen:'
768
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} mitverfasst haben.
769
+ email_subject: Eine Änderung von %{emendation_author_nickname} ist als neuer %{amendable_type} veröffentlicht worden
742
770
  attachments:
743
771
  attachment_created:
744
772
  email_intro: 'Ein neues Dokument wurde zu %{resource_title} hinzugefügt. Sie können es auf dieser Seite sehen:'
@@ -854,7 +882,7 @@ de:
854
882
  answer: Antwort
855
883
  collaborative_draft: Kollaborativer Entwurf
856
884
  dummy_resource: Dummy-Ressourcen
857
- meeting: Meetings
885
+ meeting: Veranstaltungen
858
886
  project: Projekte
859
887
  proposal: Vorschläge
860
888
  result: Ergebnisse
@@ -883,7 +911,7 @@ de:
883
911
  error: Beim Folgen dieser Ressource ist ein Fehler aufgetreten.
884
912
  participatory_space: Folgen Sie <span>%{resource_name}</span>
885
913
  destroy:
886
- button: Entfolgen
914
+ button: Nicht mehr folgen
887
915
  error: Beim Entfolgen dieser Ressource ist ein Fehler aufgetreten.
888
916
  forms:
889
917
  attachment_link:
@@ -1089,6 +1117,8 @@ de:
1089
1117
  not_found: 'Der Bereich wurde nicht in der Datenbank gefunden (ID: %{id})'
1090
1118
  scope_type_presenter:
1091
1119
  not_found: 'Der Bereichstyp wurde nicht in der Datenbank gefunden (ID: %{id})'
1120
+ machine_translations:
1121
+ automatic: automatische Übersetzung in %{locale_name}
1092
1122
  managed_users:
1093
1123
  expired_session: Die aktuelle Identitätswechselsitzung ist abgelaufen.
1094
1124
  map:
@@ -1179,20 +1209,26 @@ de:
1179
1209
  not_started: Noch nicht begonnen
1180
1210
  remaining: "%{time_distance} verbleibend"
1181
1211
  metrics:
1212
+ blocked_users:
1213
+ description: Anzahl der blockierten Teilnehmenden
1182
1214
  download:
1183
1215
  csv: Daten herunterladen (CSV)
1184
1216
  followers:
1185
1217
  description: Anzahl der Benutzer, die dieser Teilnahme folgen
1186
1218
  object: Anhänger
1187
- title: Anhänger
1219
+ title: Follower
1188
1220
  participants:
1189
1221
  description: Anzahl der aktiven Benutzer in der Organisation
1190
1222
  object: Teilnehmer
1191
1223
  title: Teilnehmer
1224
+ reported_users:
1225
+ description: Anzahl der gemeldeten Teilnehmenden
1226
+ user_reports:
1227
+ description: Anzahl der von Teilnehmenden getätigten Meldungen
1192
1228
  users:
1193
1229
  description: Anzahl der Benutzer in der Organisation
1194
1230
  object: Benutzer
1195
- title: Benutzer
1231
+ title: Teilnehmer
1196
1232
  newsletter_mailer:
1197
1233
  newsletter:
1198
1234
  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.
@@ -1254,10 +1290,12 @@ de:
1254
1290
  notifications_digest_mailer:
1255
1291
  header:
1256
1292
  daily: Tägliche Zusammenfassung
1293
+ real_time: In Echtzeit
1257
1294
  weekly: Wöchentliche Zusammenfassung
1258
1295
  hello: Hallo %{name}
1259
1296
  intro:
1260
1297
  daily: 'Dies sind die Benachrichtigungen vom letzten Tag basierend auf den Aktivitäten, denen Sie folgen:'
1298
+ real_time: 'Es gibt eine Benachrichtigung über die Aktivität, die du folgst:'
1261
1299
  weekly: 'Dies sind die Benachrichtigungen der letzten Woche, basierend auf den Aktivitäten, die Sie folgen:'
1262
1300
  outro: Sie haben diese Benachrichtigung erhalten, weil Sie diesen Inhalt oder seine Verfassenden folgen. Sie können dem Inhalt direkt auf seiner Seite entfolgen.
1263
1301
  see_more: Weitere Benachrichtigungen ansehen
@@ -1298,7 +1336,7 @@ de:
1298
1336
  not_available_yet: Die Open Data-Dateien sind noch nicht verfügbar. Bitte versuchen Sie es in einigen Minuten erneut.
1299
1337
  pad_iframe:
1300
1338
  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.
1301
- explanation: Verwenden Sie dieses Pad, um während des Meetings gemeinsam Notizen zu machen, was die Protokollerstellung erleichtert.
1339
+ explanation: Verwenden Sie dieses Pad, um während der Veranstaltung gemeinsam Notizen zu machen, was die Protokollerstellung erleichtert.
1302
1340
  pad: Pad
1303
1341
  pages:
1304
1342
  home:
@@ -1306,9 +1344,9 @@ de:
1306
1344
  debates: Diskussionen
1307
1345
  debates_explanation: Teilen Sie Ihre Ansichten und bereichern Sie die aus Ihrer Sicht relevanten Themen.
1308
1346
  how_to_participate: Wie nehme ich an einem Prozess teil?
1309
- meetings: Meetings
1347
+ meetings: Veranstaltungen
1310
1348
  meetings_explanation: Finden Sie heraus, wo und wann Sie an öffentlichen Veranstaltungen teilnehmen können.
1311
- more_info: Mehr Informationen
1349
+ more_info: Mehr Informationen über %{resource_name}
1312
1350
  proposals: Vorschläge
1313
1351
  proposals_explanation: Machen Sie Vorschläge, unterstützen Sie bestehende und fördern Sie die Änderungen, die Sie sehen möchten.
1314
1352
  footer_sub_hero:
@@ -1320,7 +1358,7 @@ de:
1320
1358
  participate_title: Beteiligen Sie sich an den Prozessen auf dieser Plattform
1321
1359
  welcome: Willkommen bei %{organization}!
1322
1360
  statistics:
1323
- headline: Aktueller Status von %{organization}
1361
+ headline: Starea curentă a %{organization}
1324
1362
  sub_hero:
1325
1363
  register: Registrieren
1326
1364
  register_title: Konto erstellen
@@ -1372,35 +1410,22 @@ de:
1372
1410
  members: Mitglieder
1373
1411
  officialized: Offizieller Teilnehmer
1374
1412
  send_private_message: Private Nachricht senden
1375
- sidebar:
1376
- badges:
1377
- info: Abzeichen werden verdient, indem bestimmte Aktivitäten in der Plattform ausgeführt werden.
1378
- title: Abzeichen
1379
1413
  user:
1380
1414
  actions:
1381
1415
  create_user_group: Gruppe erstellen
1382
1416
  disabled_message: Nachricht
1383
1417
  edit_profile: Profil bearbeiten
1384
1418
  edit_user_group: Gruppenprofil bearbeiten
1385
- invite_user: Teilnehmer einladen
1386
- join_user_group: Gruppenbeitritt anfragen
1419
+ invite_user: Nutzer einladen
1420
+ join_user_group: Anfrage zur Teilnahme an der Gruppe
1387
1421
  leave_user_group: Gruppe verlassen
1388
1422
  manage_user_group: Gruppe verwalten
1389
1423
  manage_user_group_admins: Admins verwalten
1390
1424
  manage_user_group_users: Mitglieder verwalten
1391
1425
  message: Nachricht
1392
- resend_email_confirmation_instructions: E-Mail-Bestätigungsanweisungen erneut versenden
1426
+ resend_email_confirmation_instructions: Senden Sie die E-Mail-Bestätigungsanweisungen erneut
1393
1427
  confirmation_instructions_sent: E-Mail-Bestätigungsanweisungen gesendet.
1394
- create_user_group: Gruppe erstellen
1395
- edit_profile: Profil bearbeiten
1396
- edit_user_group: Gruppenprofil bearbeiten
1397
1428
  fill_in_email_to_confirm_it: Bitte geben Sie die E-Mail-Adresse Ihrer Gruppe zur Bestätigung ein.
1398
- invite_user: Nutzer einladen
1399
- join_user_group: Anfrage zur Teilnahme an der Gruppe
1400
- leave_user_group: Gruppe verlassen
1401
- manage_user_group_admins: Admins verwalten
1402
- manage_user_group_users: Mitglieder verwalten
1403
- resend_email_confirmation_instructions: Senden Sie die E-Mail-Bestätigungsanweisungen erneut
1404
1429
  reported_mailer:
1405
1430
  hide:
1406
1431
  hello: Hallo %{name},
@@ -1424,6 +1449,8 @@ de:
1424
1449
  create:
1425
1450
  error: Beim Erstellen des Berichts ist ein Fehler aufgetreten. Bitte, versuche es noch einmal.
1426
1451
  success: Der Bericht wurde erfolgreich erstellt und wird von einem Administrator überprüft.
1452
+ parent_hidden:
1453
+ report_details: Die übergeordnete Ressource wurde ausgeblendet
1427
1454
  resource_endorsements:
1428
1455
  create:
1429
1456
  error: Bei der Befürwortung ist ein Fehler aufgetreten.
@@ -1484,7 +1511,7 @@ de:
1484
1511
  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.
1485
1512
  hide: Verbergen
1486
1513
  hide_content: Diesen Inhalt verbergen
1487
- offensive: Enthält Rassismus, Sexismus, Verunglimpfungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder jede Form von Hassreden.
1514
+ offensive: Enthält Formen von Rassismus, Sexismus, Verleumdungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder andere Formen von seelischer Gewalt.
1488
1515
  reason: Begründung
1489
1516
  report: Meldung erfassen
1490
1517
  spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
@@ -1492,14 +1519,13 @@ de:
1492
1519
  flag_user_modal:
1493
1520
  already_reported: Dieser Inhalt wurde bereits gemeldet und wird von einem Administrator überprüft.
1494
1521
  block: Diesen Teilnehmer blockieren
1495
- close: Schließen
1496
- description: Was ist unangebracht über den Benutzer?
1522
+ description: Was ist unangemessen an diesem Teilnehmenden?
1497
1523
  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.
1498
1524
  hide: Alle dessen Inhalte verbergen
1499
- offensive: Enthält Rassismus, Sexismus, Verunglimpfungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder eine Form von Hassrede.
1525
+ offensive: Enthält Formen von Rassismus, Sexismus, Verleumdungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder andere Formen von seelischer Gewalt.
1500
1526
  report: Melden
1501
1527
  spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
1502
- title: Unangemessenen Nutzer melden
1528
+ title: Unangemessenen Teilnehmenden melden
1503
1529
  floating_help:
1504
1530
  help: Hilfe
1505
1531
  follow_button:
@@ -1513,7 +1539,7 @@ de:
1513
1539
  filters:
1514
1540
  area: Gebiet
1515
1541
  areas: Bereiche
1516
- scope: Thema
1542
+ scope: Umfang
1517
1543
  select_an_area: Wählen Sie einen Bereich aus
1518
1544
  progress: Fortschritt
1519
1545
  public_participation:
@@ -1536,7 +1562,7 @@ de:
1536
1562
  share_to: Teilen mit %{service}
1537
1563
  statistics:
1538
1564
  comments_count: Kommentare
1539
- endorsements_count: Befürworungen
1565
+ endorsements_count: Befürwortungen
1540
1566
  followers_count: Follower
1541
1567
  headline: Statistik
1542
1568
  no_stats: Es gibt noch keine Statistiken.
@@ -1887,13 +1913,13 @@ de:
1887
1913
  description: Beschreibung
1888
1914
  name: Name
1889
1915
  service: Service
1890
- type: Art
1916
+ type: Typ
1891
1917
  items:
1892
1918
  _session_id:
1893
1919
  description: Ermöglicht es Websites, sich an Benutzer zu erinnern, wenn diese verschiedene Seiten aufrufen.
1894
1920
  service: Diese Website
1895
1921
  decidim-consent:
1896
- description: Speichert Informationen über die vom Benutzer erlaubten Cookies auf dieser Website.
1922
+ description: Speichert Informationen über die nutzendenseitig zugelassenen Cookies auf dieser Website.
1897
1923
  service: Diese Website
1898
1924
  pwaInstallPromptSeen:
1899
1925
  description: Speichert den Status, wenn die progressive Web-Anwendung (PWA) Installationsbenachrichtigung bereits vom Nutzenden gesehen wurde.
@@ -1953,6 +1979,8 @@ de:
1953
1979
  expire_time_html: Ihre Sitzung wird in <b><span class="minutes">%{minutes}</span> Minuten</b>ablaufen.
1954
1980
  language_chooser:
1955
1981
  choose_language: Sprache wählen
1982
+ navigation:
1983
+ aria_label: 'Navigationsmenü: %{title}'
1956
1984
  notifications_dashboard:
1957
1985
  mark_all_as_read: Alles als gelesen markieren
1958
1986
  mark_as_read: Als gelesen markieren
@@ -2039,7 +2067,7 @@ de:
2039
2067
  buttons:
2040
2068
  close: Schliessen
2041
2069
  reset: Zurücksetzen
2042
- select: Auswählen
2070
+ select: Wählen
2043
2071
  formats:
2044
2072
  day_of_month: "%d. %b"
2045
2073
  day_of_week: "%a"
@@ -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: Ενεργό στοιχείο
@@ -77,6 +79,8 @@ el:
77
79
  'false': 'Όχι'
78
80
  'true': 'Ναι'
79
81
  date:
82
+ buttons:
83
+ select: Επιλέξτε
80
84
  formats:
81
85
  decidim_short: "%d/%m/%Y"
82
86
  decidim_short_with_month_name_short: "%d %b %Y"
@@ -434,6 +438,8 @@ el:
434
438
  view_all: Προβολή όλων
435
439
  metrics:
436
440
  name: Μετρικά οργανισμού
441
+ participatory_space_metrics:
442
+ name: Μετρικά
437
443
  static_page:
438
444
  section:
439
445
  name: Ενότητα
@@ -452,6 +458,9 @@ el:
452
458
  core:
453
459
  actions:
454
460
  unauthorized: Δεν είστε εξουσιοδοτημένοι να εκτελέσετε αυτήν την ενέργεια.
461
+ application_helper:
462
+ filter_category_values:
463
+ all: Όλα
455
464
  devise:
456
465
  omniauth_registrations:
457
466
  create:
@@ -905,6 +914,8 @@ el:
905
914
  new_conversation: Νέα συνομιλία
906
915
  next: Επόμενο
907
916
  title: Συνομιλίες
917
+ reply_form:
918
+ placeholder: Η απάντησή σας...
908
919
  show:
909
920
  back: Πίσω σε όλες τις συνομιλίες
910
921
  chat_with: Συνομιλία με
@@ -919,11 +930,9 @@ el:
919
930
  participants:
920
931
  description: Αριθμός ενεργών συμμετεχόντων στον οργανισμό
921
932
  object: συμμετέχοντες
922
- title: Συμμετέχοντες
923
933
  users:
924
934
  description: Αριθμός συμμετεχόντων στον οργανισμό
925
935
  object: συμμετέχοντες
926
- title: Συμμετέχοντες
927
936
  newsletter_mailer:
928
937
  newsletter:
929
938
  unsubscribe: Για να εξαιρεθείτε από τη λήψη αυτού του τύπου email, πατήστε <a href="%{link}" target="_blank" class="unsubscribe">Κατάργηση εγγραφής</a>.
@@ -1052,14 +1061,12 @@ el:
1052
1061
  conversations: Συνομιλίες
1053
1062
  followers: Ακόλουθοι
1054
1063
  following: Ακολουθεί
1064
+ group_admins: Διαχείριση διαχειριστών
1065
+ group_members: Διαχείριση μελών
1055
1066
  groups: Ομάδες
1056
1067
  members: Μέλη
1057
1068
  officialized: Επίσημος συμμετέχων
1058
1069
  send_private_message: Αποστολή προσωπικού μηνύματος
1059
- sidebar:
1060
- badges:
1061
- info: Τα εμβλήματα κερδίζονται πραγματοποιώντας μια συγκεκριμένη δραστηριότητα στην πλατφόρμα.
1062
- title: Εμβλήματα
1063
1070
  user:
1064
1071
  actions:
1065
1072
  create_user_group: Δημιουργία ομάδας
@@ -1067,20 +1074,13 @@ el:
1067
1074
  edit_user_group: Επεξεργασία προφίλ ομάδας
1068
1075
  invite_user: Πρόσκληση συμμετέχοντα
1069
1076
  join_user_group: Αίτημα συμμετοχής σε ομάδα
1077
+ leave_user_group: Αποχώρηση από την ομάδα
1070
1078
  manage_user_group_admins: Διαχείριση διαχειριστών
1071
1079
  manage_user_group_users: Διαχείριση μελών
1072
1080
  message: Μήνυμα
1081
+ resend_email_confirmation_instructions: Επανάληψη αποστολής των οδηγιών επιβεβαίωσης μέσω email
1073
1082
  confirmation_instructions_sent: Στάλθηκαν οι οδηγίες επιβεβαίωσης email.
1074
- create_user_group: Δημιουργία ομάδας
1075
- edit_profile: Επεξεργασία προφίλ
1076
- edit_user_group: Επεξεργασία προφίλ ομάδας
1077
1083
  fill_in_email_to_confirm_it: Συμπληρώστε τη διεύθυνση email της ομάδας σας για να την επιβεβαιώσετε.
1078
- invite_user: Πρόσκληση συμμετέχοντα
1079
- join_user_group: Αίτημα συμμετοχής σε ομάδα
1080
- leave_user_group: Αποχώρηση από την ομάδα
1081
- manage_user_group_admins: Διαχείριση διαχειριστών
1082
- manage_user_group_users: Διαχείριση μελών
1083
- resend_email_confirmation_instructions: Επανάληψη αποστολής των οδηγιών επιβεβαίωσης μέσω email
1084
1084
  reported_mailer:
1085
1085
  hide:
1086
1086
  hello: Γεια σας %{name},
@@ -1435,6 +1435,8 @@ el:
1435
1435
  whatsapp_web: WhatsApp
1436
1436
  xing: Xing
1437
1437
  time:
1438
+ buttons:
1439
+ select: Επιλέξτε
1438
1440
  formats:
1439
1441
  day_of_month: "%b %d"
1440
1442
  day_of_week: "%a"
@@ -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
@@ -146,6 +166,7 @@ en:
146
166
  front_page_link: Go to front page
147
167
  logo: "%{organization}'s official logo"
148
168
  opens_in_new_tab: Opens in new tab
169
+ secondary_menu: Secondary menu
149
170
  skip_button: Skip to main content
150
171
  account:
151
172
  blocked: This account has been blocked due to terms of service violation
@@ -499,6 +520,8 @@ en:
499
520
  dummy_step_attribute1: Dummy Step Attribute 1
500
521
  dummy_step_attribute2: Dummy Step Attribute 2
501
522
  dummy_step_translatable_text: Dummy Step Translatable Text
523
+ pagination:
524
+ page_title: "%{component_name} - Page %{current_page} of %{total_pages}"
502
525
  contact: Contact
503
526
  content_blocks:
504
527
  announcement:
@@ -741,6 +764,11 @@ en:
741
764
  email_outro: You have received this notification because you are following %{amendable_title}. You can stop receiving notifications following the previous link.
742
765
  email_subject: Amendment rejected for %{amendable_title} from %{emendation_author_nickname}
743
766
  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>.
767
+ emendation_promoted:
768
+ follower:
769
+ email_intro: 'An emendation has been published for %{amendable_title}. You can see it from this page:'
770
+ email_outro: You have received this notification because you are an author of %{amendable_title}.
771
+ email_subject: An emendation from %{emendation_author_nickname} has been published as a new %{amendable_type}
744
772
  attachments:
745
773
  attachment_created:
746
774
  email_intro: 'A new document has been added to %{resource_title}. You can see it from this page:'
@@ -1091,6 +1119,8 @@ en:
1091
1119
  not_found: 'The scope was not found on the database (ID: %{id})'
1092
1120
  scope_type_presenter:
1093
1121
  not_found: 'The scope type was not found on the database (ID: %{id})'
1122
+ machine_translations:
1123
+ automatic: automatic translation in %{locale_name}
1094
1124
  managed_users:
1095
1125
  expired_session: The current administration session of a participant has expired.
1096
1126
  map:
@@ -1181,6 +1211,8 @@ en:
1181
1211
  not_started: Not started yet
1182
1212
  remaining: "%{time_distance} remaining"
1183
1213
  metrics:
1214
+ blocked_users:
1215
+ description: Number of blocked participants
1184
1216
  download:
1185
1217
  csv: Download data (CSV)
1186
1218
  followers:
@@ -1191,6 +1223,10 @@ en:
1191
1223
  description: Number of active participants in organization
1192
1224
  object: participants
1193
1225
  title: Participants
1226
+ reported_users:
1227
+ description: Number of reported participants
1228
+ user_reports:
1229
+ description: Number of reports done by participants
1194
1230
  users:
1195
1231
  description: Number of participants in organization
1196
1232
  object: participants
@@ -1256,10 +1292,12 @@ en:
1256
1292
  notifications_digest_mailer:
1257
1293
  header:
1258
1294
  daily: Daily Notification Digest
1295
+ real_time: Real time
1259
1296
  weekly: Weekly Notification Digest
1260
1297
  hello: Hello %{name},
1261
1298
  intro:
1262
1299
  daily: 'These are the notifications from the last day based on the activity you are following:'
1300
+ real_time: 'These is a notification on the activity you are following:'
1263
1301
  weekly: 'These are the notifications from the last week based on the activity you are following:'
1264
1302
  outro: You have received these notifications because you are following this content or its authors. You can unfollow them from their respective pages.
1265
1303
  see_more: See more notifications
@@ -1374,10 +1412,6 @@ en:
1374
1412
  members: Members
1375
1413
  officialized: Official participant
1376
1414
  send_private_message: Send private message
1377
- sidebar:
1378
- badges:
1379
- info: Badges are earned by performing specific activity in the platform.
1380
- title: Badges
1381
1415
  user:
1382
1416
  actions:
1383
1417
  create_user_group: Create group
@@ -1393,20 +1427,15 @@ en:
1393
1427
  message: Message
1394
1428
  resend_email_confirmation_instructions: Resend email confirmation instructions
1395
1429
  confirmation_instructions_sent: Email confirmation instructions sent.
1396
- create_user_group: Create group
1397
- edit_profile: Edit profile
1398
- edit_user_group: Edit group profile
1399
1430
  fill_in_email_to_confirm_it: Please, fill in your group's email to confirm it.
1400
- invite_user: Invite participant
1401
- join_user_group: Request to join group
1402
- leave_user_group: Leave group
1403
- manage_user_group_admins: Manage admins
1404
- manage_user_group_users: Manage members
1405
- resend_email_confirmation_instructions: Resend email confirmation instructions
1406
1431
  reported_mailer:
1407
1432
  hide:
1433
+ content: Reported content
1434
+ details: Details
1408
1435
  hello: Hello %{name},
1409
1436
  manage_moderations: Manage moderations
1437
+ participatory_space: Participatory space
1438
+ reason: Reason
1410
1439
  report_html: <p>The following <a href="%{url}">content</a> has been hidden automatically.</p>
1411
1440
  subject: A resource has been hidden automatically
1412
1441
  report:
@@ -1426,6 +1455,8 @@ en:
1426
1455
  create:
1427
1456
  error: An error ocurred while creating the report. Please, try it again.
1428
1457
  success: The report has been created successfully and it will be reviewed by an admin.
1458
+ parent_hidden:
1459
+ report_details: The parent resource was hidden
1429
1460
  resource_endorsements:
1430
1461
  create:
1431
1462
  error: There was a problem during the endorsement action.
@@ -1494,14 +1525,13 @@ en:
1494
1525
  flag_user_modal:
1495
1526
  already_reported: This content is already reported and it will be reviewed by an admin.
1496
1527
  block: Block this participant
1497
- close: Close
1498
- description: What is inappropriate about the user?
1528
+ description: What is inappropriate about this participant?
1499
1529
  does_not_belong: Contains illegal activity, suicide threats, personal information, or something else you think does not belong on %{organization_name}.
1500
1530
  hide: Hide all their contents
1501
1531
  offensive: Contains racism, sexism, slurs, personal attacks, death threats, suicide requests or any form of hate speech.
1502
1532
  report: Report
1503
1533
  spam: Contains clickbait, advertising, scams or script bots.
1504
- title: Report inappropriate User
1534
+ title: Report inappropriate participant
1505
1535
  floating_help:
1506
1536
  help: Help
1507
1537
  follow_button:
@@ -1955,6 +1985,8 @@ en:
1955
1985
  expire_time_html: Your session will expire in <b><span class="minutes">%{minutes}</span> minutes</b>.
1956
1986
  language_chooser:
1957
1987
  choose_language: Choose language
1988
+ navigation:
1989
+ aria_label: Navigation menu- %{title}
1958
1990
  notifications_dashboard:
1959
1991
  mark_all_as_read: Mark all as read
1960
1992
  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