decidim-participatory_processes 0.26.4 → 0.26.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/participatory_process_groups/content_blocks/title/show.erb +1 -1
- data/app/cells/decidim/participatory_processes/process_filters_cell.rb +7 -1
- data/app/helpers/decidim/participatory_processes/participatory_process_helper.rb +2 -2
- data/app/serializers/decidim/participatory_processes/participatory_process_importer.rb +10 -0
- data/app/views/decidim/participatory_process_steps/_participatory_process_step.html.erb +1 -1
- data/app/views/decidim/participatory_processes/admin/participatory_process_groups/_form.html.erb +1 -1
- data/app/views/decidim/participatory_processes/admin/participatory_process_steps/_form.html.erb +1 -1
- data/app/views/decidim/participatory_processes/admin/participatory_processes/_form.html.erb +1 -1
- data/app/views/decidim/participatory_processes/participatory_processes/show.html.erb +2 -2
- data/config/locales/ar.yml +2 -0
- data/config/locales/ca.yml +7 -0
- data/config/locales/cs.yml +7 -0
- data/config/locales/de.yml +1 -1
- data/config/locales/en.yml +7 -0
- data/config/locales/es-MX.yml +7 -0
- data/config/locales/es-PY.yml +7 -0
- data/config/locales/es.yml +7 -0
- data/config/locales/eu.yml +11 -11
- data/config/locales/fa-IR.yml +1 -0
- data/config/locales/fi-plain.yml +7 -0
- data/config/locales/fi.yml +8 -1
- data/config/locales/fr-CA.yml +7 -0
- data/config/locales/fr.yml +7 -0
- data/config/locales/ja.yml +7 -0
- data/config/locales/ka-GE.yml +1 -0
- data/config/locales/kaa.yml +1 -0
- data/config/locales/ro-RO.yml +9 -0
- data/config/locales/sv.yml +3 -0
- data/config/locales/zh-TW.yml +487 -0
- data/lib/decidim/participatory_processes/test/factories.rb +3 -0
- data/lib/decidim/participatory_processes/version.rb +1 -1
- metadata +13 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20ac7a0180cb4996ba6b4c1c2757cf24654602e6cc46570b5c86bbc03a34cb90
|
4
|
+
data.tar.gz: 2c9c0bc5ee106f0327c5c888c112dee7fc9e4590973456e6b4a59709b9aa99e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f54689b8061edd1e819c7bfb3a3484078380268469fc38d6180c48225d2b153a4488c8950e7c40615fa2811ad4d37993e7b86478138cd326b222cc19341f8580
|
7
|
+
data.tar.gz: 472a7d3ed9430babfa8d436290117fb9aebe98066ba6c15c6c36d423b9b5f39885a698cde49b1d3fa9999e9aba6e80fd28e1c546fe0627645464e5acc46cfca1
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<h2 class="heading2"><%= translated_attribute(participatory_process_group.title) %></h2>
|
3
3
|
<div class="row">
|
4
4
|
<div class="columns medium-9">
|
5
|
-
<%=
|
5
|
+
<%= decidim_sanitize_editor_admin translated_attribute(participatory_process_group.description) %>
|
6
6
|
<div class="row">
|
7
7
|
<div class="column medium-6 text-muted">
|
8
8
|
<%= icon "grid-three-up", role: "img", "aria-hidden": true, class: "mr-xs" %>
|
@@ -19,7 +19,13 @@ module Decidim
|
|
19
19
|
end
|
20
20
|
|
21
21
|
def current_filter
|
22
|
-
get_filter(:date
|
22
|
+
date_filter = get_filter(:date)
|
23
|
+
return model[:default_filter] unless date_filter
|
24
|
+
return date_filter if ALL_FILTERS.include?(date_filter)
|
25
|
+
|
26
|
+
# Default to "all" in case the filter is unknown, as the search also
|
27
|
+
# defaults to this.
|
28
|
+
"all"
|
23
29
|
end
|
24
30
|
|
25
31
|
def get_filter(filter_name, default = nil)
|
@@ -12,14 +12,14 @@ module Decidim
|
|
12
12
|
include Decidim::ResourceReferenceHelper
|
13
13
|
|
14
14
|
# Public: Returns the dates for a step in a readable format like
|
15
|
-
# "
|
15
|
+
# "01/01/2016 - 05/02/2016".
|
16
16
|
#
|
17
17
|
# participatory_process_step - The step to format to
|
18
18
|
#
|
19
19
|
# Returns a String with the formatted dates.
|
20
20
|
def step_dates(participatory_process_step)
|
21
21
|
dates = [participatory_process_step.start_date, participatory_process_step.end_date]
|
22
|
-
dates.map { |date| date ?
|
22
|
+
dates.map { |date| date ? l(date.to_date, format: :decidim_short) : "?" }.join(" - ")
|
23
23
|
end
|
24
24
|
|
25
25
|
# Public: Returns the path for the participatory process cta button
|
@@ -53,6 +53,11 @@ module Decidim
|
|
53
53
|
end
|
54
54
|
|
55
55
|
def import_process_group(attributes)
|
56
|
+
title = compact_translation(attributes["title"] || attributes["name"])
|
57
|
+
description = compact_translation(attributes["description"])
|
58
|
+
|
59
|
+
return if title.blank? && description.blank?
|
60
|
+
|
56
61
|
Decidim.traceability.perform_action!("create", ParticipatoryProcessGroup, @user) do
|
57
62
|
group = ParticipatoryProcessGroup.find_or_initialize_by(
|
58
63
|
title: attributes["title"] || attributes["name"],
|
@@ -152,6 +157,11 @@ module Decidim
|
|
152
157
|
|
153
158
|
private
|
154
159
|
|
160
|
+
def compact_translation(translation)
|
161
|
+
translation["machine_translations"] = translation["machine_translations"].reject { |_k, v| v.blank? } if translation["machine_translations"].present?
|
162
|
+
translation.reject { |_k, v| v.blank? }
|
163
|
+
end
|
164
|
+
|
155
165
|
def create_attachment_collection(attributes)
|
156
166
|
return unless attributes.compact.any?
|
157
167
|
|
@@ -10,7 +10,7 @@
|
|
10
10
|
<h3 class="timeline__title heading4"><%= translated_attribute(participatory_process_step.title) %></h3>
|
11
11
|
</div>
|
12
12
|
<div class="timeline__content">
|
13
|
-
<%= translated_attribute(participatory_process_step.description)
|
13
|
+
<%= decidim_sanitize_editor_admin translated_attribute(participatory_process_step.description) %>
|
14
14
|
</div>
|
15
15
|
</div>
|
16
16
|
</li>
|
@@ -32,9 +32,9 @@
|
|
32
32
|
<%= render partial: "participatory_process_group" %>
|
33
33
|
<% end %>
|
34
34
|
<div class="lead">
|
35
|
-
<%=
|
35
|
+
<%= decidim_sanitize_editor_admin translated_attribute(current_participatory_space.short_description) %>
|
36
36
|
</div>
|
37
|
-
<%=
|
37
|
+
<%= decidim_sanitize_editor_admin translated_attribute(current_participatory_space.description) %>
|
38
38
|
</div>
|
39
39
|
<%= attachments_for current_participatory_space %>
|
40
40
|
<%= render_hook(:participatory_space_highlighted_elements) %>
|
data/config/locales/ar.yml
CHANGED
data/config/locales/ca.yml
CHANGED
@@ -11,15 +11,22 @@ ca:
|
|
11
11
|
decidim_area_id: Àrea
|
12
12
|
description: Descripció
|
13
13
|
developer_group: Grup promotor
|
14
|
+
document: Document
|
14
15
|
domain: Àrees municipals
|
15
16
|
end_date: Data de finalització
|
16
17
|
hashtag: Etiqueta (hashtag)
|
17
18
|
hero_image: Imatge de portada
|
19
|
+
import_attachments: Importar arxius adjunts
|
20
|
+
import_categories: Importar categories
|
21
|
+
import_components: Importar components
|
22
|
+
import_steps: Importar fases
|
18
23
|
local_area: Àrea d'organització
|
19
24
|
meta_scope: Metadades d'àmbit
|
20
25
|
participatory_process_group_id: Grup de processos
|
26
|
+
participatory_process_type_id: Tipus de procés
|
21
27
|
participatory_scope: El que es decideix
|
22
28
|
participatory_structure: Com es decideix
|
29
|
+
private_space: Procés privat
|
23
30
|
promoted: Destacat
|
24
31
|
published_at: Publicat el
|
25
32
|
related_process_ids: Processos relacionats
|
data/config/locales/cs.yml
CHANGED
@@ -11,15 +11,22 @@ cs:
|
|
11
11
|
decidim_area_id: Oblast
|
12
12
|
description: Popis
|
13
13
|
developer_group: Skupina promotérů
|
14
|
+
document: Dokument
|
14
15
|
domain: Doména
|
15
16
|
end_date: Datum ukončení
|
16
17
|
hashtag: Hashtag
|
17
18
|
hero_image: Domácí obrázek
|
19
|
+
import_attachments: Importovat přílohy
|
20
|
+
import_categories: Importovat kategorie
|
21
|
+
import_components: Importovat komponenty
|
22
|
+
import_steps: Importovat kroky
|
18
23
|
local_area: Oblast působnosti organizace
|
19
24
|
meta_scope: Metadata Oblasti působnosti
|
20
25
|
participatory_process_group_id: Skupina procesů
|
26
|
+
participatory_process_type_id: Typ procesů
|
21
27
|
participatory_scope: Co se rozhodlo
|
22
28
|
participatory_structure: Jak se to rozhoduje
|
29
|
+
private_space: Soukromý proces
|
23
30
|
promoted: Propagováno
|
24
31
|
published_at: Publikováno v
|
25
32
|
related_process_ids: Související procesy
|
data/config/locales/de.yml
CHANGED
data/config/locales/en.yml
CHANGED
@@ -12,15 +12,22 @@ en:
|
|
12
12
|
decidim_area_id: Area
|
13
13
|
description: Description
|
14
14
|
developer_group: Promoter group
|
15
|
+
document: Document
|
15
16
|
domain: Domain
|
16
17
|
end_date: End date
|
17
18
|
hashtag: Hashtag
|
18
19
|
hero_image: Home image
|
20
|
+
import_attachments: Import attachments
|
21
|
+
import_categories: Import categories
|
22
|
+
import_components: Import components
|
23
|
+
import_steps: Import steps
|
19
24
|
local_area: Organization area
|
20
25
|
meta_scope: Scope metadata
|
21
26
|
participatory_process_group_id: Processes group
|
27
|
+
participatory_process_type_id: Processes type
|
22
28
|
participatory_scope: What is decided
|
23
29
|
participatory_structure: How is it decided
|
30
|
+
private_space: Private process
|
24
31
|
promoted: Promoted
|
25
32
|
published_at: Published at
|
26
33
|
related_process_ids: Related processes
|
data/config/locales/es-MX.yml
CHANGED
@@ -11,15 +11,22 @@ es-MX:
|
|
11
11
|
decidim_area_id: Área
|
12
12
|
description: Descripción
|
13
13
|
developer_group: Grupo promotor
|
14
|
+
document: Documento
|
14
15
|
domain: Dominio
|
15
16
|
end_date: Fecha de finalización
|
16
17
|
hashtag: Hashtag
|
17
18
|
hero_image: Imagen de portada
|
19
|
+
import_attachments: Importar archivos adjuntos
|
20
|
+
import_categories: Importar categorias
|
21
|
+
import_components: Importar componentes
|
22
|
+
import_steps: Importar fases
|
18
23
|
local_area: Área de organización
|
19
24
|
meta_scope: 'Metadatos: ámbito'
|
20
25
|
participatory_process_group_id: Grupo de procesos
|
26
|
+
participatory_process_type_id: Tipo de proceso
|
21
27
|
participatory_scope: Qué se decide
|
22
28
|
participatory_structure: Cómo se decide
|
29
|
+
private_space: Proceso privado
|
23
30
|
promoted: Destacado
|
24
31
|
published_at: Publicado en
|
25
32
|
related_process_ids: Procesos relacionados
|
data/config/locales/es-PY.yml
CHANGED
@@ -11,15 +11,22 @@ es-PY:
|
|
11
11
|
decidim_area_id: Área
|
12
12
|
description: Descripción
|
13
13
|
developer_group: Grupo promotor
|
14
|
+
document: Documento
|
14
15
|
domain: Dominio
|
15
16
|
end_date: Fecha de finalización
|
16
17
|
hashtag: Hashtag
|
17
18
|
hero_image: Imagen de portada
|
19
|
+
import_attachments: Importar archivos adjuntos
|
20
|
+
import_categories: Importar categorias
|
21
|
+
import_components: Importar componentes
|
22
|
+
import_steps: Importar fases
|
18
23
|
local_area: Área de organización
|
19
24
|
meta_scope: 'Metadatos: ámbito'
|
20
25
|
participatory_process_group_id: Grupo de procesos
|
26
|
+
participatory_process_type_id: Tipo de proceso
|
21
27
|
participatory_scope: Qué se decide
|
22
28
|
participatory_structure: Cómo se decide
|
29
|
+
private_space: Proceso privado
|
23
30
|
promoted: Destacado
|
24
31
|
published_at: Publicado en
|
25
32
|
related_process_ids: Procesos relacionados
|
data/config/locales/es.yml
CHANGED
@@ -11,15 +11,22 @@ es:
|
|
11
11
|
decidim_area_id: Área
|
12
12
|
description: Descripción
|
13
13
|
developer_group: Grupo promotor
|
14
|
+
document: Documento
|
14
15
|
domain: Dominio
|
15
16
|
end_date: Fecha de finalización
|
16
17
|
hashtag: Hashtag
|
17
18
|
hero_image: Imagen de portada
|
19
|
+
import_attachments: Importar archivos adjuntos
|
20
|
+
import_categories: Importar categorias
|
21
|
+
import_components: Importar componentes
|
22
|
+
import_steps: Importar fases
|
18
23
|
local_area: Área de organización
|
19
24
|
meta_scope: Metadatos de ámbito
|
20
25
|
participatory_process_group_id: Grupo de procesos
|
26
|
+
participatory_process_type_id: Tipo de proceso
|
21
27
|
participatory_scope: Qué se decide
|
22
28
|
participatory_structure: Cómo se decide
|
29
|
+
private_space: Proceso privado
|
23
30
|
promoted: Destacado
|
24
31
|
published_at: Publicado en
|
25
32
|
related_process_ids: Procesos relacionados
|
data/config/locales/eu.yml
CHANGED
@@ -3,14 +3,14 @@ eu:
|
|
3
3
|
attributes:
|
4
4
|
participatory_process:
|
5
5
|
announcement: Anuntzio
|
6
|
-
area_id:
|
6
|
+
area_id: Arloa
|
7
7
|
banner_image: Bannerra
|
8
8
|
copy_categories: Kopiatu kategoriak
|
9
9
|
copy_components: Kopiatu osagaiak
|
10
10
|
copy_steps: Kopiatu faseak
|
11
|
-
decidim_area_id:
|
11
|
+
decidim_area_id: Arloa
|
12
12
|
description: Deskribapena
|
13
|
-
developer_group:
|
13
|
+
developer_group: Talde sustatzailea
|
14
14
|
domain: Domeinua
|
15
15
|
end_date: Bukaera-data
|
16
16
|
hashtag: Traola
|
@@ -18,10 +18,10 @@ eu:
|
|
18
18
|
local_area: Antolakuntza eremua
|
19
19
|
meta_scope: 'Metadatuak: esparrua'
|
20
20
|
participatory_process_group_id: Prozesu-multzoa
|
21
|
-
participatory_scope: Zer
|
21
|
+
participatory_scope: Zer erabakitzen da
|
22
22
|
participatory_structure: Nola erabakitzen da?
|
23
23
|
promoted: Nabarmendua
|
24
|
-
published_at:
|
24
|
+
published_at: Argitaratze-data
|
25
25
|
related_process_ids: Elkarrekin lotutako prozesuak
|
26
26
|
scope_id: Esparrua
|
27
27
|
scope_type_max_depth_id: Eremuaren iragazkiaren sakonera
|
@@ -34,7 +34,7 @@ eu:
|
|
34
34
|
subtitle: Azpititulua
|
35
35
|
target: Nor parte hartzen du
|
36
36
|
title: Titulua
|
37
|
-
weight:
|
37
|
+
weight: Ordena
|
38
38
|
participatory_process_group:
|
39
39
|
description: Deskribapena
|
40
40
|
developer_group: Talde sustatzailea
|
@@ -46,7 +46,7 @@ eu:
|
|
46
46
|
participatory_process_ids: Elkarrekin lotutako prozesuak
|
47
47
|
participatory_scope: Zer erabakitzen den
|
48
48
|
participatory_structure: Nola erabakitzen den
|
49
|
-
target: Nork hartzen
|
49
|
+
target: Nork hartzen due parte
|
50
50
|
title: Izenburua
|
51
51
|
participatory_process_step:
|
52
52
|
cta_path: Deitu ekintza bideari
|
@@ -290,7 +290,7 @@ eu:
|
|
290
290
|
participatory_process:
|
291
291
|
role_assigned:
|
292
292
|
email_intro: '%{role} rola esleitu zaizu <a href="%{resource_title}"> prozesu parte-hartzailean.'
|
293
|
-
email_outro: Jakinarazpen hau jaso duzu %{role} rola esleitu zaizu "%{resource_title}"
|
293
|
+
email_outro: Jakinarazpen hau jaso duzu %{role} rola esleitu zaizu "%{resource_title}" espazioan.
|
294
294
|
email_subject: '%{role} rola esleitu zaizu hemen "%{resource_title}".'
|
295
295
|
notification_title: '%{role} rola esleitu zaizu <a href="%{resource_url}">%{resource_title}</a> prozesu parte-hartzailean.'
|
296
296
|
step_activated:
|
@@ -331,8 +331,8 @@ eu:
|
|
331
331
|
developer_group: Nork sustatua
|
332
332
|
name: Metadatuak
|
333
333
|
participatory_scope: Zer erabakitzen den
|
334
|
-
participatory_structure: Nola erabakitzen
|
335
|
-
target: Nork hartzen
|
334
|
+
participatory_structure: Nola erabakitzen da
|
335
|
+
target: Nork hartzen du parte
|
336
336
|
participatory_processes:
|
337
337
|
name: Prozesu parte-hartzaileak
|
338
338
|
stats:
|
@@ -399,7 +399,7 @@ eu:
|
|
399
399
|
more_information: Informazio gehiago
|
400
400
|
participate: Parte hartu
|
401
401
|
participate_in: Parte hartu %{resource_name} prozesuan
|
402
|
-
processes_button_title:
|
402
|
+
processes_button_title: Esteka prozesu guztiak erakusten dituen Prozesuen orrialdera
|
403
403
|
see_all_processes: Ikusi prozesu guztiak
|
404
404
|
participatory_process_steps:
|
405
405
|
index:
|
@@ -0,0 +1 @@
|
|
1
|
+
fa:
|
data/config/locales/fi-plain.yml
CHANGED
@@ -11,15 +11,22 @@ fi-pl:
|
|
11
11
|
decidim_area_id: Alue
|
12
12
|
description: Kuvaus
|
13
13
|
developer_group: Kehittäjäryhmä
|
14
|
+
document: Asiakirja
|
14
15
|
domain: Toimintaympäristö
|
15
16
|
end_date: Päättymispäivä
|
16
17
|
hashtag: Aihetunniste (hashtag)
|
17
18
|
hero_image: Etusivun kuva
|
19
|
+
import_attachments: Tuo liitteitä
|
20
|
+
import_categories: Kopioi aihepiirejä
|
21
|
+
import_components: Tuo komponentteja
|
22
|
+
import_steps: Tuo vaiheita
|
18
23
|
local_area: Järjestöalue
|
19
24
|
meta_scope: Teeman metadata
|
20
25
|
participatory_process_group_id: Prosessiryhmä
|
26
|
+
participatory_process_type_id: Prosessin tyyppi
|
21
27
|
participatory_scope: Mitä päätetään
|
22
28
|
participatory_structure: Miten päätetään
|
29
|
+
private_space: Yksityinen prosessi
|
23
30
|
promoted: Korostettu
|
24
31
|
published_at: Julkaisuaika
|
25
32
|
related_process_ids: Liittyvät prosessit
|
data/config/locales/fi.yml
CHANGED
@@ -11,15 +11,22 @@ fi:
|
|
11
11
|
decidim_area_id: Alue
|
12
12
|
description: Kuvaus
|
13
13
|
developer_group: Edistäjäryhmä
|
14
|
+
document: Asiakirja
|
14
15
|
domain: Toimintaympäristö
|
15
16
|
end_date: Päättymispäivä
|
16
17
|
hashtag: Aihetunniste (hashtag)
|
17
18
|
hero_image: Etusivun kuva
|
19
|
+
import_attachments: Tuo liitteitä
|
20
|
+
import_categories: Kopioi aihepiirejä
|
21
|
+
import_components: Tuo komponentteja
|
22
|
+
import_steps: Tuo vaiheita
|
18
23
|
local_area: Järjestöalue
|
19
24
|
meta_scope: Teeman metadata
|
20
25
|
participatory_process_group_id: Prosessiryhmä
|
26
|
+
participatory_process_type_id: Prosessin tyyppi
|
21
27
|
participatory_scope: Mitä päätetään
|
22
28
|
participatory_structure: Miten päätetään
|
29
|
+
private_space: Yksityinen prosessi
|
23
30
|
promoted: Korostettu
|
24
31
|
published_at: Julkaisuaika
|
25
32
|
related_process_ids: Liittyvät prosessit
|
@@ -144,7 +151,7 @@ fi:
|
|
144
151
|
role: Rooli
|
145
152
|
name: Osallistumisprosessin käyttäjä
|
146
153
|
roles:
|
147
|
-
admin:
|
154
|
+
admin: Hallintakäyttäjä
|
148
155
|
collaborator: Osallistuva käyttäjä
|
149
156
|
moderator: Moderoija
|
150
157
|
valuator: Arvon arvioija
|
data/config/locales/fr-CA.yml
CHANGED
@@ -11,15 +11,22 @@ fr-CA:
|
|
11
11
|
decidim_area_id: Périmètre d'assemblée
|
12
12
|
description: Description
|
13
13
|
developer_group: Organisateur
|
14
|
+
document: Document
|
14
15
|
domain: Domaine
|
15
16
|
end_date: Date de fin
|
16
17
|
hashtag: Hashtag
|
17
18
|
hero_image: Image de la page d'accueil
|
19
|
+
import_attachments: Importer les pièces jointes
|
20
|
+
import_categories: Importer les catégories
|
21
|
+
import_components: Importer les fonctionnalités
|
22
|
+
import_steps: Importer les étapes
|
18
23
|
local_area: Espace d'organisation
|
19
24
|
meta_scope: Échelle
|
20
25
|
participatory_process_group_id: Groupe de processus
|
26
|
+
participatory_process_type_id: Type de processus
|
21
27
|
participatory_scope: Objectifs
|
22
28
|
participatory_structure: Modalités de décision
|
29
|
+
private_space: Processus privé
|
23
30
|
promoted: Mise en avant
|
24
31
|
published_at: Publiée à
|
25
32
|
related_process_ids: Concertations liées
|
data/config/locales/fr.yml
CHANGED
@@ -11,15 +11,22 @@ fr:
|
|
11
11
|
decidim_area_id: Périmètre d'assemblée
|
12
12
|
description: Description
|
13
13
|
developer_group: Organisateur
|
14
|
+
document: Document
|
14
15
|
domain: Domaine
|
15
16
|
end_date: Date de fin
|
16
17
|
hashtag: Hashtag
|
17
18
|
hero_image: Image de la page d'accueil
|
19
|
+
import_attachments: Importer les pièces jointes
|
20
|
+
import_categories: Importer les catégories
|
21
|
+
import_components: Importer les fonctionnalités
|
22
|
+
import_steps: Importer les étapes
|
18
23
|
local_area: Espace d'organisation
|
19
24
|
meta_scope: Échelle
|
20
25
|
participatory_process_group_id: Groupe de processus
|
26
|
+
participatory_process_type_id: Type de processus
|
21
27
|
participatory_scope: Objectifs
|
22
28
|
participatory_structure: Modalités de décision
|
29
|
+
private_space: Processus privé
|
23
30
|
promoted: Mis en avant
|
24
31
|
published_at: Publiée à
|
25
32
|
related_process_ids: Concertations liées
|
data/config/locales/ja.yml
CHANGED
@@ -11,15 +11,22 @@ ja:
|
|
11
11
|
decidim_area_id: エリア
|
12
12
|
description: 説明
|
13
13
|
developer_group: プロモーターグループ
|
14
|
+
document: ドキュメント
|
14
15
|
domain: ドメイン
|
15
16
|
end_date: 終了日
|
16
17
|
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: 関連する参加型プロセス
|
@@ -0,0 +1 @@
|
|
1
|
+
ka:
|
@@ -0,0 +1 @@
|
|
1
|
+
kaa:
|
data/config/locales/ro-RO.yml
CHANGED
@@ -11,15 +11,22 @@ ro:
|
|
11
11
|
decidim_area_id: Zonă
|
12
12
|
description: Descriere
|
13
13
|
developer_group: Grup promotor
|
14
|
+
document: Document
|
14
15
|
domain: Domeniu
|
15
16
|
end_date: Data de încheiere
|
16
17
|
hashtag: Hashtag
|
17
18
|
hero_image: Imagine pentru pagina principală
|
19
|
+
import_attachments: Importă atașamente
|
20
|
+
import_categories: Importă categorii
|
21
|
+
import_components: Importă componente
|
22
|
+
import_steps: Importă etapele
|
18
23
|
local_area: Zona organizației
|
19
24
|
meta_scope: Metadate privind domeniul de interes
|
20
25
|
participatory_process_group_id: Grupul proceselor
|
26
|
+
participatory_process_type_id: Tip proces
|
21
27
|
participatory_scope: Ce se decide
|
22
28
|
participatory_structure: Cum se decide
|
29
|
+
private_space: Proces privat
|
23
30
|
promoted: Promovat
|
24
31
|
published_at: Publicat la
|
25
32
|
related_process_ids: Procese asociate
|
@@ -443,6 +450,8 @@ ro:
|
|
443
450
|
see: Vezi
|
444
451
|
index:
|
445
452
|
loading: Se încarcă rezultatele...
|
453
|
+
show:
|
454
|
+
title: Despre acest proces
|
446
455
|
show:
|
447
456
|
area: Zonă
|
448
457
|
belongs_to_group: Acest proces aparține de
|
data/config/locales/sv.yml
CHANGED
@@ -11,13 +11,16 @@ sv:
|
|
11
11
|
decidim_area_id: Område
|
12
12
|
description: Beskrivning
|
13
13
|
developer_group: Kampanjgrupp
|
14
|
+
document: Dokument
|
14
15
|
domain: Domän
|
15
16
|
end_date: Slutdatum
|
16
17
|
hashtag: Hashtag
|
17
18
|
hero_image: Hembild
|
19
|
+
import_steps: Importera steg
|
18
20
|
local_area: Område
|
19
21
|
meta_scope: Omfångets metadata
|
20
22
|
participatory_process_group_id: Dialoggrupp
|
23
|
+
participatory_process_type_id: Dialogtyp
|
21
24
|
participatory_scope: Vad som bestäms
|
22
25
|
participatory_structure: Hur det bestäms
|
23
26
|
promoted: Annonserad
|
data/config/locales/zh-TW.yml
CHANGED
@@ -1 +1,488 @@
|
|
1
1
|
zh-TW:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
participatory_process:
|
5
|
+
announcement: 公告
|
6
|
+
area_id: 區域
|
7
|
+
banner_image: 橫幅圖片
|
8
|
+
copy_categories: 複製類別
|
9
|
+
copy_components: 複製組件
|
10
|
+
copy_steps: 複製步驟
|
11
|
+
decidim_area_id: 區域
|
12
|
+
description: 說明
|
13
|
+
developer_group: 促銷團隊
|
14
|
+
document: 文件
|
15
|
+
domain: 網域
|
16
|
+
end_date: 結束日期
|
17
|
+
hashtag: 主題標籤
|
18
|
+
hero_image: 首頁圖片
|
19
|
+
import_attachments: 匯入附件
|
20
|
+
import_categories: 匯入類別
|
21
|
+
import_components: 匯入組件
|
22
|
+
import_steps: 匯入步驟
|
23
|
+
local_area: 組織區域
|
24
|
+
meta_scope: 元數據範圍
|
25
|
+
participatory_process_group_id: 程序群組
|
26
|
+
participatory_process_type_id: 處理類型
|
27
|
+
participatory_scope: 決定了什麼
|
28
|
+
participatory_structure: 如何決定
|
29
|
+
private_space: 私有程序
|
30
|
+
promoted: 推廣
|
31
|
+
published_at: 發佈於
|
32
|
+
related_process_ids: 相關程序
|
33
|
+
scope_id: 範圍
|
34
|
+
scope_type_max_depth_id: 範圍篩選深度
|
35
|
+
scopes_enabled: 啟用範圍
|
36
|
+
short_description: 簡短說明
|
37
|
+
show_metrics: 顯示度量
|
38
|
+
show_statistics: 顯示統計資料
|
39
|
+
slug: URL網址
|
40
|
+
start_date: 開始日期
|
41
|
+
subtitle: 子標題
|
42
|
+
target: 誰參加
|
43
|
+
title: 標題
|
44
|
+
weight: 排序位置
|
45
|
+
participatory_process_group:
|
46
|
+
description: 說明
|
47
|
+
developer_group: 促銷團隊
|
48
|
+
group_url: 網站
|
49
|
+
hashtag: 主題標籤
|
50
|
+
hero_image: 圖片
|
51
|
+
local_area: 組織區域
|
52
|
+
meta_scope: 元數據範圍
|
53
|
+
participatory_process_ids: 相關程序
|
54
|
+
participatory_scope: 決定了什麼
|
55
|
+
participatory_structure: 如何決定
|
56
|
+
target: 誰參加
|
57
|
+
title: 標題
|
58
|
+
participatory_process_step:
|
59
|
+
cta_path: 呼籲操作路徑
|
60
|
+
cta_text: 呼籲操作文字
|
61
|
+
description: 說明
|
62
|
+
end_date: 結束日期
|
63
|
+
short_description: 簡短說明
|
64
|
+
start_date: 開始日期
|
65
|
+
title: 標題
|
66
|
+
participatory_process_user_role:
|
67
|
+
email: 電子郵件
|
68
|
+
name: 名稱
|
69
|
+
role: 角色
|
70
|
+
errors:
|
71
|
+
models:
|
72
|
+
participatory_process:
|
73
|
+
attributes:
|
74
|
+
document:
|
75
|
+
invalid_document_type: '文件類型無效。接受的格式為: %{valid_mime_types}'
|
76
|
+
models:
|
77
|
+
decidim/participatory_process_step_activated_event: 啟用階段
|
78
|
+
decidim/participatory_process_step_changed_event: 階段已更改
|
79
|
+
activerecord:
|
80
|
+
models:
|
81
|
+
decidim/participatory_process:
|
82
|
+
other: "One\n參與式流程\n\nOther\n參與式流程"
|
83
|
+
decidim/participatory_process_group:
|
84
|
+
other: "One\n參與式流程群組\n\nOther\n參與式流程群組"
|
85
|
+
decidim/participatory_process_step:
|
86
|
+
other: "One\n階段\n\nOther\n階段"
|
87
|
+
decidim:
|
88
|
+
admin:
|
89
|
+
actions:
|
90
|
+
activate: 啟動
|
91
|
+
configure: 配置
|
92
|
+
confirm_destroy: 確認刪除
|
93
|
+
destroy: 刪除
|
94
|
+
duplicate: 重複
|
95
|
+
edit: 編輯
|
96
|
+
filter:
|
97
|
+
all_processes: 顯示所有流程
|
98
|
+
process_groups: 程序群組
|
99
|
+
import_process: 匯入
|
100
|
+
new_process: 新的程序
|
101
|
+
new_process_group: 新的程序群組
|
102
|
+
new_process_step: 新階段
|
103
|
+
new_process_user_role: 新程序管理員
|
104
|
+
preview: 預覽
|
105
|
+
publish: 發布
|
106
|
+
resend_invitation: 重新發送邀請
|
107
|
+
unpublish: 取消發佈
|
108
|
+
menu:
|
109
|
+
participatory_process_groups: 程序群組
|
110
|
+
participatory_process_groups_submenu:
|
111
|
+
info: 資訊
|
112
|
+
landing_page: 登陸頁面
|
113
|
+
participatory_processes: 程序
|
114
|
+
participatory_processes_submenu:
|
115
|
+
attachment_collections: 資料夾
|
116
|
+
attachment_files: 檔案
|
117
|
+
attachments: 附件
|
118
|
+
categories: 類別
|
119
|
+
components: 组件
|
120
|
+
info: 資訊
|
121
|
+
moderations: 版主
|
122
|
+
private_users: 私人參與者
|
123
|
+
process_admins: 程序管理員
|
124
|
+
steps: 分類
|
125
|
+
models:
|
126
|
+
participatory_process:
|
127
|
+
fields:
|
128
|
+
created_at: 建立於
|
129
|
+
private: 隱私模式
|
130
|
+
promoted: 重點顯示
|
131
|
+
published: 已發佈
|
132
|
+
title: 標題
|
133
|
+
name: 參與程序
|
134
|
+
participatory_process_group:
|
135
|
+
fields:
|
136
|
+
title: 標題
|
137
|
+
name: 程序群組
|
138
|
+
participatory_process_step:
|
139
|
+
fields:
|
140
|
+
end_date: 結束日期
|
141
|
+
start_date: 開始日期
|
142
|
+
title: 標題
|
143
|
+
name: 參與式過程階段
|
144
|
+
participatory_process_user_role:
|
145
|
+
fields:
|
146
|
+
email: 電子郵件
|
147
|
+
name: 名稱
|
148
|
+
role: 角色
|
149
|
+
name: 參與程序管理員
|
150
|
+
roles:
|
151
|
+
admin: 管理員
|
152
|
+
collaborator: 合作者
|
153
|
+
moderator: 版主
|
154
|
+
valuator: 評估者
|
155
|
+
user:
|
156
|
+
fields:
|
157
|
+
invitation_accepted_at: 邀請已接受時間
|
158
|
+
invitation_sent_at: 邀請已發送時間
|
159
|
+
participatory_process_copies:
|
160
|
+
new:
|
161
|
+
copy: 複製
|
162
|
+
select: 請選擇您想要複製的資料
|
163
|
+
title: 重複的參與性流程
|
164
|
+
participatory_process_group_landing_page:
|
165
|
+
edit:
|
166
|
+
active_content_blocks: 啟用的內容區塊
|
167
|
+
inactive_content_blocks: 停用的內容區塊
|
168
|
+
participatory_process_group_landing_page_content_blocks:
|
169
|
+
edit:
|
170
|
+
update: 更新
|
171
|
+
participatory_process_groups:
|
172
|
+
destroy:
|
173
|
+
error: 刪除參與性流程群組時發生錯誤。
|
174
|
+
success: 參與式流程組成功刪除。
|
175
|
+
edit:
|
176
|
+
title: 編輯程序群組
|
177
|
+
update: 更新
|
178
|
+
new:
|
179
|
+
create: 建立
|
180
|
+
title: 新的程序群組
|
181
|
+
update:
|
182
|
+
error: 更新參與程序群組時出現問題。
|
183
|
+
success: 參與程序群組已成功更新。
|
184
|
+
participatory_process_imports:
|
185
|
+
create:
|
186
|
+
error: 匯入參與性流程時發生問題。
|
187
|
+
success: 參與性流程已成功匯入。
|
188
|
+
new:
|
189
|
+
import: 匯入
|
190
|
+
select: 請選擇您想匯入的資料
|
191
|
+
title: 匯入參與流程
|
192
|
+
participatory_process_publications:
|
193
|
+
create:
|
194
|
+
error: 發佈參與流程時出現問題。
|
195
|
+
success: 成功發佈參與流程。
|
196
|
+
destroy:
|
197
|
+
error: 解除發布參與程序時發生問題。
|
198
|
+
success: 成功解除發布參與程序。
|
199
|
+
participatory_process_step_activations:
|
200
|
+
create:
|
201
|
+
error: 啟動參與過程階段時發生問題。
|
202
|
+
success: 成功啟用參與程序階段。
|
203
|
+
participatory_process_steps:
|
204
|
+
create:
|
205
|
+
error: 創建新參與程序階段時出現問題。
|
206
|
+
success: 成功創建參與程序階段。
|
207
|
+
default_title: 介紹
|
208
|
+
destroy:
|
209
|
+
error:
|
210
|
+
active_step: 無法刪除進行中的階段。
|
211
|
+
last_step: 無法刪除流程的最後一階段。
|
212
|
+
success: 參與程序階段成功刪除。
|
213
|
+
edit:
|
214
|
+
title: 編輯參與式過程階段
|
215
|
+
update: 更新
|
216
|
+
index:
|
217
|
+
steps_title: 階段
|
218
|
+
new:
|
219
|
+
create: 建立
|
220
|
+
title: 新的參與式過程階段
|
221
|
+
ordering:
|
222
|
+
error: 重新排列這個參與程序階段時出現問題。
|
223
|
+
update:
|
224
|
+
error: 更新參與程序階段時出現問題。
|
225
|
+
success: 參與式階段成功更新。
|
226
|
+
participatory_process_user_roles:
|
227
|
+
create:
|
228
|
+
error: 新增參與者至此參與式過程時發生問題。
|
229
|
+
success: 管理者已成功加入此參與式過程。
|
230
|
+
destroy:
|
231
|
+
success: 管理員已成功從此參與過程中移除。
|
232
|
+
edit:
|
233
|
+
title: 更新參與程序管理員
|
234
|
+
update: 更新
|
235
|
+
index:
|
236
|
+
process_admins_title: 參與程序管理員
|
237
|
+
new:
|
238
|
+
create: 建立
|
239
|
+
title: 新的參與程序管理員
|
240
|
+
update:
|
241
|
+
error: 更新參與程序管理員時出現問題。
|
242
|
+
success: 管理員已成功更新此參與過程。
|
243
|
+
participatory_processes:
|
244
|
+
create:
|
245
|
+
error: 創建新參與程序時出現問題。
|
246
|
+
success: 參與式流程已成功建立。現在請配置其各階段。
|
247
|
+
edit:
|
248
|
+
update: 更新
|
249
|
+
index:
|
250
|
+
not_published: 未發佈
|
251
|
+
private: 隱私模式
|
252
|
+
public: 公開
|
253
|
+
published: 已發佈
|
254
|
+
new:
|
255
|
+
create: 建立
|
256
|
+
title: 新的參與程序
|
257
|
+
update:
|
258
|
+
error: 更新此參與程序時出現問題。
|
259
|
+
success: 參與程序已成功更新。
|
260
|
+
participatory_processes_copies:
|
261
|
+
create:
|
262
|
+
error: 複製參與流程時發生問題。
|
263
|
+
success: 成功複製參與過程。
|
264
|
+
participatory_processes_group:
|
265
|
+
create:
|
266
|
+
error: 創建新參與程序群組時出現問題。
|
267
|
+
success: 成功創建參與過程群組。
|
268
|
+
titles:
|
269
|
+
participatory_process_groups: 參與式流程群組
|
270
|
+
participatory_processes: 參與程序
|
271
|
+
users:
|
272
|
+
resend_invitation:
|
273
|
+
error: 重新發送邀請時發生問題。
|
274
|
+
success: 邀請成功重新發送。
|
275
|
+
admin_log:
|
276
|
+
participatory_process:
|
277
|
+
create: "%{user_name} 建立了 %{resource_name} 參與式流程"
|
278
|
+
publish: "%{user_name} 發佈了 %{resource_name} 參與式流程"
|
279
|
+
unpublish: "%{user_name} 取消發佈了 %{resource_name} 參與式流程"
|
280
|
+
update: "%{user_name} 更新了%{resource_name} 的參與性流程"
|
281
|
+
participatory_process_group:
|
282
|
+
create: "%{user_name} 創建了%{resource_name} 的參與性流程群組"
|
283
|
+
update: "%{user_name} 更新了%{resource_name} 的參與性流程群組"
|
284
|
+
participatory_process_step:
|
285
|
+
activate: "%{user_name} 在 %{space_name} 參與式流程中啟用了 %{resource_name} 階段"
|
286
|
+
create: "%{user_name} 在 %{space_name} 參與式流程中創建了 %{resource_name} 階段"
|
287
|
+
delete: "%{user_name} 刪除了 %{space_name} 參與式流程中的 %{resource_name} 階段"
|
288
|
+
update: "%{user_name} 更新了 %{space_name} 參與式流程中的 %{resource_name} 階段"
|
289
|
+
participatory_process_user_role:
|
290
|
+
create: "%{user_name} 邀請了參與者 %{resource_name} 加入 %{space_name} 參與式流程"
|
291
|
+
delete: "%{user_name} 將參與者 %{resource_name} 從 %{space_name} 參與式流程中移除"
|
292
|
+
update: "使用者 %{user_name} 變更了 %{space_name} 參與流程中參與者 %{resource_name} 的角色"
|
293
|
+
events:
|
294
|
+
participatory_process:
|
295
|
+
role_assigned:
|
296
|
+
email_intro: 您已被指派為%{resource_title} 參與流程的 %{role}。
|
297
|
+
email_outro: 您收到此通知,因為您是 "%{resource_title}" 參與流程的 %{role}。
|
298
|
+
email_subject: 您已被分配為“%{resource_title}”的 %{role}。
|
299
|
+
notification_title: 您已被分配為參與式流程<a href="%{resource_url}">%{resource_title}</a>的%{role}。
|
300
|
+
step_activated:
|
301
|
+
email_intro: '現在,%{participatory_space_title} 的%{resource_title} 階段已啟動。您可以從此頁面查看:'
|
302
|
+
email_outro: 你收到此通知是因為你正在追蹤 %{participatory_space_title}。你可以透過前面的連結停止接收通知。
|
303
|
+
email_subject: '%{participatory_space_title} 的更新'
|
304
|
+
notification_title: 在 <a href="%{resource_path}">%{participatory_space_title}</a>,%{resource_title} 階段現在已啟動。
|
305
|
+
step_changed:
|
306
|
+
email_intro: '在 %{participatory_space_title},%{resource_title} 階段的日期已更新。您可以在此頁面上查看:'
|
307
|
+
email_outro: 你收到此通知是因為你正在追蹤 %{participatory_space_title}。你可以透過前面的連結停止接收通知。
|
308
|
+
email_subject: '%{participatory_space_title} 的更新'
|
309
|
+
notification_title: 在 <a href="%{participatory_space_url}">%{participatory_space_title}</a> 的 <a href="%{resource_path}">%{resource_title}</a> 階段日期已更新。
|
310
|
+
help:
|
311
|
+
participatory_spaces:
|
312
|
+
participatory_processes:
|
313
|
+
contextual: "<p>一個<strong>參與式過程</strong>是一系列參與性活動的序列(例如,先填寫調查問卷,然後提出建議,在面對面或虛擬會議中進行討論,最終進行優先排序),旨在定義和就特定主題做出決定。</p> <p>參與式過程的例子包括:選舉委員會成員的過程(候選人首先進行介紹,然後進行辯論,最後選擇一個候選人),參與式預算(提出建議,經濟評估,使用可用的資金進行投票),戰略規劃過程,共同起草法規或標準,城市空間設計或公共政策計畫的製定。</p>\n"
|
314
|
+
page: "<p>一個<strong>參與性流程是一系列的參與性活動,(例如先填寫調查,然後提出建議,在面對面或虛擬會議中討論這些建議,最後進行優先排序),以便針對特定主題進行定義和決策。</p> <p>參與性流程的例子包括:選舉委員會成員的程序(首先提出候選人,然後進行辯論,最後選出候選人),參與式預算(提出建議,經濟評估,用可用的資金進行投票),戰略規劃流程,協作制定規則或標準,城市空間的設計或公共政策計劃的制定。</p>\n"
|
315
|
+
title: 什麼是參與式過程?
|
316
|
+
menu:
|
317
|
+
processes: 程序
|
318
|
+
metrics:
|
319
|
+
participatory_processes:
|
320
|
+
description: 此組織中的參與式過程數量
|
321
|
+
object: 參與程序
|
322
|
+
title: 參與程序
|
323
|
+
participatory_process:
|
324
|
+
show:
|
325
|
+
related_assemblies: 相關大會
|
326
|
+
participatory_process_groups:
|
327
|
+
content_blocks:
|
328
|
+
html_1:
|
329
|
+
name: 第一個 HTML 區塊
|
330
|
+
html_2:
|
331
|
+
name: 第二個 HTML 區塊
|
332
|
+
html_3:
|
333
|
+
name: 第三個 HTML 區塊
|
334
|
+
metadata:
|
335
|
+
developer_group: 推廣者:
|
336
|
+
name: Metadata
|
337
|
+
participatory_scope: 決定了什麼
|
338
|
+
participatory_structure: 如何決定
|
339
|
+
target: 誰參加
|
340
|
+
participatory_processes:
|
341
|
+
name: 參與程序
|
342
|
+
stats:
|
343
|
+
name: 統計資料
|
344
|
+
title:
|
345
|
+
meta_scope: 範圍
|
346
|
+
name: 標題、描述和標籤
|
347
|
+
participatory_processes:
|
348
|
+
other: "One\n1 個程序\n\nOther\n%{count} 個程序"
|
349
|
+
show:
|
350
|
+
title: 參與程序群組
|
351
|
+
participatory_process_steps:
|
352
|
+
index:
|
353
|
+
process_steps: 程序階段
|
354
|
+
title: 參與式過程階段
|
355
|
+
participatory_processes:
|
356
|
+
admin:
|
357
|
+
content_blocks:
|
358
|
+
highlighted_processes:
|
359
|
+
max_results: 顯示的最大元素數量
|
360
|
+
new_import:
|
361
|
+
accepted_types:
|
362
|
+
json: JSON
|
363
|
+
participatory_process_copies:
|
364
|
+
form:
|
365
|
+
slug_help: 'URL slugs用於生成指向此程序的URL。僅接受字母、數字和破折號,必須以字母開頭。例如:%{url}'
|
366
|
+
participatory_process_groups:
|
367
|
+
form:
|
368
|
+
metadata: 元數據
|
369
|
+
title: 基本資訊
|
370
|
+
visibility: 可見度
|
371
|
+
participatory_process_imports:
|
372
|
+
form:
|
373
|
+
document_legend: 添加文檔
|
374
|
+
slug_help: 'URL slugs用於生成指向此程序的URL。僅接受字母、數字和破折號,必須以字母開頭。例如:%{url}'
|
375
|
+
participatory_process_steps:
|
376
|
+
form:
|
377
|
+
cta_path_help: '在這裡使用部分路徑,而不是完整的 URL。只接受字母、數字、破折號和斜線,並且必須以字母開頭。如果未設置,按鈕將不會顯示。例如:%{url}'
|
378
|
+
cta_text_help: 如果未設置,按鈕將不會顯示。
|
379
|
+
participatory_processes:
|
380
|
+
form:
|
381
|
+
announcement_help: 您在此處輸入的文字將顯示至使用者的正下方程序信息
|
382
|
+
duration: 持續時間
|
383
|
+
filters: 過濾器
|
384
|
+
images: 圖片
|
385
|
+
metadata: 元數據
|
386
|
+
other: 其他
|
387
|
+
related_processes: 相關程序
|
388
|
+
scope_type_max_depth_help: 限制範圍過濾器深度;過濾器將會從一般範圍到所選範圍層級進行顯示。
|
389
|
+
select_an_area: 選擇一個地區
|
390
|
+
select_process_group: 選擇一個程序群組
|
391
|
+
slug_help: 'URL slugs用於生成指向此程序的URL。僅接受字母、數字和破折號,必須以字母開頭。例如:%{url}'
|
392
|
+
title: 基本資訊
|
393
|
+
visbility: 可見度
|
394
|
+
content_blocks:
|
395
|
+
highlighted_processes:
|
396
|
+
name: 精選程序
|
397
|
+
index:
|
398
|
+
title: 參與程序
|
399
|
+
last_activity:
|
400
|
+
new_participatory_process: 新的參與程序
|
401
|
+
pages:
|
402
|
+
home:
|
403
|
+
highlighted_processes:
|
404
|
+
active_processes: 運行中的程序
|
405
|
+
active_step: 進行中的階段
|
406
|
+
more_information: 更多資訊
|
407
|
+
participate: 參與
|
408
|
+
participate_in: 參與程序 %{resource_name}
|
409
|
+
processes_button_title: 鏈接到顯示所有程序的程序頁面
|
410
|
+
see_all_processes: 檢視所有程序
|
411
|
+
participatory_process_steps:
|
412
|
+
index:
|
413
|
+
back_to_process: 返回程序頁
|
414
|
+
participatory_processes:
|
415
|
+
filters:
|
416
|
+
counters:
|
417
|
+
active:
|
418
|
+
other: "One\n1個進行中的流程\nOther\n%{count} 個進行中的流程"
|
419
|
+
all:
|
420
|
+
other: "One\n1 個程序\n\nOther\n%{count} 個程序"
|
421
|
+
past:
|
422
|
+
other: "One\n1 個過去的程序\nOther\n%{count} 個過去的程序"
|
423
|
+
upcoming:
|
424
|
+
other: "One\n1 個即將到來的程序\nOther\n%{count} 個即將到來的程序"
|
425
|
+
explanations:
|
426
|
+
no_active: '"沒有進行中的流程'
|
427
|
+
no_active_nor_upcoming: 沒有進行中或即將開始的流程
|
428
|
+
no_active_nor_upcoming_callout: 目前沒有進行中或即將開始的程序。以下是過去的程序清單
|
429
|
+
names:
|
430
|
+
active: 啟用中
|
431
|
+
all: 全部
|
432
|
+
past: 過去
|
433
|
+
upcoming: 即將舉行
|
434
|
+
see: 查看
|
435
|
+
index:
|
436
|
+
loading: 正在載入結果
|
437
|
+
show:
|
438
|
+
title: 關於此流程
|
439
|
+
show:
|
440
|
+
area: 區域
|
441
|
+
belongs_to_group: 此程序屬於
|
442
|
+
dates: 日期
|
443
|
+
developer_group: 促銷團隊
|
444
|
+
end_date: 結束日期
|
445
|
+
local_area: 組織區域
|
446
|
+
participatory_scope: 決定了什麼
|
447
|
+
participatory_structure: 如何決定
|
448
|
+
private_space: 這是不公開程序。
|
449
|
+
related_processes: 相關程序
|
450
|
+
scope: 範圍
|
451
|
+
start_date: 開始日期
|
452
|
+
target: 誰參加
|
453
|
+
unspecified: 未指定
|
454
|
+
statistics:
|
455
|
+
processes_count: 程序
|
456
|
+
layouts:
|
457
|
+
decidim:
|
458
|
+
participatory_process_groups:
|
459
|
+
participatory_process_group:
|
460
|
+
browse: 瀏覽
|
461
|
+
browse_resource: 瀏覽程序群組 %{resource_name}
|
462
|
+
processes_count: '程序:'
|
463
|
+
participatory_process_widgets:
|
464
|
+
show:
|
465
|
+
active_step: 進行中的階段
|
466
|
+
take_part: 參與
|
467
|
+
participatory_processes:
|
468
|
+
index:
|
469
|
+
promoted_processes: 精選程序
|
470
|
+
participatory_process:
|
471
|
+
active_step: '當前階段'
|
472
|
+
more_info: 更多資訊
|
473
|
+
more_info_about: 關於程序 %{resource_name} 的更多資訊
|
474
|
+
take_part: 參與
|
475
|
+
take_part_in: 參與程序 %{resource_name}
|
476
|
+
promoted_process:
|
477
|
+
active_step: '當前階段'
|
478
|
+
more_info: 更多資訊
|
479
|
+
more_info_about: 關於程序 %{resource_name} 的更多資訊
|
480
|
+
take_part: 參與
|
481
|
+
take_part_in: 參與程序 %{resource_name}
|
482
|
+
promoted_process_group:
|
483
|
+
more_info: 更多資訊
|
484
|
+
process_header_steps:
|
485
|
+
step: 第 %{current} 階段 / 共 %{total} 階段
|
486
|
+
view_steps: 程序階段
|
487
|
+
process_navigation:
|
488
|
+
process_menu_item: 該程序
|
@@ -150,6 +150,7 @@ FactoryBot.define do
|
|
150
150
|
end
|
151
151
|
|
152
152
|
organization { participatory_process.organization }
|
153
|
+
admin_terms_accepted_at { Time.current }
|
153
154
|
|
154
155
|
after(:create) do |user, evaluator|
|
155
156
|
create :participatory_process_user_role,
|
@@ -165,6 +166,7 @@ FactoryBot.define do
|
|
165
166
|
end
|
166
167
|
|
167
168
|
organization { participatory_process.organization }
|
169
|
+
admin_terms_accepted_at { Time.current }
|
168
170
|
|
169
171
|
after(:create) do |user, evaluator|
|
170
172
|
create :participatory_process_user_role,
|
@@ -180,6 +182,7 @@ FactoryBot.define do
|
|
180
182
|
end
|
181
183
|
|
182
184
|
organization { participatory_process.organization }
|
185
|
+
admin_terms_accepted_at { Time.current }
|
183
186
|
|
184
187
|
after(:create) do |user, evaluator|
|
185
188
|
create :participatory_process_user_role,
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-participatory_processes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.26.
|
4
|
+
version: 0.26.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josep Jaume Rey Peroy
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2023-05-11 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: decidim-core
|
@@ -18,56 +18,56 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.26.
|
21
|
+
version: 0.26.7
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - '='
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 0.26.
|
28
|
+
version: 0.26.7
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: decidim-admin
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
33
|
- - '='
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.26.
|
35
|
+
version: 0.26.7
|
36
36
|
type: :development
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
40
|
- - '='
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 0.26.
|
42
|
+
version: 0.26.7
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: decidim-dev
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - '='
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 0.26.
|
49
|
+
version: 0.26.7
|
50
50
|
type: :development
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
54
|
- - '='
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: 0.26.
|
56
|
+
version: 0.26.7
|
57
57
|
- !ruby/object:Gem::Dependency
|
58
58
|
name: decidim-meetings
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
61
|
- - '='
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: 0.26.
|
63
|
+
version: 0.26.7
|
64
64
|
type: :development
|
65
65
|
prerelease: false
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - '='
|
69
69
|
- !ruby/object:Gem::Version
|
70
|
-
version: 0.26.
|
70
|
+
version: 0.26.7
|
71
71
|
description: Participatory processes component for decidim.
|
72
72
|
email:
|
73
73
|
- josepjaume@gmail.com
|
@@ -302,6 +302,7 @@ files:
|
|
302
302
|
- config/locales/et-EE.yml
|
303
303
|
- config/locales/et.yml
|
304
304
|
- config/locales/eu.yml
|
305
|
+
- config/locales/fa-IR.yml
|
305
306
|
- config/locales/fi-pl.yml
|
306
307
|
- config/locales/fi-plain.yml
|
307
308
|
- config/locales/fi.yml
|
@@ -319,6 +320,8 @@ files:
|
|
319
320
|
- config/locales/is.yml
|
320
321
|
- config/locales/it.yml
|
321
322
|
- config/locales/ja.yml
|
323
|
+
- config/locales/ka-GE.yml
|
324
|
+
- config/locales/kaa.yml
|
322
325
|
- config/locales/ko-KR.yml
|
323
326
|
- config/locales/ko.yml
|
324
327
|
- config/locales/lb-LU.yml
|