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.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/assemblies/assembly_m_cell.rb +2 -0
  3. data/app/cells/decidim/assemblies/statistic/show.erb +9 -0
  4. data/app/cells/decidim/assemblies/statistic_cell.rb +20 -0
  5. data/app/cells/decidim/assemblies/statistics/show.erb +17 -0
  6. data/app/cells/decidim/assemblies/statistics_cell.rb +18 -0
  7. data/app/commands/decidim/assemblies/admin/create_assembly.rb +1 -0
  8. data/app/commands/decidim/assemblies/admin/create_assembly_admin.rb +12 -72
  9. data/app/commands/decidim/assemblies/admin/update_assembly.rb +2 -1
  10. data/app/controllers/decidim/assemblies/admin/imports_controller.rb +14 -0
  11. data/app/controllers/decidim/assemblies/admin/moderations/reports_controller.rb +14 -0
  12. data/app/controllers/decidim/assemblies/assemblies_controller.rb +1 -1
  13. data/app/events/decidim/role_assigned_to_assembly_event.rb +1 -1
  14. data/app/forms/decidim/assemblies/admin/assembly_form.rb +1 -0
  15. data/app/forms/decidim/assemblies/admin/assembly_user_role_form.rb +0 -5
  16. data/app/helpers/decidim/assemblies/admin/assemblies_admin_menu_helper.rb +15 -0
  17. data/app/models/decidim/assembly.rb +3 -3
  18. data/app/presenters/decidim/assemblies/admin_log/assemblies_type_presenter.rb +2 -2
  19. data/app/presenters/decidim/assemblies/admin_log/assembly_member_presenter.rb +2 -2
  20. data/app/presenters/decidim/assemblies/admin_log/assembly_presenter.rb +2 -2
  21. data/app/presenters/decidim/assemblies/admin_log/assembly_user_role_presenter.rb +2 -2
  22. data/app/presenters/decidim/assemblies/assembly_stats_presenter.rb +35 -25
  23. data/app/queries/decidim/assemblies/organization_assemblies.rb +1 -1
  24. data/app/queries/decidim/assemblies/organization_published_assemblies.rb +1 -1
  25. data/app/serializers/decidim/assemblies/assembly_serializer.rb +1 -0
  26. data/app/views/decidim/assemblies/admin/assemblies/_form.html.erb +4 -0
  27. data/app/views/decidim/assemblies/admin/assemblies/index.html.erb +11 -1
  28. data/app/views/decidim/assemblies/assemblies/show.html.erb +1 -1
  29. data/app/views/layouts/decidim/admin/assemblies.html.erb +2 -20
  30. data/app/views/layouts/decidim/admin/assembly.html.erb +2 -1
  31. data/config/locales/ar.yml +0 -1
  32. data/config/locales/ca.yml +5 -5
  33. data/config/locales/cs.yml +25 -16
  34. data/config/locales/de.yml +65 -53
  35. data/config/locales/el.yml +0 -4
  36. data/config/locales/en.yml +12 -3
  37. data/config/locales/es-MX.yml +3 -4
  38. data/config/locales/es-PY.yml +3 -4
  39. data/config/locales/es.yml +3 -4
  40. data/config/locales/eu.yml +0 -1
  41. data/config/locales/fi-plain.yml +15 -3
  42. data/config/locales/fi.yml +18 -6
  43. data/config/locales/fr-CA.yml +12 -3
  44. data/config/locales/fr.yml +13 -4
  45. data/config/locales/gl.yml +37 -17
  46. data/config/locales/hu.yml +0 -4
  47. data/config/locales/id-ID.yml +0 -1
  48. data/config/locales/is-IS.yml +22 -1
  49. data/config/locales/it.yml +6 -4
  50. data/config/locales/ja.yml +6 -4
  51. data/config/locales/lv.yml +0 -4
  52. data/config/locales/nl.yml +17 -5
  53. data/config/locales/no.yml +10 -11
  54. data/config/locales/pl.yml +15 -3
  55. data/config/locales/pt-BR.yml +0 -1
  56. data/config/locales/pt.yml +0 -4
  57. data/config/locales/ro-RO.yml +14 -4
  58. data/config/locales/ru.yml +0 -1
  59. data/config/locales/si-LK.yml +1 -0
  60. data/config/locales/sk.yml +0 -3
  61. data/config/locales/sl.yml +0 -1
  62. data/config/locales/sr-CS.yml +0 -3
  63. data/config/locales/sv.yml +2 -5
  64. data/config/locales/sw-KE.yml +1 -0
  65. data/config/locales/tr-TR.yml +223 -153
  66. data/config/locales/uk.yml +0 -1
  67. data/config/locales/zh-CN.yml +0 -4
  68. data/db/migrate/20210204152393_add_weight_field_to_assembly.rb +7 -0
  69. data/lib/decidim/api/assemblies_type_type.rb +16 -0
  70. data/lib/decidim/api/assembly_member_type.rb +28 -0
  71. data/lib/decidim/api/assembly_type.rb +64 -0
  72. data/lib/decidim/assemblies.rb +1 -0
  73. data/lib/decidim/assemblies/admin_engine.rb +31 -1
  74. data/lib/decidim/assemblies/api.rb +9 -0
  75. data/lib/decidim/assemblies/engine.rb +3 -5
  76. data/lib/decidim/assemblies/participatory_space.rb +38 -38
  77. data/lib/decidim/assemblies/query_extensions.rb +39 -20
  78. data/lib/decidim/assemblies/test/factories.rb +5 -4
  79. data/lib/decidim/assemblies/version.rb +1 -1
  80. metadata +29 -19
  81. data/app/types/decidim/assemblies/assemblies_type_type.rb +0 -17
  82. data/app/types/decidim/assemblies/assembly_member_type.rb +0 -29
  83. data/app/types/decidim/assemblies/assembly_type.rb +0 -67
  84. data/app/views/decidim/assemblies/assemblies/_statistics.html.erb +0 -10
@@ -9,7 +9,7 @@ module Decidim
9
9
  end
10
10
 
11
11
  def query
12
- Decidim::Assembly.where(organization: @organization)
12
+ Decidim::Assembly.where(organization: @organization).order(weight: :asc)
13
13
  end
14
14
  end
15
15
  end
@@ -14,7 +14,7 @@ module Decidim
14
14
  OrganizationAssemblies.new(@organization),
15
15
  PublishedAssemblies.new,
16
16
  VisibleAssemblies.new(@user)
17
- ).query
17
+ ).query.order(weight: :asc)
18
18
  end
19
19
  end
20
20
  end
@@ -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,
@@ -14,6 +14,10 @@
14
14
  <%= form.translated :text_field, :subtitle %>
15
15
  </div>
16
16
 
17
+ <div class="row column">
18
+ <%= form.number_field :weight %>
19
+ </div>
20
+
17
21
  <div class="row">
18
22
  <div class="columns xlarge-6 slug">
19
23
  <%= form.text_field :slug %>
@@ -65,7 +65,7 @@
65
65
  <% end %>
66
66
  </td>
67
67
  <td>
68
- <%= l(assembly.creation_date, format: :decidim_short) if assembly.creation_date %>
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>
@@ -214,7 +214,7 @@ edit_link(
214
214
  </div>
215
215
 
216
216
  <% if current_participatory_space.show_statistics? %>
217
- <%= render partial: "statistics" %>
217
+ <%= cell "decidim/assemblies/statistics", stats.collection %>
218
218
  <% end %>
219
219
  </div>
220
220
 
@@ -1,23 +1,5 @@
1
- <% content_for :secondary_nav do %>
2
- <div class="secondary-nav secondary-nav--subnav">
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 %>
@@ -353,7 +353,6 @@ ar:
353
353
  comments_count: تعليقات
354
354
  debates_count: مناقشات
355
355
  endorsements_count: موافقات
356
- headline: نشاط
357
356
  meetings_count: اجتماعات
358
357
  orders_count: تأييدات
359
358
  pages_count: صفحات
@@ -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:
@@ -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 účasti
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: Titulky
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: Sestavy
78
- many: Sestavy
79
- other: Sestavy
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: Veřejnost
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: Sestavy
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: Sestavy
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 člena %{resource_name} z typu shromáždění %{space_name}"
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: Účast
330
+ participatory: Účastnický
327
331
  working_group: Pracovní skupina
328
332
  content_blocks:
329
333
  highlighted_assemblies:
330
- name: Zvýrazněné sestavy
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: Veřejnost
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: Účastník
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 participace
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
- headline: Aktivita
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: Přihlaste se k vytvoření účtu na platformě
459
+ register_title: Zaregistrujte se pro vytvoření účtu
451
460
  participatory_processes:
452
461
  pages:
453
462
  home:
@@ -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: Montageart
7
- assembly_type_other: Montageart andere
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: Schlussdatum Grund
12
+ closing_date_reason: Schlussdatums Grund
11
13
  composition: Zusammensetzung
12
14
  copy_categories: Kategorien kopieren
13
- copy_components: Kopieren Sie Komponenten
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: Montageart
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: Elternversammlung
37
+ parent_id: Haupt Versammlung
36
38
  participatory_processes_ids: Ähnliche Beteiligungsprozesse
37
- participatory_scope: Was ist entschieden?
38
- participatory_structure: Wie ist es entschieden?
39
+ participatory_scope: Was wird entschieden?
40
+ participatory_structure: Wie wird es entschieden?
39
41
  private_space: Privatsphäre
40
- promoted: Gefördert
41
- published_at: Veröffentlicht unter
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: Versammlung
77
- other: Baugruppen
80
+ one: Gre­mi­um
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: Neue Montage
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: Privatgelände
99
- public: Öffentlichkeit
102
+ private: Privat
103
+ public: Öffentlich
100
104
  published: Veröffentlicht
101
105
  new:
102
106
  create: Erstellen
103
- title: Neue Montage
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: Anlagen
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: Privatgelände
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} erstellt die %{resource_name} Assembly"
238
- publish: "%{user_name} veröffentlichte das Gremium %{resource_name}"
239
- unpublish: "%{user_name} unveröffentlicht die %{resource_name} Assembly"
240
- update: "%{user_name} aktualisierte die %{resource_name} Assembly"
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} erstellt das %{resource_name} Mitglied in der %{space_name} Assembly"
243
- delete: "%{user_name} entfernte das Mitglied %{resource_name} aus dem Gremium %{space_name}"
244
- update: "%{user_name} hat das %{resource_name} Mitglied in der %{space_name} Assembly aktualisiert"
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} aktualisierte die Versammlungseinstellungen"
250
+ update: "%{user_name} hat die Gremieneinstellungen aktualisiert"
247
251
  assembly_type:
248
- create: "%{user_name} erstellte den Versammlungstyp %{resource_name}"
249
- delete: "%{user_name} entfernte das Mitglied %{resource_name} aus dem Versammlungstyp %{space_name}"
250
- publish: "%{user_name} veröffentlichte den Versammlungstyp %{resource_name}"
251
- unpublish: "%{user_name} unveröffentlichte den Versammlungstyp %{resource_name}"
252
- update: "%{user_name} aktualisierte den Versammlungstyp %{resource_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} lud %{resource_name} zur %{space_name} Versammlung ein"
255
- delete: "%{user_name} entfernte den Benutzer %{resource_name} von der %{space_name} Assembly"
256
- update: "%{user_name} hat die Rolle von %{resource_name} in der %{space_name} Assembly geändert"
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 Montagetyp
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 Baugruppen
328
+ name: Hervorgehobene Gremien
322
329
  created_by:
323
330
  city_council: Stadtrat
324
331
  others: Andere
325
- public: Öffentlichkeit
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: 'Show:'
339
+ help: 'Anzeigen:'
333
340
  others: Andere
334
341
  participatory: Partizipativ
335
342
  working_group: Arbeitsgruppe
336
343
  index:
337
- title: Baugruppen
344
+ title: Gremien
338
345
  last_activity:
339
- new_assembly: Neue Montage
346
+ new_assembly: Neues Gremium
340
347
  pages:
341
348
  home:
342
349
  highlighted_assemblies:
343
- active_assemblies: Aktive Baugruppen
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 Baugruppen anzeigen
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: Baugruppen
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: Baugruppen
386
+ assemblies_count: Gremien
380
387
  comments_count: Bemerkungen
381
388
  debates_count: Debatten
382
389
  endorsements_count: Empfehlungen
383
- headline: Aktivität
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 der Versammlung <a href="%{resource_url}">%{resource_name}</a> hat Sie als Mitglied eingeladen.
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 der Versammlung %{resource_name} eingeladen!
410
- notification_title: Sie wurden als Mitglied der Versammlung <a href="%{resource_path}">%{resource_name}</a> registriert. Gehen Sie zur <a href="%{resource_path}">Versammlungsseite</a>, um daran teilzunehmen!
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 „%{resource_title} ausgewählt.
414
- email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein %{role} der Versammlung „%{resource_title} sind.
415
- email_subject: Sie wurden als %{role} für „%{resource_title} ausgewählt.
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: Registrieren Sie sich, um ein Konto auf der Plattform zu erstellen
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} Gremium"
477
+ one: "%{count} Gremien"
466
478
  other: "%{count} Gremien"
467
479
  promoted_assembly:
468
480
  more_info: Mehr Informationen