decidim-assemblies 0.29.0 → 0.29.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/decidim/assemblies/admin/assemblies_controller.rb +19 -4
  3. data/app/controllers/decidim/assemblies/admin/assembly_landing_page_content_blocks_controller.rb +6 -0
  4. data/app/forms/decidim/assemblies/admin/assembly_form.rb +8 -8
  5. data/app/models/decidim/assembly.rb +5 -0
  6. data/app/permissions/decidim/assemblies/permissions.rb +1 -1
  7. data/app/presenters/decidim/assemblies/assembly_presenter.rb +2 -2
  8. data/app/views/decidim/assemblies/admin/assemblies/index.html.erb +2 -2
  9. data/app/views/layouts/decidim/admin/assemblies.html.erb +1 -1
  10. data/config/locales/ar.yml +8 -7
  11. data/config/locales/bn-BD.yml +1 -0
  12. data/config/locales/bs-BA.yml +44 -0
  13. data/config/locales/ca.yml +6 -6
  14. data/config/locales/cs.yml +2 -2
  15. data/config/locales/de.yml +17 -17
  16. data/config/locales/es-MX.yml +4 -4
  17. data/config/locales/es-PY.yml +4 -4
  18. data/config/locales/es.yml +4 -4
  19. data/config/locales/eu.yml +46 -46
  20. data/config/locales/fi-plain.yml +5 -5
  21. data/config/locales/fi.yml +9 -9
  22. data/config/locales/fr-CA.yml +5 -5
  23. data/config/locales/fr.yml +5 -5
  24. data/config/locales/ga-IE.yml +2 -0
  25. data/config/locales/gl.yml +4 -2
  26. data/config/locales/he-IL.yml +169 -0
  27. data/config/locales/hu.yml +1 -1
  28. data/config/locales/id-ID.yml +5 -0
  29. data/config/locales/is-IS.yml +5 -5
  30. data/config/locales/it.yml +5 -3
  31. data/config/locales/ja.yml +1 -1
  32. data/config/locales/ko.yml +1 -8
  33. data/config/locales/lb.yml +9 -5
  34. data/config/locales/lt.yml +2 -2
  35. data/config/locales/lv.yml +5 -0
  36. data/config/locales/nl.yml +5 -3
  37. data/config/locales/no.yml +2 -0
  38. data/config/locales/pl.yml +2 -2
  39. data/config/locales/pt.yml +3 -1
  40. data/config/locales/ro-RO.yml +6 -2
  41. data/config/locales/ru.yml +6 -6
  42. data/config/locales/sk.yml +18 -0
  43. data/config/locales/sl.yml +15 -0
  44. data/config/locales/sq-AL.yml +3 -3
  45. data/config/locales/sv.yml +19 -19
  46. data/config/locales/tr-TR.yml +4 -4
  47. data/config/locales/uk.yml +5 -5
  48. data/config/locales/zh-CN.yml +5 -0
  49. data/config/locales/zh-TW.yml +1 -1
  50. data/decidim-assemblies.gemspec +1 -1
  51. data/lib/decidim/assemblies/version.rb +1 -1
  52. metadata +15 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 26df3251335c184f28dea2d92096db70e22d98d53ffea82b2d94ad4b2e94a2fd
4
- data.tar.gz: 4597fdb5ad6bde4ad46ea3287fe0f81bfd3aa529ad6ab51ce5f55459e87550bb
3
+ metadata.gz: b74ba273556ca0e94a759cbd5113716342eba68ac7f4ec0b259ae563167b3fb8
4
+ data.tar.gz: 9e44b00be96f1fe4c7a22558cea599aff5c40a681f1d506fae075cc00ed15fa1
5
5
  SHA512:
6
- metadata.gz: cc81845a9fd7f8434373f3401fbc232fff9a2430a6431bca5d91407317906260cf1d03dbcefcb2009ad9ce7fad6855d17b86856a14a12003062d313e9d38138f
7
- data.tar.gz: 486e927b0b2f90ef2ab0319285f7a2d1c465cf44c42ddb42f71dd2c45a14c018fdec78be35365410c982ebe2c3cb555d27e4da21fd0518d7959bbf2377e41f0f
6
+ metadata.gz: ae74d4d6e9ca6b7e1b50793ad96902846ae0cae14077cfded2e60fe85872c33c132d64c6e4a70d676fe430e3496facfaacfab77dd97fd9474dab5b19829d5ca1
7
+ data.tar.gz: 0fcb0bf1dcef6daec9b9f7d2c535a4733de1ca7b961ff56ced152cc68313a28e030e63e5331c0a6b51e448b6da2f0e39549308bc8baf894524fa230438038a48
@@ -17,13 +17,13 @@ module Decidim
17
17
  end
18
18
 
19
19
  def new
20
- enforce_permission_to :create, :assembly
20
+ enforce_permission_to :create, :assembly, assembly: parent_assembly
21
21
  @form = form(AssemblyForm).instance
22
22
  @form.parent_id = params[:parent_id]
23
23
  end
24
24
 
25
25
  def create
26
- enforce_permission_to :create, :assembly
26
+ enforce_permission_to :create, :assembly, assembly: parent_assembly
27
27
  @form = form(AssemblyForm).from_params(params)
28
28
 
29
29
  CreateAssembly.call(@form) do
@@ -66,7 +66,7 @@ module Decidim
66
66
  end
67
67
 
68
68
  def copy
69
- enforce_permission_to :create, :assembly
69
+ enforce_permission_to :create, :assembly, assembly: collection.find_by(id: params[:parent_id])
70
70
  end
71
71
 
72
72
  private
@@ -84,7 +84,22 @@ module Decidim
84
84
  alias current_participatory_space current_assembly
85
85
 
86
86
  def parent_assembly
87
- @parent_assembly ||= collection.find_by(id: ransack_params[:parent_id_eq])
87
+ @parent_assembly ||= collection.find_by(id: parent_assembly_id)
88
+ end
89
+
90
+ def parent_assembly_id
91
+ # Return the parent_id from Ransack parameters if it exists
92
+ return ransack_params[:parent_id_eq] if ransack_params[:parent_id_eq].present?
93
+
94
+ # If the assembly parameter is present, return its parent_id
95
+ return assembly_parent_id if params[:assembly].present?
96
+
97
+ # Otherwise, return the parent_id from the params hash
98
+ return params[:parent_id]
99
+ end
100
+
101
+ def assembly_parent_id
102
+ params[:assembly][:parent_id]
88
103
  end
89
104
 
90
105
  def assembly_params
@@ -10,6 +10,8 @@ module Decidim
10
10
 
11
11
  layout "decidim/admin/assemblies"
12
12
 
13
+ helper_method :parent_assembly
14
+
13
15
  private
14
16
 
15
17
  def content_block_scope
@@ -29,6 +31,10 @@ module Decidim
29
31
  def resource_landing_page_content_block_path
30
32
  assembly_landing_page_content_block_path(scoped_resource, params[:id])
31
33
  end
34
+
35
+ def parent_assembly
36
+ scoped_resource.parent
37
+ end
32
38
  end
33
39
  end
34
40
  end
@@ -14,23 +14,23 @@ module Decidim
14
14
 
15
15
  mimic :assembly
16
16
 
17
- translatable_attribute :composition, String
18
- translatable_attribute :closing_date_reason, String
17
+ translatable_attribute :composition, Decidim::Attributes::RichText
18
+ translatable_attribute :closing_date_reason, Decidim::Attributes::RichText
19
19
  translatable_attribute :created_by_other, String
20
- translatable_attribute :description, String
20
+ translatable_attribute :description, Decidim::Attributes::RichText
21
21
  translatable_attribute :developer_group, String
22
- translatable_attribute :internal_organisation, String
22
+ translatable_attribute :internal_organisation, Decidim::Attributes::RichText
23
23
  translatable_attribute :local_area, String
24
24
  translatable_attribute :meta_scope, String
25
25
  translatable_attribute :participatory_scope, String
26
26
  translatable_attribute :participatory_structure, String
27
- translatable_attribute :purpose_of_action, String
28
- translatable_attribute :short_description, String
29
- translatable_attribute :special_features, String
27
+ translatable_attribute :purpose_of_action, Decidim::Attributes::RichText
28
+ translatable_attribute :short_description, Decidim::Attributes::RichText
29
+ translatable_attribute :special_features, Decidim::Attributes::RichText
30
30
  translatable_attribute :subtitle, String
31
31
  translatable_attribute :target, String
32
32
  translatable_attribute :title, String
33
- translatable_attribute :announcement, String
33
+ translatable_attribute :announcement, Decidim::Attributes::RichText
34
34
 
35
35
  attribute :created_by, String
36
36
  attribute :facebook_handler, String
@@ -122,6 +122,11 @@ module Decidim
122
122
  Decidim::Assemblies::AdminLog::AssemblyPresenter
123
123
  end
124
124
 
125
+ # This is a overwrite for Decidim::ParticipatorySpaceResourceable.visible?
126
+ def visible?
127
+ published? && (!private_space? || (private_space? && is_transparent?))
128
+ end
129
+
125
130
  def hashtag
126
131
  attributes["hashtag"].to_s.delete("#")
127
132
  end
@@ -176,7 +176,7 @@ module Decidim
176
176
  return unless permission_action.action == :create &&
177
177
  permission_action.subject == :assembly
178
178
 
179
- toggle_allow(user.admin? || admin_assembly? || user_role == "admin")
179
+ toggle_allow(user.admin? || admin_assembly?)
180
180
  end
181
181
 
182
182
  def user_can_export_assembly?
@@ -6,11 +6,11 @@ module Decidim
6
6
  include Decidim::TranslationsHelper
7
7
 
8
8
  def hero_image_url
9
- assembly.attached_uploader(:hero_image).url(host: assembly.organization.host)
9
+ assembly.attached_uploader(:hero_image).url
10
10
  end
11
11
 
12
12
  def banner_image_url
13
- assembly.attached_uploader(:banner_image).url(host: assembly.organization.host)
13
+ assembly.attached_uploader(:banner_image).url
14
14
  end
15
15
 
16
16
  def area_name
@@ -77,7 +77,7 @@
77
77
  <% else %>
78
78
  <span class="action-space icon"></span>
79
79
  <% end %>
80
- <% if assembly.children.count.positive? || allowed_to?(:create, :assembly) %>
80
+ <% if assembly.children.count.positive? || allowed_to?(:read, :assembly, assembly:) %>
81
81
  <%= icon_link_to "government-line",
82
82
  url_for(query_params_with(parent_id_eq: assembly.id)),
83
83
  t("decidim.admin.titles.assemblies"),
@@ -85,7 +85,7 @@
85
85
  <% else %>
86
86
  <span class="action-space icon"></span>
87
87
  <% end %>
88
- <% if allowed_to? :copy, :assembly, assembly: assembly %>
88
+ <% if allowed_to? :copy, :assembly, assembly: assembly, assembly: parent_assembly %>
89
89
  <%= icon_link_to "file-copy-line", new_assembly_copy_path(assembly), t("actions.duplicate", scope: "decidim.admin"), class: "action-icon--copy" %>
90
90
  <% else %>
91
91
  <span class="action-space icon"></span>
@@ -1,6 +1,6 @@
1
1
  <% content_for :breadcrumb_context_menu do %>
2
2
  <div class="process-title-content-breadcrumb-container-right">
3
- <% if allowed_to? :create, :assembly %>
3
+ <% if allowed_to? :create, :assembly, assembly: parent_assembly %>
4
4
  <% link = defined?(parent_assembly) ? new_assembly_path(parent_id: parent_assembly&.id) : new_assembly_path %>
5
5
  <%= link_to link, class: "button button__sm button__transparent process-title-content-breadcrumb-container-right-link" do %>
6
6
  <%= icon "add-line", class: "w-4 h-4" %>
@@ -48,7 +48,7 @@ ar:
48
48
  promoted: سلط الضوء
49
49
  published_at: نشرت في
50
50
  purpose_of_action: الغرض من العمل
51
- scope_id: نطاق
51
+ scope_id: النطاق
52
52
  scopes_enabled: النطاقات المُفعّلَة
53
53
  short_description: وصف قصير
54
54
  slug: سبيكة العنوان الشبكي
@@ -187,7 +187,7 @@ ar:
187
187
  success: تم تحديث المشرف على هذه الجمعية بنجاح.
188
188
  filters:
189
189
  decidim_assemblies_type_id_eq:
190
- label: نوع الجمعية
190
+ label: نوع التجمع
191
191
  menu:
192
192
  assemblies: الجمعيات
193
193
  assemblies_submenu:
@@ -199,7 +199,7 @@ ar:
199
199
  categories: الفئات
200
200
  components: المكونات
201
201
  moderations: الإعتدال
202
- assemblies_types: نوع التجمّعات
202
+ assemblies_types: أنواع التجمّعات
203
203
  models:
204
204
  assemblies_types:
205
205
  fields:
@@ -207,6 +207,7 @@ ar:
207
207
  title: العنوان
208
208
  assembly:
209
209
  fields:
210
+ actions: الإجراءات
210
211
  created_at: تاريخ الإنشاء
211
212
  private: خاص
212
213
  promoted: سلط الضوء
@@ -218,7 +219,7 @@ ar:
218
219
  ceased_date: تاريخ التوقف
219
220
  designation_date: تاريخ التعيين
220
221
  full_name: الاسم
221
- position: موضع
222
+ position: الموقع
222
223
  name: عضو
223
224
  positions:
224
225
  other: آخر
@@ -313,9 +314,9 @@ ar:
313
314
  commission: اللجنة
314
315
  consultative_advisory: استشاري / الاستشارية
315
316
  executive: تنفيذية
316
- government: حكومية
317
+ government: الحكومية
317
318
  others: أخرى
318
- participatory: تشاركية
319
+ participatory: التشاركية
319
320
  working_group: فريق العمل
320
321
  content_blocks:
321
322
  children_assemblies:
@@ -345,7 +346,7 @@ ar:
345
346
  member_of:
346
347
  member_of: عضو في
347
348
  show:
348
- assembly_type: نوع الجمعية
349
+ assembly_type: نوع التجمع
349
350
  duration: المدة الزمنية
350
351
  private_space: هذه جمعية خاصة
351
352
  social_networks_title: زيارة التجمع على
@@ -0,0 +1 @@
1
+ bn:
@@ -0,0 +1,44 @@
1
+ ---
2
+ bs:
3
+ decidim:
4
+ admin:
5
+ actions:
6
+ new_assembly_type: Novi tip veća
7
+ assemblies_types:
8
+ create:
9
+ error: Nastao je problem pri stvaranju novog tipa veća.
10
+ success: Tip veća uspešno stvoren.
11
+ destroy:
12
+ success: Tip veća uspešno obrisan.
13
+ new:
14
+ title: Novi tip veća
15
+ update:
16
+ error: Nastao je problem pri ažuriranju ovog tipa veća.
17
+ success: Tip veća uspešno ažuriran.
18
+ menu:
19
+ assemblies_types: Tipovi veća
20
+ models:
21
+ assembly_user_role:
22
+ roles:
23
+ valuator: Procenjivač
24
+ titles:
25
+ assemblies_types: Tipovi veća
26
+ admin_log:
27
+ assembly_type:
28
+ create: "%{user_name} je stvorio tip veća %{resource_name}"
29
+ publish: "%{user_name} je objavio tip veća %{resource_name}"
30
+ unpublish: "%{user_name} je odustao od objavljivanja tipa veća %{resource_name}"
31
+ update: "%{user_name} je ažurirao tip veća %{resource_name}"
32
+ events:
33
+ assemblies:
34
+ create_assembly_member:
35
+ email_subject: Pozvani ste da postanete član veća %{resource_name}!
36
+ assembly:
37
+ role_assigned:
38
+ email_intro: Imenovani ste na funkciju %{role} veća %{resource_title}.
39
+ email_outro: Dobili ste ovo obaveštenje zbog toga što ste %{role} veća %{resource_title}.
40
+ email_subject: Imenovani ste na funkciju %{role} %{resource_title}.
41
+ log:
42
+ value_types:
43
+ assembly_type_presenter:
44
+ not_found: 'Ovaj tip veća nije pronađen u bazi podataka (ID: %{id})'
@@ -153,7 +153,7 @@ ca:
153
153
  success: El membre per a aquesta assemblea s'ha eliminat correctament.
154
154
  edit:
155
155
  title: Actualitzar membre de l'assemblea
156
- update: Actualitza
156
+ update: Actualitzar
157
157
  index:
158
158
  assembly_members_title: Membres de l'assemblea
159
159
  new:
@@ -206,7 +206,7 @@ ca:
206
206
  attachments: Adjunts
207
207
  categories: Categories
208
208
  components: Components
209
- info: Sobre aquesta assemblea
209
+ info: Quant a aquesta assemblea
210
210
  landing_page: Pàgina d'inici
211
211
  moderations: Moderacions
212
212
  private_users: Participants privades
@@ -338,23 +338,23 @@ ca:
338
338
  participatory_scope: Què es decideix
339
339
  participatory_structure: Com es decideix
340
340
  target: Qui participa
341
- title: Sobre aquesta assemblea
341
+ title: Quant a aquesta assemblea
342
342
  filters:
343
343
  names:
344
344
  all: Totes
345
345
  type: Tipus
346
346
  show:
347
- title: Sobre aquesta assemblea
347
+ title: Quant a aquesta assemblea
348
348
  assembly_members:
349
349
  index:
350
350
  members: Membres
351
351
  assembly_types:
352
352
  commission: Comissió
353
353
  consultative_advisory: Consultiva / Assessora
354
- executive: Executiva
354
+ executive: Executiu
355
355
  government: Govern
356
356
  others: Altres
357
- participatory: Participativa
357
+ participatory: Participatiu
358
358
  working_group: Grup de treball
359
359
  content_blocks:
360
360
  children_assemblies:
@@ -3,7 +3,7 @@ cs:
3
3
  activemodel:
4
4
  attributes:
5
5
  assemblies_type:
6
- title: Název
6
+ title: Titul
7
7
  assembly:
8
8
  announcement: Oznámení
9
9
  area_id: Oblast
@@ -356,7 +356,7 @@ cs:
356
356
  members: Členové
357
357
  assembly_types:
358
358
  commission: Komise
359
- consultative_advisory: Konzultační / poradní
359
+ consultative_advisory: Poradní / poradní
360
360
  executive: Výkonný
361
361
  government: Vládní
362
362
  others: Ostatní
@@ -10,15 +10,15 @@ de:
10
10
  assembly_type: Versammlungstyp
11
11
  assembly_type_other: Sonstiger Versammlungstyp
12
12
  banner_image: Banner-Bild
13
- closing_date: Einsendeschluss
14
- closing_date_reason: Schlussdatums Grund
13
+ closing_date: Auflösungsdatum
14
+ closing_date_reason: Grund der Auflösung
15
15
  composition: Zusammensetzung
16
16
  copy_categories: Kategorien kopieren
17
17
  copy_components: Komponenten kopieren
18
18
  copy_features: Funktionen kopieren
19
19
  created_by: Erstellt von
20
20
  created_by_other: Erstellt von anderen
21
- creation_date: Datum erstellt
21
+ creation_date: Gründungsdatum
22
22
  decidim_area_id: Bereich
23
23
  decidim_assemblies_type_id: Versammlungstyp
24
24
  decidim_scope_id: Umfang
@@ -26,7 +26,7 @@ de:
26
26
  developer_group: Promoter-Gruppe
27
27
  document: Dokument
28
28
  domain: Domain
29
- duration: Dauer
29
+ duration: Aktiv bis
30
30
  facebook: Facebook
31
31
  github: GitHub
32
32
  hashtag: Hashtag
@@ -34,7 +34,7 @@ de:
34
34
  import_attachments: Anhänge importieren
35
35
  import_categories: Kategorien importieren
36
36
  import_components: Komponenten importieren
37
- included_at: Inbegriffen bei
37
+ included_at: Inbegriffen in
38
38
  instagram: Instagram
39
39
  internal_organisation: Interne Organisation
40
40
  is_transparent: Ist transparent
@@ -47,7 +47,7 @@ de:
47
47
  private_space: Privatsphäre
48
48
  promoted: Hervorgehoben
49
49
  published_at: Veröffentlicht am
50
- purpose_of_action: Zweck der Aktion
50
+ purpose_of_action: Handlungszweck
51
51
  scope_id: Umfang
52
52
  scopes_enabled: Bereiche aktiviert
53
53
  short_description: Kurze Beschreibung
@@ -282,11 +282,11 @@ de:
282
282
  assemblies:
283
283
  form:
284
284
  announcement_help: Der Text, den Sie hier eingeben, wird dem Benutzer direkt unter den Gremien-Informationen angezeigt.
285
- duration: Dauer
286
- duration_help: Wenn die Dauer dieser Assembly begrenzt ist, wählen Sie das Enddatum aus. Andernfalls wird es als unbestimmt angezeigt.
285
+ duration: Aktiv bis
286
+ duration_help: Wenn die Dauer dieses Gremiums begrenzt ist, dann wählen Sie hier das Enddatum aus. Andernfalls wird das Datum als unbestimmt angezeigt.
287
287
  filters: Filter
288
288
  images: Bilder
289
- included_at_help: Wählen Sie das Datum aus, an dem dieses Gremium zu Decidim hinzugefügt wurde. Es muss nicht unbedingt mit dem Erstellungsdatum identisch sein.
289
+ included_at_help: Wählen Sie das Datum aus, an dem dieses Gremium zur Plattform hinzugefügt wurde. Das Datum muss nicht zwingend mit dem Gründungsdatum übereinstimmen.
290
290
  metadata: Metadaten
291
291
  other: Andere
292
292
  select_a_created_by: Wählen Sie eine erstellt von aus
@@ -330,8 +330,8 @@ de:
330
330
  creation_date: Erstellungsdatum
331
331
  data: Gremiendaten
332
332
  developer_group: Gruppe der Unterstützenden
333
- duration: Dauer
334
- included_at: Inbegriffen in
333
+ duration: Aktiv bis
334
+ included_at: Hinzugefügt am
335
335
  indefinite_duration: Unbestimmt
336
336
  local_area: Gebiet der Organisation
337
337
  meta_scope: Bereich
@@ -350,11 +350,11 @@ de:
350
350
  members: Mitglieder
351
351
  assembly_types:
352
352
  commission: Kommission
353
- consultative_advisory: Beratende / Beratende
354
- executive: Exekutive
353
+ consultative_advisory: Beratung / Beratung
354
+ executive: Executive
355
355
  government: Regierung
356
356
  others: Andere
357
- participatory: Teilnehmend
357
+ participatory: Partizipativ
358
358
  working_group: Arbeitsgruppe
359
359
  content_blocks:
360
360
  children_assemblies:
@@ -394,8 +394,8 @@ de:
394
394
  member_of:
395
395
  member_of: Mitglied von
396
396
  show:
397
- assembly_type: Montageart
398
- duration: Dauer
397
+ assembly_type: Versammlungstyp
398
+ duration: Aktiv bis
399
399
  private_space: Dies ist eine private Versammlung
400
400
  social_networks_title: Gremium besuchen unter
401
401
  assembly_members:
@@ -409,7 +409,7 @@ de:
409
409
  email_intro: Ein Administrator des Gremiums <a href="%{resource_url}">%{resource_name}</a> hat Sie als Mitglied eingeladen.
410
410
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie zu einem Gremium eingeladen wurden. Gehen Sie zur <a href="%{resource_url}">Gremiumsseite</a>, um mitzumachen!
411
411
  email_subject: Sie wurden als Mitglied des Gremiums %{resource_name} eingeladen!
412
- notification_title: Sie wurden als Mitglied des Gremiums <a href="%{resource_path}">%{resource_name}</a> registriert. Gehen Sie zur <a href="%{resource_path}">Gremiumsseite</a>, um mitzuwirken!
412
+ notification_title: Sie wurden als Mitglied des Gremiums <a href="%{resource_path}">%{resource_name}</a> eingetragen. Gehen Sie zur <a href="%{resource_path}">Gremiumsseite</a>, um mitzuwirken!
413
413
  assembly:
414
414
  role_assigned:
415
415
  email_intro: Sie wurden als %{role} für die Versammlung "%{resource_title}" ausgewählt.
@@ -193,7 +193,7 @@ es-MX:
193
193
  'false': No cesada
194
194
  'true': Cesada
195
195
  decidim_assemblies_type_id_eq:
196
- label: Tipo de asamblea
196
+ label: Tipo de montaje
197
197
  search_placeholder:
198
198
  full_name_or_user_name_or_user_nickname_cont: Buscar por nombre o alias
199
199
  menu:
@@ -211,7 +211,7 @@ es-MX:
211
211
  moderations: Moderaciones
212
212
  private_users: Participantes privadas
213
213
  see_assembly: Ver la asamblea
214
- assemblies_types: Tipos de asamblea
214
+ assemblies_types: Tipo de asamblea
215
215
  models:
216
216
  assemblies_types:
217
217
  fields:
@@ -350,7 +350,7 @@ es-MX:
350
350
  members: Miembros
351
351
  assembly_types:
352
352
  commission: Comisión
353
- consultative_advisory: Consultivo / Asesor
353
+ consultative_advisory: Consultivo / Asesoramiento
354
354
  executive: Ejecutivo
355
355
  government: Gobierno
356
356
  others: Otros
@@ -394,7 +394,7 @@ es-MX:
394
394
  member_of:
395
395
  member_of: Miembro de
396
396
  show:
397
- assembly_type: Tipo de asambleas
397
+ assembly_type: Tipo de montaje
398
398
  duration: Duración
399
399
  private_space: Esta es una asamblea privada
400
400
  social_networks_title: Visita la asamblea en
@@ -193,7 +193,7 @@ es-PY:
193
193
  'false': No cesada
194
194
  'true': Cesada
195
195
  decidim_assemblies_type_id_eq:
196
- label: Tipo de asamblea
196
+ label: Tipo de montaje
197
197
  search_placeholder:
198
198
  full_name_or_user_name_or_user_nickname_cont: Buscar por nombre o alias
199
199
  menu:
@@ -211,7 +211,7 @@ es-PY:
211
211
  moderations: Moderaciones
212
212
  private_users: Participantes privadas
213
213
  see_assembly: Ver la asamblea
214
- assemblies_types: Tipos de asamblea
214
+ assemblies_types: Tipo de asamblea
215
215
  models:
216
216
  assemblies_types:
217
217
  fields:
@@ -350,7 +350,7 @@ es-PY:
350
350
  members: Miembros
351
351
  assembly_types:
352
352
  commission: Comisión
353
- consultative_advisory: Consultivo / Asesor
353
+ consultative_advisory: Consultivo / Asesoramiento
354
354
  executive: Ejecutivo
355
355
  government: Gobierno
356
356
  others: Otros
@@ -394,7 +394,7 @@ es-PY:
394
394
  member_of:
395
395
  member_of: Miembro de
396
396
  show:
397
- assembly_type: Tipo de asambleas
397
+ assembly_type: Tipo de montaje
398
398
  duration: Duración
399
399
  private_space: Esta es una asamblea privada
400
400
  social_networks_title: Visita la asamblea en
@@ -211,7 +211,7 @@ es:
211
211
  moderations: Moderaciones
212
212
  private_users: Participantes privadas
213
213
  see_assembly: Ver la asamblea
214
- assemblies_types: Tipos de asamblea
214
+ assemblies_types: Tipo de asamblea
215
215
  models:
216
216
  assemblies_types:
217
217
  fields:
@@ -351,10 +351,10 @@ es:
351
351
  assembly_types:
352
352
  commission: Comisión
353
353
  consultative_advisory: Consultiva / Asesora
354
- executive: Ejecutiva
354
+ executive: Ejecutivo
355
355
  government: Gobierno
356
356
  others: Otros
357
- participatory: Participativa
357
+ participatory: Participativo
358
358
  working_group: Grupo de trabajo
359
359
  content_blocks:
360
360
  children_assemblies:
@@ -394,7 +394,7 @@ es:
394
394
  member_of:
395
395
  member_of: Miembro de
396
396
  show:
397
- assembly_type: Tipo de asambleas
397
+ assembly_type: Tipo de asamblea
398
398
  duration: Duración
399
399
  private_space: Esta es una asamblea privada
400
400
  social_networks_title: Visita la asamblea en