decidim-initiatives 0.26.5 → 0.26.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/commands/decidim/initiatives/create_initiative.rb +2 -1
- data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +1 -1
- data/app/controllers/decidim/initiatives/application_controller.rb +7 -0
- data/app/controllers/decidim/initiatives/create_initiative_controller.rb +15 -0
- data/app/controllers/decidim/initiatives/initiatives_controller.rb +3 -0
- data/app/forms/decidim/initiatives/initiative_form.rb +3 -0
- data/app/helpers/decidim/initiatives/{create_initiative_helper.rb → signature_type_options_helper.rb} +1 -1
- data/app/views/decidim/initiatives/admin/initiatives/_form.html.erb +1 -1
- data/app/views/decidim/initiatives/admin/initiatives_types/_form.html.erb +1 -1
- data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +27 -12
- data/app/views/decidim/initiatives/create_initiative/previous_form.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_form.html.erb +29 -23
- data/app/views/decidim/initiatives/initiatives/print.html.erb +1 -1
- data/config/locales/ar.yml +4 -1
- data/config/locales/ca.yml +2 -1
- data/config/locales/cs.yml +7 -1
- data/config/locales/de.yml +3 -1
- data/config/locales/el.yml +0 -1
- data/config/locales/en.yml +2 -1
- data/config/locales/es-MX.yml +2 -1
- data/config/locales/es-PY.yml +2 -1
- data/config/locales/es.yml +2 -1
- data/config/locales/eu.yml +1 -2
- data/config/locales/fa-IR.yml +1 -0
- data/config/locales/fi-plain.yml +2 -1
- data/config/locales/fi.yml +3 -2
- data/config/locales/fr-CA.yml +5 -1
- data/config/locales/fr.yml +5 -1
- data/config/locales/gl.yml +0 -1
- data/config/locales/hu.yml +0 -1
- data/config/locales/id-ID.yml +0 -1
- data/config/locales/is-IS.yml +0 -1
- data/config/locales/it.yml +0 -1
- data/config/locales/ja.yml +2 -1
- data/config/locales/kaa.yml +1 -0
- data/config/locales/lb.yml +0 -1
- data/config/locales/lt.yml +0 -1
- data/config/locales/lv.yml +0 -1
- data/config/locales/nl.yml +0 -1
- data/config/locales/no.yml +0 -1
- data/config/locales/pl.yml +0 -1
- data/config/locales/pt-BR.yml +0 -1
- data/config/locales/pt.yml +0 -1
- data/config/locales/ro-RO.yml +6 -1
- data/config/locales/ru.yml +0 -1
- data/config/locales/sk.yml +0 -1
- data/config/locales/sv.yml +0 -1
- data/config/locales/tr-TR.yml +0 -1
- data/config/locales/uk.yml +0 -1
- data/config/locales/zh-CN.yml +0 -1
- data/config/locales/zh-TW.yml +622 -0
- data/lib/decidim/initiatives/engine.rb +2 -1
- data/lib/decidim/initiatives/version.rb +1 -1
- metadata +17 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5434782f1886bba7a75e2b762513b7de19548de11cd8e4197f0ae93485a13910
|
4
|
+
data.tar.gz: 52496641bbb82f4ecd9b86ec7d6d4d6c7876a3105fba936c848bcc6f0e04ff19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 644b87421cc7c3623ec05c1c61b2f055ace79e6671b201237296cb2135de43769f54b6c85a6ae16d6eb1c4f964c2ce56ee5817481f7b902d4e2b74b0f8cac36c
|
7
|
+
data.tar.gz: b171982c491930b9e7154ac7d10e0d09da2d982ab352107e4990fda8e72252210beccbd7ed3a802ee8a289c66e32844382de5ef6d8d9185502b70646e38c0b97
|
@@ -14,7 +14,7 @@ module Decidim
|
|
14
14
|
|
15
15
|
helper ::Decidim::Admin::ResourcePermissionsHelper
|
16
16
|
helper Decidim::Initiatives::InitiativeHelper
|
17
|
-
helper Decidim::Initiatives::
|
17
|
+
helper Decidim::Initiatives::SignatureTypeOptionsHelper
|
18
18
|
|
19
19
|
# GET /admin/initiatives
|
20
20
|
def index
|
@@ -11,6 +11,13 @@ module Decidim
|
|
11
11
|
::Decidim::Admin::Permissions,
|
12
12
|
::Decidim::Permissions)
|
13
13
|
|
14
|
+
before_action do
|
15
|
+
if Decidim::InitiativesType.joins(:scopes).where(organization: current_organization).all.empty?
|
16
|
+
flash[:alert] = t("index.uninitialized", scope: "decidim.initiatives")
|
17
|
+
redirect_to(decidim.root_path)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
14
21
|
def permissions_context
|
15
22
|
super.merge(
|
16
23
|
current_participatory_space: try(:current_participatory_space)
|
@@ -16,6 +16,8 @@ module Decidim
|
|
16
16
|
|
17
17
|
helper Decidim::Admin::IconLinkHelper
|
18
18
|
helper InitiativeHelper
|
19
|
+
helper SignatureTypeOptionsHelper
|
20
|
+
|
19
21
|
helper_method :similar_initiatives
|
20
22
|
helper_method :scopes
|
21
23
|
helper_method :areas
|
@@ -23,6 +25,8 @@ module Decidim
|
|
23
25
|
helper_method :initiative_type
|
24
26
|
helper_method :promotal_committee_required?
|
25
27
|
|
28
|
+
before_action :authenticate_user!
|
29
|
+
|
26
30
|
steps :select_initiative_type,
|
27
31
|
:previous_form,
|
28
32
|
:show_similar_initiatives,
|
@@ -30,6 +34,8 @@ module Decidim
|
|
30
34
|
:promotal_committee,
|
31
35
|
:finish
|
32
36
|
|
37
|
+
before_action :ensure_type_exists, only: :show
|
38
|
+
|
33
39
|
def show
|
34
40
|
enforce_permission_to :create, :initiative
|
35
41
|
send("#{step}_step", initiative: session_initiative)
|
@@ -42,6 +48,15 @@ module Decidim
|
|
42
48
|
|
43
49
|
private
|
44
50
|
|
51
|
+
def ensure_type_exists
|
52
|
+
destination_step = single_initiative_type? ? :previous_form : :select_initiative_type
|
53
|
+
|
54
|
+
return if step == destination_step
|
55
|
+
return if initiative_type_id.present? && initiative_type.present?
|
56
|
+
|
57
|
+
redirect_to wizard_path(destination_step)
|
58
|
+
end
|
59
|
+
|
45
60
|
def select_initiative_type_step(_parameters)
|
46
61
|
@form = form(Decidim::Initiatives::SelectInitiativeTypeForm).instance
|
47
62
|
session[:initiative] = {}
|
@@ -18,6 +18,8 @@ module Decidim
|
|
18
18
|
helper Decidim::ResourceReferenceHelper
|
19
19
|
helper PaginateHelper
|
20
20
|
helper InitiativeHelper
|
21
|
+
helper SignatureTypeOptionsHelper
|
22
|
+
|
21
23
|
include InitiativeSlug
|
22
24
|
include FilterResource
|
23
25
|
include Paginable
|
@@ -86,6 +88,7 @@ module Decidim
|
|
86
88
|
enforce_permission_to :update, :initiative, initiative: current_initiative
|
87
89
|
|
88
90
|
params[:id] = params[:slug]
|
91
|
+
params[:type_id] = current_initiative.type&.id
|
89
92
|
@form = form(Decidim::Initiatives::InitiativeForm)
|
90
93
|
.from_params(params, initiative_type: current_initiative.type, initiative: current_initiative)
|
91
94
|
|
@@ -39,6 +39,9 @@ module Decidim
|
|
39
39
|
def map_model(model)
|
40
40
|
self.type_id = model.type.id
|
41
41
|
self.scope_id = model.scope&.id
|
42
|
+
self.signature_type = model.signature_type
|
43
|
+
self.title = translated_attribute(model.title)
|
44
|
+
self.description = translated_attribute(model.description)
|
42
45
|
end
|
43
46
|
|
44
47
|
def signature_type_updatable?
|
@@ -3,7 +3,7 @@
|
|
3
3
|
module Decidim
|
4
4
|
module Initiatives
|
5
5
|
# Helper methods for the create initiative wizard.
|
6
|
-
module
|
6
|
+
module SignatureTypeOptionsHelper
|
7
7
|
def signature_type_options(initiative_form)
|
8
8
|
return all_signature_type_options unless initiative_form.signature_type_updatable?
|
9
9
|
|
@@ -9,7 +9,7 @@
|
|
9
9
|
</div>
|
10
10
|
|
11
11
|
<div class="row column">
|
12
|
-
<%= form.translated :editor, :description,
|
12
|
+
<%= form.translated :editor, :description, lines: 8, disabled: !allowed_to?(:update, :initiative, initiative: current_initiative) %>
|
13
13
|
</div>
|
14
14
|
|
15
15
|
<div class="row column">
|
@@ -20,12 +20,23 @@
|
|
20
20
|
<div class="card__content">
|
21
21
|
<%= decidim_form_for(@form, url: next_wizard_path, method: :put, html: { class: "form new_initiative_form" }) do |f| %>
|
22
22
|
<%= form_required_explanation %>
|
23
|
-
<%= f.hidden_field :type_id %>
|
24
23
|
<div class=section>
|
25
|
-
<%
|
24
|
+
<% if single_initiative_type? %>
|
25
|
+
<%= f.hidden_field :type_id %>
|
26
|
+
<% else %>
|
26
27
|
<div class="field">
|
27
|
-
|
28
|
-
|
28
|
+
<%= f.select :type_id,
|
29
|
+
initiative_type_options,
|
30
|
+
{},
|
31
|
+
{
|
32
|
+
disabled: !@form.signature_type_updatable?,
|
33
|
+
"data-scope-selector": "initiative_decidim_scope_id",
|
34
|
+
"data-scope-id": f.object.scope_id.to_s,
|
35
|
+
"data-scope-search-url": decidim_initiatives.initiative_type_scopes_search_url,
|
36
|
+
"data-signature-types-selector": "initiative_signature_type",
|
37
|
+
"data-signature-type": current_initiative&.signature_type,
|
38
|
+
"data-signature-types-search-url": decidim_initiatives.initiative_type_signature_types_search_url
|
39
|
+
} %>
|
29
40
|
</div>
|
30
41
|
<% end %>
|
31
42
|
|
@@ -34,7 +45,11 @@
|
|
34
45
|
</div>
|
35
46
|
|
36
47
|
<div class="field">
|
37
|
-
<%= text_editor_for(f, :description, lines: 8, toolbar: :
|
48
|
+
<%= text_editor_for(f, :description, lines: 8, toolbar: :content) %>
|
49
|
+
</div>
|
50
|
+
|
51
|
+
<div class="field">
|
52
|
+
<%= f.text_field :hashtag %>
|
38
53
|
</div>
|
39
54
|
|
40
55
|
<% signature_type_options = signature_type_options(f.object) %>
|
@@ -46,6 +61,12 @@
|
|
46
61
|
</div>
|
47
62
|
<% end %>
|
48
63
|
|
64
|
+
<% if initiative_type.custom_signature_end_date_enabled? %>
|
65
|
+
<div class="field">
|
66
|
+
<%= f.date_field :signature_end_date %>
|
67
|
+
</div>
|
68
|
+
<% end %>
|
69
|
+
|
49
70
|
<% if scopes.length == 1 %>
|
50
71
|
<%= f.hidden_field :scope_id, value: scopes.first.scope&.id %>
|
51
72
|
<% else %>
|
@@ -57,12 +78,6 @@
|
|
57
78
|
</div>
|
58
79
|
<% end %>
|
59
80
|
|
60
|
-
<% if initiative_type.custom_signature_end_date_enabled? %>
|
61
|
-
<div class="field">
|
62
|
-
<%= f.date_field :signature_end_date %>
|
63
|
-
</div>
|
64
|
-
<% end %>
|
65
|
-
|
66
81
|
<% if initiative_type.area_enabled? %>
|
67
82
|
<div class="field">
|
68
83
|
<%= f.areas_select :area_id, areas_for_select(current_organization), prompt: t(".select_area") %>
|
@@ -73,7 +88,7 @@
|
|
73
88
|
<div class="field">
|
74
89
|
<%= f.select :decidim_user_group_id,
|
75
90
|
Decidim::UserGroups::ManageableUserGroups.for(current_user).verified.map { |g| [g.name, g.id] },
|
76
|
-
include_blank: current_user.name %>
|
91
|
+
include_blank: current_user.name, help_text: t(".decidim_user_group_id_help") %>
|
77
92
|
</div>
|
78
93
|
<% end %>
|
79
94
|
|
@@ -1,24 +1,5 @@
|
|
1
1
|
<%= form_required_explanation %>
|
2
2
|
|
3
|
-
<div class="field">
|
4
|
-
<%= form.text_field :title, autofocus: true, disabled: !allowed_to?(:update, :initiative, initiative: current_initiative), value: translated_attribute(@form.title) %>
|
5
|
-
</div>
|
6
|
-
|
7
|
-
<div class="field">
|
8
|
-
<%= text_editor_for(form, :description, toolbar: :full, lines: 8, disabled: !allowed_to?(:update, :initiative, initiative: current_initiative), value: translated_attribute(@form.description)) %>
|
9
|
-
</div>
|
10
|
-
|
11
|
-
<div class="field">
|
12
|
-
<%= form.text_field :hashtag, disabled: !allowed_to?(:update, :initiative, initiative: current_initiative) %>
|
13
|
-
</div>
|
14
|
-
|
15
|
-
<div class="field">
|
16
|
-
<%= form.select :state,
|
17
|
-
Decidim::Initiative.states.keys.map { |state| [I18n.t(state, scope: "decidim.initiatives.admin_states"), state] },
|
18
|
-
{},
|
19
|
-
{ disabled: !@form.state_updatable? } %>
|
20
|
-
</div>
|
21
|
-
|
22
3
|
<% unless single_initiative_type? %>
|
23
4
|
<div class="field">
|
24
5
|
<%= form.select :type_id,
|
@@ -37,17 +18,38 @@
|
|
37
18
|
<% end %>
|
38
19
|
|
39
20
|
<div class="field">
|
40
|
-
<%= form.
|
41
|
-
@form.available_scopes.map { |scope| [translated_attribute(scope.scope_name), scope&.scope&.id] },
|
42
|
-
{ disabled: !@form.state_updatable? } %>
|
21
|
+
<%= form.text_field :title, autofocus: true, disabled: !allowed_to?(:update, :initiative, initiative: current_initiative), value: translated_attribute(@form.title) %>
|
43
22
|
</div>
|
44
23
|
|
24
|
+
<div class="field">
|
25
|
+
<%= text_editor_for(form, :description, toolbar: :content, lines: 8, disabled: !allowed_to?(:update, :initiative, initiative: current_initiative), value: translated_attribute(@form.description)) %>
|
26
|
+
</div>
|
27
|
+
|
28
|
+
<div class="field">
|
29
|
+
<%= form.text_field :hashtag, disabled: !allowed_to?(:update, :initiative, initiative: current_initiative) %>
|
30
|
+
</div>
|
31
|
+
|
32
|
+
<% signature_type_options = signature_type_options(form.object) %>
|
33
|
+
<% if signature_type_options.length == 1 %>
|
34
|
+
<%= form.hidden_field :signature_type %>
|
35
|
+
<% else %>
|
36
|
+
<div class="field">
|
37
|
+
<%= form.select :signature_type, signature_type_options, {}, { disabled: !@form.signature_type_updatable? } %>
|
38
|
+
</div>
|
39
|
+
<% end %>
|
40
|
+
|
45
41
|
<% if can_edit_custom_signature_end_date?(current_initiative) %>
|
46
42
|
<div class="row column">
|
47
43
|
<%= form.date_field :signature_end_date, disabled: !allowed_to?(:update, :initiative, initiative: current_initiative) %>
|
48
44
|
</div>
|
49
45
|
<% end %>
|
50
46
|
|
47
|
+
<div class="field">
|
48
|
+
<%= form.select :scope_id,
|
49
|
+
@form.available_scopes.map { |scope| [translated_attribute(scope.scope_name), scope&.scope&.id] },
|
50
|
+
{ disabled: !@form.state_updatable? } %>
|
51
|
+
</div>
|
52
|
+
|
51
53
|
<% if current_initiative.area_enabled? %>
|
52
54
|
<div class="field">
|
53
55
|
<%= form.areas_select :area_id,
|
@@ -61,8 +63,12 @@
|
|
61
63
|
<% end %>
|
62
64
|
|
63
65
|
<div class="field">
|
64
|
-
<%= form.select :
|
66
|
+
<%= form.select :state,
|
67
|
+
Decidim::Initiative.states.keys.map { |state| [I18n.t(state, scope: "decidim.initiatives.admin_states"), state] },
|
68
|
+
{},
|
69
|
+
{ disabled: !@form.state_updatable? } %>
|
65
70
|
</div>
|
71
|
+
|
66
72
|
<% if current_initiative.type.attachments_enabled? %>
|
67
73
|
<fieldset class="attachments_container">
|
68
74
|
<legend><%= t("attachment_legend", scope: "decidim.initiatives.form") %></legend>
|
data/config/locales/ar.yml
CHANGED
@@ -253,7 +253,6 @@ ar:
|
|
253
253
|
fill_data:
|
254
254
|
back: الى الخلف
|
255
255
|
continue: استمر
|
256
|
-
initiative_type: نوع المبادرة
|
257
256
|
more_information: "(معلومات اكثر)"
|
258
257
|
select_scope: حدد النطاق
|
259
258
|
finish:
|
@@ -293,6 +292,8 @@ ar:
|
|
293
292
|
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{author_nickname}. يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
294
293
|
email_subject: المبادرة التي أقرتها %{author_nickname}
|
295
294
|
notification_title: تمت الموافقة على مبادرة <a href="%{resource_path}">%{resource_title}</a> من قبل <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
295
|
+
form:
|
296
|
+
delete_attachment: حذف
|
296
297
|
index:
|
297
298
|
title: المبادرات
|
298
299
|
initiative_signatures:
|
@@ -372,6 +373,7 @@ ar:
|
|
372
373
|
recent: الأحدث
|
373
374
|
print:
|
374
375
|
city: مدينة
|
376
|
+
full_name: الاسم الكامل
|
375
377
|
initiative:
|
376
378
|
description: 'الوصف:'
|
377
379
|
result:
|
@@ -421,6 +423,7 @@ ar:
|
|
421
423
|
see_all_initiatives: رؤية جميع المبادرات
|
422
424
|
show:
|
423
425
|
badge_name:
|
426
|
+
accepted: ما يكفي من التوقيعات
|
424
427
|
validating: تحقق تقني
|
425
428
|
states:
|
426
429
|
accepted: وافقت
|
data/config/locales/ca.yml
CHANGED
@@ -340,8 +340,8 @@ ca:
|
|
340
340
|
fill_data:
|
341
341
|
back: Torna
|
342
342
|
continue: Continua
|
343
|
+
decidim_user_group_id_help: No és possible canviar l'autoria de la iniciativa després de crear-la
|
343
344
|
fill_data_help: "<ul> <li>Revisa el contingut de la teva iniciativa. El títol és fàcil d'entendre? L'objectiu de la teva iniciativa és clar?</li> <li>Has d'escollir el tipus de signatura. Presencial, digital o una combinació de totes dues.</li> <li>Quin és l'àmbit geogràfic de la iniciativa?</li> </ul>"
|
344
|
-
initiative_type: Tipus d'iniciativa
|
345
345
|
more_information: "(Més informació)"
|
346
346
|
select_area: Selecciona una àrea
|
347
347
|
select_scope: Selecciona un àmbit d'aplicació
|
@@ -422,6 +422,7 @@ ca:
|
|
422
422
|
delete_attachment: Esborrar
|
423
423
|
index:
|
424
424
|
title: Iniciatives
|
425
|
+
uninitialized: Les iniciatives no han estat configurades encara des de l'administració.
|
425
426
|
initiative_signatures:
|
426
427
|
fill_personal_data:
|
427
428
|
continue: Continua
|
data/config/locales/cs.yml
CHANGED
@@ -66,6 +66,11 @@ cs:
|
|
66
66
|
title: Název nesmí být prázdný
|
67
67
|
activerecord:
|
68
68
|
models:
|
69
|
+
decidim/initiative:
|
70
|
+
one: Iniciativa
|
71
|
+
few: Iniciativy
|
72
|
+
many: Iniciativ
|
73
|
+
other: Iniciativ
|
69
74
|
decidim/initiative_comittee:
|
70
75
|
one: Výbor
|
71
76
|
few: Výbory
|
@@ -341,8 +346,8 @@ cs:
|
|
341
346
|
fill_data:
|
342
347
|
back: Zpět
|
343
348
|
continue: Pokračovat
|
349
|
+
decidim_user_group_id_help: Po vytvoření není možné změnit autoritu iniciativy
|
344
350
|
fill_data_help: "<ul> <li>Přečtěte si obsah vaší iniciativy. Je váš název snadno srozumitelný? Je cíl vaší iniciativy jasný?</li> <li>Musíte zvolit typ podpisu. Osobní, on-line nebo kombinace obou</li> <li>Jaká je geografická oblast působnosti?</li> </ul>"
|
345
|
-
initiative_type: Typ iniciativy
|
346
351
|
more_information: "(Více informací)"
|
347
352
|
select_area: Vybrat oblast
|
348
353
|
select_scope: Zvolte rozsah
|
@@ -423,6 +428,7 @@ cs:
|
|
423
428
|
delete_attachment: Smazat
|
424
429
|
index:
|
425
430
|
title: Iniciativy
|
431
|
+
uninitialized: Iniciativy ještě nejsou nakonfigurovány správcem
|
426
432
|
initiative_signatures:
|
427
433
|
fill_personal_data:
|
428
434
|
continue: Pokračovat
|
data/config/locales/de.yml
CHANGED
@@ -56,6 +56,9 @@ de:
|
|
56
56
|
title: Der Titel sollte nicht leer sein
|
57
57
|
activerecord:
|
58
58
|
models:
|
59
|
+
decidim/initiative:
|
60
|
+
one: Initiative
|
61
|
+
other: Initiativen
|
59
62
|
decidim/initiative_comittee:
|
60
63
|
one: Komitee
|
61
64
|
other: Ausschüsse
|
@@ -326,7 +329,6 @@ de:
|
|
326
329
|
back: Zurück
|
327
330
|
continue: Fortsetzen
|
328
331
|
fill_data_help: "<ul> <li>Inhalt Ihrer Initiative überprüfen. Ist Ihr Titel leicht verständlich? Ist das Ziel Ihrer Initiative klar?</li> <li>Sie müssen die Art der Unterschrift wählen. Persönlich, online oder eine Kombination aus beidem</li> <li>Was ist die geografische Reichweite der Initiative? Stadt, Bezirk?</li> </ul>"
|
329
|
-
initiative_type: Art der Initiative
|
330
332
|
more_information: "(Weitere Informationen)"
|
331
333
|
select_area: Wählen Sie einen Bereich aus
|
332
334
|
select_scope: Wählen Sie einen Bereich aus
|
data/config/locales/el.yml
CHANGED
data/config/locales/en.yml
CHANGED
@@ -341,8 +341,8 @@ en:
|
|
341
341
|
fill_data:
|
342
342
|
back: Back
|
343
343
|
continue: Continue
|
344
|
+
decidim_user_group_id_help: It's not possible to change initiative authorship after creation
|
344
345
|
fill_data_help: "<ul> <li>Review the content of your initiative. Is your title easy to understand? Is the objective of your initiative clear?</li> <li>You have to choose the type of signature. In-person, online or a combination of both</li> <li>Which is the geographic scope of the initiative?</li> </ul>"
|
345
|
-
initiative_type: Initiative type
|
346
346
|
more_information: "(More information)"
|
347
347
|
select_area: Select an area
|
348
348
|
select_scope: Select a scope
|
@@ -423,6 +423,7 @@ en:
|
|
423
423
|
delete_attachment: Delete
|
424
424
|
index:
|
425
425
|
title: Initiatives
|
426
|
+
uninitialized: Initiatives are not yet configured by an administrator
|
426
427
|
initiative_signatures:
|
427
428
|
fill_personal_data:
|
428
429
|
continue: Continue
|
data/config/locales/es-MX.yml
CHANGED
@@ -340,8 +340,8 @@ es-MX:
|
|
340
340
|
fill_data:
|
341
341
|
back: Volver
|
342
342
|
continue: Continuar
|
343
|
+
decidim_user_group_id_help: No es posible cambiar l'autoría de la iniciativa después de crearla
|
343
344
|
fill_data_help: "<ul> <li>Revisa el contenido de tu iniciativa. ¿Tu título es fácil de entender? ¿Está claro el objetivo de tu iniciativa?</li> <li>Tienes que elegir el tipo de firma. En persona, en línea o una combinación de ambos</li> <li>¿Cuál es el alcance geográfico de la iniciativa?</li> </ul>"
|
344
|
-
initiative_type: Tipo de iniciativa
|
345
345
|
more_information: "(Más información)"
|
346
346
|
select_area: Selecciona una área
|
347
347
|
select_scope: Seleccione un alcance
|
@@ -422,6 +422,7 @@ es-MX:
|
|
422
422
|
delete_attachment: Borrar
|
423
423
|
index:
|
424
424
|
title: Iniciativas
|
425
|
+
uninitialized: Las iniciativas aún no están configuradas desde la administración.
|
425
426
|
initiative_signatures:
|
426
427
|
fill_personal_data:
|
427
428
|
continue: Continuar
|
data/config/locales/es-PY.yml
CHANGED
@@ -340,8 +340,8 @@ es-PY:
|
|
340
340
|
fill_data:
|
341
341
|
back: Volver
|
342
342
|
continue: Continuar
|
343
|
+
decidim_user_group_id_help: No es posible cambiar l'autoría de la iniciativa después de crearla
|
343
344
|
fill_data_help: "<ul> <li>Revisa el contenido de tu iniciativa. ¿Tu título es fácil de entender? ¿Está claro el objetivo de tu iniciativa?</li> <li>Tienes que elegir el tipo de firma. En persona, en línea o una combinación de ambos</li> <li>¿Cuál es el alcance geográfico de la iniciativa?</li> </ul>"
|
344
|
-
initiative_type: Tipo de iniciativa
|
345
345
|
more_information: "(Más información)"
|
346
346
|
select_area: Selecciona una área
|
347
347
|
select_scope: Seleccione un alcance
|
@@ -422,6 +422,7 @@ es-PY:
|
|
422
422
|
delete_attachment: Borrar
|
423
423
|
index:
|
424
424
|
title: Iniciativas
|
425
|
+
uninitialized: Las iniciativas aún no están configuradas desde la administración.
|
425
426
|
initiative_signatures:
|
426
427
|
fill_personal_data:
|
427
428
|
continue: Continuar
|
data/config/locales/es.yml
CHANGED
@@ -340,8 +340,8 @@ es:
|
|
340
340
|
fill_data:
|
341
341
|
back: Volver
|
342
342
|
continue: Continuar
|
343
|
+
decidim_user_group_id_help: No es posible cambiar l'autoría de la iniciativa después de crearla
|
343
344
|
fill_data_help: "<ul> <li>Revisa el contenido de tu iniciativa. ¿Tu título es fácil de entender? ¿Está claro el objetivo de tu iniciativa?</li> <li>Tienes que elegir el tipo de firma. En persona, en línea o una combinación de ambos</li> <li>¿Cuál es el alcance geográfico de la iniciativa?</li> </ul>"
|
344
|
-
initiative_type: Tipo de iniciativa
|
345
345
|
more_information: "(Más información)"
|
346
346
|
select_area: Selecciona un área
|
347
347
|
select_scope: Seleccione un alcance
|
@@ -422,6 +422,7 @@ es:
|
|
422
422
|
delete_attachment: Borrar
|
423
423
|
index:
|
424
424
|
title: Iniciativas
|
425
|
+
uninitialized: Las iniciativas aún no están configuradas desde la administración.
|
425
426
|
initiative_signatures:
|
426
427
|
fill_personal_data:
|
427
428
|
continue: Continuar
|
data/config/locales/eu.yml
CHANGED
@@ -326,7 +326,6 @@ eu:
|
|
326
326
|
back: Back
|
327
327
|
continue: Jarraitu
|
328
328
|
fill_data_help: "<ul> <li>Berrikusi zure ekimenaren edukia. Zure izenburua ulertzen erraza da? Zure ekimenaren helburua argi dago?</li> <li>Sinadura mota aukeratu behar duzu.</li> <li>aurrez aurre, linean edo biak konbinatuta. Zein da ekimenaren eremu geografikoa? </li> </ul>"
|
329
|
-
initiative_type: Ekimen mota
|
330
329
|
more_information: "(Informazio gehiago)"
|
331
330
|
select_area: Hautatu eremu bat
|
332
331
|
select_scope: Aukeratu esparrua
|
@@ -456,7 +455,7 @@ eu:
|
|
456
455
|
author: Egilea
|
457
456
|
myself: Nire ekimenak
|
458
457
|
scope: Eremua
|
459
|
-
search:
|
458
|
+
search: Bilatu
|
460
459
|
state: Estatu
|
461
460
|
type: Mota
|
462
461
|
filters_small_view:
|
@@ -0,0 +1 @@
|
|
1
|
+
fa:
|
data/config/locales/fi-plain.yml
CHANGED
@@ -340,8 +340,8 @@ fi-pl:
|
|
340
340
|
fill_data:
|
341
341
|
back: Takaisin
|
342
342
|
continue: Jatka
|
343
|
+
decidim_user_group_id_help: Aloitteen laatijan muuttaminen ei ole mahdollista luonnin jälkeen
|
343
344
|
fill_data_help: "<ul> <li>Tarkasta aloitteesi sisältö. Onko aloitteen otsikko helppo ymmärtää? Onko aloitteen tavoitteet tarpeeksi selkeästi kuvattu?</li> <li>Sinun on valittava allekirjoitustapa. Palvelun ulkopuolella, verkossa tai molemmat.</li> <li>Mikä on aloitteen maantieteellinen laajuus?</li> </ul>"
|
344
|
-
initiative_type: Aloitteen tyyppi
|
345
345
|
more_information: "(Lisää tietoa)"
|
346
346
|
select_area: Valitse alue
|
347
347
|
select_scope: Valitse teema
|
@@ -422,6 +422,7 @@ fi-pl:
|
|
422
422
|
delete_attachment: Poista
|
423
423
|
index:
|
424
424
|
title: Aloitteet
|
425
|
+
uninitialized: Hallintakäyttäjä ei ole vielä määrittänyt aloitteiden asetuksia
|
425
426
|
initiative_signatures:
|
426
427
|
fill_personal_data:
|
427
428
|
continue: Jatka
|
data/config/locales/fi.yml
CHANGED
@@ -192,7 +192,7 @@ fi:
|
|
192
192
|
participatory_spaces:
|
193
193
|
initiatives:
|
194
194
|
contextual: "<p><strong>Aloite</strong> on ehdotus, jota kuka tahansa voi itsenäisesti edistää (muista kanavista tai osallistumistiloista riippumatta) kokoamalla (digitaaliset) tarvittavat allekirjoitukset organisaatiolle tietyn toimen toteuttamiseksi (asetuksen muuttaminen, hankkeen käynnistys, alueen tai kadun nimen muuttaminen, jne.).</p> <p>Aloitteen edistäjät voivat määritellä tavoitteet, kerätä tukijoukkoja, järjestää keskustelua, levittää aloitetta ja määritellä kohtaamispaikkoja, joissa allekirjoituksia voidaan kerätä osallistujilta tai keskustella avoimesti muiden osallistujien kanssa.</p> <p>Esimerkiksi, aloite voi: kerätä allekirjoituksia kutsuakseen koolle tietyn joukon organisaation edustajia, panna aluilleen ryhmän tai käynnistää prosessin määrärahojen lisäämisestä alueelle tai organisaatiolle. Allekirjoitusten keräysprosessin aikana useammat ihmiset voivat antaa panoksensa aloitteen vaatimuksille ja viedä sitä eteenpäin organisaatiossa.</p>\n"
|
195
|
-
page: "<p><strong>Aloite</strong> on ehdotus, jota kuka tahansa voi itsenäisesti edistää (muista kanavista tai osallistumistiloista riippumatta) kokoamalla (digitaaliset) tarvittavat allekirjoitukset organisaatiolle tietyn toimen toteuttamiseksi (asetuksen muuttaminen, hankkeen käynnistys, alueen tai kadun nimen muuttaminen, jne.).</p> <p>Aloitteen edistäjät voivat määritellä tavoitteet, kerätä
|
195
|
+
page: "<p><strong>Aloite</strong> on ehdotus, jota kuka tahansa voi itsenäisesti edistää (muista kanavista tai osallistumistiloista riippumatta) kokoamalla (digitaaliset) tarvittavat allekirjoitukset organisaatiolle tietyn toimen toteuttamiseksi (asetuksen muuttaminen, hankkeen käynnistys, alueen tai kadun nimen muuttaminen, jne.).</p> <p>Aloitteen edistäjät voivat määritellä tavoitteet, kerätä tukijoukkoja, järjestää keskustelua, levittää aloitetta ja määritellä kohtaamispaikkoja, joissa allekirjoituksia voidaan kerätä osallistujilta tai keskustella avoimesti muiden osallistujien kanssa.</p> <p>Esimerkiksi, aloite voi: kerätä allekirjoituksia kutsuakseen koolle tietyn joukon organisaation edustajia, panna aluilleen ryhmän tai käynnistää prosessin määrärahojen lisäämisestä alueelle tai organisaatiolle. Allekirjoitusten keräysprosessin aikana useammat ihmiset voivat antaa panoksensa aloitteen vaatimuksille ja viedä sitä eteenpäin organisaatiossa.</p>\n"
|
196
196
|
title: Mitkä ovat aloitteet?
|
197
197
|
initiatives:
|
198
198
|
actions:
|
@@ -340,8 +340,8 @@ fi:
|
|
340
340
|
fill_data:
|
341
341
|
back: Takaisin
|
342
342
|
continue: Jatka
|
343
|
+
decidim_user_group_id_help: Aloitteen laatijan muuttaminen ei ole mahdollista luonnin jälkeen
|
343
344
|
fill_data_help: "<ul> <li>Tarkasta aloitteesi sisältö. Onko aloitteen otsikko helppo ymmärtää? Onko aloitteen tavoitteet tarpeeksi selkeästi kuvattu?</li> <li>Sinun on valittava allekirjoitustapa. Palvelun ulkopuolella, verkossa tai molemmat.</li> <li>Mikä on aloitteen maantieteellinen laajuus?</li> </ul>"
|
344
|
-
initiative_type: Aloitteen tyyppi
|
345
345
|
more_information: "(Lisää tietoa)"
|
346
346
|
select_area: Valitse alue
|
347
347
|
select_scope: Valitse teema
|
@@ -422,6 +422,7 @@ fi:
|
|
422
422
|
delete_attachment: Poista
|
423
423
|
index:
|
424
424
|
title: Aloitteet
|
425
|
+
uninitialized: Hallintakäyttäjä ei ole vielä määrittänyt aloitteiden asetuksia
|
425
426
|
initiative_signatures:
|
426
427
|
fill_personal_data:
|
427
428
|
continue: Jatka
|
data/config/locales/fr-CA.yml
CHANGED
@@ -66,6 +66,9 @@ fr-CA:
|
|
66
66
|
title: Le titre ne doit pas être vide
|
67
67
|
activerecord:
|
68
68
|
models:
|
69
|
+
decidim/initiative:
|
70
|
+
one: Pétition
|
71
|
+
other: Pétitions
|
69
72
|
decidim/initiative_comittee:
|
70
73
|
one: Comité
|
71
74
|
other: Comités
|
@@ -337,8 +340,8 @@ fr-CA:
|
|
337
340
|
fill_data:
|
338
341
|
back: Retour
|
339
342
|
continue: Continuer
|
343
|
+
decidim_user_group_id_help: Il n'est pas possible de changer l'auteur/autrice de la pétition après sa création
|
340
344
|
fill_data_help: "<ul> <li>Vérifier le contenu de votre pétition : le titre est-il facile à comprendre ? L'objectif de votre pétition est-il clair ?</li> <li>Vous devez choisir le type de signature : en présentiel, en ligne ou une combinaison des deux</li> <li>Quelle est le secteur géographique de l'initiative ?</li> </ul>"
|
341
|
-
initiative_type: Type d'initiative
|
342
345
|
more_information: "(Plus d'informations)"
|
343
346
|
select_area: Sélectionnez une zone
|
344
347
|
select_scope: Sélectionnez une portée
|
@@ -419,6 +422,7 @@ fr-CA:
|
|
419
422
|
delete_attachment: Supprimer
|
420
423
|
index:
|
421
424
|
title: Pétitions
|
425
|
+
uninitialized: Les pétitions ne sont pas encore configurées par un administrateur
|
422
426
|
initiative_signatures:
|
423
427
|
fill_personal_data:
|
424
428
|
continue: Continuer
|
data/config/locales/fr.yml
CHANGED
@@ -66,6 +66,9 @@ fr:
|
|
66
66
|
title: Le titre ne doit pas être vide
|
67
67
|
activerecord:
|
68
68
|
models:
|
69
|
+
decidim/initiative:
|
70
|
+
one: Pétition
|
71
|
+
other: Pétitions
|
69
72
|
decidim/initiative_comittee:
|
70
73
|
one: Comité
|
71
74
|
other: Comités
|
@@ -337,8 +340,8 @@ fr:
|
|
337
340
|
fill_data:
|
338
341
|
back: Retour
|
339
342
|
continue: Continuer
|
343
|
+
decidim_user_group_id_help: Il n'est pas possible de changer l'auteur/autrice de la pétition après sa création
|
340
344
|
fill_data_help: "<ul> <li>Vérifier le contenu de votre pétition : le titre est-il facile à comprendre ? L'objectif de votre pétition est-il clair ?</li> <li>Vous devez choisir le type de signature : en présentiel, en ligne ou une combinaison des deux</li> <li>Quelle est le secteur géographique de l'initiative ?</li> </ul>"
|
341
|
-
initiative_type: Type de pétition
|
342
345
|
more_information: "(Plus d'informations)"
|
343
346
|
select_area: Sélectionnez une zone
|
344
347
|
select_scope: Sélectionnez une portée
|
@@ -419,6 +422,7 @@ fr:
|
|
419
422
|
delete_attachment: Supprimer
|
420
423
|
index:
|
421
424
|
title: Pétitions
|
425
|
+
uninitialized: Les pétitions ne sont pas encore configurées par un administrateur
|
422
426
|
initiative_signatures:
|
423
427
|
fill_personal_data:
|
424
428
|
continue: Continuer
|