decidim-assemblies 0.29.0 → 0.29.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/decidim/assemblies/admin/assemblies_controller.rb +19 -4
- data/app/controllers/decidim/assemblies/admin/assembly_landing_page_content_blocks_controller.rb +6 -0
- data/app/forms/decidim/assemblies/admin/assembly_form.rb +8 -8
- data/app/models/decidim/assembly.rb +5 -0
- data/app/permissions/decidim/assemblies/permissions.rb +1 -1
- data/app/presenters/decidim/assemblies/assembly_presenter.rb +2 -2
- data/app/views/decidim/assemblies/admin/assemblies/index.html.erb +2 -2
- data/app/views/layouts/decidim/admin/assemblies.html.erb +1 -1
- data/config/locales/ar.yml +8 -7
- data/config/locales/bn-BD.yml +1 -0
- data/config/locales/bs-BA.yml +44 -0
- data/config/locales/ca.yml +6 -6
- data/config/locales/cs.yml +2 -2
- data/config/locales/de.yml +17 -17
- data/config/locales/es-MX.yml +4 -4
- data/config/locales/es-PY.yml +4 -4
- data/config/locales/es.yml +4 -4
- data/config/locales/eu.yml +46 -46
- data/config/locales/fi-plain.yml +5 -5
- data/config/locales/fi.yml +9 -9
- data/config/locales/fr-CA.yml +5 -5
- data/config/locales/fr.yml +5 -5
- data/config/locales/ga-IE.yml +2 -0
- data/config/locales/gl.yml +4 -2
- data/config/locales/he-IL.yml +169 -0
- data/config/locales/hu.yml +1 -1
- data/config/locales/id-ID.yml +5 -0
- data/config/locales/is-IS.yml +5 -5
- data/config/locales/it.yml +5 -3
- data/config/locales/ja.yml +1 -1
- data/config/locales/ko.yml +1 -8
- data/config/locales/lb.yml +9 -5
- data/config/locales/lt.yml +2 -2
- data/config/locales/lv.yml +5 -0
- data/config/locales/nl.yml +5 -3
- data/config/locales/no.yml +2 -0
- data/config/locales/pl.yml +2 -2
- data/config/locales/pt.yml +3 -1
- data/config/locales/ro-RO.yml +6 -2
- data/config/locales/ru.yml +6 -6
- data/config/locales/sk.yml +18 -0
- data/config/locales/sl.yml +15 -0
- data/config/locales/sq-AL.yml +3 -3
- data/config/locales/sv.yml +19 -19
- data/config/locales/tr-TR.yml +4 -4
- data/config/locales/uk.yml +5 -5
- data/config/locales/zh-CN.yml +5 -0
- data/config/locales/zh-TW.yml +1 -1
- data/decidim-assemblies.gemspec +1 -1
- data/lib/decidim/assemblies/version.rb +1 -1
- metadata +15 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b74ba273556ca0e94a759cbd5113716342eba68ac7f4ec0b259ae563167b3fb8
|
4
|
+
data.tar.gz: 9e44b00be96f1fe4c7a22558cea599aff5c40a681f1d506fae075cc00ed15fa1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae74d4d6e9ca6b7e1b50793ad96902846ae0cae14077cfded2e60fe85872c33c132d64c6e4a70d676fe430e3496facfaacfab77dd97fd9474dab5b19829d5ca1
|
7
|
+
data.tar.gz: 0fcb0bf1dcef6daec9b9f7d2c535a4733de1ca7b961ff56ced152cc68313a28e030e63e5331c0a6b51e448b6da2f0e39549308bc8baf894524fa230438038a48
|
@@ -17,13 +17,13 @@ module Decidim
|
|
17
17
|
end
|
18
18
|
|
19
19
|
def new
|
20
|
-
enforce_permission_to :create, :assembly
|
20
|
+
enforce_permission_to :create, :assembly, assembly: parent_assembly
|
21
21
|
@form = form(AssemblyForm).instance
|
22
22
|
@form.parent_id = params[:parent_id]
|
23
23
|
end
|
24
24
|
|
25
25
|
def create
|
26
|
-
enforce_permission_to :create, :assembly
|
26
|
+
enforce_permission_to :create, :assembly, assembly: parent_assembly
|
27
27
|
@form = form(AssemblyForm).from_params(params)
|
28
28
|
|
29
29
|
CreateAssembly.call(@form) do
|
@@ -66,7 +66,7 @@ module Decidim
|
|
66
66
|
end
|
67
67
|
|
68
68
|
def copy
|
69
|
-
enforce_permission_to :create, :assembly
|
69
|
+
enforce_permission_to :create, :assembly, assembly: collection.find_by(id: params[:parent_id])
|
70
70
|
end
|
71
71
|
|
72
72
|
private
|
@@ -84,7 +84,22 @@ module Decidim
|
|
84
84
|
alias current_participatory_space current_assembly
|
85
85
|
|
86
86
|
def parent_assembly
|
87
|
-
@parent_assembly ||= collection.find_by(id:
|
87
|
+
@parent_assembly ||= collection.find_by(id: parent_assembly_id)
|
88
|
+
end
|
89
|
+
|
90
|
+
def parent_assembly_id
|
91
|
+
# Return the parent_id from Ransack parameters if it exists
|
92
|
+
return ransack_params[:parent_id_eq] if ransack_params[:parent_id_eq].present?
|
93
|
+
|
94
|
+
# If the assembly parameter is present, return its parent_id
|
95
|
+
return assembly_parent_id if params[:assembly].present?
|
96
|
+
|
97
|
+
# Otherwise, return the parent_id from the params hash
|
98
|
+
return params[:parent_id]
|
99
|
+
end
|
100
|
+
|
101
|
+
def assembly_parent_id
|
102
|
+
params[:assembly][:parent_id]
|
88
103
|
end
|
89
104
|
|
90
105
|
def assembly_params
|
data/app/controllers/decidim/assemblies/admin/assembly_landing_page_content_blocks_controller.rb
CHANGED
@@ -10,6 +10,8 @@ module Decidim
|
|
10
10
|
|
11
11
|
layout "decidim/admin/assemblies"
|
12
12
|
|
13
|
+
helper_method :parent_assembly
|
14
|
+
|
13
15
|
private
|
14
16
|
|
15
17
|
def content_block_scope
|
@@ -29,6 +31,10 @@ module Decidim
|
|
29
31
|
def resource_landing_page_content_block_path
|
30
32
|
assembly_landing_page_content_block_path(scoped_resource, params[:id])
|
31
33
|
end
|
34
|
+
|
35
|
+
def parent_assembly
|
36
|
+
scoped_resource.parent
|
37
|
+
end
|
32
38
|
end
|
33
39
|
end
|
34
40
|
end
|
@@ -14,23 +14,23 @@ module Decidim
|
|
14
14
|
|
15
15
|
mimic :assembly
|
16
16
|
|
17
|
-
translatable_attribute :composition,
|
18
|
-
translatable_attribute :closing_date_reason,
|
17
|
+
translatable_attribute :composition, Decidim::Attributes::RichText
|
18
|
+
translatable_attribute :closing_date_reason, Decidim::Attributes::RichText
|
19
19
|
translatable_attribute :created_by_other, String
|
20
|
-
translatable_attribute :description,
|
20
|
+
translatable_attribute :description, Decidim::Attributes::RichText
|
21
21
|
translatable_attribute :developer_group, String
|
22
|
-
translatable_attribute :internal_organisation,
|
22
|
+
translatable_attribute :internal_organisation, Decidim::Attributes::RichText
|
23
23
|
translatable_attribute :local_area, String
|
24
24
|
translatable_attribute :meta_scope, String
|
25
25
|
translatable_attribute :participatory_scope, String
|
26
26
|
translatable_attribute :participatory_structure, String
|
27
|
-
translatable_attribute :purpose_of_action,
|
28
|
-
translatable_attribute :short_description,
|
29
|
-
translatable_attribute :special_features,
|
27
|
+
translatable_attribute :purpose_of_action, Decidim::Attributes::RichText
|
28
|
+
translatable_attribute :short_description, Decidim::Attributes::RichText
|
29
|
+
translatable_attribute :special_features, Decidim::Attributes::RichText
|
30
30
|
translatable_attribute :subtitle, String
|
31
31
|
translatable_attribute :target, String
|
32
32
|
translatable_attribute :title, String
|
33
|
-
translatable_attribute :announcement,
|
33
|
+
translatable_attribute :announcement, Decidim::Attributes::RichText
|
34
34
|
|
35
35
|
attribute :created_by, String
|
36
36
|
attribute :facebook_handler, String
|
@@ -122,6 +122,11 @@ module Decidim
|
|
122
122
|
Decidim::Assemblies::AdminLog::AssemblyPresenter
|
123
123
|
end
|
124
124
|
|
125
|
+
# This is a overwrite for Decidim::ParticipatorySpaceResourceable.visible?
|
126
|
+
def visible?
|
127
|
+
published? && (!private_space? || (private_space? && is_transparent?))
|
128
|
+
end
|
129
|
+
|
125
130
|
def hashtag
|
126
131
|
attributes["hashtag"].to_s.delete("#")
|
127
132
|
end
|
@@ -176,7 +176,7 @@ module Decidim
|
|
176
176
|
return unless permission_action.action == :create &&
|
177
177
|
permission_action.subject == :assembly
|
178
178
|
|
179
|
-
toggle_allow(user.admin? || admin_assembly?
|
179
|
+
toggle_allow(user.admin? || admin_assembly?)
|
180
180
|
end
|
181
181
|
|
182
182
|
def user_can_export_assembly?
|
@@ -6,11 +6,11 @@ module Decidim
|
|
6
6
|
include Decidim::TranslationsHelper
|
7
7
|
|
8
8
|
def hero_image_url
|
9
|
-
assembly.attached_uploader(:hero_image).url
|
9
|
+
assembly.attached_uploader(:hero_image).url
|
10
10
|
end
|
11
11
|
|
12
12
|
def banner_image_url
|
13
|
-
assembly.attached_uploader(:banner_image).url
|
13
|
+
assembly.attached_uploader(:banner_image).url
|
14
14
|
end
|
15
15
|
|
16
16
|
def area_name
|
@@ -77,7 +77,7 @@
|
|
77
77
|
<% else %>
|
78
78
|
<span class="action-space icon"></span>
|
79
79
|
<% end %>
|
80
|
-
<% if assembly.children.count.positive? || allowed_to?(:
|
80
|
+
<% if assembly.children.count.positive? || allowed_to?(:read, :assembly, assembly:) %>
|
81
81
|
<%= icon_link_to "government-line",
|
82
82
|
url_for(query_params_with(parent_id_eq: assembly.id)),
|
83
83
|
t("decidim.admin.titles.assemblies"),
|
@@ -85,7 +85,7 @@
|
|
85
85
|
<% else %>
|
86
86
|
<span class="action-space icon"></span>
|
87
87
|
<% end %>
|
88
|
-
|
88
|
+
<% if allowed_to? :copy, :assembly, assembly: assembly, assembly: parent_assembly %>
|
89
89
|
<%= icon_link_to "file-copy-line", new_assembly_copy_path(assembly), t("actions.duplicate", scope: "decidim.admin"), class: "action-icon--copy" %>
|
90
90
|
<% else %>
|
91
91
|
<span class="action-space icon"></span>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<% content_for :breadcrumb_context_menu do %>
|
2
2
|
<div class="process-title-content-breadcrumb-container-right">
|
3
|
-
<% if allowed_to? :create, :assembly %>
|
3
|
+
<% if allowed_to? :create, :assembly, assembly: parent_assembly %>
|
4
4
|
<% link = defined?(parent_assembly) ? new_assembly_path(parent_id: parent_assembly&.id) : new_assembly_path %>
|
5
5
|
<%= link_to link, class: "button button__sm button__transparent process-title-content-breadcrumb-container-right-link" do %>
|
6
6
|
<%= icon "add-line", class: "w-4 h-4" %>
|
data/config/locales/ar.yml
CHANGED
@@ -48,7 +48,7 @@ ar:
|
|
48
48
|
promoted: سلط الضوء
|
49
49
|
published_at: نشرت في
|
50
50
|
purpose_of_action: الغرض من العمل
|
51
|
-
scope_id:
|
51
|
+
scope_id: النطاق
|
52
52
|
scopes_enabled: النطاقات المُفعّلَة
|
53
53
|
short_description: وصف قصير
|
54
54
|
slug: سبيكة العنوان الشبكي
|
@@ -187,7 +187,7 @@ ar:
|
|
187
187
|
success: تم تحديث المشرف على هذه الجمعية بنجاح.
|
188
188
|
filters:
|
189
189
|
decidim_assemblies_type_id_eq:
|
190
|
-
label: نوع
|
190
|
+
label: نوع التجمع
|
191
191
|
menu:
|
192
192
|
assemblies: الجمعيات
|
193
193
|
assemblies_submenu:
|
@@ -199,7 +199,7 @@ ar:
|
|
199
199
|
categories: الفئات
|
200
200
|
components: المكونات
|
201
201
|
moderations: الإعتدال
|
202
|
-
assemblies_types:
|
202
|
+
assemblies_types: أنواع التجمّعات
|
203
203
|
models:
|
204
204
|
assemblies_types:
|
205
205
|
fields:
|
@@ -207,6 +207,7 @@ ar:
|
|
207
207
|
title: العنوان
|
208
208
|
assembly:
|
209
209
|
fields:
|
210
|
+
actions: الإجراءات
|
210
211
|
created_at: تاريخ الإنشاء
|
211
212
|
private: خاص
|
212
213
|
promoted: سلط الضوء
|
@@ -218,7 +219,7 @@ ar:
|
|
218
219
|
ceased_date: تاريخ التوقف
|
219
220
|
designation_date: تاريخ التعيين
|
220
221
|
full_name: الاسم
|
221
|
-
position:
|
222
|
+
position: الموقع
|
222
223
|
name: عضو
|
223
224
|
positions:
|
224
225
|
other: آخر
|
@@ -313,9 +314,9 @@ ar:
|
|
313
314
|
commission: اللجنة
|
314
315
|
consultative_advisory: استشاري / الاستشارية
|
315
316
|
executive: تنفيذية
|
316
|
-
government:
|
317
|
+
government: الحكومية
|
317
318
|
others: أخرى
|
318
|
-
participatory:
|
319
|
+
participatory: التشاركية
|
319
320
|
working_group: فريق العمل
|
320
321
|
content_blocks:
|
321
322
|
children_assemblies:
|
@@ -345,7 +346,7 @@ ar:
|
|
345
346
|
member_of:
|
346
347
|
member_of: عضو في
|
347
348
|
show:
|
348
|
-
assembly_type: نوع
|
349
|
+
assembly_type: نوع التجمع
|
349
350
|
duration: المدة الزمنية
|
350
351
|
private_space: هذه جمعية خاصة
|
351
352
|
social_networks_title: زيارة التجمع على
|
@@ -0,0 +1 @@
|
|
1
|
+
bn:
|
@@ -0,0 +1,44 @@
|
|
1
|
+
---
|
2
|
+
bs:
|
3
|
+
decidim:
|
4
|
+
admin:
|
5
|
+
actions:
|
6
|
+
new_assembly_type: Novi tip veća
|
7
|
+
assemblies_types:
|
8
|
+
create:
|
9
|
+
error: Nastao je problem pri stvaranju novog tipa veća.
|
10
|
+
success: Tip veća uspešno stvoren.
|
11
|
+
destroy:
|
12
|
+
success: Tip veća uspešno obrisan.
|
13
|
+
new:
|
14
|
+
title: Novi tip veća
|
15
|
+
update:
|
16
|
+
error: Nastao je problem pri ažuriranju ovog tipa veća.
|
17
|
+
success: Tip veća uspešno ažuriran.
|
18
|
+
menu:
|
19
|
+
assemblies_types: Tipovi veća
|
20
|
+
models:
|
21
|
+
assembly_user_role:
|
22
|
+
roles:
|
23
|
+
valuator: Procenjivač
|
24
|
+
titles:
|
25
|
+
assemblies_types: Tipovi veća
|
26
|
+
admin_log:
|
27
|
+
assembly_type:
|
28
|
+
create: "%{user_name} je stvorio tip veća %{resource_name}"
|
29
|
+
publish: "%{user_name} je objavio tip veća %{resource_name}"
|
30
|
+
unpublish: "%{user_name} je odustao od objavljivanja tipa veća %{resource_name}"
|
31
|
+
update: "%{user_name} je ažurirao tip veća %{resource_name}"
|
32
|
+
events:
|
33
|
+
assemblies:
|
34
|
+
create_assembly_member:
|
35
|
+
email_subject: Pozvani ste da postanete član veća %{resource_name}!
|
36
|
+
assembly:
|
37
|
+
role_assigned:
|
38
|
+
email_intro: Imenovani ste na funkciju %{role} veća %{resource_title}.
|
39
|
+
email_outro: Dobili ste ovo obaveštenje zbog toga što ste %{role} veća %{resource_title}.
|
40
|
+
email_subject: Imenovani ste na funkciju %{role} %{resource_title}.
|
41
|
+
log:
|
42
|
+
value_types:
|
43
|
+
assembly_type_presenter:
|
44
|
+
not_found: 'Ovaj tip veća nije pronađen u bazi podataka (ID: %{id})'
|
data/config/locales/ca.yml
CHANGED
@@ -153,7 +153,7 @@ ca:
|
|
153
153
|
success: El membre per a aquesta assemblea s'ha eliminat correctament.
|
154
154
|
edit:
|
155
155
|
title: Actualitzar membre de l'assemblea
|
156
|
-
update:
|
156
|
+
update: Actualitzar
|
157
157
|
index:
|
158
158
|
assembly_members_title: Membres de l'assemblea
|
159
159
|
new:
|
@@ -206,7 +206,7 @@ ca:
|
|
206
206
|
attachments: Adjunts
|
207
207
|
categories: Categories
|
208
208
|
components: Components
|
209
|
-
info:
|
209
|
+
info: Quant a aquesta assemblea
|
210
210
|
landing_page: Pàgina d'inici
|
211
211
|
moderations: Moderacions
|
212
212
|
private_users: Participants privades
|
@@ -338,23 +338,23 @@ ca:
|
|
338
338
|
participatory_scope: Què es decideix
|
339
339
|
participatory_structure: Com es decideix
|
340
340
|
target: Qui participa
|
341
|
-
title:
|
341
|
+
title: Quant a aquesta assemblea
|
342
342
|
filters:
|
343
343
|
names:
|
344
344
|
all: Totes
|
345
345
|
type: Tipus
|
346
346
|
show:
|
347
|
-
title:
|
347
|
+
title: Quant a aquesta assemblea
|
348
348
|
assembly_members:
|
349
349
|
index:
|
350
350
|
members: Membres
|
351
351
|
assembly_types:
|
352
352
|
commission: Comissió
|
353
353
|
consultative_advisory: Consultiva / Assessora
|
354
|
-
executive:
|
354
|
+
executive: Executiu
|
355
355
|
government: Govern
|
356
356
|
others: Altres
|
357
|
-
participatory:
|
357
|
+
participatory: Participatiu
|
358
358
|
working_group: Grup de treball
|
359
359
|
content_blocks:
|
360
360
|
children_assemblies:
|
data/config/locales/cs.yml
CHANGED
@@ -3,7 +3,7 @@ cs:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
assemblies_type:
|
6
|
-
title:
|
6
|
+
title: Titul
|
7
7
|
assembly:
|
8
8
|
announcement: Oznámení
|
9
9
|
area_id: Oblast
|
@@ -356,7 +356,7 @@ cs:
|
|
356
356
|
members: Členové
|
357
357
|
assembly_types:
|
358
358
|
commission: Komise
|
359
|
-
consultative_advisory:
|
359
|
+
consultative_advisory: Poradní / poradní
|
360
360
|
executive: Výkonný
|
361
361
|
government: Vládní
|
362
362
|
others: Ostatní
|
data/config/locales/de.yml
CHANGED
@@ -10,15 +10,15 @@ de:
|
|
10
10
|
assembly_type: Versammlungstyp
|
11
11
|
assembly_type_other: Sonstiger Versammlungstyp
|
12
12
|
banner_image: Banner-Bild
|
13
|
-
closing_date:
|
14
|
-
closing_date_reason:
|
13
|
+
closing_date: Auflösungsdatum
|
14
|
+
closing_date_reason: Grund der Auflösung
|
15
15
|
composition: Zusammensetzung
|
16
16
|
copy_categories: Kategorien kopieren
|
17
17
|
copy_components: Komponenten kopieren
|
18
18
|
copy_features: Funktionen kopieren
|
19
19
|
created_by: Erstellt von
|
20
20
|
created_by_other: Erstellt von anderen
|
21
|
-
creation_date:
|
21
|
+
creation_date: Gründungsdatum
|
22
22
|
decidim_area_id: Bereich
|
23
23
|
decidim_assemblies_type_id: Versammlungstyp
|
24
24
|
decidim_scope_id: Umfang
|
@@ -26,7 +26,7 @@ de:
|
|
26
26
|
developer_group: Promoter-Gruppe
|
27
27
|
document: Dokument
|
28
28
|
domain: Domain
|
29
|
-
duration:
|
29
|
+
duration: Aktiv bis
|
30
30
|
facebook: Facebook
|
31
31
|
github: GitHub
|
32
32
|
hashtag: Hashtag
|
@@ -34,7 +34,7 @@ de:
|
|
34
34
|
import_attachments: Anhänge importieren
|
35
35
|
import_categories: Kategorien importieren
|
36
36
|
import_components: Komponenten importieren
|
37
|
-
included_at: Inbegriffen
|
37
|
+
included_at: Inbegriffen in
|
38
38
|
instagram: Instagram
|
39
39
|
internal_organisation: Interne Organisation
|
40
40
|
is_transparent: Ist transparent
|
@@ -47,7 +47,7 @@ de:
|
|
47
47
|
private_space: Privatsphäre
|
48
48
|
promoted: Hervorgehoben
|
49
49
|
published_at: Veröffentlicht am
|
50
|
-
purpose_of_action:
|
50
|
+
purpose_of_action: Handlungszweck
|
51
51
|
scope_id: Umfang
|
52
52
|
scopes_enabled: Bereiche aktiviert
|
53
53
|
short_description: Kurze Beschreibung
|
@@ -282,11 +282,11 @@ de:
|
|
282
282
|
assemblies:
|
283
283
|
form:
|
284
284
|
announcement_help: Der Text, den Sie hier eingeben, wird dem Benutzer direkt unter den Gremien-Informationen angezeigt.
|
285
|
-
duration:
|
286
|
-
duration_help: Wenn die Dauer
|
285
|
+
duration: Aktiv bis
|
286
|
+
duration_help: Wenn die Dauer dieses Gremiums begrenzt ist, dann wählen Sie hier das Enddatum aus. Andernfalls wird das Datum als unbestimmt angezeigt.
|
287
287
|
filters: Filter
|
288
288
|
images: Bilder
|
289
|
-
included_at_help: Wählen Sie das Datum aus, an dem dieses Gremium
|
289
|
+
included_at_help: Wählen Sie das Datum aus, an dem dieses Gremium zur Plattform hinzugefügt wurde. Das Datum muss nicht zwingend mit dem Gründungsdatum übereinstimmen.
|
290
290
|
metadata: Metadaten
|
291
291
|
other: Andere
|
292
292
|
select_a_created_by: Wählen Sie eine erstellt von aus
|
@@ -330,8 +330,8 @@ de:
|
|
330
330
|
creation_date: Erstellungsdatum
|
331
331
|
data: Gremiendaten
|
332
332
|
developer_group: Gruppe der Unterstützenden
|
333
|
-
duration:
|
334
|
-
included_at:
|
333
|
+
duration: Aktiv bis
|
334
|
+
included_at: Hinzugefügt am
|
335
335
|
indefinite_duration: Unbestimmt
|
336
336
|
local_area: Gebiet der Organisation
|
337
337
|
meta_scope: Bereich
|
@@ -350,11 +350,11 @@ de:
|
|
350
350
|
members: Mitglieder
|
351
351
|
assembly_types:
|
352
352
|
commission: Kommission
|
353
|
-
consultative_advisory:
|
354
|
-
executive:
|
353
|
+
consultative_advisory: Beratung / Beratung
|
354
|
+
executive: Executive
|
355
355
|
government: Regierung
|
356
356
|
others: Andere
|
357
|
-
participatory:
|
357
|
+
participatory: Partizipativ
|
358
358
|
working_group: Arbeitsgruppe
|
359
359
|
content_blocks:
|
360
360
|
children_assemblies:
|
@@ -394,8 +394,8 @@ de:
|
|
394
394
|
member_of:
|
395
395
|
member_of: Mitglied von
|
396
396
|
show:
|
397
|
-
assembly_type:
|
398
|
-
duration:
|
397
|
+
assembly_type: Versammlungstyp
|
398
|
+
duration: Aktiv bis
|
399
399
|
private_space: Dies ist eine private Versammlung
|
400
400
|
social_networks_title: Gremium besuchen unter
|
401
401
|
assembly_members:
|
@@ -409,7 +409,7 @@ de:
|
|
409
409
|
email_intro: Ein Administrator des Gremiums <a href="%{resource_url}">%{resource_name}</a> hat Sie als Mitglied eingeladen.
|
410
410
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie zu einem Gremium eingeladen wurden. Gehen Sie zur <a href="%{resource_url}">Gremiumsseite</a>, um mitzumachen!
|
411
411
|
email_subject: Sie wurden als Mitglied des Gremiums %{resource_name} eingeladen!
|
412
|
-
notification_title: Sie wurden als Mitglied des Gremiums <a href="%{resource_path}">%{resource_name}</a>
|
412
|
+
notification_title: Sie wurden als Mitglied des Gremiums <a href="%{resource_path}">%{resource_name}</a> eingetragen. Gehen Sie zur <a href="%{resource_path}">Gremiumsseite</a>, um mitzuwirken!
|
413
413
|
assembly:
|
414
414
|
role_assigned:
|
415
415
|
email_intro: Sie wurden als %{role} für die Versammlung "%{resource_title}" ausgewählt.
|
data/config/locales/es-MX.yml
CHANGED
@@ -193,7 +193,7 @@ es-MX:
|
|
193
193
|
'false': No cesada
|
194
194
|
'true': Cesada
|
195
195
|
decidim_assemblies_type_id_eq:
|
196
|
-
label: Tipo de
|
196
|
+
label: Tipo de montaje
|
197
197
|
search_placeholder:
|
198
198
|
full_name_or_user_name_or_user_nickname_cont: Buscar por nombre o alias
|
199
199
|
menu:
|
@@ -211,7 +211,7 @@ es-MX:
|
|
211
211
|
moderations: Moderaciones
|
212
212
|
private_users: Participantes privadas
|
213
213
|
see_assembly: Ver la asamblea
|
214
|
-
assemblies_types:
|
214
|
+
assemblies_types: Tipo de asamblea
|
215
215
|
models:
|
216
216
|
assemblies_types:
|
217
217
|
fields:
|
@@ -350,7 +350,7 @@ es-MX:
|
|
350
350
|
members: Miembros
|
351
351
|
assembly_types:
|
352
352
|
commission: Comisión
|
353
|
-
consultative_advisory: Consultivo /
|
353
|
+
consultative_advisory: Consultivo / Asesoramiento
|
354
354
|
executive: Ejecutivo
|
355
355
|
government: Gobierno
|
356
356
|
others: Otros
|
@@ -394,7 +394,7 @@ es-MX:
|
|
394
394
|
member_of:
|
395
395
|
member_of: Miembro de
|
396
396
|
show:
|
397
|
-
assembly_type: Tipo de
|
397
|
+
assembly_type: Tipo de montaje
|
398
398
|
duration: Duración
|
399
399
|
private_space: Esta es una asamblea privada
|
400
400
|
social_networks_title: Visita la asamblea en
|
data/config/locales/es-PY.yml
CHANGED
@@ -193,7 +193,7 @@ es-PY:
|
|
193
193
|
'false': No cesada
|
194
194
|
'true': Cesada
|
195
195
|
decidim_assemblies_type_id_eq:
|
196
|
-
label: Tipo de
|
196
|
+
label: Tipo de montaje
|
197
197
|
search_placeholder:
|
198
198
|
full_name_or_user_name_or_user_nickname_cont: Buscar por nombre o alias
|
199
199
|
menu:
|
@@ -211,7 +211,7 @@ es-PY:
|
|
211
211
|
moderations: Moderaciones
|
212
212
|
private_users: Participantes privadas
|
213
213
|
see_assembly: Ver la asamblea
|
214
|
-
assemblies_types:
|
214
|
+
assemblies_types: Tipo de asamblea
|
215
215
|
models:
|
216
216
|
assemblies_types:
|
217
217
|
fields:
|
@@ -350,7 +350,7 @@ es-PY:
|
|
350
350
|
members: Miembros
|
351
351
|
assembly_types:
|
352
352
|
commission: Comisión
|
353
|
-
consultative_advisory: Consultivo /
|
353
|
+
consultative_advisory: Consultivo / Asesoramiento
|
354
354
|
executive: Ejecutivo
|
355
355
|
government: Gobierno
|
356
356
|
others: Otros
|
@@ -394,7 +394,7 @@ es-PY:
|
|
394
394
|
member_of:
|
395
395
|
member_of: Miembro de
|
396
396
|
show:
|
397
|
-
assembly_type: Tipo de
|
397
|
+
assembly_type: Tipo de montaje
|
398
398
|
duration: Duración
|
399
399
|
private_space: Esta es una asamblea privada
|
400
400
|
social_networks_title: Visita la asamblea en
|
data/config/locales/es.yml
CHANGED
@@ -211,7 +211,7 @@ es:
|
|
211
211
|
moderations: Moderaciones
|
212
212
|
private_users: Participantes privadas
|
213
213
|
see_assembly: Ver la asamblea
|
214
|
-
assemblies_types:
|
214
|
+
assemblies_types: Tipo de asamblea
|
215
215
|
models:
|
216
216
|
assemblies_types:
|
217
217
|
fields:
|
@@ -351,10 +351,10 @@ es:
|
|
351
351
|
assembly_types:
|
352
352
|
commission: Comisión
|
353
353
|
consultative_advisory: Consultiva / Asesora
|
354
|
-
executive:
|
354
|
+
executive: Ejecutivo
|
355
355
|
government: Gobierno
|
356
356
|
others: Otros
|
357
|
-
participatory:
|
357
|
+
participatory: Participativo
|
358
358
|
working_group: Grupo de trabajo
|
359
359
|
content_blocks:
|
360
360
|
children_assemblies:
|
@@ -394,7 +394,7 @@ es:
|
|
394
394
|
member_of:
|
395
395
|
member_of: Miembro de
|
396
396
|
show:
|
397
|
-
assembly_type: Tipo de
|
397
|
+
assembly_type: Tipo de asamblea
|
398
398
|
duration: Duración
|
399
399
|
private_space: Esta es una asamblea privada
|
400
400
|
social_networks_title: Visita la asamblea en
|