decidim-initiatives 0.11.2 → 0.12.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -6
- data/app/assets/config/decidim_initiatives_manifest.css +4 -0
- data/app/assets/config/decidim_initiatives_manifest.js +0 -2
- data/app/assets/stylesheet/decidim/initiatives/{application.css.scss → initiatives.scss} +0 -1
- data/app/cells/decidim/initiatives/initiative_cell.rb +19 -0
- data/app/cells/decidim/initiatives/initiative_m/author.erb +10 -0
- data/app/cells/decidim/initiatives/initiative_m/footer.erb +28 -0
- data/app/cells/decidim/initiatives/initiative_m/tags.erb +9 -0
- data/app/cells/decidim/initiatives/initiative_m_cell.rb +45 -0
- data/app/commands/decidim/initiatives/vote_initiative.rb +22 -0
- data/app/controllers/concerns/decidim/initiatives/admin/initiative_admin.rb +0 -4
- data/app/controllers/concerns/decidim/initiatives/needs_initiative.rb +18 -23
- data/app/controllers/decidim/initiatives/admin/application_controller.rb +13 -0
- data/app/controllers/decidim/initiatives/admin/committee_requests_controller.rb +4 -4
- data/app/controllers/decidim/initiatives/admin/initiative_attachments_controller.rb +1 -1
- data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +11 -11
- data/app/controllers/decidim/initiatives/admin/initiatives_type_scopes_controller.rb +5 -5
- data/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb +7 -7
- data/app/controllers/decidim/initiatives/application_controller.rb +30 -0
- data/app/controllers/decidim/initiatives/committee_requests_controller.rb +4 -5
- data/app/controllers/decidim/initiatives/create_initiative_controller.rb +3 -3
- data/app/controllers/decidim/initiatives/initiative_types_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/initiative_votes_controller.rb +3 -17
- data/app/controllers/decidim/initiatives/initiatives_controller.rb +3 -7
- data/app/controllers/decidim/initiatives/initiatives_type_scopes_controller.rb +2 -2
- data/app/events/decidim/initiatives/endorse_initiative_event.rb +4 -45
- data/app/events/decidim/initiatives/milestone_completed_event.rb +17 -0
- data/app/models/decidim/initiative.rb +5 -4
- data/app/models/decidim/initiatives_committee_member.rb +1 -0
- data/app/permissions/decidim/initiatives/admin/permissions.rb +188 -0
- data/app/permissions/decidim/initiatives/permissions.rb +139 -0
- data/app/presenters/decidim/initiative_presenter.rb +16 -0
- data/app/views/decidim/initiatives/_initiative.html.erb +1 -35
- data/app/views/decidim/initiatives/admin/committee_requests/index.html.erb +2 -3
- data/app/views/decidim/initiatives/admin/initiatives/_form.html.erb +3 -3
- data/app/views/decidim/initiatives/admin/initiatives/edit.html.erb +8 -8
- data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +4 -4
- data/app/views/decidim/initiatives/admin/initiatives_type_scopes/edit.html.erb +1 -1
- data/app/views/decidim/initiatives/admin/initiatives_types/_form.html.erb +0 -2
- data/app/views/decidim/initiatives/admin/initiatives_types/_initiative_type_scopes.html.erb +2 -2
- data/app/views/decidim/initiatives/admin/initiatives_types/edit.html.erb +1 -1
- data/app/views/decidim/initiatives/admin/initiatives_types/index.html.erb +2 -2
- data/app/views/decidim/initiatives/committee_requests/new.html.erb +3 -5
- data/app/views/decidim/initiatives/initiatives/_index_header.html.erb +2 -2
- data/app/views/decidim/initiatives/initiatives/_vote_button.html.erb +17 -15
- data/app/views/decidim/initiatives/initiatives/_vote_cabin.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/index.html.erb +0 -1
- data/app/views/decidim/initiatives/initiatives/show.html.erb +0 -1
- data/app/views/decidim/initiatives/initiatives/signature_identities.html.erb +15 -13
- data/app/views/layouts/decidim/admin/initiative.html.erb +9 -6
- data/app/views/layouts/decidim/admin/initiatives.html.erb +11 -3
- data/app/views/layouts/decidim/initiative_creation.html.erb +0 -1
- data/config/locales/ca.yml +31 -11
- data/config/locales/en.yml +32 -11
- data/config/locales/es.yml +33 -12
- data/config/locales/eu.yml +32 -11
- data/config/locales/fi.yml +32 -11
- data/config/locales/fr.yml +32 -11
- data/config/locales/gl.yml +32 -11
- data/config/locales/it.yml +32 -11
- data/config/locales/nl.yml +32 -11
- data/config/locales/pl.yml +42 -13
- data/config/locales/pt-BR.yml +32 -11
- data/config/locales/pt.yml +32 -11
- data/config/locales/sv.yml +32 -11
- data/config/locales/uk.yml +43 -14
- data/db/migrate/20171109132011_enable_pg_trgm_extension_for_initiatives.rb +18 -0
- data/lib/decidim/initiatives/admin_engine.rb +1 -15
- data/lib/decidim/initiatives/engine.rb +6 -11
- data/lib/decidim/initiatives/participatory_space.rb +12 -4
- data/lib/decidim/initiatives/test/factories.rb +17 -1
- data/lib/decidim/initiatives/version.rb +1 -1
- metadata +27 -29
- data/app/controllers/concerns/decidim/initiatives/action_authorization.rb +0 -38
- data/app/models/decidim/initiatives/abilities/admin/attachments_ability.rb +0 -55
- data/app/models/decidim/initiatives/abilities/admin/committee_admin_ability.rb +0 -36
- data/app/models/decidim/initiatives/abilities/admin/committee_user_ability.rb +0 -50
- data/app/models/decidim/initiatives/abilities/admin/components_ability.rb +0 -24
- data/app/models/decidim/initiatives/abilities/admin/initiative_admin_ability.rb +0 -65
- data/app/models/decidim/initiatives/abilities/admin/initiative_type_ability.rb +0 -42
- data/app/models/decidim/initiatives/abilities/admin/initiative_user_ability.rb +0 -68
- data/app/models/decidim/initiatives/abilities/current_user_ability.rb +0 -58
- data/app/models/decidim/initiatives/abilities/everyone_ability.rb +0 -22
- data/app/models/decidim/initiatives/abilities/non_logged_user_ability.rb +0 -33
- data/app/models/decidim/initiatives/abilities/vote_ability.rb +0 -57
- data/app/views/decidim/initiatives/initiatives/_supports_count.html.erb +0 -6
- data/db/migrate/20171109132011_enable_pg_extensions.rb +0 -9
@@ -17,7 +17,7 @@
|
|
17
17
|
} if Decidim::Initiatives.online_voting_allowed %>
|
18
18
|
<% end %>
|
19
19
|
|
20
|
-
<% if
|
20
|
+
<% if !allowed_to?(:vote, :initiative, initiative: initiative) && !allowed_to?(:unvote, :initiative, initiative: initiative) %>
|
21
21
|
<button class='card__button button expanded button--sc disabled' disabled>
|
22
22
|
<%= t(".votes_blocked") %>
|
23
23
|
</button>
|
@@ -70,5 +70,4 @@
|
|
70
70
|
|
71
71
|
<%= comments_for current_initiative if current_initiative.published? %>
|
72
72
|
<%= javascript_include_tag "decidim/initiatives/social_share" %>
|
73
|
-
<%= stylesheet_link_tag "decidim/initiatives/application" %>
|
74
73
|
<%= stylesheet_link_tag "decidim/initiatives/social_share" %>
|
@@ -12,19 +12,21 @@
|
|
12
12
|
<% current_user.user_groups.verified.each do |g| %>
|
13
13
|
<br />
|
14
14
|
<% if @voted_groups.include? g.id %>
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
15
|
+
<%= button_to(
|
16
|
+
g.name,
|
17
|
+
initiative_initiative_vote_path(initiative_slug: current_initiative.slug, group_id: g.id),
|
18
|
+
method: :delete,
|
19
|
+
remote: true,
|
20
|
+
data: { disable: true },
|
21
|
+
class: "card__button button expanded button--sc success"
|
22
|
+
) %>
|
22
23
|
<% else %>
|
23
|
-
<%=
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
24
|
+
<%= button_to(
|
25
|
+
g.name,
|
26
|
+
initiative_initiative_vote_path(initiative_slug: current_initiative.slug, group_id: g.id),
|
27
|
+
remote: true,
|
28
|
+
data: { disable: true },
|
29
|
+
class: "card__button button expanded button--sc"
|
30
|
+
) %>
|
29
31
|
<% end %>
|
30
32
|
<% end %>
|
@@ -1,19 +1,19 @@
|
|
1
1
|
<% content_for :secondary_nav do %>
|
2
2
|
<div class="secondary-nav secondary-nav--subnav">
|
3
3
|
<ul>
|
4
|
-
<% if
|
4
|
+
<% if allowed_to? :edit, :initiative, initiative: current_initiative %>
|
5
5
|
<li <% if is_active_link?(decidim_admin_initiatives.edit_initiative_path(current_initiative)) %> class="is-active" <% end %>>
|
6
6
|
<%= aria_selected_link_to t(".information"), decidim_admin_initiatives.edit_initiative_path(current_initiative) %>
|
7
7
|
</li>
|
8
8
|
<% end %>
|
9
9
|
|
10
|
-
<% if
|
10
|
+
<% if allowed_to? :manage_membership, :initiative, initiative: current_initiative %>
|
11
11
|
<li <% if is_active_link?(decidim_admin_initiatives.initiative_committee_requests_path(current_initiative)) %> class="is-active" <% end %>>
|
12
12
|
<%= aria_selected_link_to t(".committee_members"), decidim_admin_initiatives.initiative_committee_requests_path(current_initiative) %>
|
13
13
|
</li>
|
14
14
|
<% end %>
|
15
15
|
|
16
|
-
<% if
|
16
|
+
<% if allowed_to? :read, :component, initiative: current_initiative %>
|
17
17
|
<li <% if is_active_link?(decidim_admin_initiatives.components_path(current_initiative)) %> class="is-active" <% end %>>
|
18
18
|
<%= aria_selected_link_to t(".components"), decidim_admin_initiatives.components_path(current_initiative) %>
|
19
19
|
<ul>
|
@@ -35,7 +35,7 @@
|
|
35
35
|
</li>
|
36
36
|
<% end %>
|
37
37
|
|
38
|
-
<% if
|
38
|
+
<% if allowed_to? :read, :attachment, initiative: current_initiative %>
|
39
39
|
<li <% if is_active_link?(decidim_admin_initiatives.initiative_attachments_path(current_initiative)) %> class="is-active" <% end %>>
|
40
40
|
<%= aria_selected_link_to t(".attachments"), decidim_admin_initiatives.initiative_attachments_path(current_initiative) %>
|
41
41
|
</li>
|
@@ -47,8 +47,11 @@
|
|
47
47
|
<%= render "layouts/decidim/admin/application" do %>
|
48
48
|
<div class="process-title">
|
49
49
|
<div class="process-title-content">
|
50
|
-
<%= current_initiative.title
|
50
|
+
<%= link_to translated_attribute(current_initiative.title), decidim_initiatives.initiative_path(current_initiative), target: "_blank" %>
|
51
51
|
</div>
|
52
52
|
</div>
|
53
|
-
|
53
|
+
|
54
|
+
<div class="process-content">
|
55
|
+
<%= yield %>
|
56
|
+
</div>
|
54
57
|
<% end %>
|
@@ -1,12 +1,12 @@
|
|
1
1
|
<% content_for :secondary_nav do %>
|
2
2
|
<div class="secondary-nav secondary-nav--subnav">
|
3
3
|
<ul>
|
4
|
-
<% if
|
4
|
+
<% if allowed_to?(:index, :initiative) %>
|
5
5
|
<li <% if is_active_link?(decidim_admin_initiatives.initiatives_path) %> class="is-active" <% end %>>
|
6
6
|
<%= aria_selected_link_to I18n.t("menu.initiatives", scope: "decidim.admin"), decidim_admin_initiatives.initiatives_path %>
|
7
7
|
</li>
|
8
8
|
<% end %>
|
9
|
-
<% if
|
9
|
+
<% if allowed_to?(:manage, :initiative_type) %>
|
10
10
|
<li <% if is_active_link?(decidim_admin_initiatives.initiatives_types_path) %> class="is-active" <% end %>>
|
11
11
|
<%= aria_selected_link_to I18n.t("menu.initiatives_types", scope: "decidim.admin"), decidim_admin_initiatives.initiatives_types_path %>
|
12
12
|
</li>
|
@@ -16,5 +16,13 @@
|
|
16
16
|
<% end %>
|
17
17
|
|
18
18
|
<%= render "layouts/decidim/admin/application" do %>
|
19
|
-
|
19
|
+
<div class="process-title">
|
20
|
+
<div class="process-title-content">
|
21
|
+
<%= link_to t("decidim.admin.titles.initiatives"), decidim_initiatives.initiatives_path, target: "_blank" %>
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
|
25
|
+
<div class="process-content">
|
26
|
+
<%= yield %>
|
27
|
+
</div>
|
20
28
|
<% end %>
|
data/config/locales/ca.yml
CHANGED
@@ -32,6 +32,17 @@ ca:
|
|
32
32
|
address: Adreça
|
33
33
|
id_document: CIF
|
34
34
|
name: Nom complet
|
35
|
+
activerecord:
|
36
|
+
models:
|
37
|
+
decidim/initiative:
|
38
|
+
one: Iniciativa
|
39
|
+
other: Iniciatives
|
40
|
+
decidim/initiative_comittee:
|
41
|
+
one: Comitè
|
42
|
+
other: Comitès
|
43
|
+
decidim/initiative_vote:
|
44
|
+
one: Signatura
|
45
|
+
other: Firmes
|
35
46
|
decidim:
|
36
47
|
admin:
|
37
48
|
menu:
|
@@ -57,6 +68,13 @@ ca:
|
|
57
68
|
titles:
|
58
69
|
initiatives: Iniciatives
|
59
70
|
initiatives_types: Tipus d'iniciatives
|
71
|
+
events:
|
72
|
+
initiatives:
|
73
|
+
milestone_completed:
|
74
|
+
email_intro: La iniciativa %{resource_title} ha aconseguit el %{percentage}% de les signatures!
|
75
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint %{resource_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
76
|
+
email_subject: S'ha completat una nova fita!
|
77
|
+
notification_title: La iniciativa <a href="%{resource_path}">%{resource_title}</a> ha aconseguit el %{percentage}% de les signatures.
|
60
78
|
initiatives:
|
61
79
|
admin:
|
62
80
|
committee_requests:
|
@@ -214,10 +232,14 @@ ca:
|
|
214
232
|
title: Iniciatives
|
215
233
|
initiative_votes:
|
216
234
|
create:
|
217
|
-
error: Hi ha hagut errors en
|
235
|
+
error: Hi ha hagut errors en signar la iniciativa.
|
218
236
|
initiatives:
|
219
237
|
author:
|
220
238
|
deleted: S'ha suprimit
|
239
|
+
author_list:
|
240
|
+
hidden_authors_count:
|
241
|
+
one: i 1 persona més
|
242
|
+
other: i %{count} persones més
|
221
243
|
count:
|
222
244
|
title:
|
223
245
|
one: "%{count} iniciativa"
|
@@ -242,7 +264,7 @@ ca:
|
|
242
264
|
orders:
|
243
265
|
label: 'Ordena iniciatives per:'
|
244
266
|
most_commented: Els més comentats
|
245
|
-
most_voted:
|
267
|
+
most_voted: Més signades
|
246
268
|
random: Aleatori
|
247
269
|
recent: Més recent
|
248
270
|
result:
|
@@ -253,22 +275,20 @@ ca:
|
|
253
275
|
offline_method: Aquesta iniciativa ciutadana només recull suports presencials.
|
254
276
|
signature_identities:
|
255
277
|
select_identity: Selecciona la identitat de l'usuari
|
278
|
+
signatures_count:
|
279
|
+
one: " signatura"
|
280
|
+
other: " signatures"
|
256
281
|
statistics:
|
257
282
|
assistants_count_title: Assistents
|
258
283
|
comments_count_title: Comentaris
|
259
284
|
meetings_count_title: Trobades
|
260
|
-
supports_count_title:
|
285
|
+
supports_count_title: Signatures
|
261
286
|
supports:
|
262
|
-
title: Llistat
|
263
|
-
supports_count:
|
264
|
-
count:
|
265
|
-
one: " suport"
|
266
|
-
other: " suports"
|
287
|
+
title: Llistat de signatures
|
267
288
|
vote_cabin:
|
268
|
-
already_voted: Ja
|
269
|
-
supports_required: "%{total_supports} vots obligatoris"
|
289
|
+
already_voted: Ja has signat
|
270
290
|
vote: Signar
|
271
|
-
votes_blocked:
|
291
|
+
votes_blocked: S'ha desactivat la signatura
|
272
292
|
votes_count:
|
273
293
|
count:
|
274
294
|
one: SIGNATURA
|
data/config/locales/en.yml
CHANGED
@@ -33,6 +33,17 @@ en:
|
|
33
33
|
address: Address
|
34
34
|
id_document: CIF
|
35
35
|
name: Complete name
|
36
|
+
activerecord:
|
37
|
+
models:
|
38
|
+
decidim/initiative:
|
39
|
+
one: Initative
|
40
|
+
other: Initatives
|
41
|
+
decidim/initiative_comittee:
|
42
|
+
one: Comittee
|
43
|
+
other: Comittees
|
44
|
+
decidim/initiative_vote:
|
45
|
+
one: Signature
|
46
|
+
other: Signatures
|
36
47
|
decidim:
|
37
48
|
admin:
|
38
49
|
menu:
|
@@ -58,6 +69,13 @@ en:
|
|
58
69
|
titles:
|
59
70
|
initiatives: Initiatives
|
60
71
|
initiatives_types: Initiative types
|
72
|
+
events:
|
73
|
+
initiatives:
|
74
|
+
milestone_completed:
|
75
|
+
email_intro: The initiative %{resource_title} has achieved the %{percentage}% of signatures!
|
76
|
+
email_outro: You have received this notification because you are following %{resource_title}. You can stop receiving notifications following the previous link.
|
77
|
+
email_subject: New milestone completed!
|
78
|
+
notification_title: The <a href="%{resource_path}">%{resource_title}</a> initiative has achieved the %{percentage}% of signatures.
|
61
79
|
initiatives:
|
62
80
|
admin:
|
63
81
|
committee_requests:
|
@@ -215,10 +233,14 @@ en:
|
|
215
233
|
title: Initiatives
|
216
234
|
initiative_votes:
|
217
235
|
create:
|
218
|
-
error: There's been errors when
|
236
|
+
error: There's been errors when signing the initiative.
|
219
237
|
initiatives:
|
220
238
|
author:
|
221
239
|
deleted: Deleted
|
240
|
+
author_list:
|
241
|
+
hidden_authors_count:
|
242
|
+
one: and 1 more person
|
243
|
+
other: and %{count} more people
|
222
244
|
count:
|
223
245
|
title:
|
224
246
|
one: "%{count} initiative"
|
@@ -243,7 +265,7 @@ en:
|
|
243
265
|
orders:
|
244
266
|
label: 'Sort initiatives by:'
|
245
267
|
most_commented: Most commented
|
246
|
-
most_voted: Most
|
268
|
+
most_voted: Most signed
|
247
269
|
random: Random
|
248
270
|
recent: Most recent
|
249
271
|
result:
|
@@ -254,22 +276,21 @@ en:
|
|
254
276
|
offline_method: This citizen initiative only collects face to face supports.
|
255
277
|
signature_identities:
|
256
278
|
select_identity: Select user identity
|
279
|
+
signatures_count:
|
280
|
+
one: " signature"
|
281
|
+
other: " signatures"
|
257
282
|
statistics:
|
258
283
|
assistants_count_title: Assistants
|
259
284
|
comments_count_title: Comments
|
260
285
|
meetings_count_title: Meetings
|
261
|
-
supports_count_title:
|
286
|
+
supports_count_title: Signatures
|
262
287
|
supports:
|
263
|
-
title: Listing of
|
264
|
-
supports_count:
|
265
|
-
count:
|
266
|
-
one: " support"
|
267
|
-
other: " supports"
|
288
|
+
title: Listing of signatures
|
268
289
|
vote_cabin:
|
269
|
-
already_voted: Already
|
270
|
-
supports_required: "%{total_supports}
|
290
|
+
already_voted: Already signed
|
291
|
+
supports_required: "%{total_supports} signatures required"
|
271
292
|
vote: Sign
|
272
|
-
votes_blocked:
|
293
|
+
votes_blocked: Signing disabled
|
273
294
|
votes_count:
|
274
295
|
count:
|
275
296
|
one: SIGNATURE
|
data/config/locales/es.yml
CHANGED
@@ -32,6 +32,17 @@ es:
|
|
32
32
|
address: Dirección
|
33
33
|
id_document: CIF
|
34
34
|
name: Nombre completo
|
35
|
+
activerecord:
|
36
|
+
models:
|
37
|
+
decidim/initiative:
|
38
|
+
one: Iniciativa
|
39
|
+
other: Iniciativas
|
40
|
+
decidim/initiative_comittee:
|
41
|
+
one: Comité
|
42
|
+
other: Comités
|
43
|
+
decidim/initiative_vote:
|
44
|
+
one: Firma
|
45
|
+
other: Firmas
|
35
46
|
decidim:
|
36
47
|
admin:
|
37
48
|
menu:
|
@@ -57,6 +68,13 @@ es:
|
|
57
68
|
titles:
|
58
69
|
initiatives: Iniciativas
|
59
70
|
initiatives_types: Tipos de Iniciativa
|
71
|
+
events:
|
72
|
+
initiatives:
|
73
|
+
milestone_completed:
|
74
|
+
email_intro: '¡La iniciativa %{resource_title} ha logrado el %{percentage}% de firmas!'
|
75
|
+
email_outro: Has recibido esta notificación porque estás siguiendo %{resource_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
76
|
+
email_subject: '¡Nuevo hito completado!'
|
77
|
+
notification_title: La iniciativa <a href="%{resource_path}">%{resource_title}</a> ha logrado el %{percentage}% de las firmas.
|
60
78
|
initiatives:
|
61
79
|
admin:
|
62
80
|
committee_requests:
|
@@ -120,7 +138,7 @@ es:
|
|
120
138
|
initiatives_types:
|
121
139
|
create:
|
122
140
|
error: Se ha producido un error
|
123
|
-
success: Se ha creado un nuevo tipo de iniciativa
|
141
|
+
success: Se ha creado con éxito un nuevo tipo de iniciativa
|
124
142
|
destroy:
|
125
143
|
success: El tipo de iniciativa se ha eliminado correctamente
|
126
144
|
edit:
|
@@ -214,10 +232,14 @@ es:
|
|
214
232
|
title: Iniciativas
|
215
233
|
initiative_votes:
|
216
234
|
create:
|
217
|
-
error: Ha habido errores al
|
235
|
+
error: Ha habido errores al firmar la iniciativa.
|
218
236
|
initiatives:
|
219
237
|
author:
|
220
238
|
deleted: Eliminado
|
239
|
+
author_list:
|
240
|
+
hidden_authors_count:
|
241
|
+
one: y 1 persona más
|
242
|
+
other: y %{count} personas más
|
221
243
|
count:
|
222
244
|
title:
|
223
245
|
one: "%{count} iniciativa"
|
@@ -242,7 +264,7 @@ es:
|
|
242
264
|
orders:
|
243
265
|
label: 'Clasificar las iniciativas por:'
|
244
266
|
most_commented: Más comentado
|
245
|
-
most_voted:
|
267
|
+
most_voted: Más firmadas
|
246
268
|
random: Aleatorio
|
247
269
|
recent: Más reciente
|
248
270
|
result:
|
@@ -253,22 +275,21 @@ es:
|
|
253
275
|
offline_method: Esta iniciativa ciudadana solo recoge apoyos cara a cara.
|
254
276
|
signature_identities:
|
255
277
|
select_identity: Seleccionar identidad de usuario
|
278
|
+
signatures_count:
|
279
|
+
one: " firma"
|
280
|
+
other: " firmas"
|
256
281
|
statistics:
|
257
282
|
assistants_count_title: Asistentes
|
258
283
|
comments_count_title: Comentarios
|
259
284
|
meetings_count_title: Reuniones
|
260
|
-
supports_count_title:
|
285
|
+
supports_count_title: Firmas
|
261
286
|
supports:
|
262
|
-
title: Listado de
|
263
|
-
supports_count:
|
264
|
-
count:
|
265
|
-
one: " apoyo"
|
266
|
-
other: " apoyos"
|
287
|
+
title: Listado de firmas
|
267
288
|
vote_cabin:
|
268
|
-
already_voted:
|
269
|
-
supports_required: "Se requieren %{total_supports}
|
289
|
+
already_voted: Ha sido firmado
|
290
|
+
supports_required: "Se requieren %{total_supports} firmas"
|
270
291
|
vote: Firmar
|
271
|
-
votes_blocked:
|
292
|
+
votes_blocked: Firma desactivada
|
272
293
|
votes_count:
|
273
294
|
count:
|
274
295
|
one: FIRMA
|
data/config/locales/eu.yml
CHANGED
@@ -32,6 +32,17 @@ eu:
|
|
32
32
|
address: Helbidea
|
33
33
|
id_document: CIF
|
34
34
|
name: Izen osoa
|
35
|
+
activerecord:
|
36
|
+
models:
|
37
|
+
decidim/initiative:
|
38
|
+
one: Initative
|
39
|
+
other: Initatives
|
40
|
+
decidim/initiative_comittee:
|
41
|
+
one: batzordea
|
42
|
+
other: Comittees
|
43
|
+
decidim/initiative_vote:
|
44
|
+
one: Sinadura
|
45
|
+
other: sinadurak
|
35
46
|
decidim:
|
36
47
|
admin:
|
37
48
|
menu:
|
@@ -57,6 +68,13 @@ eu:
|
|
57
68
|
titles:
|
58
69
|
initiatives: Ekimenak
|
59
70
|
initiatives_types: Ekimen motak
|
71
|
+
events:
|
72
|
+
initiatives:
|
73
|
+
milestone_completed:
|
74
|
+
email_intro: '%{resource_title} ekimena sinadurak% %{percentage}lortu ditu!'
|
75
|
+
email_outro: Jakinarazpen hau jaso duzu %{resource_title}jarraitzen duzulako. Aurreko esteka jarraituz jakinarazpenak jasotzeari uztea erabaki dezakezu.
|
76
|
+
email_subject: Mugarri berria osatu da!
|
77
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> ekimenek sinadurak% %{percentage}lortu dituzte.
|
60
78
|
initiatives:
|
61
79
|
admin:
|
62
80
|
committee_requests:
|
@@ -214,10 +232,14 @@ eu:
|
|
214
232
|
title: Ekimenak
|
215
233
|
initiative_votes:
|
216
234
|
create:
|
217
|
-
error:
|
235
|
+
error: Ekimena sinatu zenean akatsak izan dira.
|
218
236
|
initiatives:
|
219
237
|
author:
|
220
238
|
deleted: Ezabatutako
|
239
|
+
author_list:
|
240
|
+
hidden_authors_count:
|
241
|
+
one: eta beste 1 pertsona
|
242
|
+
other: eta beste %{count} pertsona
|
221
243
|
count:
|
222
244
|
title:
|
223
245
|
one: "%{count} ekimena"
|
@@ -242,7 +264,7 @@ eu:
|
|
242
264
|
orders:
|
243
265
|
label: 'Sortu ekintzak honela:'
|
244
266
|
most_commented: Iruzkinik gehien
|
245
|
-
most_voted:
|
267
|
+
most_voted: Gehien sinatuta
|
246
268
|
random: Random
|
247
269
|
recent: Berrienak
|
248
270
|
result:
|
@@ -253,22 +275,21 @@ eu:
|
|
253
275
|
offline_method: Herritarren ekimen honek aurrez aurrekoak baino ez ditu biltzen.
|
254
276
|
signature_identities:
|
255
277
|
select_identity: Hautatu erabiltzailearen identitatea
|
278
|
+
signatures_count:
|
279
|
+
one: " sinadura"
|
280
|
+
other: " sinadurak"
|
256
281
|
statistics:
|
257
282
|
assistants_count_title: laguntzaileak
|
258
283
|
comments_count_title: Oharrak
|
259
284
|
meetings_count_title: Bilerak
|
260
|
-
supports_count_title:
|
285
|
+
supports_count_title: sinadurak
|
261
286
|
supports:
|
262
|
-
title:
|
263
|
-
supports_count:
|
264
|
-
count:
|
265
|
-
one: " laguntza"
|
266
|
-
other: " euskarri"
|
287
|
+
title: Sinadura zerrenda
|
267
288
|
vote_cabin:
|
268
|
-
already_voted:
|
269
|
-
supports_required: "%{total_supports}
|
289
|
+
already_voted: Dagoeneko sinatuta
|
290
|
+
supports_required: "%{total_supports} sinadura beharrezkoa da"
|
270
291
|
vote: Saioa
|
271
|
-
votes_blocked:
|
292
|
+
votes_blocked: Sinadura desgaituta dago
|
272
293
|
votes_count:
|
273
294
|
count:
|
274
295
|
one: SIGNATURE
|