decidim-consultations 0.26.1 → 0.26.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/consultations/content_blocks/highlighted_consultations/show.erb +1 -1
- data/app/controllers/concerns/decidim/consultations/needs_consultation.rb +1 -1
- data/app/controllers/concerns/decidim/consultations/needs_question.rb +3 -1
- data/app/views/decidim/consultations/_consultation.html.erb +1 -1
- data/app/views/decidim/consultations/consultations/_consultation_card.html.erb +1 -1
- data/app/views/decidim/consultations/consultations/_consultation_details.html.erb +1 -1
- data/app/views/decidim/consultations/consultations/_question.html.erb +1 -1
- data/app/views/layouts/decidim/_consultation_header.html.erb +1 -1
- data/app/views/layouts/decidim/_question_components.html.erb +19 -34
- data/app/views/layouts/decidim/_question_header.html.erb +1 -1
- data/config/locales/ar.yml +13 -1
- data/config/locales/ca.yml +0 -1
- data/config/locales/cs.yml +1 -2
- data/config/locales/de.yml +1 -1
- data/config/locales/el.yml +0 -1
- data/config/locales/en.yml +0 -1
- data/config/locales/es-MX.yml +0 -1
- data/config/locales/es-PY.yml +0 -1
- data/config/locales/es.yml +0 -1
- data/config/locales/eu.yml +0 -1
- data/config/locales/fi-plain.yml +0 -1
- data/config/locales/fi.yml +0 -1
- data/config/locales/fr-CA.yml +1 -2
- data/config/locales/fr.yml +2 -3
- data/config/locales/ga-IE.yml +0 -4
- data/config/locales/gl.yml +0 -1
- data/config/locales/hu.yml +10 -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 +0 -1
- data/config/locales/lb.yml +2 -1
- data/config/locales/lt.yml +394 -0
- data/config/locales/lv.yml +0 -1
- data/config/locales/nl.yml +1 -2
- data/config/locales/no.yml +0 -1
- data/config/locales/oc-FR.yml +1 -0
- 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 +0 -1
- data/config/locales/ru.yml +2 -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 +2 -1
- data/config/locales/zh-CN.yml +0 -1
- data/lib/decidim/consultations/version.rb +1 -1
- metadata +11 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bd4ebdb41664a0767ed23f8af9a9d5e058fdd6cef69473bbc2041501fcc3fd37
|
4
|
+
data.tar.gz: 9eeace8466a75046473dae0ebbcc0d0ed6406bdef08ae2965e5466fa649f6d0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6e05dcf689622d6af306ffedd5112d7757b9ac53bd9844192504461a21e5d282d85cc0ff9f68523a3372a8edf4ce47b97073b789a8bad45dbfac2c420d53329
|
7
|
+
data.tar.gz: dd416b97bff2c1bf3d2c9f09e8f13b00ddb1baa09e5f8ebf19fbdcfa14797a8cb1721572aaeb1315ba70a32f826318bba45f1d506a276034a24a042a4ac1bd26
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<% highlighted_consultations.each do |consultation| %>
|
8
8
|
<div class="column">
|
9
9
|
<%= link_to decidim_consultations.consultation_path(consultation), class: "card card--consultation card--mini" do %>
|
10
|
-
<div class="card__image-top" style="background-image:url(<%= consultation.attached_uploader(:banner_image).path %>)"></div>
|
10
|
+
<div class="card__image-top" style="background-image:url('<%= consultation.attached_uploader(:banner_image).path %>')"></div>
|
11
11
|
<div class="card__content">
|
12
12
|
<span class="card__title card__link"><%= translated_attribute consultation.title %></span>
|
13
13
|
<span class="card--process__small"><%= voting_ends_text_for(consultation) %></span>
|
@@ -38,7 +38,7 @@ module Decidim
|
|
38
38
|
|
39
39
|
def detect_consultation
|
40
40
|
request.env["current_consultation"] ||
|
41
|
-
organization_consultations.find_by(slug: params[:consultation_slug] || params[:slug])
|
41
|
+
organization_consultations.find_by!(slug: params[:consultation_slug] || params[:slug])
|
42
42
|
end
|
43
43
|
|
44
44
|
def organization_consultations
|
@@ -82,8 +82,10 @@ module Decidim
|
|
82
82
|
private
|
83
83
|
|
84
84
|
def detect_question
|
85
|
+
return unless request.env["current_question"] || params[:question_slug] || params[:slug]
|
86
|
+
|
85
87
|
request.env["current_question"] ||
|
86
|
-
OrganizationQuestions.for(current_organization).find_by(slug: params[:question_slug] || params[:slug])
|
88
|
+
OrganizationQuestions.for(current_organization).find_by!(slug: params[:question_slug] || params[:slug])
|
87
89
|
end
|
88
90
|
|
89
91
|
def detect_consultation
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%= link_to consultation_path(consultation), class: "consultations-banner" do %>
|
2
2
|
<div class="consultations-header consultations-home-banner row column">
|
3
3
|
<div class="row column consultations-header__main"
|
4
|
-
style="background-image:url(<%= consultation.attached_uploader(:banner_image).path %>);">
|
4
|
+
style="background-image:url('<%= consultation.attached_uploader(:banner_image).path %>');">
|
5
5
|
<div class="consultations-header__container row">
|
6
6
|
<div class="columns mediumlarge-9 consultations-header__info">
|
7
7
|
<div>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<div class="card card--process">
|
3
3
|
<%= link_to consultation_path(consultation), class: "card__link" do %>
|
4
4
|
<div class="card__image-top"
|
5
|
-
style="background-image:url(<%= consultation.attached_uploader(:banner_image).path %>)"></div>
|
5
|
+
style="background-image:url('<%= consultation.attached_uploader(:banner_image).path %>')"></div>
|
6
6
|
<% end %>
|
7
7
|
<div class="card__content">
|
8
8
|
<%= link_to consultation_path(consultation), class: "card__link" do %>
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<div class="columns medium-6 large-5 large-pull-1">
|
6
6
|
<% if consultation.introductory_video_url.blank? %>
|
7
7
|
<div class="card--full__image consultations-card__image introductory-image"
|
8
|
-
style="background-image: url(<%= consultation.attached_uploader(:introductory_image).path %>);">
|
8
|
+
style="background-image: url('<%= consultation.attached_uploader(:introductory_image).path %>');">
|
9
9
|
</div>
|
10
10
|
<% else %>
|
11
11
|
<div class="embed-container">
|
@@ -11,7 +11,7 @@
|
|
11
11
|
|
12
12
|
<div class="columns mediumlarge-8 large-3 card--process__column">
|
13
13
|
<div class="card--full__image consultations-card__image"
|
14
|
-
style="background-image: url(<%= question.banner_image_url %>)">
|
14
|
+
style="background-image: url('<%= question.banner_image_url %>')">
|
15
15
|
<div class="card__content row collapse">
|
16
16
|
<div class="columns large-10 large-push-1">
|
17
17
|
<% if question.results_published? %>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
<div class="consultations-header consultations-home-banner row column">
|
4
4
|
<div class="row column consultations-header__main"
|
5
|
-
style="background-image:url(<%= current_consultation.attached_uploader(:banner_image).path %>);">
|
5
|
+
style="background-image:url('<%= current_consultation.attached_uploader(:banner_image).path %>');">
|
6
6
|
<div class="consultations-header__container row">
|
7
7
|
<div class="columns mediumlarge-9 consultations-header__info">
|
8
8
|
<div>
|
@@ -1,36 +1,21 @@
|
|
1
|
-
<div class="row column">
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
<span class="process-nav__link">
|
6
|
-
<% if self.try(:current_component) %>
|
7
|
-
<%= component_icon(current_component) %>
|
8
|
-
<%= translated_attribute(current_component.name) %>
|
9
|
-
<% else %>
|
10
|
-
<%= external_icon "media/images/decidim_pages.svg", role: "img", "aria-hidden": true %>
|
11
|
-
<%= t ".question_menu_item" %>
|
12
|
-
<% end %>
|
13
|
-
</span>
|
14
|
-
</button>
|
1
|
+
<div class="row column consultations-nav">
|
2
|
+
<%
|
3
|
+
components = question.components.published.or(Decidim::Component.where(id: self.try(:current_component)))
|
4
|
+
%>
|
15
5
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
active: is_active_link?(main_component_path(component), :inclusive)
|
32
|
-
}
|
33
|
-
end)
|
34
|
-
%>
|
35
|
-
</div>
|
6
|
+
<%=
|
7
|
+
extended_navigation_bar([
|
8
|
+
{
|
9
|
+
name: t(".question_menu_item"),
|
10
|
+
url: decidim_consultations.question_path(question),
|
11
|
+
active: is_active_link?(decidim_consultations.question_path(question), :exclusive)
|
12
|
+
}
|
13
|
+
] + components.map do |component|
|
14
|
+
{
|
15
|
+
name: translated_attribute(component.name),
|
16
|
+
url: main_component_path(component),
|
17
|
+
active: is_active_link?(main_component_path(component), :inclusive)
|
18
|
+
}
|
19
|
+
end)
|
20
|
+
%>
|
36
21
|
</div>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<div class="consultations-header row column">
|
2
2
|
<div class="row column consultations-header__main"
|
3
|
-
style="background-image:url(<%= question.attached_uploader(:banner_image).path %>);">
|
3
|
+
style="background-image:url('<%= question.attached_uploader(:banner_image).path %>');">
|
4
4
|
<div class="consultations-header__container row">
|
5
5
|
<div class="columns mediumlarge-9 consultations-header__info">
|
6
6
|
<div>
|
data/config/locales/ar.yml
CHANGED
@@ -37,6 +37,11 @@ ar:
|
|
37
37
|
response:
|
38
38
|
decidim_consultations_response_group_id: الفريق
|
39
39
|
errors:
|
40
|
+
models:
|
41
|
+
question:
|
42
|
+
attributes:
|
43
|
+
max_votes:
|
44
|
+
lower_than_min: يجب أن يكون الحد الأقصى لعدد الأصوات أعلى أو يساوي الحد الأدنى.
|
40
45
|
vote:
|
41
46
|
decidim_consultations_response_id:
|
42
47
|
not_found: الرد غير موجود.
|
@@ -85,6 +90,7 @@ ar:
|
|
85
90
|
new_response: استجابة جديدة
|
86
91
|
new_response_group: فريق جديد
|
87
92
|
publish_results: نشر النتائج
|
93
|
+
response_groups: إدارة مجموعات الاستجابة
|
88
94
|
unpublish_results: نتائج غير منشورة
|
89
95
|
consultation_publications:
|
90
96
|
create:
|
@@ -248,6 +254,8 @@ ar:
|
|
248
254
|
label: 'ترتيب المشاورات حسب:'
|
249
255
|
random: عشوائية
|
250
256
|
recent: الأحدث
|
257
|
+
show:
|
258
|
+
dates: التواريخ
|
251
259
|
content_blocks:
|
252
260
|
highlighted_consultations:
|
253
261
|
name: مشاورات أبرزت
|
@@ -359,24 +367,28 @@ ar:
|
|
359
367
|
verification_required: تحقق من حسابك قبل التصويت
|
360
368
|
vote: تصويت
|
361
369
|
vote_modal:
|
370
|
+
close_modal: اغلاق النموذج
|
362
371
|
contextual_help: من فضلك ، حدد خيار.
|
363
372
|
title: 'التشاور: التصويت السؤال'
|
364
373
|
vote_modal_confirm:
|
365
374
|
change: يتغيرون
|
375
|
+
close_modal: اغلاق النموذج
|
366
376
|
confirm: تؤكد
|
367
377
|
contextual_help: يرجى تأكيد الخيار المحدد.
|
368
378
|
title: 'التشاور: تأكيد التصويت'
|
369
379
|
resources:
|
370
380
|
consultations:
|
371
381
|
actions:
|
382
|
+
comment: تعليق
|
372
383
|
vote: صوِّت
|
384
|
+
statistics:
|
385
|
+
votes_count: الأصوات
|
373
386
|
layouts:
|
374
387
|
decidim:
|
375
388
|
consultation_voting_data:
|
376
389
|
start_voting_date: يبدأ التصويت
|
377
390
|
question_components:
|
378
391
|
question_menu_item: السؤال
|
379
|
-
unfold: كشف
|
380
392
|
question_header:
|
381
393
|
back_to_consultation: انظر جميع المشاورات
|
382
394
|
back_to_question: العودة إلى السؤال
|
data/config/locales/ca.yml
CHANGED
data/config/locales/cs.yml
CHANGED
@@ -329,7 +329,7 @@ cs:
|
|
329
329
|
show:
|
330
330
|
badge_name:
|
331
331
|
finished: Dokončeno
|
332
|
-
open:
|
332
|
+
open: Otevřeno
|
333
333
|
open_votes: Hlasování zahájeno
|
334
334
|
published_results: Publikované výsledky
|
335
335
|
footer_button_text:
|
@@ -390,7 +390,6 @@ cs:
|
|
390
390
|
start_voting_date: Hlasování začíná
|
391
391
|
question_components:
|
392
392
|
question_menu_item: Otázka
|
393
|
-
unfold: Rozvinout
|
394
393
|
question_header:
|
395
394
|
back_to_consultation: Podívejte se na všechny konzultace
|
396
395
|
back_to_question: Zpět k otázce
|
data/config/locales/de.yml
CHANGED
@@ -359,6 +359,7 @@ de:
|
|
359
359
|
resources:
|
360
360
|
consultations:
|
361
361
|
actions:
|
362
|
+
comment: Kommentar
|
362
363
|
vote: Abstimmung
|
363
364
|
statistics:
|
364
365
|
consultations_count: Beratungen
|
@@ -369,7 +370,6 @@ de:
|
|
369
370
|
start_voting_date: Die Abstimmung beginnt
|
370
371
|
question_components:
|
371
372
|
question_menu_item: Die Frage
|
372
|
-
unfold: Entfalten
|
373
373
|
question_header:
|
374
374
|
back_to_consultation: Sehen Sie alle Konsultationen
|
375
375
|
back_to_question: Zurück zur Frage
|
data/config/locales/el.yml
CHANGED
data/config/locales/en.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
data/config/locales/es-PY.yml
CHANGED
data/config/locales/es.yml
CHANGED
data/config/locales/eu.yml
CHANGED
data/config/locales/fi-plain.yml
CHANGED
data/config/locales/fi.yml
CHANGED
data/config/locales/fr-CA.yml
CHANGED
@@ -265,7 +265,7 @@ fr-CA:
|
|
265
265
|
index:
|
266
266
|
title: Votations
|
267
267
|
last_activity:
|
268
|
-
new_consultation: Nouvelle
|
268
|
+
new_consultation: Nouvelle votation
|
269
269
|
new_question_at_html: "<span>Nouvelle question à %{link}</span>"
|
270
270
|
pages:
|
271
271
|
home:
|
@@ -370,7 +370,6 @@ fr-CA:
|
|
370
370
|
start_voting_date: Le vote commence le
|
371
371
|
question_components:
|
372
372
|
question_menu_item: La question
|
373
|
-
unfold: Voir la suite
|
374
373
|
question_header:
|
375
374
|
back_to_consultation: Voir toutes les votations
|
376
375
|
back_to_question: Retour à la question
|
data/config/locales/fr.yml
CHANGED
@@ -29,7 +29,7 @@ fr:
|
|
29
29
|
promoter_group: Organisateur
|
30
30
|
question_context: Contexte
|
31
31
|
reference: Référence
|
32
|
-
scope:
|
32
|
+
scope: Secteur
|
33
33
|
slug: Identifiant
|
34
34
|
subtitle: Sous-titre
|
35
35
|
vote: Système de vote externe
|
@@ -265,7 +265,7 @@ fr:
|
|
265
265
|
index:
|
266
266
|
title: Votations
|
267
267
|
last_activity:
|
268
|
-
new_consultation: Nouvelle
|
268
|
+
new_consultation: Nouvelle votation
|
269
269
|
new_question_at_html: "<span>Nouvelle question à %{link}</span>"
|
270
270
|
pages:
|
271
271
|
home:
|
@@ -370,7 +370,6 @@ fr:
|
|
370
370
|
start_voting_date: Le vote commence le
|
371
371
|
question_components:
|
372
372
|
question_menu_item: La question
|
373
|
-
unfold: Voir la suite
|
374
373
|
question_header:
|
375
374
|
back_to_consultation: Voir toutes les votations
|
376
375
|
back_to_question: Retour à la question
|
data/config/locales/ga-IE.yml
CHANGED
data/config/locales/gl.yml
CHANGED
data/config/locales/hu.yml
CHANGED
@@ -238,6 +238,8 @@ hu:
|
|
238
238
|
label: 'Konzultációk rendezése:'
|
239
239
|
random: Véletlenszerű
|
240
240
|
recent: Legutóbbi
|
241
|
+
show:
|
242
|
+
dates: Dátumok
|
241
243
|
content_blocks:
|
242
244
|
highlighted_consultations:
|
243
245
|
name: Kiemelt konzultációk
|
@@ -318,6 +320,8 @@ hu:
|
|
318
320
|
help:
|
319
321
|
participatory_spaces:
|
320
322
|
consultations:
|
323
|
+
contextual: "<p><strong>A konzultációk</strong> egy olyan funkció, amely lehetővé teszi, hogy világos kérdést tegyél fel, felhívást tegyél közzé a konzultációban való részvételre, vitát generálj egy kérdésben mindazoknak, akik egy szervezetet alkotnak. Amikor a konzultáció megnyílik, lehetőség van szavazni és közzétenni a szavazatok eredményeit.</p> <p>Példák: A konzultációk szinte bármely olyan területre vonatkozhatnak, amelyek egy szervezetet érintenek. Néhány példa: megváltoztatja a szervezet nevét vagy logóját, amely számos alternatívát kínál. Igennel vagy nemmel dönteni arról, hogy a szervezet egy megállapodást aláírjon vagy sem, egy nagyobb szervezet részévé váljon, egy új stratégiai terv érvényesítése vagy elutasítása kérdésében állást foglaljon, vagy egy munkacsoport munkájának eredményét elfogadja, vagy adott esetben meghatározni, hogy az adott pozícióknak legfeljebb 1, 2 vagy 3 mandátumnak kell-e maradnia.</p>\n"
|
324
|
+
page: "<p><strong>A konzultációk</strong> egy olyan terület, amely lehetővé teszi, hogy világos kérdést tegyél fel, felhívást tegyél közzé a konzultációban való részvételre, vitát generálj egy kérdésben egy szervezet tagjai számára. Amikor a konzultáció időpontja megérkezik, lehetőség van szavazni és közzétenni a szavazatok eredményeit.</p> <p>Példák: A konzultációk szinte bármely olyan területre vonatkozhatnak, amelyek egy szervezetet érintenek. Néhány példa: megváltoztatja a szervezet nevét vagy logóját, amely számos alternatívát kínál. Igennel vagy nemmel dönteni arról, hogy a szervezet egy megállapodást aláírjon vagy sem, egy nagyobb szervezet részévé váljon, egy új stratégiai terv érvényesítése vagy elutasítása kérdésében állást foglaljon, vagy egy munkacsoport munkájának eredményét elfogadja, vagy adott esetben meghatározni, hogy az adott pozícióknak legfeljebb 1, 2 vagy 3 mandátumnak kell-e maradnia.</p>\n"
|
321
325
|
title: Mi a konzultáció?
|
322
326
|
menu:
|
323
327
|
consultations: Konzultációk
|
@@ -342,24 +346,29 @@ hu:
|
|
342
346
|
verification_required: Ellenőrizd fiókod a szavazáshoz
|
343
347
|
vote: Szavazás
|
344
348
|
vote_modal:
|
349
|
+
close_modal: Ablak bezárás
|
345
350
|
contextual_help: Válassz az opciók közül.
|
346
351
|
title: 'Konzultáció: kérdés-szavazás'
|
347
352
|
vote_modal_confirm:
|
348
353
|
change: Módosítás
|
354
|
+
close_modal: Ablak bezárás
|
349
355
|
confirm: Megerősítés
|
350
356
|
contextual_help: Erősítsd meg a kiválasztott opciót.
|
351
357
|
title: 'Konzultáció: erősítsd meg a szavazatot'
|
352
358
|
resources:
|
353
359
|
consultations:
|
354
360
|
actions:
|
361
|
+
comment: Megjegyzés
|
355
362
|
vote: Szavazás
|
363
|
+
statistics:
|
364
|
+
consultations_count: Konzultációk
|
365
|
+
votes_count: Szavazások
|
356
366
|
layouts:
|
357
367
|
decidim:
|
358
368
|
consultation_voting_data:
|
359
369
|
start_voting_date: Szavazás kezdése
|
360
370
|
question_components:
|
361
371
|
question_menu_item: A kérdés
|
362
|
-
unfold: Kibontás
|
363
372
|
question_header:
|
364
373
|
back_to_consultation: Összes konzultáció megtekintése
|
365
374
|
back_to_question: Vissza a kérdéshez
|
data/config/locales/id-ID.yml
CHANGED
data/config/locales/is-IS.yml
CHANGED
data/config/locales/it.yml
CHANGED
data/config/locales/ja.yml
CHANGED
data/config/locales/lb.yml
CHANGED
@@ -183,6 +183,8 @@ lb:
|
|
183
183
|
filter: Filter
|
184
184
|
filter_by: Filtern nach
|
185
185
|
unfold: Entfalten
|
186
|
+
last_activity:
|
187
|
+
new_consultation: Neue Konsultation
|
186
188
|
pages:
|
187
189
|
home:
|
188
190
|
highlighted_consultations:
|
@@ -285,7 +287,6 @@ lb:
|
|
285
287
|
start_voting_date: Die Abstimmung beginnt
|
286
288
|
question_components:
|
287
289
|
question_menu_item: Die Frage
|
288
|
-
unfold: Entfalten
|
289
290
|
question_header:
|
290
291
|
back_to_consultation: Sehen Sie alle Konsultationen
|
291
292
|
back_to_question: Zurück zur Frage
|
data/config/locales/lt.yml
CHANGED
@@ -1 +1,395 @@
|
|
1
1
|
lt:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
consultation:
|
5
|
+
banner_image: Turinio juostos paveikslėlis
|
6
|
+
decidim_highlighted_scope_id: Paryškinta sritis
|
7
|
+
description: Aprašymas
|
8
|
+
end_voting_date: Balsavimas baigiasi
|
9
|
+
introductory_image: Įvadinis paveikslėlis
|
10
|
+
introductory_video_url: Įvadinio vaizdo įrašo URL
|
11
|
+
questions: Klausimai
|
12
|
+
slug: URL priedas
|
13
|
+
start_voting_date: Balsavimas prasideda
|
14
|
+
subtitle: Paantraštė
|
15
|
+
title: Pavadinimas
|
16
|
+
question:
|
17
|
+
banner_image: Reklamjuostės paveikslėlis
|
18
|
+
decidim_scope_id: Savivaldybės aplinka
|
19
|
+
hashtag: Grotažymė
|
20
|
+
hero_image: Pradžios paveikslėlis
|
21
|
+
i_frame_url: Išorės balsavimo sistemos URL
|
22
|
+
instructions: Papildomos balsavimo instrukcijos
|
23
|
+
max_votes: Didžiausias balsų skaičius
|
24
|
+
min_votes: Mažiausias balsų skaičius
|
25
|
+
origin_scope: Apimtis
|
26
|
+
origin_title: Kilmė
|
27
|
+
origin_url: Kilmės URL
|
28
|
+
participatory_scope: Dalyvaujamoji sritis
|
29
|
+
promoter_group: Rėmėjų grupė
|
30
|
+
question_context: Kontekstas
|
31
|
+
reference: Nuoroda
|
32
|
+
scope: Savivaldybės sritis
|
33
|
+
slug: URL priedas
|
34
|
+
subtitle: Paantraštė
|
35
|
+
vote: Išorės balsavimo sistema
|
36
|
+
what_is_decided: Kas nuspręsta
|
37
|
+
response:
|
38
|
+
decidim_consultations_response_group_id: Grupė
|
39
|
+
errors:
|
40
|
+
models:
|
41
|
+
question:
|
42
|
+
attributes:
|
43
|
+
max_votes:
|
44
|
+
lower_than_min: Didžiausias balsų skaičius turėtų būti didesnis už mažiausią balsų skaičių arba jam lygus.
|
45
|
+
vote:
|
46
|
+
decidim_consultations_response_id:
|
47
|
+
not_found: Atsakymo nerasta.
|
48
|
+
activerecord:
|
49
|
+
errors:
|
50
|
+
models:
|
51
|
+
decidim/consultations/vote:
|
52
|
+
attributes:
|
53
|
+
question:
|
54
|
+
invalid_num_votes: Negaliojantis balsų skaičius
|
55
|
+
models:
|
56
|
+
decidim/consultation:
|
57
|
+
one: Konsultacija
|
58
|
+
few: Konsultacijos (-ų)
|
59
|
+
many: Konsultacijos (-ų)
|
60
|
+
other: Konsultacijos (-ų)
|
61
|
+
decidim/consultations/question:
|
62
|
+
one: Klausimas
|
63
|
+
few: Klausimai (-ų)
|
64
|
+
many: Klausimai (-ų)
|
65
|
+
other: Klausimai (-ų)
|
66
|
+
decidim/consultations/response:
|
67
|
+
one: Atsakymas
|
68
|
+
few: Atsakymai (-ų)
|
69
|
+
many: Atsakymai (-ų)
|
70
|
+
other: Atsakymai (-ų)
|
71
|
+
decidim/consultations/vote:
|
72
|
+
one: Balsas
|
73
|
+
few: Balsai (-ų)
|
74
|
+
many: Balsai (-ų)
|
75
|
+
other: Balsai (-ų)
|
76
|
+
decidim:
|
77
|
+
admin:
|
78
|
+
actions:
|
79
|
+
back_to_responses: Grįžti į atsakymus
|
80
|
+
new_consultation: Nauja konsultacija
|
81
|
+
new_question: Naujas klausimas
|
82
|
+
new_response: Naujas atsakymas
|
83
|
+
new_response_group: Nauja grupė
|
84
|
+
publish_results: Skelbti rezultatus
|
85
|
+
response_groups: Tvarkyti atsakymų grupes
|
86
|
+
unpublish_results: Panaikinti rezultatų skelbimą
|
87
|
+
consultation_publications:
|
88
|
+
create:
|
89
|
+
error: Skelbiant šią konsultaciją iškilo problema.
|
90
|
+
success: Konsultacija paskelbta.
|
91
|
+
destroy:
|
92
|
+
error: Depublikuojant šią konsultaciją kilo problema.
|
93
|
+
success: Konsultacija sėkmingai depublikuota.
|
94
|
+
consultation_results_publications:
|
95
|
+
create:
|
96
|
+
error: Publikuojant šios konsultacijos rezultatus kilo problema.
|
97
|
+
success: Konsultacijos rezultatai sėmingai paskelbti.
|
98
|
+
destroy:
|
99
|
+
error: Depublikuojant konsultacjos rezultatus kilo problema.
|
100
|
+
success: Konsultacijos rezultatų skelbimas panaikintas.
|
101
|
+
consultations:
|
102
|
+
create:
|
103
|
+
error: Kuriant naują konsultaciją iškilo problema.
|
104
|
+
success: Konsultacija sukurta.
|
105
|
+
deprecation_warning: Konsultacijų modulis greitu metu bus išimtas. Šiuo metu dirbame prie kitos, kriptografiškai saugios versijos pavadinimu Balsavimai.
|
106
|
+
edit:
|
107
|
+
update: Atnaujinti
|
108
|
+
form:
|
109
|
+
slug_help: 'URL priedėliai naudojami nuorodų į konferenciją sukūrimui. Juose gali būti raidės, skaičiai ir brukšneliai, tačiau privalo prasidėti nuo raidės. Pavyzdys: %{url}'
|
110
|
+
title: Bendra informacija
|
111
|
+
index:
|
112
|
+
not_published: Nepublikuota
|
113
|
+
published: Publikuota
|
114
|
+
new:
|
115
|
+
create: Sukurti
|
116
|
+
title: Nauja konsultacija
|
117
|
+
results:
|
118
|
+
not_visible: Rezultatai bus paskelbti pasibaigus konsultacijai
|
119
|
+
participants: "%{count} dalyviai (-ų)"
|
120
|
+
total_votes: 'Iš viso: %{count} balsai (-ų)'
|
121
|
+
update:
|
122
|
+
error: Atnaujinant šią konsultaciją iškilo problema.
|
123
|
+
success: Konsultacija atnaujinta.
|
124
|
+
menu:
|
125
|
+
consultations: Konsultacijos
|
126
|
+
consultations_submenu:
|
127
|
+
info: Informacija
|
128
|
+
questions: Klausimai
|
129
|
+
results: Rezultatai
|
130
|
+
questions_submenu:
|
131
|
+
attachments: Priedai
|
132
|
+
categories: Kategorijos
|
133
|
+
components: Komponentai
|
134
|
+
configuration: Konfigūracija
|
135
|
+
consultation: Konsultacija
|
136
|
+
info: Informacija
|
137
|
+
responses: Atsakymai
|
138
|
+
models:
|
139
|
+
consultation:
|
140
|
+
fields:
|
141
|
+
created_at: Sukurta
|
142
|
+
published: Publikuota
|
143
|
+
title: Pavadinimas
|
144
|
+
name:
|
145
|
+
one: Konsultacija
|
146
|
+
few: Konsultacijos
|
147
|
+
many: Konsultacijos
|
148
|
+
other: Konsultacijos
|
149
|
+
question:
|
150
|
+
fields:
|
151
|
+
created_at: Sukurta
|
152
|
+
published: Publikuota
|
153
|
+
title: Pavadinimas
|
154
|
+
name:
|
155
|
+
one: Klausimas
|
156
|
+
few: Klausimai
|
157
|
+
many: Klausimai
|
158
|
+
other: Klausimai
|
159
|
+
response:
|
160
|
+
fields:
|
161
|
+
created_at: Sukurta
|
162
|
+
response_group: Grupė
|
163
|
+
title: Pavadinimas
|
164
|
+
name:
|
165
|
+
one: Atsakymas
|
166
|
+
few: Atsakymai (-ų)
|
167
|
+
many: Atsakymai (-ų)
|
168
|
+
other: Atsakymai (-ų)
|
169
|
+
question_configuration:
|
170
|
+
disable_external_voting: Dėl išplėstinės konfigūracijos išjunkite išorės balsavimą
|
171
|
+
form:
|
172
|
+
help: Sudarykite klausimus su keliais pasirenkamais atsakymais, padidindami didžiausią atsakymų, kuriuos dalyvis gali pasirinkti, skaičių. Numatytoji didžiausia vertė yra 1, o tai reiškia, kad galima pasirinkti tik vieną atsakymą.
|
173
|
+
title: Papildomi nustatymai
|
174
|
+
question_publications:
|
175
|
+
create:
|
176
|
+
error: Skelbiant šį klausimą iškilo problema.
|
177
|
+
success: Klausimas paskelbtas.
|
178
|
+
destroy:
|
179
|
+
error: Naikinant šio klausimo skelbimą iškilo problema.
|
180
|
+
success: Klausimo skelbimas panaikintas.
|
181
|
+
questions:
|
182
|
+
create:
|
183
|
+
error: Kuriant naują klausimą iškilo problema.
|
184
|
+
success: Klausimas sukurtas.
|
185
|
+
destroy:
|
186
|
+
success: Klausimas pašalintas.
|
187
|
+
edit:
|
188
|
+
update: Atnaujinti
|
189
|
+
form:
|
190
|
+
title: Bendra informacija
|
191
|
+
index:
|
192
|
+
not_published: Nepaskelbta
|
193
|
+
published: Publikuota
|
194
|
+
new:
|
195
|
+
create: Sukurti
|
196
|
+
title: Naujas klausimas
|
197
|
+
update:
|
198
|
+
error: Atnaujinant šį klausimą iškilo problema.
|
199
|
+
success: Klausimas atnaujintas.
|
200
|
+
response_groups:
|
201
|
+
create:
|
202
|
+
error: Kuriant naują atsakymų grupę iškilo problema.
|
203
|
+
success: Atsakymų grupė sukurta.
|
204
|
+
destroy:
|
205
|
+
error: Šalinant šią atsakymų grupę iškilo problema. Patikrinkite, ar su ja nesusietas nė vienas atsakymas.
|
206
|
+
success: Atsakymų grupė pašalinta.
|
207
|
+
edit:
|
208
|
+
update: Atnaujinti
|
209
|
+
form:
|
210
|
+
title: Bendra informacija
|
211
|
+
help: Naudokitės grupėmis, kad galėtumėte rinkiniuose susiteminti klausimus su keliais pasirenkamais atsakymais.
|
212
|
+
new:
|
213
|
+
create: Sukurti
|
214
|
+
title: Nauja atsakymų grupė
|
215
|
+
update:
|
216
|
+
error: Atnaujinant šį atsakymą iškilo problema.
|
217
|
+
success: Atsakymas atnaujintas.
|
218
|
+
responses:
|
219
|
+
create:
|
220
|
+
error: Kuriant naują atsakymą iškilo problema.
|
221
|
+
success: Atsakymas sukurtas.
|
222
|
+
destroy:
|
223
|
+
error: Šalinant šį atsakymą iškilo problema.
|
224
|
+
success: Atsakymas pašalintas.
|
225
|
+
edit:
|
226
|
+
update: Atnaujinti
|
227
|
+
form:
|
228
|
+
title: Bendra informacija
|
229
|
+
new:
|
230
|
+
create: Sukurti
|
231
|
+
title: Naujas atsakymas
|
232
|
+
update:
|
233
|
+
error: Atnaujinant šį atsakymą iškilo problema.
|
234
|
+
success: Atsakymas atnaujintas.
|
235
|
+
titles:
|
236
|
+
consultations: Konsultacijos
|
237
|
+
questions: Klausimai
|
238
|
+
response_groups: Atsakymų grupės
|
239
|
+
responses: Atsakymai
|
240
|
+
results: Rezultatai
|
241
|
+
consultations:
|
242
|
+
admin:
|
243
|
+
content_blocks:
|
244
|
+
highlighted_consultations:
|
245
|
+
max_results: Didžiausias rodomų elementų skaičius
|
246
|
+
consultation:
|
247
|
+
start_voting_date: Balsavimas prasideda
|
248
|
+
view_results: Peržiūrėti rezultatus
|
249
|
+
consultation_card:
|
250
|
+
view_results: Peržiūrėti rezultatus
|
251
|
+
consultations:
|
252
|
+
orders:
|
253
|
+
label: 'Konsultacijas rūšiuoti pagal:'
|
254
|
+
random: Atsitiktinis
|
255
|
+
recent: Naujausia
|
256
|
+
show:
|
257
|
+
dates: Datos
|
258
|
+
content_blocks:
|
259
|
+
highlighted_consultations:
|
260
|
+
name: Paryškintos konsultacijos
|
261
|
+
count:
|
262
|
+
title:
|
263
|
+
one: "%{count} konsultacija"
|
264
|
+
few: "%{count} konsultacijos"
|
265
|
+
many: "%{count} konsultacijos"
|
266
|
+
other: "%{count} konsultacijos"
|
267
|
+
filters:
|
268
|
+
active: Aktyvios
|
269
|
+
all: Visi
|
270
|
+
finished: Užbaigta
|
271
|
+
search: Ieškoti
|
272
|
+
state: Būsena
|
273
|
+
upcoming: Artėjančios
|
274
|
+
filters_small_view:
|
275
|
+
close_modal: Uždaryti langą
|
276
|
+
filter: Filtruoti
|
277
|
+
filter_by: Filtruoti pagal
|
278
|
+
unfold: Išskleisti
|
279
|
+
highlighted_questions:
|
280
|
+
title: '%{scope_name} pateikti klausimai'
|
281
|
+
index:
|
282
|
+
title: Konsultacijos
|
283
|
+
last_activity:
|
284
|
+
new_consultation: Nauja konsultacija
|
285
|
+
new_question_at_html: "<span>Naujas klausimas %{link}</span>"
|
286
|
+
pages:
|
287
|
+
home:
|
288
|
+
highlighted_consultations:
|
289
|
+
active_consultations: Aktyvios konsultacijos
|
290
|
+
see_all_consultations: Žiūrėti visas konsultacijas
|
291
|
+
voting_ends_in:
|
292
|
+
one: Balsavimas baigiasi <strong>rytoj</strong>
|
293
|
+
few: Balsavimas baigiasi už <strong>%{count} dienų</strong>
|
294
|
+
many: Balsavimas baigiasi už <strong>%{count} dienų</strong>
|
295
|
+
other: Balsavimas baigiasi už <strong>%{count} dienų</strong>
|
296
|
+
voting_ends_today: Balsavimas baigiasi <strong>šiandien</strong>
|
297
|
+
question:
|
298
|
+
take_part: Dalyvaukite
|
299
|
+
view_results: Peržiūrėti rezultatus
|
300
|
+
votes_out_of:
|
301
|
+
one: balsavimas iš
|
302
|
+
few: balsavimai iš
|
303
|
+
many: balsavimai iš
|
304
|
+
other: balsavimai iš
|
305
|
+
question_multiple_votes:
|
306
|
+
results_rules:
|
307
|
+
minimum_votes_per_user:
|
308
|
+
description: Dalyviai įvairiems variantams galėjo paskirstyti ne mažiau kaip %{votes} balsų.
|
309
|
+
title: Į šį klausimą galimi keli atsakymai
|
310
|
+
total_participants: Iš viso %{count} žmonės dalyvavo balsavime.
|
311
|
+
vote_limit:
|
312
|
+
description: Dalyviai gali pasirinkti ne daugiau kaip %{limit} variantų.
|
313
|
+
voting_rules:
|
314
|
+
minimum_votes_per_user:
|
315
|
+
description: Įvairiems variantams turite paskirstyti ne mažiau kaip %{votes} balsų.
|
316
|
+
title: 'Balsams taikomos šios taisyklės:'
|
317
|
+
vote_limit:
|
318
|
+
description: Galite pasirinkti ne daugiau kaip %{limit} variantų.
|
319
|
+
left: Liko
|
320
|
+
votes: Balsai
|
321
|
+
question_votes:
|
322
|
+
create:
|
323
|
+
error: Balsuojant dėl klausimo iškilo problema
|
324
|
+
success: Galite tai keisti iki konsultacijos pabaigos. Įskaitytas bus tik paskutinis balsas.
|
325
|
+
title_error: Balsavimo klaida!
|
326
|
+
title_success: Balsas įskaitytas
|
327
|
+
regular_questions:
|
328
|
+
title: Šios konsultacijos klausimai
|
329
|
+
show:
|
330
|
+
badge_name:
|
331
|
+
finished: Užbaigta
|
332
|
+
open: Atidaryta
|
333
|
+
open_votes: Atviri balsai
|
334
|
+
published_results: Rezultatai publikuoti
|
335
|
+
footer_button_text:
|
336
|
+
debate: Debatas
|
337
|
+
view: Peržiūrėti
|
338
|
+
view_results: Peržiūrėti rezultatus
|
339
|
+
vote: Balsuoti
|
340
|
+
unspecified: Nepatikslinta
|
341
|
+
help:
|
342
|
+
participatory_spaces:
|
343
|
+
consultations:
|
344
|
+
contextual: "<p><strong>Konsultacijos</strong> yra erdvė, kurioje galite užduoti aiškų klausimą visiems organizacijos žmonėms, pakviesti dalyvauti konsultacijoje, pradėti ir valdyti diskusiją už arba prieš atsakymų variantus. Atėjus konsultacijos pradžios datai, galite balsuoti ir paskelbti balsavimo rezultatus.</p> <p>Pavyzdžiai: Konsultacijos gali vykti dėl beveik visų aspektų, turinčių poveikio organizacijai: galima balsuoti dėl pavadinimo ar logotipo, nuspręsti, ar tapti didesnės organizacijos dalimi, patvirtinti arba atmesti naują strateginį planą arba darbo grupės rezultatus, ir t. t.</p>\n"
|
345
|
+
page: "<p><strong>Konsultacijos</strong> yra erdvė, kurioje galite užduoti aiškų klausimą visiems organizacijos žmonėms, pakviesti dalyvauti konsultacijoje, pradėti ir valdyti diskusiją už arba prieš atsakymų variantus. Atėjus konsultacijos pradžios datai, galite balsuoti ir paskelbti balsavimo rezultatus.</p> <p>Pavyzdžiai: Konsultacijos gali vykti dėl beveik visų aspektų, turinčių poveikio organizacijai: galima balsuoti dėl pavadinimo ar logotipo, nuspręsti, ar tapti didesnės organizacijos dalimi, patvirtinti arba atmesti naują strateginį planą arba darbo grupės rezultatus, ir t. t.</p>\n"
|
346
|
+
title: Kas yra konsultacijos?
|
347
|
+
menu:
|
348
|
+
consultations: Konsultacijos
|
349
|
+
questions:
|
350
|
+
next_button: Kitas klausimas
|
351
|
+
previous_button: Praeitas klausimas
|
352
|
+
results:
|
353
|
+
title: Rezultatai
|
354
|
+
show:
|
355
|
+
read_more: Skaityti toliau
|
356
|
+
statistics:
|
357
|
+
assistants_count_title: Padėjėjai
|
358
|
+
comments_count_title: Komentarai
|
359
|
+
meetings_count_title: Susirinkimai
|
360
|
+
supports_count_title: Balsai
|
361
|
+
technical_info:
|
362
|
+
technical_data: Techniniai duomenys
|
363
|
+
vote_button:
|
364
|
+
already_voted: Jau balsuota
|
365
|
+
already_voted_hover: Atšaukti balsą
|
366
|
+
starting_from: Prasideda nuo %{date}
|
367
|
+
verification_required: Norėdami balsuoti turite patvirtinti savo tapatybę
|
368
|
+
vote: Balsuoti
|
369
|
+
vote_modal:
|
370
|
+
close_modal: Uždaryti modalinį langą
|
371
|
+
contextual_help: Pasirinkite variantą.
|
372
|
+
title: 'Konsultacija: balsavimas dėl klausimo'
|
373
|
+
vote_modal_confirm:
|
374
|
+
change: Keisti
|
375
|
+
close_modal: Uždaryti modalinį langą
|
376
|
+
confirm: Patvirtinti
|
377
|
+
contextual_help: Patvirtinkite pasirinktą variantą.
|
378
|
+
title: 'Konsultacija: patvirtinti balsą'
|
379
|
+
resources:
|
380
|
+
consultations:
|
381
|
+
actions:
|
382
|
+
comment: Komentuoti
|
383
|
+
vote: Balsuoti
|
384
|
+
statistics:
|
385
|
+
consultations_count: Konsultacijos
|
386
|
+
votes_count: Balsai
|
387
|
+
layouts:
|
388
|
+
decidim:
|
389
|
+
consultation_voting_data:
|
390
|
+
start_voting_date: Balsavimas prasideda
|
391
|
+
question_components:
|
392
|
+
question_menu_item: Klausimas
|
393
|
+
question_header:
|
394
|
+
back_to_consultation: Žiūrėti visas konsultacijas
|
395
|
+
back_to_question: Atgal į klausimą
|
data/config/locales/lv.yml
CHANGED
data/config/locales/nl.yml
CHANGED
@@ -265,7 +265,7 @@ nl:
|
|
265
265
|
index:
|
266
266
|
title: Burgerinspraaken
|
267
267
|
last_activity:
|
268
|
-
new_consultation:
|
268
|
+
new_consultation: Nieuwe raadpleging
|
269
269
|
new_question_at_html: "<span>Nieuwe vraag op %{link}</span>"
|
270
270
|
pages:
|
271
271
|
home:
|
@@ -368,7 +368,6 @@ nl:
|
|
368
368
|
start_voting_date: Stemmen begint
|
369
369
|
question_components:
|
370
370
|
question_menu_item: De vraag
|
371
|
-
unfold: Uitklappen
|
372
371
|
question_header:
|
373
372
|
back_to_consultation: Bekijk alle burgerinspraken
|
374
373
|
back_to_question: Terug naar de vraag
|
data/config/locales/no.yml
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
oc:
|
data/config/locales/pl.yml
CHANGED
data/config/locales/pt-BR.yml
CHANGED
data/config/locales/pt.yml
CHANGED
data/config/locales/ro-RO.yml
CHANGED
data/config/locales/ru.yml
CHANGED
@@ -214,6 +214,8 @@ ru:
|
|
214
214
|
title: Вопросы из %{scope_name}
|
215
215
|
index:
|
216
216
|
title: Консультации
|
217
|
+
last_activity:
|
218
|
+
new_consultation: Добавить консультацию
|
217
219
|
pages:
|
218
220
|
home:
|
219
221
|
highlighted_consultations:
|
@@ -276,6 +278,5 @@ ru:
|
|
276
278
|
start_voting_date: Голосование начинается
|
277
279
|
question_components:
|
278
280
|
question_menu_item: Вопрос
|
279
|
-
unfold: Развернуть
|
280
281
|
question_header:
|
281
282
|
back_to_consultation: Просмотреть все консультации
|
data/config/locales/sk.yml
CHANGED
data/config/locales/sv.yml
CHANGED
data/config/locales/tr-TR.yml
CHANGED
data/config/locales/uk.yml
CHANGED
@@ -214,6 +214,8 @@ uk:
|
|
214
214
|
title: Питання з %{scope_name}
|
215
215
|
index:
|
216
216
|
title: Консультації
|
217
|
+
last_activity:
|
218
|
+
new_consultation: Додати консультацію
|
217
219
|
pages:
|
218
220
|
home:
|
219
221
|
highlighted_consultations:
|
@@ -276,6 +278,5 @@ uk:
|
|
276
278
|
start_voting_date: Голосування починається
|
277
279
|
question_components:
|
278
280
|
question_menu_item: Питання
|
279
|
-
unfold: Розгорнути
|
280
281
|
question_header:
|
281
282
|
back_to_consultation: Переглянути всі консультації
|
data/config/locales/zh-CN.yml
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-consultations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.26.
|
4
|
+
version: 0.26.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Salvador Perez Garcia
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: decidim-admin
|
@@ -16,56 +16,56 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.26.
|
19
|
+
version: 0.26.3
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.26.
|
26
|
+
version: 0.26.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: decidim-comments
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.26.
|
33
|
+
version: 0.26.3
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.26.
|
40
|
+
version: 0.26.3
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: decidim-core
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.26.
|
47
|
+
version: 0.26.3
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.26.
|
54
|
+
version: 0.26.3
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: decidim-dev
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.26.
|
61
|
+
version: 0.26.3
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.26.
|
68
|
+
version: 0.26.3
|
69
69
|
description: Extends Decidim adding a first level public consultation component
|
70
70
|
email:
|
71
71
|
- jsperezg@gmail.com
|
@@ -292,6 +292,7 @@ files:
|
|
292
292
|
- config/locales/mt.yml
|
293
293
|
- config/locales/nl.yml
|
294
294
|
- config/locales/no.yml
|
295
|
+
- config/locales/oc-FR.yml
|
295
296
|
- config/locales/om-ET.yml
|
296
297
|
- config/locales/pl.yml
|
297
298
|
- config/locales/pt-BR.yml
|