decidim-assemblies 0.23.0 → 0.24.0.rc1
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/assemblies/assembly_m_cell.rb +2 -0
- data/app/cells/decidim/assemblies/statistic/show.erb +9 -0
- data/app/cells/decidim/assemblies/statistic_cell.rb +20 -0
- data/app/cells/decidim/assemblies/statistics/show.erb +17 -0
- data/app/cells/decidim/assemblies/statistics_cell.rb +18 -0
- data/app/commands/decidim/assemblies/admin/create_assembly.rb +1 -0
- data/app/commands/decidim/assemblies/admin/create_assembly_admin.rb +12 -72
- data/app/commands/decidim/assemblies/admin/update_assembly.rb +2 -1
- data/app/controllers/decidim/assemblies/admin/imports_controller.rb +14 -0
- data/app/controllers/decidim/assemblies/admin/moderations/reports_controller.rb +14 -0
- data/app/controllers/decidim/assemblies/assemblies_controller.rb +1 -1
- data/app/events/decidim/role_assigned_to_assembly_event.rb +1 -1
- data/app/forms/decidim/assemblies/admin/assembly_form.rb +1 -0
- data/app/forms/decidim/assemblies/admin/assembly_user_role_form.rb +0 -5
- data/app/helpers/decidim/assemblies/admin/assemblies_admin_menu_helper.rb +15 -0
- data/app/models/decidim/assembly.rb +3 -3
- data/app/presenters/decidim/assemblies/admin_log/assemblies_type_presenter.rb +2 -2
- data/app/presenters/decidim/assemblies/admin_log/assembly_member_presenter.rb +2 -2
- data/app/presenters/decidim/assemblies/admin_log/assembly_presenter.rb +2 -2
- data/app/presenters/decidim/assemblies/admin_log/assembly_user_role_presenter.rb +2 -2
- data/app/presenters/decidim/assemblies/assembly_stats_presenter.rb +35 -25
- data/app/queries/decidim/assemblies/organization_assemblies.rb +1 -1
- data/app/queries/decidim/assemblies/organization_published_assemblies.rb +1 -1
- data/app/serializers/decidim/assemblies/assembly_serializer.rb +1 -0
- data/app/views/decidim/assemblies/admin/assemblies/_form.html.erb +4 -0
- data/app/views/decidim/assemblies/admin/assemblies/index.html.erb +11 -1
- data/app/views/decidim/assemblies/assemblies/show.html.erb +1 -1
- data/app/views/layouts/decidim/admin/assemblies.html.erb +2 -20
- data/app/views/layouts/decidim/admin/assembly.html.erb +2 -1
- data/config/locales/ar.yml +0 -1
- data/config/locales/ca.yml +5 -5
- data/config/locales/cs.yml +25 -16
- data/config/locales/de.yml +65 -53
- data/config/locales/el.yml +0 -4
- data/config/locales/en.yml +12 -3
- data/config/locales/es-MX.yml +3 -4
- data/config/locales/es-PY.yml +3 -4
- data/config/locales/es.yml +3 -4
- data/config/locales/eu.yml +0 -1
- data/config/locales/fi-plain.yml +15 -3
- data/config/locales/fi.yml +18 -6
- data/config/locales/fr-CA.yml +12 -3
- data/config/locales/fr.yml +13 -4
- data/config/locales/gl.yml +37 -17
- data/config/locales/hu.yml +0 -4
- data/config/locales/id-ID.yml +0 -1
- data/config/locales/is-IS.yml +22 -1
- data/config/locales/it.yml +6 -4
- data/config/locales/ja.yml +6 -4
- data/config/locales/lv.yml +0 -4
- data/config/locales/nl.yml +17 -5
- data/config/locales/no.yml +10 -11
- data/config/locales/pl.yml +15 -3
- data/config/locales/pt-BR.yml +0 -1
- data/config/locales/pt.yml +0 -4
- data/config/locales/ro-RO.yml +14 -4
- data/config/locales/ru.yml +0 -1
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +0 -3
- data/config/locales/sl.yml +0 -1
- data/config/locales/sr-CS.yml +0 -3
- data/config/locales/sv.yml +2 -5
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/tr-TR.yml +223 -153
- data/config/locales/uk.yml +0 -1
- data/config/locales/zh-CN.yml +0 -4
- data/db/migrate/20210204152393_add_weight_field_to_assembly.rb +7 -0
- data/lib/decidim/api/assemblies_type_type.rb +16 -0
- data/lib/decidim/api/assembly_member_type.rb +28 -0
- data/lib/decidim/api/assembly_type.rb +64 -0
- data/lib/decidim/assemblies.rb +1 -0
- data/lib/decidim/assemblies/admin_engine.rb +31 -1
- data/lib/decidim/assemblies/api.rb +9 -0
- data/lib/decidim/assemblies/engine.rb +3 -5
- data/lib/decidim/assemblies/participatory_space.rb +38 -38
- data/lib/decidim/assemblies/query_extensions.rb +39 -20
- data/lib/decidim/assemblies/test/factories.rb +5 -4
- data/lib/decidim/assemblies/version.rb +1 -1
- metadata +29 -19
- data/app/types/decidim/assemblies/assemblies_type_type.rb +0 -17
- data/app/types/decidim/assemblies/assembly_member_type.rb +0 -29
- data/app/types/decidim/assemblies/assembly_type.rb +0 -67
- data/app/views/decidim/assemblies/assemblies/_statistics.html.erb +0 -10
|
@@ -22,6 +22,7 @@ module Decidim
|
|
|
22
22
|
decidim_organization_id: assembly.decidim_organization_id,
|
|
23
23
|
title: assembly.title,
|
|
24
24
|
subtitle: assembly.subtitle,
|
|
25
|
+
weight: assembly.weight,
|
|
25
26
|
short_description: assembly.short_description,
|
|
26
27
|
description: assembly.description,
|
|
27
28
|
remote_hero_image_url: Decidim::Assemblies::AssemblyPresenter.new(assembly).hero_image_url,
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
<% end %>
|
|
66
66
|
</td>
|
|
67
67
|
<td>
|
|
68
|
-
<%= l(assembly.
|
|
68
|
+
<%= l(assembly.created_at, format: :short) %>
|
|
69
69
|
</td>
|
|
70
70
|
<td class="table-list__state">
|
|
71
71
|
<% if assembly.private_space? %>
|
|
@@ -84,14 +84,20 @@
|
|
|
84
84
|
<td class="table-list__actions">
|
|
85
85
|
<% if allowed_to? :create, :assembly, assembly: assembly %>
|
|
86
86
|
<%= icon_link_to "data-transfer-download", assembly_export_path(assembly), t("actions.export", scope: "decidim.admin"), method: :post, class: "action-icon--export" %>
|
|
87
|
+
<% else %>
|
|
88
|
+
<span class="action-space icon"></span>
|
|
87
89
|
<% end %>
|
|
88
90
|
|
|
89
91
|
<% if allowed_to? :create, :assembly, assembly: assembly %>
|
|
90
92
|
<%= icon_link_to "clipboard", new_assembly_copy_path(assembly), t("actions.duplicate", scope: "decidim.admin"), class: "action-icon--copy" %>
|
|
93
|
+
<% else %>
|
|
94
|
+
<span class="action-space icon"></span>
|
|
91
95
|
<% end %>
|
|
92
96
|
|
|
93
97
|
<% if allowed_to? :update, :assembly, assembly: assembly %>
|
|
94
98
|
<%= icon_link_to "pencil", edit_assembly_path(assembly), t("actions.configure", scope: "decidim.admin"), class: "action-icon--new" %>
|
|
99
|
+
<% else %>
|
|
100
|
+
<span class="action-space icon"></span>
|
|
95
101
|
<% end %>
|
|
96
102
|
|
|
97
103
|
<% if assembly.children.count.positive? || allowed_to?(:create, :assembly) %>
|
|
@@ -99,10 +105,14 @@
|
|
|
99
105
|
url_for(query_params_with(parent_id_eq: assembly.id)),
|
|
100
106
|
t("decidim.admin.titles.assemblies"),
|
|
101
107
|
class: "action-icon--dial #{'highlighted' if assembly.children.count.positive?}" %>
|
|
108
|
+
<% else %>
|
|
109
|
+
<span class="action-space icon"></span>
|
|
102
110
|
<% end %>
|
|
103
111
|
|
|
104
112
|
<% if allowed_to? :preview, :assembly, assembly: assembly %>
|
|
105
113
|
<%= icon_link_to "eye", decidim_assemblies.assembly_path(assembly), t("actions.preview", scope: "decidim.admin"), class: "action-icon--preview" %>
|
|
114
|
+
<% else %>
|
|
115
|
+
<span class="action-space icon"></span>
|
|
106
116
|
<% end %>
|
|
107
117
|
</td>
|
|
108
118
|
</tr>
|
|
@@ -1,23 +1,5 @@
|
|
|
1
|
-
<% content_for :
|
|
2
|
-
|
|
3
|
-
<ul>
|
|
4
|
-
<% if allowed_to?(:read, :assembly_list) %>
|
|
5
|
-
<li <% if is_active_link?(decidim_admin_assemblies.assemblies_path) %> class="is-active" <% end %>>
|
|
6
|
-
<%= aria_selected_link_to I18n.t("menu.assemblies", scope: "decidim.admin"), decidim_admin_assemblies.assemblies_path %>
|
|
7
|
-
</li>
|
|
8
|
-
<% end %>
|
|
9
|
-
<% if allowed_to?(:manage, :assemblies_type) %>
|
|
10
|
-
<li <% if is_active_link?(decidim_admin_assemblies.assemblies_types_path) %> class="is-active" <% end %>>
|
|
11
|
-
<%= aria_selected_link_to I18n.t("menu.assemblies_types", scope: "decidim.admin"), decidim_admin_assemblies.assemblies_types_path %>
|
|
12
|
-
</li>
|
|
13
|
-
<% end %>
|
|
14
|
-
<% if allowed_to?(:read, :assemblies_setting) %>
|
|
15
|
-
<li <% if is_active_link?(decidim_admin_assemblies.edit_assemblies_settings_path) %> class="is-active" <% end %>>
|
|
16
|
-
<%= aria_selected_link_to I18n.t("menu.assemblies_settings", scope: "decidim.admin"), decidim_admin_assemblies.edit_assemblies_settings_path %>
|
|
17
|
-
</li>
|
|
18
|
-
<% end %>
|
|
19
|
-
</ul>
|
|
20
|
-
</div>
|
|
1
|
+
<% content_for :sidebar_menu_nav do %>
|
|
2
|
+
<%= admin_assemblies_menu.render %>
|
|
21
3
|
<% end %>
|
|
22
4
|
|
|
23
5
|
<%= render "layouts/decidim/admin/application" do %>
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<ul id="components-list">
|
|
14
14
|
<% current_participatory_space.components.each do |component| %>
|
|
15
15
|
<% if component.manifest.admin_engine && user_role_config.component_is_accessible?(component.manifest_name) %>
|
|
16
|
-
<li <% if is_active_link?(manage_component_path(component)) || is_active_link?(decidim_admin_assemblies.edit_component_path(current_participatory_space, component)) || is_active_link?(decidim_admin_assemblies.edit_component_permissions_path(current_participatory_space, component)) %> class="is-active" <% end %>>
|
|
16
|
+
<li <% if is_active_link?(manage_component_path(component)) || is_active_link?(decidim_admin_assemblies.edit_component_path(current_participatory_space, component)) || is_active_link?(decidim_admin_assemblies.edit_component_permissions_path(current_participatory_space, component)) || participatory_space_active_link?(component) %> class="is-active" <% end %>>
|
|
17
17
|
<%= link_to manage_component_path(component) do %>
|
|
18
18
|
<%= translated_attribute component.name %>
|
|
19
19
|
<% if component.primary_stat.present? %>
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
<%= aria_selected_link_to t("moderations", scope: "decidim.admin.menu.assemblies_submenu"), decidim_admin_assemblies.moderations_path(current_participatory_space) %>
|
|
69
69
|
</li>
|
|
70
70
|
<% end %>
|
|
71
|
+
<%= Decidim::Admin.view_hooks.render(:admin_secondary_nav, deep_dup) %>
|
|
71
72
|
</ul>
|
|
72
73
|
</div>
|
|
73
74
|
<% end %>
|
data/config/locales/ar.yml
CHANGED
data/config/locales/ca.yml
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
ca:
|
|
2
2
|
activemodel:
|
|
3
3
|
attributes:
|
|
4
|
+
assemblies_setting:
|
|
5
|
+
enable_organization_chart: Habilitar organigrama
|
|
4
6
|
assembly:
|
|
5
7
|
area_id: Àrea
|
|
6
8
|
assembly_type: Tipus d'assemblea
|
|
@@ -34,7 +36,7 @@ ca:
|
|
|
34
36
|
meta_scope: Metadades d'àmbit
|
|
35
37
|
parent_id: Assemblea principal
|
|
36
38
|
participatory_processes_ids: Processos participatius relacionats
|
|
37
|
-
participatory_scope: Què es decideix
|
|
39
|
+
participatory_scope: Què es decideix?
|
|
38
40
|
participatory_structure: Com es decideix
|
|
39
41
|
private_space: Espai privat
|
|
40
42
|
promoted: Destacat
|
|
@@ -50,6 +52,7 @@ ca:
|
|
|
50
52
|
target: Qui participa
|
|
51
53
|
title: Títol
|
|
52
54
|
twitter: Twitter
|
|
55
|
+
weight: Pes
|
|
53
56
|
youtube: YouTube
|
|
54
57
|
assembly_member:
|
|
55
58
|
birthday: Aniversari
|
|
@@ -60,6 +63,7 @@ ca:
|
|
|
60
63
|
full_name: Nom complet
|
|
61
64
|
gender: Gènere
|
|
62
65
|
position: Posició
|
|
66
|
+
user_id: Usuària
|
|
63
67
|
assembly_user_role:
|
|
64
68
|
email: Correu electrònic
|
|
65
69
|
name: Nom
|
|
@@ -246,7 +250,6 @@ ca:
|
|
|
246
250
|
update: "%{user_name} ha actualitzat la configuració de les assemblees"
|
|
247
251
|
assembly_type:
|
|
248
252
|
create: "%{user_name} ha creat l'assemblea %{resource_name}"
|
|
249
|
-
delete: "%{user_name} ha eliminat el component %{resource_name} de l'espai %{space_name}"
|
|
250
253
|
publish: "%{user_name} ha publicat el tipus d'assemblea %{resource_name}"
|
|
251
254
|
unpublish: "%{user_name} ha despublicat el tipus d'assemblea %{resource_name}"
|
|
252
255
|
update: "%{user_name} ha actualitzat el tipus d'assemblea %{resource_name}"
|
|
@@ -383,7 +386,6 @@ ca:
|
|
|
383
386
|
comments_count: Comentaris
|
|
384
387
|
debates_count: Debats
|
|
385
388
|
endorsements_count: Adhesions
|
|
386
|
-
headline: Activitat
|
|
387
389
|
meetings_count: Trobades
|
|
388
390
|
orders_count: Suports
|
|
389
391
|
pages_count: Pàgines
|
|
@@ -440,8 +442,6 @@ ca:
|
|
|
440
442
|
home:
|
|
441
443
|
hero:
|
|
442
444
|
participate_title: Participa als processos de la plataforma
|
|
443
|
-
sub_hero:
|
|
444
|
-
register_title: Registra't per crear un compte a la plataforma
|
|
445
445
|
participatory_processes:
|
|
446
446
|
pages:
|
|
447
447
|
home:
|
data/config/locales/cs.yml
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
cs:
|
|
2
2
|
activemodel:
|
|
3
3
|
attributes:
|
|
4
|
+
assemblies_setting:
|
|
5
|
+
enable_organization_chart: Povolit schéma organizace
|
|
4
6
|
assembly:
|
|
5
7
|
area_id: Oblast
|
|
6
8
|
assembly_type: Typ shromáždění
|
|
@@ -33,7 +35,7 @@ cs:
|
|
|
33
35
|
local_area: Oblast organizace
|
|
34
36
|
meta_scope: Metadata Oblasti působnosti
|
|
35
37
|
parent_id: Nadřazené shromáždění
|
|
36
|
-
participatory_processes_ids: Související procesy
|
|
38
|
+
participatory_processes_ids: Související participativní procesy
|
|
37
39
|
participatory_scope: Co se rozhodlo
|
|
38
40
|
participatory_structure: Jak se to rozhoduje
|
|
39
41
|
private_space: Soukromý prostor
|
|
@@ -46,10 +48,11 @@ cs:
|
|
|
46
48
|
show_statistics: Zobrazit statistiky
|
|
47
49
|
slug: URL slug
|
|
48
50
|
special_features: Speciální funkce
|
|
49
|
-
subtitle:
|
|
51
|
+
subtitle: Podtitul
|
|
50
52
|
target: Kdo se účastní
|
|
51
53
|
title: Titul
|
|
52
54
|
twitter: Twitter
|
|
55
|
+
weight: Váha
|
|
53
56
|
youtube: Youtube
|
|
54
57
|
assembly_member:
|
|
55
58
|
birthday: Narozeniny
|
|
@@ -60,6 +63,7 @@ cs:
|
|
|
60
63
|
full_name: Celé jméno
|
|
61
64
|
gender: Rod
|
|
62
65
|
position: Pozice
|
|
66
|
+
user_id: Uživatel
|
|
63
67
|
assembly_user_role:
|
|
64
68
|
email: E-mail
|
|
65
69
|
name: název
|
|
@@ -74,9 +78,9 @@ cs:
|
|
|
74
78
|
models:
|
|
75
79
|
decidim/assembly:
|
|
76
80
|
one: Shromáždění
|
|
77
|
-
few:
|
|
78
|
-
many:
|
|
79
|
-
other:
|
|
81
|
+
few: Shromáždění
|
|
82
|
+
many: Shromáždění
|
|
83
|
+
other: Shromáždění
|
|
80
84
|
decidim/assembly_member:
|
|
81
85
|
one: Člen shromáždění
|
|
82
86
|
few: Členové shromáždění
|
|
@@ -102,7 +106,7 @@ cs:
|
|
|
102
106
|
index:
|
|
103
107
|
not_published: Není zveřejněno
|
|
104
108
|
private: Soukromé
|
|
105
|
-
public:
|
|
109
|
+
public: Veřejné
|
|
106
110
|
published: Publikováno
|
|
107
111
|
new:
|
|
108
112
|
create: Vytvořit
|
|
@@ -185,7 +189,7 @@ cs:
|
|
|
185
189
|
error: Při aktualizaci administrátora pro toto shromáždění došlo k chybě.
|
|
186
190
|
success: Administrátor úspěšně aktualizován pro toto shromáždění.
|
|
187
191
|
menu:
|
|
188
|
-
assemblies:
|
|
192
|
+
assemblies: Shromáždění
|
|
189
193
|
assemblies_settings: Nastavení
|
|
190
194
|
assemblies_submenu:
|
|
191
195
|
assembly_admins: Administrátoři shromáždění
|
|
@@ -236,7 +240,7 @@ cs:
|
|
|
236
240
|
moderator: Moderátor
|
|
237
241
|
valuator: Hodnotitel
|
|
238
242
|
titles:
|
|
239
|
-
assemblies:
|
|
243
|
+
assemblies: Shromáždění
|
|
240
244
|
assemblies_types: Typy shromáždění
|
|
241
245
|
admin_log:
|
|
242
246
|
assembly:
|
|
@@ -252,7 +256,7 @@ cs:
|
|
|
252
256
|
update: "%{user_name} aktualizoval nastavení Shromáždění"
|
|
253
257
|
assembly_type:
|
|
254
258
|
create: "%{user_name} vytvořil typ shromáždění %{resource_name}"
|
|
255
|
-
delete: "%{user_name} odstranil
|
|
259
|
+
delete: "%{user_name} odstranil typ shromáždění %{resource_name}"
|
|
256
260
|
publish: "%{user_name} publikoval typ shromáždění %{resource_name}"
|
|
257
261
|
unpublish: "%{user_name} zneveřejnil typ shromáždění %{resource_name}"
|
|
258
262
|
update: "%{user_name} aktualizoval typ shromáždění %{resource_name}"
|
|
@@ -323,15 +327,15 @@ cs:
|
|
|
323
327
|
executive: Výkonný
|
|
324
328
|
government: Vládní
|
|
325
329
|
others: Ostatní
|
|
326
|
-
participatory:
|
|
330
|
+
participatory: Účastnický
|
|
327
331
|
working_group: Pracovní skupina
|
|
328
332
|
content_blocks:
|
|
329
333
|
highlighted_assemblies:
|
|
330
|
-
name:
|
|
334
|
+
name: Zvýrazněná shromáždění
|
|
331
335
|
created_by:
|
|
332
336
|
city_council: Městská rada
|
|
333
337
|
others: Ostatní
|
|
334
|
-
public:
|
|
338
|
+
public: Veřejné
|
|
335
339
|
filter:
|
|
336
340
|
all: Všechny typy
|
|
337
341
|
commission: Komise
|
|
@@ -340,7 +344,7 @@ cs:
|
|
|
340
344
|
government: Vládní
|
|
341
345
|
help: 'Zobrazit:'
|
|
342
346
|
others: Ostatní
|
|
343
|
-
participatory:
|
|
347
|
+
participatory: Účastnický
|
|
344
348
|
working_group: Pracovní skupina
|
|
345
349
|
index:
|
|
346
350
|
title: Shromáždění
|
|
@@ -378,7 +382,7 @@ cs:
|
|
|
378
382
|
purpose_of_action: Účel akce
|
|
379
383
|
read_less: Číst méně
|
|
380
384
|
read_more: Číst více
|
|
381
|
-
related_participatory_processes: Související procesy
|
|
385
|
+
related_participatory_processes: Související participativní procesy
|
|
382
386
|
scope: Oblast působnosti
|
|
383
387
|
social_networks: Sociální sítě
|
|
384
388
|
social_networks_title: Sdílet toto shromáždění na
|
|
@@ -389,14 +393,19 @@ cs:
|
|
|
389
393
|
comments_count: Komentáře
|
|
390
394
|
debates_count: Debaty
|
|
391
395
|
endorsements_count: Schválení
|
|
392
|
-
|
|
396
|
+
followers_count: Sledující
|
|
397
|
+
headline: Statistiky
|
|
393
398
|
meetings_count: Setkání
|
|
399
|
+
no_stats: Zatím nejsou žádné statistiky.
|
|
394
400
|
orders_count: Hlasy
|
|
395
401
|
pages_count: Stránky
|
|
402
|
+
participants_count: Účastníci
|
|
396
403
|
posts_count: Příspěvky
|
|
404
|
+
processes_count: Procesy
|
|
397
405
|
projects_count: Projekty
|
|
398
406
|
proposals_count: Návrhy
|
|
399
407
|
results_count: Výsledky
|
|
408
|
+
supports_count: Podpory
|
|
400
409
|
surveys_count: Průzkumy
|
|
401
410
|
users_count: Účastníci
|
|
402
411
|
votes_count: Hlasy
|
|
@@ -447,7 +456,7 @@ cs:
|
|
|
447
456
|
hero:
|
|
448
457
|
participate_title: Účast na procesech platformy
|
|
449
458
|
sub_hero:
|
|
450
|
-
register_title:
|
|
459
|
+
register_title: Zaregistrujte se pro vytvoření účtu
|
|
451
460
|
participatory_processes:
|
|
452
461
|
pages:
|
|
453
462
|
home:
|
data/config/locales/de.yml
CHANGED
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
de:
|
|
2
2
|
activemodel:
|
|
3
3
|
attributes:
|
|
4
|
+
assemblies_setting:
|
|
5
|
+
enable_organization_chart: Organisationsdiagramm aktivieren
|
|
4
6
|
assembly:
|
|
5
7
|
area_id: Bereich
|
|
6
|
-
assembly_type:
|
|
7
|
-
assembly_type_other:
|
|
8
|
+
assembly_type: Versammlungstyp
|
|
9
|
+
assembly_type_other: Sonstiger Versammlungstyp
|
|
8
10
|
banner_image: Banner-Bild
|
|
9
11
|
closing_date: Einsendeschluss
|
|
10
|
-
closing_date_reason:
|
|
12
|
+
closing_date_reason: Schlussdatums Grund
|
|
11
13
|
composition: Zusammensetzung
|
|
12
14
|
copy_categories: Kategorien kopieren
|
|
13
|
-
copy_components:
|
|
15
|
+
copy_components: Komponenten kopieren
|
|
14
16
|
copy_features: Funktionen kopieren
|
|
15
17
|
created_by: Erstellt von
|
|
16
18
|
created_by_other: Erstellt von anderen
|
|
17
19
|
creation_date: Datum erstellt
|
|
18
20
|
decidim_area_id: Bereich
|
|
19
|
-
decidim_assemblies_type_id:
|
|
21
|
+
decidim_assemblies_type_id: Versammlungstyp
|
|
20
22
|
decidim_scope_id: Umfang
|
|
21
23
|
description: Beschreibung
|
|
22
24
|
developer_group: Promoter-Gruppe
|
|
@@ -32,13 +34,13 @@ de:
|
|
|
32
34
|
is_transparent: Ist transparent
|
|
33
35
|
local_area: Organisationsbereich
|
|
34
36
|
meta_scope: Bereichs-Metadaten
|
|
35
|
-
parent_id:
|
|
37
|
+
parent_id: Haupt Versammlung
|
|
36
38
|
participatory_processes_ids: Ähnliche Beteiligungsprozesse
|
|
37
|
-
participatory_scope: Was
|
|
38
|
-
participatory_structure: Wie
|
|
39
|
+
participatory_scope: Was wird entschieden?
|
|
40
|
+
participatory_structure: Wie wird es entschieden?
|
|
39
41
|
private_space: Privatsphäre
|
|
40
|
-
promoted:
|
|
41
|
-
published_at: Veröffentlicht
|
|
42
|
+
promoted: Hervorgehoben
|
|
43
|
+
published_at: Veröffentlicht am
|
|
42
44
|
purpose_of_action: Zweck der Aktion
|
|
43
45
|
scope_id: Umfang
|
|
44
46
|
scopes_enabled: Bereiche aktiviert
|
|
@@ -50,6 +52,7 @@ de:
|
|
|
50
52
|
target: Wer nimmt teil?
|
|
51
53
|
title: Titel
|
|
52
54
|
twitter: Twitter
|
|
55
|
+
weight: Gewicht
|
|
53
56
|
youtube: Youtube
|
|
54
57
|
assembly_member:
|
|
55
58
|
birthday: Geburtstag
|
|
@@ -60,6 +63,7 @@ de:
|
|
|
60
63
|
full_name: Vollständiger Name
|
|
61
64
|
gender: Geschlecht
|
|
62
65
|
position: Position
|
|
66
|
+
user_id: User
|
|
63
67
|
assembly_user_role:
|
|
64
68
|
email: Email
|
|
65
69
|
name: Name
|
|
@@ -73,8 +77,8 @@ de:
|
|
|
73
77
|
activerecord:
|
|
74
78
|
models:
|
|
75
79
|
decidim/assembly:
|
|
76
|
-
one:
|
|
77
|
-
other:
|
|
80
|
+
one: Gremium
|
|
81
|
+
other: Gremien
|
|
78
82
|
decidim/assembly_member:
|
|
79
83
|
one: Gremienmitglieder
|
|
80
84
|
other: Mitglieder der Versammlung
|
|
@@ -85,7 +89,7 @@ de:
|
|
|
85
89
|
admin:
|
|
86
90
|
actions:
|
|
87
91
|
import_assembly: Importieren
|
|
88
|
-
new_assembly:
|
|
92
|
+
new_assembly: Neues Gremium
|
|
89
93
|
new_assembly_type: Neuer Gremiumtyp
|
|
90
94
|
assemblies:
|
|
91
95
|
create:
|
|
@@ -95,12 +99,12 @@ de:
|
|
|
95
99
|
update: Aktualisieren
|
|
96
100
|
index:
|
|
97
101
|
not_published: Nicht veröffentlicht
|
|
98
|
-
private:
|
|
99
|
-
public:
|
|
102
|
+
private: Privat
|
|
103
|
+
public: Öffentlich
|
|
100
104
|
published: Veröffentlicht
|
|
101
105
|
new:
|
|
102
106
|
create: Erstellen
|
|
103
|
-
title:
|
|
107
|
+
title: Neues Gremium
|
|
104
108
|
update:
|
|
105
109
|
error: Beim Aktualisieren dieses Gremiums ist ein Fehler aufgetreten.
|
|
106
110
|
success: Das Gremium wurde erfolgreich aktualisiert.
|
|
@@ -186,7 +190,7 @@ de:
|
|
|
186
190
|
assembly_members: Mitglieder
|
|
187
191
|
attachment_collections: Ordner
|
|
188
192
|
attachment_files: Dateien
|
|
189
|
-
attachments:
|
|
193
|
+
attachments: Anhänge
|
|
190
194
|
categories: Kategorien
|
|
191
195
|
components: Komponenten
|
|
192
196
|
info: Info
|
|
@@ -201,7 +205,7 @@ de:
|
|
|
201
205
|
assembly:
|
|
202
206
|
fields:
|
|
203
207
|
created_at: Hergestellt in
|
|
204
|
-
private:
|
|
208
|
+
private: Privat
|
|
205
209
|
promoted: Hervorgehoben
|
|
206
210
|
published: Veröffentlicht
|
|
207
211
|
title: Titel
|
|
@@ -234,26 +238,26 @@ de:
|
|
|
234
238
|
assemblies_types: Versammlungstypen
|
|
235
239
|
admin_log:
|
|
236
240
|
assembly:
|
|
237
|
-
create: "%{user_name}
|
|
238
|
-
publish: "%{user_name}
|
|
239
|
-
unpublish: "%{user_name}
|
|
240
|
-
update: "%{user_name}
|
|
241
|
+
create: "%{user_name} hat das Gremium %{resource_name} erstellt"
|
|
242
|
+
publish: "%{user_name} hat das Gremium %{resource_name} veröffentlicht"
|
|
243
|
+
unpublish: "%{user_name} hat das Gremium %{resource_name} auf \"unveröffentlicht\" gesetzt"
|
|
244
|
+
update: "%{user_name} hat das Gremium %{resource_name} aktualisiert"
|
|
241
245
|
assembly_member:
|
|
242
|
-
create: "%{user_name}
|
|
243
|
-
delete: "%{user_name}
|
|
244
|
-
update: "%{user_name} hat das %{resource_name}
|
|
246
|
+
create: "%{user_name} hat das Mitglied %{resource_name} im Gremium %{space_name} erstellt"
|
|
247
|
+
delete: "%{user_name} hat das Mitglied %{resource_name} aus dem Gremium %{space_name} entfernt"
|
|
248
|
+
update: "%{user_name} hat das Mitglied %{resource_name} im Gremium %{space_name} aktualisiert"
|
|
245
249
|
assembly_setting:
|
|
246
|
-
update: "%{user_name}
|
|
250
|
+
update: "%{user_name} hat die Gremieneinstellungen aktualisiert"
|
|
247
251
|
assembly_type:
|
|
248
|
-
create: "%{user_name}
|
|
249
|
-
delete: "%{user_name}
|
|
250
|
-
publish: "%{user_name}
|
|
251
|
-
unpublish: "%{user_name}
|
|
252
|
-
update: "%{user_name}
|
|
252
|
+
create: "%{user_name} hat den Gremientyp %{resource_name} erstellt"
|
|
253
|
+
delete: "%{user_name} hat den Gremientyp %{resource_name} entfernt"
|
|
254
|
+
publish: "%{user_name} hat den Gremientyp %{resource_name} veröffentlicht"
|
|
255
|
+
unpublish: "%{user_name} hat den Gremientyp %{resource_name} auf \"unveröffentlicht\" gesetzt"
|
|
256
|
+
update: "%{user_name} hat den Gremientyp %{resource_name} aktualisiert"
|
|
253
257
|
assembly_user_role:
|
|
254
|
-
create: "%{user_name}
|
|
255
|
-
delete: "%{user_name}
|
|
256
|
-
update: "%{user_name} hat die Rolle von %{resource_name}
|
|
258
|
+
create: "%{user_name} hat %{resource_name} zum Gremium %{space_name} eingeladen"
|
|
259
|
+
delete: "%{user_name} hat %{resource_name} aus dem Gremium %{space_name} entfernt"
|
|
260
|
+
update: "%{user_name} hat die Rolle von %{resource_name} im Gremium %{space_name} geändert"
|
|
257
261
|
assemblies:
|
|
258
262
|
admin:
|
|
259
263
|
assemblies:
|
|
@@ -267,7 +271,7 @@ de:
|
|
|
267
271
|
other: Andere
|
|
268
272
|
select_a_created_by: Wählen Sie eine erstellt von aus
|
|
269
273
|
select_an_area: Wählen Sie einen Bereich
|
|
270
|
-
select_an_assembly_type: Wählen Sie einen
|
|
274
|
+
select_an_assembly_type: Wählen Sie einen Gremiumstyp
|
|
271
275
|
select_parent_assembly: Wählen Sie die übergeordnete Baugruppe aus
|
|
272
276
|
slug_help: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf diese Assembly verweisen. Akzeptiert nur Buchstaben, Zahlen und Bindestriche und muss mit einem Buchstaben beginnen. Beispiel: %{url}'
|
|
273
277
|
social_handlers: Sozial
|
|
@@ -305,6 +309,9 @@ de:
|
|
|
305
309
|
content_blocks:
|
|
306
310
|
highlighted_assemblies:
|
|
307
311
|
max_results: Maximale Anzahl der Elemente, die angezeigt werden sollen
|
|
312
|
+
new_import:
|
|
313
|
+
accepted_types:
|
|
314
|
+
json: JSON
|
|
308
315
|
assembly_members:
|
|
309
316
|
index:
|
|
310
317
|
members: Mitglieder
|
|
@@ -318,38 +325,38 @@ de:
|
|
|
318
325
|
working_group: Arbeitsgruppe
|
|
319
326
|
content_blocks:
|
|
320
327
|
highlighted_assemblies:
|
|
321
|
-
name: Hervorgehobene
|
|
328
|
+
name: Hervorgehobene Gremien
|
|
322
329
|
created_by:
|
|
323
330
|
city_council: Stadtrat
|
|
324
331
|
others: Andere
|
|
325
|
-
public:
|
|
332
|
+
public: Öffentlich
|
|
326
333
|
filter:
|
|
327
334
|
all: Alle Typen
|
|
328
335
|
commission: Kommission
|
|
329
336
|
consultative_advisory: Beratung / Beratung
|
|
330
337
|
executive: Executive
|
|
331
338
|
government: Regierung
|
|
332
|
-
help: '
|
|
339
|
+
help: 'Anzeigen:'
|
|
333
340
|
others: Andere
|
|
334
341
|
participatory: Partizipativ
|
|
335
342
|
working_group: Arbeitsgruppe
|
|
336
343
|
index:
|
|
337
|
-
title:
|
|
344
|
+
title: Gremien
|
|
338
345
|
last_activity:
|
|
339
|
-
new_assembly:
|
|
346
|
+
new_assembly: Neues Gremium
|
|
340
347
|
pages:
|
|
341
348
|
home:
|
|
342
349
|
highlighted_assemblies:
|
|
343
|
-
active_assemblies: Aktive
|
|
350
|
+
active_assemblies: Aktive Gremien
|
|
344
351
|
assemblies_button_title: Verknüpfung zu der Versammlungsseite mit einem Überblick aller Versammlungen
|
|
345
|
-
see_all_assemblies: Alle
|
|
352
|
+
see_all_assemblies: Alle Gremien anzeigen
|
|
346
353
|
user_profile:
|
|
347
354
|
member_of:
|
|
348
355
|
member_of: Mitglied von
|
|
349
356
|
show:
|
|
350
357
|
area: Bereich
|
|
351
358
|
assembly_type: Montageart
|
|
352
|
-
children:
|
|
359
|
+
children: Gremien
|
|
353
360
|
closing_date: Einsendeschluss
|
|
354
361
|
composition: Zusammensetzung
|
|
355
362
|
created_by: Erstellt von
|
|
@@ -376,18 +383,23 @@ de:
|
|
|
376
383
|
target: Wer nimmt teil?
|
|
377
384
|
statistics:
|
|
378
385
|
answers_count: Antworten
|
|
379
|
-
assemblies_count:
|
|
386
|
+
assemblies_count: Gremien
|
|
380
387
|
comments_count: Bemerkungen
|
|
381
388
|
debates_count: Debatten
|
|
382
389
|
endorsements_count: Empfehlungen
|
|
383
|
-
|
|
390
|
+
followers_count: Beobachter
|
|
391
|
+
headline: Statistiken
|
|
384
392
|
meetings_count: Meetings
|
|
393
|
+
no_stats: Noch keine Statistik vorhanden.
|
|
385
394
|
orders_count: Stimmen
|
|
386
395
|
pages_count: Seiten
|
|
396
|
+
participants_count: Teilnehmer
|
|
387
397
|
posts_count: Beiträge
|
|
398
|
+
processes_count: Prozesse
|
|
388
399
|
projects_count: Projekte
|
|
389
400
|
proposals_count: Vorschläge
|
|
390
401
|
results_count: Ergebnisse
|
|
402
|
+
supports_count: Unterstützungen
|
|
391
403
|
surveys_count: Umfragen
|
|
392
404
|
users_count: Teilnehmer
|
|
393
405
|
votes_count: Stimmen
|
|
@@ -404,15 +416,15 @@ de:
|
|
|
404
416
|
events:
|
|
405
417
|
assemblies:
|
|
406
418
|
create_assembly_member:
|
|
407
|
-
email_intro: Ein Administrator
|
|
419
|
+
email_intro: Ein Administrator des Gremiums <a href="%{resource_url}">%{resource_name}</a> hat Sie als Mitglied eingeladen.
|
|
408
420
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie zu einer Versammlung eingeladen wurden. Gehen Sie zur <a href="%{resource_path}">Versammlungsseite</a>, um daran teilzunehmen!
|
|
409
|
-
email_subject: Sie wurden als Mitglied
|
|
410
|
-
notification_title: Sie wurden als Mitglied
|
|
421
|
+
email_subject: Sie wurden als Mitglied des Gremiums %{resource_name} eingeladen!
|
|
422
|
+
notification_title: Sie wurden als Mitglied des Gremiums <a href="%{resource_path}">%{resource_name}</a> registriert. Gehen Sie zur <a href="%{resource_path}">Gremiumsseite</a>, um mitzuwirken!
|
|
411
423
|
assembly:
|
|
412
424
|
role_assigned:
|
|
413
|
-
email_intro: Sie wurden als %{role} für die Versammlung
|
|
414
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein %{role} der Versammlung
|
|
415
|
-
email_subject: Sie wurden als %{role} für
|
|
425
|
+
email_intro: Sie wurden als %{role} für die Versammlung "%{resource_title}" ausgewählt.
|
|
426
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein %{role} der Versammlung "%{resource_title}" sind.
|
|
427
|
+
email_subject: Sie wurden als %{role} für "%{resource_title}" ausgewählt.
|
|
416
428
|
notification_title: Sie wurden als %{role} für die Versammlung <a href="%{resource_url}">%{resource_title}</a> ausgewählt.
|
|
417
429
|
help:
|
|
418
430
|
participatory_spaces:
|
|
@@ -438,7 +450,7 @@ de:
|
|
|
438
450
|
hero:
|
|
439
451
|
participate_title: Nehmen Sie an den Prozessen der Plattform teil
|
|
440
452
|
sub_hero:
|
|
441
|
-
register_title:
|
|
453
|
+
register_title: Benutzerkonto registrieren
|
|
442
454
|
participatory_processes:
|
|
443
455
|
pages:
|
|
444
456
|
home:
|
|
@@ -462,7 +474,7 @@ de:
|
|
|
462
474
|
reset_chart: Zurücksetzen
|
|
463
475
|
order_by_assemblies:
|
|
464
476
|
assemblies:
|
|
465
|
-
one: "%{count}
|
|
477
|
+
one: "%{count} Gremien"
|
|
466
478
|
other: "%{count} Gremien"
|
|
467
479
|
promoted_assembly:
|
|
468
480
|
more_info: Mehr Informationen
|