decidim-participatory_processes 0.27.1 → 0.27.3
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/cells/decidim/participatory_processes/process_filters_cell.rb +8 -4
- data/app/helpers/decidim/participatory_processes/participatory_process_helper.rb +2 -2
- data/app/serializers/decidim/participatory_processes/participatory_process_importer.rb +27 -1
- data/app/serializers/decidim/participatory_processes/participatory_process_serializer.rb +4 -0
- data/app/views/decidim/participatory_processes/admin/participatory_process_groups/_form.html.erb +1 -1
- data/app/views/decidim/participatory_processes/admin/participatory_process_imports/_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 +1 -1
- 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 +54 -0
- data/config/locales/sv.yml +5 -0
- data/config/locales/zh-TW.yml +529 -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: 0c4da788d04485e5e8e76ad5f5feebfd09255a5cb75b23d051362b198cf794ea
|
4
|
+
data.tar.gz: 233a96b9a51aa841f5d06b316080ff7c19144ffd5675bc67d7ab32f41f5d7102
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88dd80d979edf4bdeb741b266df3fa8e5ca5abcac39b15a464690289dbaa2e93c2e1a7e70892ee4f11b78be111642c2ec87a108a8934fe2fc3b38e39ef8b1110
|
7
|
+
data.tar.gz: 01ae22ed7c6ed37a7dcb7c379f2f31db2833dca2882ae5a51caaf418295a7ba7fec1f06749c2607b58a11614e43e38eb348cc091314f928d62e8c9e331be421e
|
@@ -13,7 +13,7 @@ module Decidim
|
|
13
13
|
end
|
14
14
|
|
15
15
|
def current_filter
|
16
|
-
|
16
|
+
get_filter_in(:with_date, ALL_FILTERS, model[:default_filter])
|
17
17
|
end
|
18
18
|
|
19
19
|
def current_type_filter_name
|
@@ -25,6 +25,11 @@ module Decidim
|
|
25
25
|
params&.dig(:filter, filter_name) || default
|
26
26
|
end
|
27
27
|
|
28
|
+
def get_filter_in(filter_name, options, default = nil)
|
29
|
+
value = get_filter(filter_name)
|
30
|
+
options.include?(value) ? value : default
|
31
|
+
end
|
32
|
+
|
28
33
|
def filter_params(date_filter, type_filter)
|
29
34
|
{
|
30
35
|
filter: {
|
@@ -37,15 +42,14 @@ module Decidim
|
|
37
42
|
end
|
38
43
|
|
39
44
|
def filtered_processes(date_filter, filter_with_type: true)
|
40
|
-
query = ParticipatoryProcess.ransack(
|
45
|
+
query = ParticipatoryProcess.where(organization: current_organization).ransack(
|
41
46
|
{
|
42
47
|
with_date: date_filter,
|
43
48
|
with_scope: get_filter(:with_scope),
|
44
49
|
with_area: get_filter(:with_area),
|
45
50
|
with_type: filter_with_type ? get_filter(:with_type) : nil
|
46
51
|
},
|
47
|
-
current_user: current_user
|
48
|
-
organization: current_organization
|
52
|
+
current_user: current_user
|
49
53
|
).result
|
50
54
|
|
51
55
|
query.published.visible_for(current_user)
|
@@ -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
|
@@ -42,7 +42,10 @@ module Decidim
|
|
42
42
|
announcement: attributes["announcement"],
|
43
43
|
private_space: attributes["private_space"],
|
44
44
|
scopes_enabled: attributes["scopes_enabled"],
|
45
|
-
|
45
|
+
show_metrics: attributes["show_metrics"],
|
46
|
+
show_statistics: attributes["show_statistics"],
|
47
|
+
participatory_process_group: import_process_group(attributes["participatory_process_group"]),
|
48
|
+
participatory_process_type: import_participatory_process_type(attributes["participatory_process_type"])
|
46
49
|
)
|
47
50
|
@imported_process.attached_uploader(:hero_image).remote_url = attributes["remote_hero_image_url"] if attributes["remote_hero_image_url"].present?
|
48
51
|
@imported_process.attached_uploader(:banner_image).remote_url = attributes["remote_banner_image_url"] if attributes["remote_banner_image_url"].present?
|
@@ -53,6 +56,11 @@ module Decidim
|
|
53
56
|
end
|
54
57
|
|
55
58
|
def import_process_group(attributes)
|
59
|
+
title = compact_translation(attributes["title"] || attributes["name"])
|
60
|
+
description = compact_translation(attributes["description"])
|
61
|
+
|
62
|
+
return if title.blank? && description.blank?
|
63
|
+
|
56
64
|
Decidim.traceability.perform_action!("create", ParticipatoryProcessGroup, @user) do
|
57
65
|
group = ParticipatoryProcessGroup.find_or_initialize_by(
|
58
66
|
title: attributes["title"] || attributes["name"],
|
@@ -66,6 +74,19 @@ module Decidim
|
|
66
74
|
end
|
67
75
|
end
|
68
76
|
|
77
|
+
def import_participatory_process_type(participatory_process_type)
|
78
|
+
return if participatory_process_type.blank?
|
79
|
+
|
80
|
+
return if compact_translation(participatory_process_type["title"]).blank?
|
81
|
+
|
82
|
+
Decidim.traceability.perform_action!("create", ParticipatoryProcessType, @user) do
|
83
|
+
Decidim::ParticipatoryProcessType.find_or_create_by(
|
84
|
+
title: participatory_process_type["title"],
|
85
|
+
organization: @organization
|
86
|
+
)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
69
90
|
def import_participatory_process_steps(steps)
|
70
91
|
return if steps.nil?
|
71
92
|
|
@@ -152,6 +173,11 @@ module Decidim
|
|
152
173
|
|
153
174
|
private
|
154
175
|
|
176
|
+
def compact_translation(translation)
|
177
|
+
translation["machine_translations"] = translation["machine_translations"].reject { |_k, v| v.blank? } if translation["machine_translations"].present?
|
178
|
+
translation.reject { |_k, v| v.blank? }
|
179
|
+
end
|
180
|
+
|
155
181
|
def create_attachment_collection(attributes)
|
156
182
|
return unless attributes.compact.any?
|
157
183
|
|
@@ -54,6 +54,10 @@ module Decidim
|
|
54
54
|
scopes_enabled: participatory_process.scopes_enabled,
|
55
55
|
show_metrics: participatory_process.show_metrics,
|
56
56
|
show_statistics: participatory_process.show_statistics,
|
57
|
+
participatory_process_type: {
|
58
|
+
id: participatory_process.participatory_process_type.try(:id),
|
59
|
+
title: participatory_process.participatory_process_type.try(:title) || empty_translatable
|
60
|
+
},
|
57
61
|
participatory_process_steps: serialize_participatory_process_steps,
|
58
62
|
participatory_process_categories: serialize_categories,
|
59
63
|
attachments: {
|
@@ -32,7 +32,7 @@
|
|
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>
|
data/config/locales/ar.yml
CHANGED
data/config/locales/ca.yml
CHANGED
@@ -12,15 +12,22 @@ ca:
|
|
12
12
|
decidim_area_id: Àrea
|
13
13
|
description: Descripció
|
14
14
|
developer_group: Grup promotor
|
15
|
+
document: Document
|
15
16
|
domain: Àrees municipals
|
16
17
|
end_date: Data de finalització
|
17
18
|
hashtag: Etiqueta (hashtag)
|
18
19
|
hero_image: Imatge de portada
|
20
|
+
import_attachments: Importar arxius adjunts
|
21
|
+
import_categories: Importar categories
|
22
|
+
import_components: Importar components
|
23
|
+
import_steps: Importar fases
|
19
24
|
local_area: Àrea d'organització
|
20
25
|
meta_scope: Metadades d'àmbit
|
21
26
|
participatory_process_group_id: Grup de processos
|
27
|
+
participatory_process_type_id: Tipus de procés
|
22
28
|
participatory_scope: El que es decideix
|
23
29
|
participatory_structure: Com es decideix
|
30
|
+
private_space: Procés privat
|
24
31
|
promoted: Destacat
|
25
32
|
published_at: Publicat el
|
26
33
|
related_process_ids: Processos relacionats
|
data/config/locales/cs.yml
CHANGED
@@ -12,15 +12,22 @@ cs:
|
|
12
12
|
decidim_area_id: Oblast
|
13
13
|
description: Popis
|
14
14
|
developer_group: Skupina promotérů
|
15
|
+
document: Dokument
|
15
16
|
domain: Doména
|
16
17
|
end_date: Datum ukončení
|
17
18
|
hashtag: Hashtag
|
18
19
|
hero_image: Domácí obrázek
|
20
|
+
import_attachments: Importovat přílohy
|
21
|
+
import_categories: Importovat kategorie
|
22
|
+
import_components: Importovat komponenty
|
23
|
+
import_steps: Importovat kroky
|
19
24
|
local_area: Oblast působnosti organizace
|
20
25
|
meta_scope: Metadata Oblasti působnosti
|
21
26
|
participatory_process_group_id: Skupina procesů
|
27
|
+
participatory_process_type_id: Typ procesů
|
22
28
|
participatory_scope: Co se rozhodlo
|
23
29
|
participatory_structure: Jak se to rozhoduje
|
30
|
+
private_space: Soukromý proces
|
24
31
|
promoted: Propagováno
|
25
32
|
published_at: Publikováno v
|
26
33
|
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
@@ -12,15 +12,22 @@ es-MX:
|
|
12
12
|
decidim_area_id: Área
|
13
13
|
description: Descripción
|
14
14
|
developer_group: Grupo promotor
|
15
|
+
document: Documento
|
15
16
|
domain: Dominio
|
16
17
|
end_date: Fecha de finalización
|
17
18
|
hashtag: Hashtag
|
18
19
|
hero_image: Imagen de portada
|
20
|
+
import_attachments: Importar archivos adjuntos
|
21
|
+
import_categories: Importar categorias
|
22
|
+
import_components: Importar componentes
|
23
|
+
import_steps: Importar fases
|
19
24
|
local_area: Área de organización
|
20
25
|
meta_scope: 'Metadatos: ámbito'
|
21
26
|
participatory_process_group_id: Grupo de procesos
|
27
|
+
participatory_process_type_id: Tipo de proceso
|
22
28
|
participatory_scope: Qué se decide
|
23
29
|
participatory_structure: Cómo se decide
|
30
|
+
private_space: Proceso privado
|
24
31
|
promoted: Destacado
|
25
32
|
published_at: Publicado en
|
26
33
|
related_process_ids: Procesos relacionados
|
data/config/locales/es-PY.yml
CHANGED
@@ -12,15 +12,22 @@ es-PY:
|
|
12
12
|
decidim_area_id: Área
|
13
13
|
description: Descripción
|
14
14
|
developer_group: Grupo promotor
|
15
|
+
document: Documento
|
15
16
|
domain: Dominio
|
16
17
|
end_date: Fecha de finalización
|
17
18
|
hashtag: Hashtag
|
18
19
|
hero_image: Imagen de portada
|
20
|
+
import_attachments: Importar archivos adjuntos
|
21
|
+
import_categories: Importar categorias
|
22
|
+
import_components: Importar componentes
|
23
|
+
import_steps: Importar fases
|
19
24
|
local_area: Área de organización
|
20
25
|
meta_scope: 'Metadatos: ámbito'
|
21
26
|
participatory_process_group_id: Grupo de procesos
|
27
|
+
participatory_process_type_id: Tipo de proceso
|
22
28
|
participatory_scope: Qué se decide
|
23
29
|
participatory_structure: Cómo se decide
|
30
|
+
private_space: Proceso privado
|
24
31
|
promoted: Destacado
|
25
32
|
published_at: Publicado en
|
26
33
|
related_process_ids: Procesos relacionados
|
data/config/locales/es.yml
CHANGED
@@ -12,15 +12,22 @@ es:
|
|
12
12
|
decidim_area_id: Área
|
13
13
|
description: Descripción
|
14
14
|
developer_group: Grupo promotor
|
15
|
+
document: Documento
|
15
16
|
domain: Dominio
|
16
17
|
end_date: Fecha de finalización
|
17
18
|
hashtag: Hashtag
|
18
19
|
hero_image: Imagen de portada
|
20
|
+
import_attachments: Importar archivos adjuntos
|
21
|
+
import_categories: Importar categorias
|
22
|
+
import_components: Importar componentes
|
23
|
+
import_steps: Importar fases
|
19
24
|
local_area: Área de organización
|
20
25
|
meta_scope: Metadatos de ámbito
|
21
26
|
participatory_process_group_id: Grupo de procesos
|
27
|
+
participatory_process_type_id: Tipo de proceso
|
22
28
|
participatory_scope: Qué se decide
|
23
29
|
participatory_structure: Cómo se decide
|
30
|
+
private_space: Proceso privado
|
24
31
|
promoted: Destacado
|
25
32
|
published_at: Publicado en
|
26
33
|
related_process_ids: Procesos relacionados
|
data/config/locales/eu.yml
CHANGED
@@ -4,14 +4,14 @@ eu:
|
|
4
4
|
attributes:
|
5
5
|
participatory_process:
|
6
6
|
announcement: Anuntzio
|
7
|
-
area_id:
|
7
|
+
area_id: Arloa
|
8
8
|
banner_image: Bannerra
|
9
9
|
copy_categories: Kopiatu kategoriak
|
10
10
|
copy_components: Kopiatu osagaiak
|
11
11
|
copy_steps: Kopiatu faseak
|
12
|
-
decidim_area_id:
|
12
|
+
decidim_area_id: Arloa
|
13
13
|
description: Deskribapena
|
14
|
-
developer_group:
|
14
|
+
developer_group: Talde sustatzailea
|
15
15
|
domain: Domeinua
|
16
16
|
end_date: Bukaera-data
|
17
17
|
hashtag: Traola
|
@@ -19,10 +19,10 @@ eu:
|
|
19
19
|
local_area: Antolakuntza eremua
|
20
20
|
meta_scope: 'Metadatuak: esparrua'
|
21
21
|
participatory_process_group_id: Prozesu-multzoa
|
22
|
-
participatory_scope: Zer
|
22
|
+
participatory_scope: Zer erabakitzen da
|
23
23
|
participatory_structure: Nola erabakitzen da?
|
24
24
|
promoted: Nabarmendua
|
25
|
-
published_at:
|
25
|
+
published_at: Argitaratze-data
|
26
26
|
related_process_ids: Elkarrekin lotutako prozesuak
|
27
27
|
scope_id: Esparrua
|
28
28
|
scope_type_max_depth_id: Eremuaren iragazkiaren sakonera
|
@@ -35,7 +35,7 @@ eu:
|
|
35
35
|
subtitle: Azpititulua
|
36
36
|
target: Nor parte hartzen du
|
37
37
|
title: Titulua
|
38
|
-
weight:
|
38
|
+
weight: Ordena
|
39
39
|
participatory_process_group:
|
40
40
|
description: Deskribapena
|
41
41
|
developer_group: Talde sustatzailea
|
@@ -47,7 +47,7 @@ eu:
|
|
47
47
|
participatory_process_ids: Elkarrekin lotutako prozesuak
|
48
48
|
participatory_scope: Zer erabakitzen den
|
49
49
|
participatory_structure: Nola erabakitzen den
|
50
|
-
target: Nork hartzen
|
50
|
+
target: Nork hartzen due parte
|
51
51
|
title: Izenburua
|
52
52
|
participatory_process_step:
|
53
53
|
cta_path: Deitu ekintza bideari
|
@@ -291,7 +291,7 @@ eu:
|
|
291
291
|
participatory_process:
|
292
292
|
role_assigned:
|
293
293
|
email_intro: '%{role} rola esleitu zaizu <a href="%{resource_title}"> prozesu parte-hartzailean.'
|
294
|
-
email_outro: Jakinarazpen hau jaso duzu %{role} rola esleitu zaizu "%{resource_title}"
|
294
|
+
email_outro: Jakinarazpen hau jaso duzu %{role} rola esleitu zaizu "%{resource_title}" espazioan.
|
295
295
|
email_subject: '%{role} rola esleitu zaizu hemen "%{resource_title}".'
|
296
296
|
notification_title: '%{role} rola esleitu zaizu <a href="%{resource_url}">%{resource_title}</a> prozesu parte-hartzailean.'
|
297
297
|
step_activated:
|
@@ -332,8 +332,8 @@ eu:
|
|
332
332
|
developer_group: Nork sustatua
|
333
333
|
name: Metadatuak
|
334
334
|
participatory_scope: Zer erabakitzen den
|
335
|
-
participatory_structure: Nola erabakitzen
|
336
|
-
target: Nork hartzen
|
335
|
+
participatory_structure: Nola erabakitzen da
|
336
|
+
target: Nork hartzen du parte
|
337
337
|
participatory_processes:
|
338
338
|
name: Prozesu parte-hartzaileak
|
339
339
|
stats:
|
@@ -400,7 +400,7 @@ eu:
|
|
400
400
|
more_information: Informazio gehiago
|
401
401
|
participate: Parte hartu
|
402
402
|
participate_in: Parte hartu %{resource_name} prozesuan
|
403
|
-
processes_button_title:
|
403
|
+
processes_button_title: Esteka prozesu guztiak erakusten dituen Prozesuen orrialdera
|
404
404
|
see_all_processes: Ikusi prozesu guztiak
|
405
405
|
participatory_process_steps:
|
406
406
|
index:
|
@@ -0,0 +1 @@
|
|
1
|
+
fa:
|
data/config/locales/fi-plain.yml
CHANGED
@@ -12,15 +12,22 @@ fi-pl:
|
|
12
12
|
decidim_area_id: Alue
|
13
13
|
description: Kuvaus
|
14
14
|
developer_group: Kehittäjäryhmä
|
15
|
+
document: Asiakirja
|
15
16
|
domain: Toimintaympäristö
|
16
17
|
end_date: Päättymispäivä
|
17
18
|
hashtag: Aihetunniste (hashtag)
|
18
19
|
hero_image: Etusivun kuva
|
20
|
+
import_attachments: Tuo liitteitä
|
21
|
+
import_categories: Kopioi aihepiirejä
|
22
|
+
import_components: Tuo komponentteja
|
23
|
+
import_steps: Tuo vaiheita
|
19
24
|
local_area: Järjestöalue
|
20
25
|
meta_scope: Teeman metadata
|
21
26
|
participatory_process_group_id: Prosessiryhmä
|
27
|
+
participatory_process_type_id: Prosessin tyyppi
|
22
28
|
participatory_scope: Mitä päätetään
|
23
29
|
participatory_structure: Miten päätetään
|
30
|
+
private_space: Yksityinen prosessi
|
24
31
|
promoted: Korostettu
|
25
32
|
published_at: Julkaisuaika
|
26
33
|
related_process_ids: Liittyvät prosessit
|
data/config/locales/fi.yml
CHANGED
@@ -12,15 +12,22 @@ fi:
|
|
12
12
|
decidim_area_id: Alue
|
13
13
|
description: Kuvaus
|
14
14
|
developer_group: Edistäjäryhmä
|
15
|
+
document: Asiakirja
|
15
16
|
domain: Toimintaympäristö
|
16
17
|
end_date: Päättymispäivä
|
17
18
|
hashtag: Aihetunniste (hashtag)
|
18
19
|
hero_image: Etusivun kuva
|
20
|
+
import_attachments: Tuo liitteitä
|
21
|
+
import_categories: Kopioi aihepiirejä
|
22
|
+
import_components: Tuo komponentteja
|
23
|
+
import_steps: Tuo vaiheita
|
19
24
|
local_area: Järjestöalue
|
20
25
|
meta_scope: Teeman metadata
|
21
26
|
participatory_process_group_id: Prosessiryhmä
|
27
|
+
participatory_process_type_id: Prosessin tyyppi
|
22
28
|
participatory_scope: Mitä päätetään
|
23
29
|
participatory_structure: Miten päätetään
|
30
|
+
private_space: Yksityinen prosessi
|
24
31
|
promoted: Korostettu
|
25
32
|
published_at: Julkaisuaika
|
26
33
|
related_process_ids: Liittyvät prosessit
|
@@ -154,7 +161,7 @@ fi:
|
|
154
161
|
role: Rooli
|
155
162
|
name: Osallistumisprosessin käyttäjä
|
156
163
|
roles:
|
157
|
-
admin:
|
164
|
+
admin: Hallintakäyttäjä
|
158
165
|
collaborator: Osallistuva käyttäjä
|
159
166
|
moderator: Moderoija
|
160
167
|
valuator: Arvon arvioija
|
data/config/locales/fr-CA.yml
CHANGED
@@ -12,15 +12,22 @@ fr-CA:
|
|
12
12
|
decidim_area_id: Périmètre d'assemblée
|
13
13
|
description: Description
|
14
14
|
developer_group: Organisateur
|
15
|
+
document: Document
|
15
16
|
domain: Domaine
|
16
17
|
end_date: Date de fin
|
17
18
|
hashtag: Hashtag
|
18
19
|
hero_image: Image de la page d'accueil
|
20
|
+
import_attachments: Importer les pièces jointes
|
21
|
+
import_categories: Importer les catégories
|
22
|
+
import_components: Importer les fonctionnalités
|
23
|
+
import_steps: Importer les étapes
|
19
24
|
local_area: Espace d'organisation
|
20
25
|
meta_scope: Échelle
|
21
26
|
participatory_process_group_id: Groupe de processus
|
27
|
+
participatory_process_type_id: Type de processus
|
22
28
|
participatory_scope: Objectifs
|
23
29
|
participatory_structure: Modalités de décision
|
30
|
+
private_space: Processus privé
|
24
31
|
promoted: Mise en avant
|
25
32
|
published_at: Publiée à
|
26
33
|
related_process_ids: Concertations liées
|
data/config/locales/fr.yml
CHANGED
@@ -12,15 +12,22 @@ fr:
|
|
12
12
|
decidim_area_id: Périmètre d'assemblée
|
13
13
|
description: Description
|
14
14
|
developer_group: Organisateur
|
15
|
+
document: Document
|
15
16
|
domain: Domaine
|
16
17
|
end_date: Date de fin
|
17
18
|
hashtag: Hashtag
|
18
19
|
hero_image: Image de la page d'accueil
|
20
|
+
import_attachments: Importer les pièces jointes
|
21
|
+
import_categories: Importer les catégories
|
22
|
+
import_components: Importer les fonctionnalités
|
23
|
+
import_steps: Importer les étapes
|
19
24
|
local_area: Espace d'organisation
|
20
25
|
meta_scope: Échelle
|
21
26
|
participatory_process_group_id: Groupe de processus
|
27
|
+
participatory_process_type_id: Type de processus
|
22
28
|
participatory_scope: Objectifs
|
23
29
|
participatory_structure: Modalités de décision
|
30
|
+
private_space: Processus privé
|
24
31
|
promoted: Mis en avant
|
25
32
|
published_at: Publiée à
|
26
33
|
related_process_ids: Concertations liées
|
data/config/locales/ja.yml
CHANGED
@@ -12,15 +12,22 @@ ja:
|
|
12
12
|
decidim_area_id: エリア
|
13
13
|
description: 説明
|
14
14
|
developer_group: プロモーターグループ
|
15
|
+
document: ドキュメント
|
15
16
|
domain: ドメイン
|
16
17
|
end_date: 終了日
|
17
18
|
hashtag: ハッシュタグ
|
18
19
|
hero_image: ホーム画像
|
20
|
+
import_attachments: 添付ファイルをインポート
|
21
|
+
import_categories: カテゴリをインポート
|
22
|
+
import_components: コンポーネントをインポート
|
23
|
+
import_steps: ステップをインポート
|
19
24
|
local_area: 組織エリア
|
20
25
|
meta_scope: スコープメタデータ
|
21
26
|
participatory_process_group_id: 参加型プロセスグループ
|
27
|
+
participatory_process_type_id: プロセス種別
|
22
28
|
participatory_scope: 決定されるもの
|
23
29
|
participatory_structure: どのように決められますか?
|
30
|
+
private_space: プライベートプロセス
|
24
31
|
promoted: プロモート
|
25
32
|
published_at: 公開日時
|
26
33
|
related_process_ids: 関連する参加型プロセス
|
@@ -0,0 +1 @@
|
|
1
|
+
ka:
|
@@ -0,0 +1 @@
|
|
1
|
+
kaa:
|