decidim-participatory_processes 0.7.4 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +5 -1
  3. data/app/controllers/decidim/participatory_processes/participatory_process_groups_controller.rb +1 -0
  4. data/app/controllers/decidim/participatory_processes/participatory_process_widgets_controller.rb +2 -0
  5. data/app/controllers/decidim/participatory_processes/participatory_processes_controller.rb +1 -0
  6. data/app/models/decidim/participatory_process.rb +5 -1
  7. data/app/models/decidim/participatory_process_group.rb +3 -1
  8. data/app/queries/decidim/participatory_processes/filtered_participatory_processes.rb +5 -3
  9. data/app/views/decidim/participatory_processes/_order_by_processes.html.erb +1 -1
  10. data/app/views/decidim/participatory_processes/_participatory_process.html.erb +1 -1
  11. data/app/views/decidim/participatory_processes/pages/home/_highlighted_processes.html.erb +35 -0
  12. data/app/views/decidim/participatory_processes/participatory_process_groups/show.html.erb +1 -1
  13. data/app/views/decidim/participatory_processes/participatory_process_widgets/show.html.erb +1 -1
  14. data/app/views/decidim/participatory_processes/participatory_processes/_promoted_process.html.erb +1 -1
  15. data/app/views/decidim/participatory_processes/participatory_processes/index.html.erb +1 -1
  16. data/app/views/decidim/participatory_processes/participatory_processes/show.html.erb +31 -31
  17. data/app/views/layouts/decidim/admin/participatory_process.html.erb +1 -1
  18. data/config/locales/ca.yml +16 -9
  19. data/config/locales/en.yml +12 -5
  20. data/config/locales/es.yml +17 -10
  21. data/config/locales/eu.yml +16 -9
  22. data/config/locales/fi.yml +12 -5
  23. data/config/locales/fr.yml +12 -5
  24. data/config/locales/it.yml +12 -5
  25. data/config/locales/nl.yml +83 -76
  26. data/config/locales/pl.yml +12 -5
  27. data/config/locales/pt.yml +292 -0
  28. data/config/locales/ru.yml +15 -10
  29. data/config/locales/uk.yml +16 -9
  30. data/lib/decidim/participatory_processes/engine.rb +16 -0
  31. data/lib/decidim/participatory_processes/test/factories.rb +6 -4
  32. data/lib/decidim/participatory_processes/version.rb +1 -1
  33. metadata +13 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: f9cf6eeb0e6515254d2e94e94ee6bc7b6327bca21d5cc64245ef966d79c61b3a
4
- data.tar.gz: 30196a2b1379d683d6ee26fd20260ed318db81b5d876eaa9433f0017d63ad21a
2
+ SHA1:
3
+ metadata.gz: 604dd9b9c2182acdacd43052cbd3fbf9302db06c
4
+ data.tar.gz: 9bf215dab5af0c36845f5ed40dc38234d003e17d
5
5
  SHA512:
6
- metadata.gz: a2624b7164c548e27672d3127c11f3235a48dc23fb32f5864d2350cc84ef826ed3b2a4f4b8ca95cff8087f4507a445c72437f2d96321504589669f1c109ee12f
7
- data.tar.gz: 1e43a867feb16780c1db2495e782e43207fdffd2a57269cca746ff01f4dd6037f3385f999cfa56c6cebf2be0d5c3d71f1475a2eae444c182c31eccd8afbf2ef2
6
+ metadata.gz: 42745619d7da5242c45e7186aed4f1fe5f815c54c7cc24c5a3334d7d58f33382c2cbe572b71263b6cb18894ab567cb9bc5cf1af27701bab66370b7abe0dc7f88
7
+ data.tar.gz: f26e15f8e7759598da963beb804268cb16e93a9c525dfed99cf35ba584095e90565d8734d2fb405e4c344ba854e17d1caeab24278f5a2574fada846a7a557920
data/README.md CHANGED
@@ -18,6 +18,7 @@ This plugin provides:
18
18
  menu.
19
19
 
20
20
  ## Installation
21
+
21
22
  Add this line to your application's Gemfile:
22
23
 
23
24
  ```ruby
@@ -25,12 +26,15 @@ gem 'decidim-participatory_processes'
25
26
  ```
26
27
 
27
28
  And then execute:
29
+
28
30
  ```bash
29
- $ bundle
31
+ bundle
30
32
  ```
31
33
 
32
34
  ## Contributing
35
+
33
36
  See [Decidim](https://github.com/decidim/decidim).
34
37
 
35
38
  ## License
39
+
36
40
  See [Decidim](https://github.com/decidim/decidim).
@@ -3,6 +3,7 @@
3
3
  module Decidim
4
4
  module ParticipatoryProcesses
5
5
  class ParticipatoryProcessGroupsController < Decidim::ApplicationController
6
+ helper Decidim::SanitizeHelper
6
7
  helper_method :participatory_processes, :group, :collection
7
8
 
8
9
  before_action :set_group
@@ -3,6 +3,8 @@
3
3
  module Decidim
4
4
  module ParticipatoryProcesses
5
5
  class ParticipatoryProcessWidgetsController < Decidim::WidgetsController
6
+ helper Decidim::SanitizeHelper
7
+
6
8
  private
7
9
 
8
10
  def model
@@ -12,6 +12,7 @@ module Decidim
12
12
  helper Decidim::AttachmentsHelper
13
13
  helper Decidim::IconHelper
14
14
  helper Decidim::WidgetUrlsHelper
15
+ helper Decidim::SanitizeHelper
15
16
 
16
17
  helper ParticipatoryProcessHelper
17
18
 
@@ -38,7 +38,7 @@ module Decidim
38
38
  dependent: :destroy,
39
39
  as: :participatory_space
40
40
 
41
- has_many :features, as: :participatory_space
41
+ has_many :features, as: :participatory_space, dependent: :destroy
42
42
 
43
43
  attr_readonly :active_step
44
44
 
@@ -48,6 +48,10 @@ module Decidim
48
48
  mount_uploader :hero_image, Decidim::HeroImageUploader
49
49
  mount_uploader :banner_image, Decidim::BannerImageUploader
50
50
 
51
+ scope :past, -> { where(arel_table[:end_date].lteq(Time.current)) }
52
+ scope :upcoming, -> { where(arel_table[:start_date].gt(Time.current)) }
53
+ scope :active, -> { where(arel_table[:start_date].lteq(Time.current).and(arel_table[:end_date].gt(Time.current).or(arel_table[:end_date].eq(nil)))) }
54
+
51
55
  # Scope to return only the promoted processes.
52
56
  #
53
57
  # Returns an ActiveRecord::Relation.
@@ -5,7 +5,9 @@ module Decidim
5
5
  has_many :participatory_processes,
6
6
  foreign_key: "decidim_participatory_process_group_id",
7
7
  class_name: "Decidim::ParticipatoryProcess",
8
- inverse_of: :participatory_process_group
8
+ inverse_of: :participatory_process_group,
9
+ dependent: :nullify
10
+
9
11
  belongs_to :organization,
10
12
  foreign_key: "decidim_organization_id",
11
13
  class_name: "Decidim::Organization"
@@ -13,12 +13,14 @@ module Decidim
13
13
  processes = Decidim::ParticipatoryProcess.all
14
14
 
15
15
  case @filter
16
+ when "all"
17
+ processes
16
18
  when "past"
17
- processes.where("decidim_participatory_processes.end_date <= ?", Time.current)
19
+ processes.past
18
20
  when "upcoming"
19
- processes.where("decidim_participatory_processes.start_date > ?", Time.current)
21
+ processes.upcoming
20
22
  else
21
- processes
23
+ processes.active
22
24
  end
23
25
  end
24
26
  end
@@ -3,7 +3,7 @@
3
3
  <%= t("participatory_processes.order_by_processes.processes", scope: "layouts.decidim", count: collection.count) %>
4
4
  <% if include_filter %>
5
5
  <span class="order-by__tabs">
6
- <% %w(past active upcoming).each do |filter_name| %>
6
+ <% %w(past active upcoming all).each do |filter_name| %>
7
7
  <%= link_to t(".#{filter_name}"), { filter: filter_name }, remote: true, class: "order-by__tab #{'is-active' if filter == filter_name }" %>
8
8
  <% end %>
9
9
  </span>
@@ -8,7 +8,7 @@
8
8
  <%= link_to participatory_process_path(participatory_process), class: "card__link" do %>
9
9
  <h4 class="card__title"><%= translated_attribute participatory_process.title %></h4>
10
10
  <% end %>
11
- <p class="card__desc"><%= sanitize html_truncate(translated_attribute(participatory_process.short_description), length: 630, separator: '...') %></p>
11
+ <p class="card__desc"><%= decidim_sanitize html_truncate(translated_attribute(participatory_process.short_description), length: 630, separator: '...') %></p>
12
12
  </div>
13
13
  <div class="card__footer">
14
14
  <div class="card__support">
@@ -0,0 +1,35 @@
1
+ <div class="row" id="highlighted-processes">
2
+ <h3 class="section-heading"><%= t(".active_processes") %></h3>
3
+ <div class="row collapse">
4
+ <div class="row small-up-1 smallmedium-up-2 mediumlarge-up-3
5
+ large-up-4 card-grid">
6
+ <% highlighted_processes.each do |process| %>
7
+ <div class="column">
8
+ <article class="card card--process card--mini">
9
+ <%= link_to decidim_participatory_processes.participatory_process_path(process), class: "card__link" do %>
10
+ <div class="card__image-top"
11
+ style="background-image:url(<%= process.hero_image.url %>)"></div>
12
+ <% end %>
13
+ <div class="card__content">
14
+ <%= link_to decidim_participatory_processes.participatory_process_path(process), class: "card__link" do %>
15
+ <h4 class="card__title"><%= translated_attribute process.title %></h4>
16
+ <% end %>
17
+ <% if process.active_step %>
18
+ <span class="card--process__small">
19
+ <%= t(".active_step") %>
20
+ <strong><%= translated_attribute process.active_step.title %></strong>
21
+ </span>
22
+ <% end %>
23
+ </div>
24
+ </article>
25
+ </div>
26
+ <% end %>
27
+ </div>
28
+ </div>
29
+ </div>
30
+ <div class="row" id="see-all-processes">
31
+ <div class="columns small-centered small-12
32
+ smallmedium-8 medium-6 large-4">
33
+ <%= link_to t(".see_all_processes"), decidim_participatory_processes.participatory_processes_path, class: "button expanded hollow button--sc home-section__cta" %>
34
+ </div>
35
+ </div>
@@ -1,4 +1,4 @@
1
- <% provide :meta_title, t("participatory_process_groups.show.title", scope: "decidim") %>
1
+ <% add_decidim_meta_tags(title: t("participatory_process_groups.show.title", scope: "decidim")) %>
2
2
 
3
3
  <main class="wrapper">
4
4
  <section id="processes-grid" class="section row collapse">
@@ -1,6 +1,6 @@
1
1
  <% content_for(:header, "false") %>
2
2
  <% content_for(:title, translated_attribute(model.title)) %>
3
- <p class="card__desc"><%= sanitize html_truncate(translated_attribute(model.short_description), length: 630, separator: '...') %></p>
3
+ <p class="card__desc"><%= decidim_sanitize html_truncate(translated_attribute(model.short_description), length: 630, separator: '...') %></p>
4
4
  <% content_for(:footer) do %>
5
5
  <div class="card__support">
6
6
  <% if model.active_step %>
@@ -5,7 +5,7 @@
5
5
  <%= link_to participatory_process_path(promoted_process), class: "card__link" do %>
6
6
  <h2 class="card__title"><%= translated_attribute promoted_process.title %></h2>
7
7
  <% end %>
8
- <%= sanitize html_truncate(translated_attribute(promoted_process.short_description), length: 630, separator: '...') %>
8
+ <%= decidim_sanitize html_truncate(translated_attribute(promoted_process.short_description), length: 630, separator: '...') %>
9
9
  <%= link_to participatory_process_path(promoted_process), class: "button secondary small hollow card__button" do %>
10
10
  <%= t("participatory_processes.promoted_process.more_info", scope: "layouts.decidim") %>
11
11
  <% end %>
@@ -1,4 +1,4 @@
1
- <% provide :meta_title, t("participatory_processes.index.title", scope: "decidim") %>
1
+ <% add_decidim_meta_tags(title: t("participatory_processes.index.title", scope: "decidim")) %>
2
2
 
3
3
  <main class="wrapper">
4
4
  <% if promoted_participatory_processes.any? %>
@@ -15,67 +15,67 @@
15
15
  <div class="columns medium-7 mediumlarge-8">
16
16
  <div class="section">
17
17
  <div class="lead">
18
- <%= sanitize translated_attribute(current_participatory_process.short_description) %>
18
+ <%= decidim_sanitize translated_attribute(current_participatory_process.short_description) %>
19
19
  </div>
20
- <%= sanitize translated_attribute(current_participatory_process.description) %>
20
+ <%= decidim_sanitize translated_attribute(current_participatory_process.description) %>
21
21
  </div>
22
22
  <%= attachments_for current_participatory_process %>
23
23
  </div>
24
24
  <div class="section columns medium-5 mediumlarge-4 large-3">
25
25
  <div class="card extra definition-data">
26
- <% if translated_attribute(current_participatory_process.meta_scope).present? %>
27
- <div class="definition-data__item scope">
28
- <span class="definition-data__title"><%= t("participatory_processes.show.scope", scope: "decidim") %></span>
29
- <%= translated_attribute(current_participatory_process.meta_scope) %>
26
+ <% if translated_attribute(current_participatory_process.participatory_scope).present? %>
27
+ <div class="definition-data__item participatory_scope">
28
+ <span class="definition-data__title"><%= t("participatory_processes.show.participatory_scope", scope: "decidim") %></span>
29
+ <%= translated_attribute(current_participatory_process.participatory_scope) %>
30
30
  </div>
31
31
  <% end %>
32
32
 
33
- <% if current_participatory_process.start_date.present? %>
34
- <div class="definition-data__item start-date">
35
- <span class="definition-data__title"><%= t("participatory_processes.show.start_date", scope: "decidim") %></span>
36
- <%== l(current_participatory_process.start_date, format: :long) %>
33
+ <% if translated_attribute(current_participatory_process.target).present? %>
34
+ <div class="definition-data__item target">
35
+ <span class="definition-data__title"><%= t("participatory_processes.show.target", scope: "decidim") %></span>
36
+ <%= translated_attribute(current_participatory_process.target) %>
37
37
  </div>
38
38
  <% end %>
39
39
 
40
- <% if current_participatory_process.end_date.present? %>
41
- <div class="definition-data__item end-date">
42
- <span class="definition-data__title"><%= t("participatory_processes.show.end_date", scope: "decidim") %></span>
43
- <%== l(current_participatory_process.end_date, format: :long) %>
40
+ <% if translated_attribute(current_participatory_process.participatory_structure).present? %>
41
+ <div class="definition-data__item participatory_structure">
42
+ <span class="definition-data__title"><%= t("participatory_processes.show.participatory_structure", scope: "decidim") %></span>
43
+ <%= translated_attribute(current_participatory_process.participatory_structure) %>
44
44
  </div>
45
45
  <% end %>
46
46
 
47
- <% if translated_attribute(current_participatory_process.developer_group).present? %>
48
- <div class="definition-data__item developer-group">
49
- <span class="definition-data__title"><%= t("participatory_processes.show.developer_group", scope: "decidim") %></span>
50
- <%= translated_attribute(current_participatory_process.developer_group) %>
47
+ <% if translated_attribute(current_participatory_process.meta_scope).present? %>
48
+ <div class="definition-data__item scope">
49
+ <span class="definition-data__title"><%= t("participatory_processes.show.scope", scope: "decidim") %></span>
50
+ <%= translated_attribute(current_participatory_process.meta_scope) %>
51
51
  </div>
52
52
  <% end %>
53
53
 
54
54
  <% if translated_attribute(current_participatory_process.local_area).present? %>
55
55
  <div class="definition-data__item local_area">
56
56
  <span class="definition-data__title"><%= t("participatory_processes.show.local_area", scope: "decidim") %></span>
57
- <%= translated_attribute(current_participatory_process.local_area) %>
57
+ <%= translated_attribute(current_participatory_process.local_area) %>
58
58
  </div>
59
59
  <% end %>
60
60
 
61
- <% if translated_attribute(current_participatory_process.target).present? %>
62
- <div class="definition-data__item target">
63
- <span class="definition-data__title"><%= t("participatory_processes.show.target", scope: "decidim") %></span>
64
- <%= translated_attribute(current_participatory_process.target) %>
61
+ <% if translated_attribute(current_participatory_process.developer_group).present? %>
62
+ <div class="definition-data__item developer-group">
63
+ <span class="definition-data__title"><%= t("participatory_processes.show.developer_group", scope: "decidim") %></span>
64
+ <%= translated_attribute(current_participatory_process.developer_group) %>
65
65
  </div>
66
66
  <% end %>
67
67
 
68
- <% if translated_attribute(current_participatory_process.participatory_scope).present? %>
69
- <div class="definition-data__item participatory_scope">
70
- <span class="definition-data__title"><%= t("participatory_processes.show.participatory_scope", scope: "decidim") %></span>
71
- <%= translated_attribute(current_participatory_process.participatory_scope) %>
68
+ <% if current_participatory_process.start_date.present? %>
69
+ <div class="definition-data__item start-date">
70
+ <span class="definition-data__title"><%= t("participatory_processes.show.start_date", scope: "decidim") %></span>
71
+ <%== l(current_participatory_process.start_date, format: :long) %>
72
72
  </div>
73
73
  <% end %>
74
74
 
75
- <% if translated_attribute(current_participatory_process.participatory_structure).present? %>
76
- <div class="definition-data__item participatory_structure">
77
- <span class="definition-data__title"><%= t("participatory_processes.show.participatory_structure", scope: "decidim") %></span>
78
- <%= translated_attribute(current_participatory_process.participatory_structure) %>
75
+ <% if current_participatory_process.end_date.present? %>
76
+ <div class="definition-data__item end-date">
77
+ <span class="definition-data__title"><%= t("participatory_processes.show.end_date", scope: "decidim") %></span>
78
+ <%== l(current_participatory_process.end_date, format: :long) %>
79
79
  </div>
80
80
  <% end %>
81
81
  </div>
@@ -17,7 +17,7 @@
17
17
  <ul>
18
18
  <% current_participatory_process.features.each do |feature| %>
19
19
  <% if feature.manifest.admin_engine %>
20
- <li <% if is_active_link?(manage_feature_path(feature)) %> class="is-active" <% end %>>
20
+ <li <% if is_active_link?(manage_feature_path(feature)) || is_active_link?(decidim_admin_participatory_processes.edit_feature_path(current_participatory_process, feature)) || is_active_link?(decidim_admin_participatory_processes.edit_feature_permissions_path(current_participatory_process, feature)) %> class="is-active" <% end %>>
21
21
  <%= link_to manage_feature_path(feature) do %>
22
22
  <%= translated_attribute feature.name %>
23
23
  <% if feature.primary_stat.present? %>
@@ -26,7 +26,7 @@ ca:
26
26
  start_date: Data d'inici
27
27
  subtitle: Subtítol
28
28
  target: A qui va dirigit
29
- title: Grup de processos participatius
29
+ title: Títol
30
30
  participatory_process_group:
31
31
  description: Descripció
32
32
  hero_image: Imatge
@@ -37,7 +37,7 @@ ca:
37
37
  end_date: Data de finalització
38
38
  short_description: Descripció breu
39
39
  start_date: Data d'inici
40
- title: Grup de processos participatius
40
+ title: Títol
41
41
  participatory_process_user_role:
42
42
  email: Correu electrònic
43
43
  name: Nom
@@ -73,7 +73,7 @@ ca:
73
73
  created_at: Data de creació
74
74
  promoted: Destacat
75
75
  published: Publicat
76
- title: Grup de processos participatius
76
+ title: Títol
77
77
  name: Procés participatiu
78
78
  participatory_process_group:
79
79
  fields:
@@ -83,7 +83,7 @@ ca:
83
83
  fields:
84
84
  end_date: Data de finalització
85
85
  start_date: Data d'inici
86
- title: Grup de processos participatius
86
+ title: Títol
87
87
  name: Name
88
88
  participatory_process_user_role:
89
89
  fields:
@@ -206,7 +206,7 @@ ca:
206
206
  participatory_process_groups:
207
207
  show:
208
208
  group_participatory_processes: Processos per a %{group}
209
- title: Grup de processos participatius
209
+ title: Grups de processos participatius
210
210
  participatory_process_steps:
211
211
  index:
212
212
  process_steps: Fases del procés
@@ -223,8 +223,15 @@ ca:
223
223
  title: Processos participatius
224
224
  order_by_processes:
225
225
  active: Actius
226
+ all: Tots
226
227
  past: Passats
227
228
  upcoming: Propers
229
+ pages:
230
+ home:
231
+ highlighted_processes:
232
+ active_processes: Processos actius
233
+ active_step: Pas actiu
234
+ see_all_processes: Veure tots els processos
228
235
  participatory_process_groups:
229
236
  none: Cap
230
237
  participatory_processes:
@@ -233,12 +240,12 @@ ca:
233
240
  show:
234
241
  developer_group: Grup promotor
235
242
  end_date: Data de finalització
236
- local_area: Àrea municipal
237
- participatory_scope: Àmbit participatiu
238
- participatory_structure: Estructura participativa
243
+ local_area: Àrea d'organització
244
+ participatory_scope: Què es decideix
245
+ participatory_structure: Com es decideix
239
246
  scope: Àmbit
240
247
  start_date: Data d'inici
241
- target: A qui va dirigit
248
+ target: Qui participa
242
249
  statistics:
243
250
  answers_count: Respostes
244
251
  comments_count: Comentaris
@@ -206,7 +206,7 @@ en:
206
206
  participatory_process_groups:
207
207
  show:
208
208
  group_participatory_processes: Processes for %{group}
209
- title: Title
209
+ title: Participatory process groups
210
210
  participatory_process_steps:
211
211
  index:
212
212
  process_steps: Process steps
@@ -223,8 +223,15 @@ en:
223
223
  title: Participatory processes
224
224
  order_by_processes:
225
225
  active: Active
226
+ all: All
226
227
  past: Past
227
228
  upcoming: Upcoming
229
+ pages:
230
+ home:
231
+ highlighted_processes:
232
+ active_processes: Active processes
233
+ active_step: Active step
234
+ see_all_processes: See all processes
228
235
  participatory_process_groups:
229
236
  none: None
230
237
  participatory_processes:
@@ -233,12 +240,12 @@ en:
233
240
  show:
234
241
  developer_group: Developer group
235
242
  end_date: End date
236
- local_area: Local area
237
- participatory_scope: Participatory scope
238
- participatory_structure: Participatory structure
243
+ local_area: Organization Area
244
+ participatory_scope: What is decided
245
+ participatory_structure: How is it decided
239
246
  scope: Scope
240
247
  start_date: Start date
241
- target: Target
248
+ target: Who participates
242
249
  statistics:
243
250
  answers_count: Answers
244
251
  comments_count: Comments
@@ -26,7 +26,7 @@ es:
26
26
  start_date: Fecha de inicio
27
27
  subtitle: Subtítulo
28
28
  target: "¿A quién va dirigida?"
29
- title: Grupo de procesos participativos
29
+ title: Título
30
30
  participatory_process_group:
31
31
  description: Descripción
32
32
  hero_image: Imagen
@@ -37,7 +37,7 @@ es:
37
37
  end_date: Fecha de finalización
38
38
  short_description: Descripción breve
39
39
  start_date: Fecha de inicio
40
- title: Grupo de procesos participativos
40
+ title: Título
41
41
  participatory_process_user_role:
42
42
  email: Correo electrónico
43
43
  name: Nombre
@@ -73,7 +73,7 @@ es:
73
73
  created_at: Fecha de creación
74
74
  promoted: Destacado
75
75
  published: Publicada
76
- title: Grupo de procesos participativos
76
+ title: Título
77
77
  name: Proceso participativo
78
78
  participatory_process_group:
79
79
  fields:
@@ -83,7 +83,7 @@ es:
83
83
  fields:
84
84
  end_date: Fecha de finalización
85
85
  start_date: Fecha de inicio
86
- title: Grupo de procesos participativos
86
+ title: Título
87
87
  name: Fase de proceso participativo
88
88
  participatory_process_user_role:
89
89
  fields:
@@ -206,7 +206,7 @@ es:
206
206
  participatory_process_groups:
207
207
  show:
208
208
  group_participatory_processes: Procesos para %{group}
209
- title: Grupo de procesos participativos
209
+ title: Grupos de procesos participativos
210
210
  participatory_process_steps:
211
211
  index:
212
212
  process_steps: Las fases de proceso
@@ -223,8 +223,15 @@ es:
223
223
  title: Procesos participativos
224
224
  order_by_processes:
225
225
  active: Activa
226
+ all: Todos
226
227
  past: Pasadas
227
228
  upcoming: Próximas
229
+ pages:
230
+ home:
231
+ highlighted_processes:
232
+ active_processes: Procesos activos
233
+ active_step: Paso activo
234
+ see_all_processes: Ver todos los procesos
228
235
  participatory_process_groups:
229
236
  none: Ninguna
230
237
  participatory_processes:
@@ -233,12 +240,12 @@ es:
233
240
  show:
234
241
  developer_group: Grupo promotor
235
242
  end_date: Fecha de finalización
236
- local_area: Áreas municipales
237
- participatory_scope: Ámbito participativo
238
- participatory_structure: Estructura participativa
243
+ local_area: Área de organización
244
+ participatory_scope: Qué se decide
245
+ participatory_structure: Cómo se decide
239
246
  scope: Ámbito
240
247
  start_date: Fecha de inicio
241
- target: "¿A quién va dirigida?"
248
+ target: Quién participa
242
249
  statistics:
243
250
  answers_count: "¿A quién va dirigida?"
244
251
  comments_count: Comentarios
@@ -252,7 +259,7 @@ es:
252
259
  results_count: Resultados
253
260
  surveys_count: Encuestas
254
261
  users_count: Participantes
255
- votes_count: Soportes
262
+ votes_count: Apoyos
256
263
  scopes:
257
264
  global: Ámbito global
258
265
  layouts: