decidim-core 0.29.2 → 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 (115) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/participatory_space_dropdown_metadata/show.erb +5 -3
  3. data/app/cells/decidim/profile_actions/show.erb +1 -1
  4. data/app/cells/decidim/report_button/already_reported_modal.erb +2 -2
  5. data/app/cells/decidim/report_button/flag_modal.erb +13 -27
  6. data/app/cells/decidim/report_button_cell.rb +2 -8
  7. data/app/cells/decidim/report_user_button/already_reported_modal.erb +11 -0
  8. data/app/cells/decidim/report_user_button/flag_modal.erb +46 -0
  9. data/app/cells/decidim/report_user_button/show.erb +2 -0
  10. data/app/cells/decidim/report_user_button_cell.rb +59 -0
  11. data/app/cells/decidim/resource_types_filter/show.erb +1 -1
  12. data/app/cells/decidim/resource_types_filter_cell.rb +6 -6
  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/create_report.rb +1 -6
  16. data/app/commands/decidim/search.rb +14 -0
  17. data/app/controllers/decidim/profiles_controller.rb +2 -2
  18. data/app/controllers/decidim/reports_controller.rb +1 -1
  19. data/app/controllers/decidim/user_activities_controller.rb +1 -1
  20. data/app/forms/decidim/account_form.rb +5 -2
  21. data/app/helpers/decidim/orders_helper.rb +2 -1
  22. data/app/helpers/decidim/participatory_space_helpers.rb +1 -1
  23. data/app/jobs/decidim/hide_child_resources_job.rb +24 -0
  24. data/app/mailers/decidim/reported_mailer.rb +1 -0
  25. data/app/models/decidim/action_log.rb +1 -9
  26. data/app/models/decidim/report.rb +1 -1
  27. data/app/models/decidim/user.rb +0 -4
  28. data/app/models/decidim/user_base_entity.rb +4 -0
  29. data/app/packs/src/decidim/datepicker/datepicker_functions.js +3 -3
  30. data/app/packs/src/decidim/index.js +4 -2
  31. data/app/packs/src/decidim/map/provider/here.js +1 -1
  32. data/app/packs/stylesheets/decidim/_content_blocks.scss +4 -0
  33. data/app/packs/stylesheets/decidim/_hashtags.scss +5 -0
  34. data/app/packs/stylesheets/decidim/_header.scss +11 -5
  35. data/app/packs/stylesheets/decidim/application.scss +1 -0
  36. data/app/presenters/decidim/log/user_presenter.rb +1 -0
  37. data/app/presenters/decidim/user_presenter.rb +1 -1
  38. data/app/services/decidim/base_diff_renderer.rb +2 -0
  39. data/app/services/decidim/static_map_generator.rb +1 -1
  40. data/app/views/decidim/last_activities/index.html.erb +1 -1
  41. data/app/views/decidim/reported_mailer/hide.html.erb +17 -1
  42. data/app/views/decidim/reported_mailer/report.html.erb +1 -1
  43. data/app/views/decidim/searches/_count.html.erb +1 -1
  44. data/app/views/decidim/searches/_filters.html.erb +40 -38
  45. data/app/views/decidim/shared/_orders.html.erb +2 -2
  46. data/app/views/layouts/decidim/footer/_main_legal.html.erb +1 -1
  47. data/config/locales/ar.yml +41 -28
  48. data/config/locales/bg.yml +10 -24
  49. data/config/locales/bs-BA.yml +2 -0
  50. data/config/locales/ca-IT.yml +2111 -0
  51. data/config/locales/ca.yml +57 -29
  52. data/config/locales/cs.yml +55 -32
  53. data/config/locales/de.yml +48 -24
  54. data/config/locales/el.yml +10 -15
  55. data/config/locales/en.yml +44 -16
  56. data/config/locales/eo.yml +2 -0
  57. data/config/locales/es-MX.yml +56 -28
  58. data/config/locales/es-PY.yml +61 -33
  59. data/config/locales/es.yml +60 -32
  60. data/config/locales/eu.yml +112 -87
  61. data/config/locales/fi-plain.yml +44 -28
  62. data/config/locales/fi.yml +46 -30
  63. data/config/locales/fr-CA.yml +58 -25
  64. data/config/locales/fr.yml +57 -24
  65. data/config/locales/ga-IE.yml +4 -4
  66. data/config/locales/gl.yml +25 -15
  67. data/config/locales/hu.yml +9 -23
  68. data/config/locales/id-ID.yml +24 -16
  69. data/config/locales/is-IS.yml +10 -1
  70. data/config/locales/it.yml +35 -27
  71. data/config/locales/ja.yml +55 -25
  72. data/config/locales/lb.yml +24 -22
  73. data/config/locales/lt.yml +5 -17
  74. data/config/locales/lv.yml +18 -15
  75. data/config/locales/nl.yml +23 -18
  76. data/config/locales/no.yml +18 -16
  77. data/config/locales/pl.yml +7 -21
  78. data/config/locales/pt-BR.yml +11 -24
  79. data/config/locales/pt.yml +18 -16
  80. data/config/locales/ro-RO.yml +243 -86
  81. data/config/locales/ru.yml +23 -8
  82. data/config/locales/sk.yml +29 -18
  83. data/config/locales/sl.yml +4 -0
  84. data/config/locales/sr-CS.yml +2 -0
  85. data/config/locales/sv.yml +22 -26
  86. data/config/locales/tr-TR.yml +24 -23
  87. data/config/locales/uk.yml +12 -2
  88. data/config/locales/zh-CN.yml +18 -15
  89. data/config/locales/zh-TW.yml +8 -16
  90. data/lib/decidim/asset_router/storage.rb +7 -2
  91. data/lib/decidim/attributes/time_with_zone.rb +5 -1
  92. data/lib/decidim/content_parsers/blob_parser.rb +10 -8
  93. data/lib/decidim/content_parsers/user_parser.rb +1 -1
  94. data/lib/decidim/core/test/shared_examples/reports_examples.rb +48 -6
  95. data/lib/decidim/core/test/shared_examples/social_share_examples.rb +32 -0
  96. data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +26 -0
  97. data/lib/decidim/core/test/shared_examples/versions_controller_examples.rb +26 -0
  98. data/lib/decidim/core/version.rb +1 -1
  99. data/lib/decidim/map/provider/dynamic_map/here.rb +1 -40
  100. data/lib/decidim/map/provider/static_map/here.rb +34 -0
  101. data/lib/decidim/moderation_tools.rb +16 -2
  102. data/lib/decidim/nicknamizable.rb +1 -1
  103. data/lib/decidim/reportable.rb +6 -2
  104. data/lib/decidim/translatable_attributes.rb +5 -1
  105. data/lib/tasks/upgrade/clean_hidden_resources.rake +33 -0
  106. data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +23 -20
  107. metadata +15 -14
  108. data/app/cells/decidim/author/flag.erb +0 -6
  109. data/app/cells/decidim/author/flag_user.erb +0 -14
  110. data/app/cells/decidim/flag_modal/flag_user.erb +0 -34
  111. data/app/cells/decidim/flag_modal/show.erb +0 -52
  112. data/app/cells/decidim/flag_modal_cell.rb +0 -56
  113. data/app/cells/decidim/profile_sidebar/show.erb +0 -167
  114. data/app/cells/decidim/profile_sidebar_cell.rb +0 -68
  115. 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
@@ -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
@@ -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:'
@@ -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:
@@ -1181,20 +1209,26 @@ de:
1181
1209
  not_started: Noch nicht begonnen
1182
1210
  remaining: "%{time_distance} verbleibend"
1183
1211
  metrics:
1212
+ blocked_users:
1213
+ description: Anzahl der blockierten Teilnehmenden
1184
1214
  download:
1185
1215
  csv: Daten herunterladen (CSV)
1186
1216
  followers:
1187
1217
  description: Anzahl der Benutzer, die dieser Teilnahme folgen
1188
1218
  object: Anhänger
1189
- title: Anhänger
1219
+ title: Follower
1190
1220
  participants:
1191
1221
  description: Anzahl der aktiven Benutzer in der Organisation
1192
1222
  object: Teilnehmer
1193
1223
  title: Teilnehmer
1224
+ reported_users:
1225
+ description: Anzahl der gemeldeten Teilnehmenden
1226
+ user_reports:
1227
+ description: Anzahl der von Teilnehmenden getätigten Meldungen
1194
1228
  users:
1195
1229
  description: Anzahl der Benutzer in der Organisation
1196
1230
  object: Benutzer
1197
- title: Benutzer
1231
+ title: Teilnehmer
1198
1232
  newsletter_mailer:
1199
1233
  newsletter:
1200
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.
@@ -1256,10 +1290,12 @@ de:
1256
1290
  notifications_digest_mailer:
1257
1291
  header:
1258
1292
  daily: Tägliche Zusammenfassung
1293
+ real_time: In Echtzeit
1259
1294
  weekly: Wöchentliche Zusammenfassung
1260
1295
  hello: Hallo %{name}
1261
1296
  intro:
1262
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:'
1263
1299
  weekly: 'Dies sind die Benachrichtigungen der letzten Woche, basierend auf den Aktivitäten, die Sie folgen:'
1264
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.
1265
1301
  see_more: Weitere Benachrichtigungen ansehen
@@ -1374,35 +1410,22 @@ de:
1374
1410
  members: Mitglieder
1375
1411
  officialized: Offizieller Teilnehmer
1376
1412
  send_private_message: Private Nachricht senden
1377
- sidebar:
1378
- badges:
1379
- info: Abzeichen werden verdient, indem bestimmte Aktivitäten in der Plattform ausgeführt werden.
1380
- title: Abzeichen
1381
1413
  user:
1382
1414
  actions:
1383
1415
  create_user_group: Gruppe erstellen
1384
1416
  disabled_message: Nachricht
1385
1417
  edit_profile: Profil bearbeiten
1386
1418
  edit_user_group: Gruppenprofil bearbeiten
1387
- invite_user: Teilnehmer einladen
1388
- join_user_group: Gruppenbeitritt anfragen
1419
+ invite_user: Nutzer einladen
1420
+ join_user_group: Anfrage zur Teilnahme an der Gruppe
1389
1421
  leave_user_group: Gruppe verlassen
1390
1422
  manage_user_group: Gruppe verwalten
1391
1423
  manage_user_group_admins: Admins verwalten
1392
1424
  manage_user_group_users: Mitglieder verwalten
1393
1425
  message: Nachricht
1394
- resend_email_confirmation_instructions: E-Mail-Bestätigungsanweisungen erneut versenden
1426
+ resend_email_confirmation_instructions: Senden Sie die E-Mail-Bestätigungsanweisungen erneut
1395
1427
  confirmation_instructions_sent: E-Mail-Bestätigungsanweisungen gesendet.
1396
- create_user_group: Gruppe erstellen
1397
- edit_profile: Profil bearbeiten
1398
- edit_user_group: Gruppenprofil bearbeiten
1399
1428
  fill_in_email_to_confirm_it: Bitte geben Sie die E-Mail-Adresse Ihrer Gruppe zur Bestätigung ein.
1400
- invite_user: Nutzer einladen
1401
- join_user_group: Anfrage zur Teilnahme an der Gruppe
1402
- leave_user_group: Gruppe verlassen
1403
- manage_user_group_admins: Admins verwalten
1404
- manage_user_group_users: Mitglieder verwalten
1405
- resend_email_confirmation_instructions: Senden Sie die E-Mail-Bestätigungsanweisungen erneut
1406
1429
  reported_mailer:
1407
1430
  hide:
1408
1431
  hello: Hallo %{name},
@@ -1426,6 +1449,8 @@ de:
1426
1449
  create:
1427
1450
  error: Beim Erstellen des Berichts ist ein Fehler aufgetreten. Bitte, versuche es noch einmal.
1428
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
1429
1454
  resource_endorsements:
1430
1455
  create:
1431
1456
  error: Bei der Befürwortung ist ein Fehler aufgetreten.
@@ -1494,14 +1519,13 @@ de:
1494
1519
  flag_user_modal:
1495
1520
  already_reported: Dieser Inhalt wurde bereits gemeldet und wird von einem Administrator überprüft.
1496
1521
  block: Diesen Teilnehmer blockieren
1497
- close: Schließen
1498
- description: Was ist unangebracht über den Benutzer?
1522
+ description: Was ist unangemessen an diesem Teilnehmenden?
1499
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.
1500
1524
  hide: Alle dessen Inhalte verbergen
1501
1525
  offensive: Enthält Formen von Rassismus, Sexismus, Verleumdungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder andere Formen von seelischer Gewalt.
1502
1526
  report: Melden
1503
1527
  spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
1504
- title: Unangemessenen Nutzer melden
1528
+ title: Unangemessenen Teilnehmenden melden
1505
1529
  floating_help:
1506
1530
  help: Hilfe
1507
1531
  follow_button:
@@ -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: Ενεργό στοιχείο
@@ -436,6 +438,8 @@ el:
436
438
  view_all: Προβολή όλων
437
439
  metrics:
438
440
  name: Μετρικά οργανισμού
441
+ participatory_space_metrics:
442
+ name: Μετρικά
439
443
  static_page:
440
444
  section:
441
445
  name: Ενότητα
@@ -910,6 +914,8 @@ el:
910
914
  new_conversation: Νέα συνομιλία
911
915
  next: Επόμενο
912
916
  title: Συνομιλίες
917
+ reply_form:
918
+ placeholder: Η απάντησή σας...
913
919
  show:
914
920
  back: Πίσω σε όλες τις συνομιλίες
915
921
  chat_with: Συνομιλία με
@@ -924,11 +930,9 @@ el:
924
930
  participants:
925
931
  description: Αριθμός ενεργών συμμετεχόντων στον οργανισμό
926
932
  object: συμμετέχοντες
927
- title: Συμμετέχοντες
928
933
  users:
929
934
  description: Αριθμός συμμετεχόντων στον οργανισμό
930
935
  object: συμμετέχοντες
931
- title: Συμμετέχοντες
932
936
  newsletter_mailer:
933
937
  newsletter:
934
938
  unsubscribe: Για να εξαιρεθείτε από τη λήψη αυτού του τύπου email, πατήστε <a href="%{link}" target="_blank" class="unsubscribe">Κατάργηση εγγραφής</a>.
@@ -1057,14 +1061,12 @@ el:
1057
1061
  conversations: Συνομιλίες
1058
1062
  followers: Ακόλουθοι
1059
1063
  following: Ακολουθεί
1064
+ group_admins: Διαχείριση διαχειριστών
1065
+ group_members: Διαχείριση μελών
1060
1066
  groups: Ομάδες
1061
1067
  members: Μέλη
1062
1068
  officialized: Επίσημος συμμετέχων
1063
1069
  send_private_message: Αποστολή προσωπικού μηνύματος
1064
- sidebar:
1065
- badges:
1066
- info: Τα εμβλήματα κερδίζονται πραγματοποιώντας μια συγκεκριμένη δραστηριότητα στην πλατφόρμα.
1067
- title: Εμβλήματα
1068
1070
  user:
1069
1071
  actions:
1070
1072
  create_user_group: Δημιουργία ομάδας
@@ -1072,20 +1074,13 @@ el:
1072
1074
  edit_user_group: Επεξεργασία προφίλ ομάδας
1073
1075
  invite_user: Πρόσκληση συμμετέχοντα
1074
1076
  join_user_group: Αίτημα συμμετοχής σε ομάδα
1077
+ leave_user_group: Αποχώρηση από την ομάδα
1075
1078
  manage_user_group_admins: Διαχείριση διαχειριστών
1076
1079
  manage_user_group_users: Διαχείριση μελών
1077
1080
  message: Μήνυμα
1081
+ resend_email_confirmation_instructions: Επανάληψη αποστολής των οδηγιών επιβεβαίωσης μέσω email
1078
1082
  confirmation_instructions_sent: Στάλθηκαν οι οδηγίες επιβεβαίωσης email.
1079
- create_user_group: Δημιουργία ομάδας
1080
- edit_profile: Επεξεργασία προφίλ
1081
- edit_user_group: Επεξεργασία προφίλ ομάδας
1082
1083
  fill_in_email_to_confirm_it: Συμπληρώστε τη διεύθυνση email της ομάδας σας για να την επιβεβαιώσετε.
1083
- invite_user: Πρόσκληση συμμετέχοντα
1084
- join_user_group: Αίτημα συμμετοχής σε ομάδα
1085
- leave_user_group: Αποχώρηση από την ομάδα
1086
- manage_user_group_admins: Διαχείριση διαχειριστών
1087
- manage_user_group_users: Διαχείριση μελών
1088
- resend_email_confirmation_instructions: Επανάληψη αποστολής των οδηγιών επιβεβαίωσης μέσω email
1089
1084
  reported_mailer:
1090
1085
  hide:
1091
1086
  hello: Γεια σας %{name},
@@ -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:'
@@ -1183,6 +1211,8 @@ en:
1183
1211
  not_started: Not started yet
1184
1212
  remaining: "%{time_distance} remaining"
1185
1213
  metrics:
1214
+ blocked_users:
1215
+ description: Number of blocked participants
1186
1216
  download:
1187
1217
  csv: Download data (CSV)
1188
1218
  followers:
@@ -1193,6 +1223,10 @@ en:
1193
1223
  description: Number of active participants in organization
1194
1224
  object: participants
1195
1225
  title: Participants
1226
+ reported_users:
1227
+ description: Number of reported participants
1228
+ user_reports:
1229
+ description: Number of reports done by participants
1196
1230
  users:
1197
1231
  description: Number of participants in organization
1198
1232
  object: participants
@@ -1258,10 +1292,12 @@ en:
1258
1292
  notifications_digest_mailer:
1259
1293
  header:
1260
1294
  daily: Daily Notification Digest
1295
+ real_time: Real time
1261
1296
  weekly: Weekly Notification Digest
1262
1297
  hello: Hello %{name},
1263
1298
  intro:
1264
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:'
1265
1301
  weekly: 'These are the notifications from the last week based on the activity you are following:'
1266
1302
  outro: You have received these notifications because you are following this content or its authors. You can unfollow them from their respective pages.
1267
1303
  see_more: See more notifications
@@ -1376,10 +1412,6 @@ en:
1376
1412
  members: Members
1377
1413
  officialized: Official participant
1378
1414
  send_private_message: Send private message
1379
- sidebar:
1380
- badges:
1381
- info: Badges are earned by performing specific activity in the platform.
1382
- title: Badges
1383
1415
  user:
1384
1416
  actions:
1385
1417
  create_user_group: Create group
@@ -1395,20 +1427,15 @@ en:
1395
1427
  message: Message
1396
1428
  resend_email_confirmation_instructions: Resend email confirmation instructions
1397
1429
  confirmation_instructions_sent: Email confirmation instructions sent.
1398
- create_user_group: Create group
1399
- edit_profile: Edit profile
1400
- edit_user_group: Edit group profile
1401
1430
  fill_in_email_to_confirm_it: Please, fill in your group's email to confirm it.
1402
- invite_user: Invite participant
1403
- join_user_group: Request to join group
1404
- leave_user_group: Leave group
1405
- manage_user_group_admins: Manage admins
1406
- manage_user_group_users: Manage members
1407
- resend_email_confirmation_instructions: Resend email confirmation instructions
1408
1431
  reported_mailer:
1409
1432
  hide:
1433
+ content: Reported content
1434
+ details: Details
1410
1435
  hello: Hello %{name},
1411
1436
  manage_moderations: Manage moderations
1437
+ participatory_space: Participatory space
1438
+ reason: Reason
1412
1439
  report_html: <p>The following <a href="%{url}">content</a> has been hidden automatically.</p>
1413
1440
  subject: A resource has been hidden automatically
1414
1441
  report:
@@ -1428,6 +1455,8 @@ en:
1428
1455
  create:
1429
1456
  error: An error ocurred while creating the report. Please, try it again.
1430
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
1431
1460
  resource_endorsements:
1432
1461
  create:
1433
1462
  error: There was a problem during the endorsement action.
@@ -1496,14 +1525,13 @@ en:
1496
1525
  flag_user_modal:
1497
1526
  already_reported: This content is already reported and it will be reviewed by an admin.
1498
1527
  block: Block this participant
1499
- close: Close
1500
- description: What is inappropriate about the user?
1528
+ description: What is inappropriate about this participant?
1501
1529
  does_not_belong: Contains illegal activity, suicide threats, personal information, or something else you think does not belong on %{organization_name}.
1502
1530
  hide: Hide all their contents
1503
1531
  offensive: Contains racism, sexism, slurs, personal attacks, death threats, suicide requests or any form of hate speech.
1504
1532
  report: Report
1505
1533
  spam: Contains clickbait, advertising, scams or script bots.
1506
- title: Report inappropriate User
1534
+ title: Report inappropriate participant
1507
1535
  floating_help:
1508
1536
  help: Help
1509
1537
  follow_button:
@@ -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