decidim-participatory_processes 0.26.7 → 0.26.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/commands/decidim/participatory_processes/admin/destroy_participatory_process_admin.rb +5 -0
- data/app/controllers/decidim/participatory_processes/admin/participatory_process_groups_controller.rb +2 -3
- data/app/controllers/decidim/participatory_processes/admin/participatory_processes_controller.rb +1 -1
- data/app/queries/decidim/participatory_processes/filtered_participatory_process_groups.rb +4 -2
- data/app/queries/decidim/participatory_processes/stats_participants_count.rb +12 -0
- data/app/views/decidim/participatory_processes/admin/participatory_process_copies/new.html.erb +1 -2
- data/app/views/decidim/participatory_processes/admin/participatory_process_groups/edit.html.erb +1 -0
- data/app/views/decidim/participatory_processes/admin/participatory_process_groups/index.html.erb +1 -0
- data/app/views/decidim/participatory_processes/admin/participatory_process_groups/new.html.erb +1 -0
- data/app/views/decidim/participatory_processes/admin/participatory_processes/index.html.erb +0 -1
- data/app/views/decidim/participatory_processes/admin/participatory_processes/new.html.erb +0 -1
- data/app/views/decidim/participatory_processes/participatory_process_steps/index.html.erb +0 -1
- data/config/environment.rb +0 -0
- data/config/locales/ar.yml +5 -3
- data/config/locales/bg.yml +6 -0
- data/config/locales/ca.yml +4 -4
- data/config/locales/cs.yml +3 -3
- data/config/locales/de.yml +13 -10
- data/config/locales/el.yml +64 -3
- data/config/locales/es-MX.yml +0 -4
- data/config/locales/es-PY.yml +0 -4
- data/config/locales/es.yml +2 -2
- data/config/locales/eu.yml +19 -12
- data/config/locales/fi-plain.yml +1 -5
- data/config/locales/fi.yml +0 -4
- data/config/locales/fr-CA.yml +1 -5
- data/config/locales/fr.yml +4 -5
- data/config/locales/ga-IE.yml +2 -0
- data/config/locales/gl.yml +2 -6
- data/config/locales/hu.yml +61 -55
- data/config/locales/id-ID.yml +7 -3
- data/config/locales/is-IS.yml +0 -10
- data/config/locales/it.yml +7 -11
- data/config/locales/ja.yml +2 -6
- data/config/locales/kaa.yml +5 -0
- data/config/locales/lb.yml +3 -5
- data/config/locales/lt.yml +0 -4
- data/config/locales/lv.yml +7 -3
- data/config/locales/nl.yml +4 -8
- data/config/locales/no.yml +6 -10
- data/config/locales/pl.yml +1 -5
- data/config/locales/pt-BR.yml +0 -4
- data/config/locales/pt.yml +1 -5
- data/config/locales/ro-RO.yml +0 -4
- data/config/locales/ru.yml +4 -4
- data/config/locales/sk.yml +7 -3
- data/config/locales/sl.yml +3 -0
- data/config/locales/sv.yml +3 -7
- data/config/locales/tr-TR.yml +2 -6
- data/config/locales/uk.yml +4 -4
- data/config/locales/zh-CN.yml +7 -3
- data/config/locales/zh-TW.yml +1 -5
- data/lib/decidim/participatory_processes/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: 9182aca33277f87562c252290f952c3746852c4aba858304845903b2265ab4d7
|
4
|
+
data.tar.gz: 6a122a804eca1d280d3d64cbfe30cb1b0963bd73a39270638ba7cf3ac156f4da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b7e6fdb4f174cb8a6f572f1bbd834ddb1626c03a916c6d78479d8545ea78c8fc2c5fc8fcd76c77dae55eccb19e75f0690162a68af02fb9032b8c97f017c9980
|
7
|
+
data.tar.gz: 0e6ac2aed342123c1be136444e6c0656c9b555d84a2b8339dfb13387969c13bc814bd485528ad165cbe699249f6d29eabd2c059b23464d89ddf68ffd2eefc338
|
data/app/commands/decidim/participatory_processes/admin/destroy_participatory_process_admin.rb
CHANGED
@@ -23,6 +23,7 @@ module Decidim
|
|
23
23
|
# Returns nothing.
|
24
24
|
def call
|
25
25
|
destroy_role!
|
26
|
+
dispatch_system_event
|
26
27
|
broadcast(:ok)
|
27
28
|
end
|
28
29
|
|
@@ -30,6 +31,10 @@ module Decidim
|
|
30
31
|
|
31
32
|
attr_reader :role, :current_user
|
32
33
|
|
34
|
+
def dispatch_system_event
|
35
|
+
ActiveSupport::Notifications.publish("decidim.system.participatory_space.admin.destroyed", role.class.name, role.id)
|
36
|
+
end
|
37
|
+
|
33
38
|
def destroy_role!
|
34
39
|
extra_info = {
|
35
40
|
resource: {
|
@@ -81,12 +81,11 @@ module Decidim
|
|
81
81
|
private
|
82
82
|
|
83
83
|
def participatory_process_group
|
84
|
-
@participatory_process_group ||=
|
84
|
+
@participatory_process_group ||= collection.find(params[:id])
|
85
85
|
end
|
86
86
|
|
87
87
|
def collection
|
88
|
-
@collection ||=
|
89
|
-
OrganizationParticipatoryProcessGroups.new(current_user.organization).query
|
88
|
+
@collection ||= OrganizationParticipatoryProcessGroups.new(current_user.organization).query
|
90
89
|
end
|
91
90
|
end
|
92
91
|
end
|
data/app/controllers/decidim/participatory_processes/admin/participatory_processes_controller.rb
CHANGED
@@ -77,7 +77,7 @@ module Decidim
|
|
77
77
|
private
|
78
78
|
|
79
79
|
def process_group
|
80
|
-
@process_group ||= ParticipatoryProcessGroup.find_by(id: ransack_params[:decidim_participatory_process_group_id_eq])
|
80
|
+
@process_group ||= ParticipatoryProcessGroup.find_by(id: ransack_params[:decidim_participatory_process_group_id_eq], organization: current_organization)
|
81
81
|
end
|
82
82
|
|
83
83
|
def collection
|
@@ -15,9 +15,11 @@ module Decidim
|
|
15
15
|
|
16
16
|
processes = case @filter
|
17
17
|
when "past"
|
18
|
-
processes.
|
18
|
+
processes.past
|
19
19
|
when "upcoming"
|
20
|
-
processes.
|
20
|
+
processes.upcoming
|
21
|
+
when "active"
|
22
|
+
processes.active
|
21
23
|
else
|
22
24
|
processes
|
23
25
|
end
|
@@ -42,6 +42,8 @@ module Decidim
|
|
42
42
|
end
|
43
43
|
|
44
44
|
def comments_query
|
45
|
+
return [] unless Decidim.module_installed?(:comments)
|
46
|
+
|
45
47
|
Decidim::Comments::Comment
|
46
48
|
.where(decidim_participatory_space_type: Decidim::ParticipatoryProcess.class.name)
|
47
49
|
.where(decidim_participatory_space_id: participatory_space_ids)
|
@@ -50,6 +52,8 @@ module Decidim
|
|
50
52
|
end
|
51
53
|
|
52
54
|
def debates_query
|
55
|
+
return [] unless Decidim.module_installed?(:debates)
|
56
|
+
|
53
57
|
Decidim::Debates::Debate
|
54
58
|
.where(
|
55
59
|
component: space_components,
|
@@ -61,6 +65,8 @@ module Decidim
|
|
61
65
|
end
|
62
66
|
|
63
67
|
def meetings_query
|
68
|
+
return [] unless Decidim.module_installed?(:meetings)
|
69
|
+
|
64
70
|
meetings = Decidim::Meetings::Meeting.where(component: space_components).not_hidden
|
65
71
|
registrations = Decidim::Meetings::Registration.where(decidim_meeting_id: meetings).distinct.pluck(:decidim_user_id)
|
66
72
|
organizers = meetings.where(decidim_author_type: Decidim::UserBaseEntity.name).distinct.pluck(:decidim_author_id)
|
@@ -76,6 +82,8 @@ module Decidim
|
|
76
82
|
end
|
77
83
|
|
78
84
|
def proposals_query
|
85
|
+
return [] unless Decidim.module_installed?(:proposals)
|
86
|
+
|
79
87
|
Decidim::Coauthorship
|
80
88
|
.where(
|
81
89
|
coauthorable: proposals_components,
|
@@ -86,6 +94,8 @@ module Decidim
|
|
86
94
|
end
|
87
95
|
|
88
96
|
def proposal_supports_query
|
97
|
+
return [] unless Decidim.module_installed?(:proposals)
|
98
|
+
|
89
99
|
Decidim::Proposals::ProposalVote
|
90
100
|
.where(
|
91
101
|
proposal: proposals_components
|
@@ -96,6 +106,8 @@ module Decidim
|
|
96
106
|
end
|
97
107
|
|
98
108
|
def project_supports_query
|
109
|
+
return [] unless Decidim.module_installed?(:budgets)
|
110
|
+
|
99
111
|
Decidim::Budgets::Order.joins(budget: [:component])
|
100
112
|
.where(budget: {
|
101
113
|
decidim_components: { id: space_components.pluck(:id) }
|
data/app/views/decidim/participatory_processes/admin/participatory_process_copies/new.html.erb
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
<% add_decidim_page_title(t("participatory_process_copies.new.
|
2
|
-
|
1
|
+
<% add_decidim_page_title(t("participatory_process_copies.new.title", scope: "decidim.admin")) %>
|
3
2
|
<%= decidim_form_for(@form, url: participatory_process_copies_path(current_participatory_process), method: :post, html: { class: "form copy_participatory_process" }) do |f| %>
|
4
3
|
<%= render partial: "form", object: f, locals: { title: t("participatory_process_copies.new.title", scope: "decidim.admin"), select: t("participatory_process_copies.new.select", scope: "decidim.admin") } %>
|
5
4
|
|
data/app/views/decidim/participatory_processes/admin/participatory_process_groups/edit.html.erb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
<% add_decidim_page_title t("participatory_process_groups.edit.title", scope: "decidim.admin") %>
|
1
2
|
<%= decidim_form_for(@form, html: { class: "form edit_participatory_process_group" }) do |f| %>
|
2
3
|
<h2 class="process-title-summary">
|
3
4
|
<%= t "participatory_process_groups.edit.title", scope: "decidim.admin" %>
|
data/app/views/decidim/participatory_processes/admin/participatory_process_groups/new.html.erb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
<% add_decidim_page_title(t("participatory_process_groups.new.title", scope: "decidim.admin")) %>
|
1
2
|
<%= decidim_form_for(@form, html: { class: "form new_participatory_process_group" }) do |f| %>
|
2
3
|
<h2 class="process-title-summary"><%= t "participatory_process_groups.new.title", scope: "decidim.admin" %></h2>
|
3
4
|
<%= render partial: "form", object: f %>
|
File without changes
|
data/config/locales/ar.yml
CHANGED
@@ -287,6 +287,9 @@ ar:
|
|
287
287
|
content_blocks:
|
288
288
|
metadata:
|
289
289
|
name: البيانات الوصفية
|
290
|
+
participatory_scope: ما الذي تقرر
|
291
|
+
participatory_structure: كيف تقرر ذلك
|
292
|
+
target: من يشارك
|
290
293
|
stats:
|
291
294
|
name: نشاط
|
292
295
|
show:
|
@@ -334,11 +337,9 @@ ar:
|
|
334
337
|
pages:
|
335
338
|
home:
|
336
339
|
highlighted_processes:
|
337
|
-
active_processes: عمليات نشطة
|
338
340
|
active_step: المرحلة النشطة
|
339
341
|
more_information: معلومات اكثر
|
340
342
|
participate: مشاركة
|
341
|
-
see_all_processes: رؤية جميع العمليات
|
342
343
|
participatory_processes:
|
343
344
|
filters:
|
344
345
|
counters:
|
@@ -386,7 +387,6 @@ ar:
|
|
386
387
|
area: منطقة
|
387
388
|
developer_group: مجموعة المروجين
|
388
389
|
end_date: تاريخ الانتهاء
|
389
|
-
local_area: منطقة التنظيم
|
390
390
|
participatory_scope: ما الذي تقرر
|
391
391
|
participatory_structure: كيف تقرر ذلك
|
392
392
|
private_space: هذه عملية خاصة
|
@@ -416,6 +416,8 @@ ar:
|
|
416
416
|
active_step: 'المرحلة الحالية:'
|
417
417
|
more_info: مزيد من المعلومات
|
418
418
|
take_part: خذ جزء
|
419
|
+
promoted_process_group:
|
420
|
+
more_info: مزيد من المعلومات
|
419
421
|
process_header_steps:
|
420
422
|
step: المرحلة %{current} من %{total}
|
421
423
|
view_steps: عرض المراحل
|
data/config/locales/bg.yml
CHANGED
data/config/locales/ca.yml
CHANGED
@@ -337,9 +337,9 @@ ca:
|
|
337
337
|
metadata:
|
338
338
|
developer_group: Promogut per
|
339
339
|
name: Metadades
|
340
|
-
participatory_scope:
|
340
|
+
participatory_scope: El que es decideix
|
341
341
|
participatory_structure: Com es decideix
|
342
|
-
target: Qui participa
|
342
|
+
target: Qui hi participa
|
343
343
|
participatory_processes:
|
344
344
|
name: Processos participatius
|
345
345
|
stats:
|
@@ -451,13 +451,13 @@ ca:
|
|
451
451
|
developer_group: Grup promotor
|
452
452
|
end_date: Data de finalització
|
453
453
|
local_area: Àrea d'organització
|
454
|
-
participatory_scope:
|
454
|
+
participatory_scope: El que es decideix
|
455
455
|
participatory_structure: Com es decideix
|
456
456
|
private_space: Aquest és un procés privat
|
457
457
|
related_processes: Processos relacionats
|
458
458
|
scope: Àmbit
|
459
459
|
start_date: Data d'inici
|
460
|
-
target: Qui participa
|
460
|
+
target: Qui hi participa
|
461
461
|
unspecified: Sense especificar
|
462
462
|
statistics:
|
463
463
|
processes_count: Processos
|
data/config/locales/cs.yml
CHANGED
@@ -343,8 +343,8 @@ cs:
|
|
343
343
|
metadata:
|
344
344
|
developer_group: Propagováno
|
345
345
|
name: Metadata
|
346
|
-
participatory_scope:
|
347
|
-
participatory_structure: Jak se
|
346
|
+
participatory_scope: Co se rozhodlo
|
347
|
+
participatory_structure: Jak se to rozhoduje
|
348
348
|
target: Kdo se účastní
|
349
349
|
participatory_processes:
|
350
350
|
name: Participativní procesy
|
@@ -466,7 +466,7 @@ cs:
|
|
466
466
|
dates: Data
|
467
467
|
developer_group: Skupina promotérů
|
468
468
|
end_date: Datum ukončení
|
469
|
-
local_area: Oblast
|
469
|
+
local_area: Oblast organizace
|
470
470
|
participatory_scope: Co se rozhodlo
|
471
471
|
participatory_structure: Jak se to rozhoduje
|
472
472
|
private_space: Jedná se o soukromý proces
|
data/config/locales/de.yml
CHANGED
@@ -11,15 +11,22 @@ de:
|
|
11
11
|
decidim_area_id: Bereich
|
12
12
|
description: Beschreibung
|
13
13
|
developer_group: Promoter-Gruppe
|
14
|
+
document: Dokument
|
14
15
|
domain: Domäne
|
15
16
|
end_date: Enddatum
|
16
17
|
hashtag: Hashtag
|
17
18
|
hero_image: Hauptbild
|
19
|
+
import_attachments: Anhänge importieren
|
20
|
+
import_categories: Kategorien importieren
|
21
|
+
import_components: Komponenten importieren
|
22
|
+
import_steps: Schritte importieren
|
18
23
|
local_area: Organisationsbereich
|
19
24
|
meta_scope: Bereichs-Metadaten
|
20
25
|
participatory_process_group_id: Prozessgruppe
|
26
|
+
participatory_process_type_id: Prozesstyp
|
21
27
|
participatory_scope: Was wird entschieden?
|
22
28
|
participatory_structure: Wie wird es entschieden?
|
29
|
+
private_space: Privater Prozess
|
23
30
|
promoted: Hervorgehoben
|
24
31
|
published_at: Veröffentlicht unter
|
25
32
|
related_process_ids: Ähnliche Beteiligungsprozesse
|
@@ -328,11 +335,10 @@ de:
|
|
328
335
|
html_3:
|
329
336
|
name: Dritter HTML-Block
|
330
337
|
metadata:
|
331
|
-
developer_group: Unterstützt von
|
332
338
|
name: Metadaten
|
333
|
-
participatory_scope: Was wird entschieden
|
334
|
-
participatory_structure: Wie wird es entschieden
|
335
|
-
target: Wer nimmt teil
|
339
|
+
participatory_scope: Was wird entschieden?
|
340
|
+
participatory_structure: Wie wird es entschieden?
|
341
|
+
target: Wer nimmt teil?
|
336
342
|
participatory_processes:
|
337
343
|
name: Beteiligungsprozesse
|
338
344
|
stats:
|
@@ -398,13 +404,11 @@ de:
|
|
398
404
|
pages:
|
399
405
|
home:
|
400
406
|
highlighted_processes:
|
401
|
-
active_processes: Aktive Beteiligungsprozesse
|
402
407
|
active_step: Aktiver Schritt
|
403
408
|
more_information: Mehr Informationen
|
404
409
|
participate: Sich beteiligen
|
405
410
|
participate_in: Am Prozess %{resource_name} teilnehmen
|
406
411
|
processes_button_title: Link zur Prozess-Seite die alle Prozesse anzeigt
|
407
|
-
see_all_processes: Alle Beteiligungsprozesses anzeigen
|
408
412
|
participatory_process_steps:
|
409
413
|
index:
|
410
414
|
back_to_process: Zurück zur Prozessseite
|
@@ -443,12 +447,11 @@ de:
|
|
443
447
|
dates: Daten
|
444
448
|
developer_group: Promoter-Gruppe
|
445
449
|
end_date: Enddatum
|
446
|
-
local_area: Organisationsbereich
|
447
450
|
participatory_scope: Was wird entschieden?
|
448
|
-
participatory_structure: Wie wird es entschieden
|
451
|
+
participatory_structure: Wie wird es entschieden?
|
449
452
|
private_space: Dies ist ein privater Prozess
|
450
453
|
related_processes: Ähnliche Beteiligungsprozesse
|
451
|
-
scope:
|
454
|
+
scope: Themenbereich
|
452
455
|
start_date: Startdatum
|
453
456
|
target: Wer nimmt teil?
|
454
457
|
unspecified: Keine Angabe
|
@@ -476,7 +479,7 @@ de:
|
|
476
479
|
take_part_in: Beteiligen Sie sich am Prozess %{resource_name}
|
477
480
|
promoted_process:
|
478
481
|
active_step: 'Aktueller Schritt:'
|
479
|
-
more_info: Mehr
|
482
|
+
more_info: Mehr Info
|
480
483
|
more_info_about: Weitere Informationen zum Prozess %{resource_name}
|
481
484
|
take_part: Teilnehmen
|
482
485
|
take_part_in: Beteiligen Sie sich am Prozess %{resource_name}
|
data/config/locales/el.yml
CHANGED
@@ -11,15 +11,22 @@ el:
|
|
11
11
|
decidim_area_id: Τομέας
|
12
12
|
description: Περιγραφή
|
13
13
|
developer_group: Ομάδα προώθησης
|
14
|
+
document: Έγγραφο
|
14
15
|
domain: Τομέας
|
15
16
|
end_date: Ημερομηνία λήξης
|
16
17
|
hashtag: Hashtag
|
17
18
|
hero_image: Εικόνα αρχικής σελίδας
|
19
|
+
import_attachments: Εισαγωγή συνημμένων
|
20
|
+
import_categories: Εισαγωγή κατηγοριών
|
21
|
+
import_components: Εισαγωγή στοιχείων
|
22
|
+
import_steps: Εισαγωγή βημάτων
|
18
23
|
local_area: Τομέας οργανισμού
|
19
24
|
meta_scope: Μεταδεδομένα πεδίου εφαρμογής
|
20
25
|
participatory_process_group_id: Ομάδα διαδικασιών
|
26
|
+
participatory_process_type_id: Τύπος διεργασιών
|
21
27
|
participatory_scope: Τι αποφασίστηκε
|
22
28
|
participatory_structure: Πώς αποφασίζεται
|
29
|
+
private_space: Ιδιωτική διαδικασία
|
23
30
|
promoted: Προωθήθηκε
|
24
31
|
published_at: Δημοσιεύτηκε στις
|
25
32
|
related_process_ids: Σχετικές διαδικασίες
|
@@ -34,10 +41,20 @@ el:
|
|
34
41
|
subtitle: Υπότιτλος
|
35
42
|
target: Ποιος συμμετέχει
|
36
43
|
title: Τίτλος
|
44
|
+
weight: Θέση κατάταξης
|
37
45
|
participatory_process_group:
|
38
46
|
description: Περιγραφή
|
47
|
+
developer_group: Ομάδα προώθησης
|
48
|
+
group_url: Ιστοσελίδα
|
49
|
+
hashtag: Hashtag
|
39
50
|
hero_image: Εικόνα
|
51
|
+
local_area: Περιοχή οργανισμού
|
52
|
+
meta_scope: Μεταδεδομένα πεδίου εφαρμογής
|
40
53
|
participatory_process_ids: Σχετικές διαδικασίες
|
54
|
+
participatory_scope: Τι αποφασίστηκε
|
55
|
+
participatory_structure: Πώς αποφασίστηκε
|
56
|
+
target: Ποιος συμμετέχει
|
57
|
+
title: Τίτλος
|
41
58
|
participatory_process_step:
|
42
59
|
cta_path: Διαδρομή Call To Action
|
43
60
|
cta_text: Κείμενο κουμπιού «Call To Action»
|
@@ -93,6 +110,9 @@ el:
|
|
93
110
|
unpublish: Κατάργηση δημοσίευσης
|
94
111
|
menu:
|
95
112
|
participatory_process_groups: Ομάδες διαδικασιών
|
113
|
+
participatory_process_groups_submenu:
|
114
|
+
info: Πληροφορίες
|
115
|
+
landing_page: Σελίδα άφιξης
|
96
116
|
participatory_processes: Διαδικασίες
|
97
117
|
participatory_processes_submenu:
|
98
118
|
attachment_collections: Φάκελοι
|
@@ -115,6 +135,8 @@ el:
|
|
115
135
|
title: Τίτλος
|
116
136
|
name: Διαδικασία συμμετοχής
|
117
137
|
participatory_process_group:
|
138
|
+
fields:
|
139
|
+
title: Τίτλος
|
118
140
|
name: Ομάδα διαδικασιών
|
119
141
|
participatory_process_step:
|
120
142
|
fields:
|
@@ -142,6 +164,13 @@ el:
|
|
142
164
|
copy: Αντιγραφή
|
143
165
|
select: Επιλέξτε ποια δεδομένα θέλετε να αντιγράψετε
|
144
166
|
title: Αντιγραφή διαδικασίας συμμετοχής
|
167
|
+
participatory_process_group_landing_page:
|
168
|
+
edit:
|
169
|
+
active_content_blocks: Ενεργά μπλοκ περιεχομένου
|
170
|
+
inactive_content_blocks: Μπλοκ ανενεργού περιεχομένου
|
171
|
+
participatory_process_group_landing_page_content_blocks:
|
172
|
+
edit:
|
173
|
+
update: Ενημέρωση
|
145
174
|
participatory_process_groups:
|
146
175
|
destroy:
|
147
176
|
error: Παρουσιάστηκε σφάλμα κατά την καταστροφή της ομάδας διαδικασιών συμμετοχής.
|
@@ -299,8 +328,27 @@ el:
|
|
299
328
|
related_assemblies: Σχετικές συνελεύσεις
|
300
329
|
participatory_process_groups:
|
301
330
|
content_blocks:
|
331
|
+
html_1:
|
332
|
+
name: Πρώτο μπλοκ HTML
|
333
|
+
html_2:
|
334
|
+
name: Δεύτερο μπλοκ HTML
|
335
|
+
html_3:
|
336
|
+
name: Πρώτο μπλοκ HTML
|
337
|
+
metadata:
|
338
|
+
name: Μεταδεδομένα
|
339
|
+
participatory_scope: Τι αποφασίστηκε
|
340
|
+
participatory_structure: Πώς αποφασίζεται
|
341
|
+
target: Ποιος συμμετέχει
|
342
|
+
participatory_processes:
|
343
|
+
name: Συμμετοχικές διαδικασίες
|
302
344
|
stats:
|
303
345
|
name: Στατιστικά στοιχεία
|
346
|
+
title:
|
347
|
+
meta_scope: Πεδία εφαρμογής
|
348
|
+
name: Τίτλος, περιγραφή και hashtag
|
349
|
+
participatory_processes:
|
350
|
+
one: 1 διεργασία
|
351
|
+
other: "%{count} διεργασίες"
|
304
352
|
show:
|
305
353
|
title: Ομάδες διαδικασιών συμμετοχής
|
306
354
|
participatory_process_steps:
|
@@ -312,9 +360,17 @@ el:
|
|
312
360
|
content_blocks:
|
313
361
|
highlighted_processes:
|
314
362
|
max_results: Μέγιστη ποσότητα στοιχείων προς εμφάνιση
|
363
|
+
new_import:
|
364
|
+
accepted_types:
|
365
|
+
json: JSON
|
315
366
|
participatory_process_copies:
|
316
367
|
form:
|
317
368
|
slug_help: 'Τα slug διεύθυνσης URL χρησιμοποιούνται για τη δημιουργία διευθύνσεων URL που οδηγούν σε αυτήν τη διαδικασία. Δέχεται μόνο γράμματα, αριθμούς και παύλες, και πρέπει να ξεκινά με γράμμα. Παράδειγμα: διεύθυνση %{url}'
|
369
|
+
participatory_process_groups:
|
370
|
+
form:
|
371
|
+
metadata: Μεταδεδομένα
|
372
|
+
title: Γενικές πληροφορίες
|
373
|
+
visibility: Ορατότητα
|
318
374
|
participatory_process_imports:
|
319
375
|
form:
|
320
376
|
document_legend: Προσθήκη εγγράφου
|
@@ -348,12 +404,11 @@ el:
|
|
348
404
|
pages:
|
349
405
|
home:
|
350
406
|
highlighted_processes:
|
351
|
-
active_processes: Ενεργές διαδικασίες
|
352
407
|
active_step: Ενεργή φάση
|
353
408
|
more_information: Περισσότερες πληροφορίες
|
354
409
|
participate: Συμμετοχή
|
355
410
|
participate_in: Συμμετάσχετε στην διαδικασία %{resource_name}
|
356
|
-
|
411
|
+
processes_button_title: Σύνδεση με τη σελίδα Διεργασίεςπου εμφανίζει όλες τις διεργασίες
|
357
412
|
participatory_process_steps:
|
358
413
|
index:
|
359
414
|
back_to_process: Πίσω στην σελίδα της διαδικασίας
|
@@ -384,12 +439,14 @@ el:
|
|
384
439
|
see: Προβολή
|
385
440
|
index:
|
386
441
|
loading: Φόρτωση αποτελεσμάτων...
|
442
|
+
show:
|
443
|
+
title: Σχετικά με αυτή τη διεργασία
|
387
444
|
show:
|
388
445
|
area: Τομέας
|
446
|
+
belongs_to_group: Αυτή η διεργασία ανήκει σε
|
389
447
|
dates: Ημερομηνίες
|
390
448
|
developer_group: Ομάδα προώθησης
|
391
449
|
end_date: Ημερομηνία λήξης
|
392
|
-
local_area: Τομέας οργανισμού
|
393
450
|
participatory_scope: Τι αποφασίστηκε
|
394
451
|
participatory_structure: Πώς αποφασίζεται
|
395
452
|
private_space: Αυτή είναι μια ιδιωτική διαδικασία
|
@@ -398,6 +455,8 @@ el:
|
|
398
455
|
start_date: Ημερομηνία έναρξης
|
399
456
|
target: Ποιος συμμετέχει
|
400
457
|
unspecified: Δεν προσδιορίστηκε
|
458
|
+
statistics:
|
459
|
+
processes_count: Διεργασίες
|
401
460
|
layouts:
|
402
461
|
decidim:
|
403
462
|
participatory_process_groups:
|
@@ -424,6 +483,8 @@ el:
|
|
424
483
|
more_info_about: Περισσότερες πληροφορίες για τη διαδικασία %{resource_name}
|
425
484
|
take_part: Συμμετάσχετε
|
426
485
|
take_part_in: Πάρτε μέρος στην διαδικασία %{resource_name}
|
486
|
+
promoted_process_group:
|
487
|
+
more_info: Περισσότερες πληροφορίες
|
427
488
|
process_header_steps:
|
428
489
|
step: Φάση %{current} από %{total}
|
429
490
|
view_steps: Φάσεις διαδικασίας
|
data/config/locales/es-MX.yml
CHANGED
@@ -335,7 +335,6 @@ es-MX:
|
|
335
335
|
html_3:
|
336
336
|
name: Tercer bloque HTML
|
337
337
|
metadata:
|
338
|
-
developer_group: Promovido por
|
339
338
|
name: Metadatos
|
340
339
|
participatory_scope: Qué se decide
|
341
340
|
participatory_structure: Cómo se decide
|
@@ -405,13 +404,11 @@ es-MX:
|
|
405
404
|
pages:
|
406
405
|
home:
|
407
406
|
highlighted_processes:
|
408
|
-
active_processes: Procesos activos
|
409
407
|
active_step: Paso activo
|
410
408
|
more_information: Más información
|
411
409
|
participate: Participar
|
412
410
|
participate_in: Participa en el proceso %{resource_name}
|
413
411
|
processes_button_title: Enlace a la página de Procesos que muestra todos los procesos
|
414
|
-
see_all_processes: Ver todos los procesos
|
415
412
|
participatory_process_steps:
|
416
413
|
index:
|
417
414
|
back_to_process: Volver a la página del proceso
|
@@ -450,7 +447,6 @@ es-MX:
|
|
450
447
|
dates: Fechas
|
451
448
|
developer_group: Grupo promotor
|
452
449
|
end_date: Fecha de finalización
|
453
|
-
local_area: Área de organización
|
454
450
|
participatory_scope: Qué se decide
|
455
451
|
participatory_structure: Cómo se decide
|
456
452
|
private_space: Este es un proceso privado
|
data/config/locales/es-PY.yml
CHANGED
@@ -335,7 +335,6 @@ es-PY:
|
|
335
335
|
html_3:
|
336
336
|
name: Tercer bloque HTML
|
337
337
|
metadata:
|
338
|
-
developer_group: Promovido por
|
339
338
|
name: Metadatos
|
340
339
|
participatory_scope: Qué se decide
|
341
340
|
participatory_structure: Cómo se decide
|
@@ -405,13 +404,11 @@ es-PY:
|
|
405
404
|
pages:
|
406
405
|
home:
|
407
406
|
highlighted_processes:
|
408
|
-
active_processes: Procesos activos
|
409
407
|
active_step: Paso activo
|
410
408
|
more_information: Más información
|
411
409
|
participate: Participar
|
412
410
|
participate_in: Participa en el proceso %{resource_name}
|
413
411
|
processes_button_title: Enlace a la página de Procesos que muestra todos los procesos
|
414
|
-
see_all_processes: Ver todos los procesos
|
415
412
|
participatory_process_steps:
|
416
413
|
index:
|
417
414
|
back_to_process: Volver a la página del proceso
|
@@ -450,7 +447,6 @@ es-PY:
|
|
450
447
|
dates: Fechas
|
451
448
|
developer_group: Grupo promotor
|
452
449
|
end_date: Fecha de finalización
|
453
|
-
local_area: Área de organización
|
454
450
|
participatory_scope: Qué se decide
|
455
451
|
participatory_structure: Cómo se decide
|
456
452
|
private_space: Este es un proceso privado
|
data/config/locales/es.yml
CHANGED
@@ -162,7 +162,7 @@ es:
|
|
162
162
|
participatory_process_copies:
|
163
163
|
new:
|
164
164
|
copy: Copiar
|
165
|
-
select:
|
165
|
+
select: Selecciona los datos que deseas duplicar
|
166
166
|
title: Duplicar proceso participativo
|
167
167
|
participatory_process_group_landing_page:
|
168
168
|
edit:
|
@@ -390,7 +390,7 @@ es:
|
|
390
390
|
other: Otro
|
391
391
|
related_processes: Procesos relacionados
|
392
392
|
scope_type_max_depth_help: Restringe la profundidad del filtro de ámbito; se mostrará el filtro desde el ámbito general hasta el seleccionado.
|
393
|
-
select_an_area:
|
393
|
+
select_an_area: Selecciona una área
|
394
394
|
select_process_group: Selecciona un grupo de procesos
|
395
395
|
slug_help: 'Los textos cortos de URL se utilizan para generar las URL que apuntan a este proceso. Sólo acepta letras, números y guiones, y debe comenzar con una letra. Ejemplo: %{url}'
|
396
396
|
title: Información general
|