decidim-initiatives 0.27.2 → 0.27.3
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 +2 -2
- 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 +19 -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 +647 -0
- data/lib/decidim/initiatives/engine.rb +2 -1
- data/lib/decidim/initiatives/version.rb +1 -1
- metadata +18 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4de8a6eb8903857ae8de827d67b21afbef2c747807a8759c2088966ea55ad345
|
4
|
+
data.tar.gz: 97e189067791585fa0c07f91a89a38baba31a2da0f8345cfad80a70386e66a26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38ab4c66f1b526b6097ff8d2da79dbf0af7a75f6a476d927bbb5d71be530e4641c0974fcc149075baa2b24e79ef9e0140680bc0aa65220183a52d0b20fc81ed1
|
7
|
+
data.tar.gz: e33268bcb434bc4f25e29f9312735d48c3900b7cf26cd000f8e0d46fa2ceddbb40f42788541d779c077afc2e63a317522588129431c4c1a9c8d9efa777ef866c
|
@@ -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">
|
@@ -9,12 +9,12 @@
|
|
9
9
|
</div>
|
10
10
|
|
11
11
|
<div class="row column">
|
12
|
-
<%= form.translated :editor, :description
|
12
|
+
<%= form.translated :editor, :description %>
|
13
13
|
</div>
|
14
14
|
|
15
15
|
<div class="row">
|
16
16
|
<div class="columns xlarge-6">
|
17
|
-
<%= form.upload :banner_image,
|
17
|
+
<%= form.upload :banner_image, required: true %>
|
18
18
|
</div>
|
19
19
|
</div>
|
20
20
|
</div>
|
@@ -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
@@ -363,8 +363,8 @@ ca:
|
|
363
363
|
fill_data:
|
364
364
|
back: Torna
|
365
365
|
continue: Continua
|
366
|
+
decidim_user_group_id_help: No és possible canviar l'autoria de la iniciativa després de crear-la
|
366
367
|
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>"
|
367
|
-
initiative_type: Tipus d'iniciativa
|
368
368
|
more_information: "(Més informació)"
|
369
369
|
select_area: Selecciona una àrea
|
370
370
|
select_scope: Selecciona un àmbit d'aplicació
|
@@ -445,6 +445,7 @@ ca:
|
|
445
445
|
delete_attachment: Esborrar
|
446
446
|
index:
|
447
447
|
title: Iniciatives
|
448
|
+
uninitialized: Les iniciatives no han estat configurades encara des de l'administració.
|
448
449
|
initiative_signatures:
|
449
450
|
fill_personal_data:
|
450
451
|
continue: Continua
|
data/config/locales/cs.yml
CHANGED
@@ -68,6 +68,11 @@ cs:
|
|
68
68
|
title: Název nesmí být prázdný
|
69
69
|
activerecord:
|
70
70
|
models:
|
71
|
+
decidim/initiative:
|
72
|
+
one: Iniciativa
|
73
|
+
few: Iniciativy
|
74
|
+
many: Iniciativ
|
75
|
+
other: Iniciativ
|
71
76
|
decidim/initiative_comittee:
|
72
77
|
one: Výbor
|
73
78
|
few: Výbory
|
@@ -364,8 +369,8 @@ cs:
|
|
364
369
|
fill_data:
|
365
370
|
back: Zpět
|
366
371
|
continue: Pokračovat
|
372
|
+
decidim_user_group_id_help: Po vytvoření není možné změnit autoritu iniciativy
|
367
373
|
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>"
|
368
|
-
initiative_type: Typ iniciativy
|
369
374
|
more_information: "(Více informací)"
|
370
375
|
select_area: Vybrat oblast
|
371
376
|
select_scope: Zvolte rozsah
|
@@ -446,6 +451,7 @@ cs:
|
|
446
451
|
delete_attachment: Smazat
|
447
452
|
index:
|
448
453
|
title: Iniciativy
|
454
|
+
uninitialized: Iniciativy ještě nejsou nakonfigurovány správcem
|
449
455
|
initiative_signatures:
|
450
456
|
fill_personal_data:
|
451
457
|
continue: Pokračovat
|
data/config/locales/de.yml
CHANGED
@@ -58,6 +58,9 @@ de:
|
|
58
58
|
title: Der Titel sollte nicht leer sein
|
59
59
|
activerecord:
|
60
60
|
models:
|
61
|
+
decidim/initiative:
|
62
|
+
one: Initiative
|
63
|
+
other: Initiativen
|
61
64
|
decidim/initiative_comittee:
|
62
65
|
one: Komitee
|
63
66
|
other: Ausschüsse
|
@@ -349,7 +352,6 @@ de:
|
|
349
352
|
back: Zurück
|
350
353
|
continue: Fortsetzen
|
351
354
|
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>"
|
352
|
-
initiative_type: Art der Initiative
|
353
355
|
more_information: "(Weitere Informationen)"
|
354
356
|
select_area: Wählen Sie einen Bereich aus
|
355
357
|
select_scope: Wählen Sie einen Bereich aus
|
data/config/locales/el.yml
CHANGED
data/config/locales/en.yml
CHANGED
@@ -363,8 +363,8 @@ en:
|
|
363
363
|
fill_data:
|
364
364
|
back: Back
|
365
365
|
continue: Continue
|
366
|
+
decidim_user_group_id_help: It's not possible to change initiative authorship after creation
|
366
367
|
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>"
|
367
|
-
initiative_type: Initiative type
|
368
368
|
more_information: "(More information)"
|
369
369
|
select_area: Select an area
|
370
370
|
select_scope: Select a scope
|
@@ -445,6 +445,7 @@ en:
|
|
445
445
|
delete_attachment: Delete
|
446
446
|
index:
|
447
447
|
title: Initiatives
|
448
|
+
uninitialized: Initiatives are not yet configured by an administrator
|
448
449
|
initiative_signatures:
|
449
450
|
fill_personal_data:
|
450
451
|
continue: Continue
|
data/config/locales/es-MX.yml
CHANGED
@@ -363,8 +363,8 @@ es-MX:
|
|
363
363
|
fill_data:
|
364
364
|
back: Volver
|
365
365
|
continue: Continuar
|
366
|
+
decidim_user_group_id_help: No es posible cambiar l'autoría de la iniciativa después de crearla
|
366
367
|
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>"
|
367
|
-
initiative_type: Tipo de iniciativa
|
368
368
|
more_information: "(Más información)"
|
369
369
|
select_area: Selecciona una área
|
370
370
|
select_scope: Seleccione un alcance
|
@@ -445,6 +445,7 @@ es-MX:
|
|
445
445
|
delete_attachment: Borrar
|
446
446
|
index:
|
447
447
|
title: Iniciativas
|
448
|
+
uninitialized: Las iniciativas aún no están configuradas desde la administración.
|
448
449
|
initiative_signatures:
|
449
450
|
fill_personal_data:
|
450
451
|
continue: Continuar
|
data/config/locales/es-PY.yml
CHANGED
@@ -363,8 +363,8 @@ es-PY:
|
|
363
363
|
fill_data:
|
364
364
|
back: Volver
|
365
365
|
continue: Continuar
|
366
|
+
decidim_user_group_id_help: No es posible cambiar l'autoría de la iniciativa después de crearla
|
366
367
|
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>"
|
367
|
-
initiative_type: Tipo de iniciativa
|
368
368
|
more_information: "(Más información)"
|
369
369
|
select_area: Selecciona una área
|
370
370
|
select_scope: Seleccione un alcance
|
@@ -445,6 +445,7 @@ es-PY:
|
|
445
445
|
delete_attachment: Borrar
|
446
446
|
index:
|
447
447
|
title: Iniciativas
|
448
|
+
uninitialized: Las iniciativas aún no están configuradas desde la administración.
|
448
449
|
initiative_signatures:
|
449
450
|
fill_personal_data:
|
450
451
|
continue: Continuar
|
data/config/locales/es.yml
CHANGED
@@ -363,8 +363,8 @@ es:
|
|
363
363
|
fill_data:
|
364
364
|
back: Volver
|
365
365
|
continue: Continuar
|
366
|
+
decidim_user_group_id_help: No es posible cambiar l'autoría de la iniciativa después de crearla
|
366
367
|
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>"
|
367
|
-
initiative_type: Tipo de iniciativa
|
368
368
|
more_information: "(Más información)"
|
369
369
|
select_area: Selecciona un área
|
370
370
|
select_scope: Seleccione un alcance
|
@@ -445,6 +445,7 @@ es:
|
|
445
445
|
delete_attachment: Borrar
|
446
446
|
index:
|
447
447
|
title: Iniciativas
|
448
|
+
uninitialized: Las iniciativas aún no están configuradas desde la administración.
|
448
449
|
initiative_signatures:
|
449
450
|
fill_personal_data:
|
450
451
|
continue: Continuar
|
data/config/locales/eu.yml
CHANGED
@@ -327,7 +327,6 @@ eu:
|
|
327
327
|
back: Back
|
328
328
|
continue: Jarraitu
|
329
329
|
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>"
|
330
|
-
initiative_type: Ekimen mota
|
331
330
|
more_information: "(Informazio gehiago)"
|
332
331
|
select_area: Hautatu eremu bat
|
333
332
|
select_scope: Aukeratu esparrua
|
@@ -457,7 +456,7 @@ eu:
|
|
457
456
|
author: Egilea
|
458
457
|
myself: Nire ekimenak
|
459
458
|
scope: Eremua
|
460
|
-
search:
|
459
|
+
search: Bilatu
|
461
460
|
state: Estatu
|
462
461
|
type: Mota
|
463
462
|
filters_small_view:
|
@@ -0,0 +1 @@
|
|
1
|
+
fa:
|
data/config/locales/fi-plain.yml
CHANGED
@@ -363,8 +363,8 @@ fi-pl:
|
|
363
363
|
fill_data:
|
364
364
|
back: Takaisin
|
365
365
|
continue: Jatka
|
366
|
+
decidim_user_group_id_help: Aloitteen laatijan muuttaminen ei ole mahdollista luonnin jälkeen
|
366
367
|
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>"
|
367
|
-
initiative_type: Aloitteen tyyppi
|
368
368
|
more_information: "(Lisää tietoa)"
|
369
369
|
select_area: Valitse alue
|
370
370
|
select_scope: Valitse teema
|
@@ -445,6 +445,7 @@ fi-pl:
|
|
445
445
|
delete_attachment: Poista
|
446
446
|
index:
|
447
447
|
title: Aloitteet
|
448
|
+
uninitialized: Hallintakäyttäjä ei ole vielä määrittänyt aloitteiden asetuksia
|
448
449
|
initiative_signatures:
|
449
450
|
fill_personal_data:
|
450
451
|
continue: Jatka
|
data/config/locales/fi.yml
CHANGED
@@ -199,7 +199,7 @@ fi:
|
|
199
199
|
participatory_spaces:
|
200
200
|
initiatives:
|
201
201
|
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"
|
202
|
-
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ä
|
202
|
+
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"
|
203
203
|
title: Mitkä ovat aloitteet?
|
204
204
|
initiatives:
|
205
205
|
actions:
|
@@ -363,8 +363,8 @@ fi:
|
|
363
363
|
fill_data:
|
364
364
|
back: Takaisin
|
365
365
|
continue: Jatka
|
366
|
+
decidim_user_group_id_help: Aloitteen laatijan muuttaminen ei ole mahdollista luonnin jälkeen
|
366
367
|
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>"
|
367
|
-
initiative_type: Aloitteen tyyppi
|
368
368
|
more_information: "(Lisää tietoa)"
|
369
369
|
select_area: Valitse alue
|
370
370
|
select_scope: Valitse teema
|
@@ -445,6 +445,7 @@ fi:
|
|
445
445
|
delete_attachment: Poista
|
446
446
|
index:
|
447
447
|
title: Aloitteet
|
448
|
+
uninitialized: Hallintakäyttäjä ei ole vielä määrittänyt aloitteiden asetuksia
|
448
449
|
initiative_signatures:
|
449
450
|
fill_personal_data:
|
450
451
|
continue: Jatka
|
data/config/locales/fr-CA.yml
CHANGED
@@ -68,6 +68,9 @@ fr-CA:
|
|
68
68
|
title: Le titre ne doit pas être vide
|
69
69
|
activerecord:
|
70
70
|
models:
|
71
|
+
decidim/initiative:
|
72
|
+
one: Pétition
|
73
|
+
other: Pétitions
|
71
74
|
decidim/initiative_comittee:
|
72
75
|
one: Comité
|
73
76
|
other: Comités
|
@@ -360,8 +363,8 @@ fr-CA:
|
|
360
363
|
fill_data:
|
361
364
|
back: Retour
|
362
365
|
continue: Continuer
|
366
|
+
decidim_user_group_id_help: Il n'est pas possible de changer l'auteur/autrice de la pétition après sa création
|
363
367
|
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>"
|
364
|
-
initiative_type: Type d'initiative
|
365
368
|
more_information: "(Plus d'informations)"
|
366
369
|
select_area: Sélectionnez une zone
|
367
370
|
select_scope: Sélectionnez une portée
|
@@ -442,6 +445,7 @@ fr-CA:
|
|
442
445
|
delete_attachment: Supprimer
|
443
446
|
index:
|
444
447
|
title: Pétitions
|
448
|
+
uninitialized: Les pétitions ne sont pas encore configurées par un administrateur
|
445
449
|
initiative_signatures:
|
446
450
|
fill_personal_data:
|
447
451
|
continue: Continuer
|
data/config/locales/fr.yml
CHANGED
@@ -68,6 +68,9 @@ fr:
|
|
68
68
|
title: Le titre ne doit pas être vide
|
69
69
|
activerecord:
|
70
70
|
models:
|
71
|
+
decidim/initiative:
|
72
|
+
one: Pétition
|
73
|
+
other: Pétitions
|
71
74
|
decidim/initiative_comittee:
|
72
75
|
one: Comité
|
73
76
|
other: Comités
|
@@ -360,8 +363,8 @@ fr:
|
|
360
363
|
fill_data:
|
361
364
|
back: Retour
|
362
365
|
continue: Continuer
|
366
|
+
decidim_user_group_id_help: Il n'est pas possible de changer l'auteur/autrice de la pétition après sa création
|
363
367
|
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>"
|
364
|
-
initiative_type: Type de pétition
|
365
368
|
more_information: "(Plus d'informations)"
|
366
369
|
select_area: Sélectionnez une zone
|
367
370
|
select_scope: Sélectionnez une portée
|
@@ -442,6 +445,7 @@ fr:
|
|
442
445
|
delete_attachment: Supprimer
|
443
446
|
index:
|
444
447
|
title: Pétitions
|
448
|
+
uninitialized: Les pétitions ne sont pas encore configurées par un administrateur
|
445
449
|
initiative_signatures:
|
446
450
|
fill_personal_data:
|
447
451
|
continue: Continuer
|