decidim-admin 0.26.4 → 0.26.5

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 +15 -4
  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 +15 -4
  19. data/config/locales/eu.yml +30 -11
  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 +16 -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 +16 -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 +9 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13ac5896fea1ac7be17c42b018f1d49ae8cf4e4da64e71f656673a98802e853f
4
- data.tar.gz: b2b3fd631d4cf7a420edb6fc2a323dd648bfa99d099c06d02c0f899faa383177
3
+ metadata.gz: b25e792cc39b3d34099ecaa597e1276fb57edd45ebb88029542789ea2bfe9169
4
+ data.tar.gz: 52c6be2188c53dbca507274c50a89ecc47a376a5cc49ac827fe17bc37df0c1b3
5
5
  SHA512:
6
- metadata.gz: a4a6d78053cd549ccfb1351e3b74c5a06e646662383d1a1cd20e2cfd2a27c5f1e0010b813f12951f64bae5dc935ad75e87d261e475c2ffbf0b23b91a2d41c015
7
- data.tar.gz: 9b2c0737a3b1256f27d0263196307eaf377a9313fcecd2f3aa87c3df13a900580273e9e247365d7b9e97dedb34844617cd98ad4a1cee6d4d0a53fbec018390fb
6
+ metadata.gz: 90617f1562b04639329aa21eb88a54cdb0e29e258754ea6385f648604f90682b4ad8f9d69dea344e98321dd7272da8fe90f444e86275568b0cc35a778186e48a
7
+ data.tar.gz: 6212034bacccfa62cacff1f1c326076f54a5a1bfb5a1127786cc0cad83b9a5bd96a4507535a1fe65365c0eeae0f94f1d20fc0f983aed822a7563f11b69134efd
@@ -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), notice: notice
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), notice: notice
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
  )
@@ -14,9 +14,8 @@ module Decidim
14
14
  # Returns a String.
15
15
  def bulk_categories_select(collection)
16
16
  categories = bulk_categories_for_select collection
17
- disabled = bulk_disabled_categories_for collection
18
17
  prompt = t("decidim.proposals.admin.proposals.index.change_category")
19
- select(:category, :id, options_for_select(categories, selected: [], disabled: disabled), prompt: prompt)
18
+ select(:category, :id, options_for_select(categories, selected: []), prompt: prompt)
20
19
  end
21
20
 
22
21
  def bulk_categories_for_select(scope)
@@ -39,10 +38,6 @@ module Decidim
39
38
  end
40
39
  end
41
40
 
42
- def bulk_disabled_categories_for(scope)
43
- scope.first_class.joins(:subcategories).pluck(:id)
44
- end
45
-
46
41
  # Public: Generates a select field with the components.
47
42
  #
48
43
  # 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?
@@ -78,6 +78,23 @@ module Decidim
78
78
  toggle_allow(user.admin? || space_allows_admin_access_to_current_action?)
79
79
  end
80
80
 
81
+ def apply_global_moderations_permission_for_admin!
82
+ return unless admin_terms_accepted?
83
+ return unless permission_action.subject == :global_moderation
84
+ return allow! if user.admin?
85
+
86
+ return allow! if Decidim.participatory_space_manifests.flat_map.any? do |manifest|
87
+ Decidim
88
+ .find_participatory_space_manifest(manifest.name)
89
+ .participatory_spaces
90
+ .call(user.organization)&.any? do |space|
91
+ space.respond_to?(:user_roles) && space.user_roles(:admin).where(user: user).or(space.user_roles(:moderator).where(user: user)).any?
92
+ end
93
+ end
94
+
95
+ disallow!
96
+ end
97
+
81
98
  def apply_newsletter_permissions_for_admin!
82
99
  return unless admin_terms_accepted?
83
100
  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) %>
@@ -10,34 +10,41 @@ ar:
10
10
  organization: المنظمة
11
11
  plural: صيغة الجمع
12
12
  attachment:
13
- attachment_collection_id: المجلد
13
+ attachment_collection_id: الحافظة
14
14
  description: الوصف
15
15
  file: ملف
16
16
  title: المُرفق أو اسم الصورة
17
+ weight: موضع الطلب
17
18
  attachment_collection:
18
19
  description: الوصف
19
20
  name: اسم
21
+ weight: موضع الطلب
20
22
  category:
21
23
  description: الوصف
22
24
  name: اسم
23
- parent_id: الأبوين
25
+ parent_id: الأصل
26
+ weight: موضع الطلب
24
27
  component:
25
28
  name: اسم
26
- published_at: نشرت في
29
+ published_at: نشر في
27
30
  weight: موضع الطلب
28
- id: هوية شخصية
31
+ external_domain:
32
+ value: القيمة
33
+ help_section:
34
+ content: المحتوى
35
+ id: المعرف ID
29
36
  import:
30
- user_group_id: إنشاء واردات ك
37
+ user_group_id: إنشاء الاستيرادات ك
31
38
  newsletter:
32
- body: المحتوى
39
+ body: النص
33
40
  subject: الموضوع
34
41
  organization:
35
42
  admin_terms_of_use_body: نص شروط الاستخدام للمدير
36
43
  alert_color: تنبيه
37
44
  available_authorizations: التراخيص المتاحة
38
45
  badges_enabled: تمكين الشارات
39
- comments_max_length: الحد الأقصى لطول التعليقات (اترك 0 لاستعمال للقيمة الافتراضية)
40
- cta_button_path: دعوة إلى العمل مسار زر
46
+ comments_max_length: الحد الأقصى لطول التعليقات (اترك 0 لاستعمال القيمة الافتراضية)
47
+ cta_button_path: مسار زر دعوة إلى العمل call to action
41
48
  cta_button_text: نص زر Call To Action
42
49
  customize_welcome_notification: تخصيص إشعار الترحيب
43
50
  default_locale: اللغة الافتراضية
@@ -928,7 +935,7 @@ ar:
928
935
  report_count: عد
929
936
  reportable_type: النوع
930
937
  reported_content_url: تم الإبلاغ عن عنوان URL للمحتوى
931
- reports: تقارير
938
+ reports: التقارير
932
939
  visit_url: زيارة العنوان الشبكي
933
940
  report:
934
941
  fields:
@@ -941,8 +948,6 @@ ar:
941
948
  layouts:
942
949
  decidim:
943
950
  admin:
944
- global_moderations:
945
- title: مُشرف عام
946
951
  newsletters:
947
952
  title: النشرات الإخبارية
948
953
  settings:
@@ -14,17 +14,24 @@ ca:
14
14
  description: Descripció
15
15
  file: Arxiu
16
16
  title: Nom de l'adjunt o imatge
17
+ weight: Ordre de posició
17
18
  attachment_collection:
18
19
  description: Descripció
19
20
  name: Nom
21
+ weight: Ordre de posició
20
22
  category:
21
23
  description: Descripció
22
24
  name: Nom
23
25
  parent_id: Pare
26
+ weight: Ordre de posició
24
27
  component:
25
28
  name: Nom
26
29
  published_at: Publicat el
27
30
  weight: Ordre de posició
31
+ external_domain:
32
+ value: Valor
33
+ help_section:
34
+ content: Contingut
28
35
  id: ID
29
36
  import:
30
37
  user_group_id: Importar com
@@ -92,6 +99,9 @@ ca:
92
99
  welcome_notification_body: Cos de la notificació de benvinguda
93
100
  welcome_notification_subject: Assumpte de la notificació de benvinguda
94
101
  youtube_handler: Nom d'usuària de YouTube
102
+ participatory_space_private_user:
103
+ email: Correu electrònic
104
+ name: Nom
95
105
  scope:
96
106
  code: Codi
97
107
  name: Nom
@@ -113,6 +123,7 @@ ca:
113
123
  show_in_footer: Mostra al peu de pàgina
114
124
  slug: Nom curt d'URL
115
125
  title: Títol
126
+ topic_id: Assumpte
116
127
  weight: Ordre de posició
117
128
  static_page_topic:
118
129
  description: Descripció
@@ -704,7 +715,7 @@ ca:
704
715
  select_recipients_to_deliver:
705
716
  all_spaces: Totes
706
717
  all_users_help: Envia el butlletí a tots els usuaris confimats.
707
- confirm_deliver: Estàs segura que vols enviar aquest butlletí? Aquesta acció no es pot desfer.
718
+ confirm_deliver: Segur que vols enviar aquest butlletí? Aquesta acció no es pot desfer.
708
719
  deliver: Enviar butlletí
709
720
  followers_help: Envia el butlletí a tots els usuaris confirmats que segueixin qualsevol dels espais participatius seleccionats a la llista.
710
721
  none: Cap
@@ -816,7 +827,7 @@ ca:
816
827
  inactive_content_blocks: Blocs de contingut inactiu
817
828
  organization_homepage_content_blocks:
818
829
  edit:
819
- update: Actualitza
830
+ update: Actualitzar
820
831
  participatory_space_private_users:
821
832
  create:
822
833
  error: S'ha produït un error en afegir una participant privada a aquest espai de participació.
@@ -1039,14 +1050,14 @@ ca:
1039
1050
  moderation:
1040
1051
  fields:
1041
1052
  created_at: Data de creació
1042
- deleted_resource: Elimina el recurs
1053
+ deleted_resource: Recurs eliminat
1043
1054
  hidden_at: Data d'ocultació
1044
1055
  participatory_space: Espai de participació
1045
1056
  report_count: Recompte
1046
1057
  reportable_id: ID
1047
1058
  reportable_type: Tipus
1048
1059
  reported_content_url: URL contingut del contingut reportat
1049
- reports: Denúncies
1060
+ reports: Informes
1050
1061
  visit_url: Visiteu l'URL
1051
1062
  report:
1052
1063
  fields:
@@ -14,17 +14,24 @@ cs:
14
14
  description: Popis
15
15
  file: Soubor
16
16
  title: Název přílohy nebo obrázku
17
+ weight: Pozice v řazení
17
18
  attachment_collection:
18
19
  description: Popis
19
20
  name: Název
21
+ weight: Pozice v řazení
20
22
  category:
21
23
  description: Popis
22
24
  name: Název
23
25
  parent_id: Nadřazená
26
+ weight: Pozice v řazení
24
27
  component:
25
28
  name: Název
26
29
  published_at: Publikováno v
27
30
  weight: Pozice v řazení
31
+ external_domain:
32
+ value: Hodnota
33
+ help_section:
34
+ content: Obsah
28
35
  id: ID
29
36
  import:
30
37
  user_group_id: Vytvořit importy jako
@@ -92,6 +99,9 @@ cs:
92
99
  welcome_notification_body: Tělo uvítacího oznámení
93
100
  welcome_notification_subject: Předmět uvítacího oznámení
94
101
  youtube_handler: YouTube handler
102
+ participatory_space_private_user:
103
+ email: E-mail
104
+ name: Název
95
105
  scope:
96
106
  code: Kód
97
107
  name: Název
@@ -113,6 +123,7 @@ cs:
113
123
  show_in_footer: Zobrazit v zápatí
114
124
  slug: URL slug
115
125
  title: Titul
126
+ topic_id: Téma
116
127
  weight: Pozice v řazení
117
128
  static_page_topic:
118
129
  description: Popis
@@ -184,6 +195,7 @@ cs:
184
195
  error: Při přijímání správcovských podmínek použití došlo k chybě.
185
196
  success: Skvělé! Přijali jste administrátorské podmínky použití.
186
197
  actions:
198
+ accept: Souhlasím s podmínkami
187
199
  are_you_sure: Opravdu chcete odmítnout Podmínky použití pro správce?
188
200
  refuse: Odmítnout administrátorské podmínky
189
201
  title: Souhlasit s podmínkami používání
@@ -1045,7 +1057,7 @@ cs:
1045
1057
  models:
1046
1058
  moderation:
1047
1059
  fields:
1048
- created_at: Datum vytvoření
1060
+ created_at: Datum vzniku
1049
1061
  deleted_resource: Smazaný dokument
1050
1062
  hidden_at: Skryté u
1051
1063
  participatory_space: Participativní prostor
@@ -1053,7 +1065,7 @@ cs:
1053
1065
  reportable_id: ID
1054
1066
  reportable_type: Typ
1055
1067
  reported_content_url: Oznámená adresa URL obsahu
1056
- reports: Zprávy
1068
+ reports: Hlášení
1057
1069
  visit_url: Navštívit URL
1058
1070
  report:
1059
1071
  fields:
@@ -14,17 +14,24 @@ de:
14
14
  description: Beschreibung
15
15
  file: Datei
16
16
  title: Anhang oder Bildname
17
+ weight: Reihenfolge
17
18
  attachment_collection:
18
19
  description: Beschreibung
19
20
  name: Name
21
+ weight: Reihenfolge
20
22
  category:
21
23
  description: Beschreibung
22
24
  name: Name
23
25
  parent_id: Übergeordnete Kategorie
26
+ weight: Reihenfolge
24
27
  component:
25
28
  name: Name
26
29
  published_at: Veröffentlicht unter
27
- weight: Bestellposition
30
+ weight: Reihenfolge
31
+ external_domain:
32
+ value: Wert
33
+ help_section:
34
+ content: Inhalt
28
35
  id: ID
29
36
  import:
30
37
  user_group_id: Importierte Inhalte erstellen als
@@ -92,6 +99,9 @@ de:
92
99
  welcome_notification_body: Text der Willkommens-Benachrichtigung
93
100
  welcome_notification_subject: Betreff der Willkommens-Benachrichtigung
94
101
  youtube_handler: YouTube-Handler
102
+ participatory_space_private_user:
103
+ email: E-Mail
104
+ name: Name
95
105
  scope:
96
106
  code: Code
97
107
  name: Name
@@ -113,12 +123,13 @@ de:
113
123
  show_in_footer: In der Fußzeile anzeigen
114
124
  slug: URL-Block
115
125
  title: Titel
116
- weight: Bestellposition
126
+ topic_id: Thema
127
+ weight: Reihenfolge
117
128
  static_page_topic:
118
129
  description: Beschreibung
119
130
  show_in_footer: In der Fußzeile anzeigen
120
131
  title: Titel
121
- weight: Bestellposition
132
+ weight: Reihenfolge
122
133
  user_group_csv_verification:
123
134
  file: Datei
124
135
  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
@@ -14,17 +14,24 @@ es-MX:
14
14
  description: Descripción
15
15
  file: Archivo
16
16
  title: Nombre del adjunto o imagen
17
+ weight: Orden de posición
17
18
  attachment_collection:
18
19
  description: Descripción
19
20
  name: Nombre
21
+ weight: Orden de posición
20
22
  category:
21
23
  description: Descripción
22
24
  name: Nombre
23
25
  parent_id: Superior
26
+ weight: Orden de posición
24
27
  component:
25
28
  name: Nombre
26
29
  published_at: Publicado en
27
30
  weight: Orden de posición
31
+ external_domain:
32
+ value: Valor
33
+ help_section:
34
+ content: Contenido
28
35
  id: ID
29
36
  import:
30
37
  user_group_id: Importar como
@@ -92,6 +99,9 @@ es-MX:
92
99
  welcome_notification_body: Cuerpo del mensaje de notificación de bienvenida
93
100
  welcome_notification_subject: Asunto del mensaje de notificación de bienvenida
94
101
  youtube_handler: Nombre de YouTube
102
+ participatory_space_private_user:
103
+ email: Correo electrónico
104
+ name: Nombre
95
105
  scope:
96
106
  code: Código
97
107
  name: Nombre
@@ -113,6 +123,7 @@ es-MX:
113
123
  show_in_footer: Mostrar en el pie de página
114
124
  slug: Texto corto de URL
115
125
  title: Título
126
+ topic_id: Asunto
116
127
  weight: Orden de posición
117
128
  static_page_topic:
118
129
  description: Descripción
@@ -1039,14 +1050,14 @@ es-MX:
1039
1050
  moderation:
1040
1051
  fields:
1041
1052
  created_at: Fecha de creación
1042
- deleted_resource: Eliminar recurso
1053
+ deleted_resource: Recurso eliminado
1043
1054
  hidden_at: Fecha de ocultación
1044
1055
  participatory_space: Espacio participativo
1045
1056
  report_count: Recuento
1046
1057
  reportable_id: ID
1047
1058
  reportable_type: Tipo
1048
1059
  reported_content_url: URL del contenido reportado
1049
- reports: Denuncias
1060
+ reports: Informes
1050
1061
  visit_url: Visita la URL
1051
1062
  report:
1052
1063
  fields:
@@ -14,17 +14,24 @@ es-PY:
14
14
  description: Descripción
15
15
  file: Archivo
16
16
  title: Nombre del adjunto o imagen
17
+ weight: Orden de posición
17
18
  attachment_collection:
18
19
  description: Descripción
19
20
  name: Nombre
21
+ weight: Orden de posición
20
22
  category:
21
23
  description: Descripción
22
24
  name: Nombre
23
25
  parent_id: Superior
26
+ weight: Orden de posición
24
27
  component:
25
28
  name: Nombre
26
29
  published_at: Publicado en
27
30
  weight: Orden de posición
31
+ external_domain:
32
+ value: Valor
33
+ help_section:
34
+ content: Contenido
28
35
  id: ID
29
36
  import:
30
37
  user_group_id: Importar como
@@ -92,6 +99,9 @@ es-PY:
92
99
  welcome_notification_body: Cuerpo del mensaje de notificación de bienvenida
93
100
  welcome_notification_subject: Asunto del mensaje de notificación de bienvenida
94
101
  youtube_handler: Nombre de YouTube
102
+ participatory_space_private_user:
103
+ email: Correo electrónico
104
+ name: Nombre
95
105
  scope:
96
106
  code: Código
97
107
  name: Nombre
@@ -113,6 +123,7 @@ es-PY:
113
123
  show_in_footer: Mostrar en el pie de página
114
124
  slug: Texto corto de URL
115
125
  title: Título
126
+ topic_id: Asunto
116
127
  weight: Orden de posición
117
128
  static_page_topic:
118
129
  description: Descripción
@@ -1039,14 +1050,14 @@ es-PY:
1039
1050
  moderation:
1040
1051
  fields:
1041
1052
  created_at: Fecha de creación
1042
- deleted_resource: Eliminar recurso
1053
+ deleted_resource: Recurso eliminado
1043
1054
  hidden_at: Fecha de ocultación
1044
1055
  participatory_space: Espacio participativo
1045
1056
  report_count: Recuento
1046
1057
  reportable_id: ID
1047
1058
  reportable_type: Tipo
1048
1059
  reported_content_url: URL del contenido reportado
1049
- reports: Denuncias
1060
+ reports: Informes
1050
1061
  visit_url: Visita la URL
1051
1062
  report:
1052
1063
  fields: