decidim-admin 0.27.1 → 0.27.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of decidim-admin might be problematic. Click here for more details.

Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/app/commands/decidim/admin/unblock_user.rb +1 -1
  3. data/app/controllers/decidim/admin/block_user_controller.rb +3 -3
  4. data/app/controllers/decidim/admin/newsletter_templates_controller.rb +1 -1
  5. data/app/controllers/decidim/admin/newsletters_controller.rb +1 -1
  6. data/app/forms/decidim/admin/block_user_form.rb +2 -2
  7. data/app/helpers/decidim/admin/bulk_actions_helper.rb +1 -6
  8. data/app/models/decidim/admin/fake_newsletter.rb +20 -0
  9. data/app/permissions/decidim/admin/permissions.rb +18 -1
  10. data/app/views/decidim/admin/moderated_users/index.html.erb +1 -1
  11. data/config/locales/ar.yml +16 -11
  12. data/config/locales/ca.yml +16 -5
  13. data/config/locales/cs.yml +14 -2
  14. data/config/locales/de.yml +14 -3
  15. data/config/locales/en.yml +11 -0
  16. data/config/locales/es-MX.yml +13 -2
  17. data/config/locales/es-PY.yml +13 -2
  18. data/config/locales/es.yml +16 -5
  19. data/config/locales/eu.yml +32 -9
  20. data/config/locales/fi-plain.yml +13 -2
  21. data/config/locales/fi.yml +15 -4
  22. data/config/locales/fr-CA.yml +12 -1
  23. data/config/locales/fr.yml +12 -1
  24. data/config/locales/id-ID.yml +1 -1
  25. data/config/locales/is-IS.yml +4 -1
  26. data/config/locales/it.yml +1 -1
  27. data/config/locales/ja.yml +13 -1
  28. data/config/locales/ka-GE.yml +1 -0
  29. data/config/locales/lv.yml +1 -1
  30. data/config/locales/nl.yml +1 -1
  31. data/config/locales/pt-BR.yml +1 -1
  32. data/config/locales/ro-RO.yml +20 -4
  33. data/config/locales/ru.yml +4 -1
  34. data/config/locales/sk.yml +1 -1
  35. data/config/locales/sr-CS.yml +8 -0
  36. data/config/locales/sv.yml +24 -3
  37. data/config/locales/tr-TR.yml +2 -0
  38. data/config/locales/uk.yml +4 -1
  39. data/config/locales/zh-CN.yml +1 -1
  40. data/lib/decidim/admin/test/manage_moderations_examples.rb +7 -1
  41. data/lib/decidim/admin/version.rb +1 -1
  42. metadata +10 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 399cc5589db0458cee2bf851d0d1f0c29457ac3f93561ff225c56338f2b6ca45
4
- data.tar.gz: 648fe82cd00d83ed89aa09465ea446692fc8233c1149b02314ee343ef9cc9909
3
+ metadata.gz: 96f7bcf42a9c331fbef56cee041ad7950157b1f5d1a3080fdcb0c144e812608e
4
+ data.tar.gz: 98476b2e39ac843d547b06c8a13727f1b2a3b53b7cca810aeab9a288ae5b9c19
5
5
  SHA512:
6
- metadata.gz: 876ed91ecd9d55bab82bb452e9a0d49b7598c33aa01bc6a5681725a761598664f5742471322f7a9ddaf1e9f37ba1e4086fa07d823722fc5282e793229f65c92b
7
- data.tar.gz: 69a61b39d4b00f36a1e43fd0d5e9521e7e8bbd77ca159b49d56196a8565b4c0517e6298e4dde3acbcb4b6c6c5bac5d1f74e836c0af027d3f7e9e9a368bfde709
6
+ metadata.gz: d1b7a5302a53fc2ae93cd6ed4c47665b317f8ff8ad049057d8df7c15574ed6e9ac6af8d16356cb8c31611532c46352b69d2e4c4efa1c1551b11f7f1a8a8f567d
7
+ data.tar.gz: 86b7067f4605ba15733b3c29873563c94d2c51023d92c309119c73a9a50acb5cdebbc9277c0927616250c3a54b1fc293aed8c3d0d33e4f58d2bcf5f43742a79f
@@ -39,7 +39,7 @@ module Decidim
39
39
  @blocked_user.blocked = false
40
40
  @blocked_user.blocked_at = nil
41
41
  @blocked_user.block_id = nil
42
- @blocked_user.name = @blocked_user.user_name
42
+ @blocked_user.name = @blocked_user.extended_data["user_name"]
43
43
  @blocked_user.save!
44
44
  end
45
45
  end
@@ -21,7 +21,7 @@ module Decidim
21
21
  BlockUser.call(@form) do
22
22
  on(:ok) do
23
23
  flash[:notice] = I18n.t("officializations.block.success", scope: "decidim.admin")
24
- redirect_to officializations_path(q: { name_or_nickname_or_email_cont: user.name }), notice: notice
24
+ redirect_to moderated_users_path(blocked: true)
25
25
  end
26
26
 
27
27
  on(:invalid) do
@@ -44,13 +44,13 @@ module Decidim
44
44
  end
45
45
  end
46
46
 
47
- redirect_to officializations_path(q: { name_or_nickname_or_email_cont: user.name }), notice: notice
47
+ redirect_to moderated_users_path(blocked: false)
48
48
  end
49
49
 
50
50
  private
51
51
 
52
52
  def user
53
- @user ||= Decidim::User.find_by(
53
+ @user ||= Decidim::UserBaseEntity.find_by(
54
54
  id: params[:user_id],
55
55
  organization: current_organization
56
56
  )
@@ -15,7 +15,7 @@ module Decidim
15
15
  def show; end
16
16
 
17
17
  def preview
18
- email = NewsletterMailer.newsletter(current_user, fake_newsletter)
18
+ email = NewsletterMailer.newsletter(current_user, fake_newsletter, preview: true)
19
19
  Premailer::Rails::Hook.perform(email)
20
20
  render html: email.html_part.body.decoded.html_safe
21
21
  end
@@ -28,7 +28,7 @@ module Decidim
28
28
  def preview
29
29
  enforce_permission_to :read, :newsletter, newsletter: newsletter
30
30
 
31
- email = NewsletterMailer.newsletter(current_user, newsletter)
31
+ email = NewsletterMailer.newsletter(current_user, newsletter, preview: true)
32
32
  Premailer::Rails::Hook.perform(email)
33
33
  render html: email.html_part.body.decoded.html_safe
34
34
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Decidim
4
4
  module Admin
5
- # A form object used to officialize users from the admin dashboard.
5
+ # A form object used to block users or user groups on the admin dashboard.
6
6
  class BlockUserForm < Form
7
7
  attribute :user_id, Integer
8
8
  attribute :justification, String
@@ -15,7 +15,7 @@ module Decidim
15
15
  end
16
16
 
17
17
  def user
18
- @user ||= Decidim::User.find_by(
18
+ @user ||= Decidim::UserBaseEntity.find_by(
19
19
  id: user_id,
20
20
  organization: current_organization
21
21
  )
@@ -10,9 +10,8 @@ module Decidim
10
10
  # Returns a String.
11
11
  def bulk_categories_select(collection)
12
12
  categories = bulk_categories_for_select collection
13
- disabled = bulk_disabled_categories_for collection
14
13
  prompt = t("decidim.proposals.admin.proposals.index.change_category")
15
- select(:category, :id, options_for_select(categories, selected: [], disabled: disabled), prompt: prompt)
14
+ select(:category, :id, options_for_select(categories, selected: []), prompt: prompt)
16
15
  end
17
16
 
18
17
  def bulk_categories_for_select(scope)
@@ -35,10 +34,6 @@ module Decidim
35
34
  end
36
35
  end
37
36
 
38
- def bulk_disabled_categories_for(scope)
39
- scope.first_class.joins(:subcategories).pluck(:id)
40
- end
41
-
42
37
  # Public: Generates a select field with the components.
43
38
  #
44
39
  # siblings - A collection of components.
@@ -41,6 +41,26 @@ module Decidim
41
41
  nil
42
42
  end
43
43
 
44
+ def draft?
45
+ true
46
+ end
47
+
48
+ def url(**_)
49
+ "#"
50
+ end
51
+
52
+ def notifications_settings_url(**_)
53
+ "#"
54
+ end
55
+
56
+ def unsubscribe_newsletters_url(**_)
57
+ "#"
58
+ end
59
+
60
+ def organization_official_url
61
+ "#"
62
+ end
63
+
44
64
  private
45
65
 
46
66
  attr_reader :organization, :manifest
@@ -29,7 +29,7 @@ module Decidim
29
29
  read_admin_dashboard_action?
30
30
  apply_newsletter_permissions_for_admin!
31
31
 
32
- allow! if permission_action.subject == :global_moderation && admin_terms_accepted?
32
+ apply_global_moderations_permission_for_admin!
33
33
 
34
34
  if user.admin? && admin_terms_accepted?
35
35
  allow! if read_admin_log_action?
@@ -79,6 +79,23 @@ module Decidim
79
79
  toggle_allow(user.admin? || space_allows_admin_access_to_current_action?)
80
80
  end
81
81
 
82
+ def apply_global_moderations_permission_for_admin!
83
+ return unless admin_terms_accepted?
84
+ return unless permission_action.subject == :global_moderation
85
+ return allow! if user.admin?
86
+
87
+ return allow! if Decidim.participatory_space_manifests.flat_map.any? do |manifest|
88
+ Decidim
89
+ .find_participatory_space_manifest(manifest.name)
90
+ .participatory_spaces
91
+ .call(user.organization)&.any? do |space|
92
+ space.respond_to?(:user_roles) && space.user_roles(:admin).where(user: user).or(space.user_roles(:moderator).where(user: user)).any?
93
+ end
94
+ end
95
+
96
+ disallow!
97
+ end
98
+
82
99
  def apply_newsletter_permissions_for_admin!
83
100
  return unless admin_terms_accepted?
84
101
  return unless permission_action.subject == :newsletter
@@ -60,7 +60,7 @@
60
60
  </td>
61
61
 
62
62
  <td class="actions">
63
- <% if allowed_to?(:unreport, :moderate_users) %>
63
+ <% if !moderation.user.blocked? && allowed_to?(:unreport, :moderate_users) %>
64
64
  <%= icon_link_to "action-undo", ignore_moderated_user_path(id: moderation), t(".actions.unreport"), class: "action-icon--unreport", method: :put %>
65
65
  <% end %>
66
66
  <% if allowed_to?(:block, :moderate_users) %>
@@ -11,34 +11,41 @@ ar:
11
11
  organization: المنظمة
12
12
  plural: صيغة الجمع
13
13
  attachment:
14
- attachment_collection_id: المجلد
14
+ attachment_collection_id: الحافظة
15
15
  description: الوصف
16
16
  file: ملف
17
17
  title: المُرفق أو اسم الصورة
18
+ weight: موضع الطلب
18
19
  attachment_collection:
19
20
  description: الوصف
20
21
  name: اسم
22
+ weight: موضع الطلب
21
23
  category:
22
24
  description: الوصف
23
25
  name: اسم
24
- parent_id: الأبوين
26
+ parent_id: الأصل
27
+ weight: موضع الطلب
25
28
  component:
26
29
  name: اسم
27
- published_at: نشرت في
30
+ published_at: نشر في
28
31
  weight: موضع الطلب
29
- id: هوية شخصية
32
+ external_domain:
33
+ value: القيمة
34
+ help_section:
35
+ content: المحتوى
36
+ id: المعرف ID
30
37
  import:
31
- user_group_id: إنشاء واردات ك
38
+ user_group_id: إنشاء الاستيرادات ك
32
39
  newsletter:
33
- body: المحتوى
40
+ body: النص
34
41
  subject: الموضوع
35
42
  organization:
36
43
  admin_terms_of_use_body: نص شروط الاستخدام للمدير
37
44
  alert_color: تنبيه
38
45
  available_authorizations: التراخيص المتاحة
39
46
  badges_enabled: تمكين الشارات
40
- comments_max_length: الحد الأقصى لطول التعليقات (اترك 0 لاستعمال للقيمة الافتراضية)
41
- cta_button_path: دعوة إلى العمل مسار زر
47
+ comments_max_length: الحد الأقصى لطول التعليقات (اترك 0 لاستعمال القيمة الافتراضية)
48
+ cta_button_path: مسار زر دعوة إلى العمل call to action
42
49
  cta_button_text: نص زر Call To Action
43
50
  customize_welcome_notification: تخصيص إشعار الترحيب
44
51
  default_locale: اللغة الافتراضية
@@ -939,7 +946,7 @@ ar:
939
946
  report_count: عد
940
947
  reportable_type: النوع
941
948
  reported_content_url: تم الإبلاغ عن عنوان URL للمحتوى
942
- reports: تقارير
949
+ reports: التقارير
943
950
  visit_url: زيارة العنوان الشبكي
944
951
  report:
945
952
  fields:
@@ -952,8 +959,6 @@ ar:
952
959
  layouts:
953
960
  decidim:
954
961
  admin:
955
- global_moderations:
956
- title: مُشرف عام
957
962
  newsletters:
958
963
  title: النشرات الإخبارية
959
964
  settings:
@@ -15,17 +15,24 @@ ca:
15
15
  description: Descripció
16
16
  file: Arxiu
17
17
  title: Nom de l'adjunt o imatge
18
+ weight: Ordre de posició
18
19
  attachment_collection:
19
20
  description: Descripció
20
21
  name: Nom
22
+ weight: Ordre de posició
21
23
  category:
22
24
  description: Descripció
23
25
  name: Nom
24
26
  parent_id: Pare
27
+ weight: Ordre de posició
25
28
  component:
26
29
  name: Nom
27
30
  published_at: Publicat el
28
31
  weight: Ordre de posició
32
+ external_domain:
33
+ value: Valor
34
+ help_section:
35
+ content: Contingut
29
36
  id: ID
30
37
  import:
31
38
  user_group_id: Importar com
@@ -93,6 +100,9 @@ ca:
93
100
  welcome_notification_body: Cos de la notificació de benvinguda
94
101
  welcome_notification_subject: Assumpte de la notificació de benvinguda
95
102
  youtube_handler: Nom d'usuària de YouTube
103
+ participatory_space_private_user:
104
+ email: Correu electrònic
105
+ name: Nom
96
106
  scope:
97
107
  code: Codi
98
108
  name: Nom
@@ -114,6 +124,7 @@ ca:
114
124
  show_in_footer: Mostra al peu de pàgina
115
125
  slug: Nom curt d'URL
116
126
  title: Títol
127
+ topic_id: Assumpte
117
128
  weight: Ordre de posició
118
129
  static_page_topic:
119
130
  description: Descripció
@@ -715,7 +726,7 @@ ca:
715
726
  select_recipients_to_deliver:
716
727
  all_spaces: Totes
717
728
  all_users_help: Envia el butlletí a tots els usuaris confimats.
718
- confirm_deliver: Estàs segura que vols enviar aquest butlletí? Aquesta acció no es pot desfer.
729
+ confirm_deliver: Segur que vols enviar aquest butlletí? Aquesta acció no es pot desfer.
719
730
  deliver: Enviar butlletí
720
731
  followers_help: Envia el butlletí a tots els usuaris confirmats que segueixin qualsevol dels espais participatius seleccionats a la llista.
721
732
  none: Cap
@@ -827,7 +838,7 @@ ca:
827
838
  inactive_content_blocks: Blocs de contingut inactiu
828
839
  organization_homepage_content_blocks:
829
840
  edit:
830
- update: Actualitza
841
+ update: Actualitzar
831
842
  participatory_space_private_users:
832
843
  create:
833
844
  error: S'ha produït un error en afegir una participant privada a aquest espai de participació.
@@ -848,7 +859,7 @@ ca:
848
859
  new:
849
860
  destroy:
850
861
  button: Esborrar totes les participants privades
851
- confirm: Estàs segura que vols esborrar totes les participants privades? Aquesta acció no es pot desfer, no podràs recuperar-les.
862
+ confirm: Segur que vols esborrar totes les participants privades? Aquesta acció no es pot desfer, no podràs recuperar-les.
852
863
  empty: No hi ha participants privades.
853
864
  explanation: Hi ha %{count} participant/s privada/ades.
854
865
  title: Esborrar les participants privades
@@ -1065,14 +1076,14 @@ ca:
1065
1076
  moderation:
1066
1077
  fields:
1067
1078
  created_at: Data de creació
1068
- deleted_resource: Elimina el recurs
1079
+ deleted_resource: Recurs eliminat
1069
1080
  hidden_at: Data d'ocultació
1070
1081
  participatory_space: Espai de participació
1071
1082
  report_count: Recompte
1072
1083
  reportable_id: ID
1073
1084
  reportable_type: Tipus
1074
1085
  reported_content_url: URL contingut del contingut reportat
1075
- reports: Denúncies
1086
+ reports: Informes
1076
1087
  visit_url: Visiteu l'URL
1077
1088
  report:
1078
1089
  fields:
@@ -15,17 +15,24 @@ cs:
15
15
  description: Popis
16
16
  file: Soubor
17
17
  title: Název přílohy nebo obrázku
18
+ weight: Pozice v řazení
18
19
  attachment_collection:
19
20
  description: Popis
20
21
  name: Název
22
+ weight: Pozice v řazení
21
23
  category:
22
24
  description: Popis
23
25
  name: Název
24
26
  parent_id: Nadřazená
27
+ weight: Pozice v řazení
25
28
  component:
26
29
  name: Název
27
30
  published_at: Publikováno v
28
31
  weight: Pozice v řazení
32
+ external_domain:
33
+ value: Hodnota
34
+ help_section:
35
+ content: Obsah
29
36
  id: ID
30
37
  import:
31
38
  user_group_id: Vytvořit importy jako
@@ -93,6 +100,9 @@ cs:
93
100
  welcome_notification_body: Tělo uvítacího oznámení
94
101
  welcome_notification_subject: Předmět uvítacího oznámení
95
102
  youtube_handler: YouTube handler
103
+ participatory_space_private_user:
104
+ email: E-mail
105
+ name: Název
96
106
  scope:
97
107
  code: Kód
98
108
  name: Název
@@ -114,6 +124,7 @@ cs:
114
124
  show_in_footer: Zobrazit v zápatí
115
125
  slug: URL slug
116
126
  title: Titul
127
+ topic_id: Téma
117
128
  weight: Pozice v řazení
118
129
  static_page_topic:
119
130
  description: Popis
@@ -193,6 +204,7 @@ cs:
193
204
  error: Při přijímání správcovských podmínek použití došlo k chybě.
194
205
  success: Skvělé! Přijali jste administrátorské podmínky použití.
195
206
  actions:
207
+ accept: Souhlasím s podmínkami
196
208
  are_you_sure: Opravdu chcete odmítnout Podmínky použití pro správce?
197
209
  refuse: Odmítnout administrátorské podmínky
198
210
  title: Souhlasit s podmínkami používání
@@ -1073,7 +1085,7 @@ cs:
1073
1085
  models:
1074
1086
  moderation:
1075
1087
  fields:
1076
- created_at: Datum vytvoření
1088
+ created_at: Datum vzniku
1077
1089
  deleted_resource: Smazaný dokument
1078
1090
  hidden_at: Skryté u
1079
1091
  participatory_space: Participativní prostor
@@ -1081,7 +1093,7 @@ cs:
1081
1093
  reportable_id: ID
1082
1094
  reportable_type: Typ
1083
1095
  reported_content_url: Oznámená adresa URL obsahu
1084
- reports: Zprávy
1096
+ reports: Hlášení
1085
1097
  visit_url: Navštívit URL
1086
1098
  report:
1087
1099
  fields:
@@ -15,17 +15,24 @@ de:
15
15
  description: Beschreibung
16
16
  file: Datei
17
17
  title: Anhang oder Bildname
18
+ weight: Reihenfolge
18
19
  attachment_collection:
19
20
  description: Beschreibung
20
21
  name: Name
22
+ weight: Reihenfolge
21
23
  category:
22
24
  description: Beschreibung
23
25
  name: Name
24
26
  parent_id: Übergeordnete Kategorie
27
+ weight: Reihenfolge
25
28
  component:
26
29
  name: Name
27
30
  published_at: Veröffentlicht unter
28
- weight: Bestellposition
31
+ weight: Reihenfolge
32
+ external_domain:
33
+ value: Wert
34
+ help_section:
35
+ content: Inhalt
29
36
  id: ID
30
37
  import:
31
38
  user_group_id: Importierte Inhalte erstellen als
@@ -93,6 +100,9 @@ de:
93
100
  welcome_notification_body: Text der Willkommens-Benachrichtigung
94
101
  welcome_notification_subject: Betreff der Willkommens-Benachrichtigung
95
102
  youtube_handler: YouTube-Handler
103
+ participatory_space_private_user:
104
+ email: E-Mail
105
+ name: Name
96
106
  scope:
97
107
  code: Code
98
108
  name: Name
@@ -114,12 +124,13 @@ de:
114
124
  show_in_footer: In der Fußzeile anzeigen
115
125
  slug: URL-Block
116
126
  title: Titel
117
- weight: Bestellposition
127
+ topic_id: Thema
128
+ weight: Reihenfolge
118
129
  static_page_topic:
119
130
  description: Beschreibung
120
131
  show_in_footer: In der Fußzeile anzeigen
121
132
  title: Titel
122
- weight: Bestellposition
133
+ weight: Reihenfolge
123
134
  user_group_csv_verification:
124
135
  file: Datei
125
136
  errors:
@@ -15,17 +15,24 @@ en:
15
15
  description: Description
16
16
  file: File
17
17
  title: Attachment or image name
18
+ weight: Order position
18
19
  attachment_collection:
19
20
  description: Description
20
21
  name: Name
22
+ weight: Order position
21
23
  category:
22
24
  description: Description
23
25
  name: Name
24
26
  parent_id: Parent
27
+ weight: Order position
25
28
  component:
26
29
  name: Name
27
30
  published_at: Published at
28
31
  weight: Order position
32
+ external_domain:
33
+ value: Value
34
+ help_section:
35
+ content: Content
29
36
  id: ID
30
37
  import:
31
38
  user_group_id: Create imports as
@@ -93,6 +100,9 @@ en:
93
100
  welcome_notification_body: Welcome notification body
94
101
  welcome_notification_subject: Welcome notification subject
95
102
  youtube_handler: YouTube handler
103
+ participatory_space_private_user:
104
+ email: Email
105
+ name: Name
96
106
  scope:
97
107
  code: Code
98
108
  name: Name
@@ -114,6 +124,7 @@ en:
114
124
  show_in_footer: Show in the footer
115
125
  slug: URL slug
116
126
  title: Title
127
+ topic_id: Topic
117
128
  weight: Order position
118
129
  static_page_topic:
119
130
  description: Description
@@ -15,17 +15,24 @@ es-MX:
15
15
  description: Descripción
16
16
  file: Archivo
17
17
  title: Nombre del adjunto o imagen
18
+ weight: Orden de posición
18
19
  attachment_collection:
19
20
  description: Descripción
20
21
  name: Nombre
22
+ weight: Orden de posición
21
23
  category:
22
24
  description: Descripción
23
25
  name: Nombre
24
26
  parent_id: Superior
27
+ weight: Orden de posición
25
28
  component:
26
29
  name: Nombre
27
30
  published_at: Publicado en
28
31
  weight: Orden de posición
32
+ external_domain:
33
+ value: Valor
34
+ help_section:
35
+ content: Contenido
29
36
  id: ID
30
37
  import:
31
38
  user_group_id: Importar como
@@ -93,6 +100,9 @@ es-MX:
93
100
  welcome_notification_body: Cuerpo del mensaje de notificación de bienvenida
94
101
  welcome_notification_subject: Asunto del mensaje de notificación de bienvenida
95
102
  youtube_handler: Nombre de YouTube
103
+ participatory_space_private_user:
104
+ email: Correo electrónico
105
+ name: Nombre
96
106
  scope:
97
107
  code: Código
98
108
  name: Nombre
@@ -114,6 +124,7 @@ es-MX:
114
124
  show_in_footer: Mostrar en el pie de página
115
125
  slug: Texto corto de URL
116
126
  title: Título
127
+ topic_id: Asunto
117
128
  weight: Orden de posición
118
129
  static_page_topic:
119
130
  description: Descripción
@@ -1065,14 +1076,14 @@ es-MX:
1065
1076
  moderation:
1066
1077
  fields:
1067
1078
  created_at: Fecha de creación
1068
- deleted_resource: Eliminar recurso
1079
+ deleted_resource: Recurso eliminado
1069
1080
  hidden_at: Fecha de ocultación
1070
1081
  participatory_space: Espacio participativo
1071
1082
  report_count: Recuento
1072
1083
  reportable_id: ID
1073
1084
  reportable_type: Tipo
1074
1085
  reported_content_url: URL del contenido reportado
1075
- reports: Denuncias
1086
+ reports: Informes
1076
1087
  visit_url: Visita la URL
1077
1088
  report:
1078
1089
  fields:
@@ -15,17 +15,24 @@ es-PY:
15
15
  description: Descripción
16
16
  file: Archivo
17
17
  title: Nombre del adjunto o imagen
18
+ weight: Orden de posición
18
19
  attachment_collection:
19
20
  description: Descripción
20
21
  name: Nombre
22
+ weight: Orden de posición
21
23
  category:
22
24
  description: Descripción
23
25
  name: Nombre
24
26
  parent_id: Superior
27
+ weight: Orden de posición
25
28
  component:
26
29
  name: Nombre
27
30
  published_at: Publicado en
28
31
  weight: Orden de posición
32
+ external_domain:
33
+ value: Valor
34
+ help_section:
35
+ content: Contenido
29
36
  id: ID
30
37
  import:
31
38
  user_group_id: Importar como
@@ -93,6 +100,9 @@ es-PY:
93
100
  welcome_notification_body: Cuerpo del mensaje de notificación de bienvenida
94
101
  welcome_notification_subject: Asunto del mensaje de notificación de bienvenida
95
102
  youtube_handler: Nombre de YouTube
103
+ participatory_space_private_user:
104
+ email: Correo electrónico
105
+ name: Nombre
96
106
  scope:
97
107
  code: Código
98
108
  name: Nombre
@@ -114,6 +124,7 @@ es-PY:
114
124
  show_in_footer: Mostrar en el pie de página
115
125
  slug: Texto corto de URL
116
126
  title: Título
127
+ topic_id: Asunto
117
128
  weight: Orden de posición
118
129
  static_page_topic:
119
130
  description: Descripción
@@ -1065,14 +1076,14 @@ es-PY:
1065
1076
  moderation:
1066
1077
  fields:
1067
1078
  created_at: Fecha de creación
1068
- deleted_resource: Eliminar recurso
1079
+ deleted_resource: Recurso eliminado
1069
1080
  hidden_at: Fecha de ocultación
1070
1081
  participatory_space: Espacio participativo
1071
1082
  report_count: Recuento
1072
1083
  reportable_id: ID
1073
1084
  reportable_type: Tipo
1074
1085
  reported_content_url: URL del contenido reportado
1075
- reports: Denuncias
1086
+ reports: Informes
1076
1087
  visit_url: Visita la URL
1077
1088
  report:
1078
1089
  fields: