decidim-participatory_processes 0.7.4 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/README.md +5 -1
- data/app/controllers/decidim/participatory_processes/participatory_process_groups_controller.rb +1 -0
- data/app/controllers/decidim/participatory_processes/participatory_process_widgets_controller.rb +2 -0
- data/app/controllers/decidim/participatory_processes/participatory_processes_controller.rb +1 -0
- data/app/models/decidim/participatory_process.rb +5 -1
- data/app/models/decidim/participatory_process_group.rb +3 -1
- data/app/queries/decidim/participatory_processes/filtered_participatory_processes.rb +5 -3
- data/app/views/decidim/participatory_processes/_order_by_processes.html.erb +1 -1
- data/app/views/decidim/participatory_processes/_participatory_process.html.erb +1 -1
- data/app/views/decidim/participatory_processes/pages/home/_highlighted_processes.html.erb +35 -0
- data/app/views/decidim/participatory_processes/participatory_process_groups/show.html.erb +1 -1
- data/app/views/decidim/participatory_processes/participatory_process_widgets/show.html.erb +1 -1
- data/app/views/decidim/participatory_processes/participatory_processes/_promoted_process.html.erb +1 -1
- data/app/views/decidim/participatory_processes/participatory_processes/index.html.erb +1 -1
- data/app/views/decidim/participatory_processes/participatory_processes/show.html.erb +31 -31
- data/app/views/layouts/decidim/admin/participatory_process.html.erb +1 -1
- data/config/locales/ca.yml +16 -9
- data/config/locales/en.yml +12 -5
- data/config/locales/es.yml +17 -10
- data/config/locales/eu.yml +16 -9
- data/config/locales/fi.yml +12 -5
- data/config/locales/fr.yml +12 -5
- data/config/locales/it.yml +12 -5
- data/config/locales/nl.yml +83 -76
- data/config/locales/pl.yml +12 -5
- data/config/locales/pt.yml +292 -0
- data/config/locales/ru.yml +15 -10
- data/config/locales/uk.yml +16 -9
- data/lib/decidim/participatory_processes/engine.rb +16 -0
- data/lib/decidim/participatory_processes/test/factories.rb +6 -4
- data/lib/decidim/participatory_processes/version.rb +1 -1
- metadata +13 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 604dd9b9c2182acdacd43052cbd3fbf9302db06c
|
4
|
+
data.tar.gz: 9bf215dab5af0c36845f5ed40dc38234d003e17d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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).
|
@@ -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.
|
19
|
+
processes.past
|
18
20
|
when "upcoming"
|
19
|
-
processes.
|
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"><%=
|
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
|
-
<%
|
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"><%=
|
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 %>
|
data/app/views/decidim/participatory_processes/participatory_processes/_promoted_process.html.erb
CHANGED
@@ -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
|
-
<%=
|
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 %>
|
@@ -15,67 +15,67 @@
|
|
15
15
|
<div class="columns medium-7 mediumlarge-8">
|
16
16
|
<div class="section">
|
17
17
|
<div class="lead">
|
18
|
-
<%=
|
18
|
+
<%= decidim_sanitize translated_attribute(current_participatory_process.short_description) %>
|
19
19
|
</div>
|
20
|
-
<%=
|
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.
|
27
|
-
<div class="definition-data__item
|
28
|
-
<span class="definition-data__title"><%= t("participatory_processes.show.
|
29
|
-
|
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.
|
34
|
-
<div class="definition-data__item
|
35
|
-
<span class="definition-data__title"><%= t("participatory_processes.show.
|
36
|
-
|
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.
|
41
|
-
<div class="definition-data__item
|
42
|
-
<span class="definition-data__title"><%= t("participatory_processes.show.
|
43
|
-
|
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.
|
48
|
-
<div class="definition-data__item
|
49
|
-
<span class="definition-data__title"><%= t("participatory_processes.show.
|
50
|
-
<%= translated_attribute(current_participatory_process.
|
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
|
-
|
57
|
+
<%= translated_attribute(current_participatory_process.local_area) %>
|
58
58
|
</div>
|
59
59
|
<% end %>
|
60
60
|
|
61
|
-
|
62
|
-
<div class="definition-data__item
|
63
|
-
<span class="definition-data__title"><%= t("participatory_processes.show.
|
64
|
-
|
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
|
-
|
69
|
-
<div class="definition-data__item
|
70
|
-
<span class="definition-data__title"><%= t("participatory_processes.show.
|
71
|
-
|
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
|
76
|
-
<div class="definition-data__item
|
77
|
-
<span class="definition-data__title"><%= t("participatory_processes.show.
|
78
|
-
|
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? %>
|
data/config/locales/ca.yml
CHANGED
@@ -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:
|
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:
|
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:
|
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:
|
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:
|
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
|
237
|
-
participatory_scope:
|
238
|
-
participatory_structure:
|
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:
|
248
|
+
target: Qui participa
|
242
249
|
statistics:
|
243
250
|
answers_count: Respostes
|
244
251
|
comments_count: Comentaris
|
data/config/locales/en.yml
CHANGED
@@ -206,7 +206,7 @@ en:
|
|
206
206
|
participatory_process_groups:
|
207
207
|
show:
|
208
208
|
group_participatory_processes: Processes for %{group}
|
209
|
-
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:
|
237
|
-
participatory_scope:
|
238
|
-
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:
|
248
|
+
target: Who participates
|
242
249
|
statistics:
|
243
250
|
answers_count: Answers
|
244
251
|
comments_count: Comments
|
data/config/locales/es.yml
CHANGED
@@ -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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
237
|
-
participatory_scope:
|
238
|
-
participatory_structure:
|
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:
|
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:
|
262
|
+
votes_count: Apoyos
|
256
263
|
scopes:
|
257
264
|
global: Ámbito global
|
258
265
|
layouts:
|