decidim-accountability 0.27.9 → 0.28.0.rc4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/accountability/content_blocks/highlighted_results_cell.rb +3 -8
  3. data/app/cells/decidim/accountability/highlighted_results/show.erb +3 -1
  4. data/app/cells/decidim/accountability/highlighted_results_for_component/show.erb +19 -19
  5. data/app/cells/decidim/accountability/highlighted_results_for_component_cell.rb +29 -6
  6. data/app/cells/decidim/accountability/project/show.erb +11 -0
  7. data/app/cells/decidim/accountability/project/timeline.erb +22 -0
  8. data/app/cells/decidim/accountability/project_cell.rb +75 -0
  9. data/app/cells/decidim/accountability/result_activity_cell.rb +1 -4
  10. data/app/cells/decidim/accountability/result_card_cell.rb +21 -0
  11. data/app/cells/decidim/accountability/result_cell.rb +2 -2
  12. data/app/cells/decidim/accountability/result_l/extra_data.erb +3 -0
  13. data/app/cells/decidim/accountability/result_l_cell.rb +30 -0
  14. data/app/cells/decidim/accountability/result_metadata/project_aside.erb +6 -0
  15. data/app/cells/decidim/accountability/result_metadata/show_footer.erb +11 -0
  16. data/app/cells/decidim/accountability/result_metadata/versions.erb +1 -0
  17. data/app/cells/decidim/accountability/result_metadata_cell.rb +136 -0
  18. data/app/cells/decidim/accountability/results/show.erb +7 -0
  19. data/app/cells/decidim/accountability/results_cell.rb +14 -0
  20. data/app/cells/decidim/accountability/status/show.erb +9 -0
  21. data/app/cells/decidim/accountability/status/status.erb +16 -0
  22. data/app/cells/decidim/accountability/status_cell.rb +91 -0
  23. data/app/commands/decidim/accountability/admin/import_projects_to_accountability.rb +37 -0
  24. data/app/controllers/concerns/decidim/accountability/admin/filterable.rb +2 -2
  25. data/app/controllers/decidim/accountability/admin/import_results_controller.rb +18 -6
  26. data/app/controllers/decidim/accountability/admin/projects_import_controller.rb +31 -0
  27. data/app/controllers/decidim/accountability/admin/results_controller.rb +4 -5
  28. data/app/controllers/decidim/accountability/admin/statuses_controller.rb +3 -3
  29. data/app/controllers/decidim/accountability/admin/timeline_entries_controller.rb +3 -3
  30. data/app/controllers/decidim/accountability/results_controller.rb +20 -2
  31. data/app/events/decidim/accountability/proposal_linked_event.rb +18 -1
  32. data/app/events/decidim/accountability/result_progress_updated_event.rb +18 -2
  33. data/app/forms/decidim/accountability/admin/import_results_form.rb +22 -0
  34. data/app/forms/decidim/accountability/admin/result_import_projects_form.rb +51 -0
  35. data/app/helpers/decidim/accountability/admin/application_helper.rb +1 -0
  36. data/app/helpers/decidim/accountability/application_helper.rb +43 -2
  37. data/app/helpers/decidim/accountability/breadcrumb_helper.rb +10 -0
  38. data/app/jobs/decidim/accountability/admin/import_projects_job.rb +72 -0
  39. data/app/mailers/decidim/accountability/import_projects_mailer.rb +25 -0
  40. data/app/models/decidim/accountability/result.rb +1 -1
  41. data/app/packs/entrypoints/decidim_accountability.js +4 -1
  42. data/app/packs/entrypoints/decidim_accountability_admin_imports.js +3 -0
  43. data/app/packs/images/decidim/accountability/breadcrumb_arrow.svg +3 -0
  44. data/app/packs/src/decidim/accountability/admin/imports.js +15 -0
  45. data/app/packs/stylesheets/accountability.scss +169 -0
  46. data/app/permissions/decidim/accountability/admin/permissions.rb +17 -6
  47. data/app/presenters/decidim/accountability/admin_log/result_presenter.rb +2 -2
  48. data/app/presenters/decidim/accountability/admin_log/status_presenter.rb +2 -2
  49. data/app/presenters/decidim/accountability/admin_log/timeline_entry_presenter.rb +2 -2
  50. data/app/queries/decidim/accountability/metrics/results_metric_manage.rb +1 -1
  51. data/app/services/decidim/accountability/results_calculator.rb +1 -1
  52. data/app/services/decidim/accountability/results_csv_importer.rb +2 -2
  53. data/app/views/decidim/accountability/admin/import_results/new.html.erb +27 -23
  54. data/app/views/decidim/accountability/admin/projects_import/new.html.erb +45 -0
  55. data/app/views/decidim/accountability/admin/results/_form.html.erb +46 -46
  56. data/app/views/decidim/accountability/admin/results/edit.html.erb +18 -7
  57. data/app/views/decidim/accountability/admin/results/index.html.erb +102 -91
  58. data/app/views/decidim/accountability/admin/results/new.html.erb +18 -8
  59. data/app/views/decidim/accountability/admin/shared/_subnav.html.erb +1 -1
  60. data/app/views/decidim/accountability/admin/statuses/_form.html.erb +15 -17
  61. data/app/views/decidim/accountability/admin/statuses/edit.html.erb +16 -6
  62. data/app/views/decidim/accountability/admin/statuses/index.html.erb +33 -36
  63. data/app/views/decidim/accountability/admin/statuses/new.html.erb +16 -6
  64. data/app/views/decidim/accountability/admin/timeline_entries/_form.html.erb +12 -14
  65. data/app/views/decidim/accountability/admin/timeline_entries/edit.html.erb +17 -6
  66. data/app/views/decidim/accountability/admin/timeline_entries/index.html.erb +35 -34
  67. data/app/views/decidim/accountability/admin/timeline_entries/new.html.erb +17 -6
  68. data/app/views/decidim/accountability/import_projects_mailer/import.html.erb +2 -0
  69. data/app/views/decidim/accountability/results/_home_categories.html.erb +28 -73
  70. data/app/views/decidim/accountability/results/_linked_results.html.erb +3 -12
  71. data/app/views/decidim/accountability/results/_project.html.erb +29 -0
  72. data/app/views/decidim/accountability/results/_projects_aside.html.erb +40 -0
  73. data/app/views/decidim/accountability/results/_scope_filters.html.erb +27 -27
  74. data/app/views/decidim/accountability/results/_search.html.erb +15 -9
  75. data/app/views/decidim/accountability/results/_stats_box.html.erb +3 -3
  76. data/app/views/decidim/accountability/results/home.html.erb +34 -8
  77. data/app/views/decidim/accountability/results/index.html.erb +15 -15
  78. data/app/views/decidim/accountability/results/index.js.erb +3 -0
  79. data/app/views/decidim/accountability/results/show.html.erb +9 -10
  80. data/app/views/decidim/accountability/versions/show.html.erb +13 -10
  81. data/app/views/decidim/participatory_spaces/_result.html.erb +4 -4
  82. data/config/assets.rb +2 -2
  83. data/config/locales/ar.yml +23 -61
  84. data/config/locales/bg.yml +0 -96
  85. data/config/locales/ca.yml +54 -31
  86. data/config/locales/cs.yml +58 -29
  87. data/config/locales/da.yml +1 -36
  88. data/config/locales/de.yml +59 -36
  89. data/config/locales/el.yml +62 -29
  90. data/config/locales/en.yml +55 -31
  91. data/config/locales/es-MX.yml +52 -29
  92. data/config/locales/es-PY.yml +52 -29
  93. data/config/locales/es.yml +55 -32
  94. data/config/locales/eu.yml +53 -30
  95. data/config/locales/fi-plain.yml +51 -28
  96. data/config/locales/fi.yml +54 -31
  97. data/config/locales/fr-CA.yml +51 -28
  98. data/config/locales/fr.yml +52 -29
  99. data/config/locales/ga-IE.yml +0 -4
  100. data/config/locales/gl.yml +0 -41
  101. data/config/locales/hu.yml +41 -29
  102. data/config/locales/id-ID.yml +1 -30
  103. data/config/locales/is-IS.yml +0 -32
  104. data/config/locales/it.yml +0 -43
  105. data/config/locales/ja.yml +55 -39
  106. data/config/locales/kaa.yml +20 -1
  107. data/config/locales/ko.yml +0 -188
  108. data/config/locales/lb.yml +1 -42
  109. data/config/locales/lt.yml +60 -41
  110. data/config/locales/lv.yml +1 -36
  111. data/config/locales/nl.yml +0 -41
  112. data/config/locales/no.yml +8 -49
  113. data/config/locales/pl.yml +17 -61
  114. data/config/locales/pt-BR.yml +41 -29
  115. data/config/locales/pt.yml +0 -42
  116. data/config/locales/ro-RO.yml +39 -66
  117. data/config/locales/ru.yml +1 -30
  118. data/config/locales/si-LK.yml +0 -4
  119. data/config/locales/sk.yml +1 -40
  120. data/config/locales/sl.yml +0 -11
  121. data/config/locales/sq-AL.yml +82 -7
  122. data/config/locales/sr-CS.yml +1 -30
  123. data/config/locales/sv.yml +36 -51
  124. data/config/locales/th-TH.yml +0 -140
  125. data/config/locales/tr-TR.yml +9 -75
  126. data/config/locales/uk.yml +1 -28
  127. data/config/locales/zh-CN.yml +1 -36
  128. data/config/locales/zh-TW.yml +52 -43
  129. data/lib/decidim/accountability/admin_engine.rb +3 -2
  130. data/lib/decidim/accountability/component.rb +4 -99
  131. data/lib/decidim/accountability/engine.rb +9 -1
  132. data/lib/decidim/accountability/result_serializer.rb +1 -1
  133. data/lib/decidim/accountability/seeds.rb +115 -0
  134. data/lib/decidim/accountability/test/factories.rb +18 -29
  135. data/lib/decidim/accountability/version.rb +1 -1
  136. data/lib/decidim/api/result_type.rb +1 -0
  137. metadata +62 -51
  138. data/app/cells/decidim/accountability/content_blocks/highlighted_results/elements.erb +0 -5
  139. data/app/cells/decidim/accountability/content_blocks/highlighted_results/heading.erb +0 -1
  140. data/app/cells/decidim/accountability/result_m/data.erb +0 -23
  141. data/app/cells/decidim/accountability/result_m/footer.erb +0 -22
  142. data/app/cells/decidim/accountability/result_m/tags.erb +0 -1
  143. data/app/cells/decidim/accountability/result_m_cell.rb +0 -37
  144. data/app/events/decidim/accountability/base_result_event.rb +0 -29
  145. data/app/packs/stylesheets/decidim/accountability/_accountability.scss +0 -4
  146. data/app/packs/stylesheets/decidim/accountability/accountability/_cards.scss +0 -11
  147. data/app/packs/stylesheets/decidim/accountability/accountability/_categories.scss +0 -121
  148. data/app/packs/stylesheets/decidim/accountability/accountability/_lines_breadcrumb.scss +0 -37
  149. data/app/packs/stylesheets/decidim/accountability/accountability/_results.scss +0 -148
  150. data/app/views/decidim/accountability/admin/results/proposals_picker.html.erb +0 -1
  151. data/app/views/decidim/accountability/result_widgets/show.html.erb +0 -2
  152. data/app/views/decidim/accountability/results/_home_header.html.erb +0 -23
  153. data/app/views/decidim/accountability/results/_results_leaf.html.erb +0 -47
  154. data/app/views/decidim/accountability/results/_results_parent.html.erb +0 -32
  155. data/app/views/decidim/accountability/results/_show_leaf.html.erb +0 -81
  156. data/app/views/decidim/accountability/results/_show_parent.html.erb +0 -30
  157. data/app/views/decidim/accountability/results/_stats.html.erb +0 -15
  158. data/app/views/decidim/accountability/results/_timeline.html.erb +0 -30
  159. data/app/views/decidim/accountability/versions/index.html.erb +0 -12
  160. data/config/locales/he-IL.yml +0 -219
  161. data/decidim-accountability.gemspec +0 -38
@@ -8,6 +8,7 @@ cs:
8
8
  decidim_scope_id: Oblast působnosti
9
9
  description: Popis
10
10
  end_date: Datum ukončení
11
+ meetings_ids: Zahrnuté schůzky
11
12
  progress: Průběh
12
13
  project_ids: Zahrnuté projekty
13
14
  proposals: Zahrnuté návrhy
@@ -41,8 +42,11 @@ cs:
41
42
  confirm_destroy: Opravdu chcete smazat tento %{name}?
42
43
  destroy: Odstranit
43
44
  edit: Upravit
44
- import_csv: Importovat CSV
45
- new: Nový %{name}
45
+ import: Importovat projekty z jiné komponenty
46
+ import_csv: Importovat výsledky z CSV souboru
47
+ new_result: Nový výsledek
48
+ new_status: Nový status
49
+ new_timeline_entry: Nový záznam v časové ose
46
50
  preview: Náhled
47
51
  timeline_entries: Vývoj projektu
48
52
  title: Akce
@@ -75,23 +79,42 @@ cs:
75
79
  </ul>
76
80
  </li>
77
81
  </ol>
78
- title: Importovat výsledky z CSV
82
+ title: Importovat výsledky z CSV souboru
79
83
  imports:
80
84
  create:
81
- success: Soubor se začal importovat. Během několika následujících minut obdržíte e-mail s výsledkem importu
85
+ invalid: Při importu výsledků došlo k chybě.
86
+ success: Soubor se začal importovat. Během několika následujících minut obdržíte e-mail s výsledkem importu.
82
87
  models:
83
88
  result:
84
89
  name: Výsledek
85
90
  status:
86
91
  name: Stav
87
- timeline_entry:
88
- name: Záznam v harmonogramu
92
+ projects_import:
93
+ create:
94
+ invalid: Došlo k potížím při importu projektů do výsledků, postupujte prosím pečlivě podle pokynů a ujistěte se, že jste vybrali projekty pro realizaci.
95
+ new:
96
+ create: Importovat
97
+ import_all_selected_projects: Importovat všechny projekty vybrané pro realizaci
98
+ new_items:
99
+ one: 1 vybraný projekt bude importován
100
+ few: "%{count} vybrané projekty budou importovány"
101
+ many: "%{count} vybraných projektů bude importováno"
102
+ other: "%{count} vybraných projektů bude importováno"
103
+ no_components: V tomto participačním prostoru nejsou žádné složky rozpočtů pro import projektů do výsledků.
104
+ origin_component_id: Původ komponenty
105
+ select_component: Vybrat komponentu
106
+ success:
107
+ one: 1 projekt, který má být importován. Po dokončení budete upozorněni e-mailem.
108
+ few: "%{count} projekty, které mají být importovány. Po dokončení budete upozorněni e-mailem."
109
+ many: "%{count} projektů, které mají být importovány. Po dokončení budete upozorněni e-mailem."
110
+ other: "%{count} projektů, které mají být importovány. Po dokončení budete upozorněni e-mailem."
111
+ title: Importovat projekty z jiné komponenty
89
112
  results:
90
113
  create:
91
- invalid: Při vytváření tohoto výsledku došlo k problému
92
- success: Výsledek byl úspěšně vytvořen
114
+ invalid: Při vytváření tohoto výsledku nastal problém.
115
+ success: Výsledek byl úspěšně vytvořen.
93
116
  destroy:
94
- success: Výsledek byl úspěšně smazán
117
+ success: Výsledek byl úspěšně smazán.
95
118
  edit:
96
119
  title: Upravit výsledek
97
120
  update: Aktualizovat výsledek
@@ -101,17 +124,17 @@ cs:
101
124
  create: Vytvořit výsledek
102
125
  title: Nový výsledek
103
126
  update:
104
- invalid: Při aktualizaci tohoto výsledku došlo k problému
105
- success: Výsledek byl úspěšně aktualizován
127
+ invalid: Při aktualizaci tohoto výsledku došlo k chybě.
128
+ success: Výsledek byl úspěšně aktualizován.
106
129
  shared:
107
130
  subnav:
108
131
  statuses: Stavy
109
132
  statuses:
110
133
  create:
111
- invalid: Při vytváření tohoto stavu došlo k problému
112
- success: Stav byl úspěšně vytvořen
134
+ invalid: Při vytváření tohoto stavu došlo k chybě.
135
+ success: Stav byl úspěšně vytvořen.
113
136
  destroy:
114
- success: Stav byl úspěšně smazán
137
+ success: Stav byl úspěšně smazán.
115
138
  edit:
116
139
  title: Upravit stav
117
140
  update: Aktualizovat stav
@@ -121,14 +144,14 @@ cs:
121
144
  create: Vytvořit stav
122
145
  title: Nový stav
123
146
  update:
124
- invalid: Při aktualizaci tohoto stavu došlo k problému
125
- success: Stav byl úspěšně aktualizován
147
+ invalid: Při aktualizaci tohoto stavu došlo k chybě.
148
+ success: Stav byl úspěšně aktualizován.
126
149
  timeline_entries:
127
150
  create:
128
- invalid: Při vytváření této položky došlo k problému
129
- success: Položka byla úspěšně vytvořena
151
+ invalid: Při vytváření tohoto záznamu došlo k chybě.
152
+ success: Položka byla úspěšně vytvořena.
130
153
  destroy:
131
- success: Položka byla úspěšně smazána
154
+ success: Položka byla úspěšně smazána.
132
155
  edit:
133
156
  title: Upravit položku
134
157
  update: Aktualizovat položku
@@ -138,8 +161,8 @@ cs:
138
161
  create: Vytvořit položku
139
162
  title: Nová položka
140
163
  update:
141
- invalid: Došlo k problému při aktualizaci této položky
142
- success: Zápis byl úspěšně aktualizován
164
+ invalid: Při aktualizaci této položky došlo k problému.
165
+ success: Záznam byl úspěšně aktualizován.
143
166
  admin_log:
144
167
  result:
145
168
  create: "%{user_name} vytvořen výsledek %{resource_name} v %{space_name}"
@@ -158,18 +181,25 @@ cs:
158
181
  not_found: 'Nadřazený nebyl nalezen v databázi (ID: %{id})'
159
182
  content_blocks:
160
183
  highlighted_results:
161
- dates: Data
162
184
  results: Výsledky
163
- unspecified: Nespecifikováno
164
185
  import_mailer:
165
186
  import:
166
187
  errors: Chyby
167
- errors_present: Došlo k chybě při importu výsledků
188
+ errors_present: Při importu došlo k chybě.
168
189
  row_number: Řádek
169
190
  subject: Úspěšný import výsledků
170
191
  success: Úspěšný import výsledků. Výsledky můžete zkontrolovat v rozhraní administrace.
192
+ import_projects_mailer:
193
+ import:
194
+ added_projects:
195
+ one: Jeden výsledek byl importován z projektů.
196
+ few: "%{count} výsledky byly importovány z projektů."
197
+ many: "%{count} výsledků bylo importováno z projektů."
198
+ other: "%{count} výsledků bylo importováno z projektů."
199
+ subject: Úspěšný import projektů
200
+ success: Úspěšný import projektů do výsledků v komponentě %{component_name}. Výsledky si můžete prohlédnout v administračním rozhraní.
171
201
  last_activity:
172
- new_result_at_html: "<span>Nový výsledek v %{link}</span>"
202
+ new_result: 'Nový výsledek:'
173
203
  models:
174
204
  result:
175
205
  fields:
@@ -192,9 +222,6 @@ cs:
192
222
  fields:
193
223
  entry_date: Datum
194
224
  title: Název
195
- result_m:
196
- executed: Provedeno
197
- view: Zobrazit
198
225
  results:
199
226
  count:
200
227
  results_count:
@@ -204,14 +231,16 @@ cs:
204
231
  other: "%{count} výsledků"
205
232
  filters:
206
233
  all: Vše
207
- scopes: Oblasti působnosti
208
234
  home:
209
235
  categories_label: Kategorie
236
+ empty: Zatím nejsou žádné výsledky.
237
+ empty_filters: S těmito kritérii nejsou žádné výsledky.
210
238
  subcategories_label: Podkategorie
211
239
  home_header:
212
240
  global_status: Globální stav provedení
213
241
  nav_breadcrumb:
214
242
  global: Globální provedení
243
+ no_results: Nebyly nalezeny žádné projekty
215
244
  search:
216
245
  search: Hledat akce
217
246
  show:
@@ -36,8 +36,6 @@ da:
36
36
  confirm_destroy: Er du sikker på, at du vil slette dette %{name}?
37
37
  destroy: Slet
38
38
  edit: Rediger
39
- import_csv: Importér CSV
40
- new: Nyt %{name}
41
39
  preview: Eksempelvisning
42
40
  timeline_entries: Projektudvikling
43
41
  title: Handlinger
@@ -47,23 +45,12 @@ da:
47
45
  import_results:
48
46
  new:
49
47
  import: Import
50
- title: Importresultater fra CSV
51
- imports:
52
- create:
53
- success: Import af filen er begyndt. Du vil inden for de næste få minutter modtage en e-mail med resultatet af importen
54
48
  models:
55
49
  result:
56
50
  name: Resultat
57
51
  status:
58
52
  name: Status
59
- timeline_entry:
60
- name: Indførsel på tidslinje
61
53
  results:
62
- create:
63
- invalid: Der opstod et problem med oprettelsen af dette resultat
64
- success: Resultat oprettet
65
- destroy:
66
- success: Resultat slettet
67
54
  edit:
68
55
  title: Rediger resultat
69
56
  update: Opdater resultat
@@ -72,18 +59,10 @@ da:
72
59
  new:
73
60
  create: Opret resultat
74
61
  title: Nyt resultat
75
- update:
76
- invalid: Der opstod et problem med opdateringen af dette resultat
77
- success: Resultat opdateret
78
62
  shared:
79
63
  subnav:
80
64
  statuses: Statusser
81
65
  statuses:
82
- create:
83
- invalid: Der opstod et problem med oprettelsen af denne status
84
- success: Status oprettet
85
- destroy:
86
- success: Status slettet
87
66
  edit:
88
67
  title: Rediger status
89
68
  update: Opdater status
@@ -92,15 +71,7 @@ da:
92
71
  new:
93
72
  create: Opret status
94
73
  title: Ny status
95
- update:
96
- invalid: Der opstod et problem med oprettelsen af denne status
97
- success: Status opdateret
98
74
  timeline_entries:
99
- create:
100
- invalid: Der opstod et problem med at oprette dette indlæg
101
- success: Indlægget blev oprettet
102
- destroy:
103
- success: Indlægget blev slettet
104
75
  edit:
105
76
  title: Rediger Indlæg
106
77
  update: Opdater indlæg
@@ -109,9 +80,6 @@ da:
109
80
  new:
110
81
  create: Opret indlæg
111
82
  title: Nyt indlæg
112
- update:
113
- invalid: Der opstod et problem med at opdatere dette indlæg
114
- success: Indlæg opdateret
115
83
  admin_log:
116
84
  result:
117
85
  create: "%{user_name} oprettede resultat %{resource_name} i %{space_name}"
@@ -123,12 +91,9 @@ da:
123
91
  import_mailer:
124
92
  import:
125
93
  errors: Fejl
126
- errors_present: Der opstod et problem med at importere resultater
127
94
  row_number: Række
128
95
  subject: Succesfuld import af resultater
129
96
  success: Succesfuld import af resultater. Du kan gennemgå resultaterne i administrator interfacet.
130
- last_activity:
131
- new_result_at_html: "<span>Nyt resultat på %{link}</span>"
132
97
  models:
133
98
  result:
134
99
  fields:
@@ -153,7 +118,6 @@ da:
153
118
  other: "%{count} resultater"
154
119
  filters:
155
120
  all: Alle
156
- scopes: Områder
157
121
  home:
158
122
  categories_label: Kategorier
159
123
  subcategories_label: Underkategorier
@@ -167,6 +131,7 @@ da:
167
131
  stats:
168
132
  attendees: Mødedeltagere
169
133
  back_to_resource: Tilbage til resultater
134
+ comments: Kommentarer
170
135
  contributions: Bidrag
171
136
  last_edited_by: Sidst redigeret af
172
137
  last_updated_at: Senest opdateret den
@@ -8,6 +8,7 @@ de:
8
8
  decidim_scope_id: Umfang
9
9
  description: Beschreibung
10
10
  end_date: Enddatum
11
+ meetings_ids: Enthaltene Sitzungen
11
12
  progress: Fortschritt
12
13
  project_ids: Enthaltene Projekte
13
14
  proposals: Enthaltene Vorschläge
@@ -39,8 +40,11 @@ de:
39
40
  confirm_destroy: Sind Sie sicher, dass Sie diese %{name}löschen möchten?
40
41
  destroy: Löschen
41
42
  edit: Bearbeiten
42
- import_csv: CSV importieren
43
- new: Neu %{name}
43
+ import: Projekte aus einer anderen Komponente importieren
44
+ import_csv: Ergebnisse aus CSV importieren
45
+ new_result: Neues Ergebnis
46
+ new_status: Neuer Status
47
+ new_timeline_entry: Neuer Zeitachseneintrag
44
48
  preview: Vorschau
45
49
  timeline_entries: Projektentwicklung
46
50
  title: Aktionen
@@ -53,43 +57,58 @@ de:
53
57
  download_export: Export im CSV-Format herunterladen
54
58
  import: Importieren
55
59
  info: |
56
- <p>Wir empfehlen, dass Sie folgende Schritte befolgen:</p>
60
+ <p>Wir empfehlen, dass Sie die folgende Schritte befolgen:</p>
57
61
  <ol>
58
62
  <li><a href='%{link_new_status}' target='_blank'>Erstellen Sie den Status der Ergebnisse</a>, die Sie hinzufügen möchten</li>
59
63
  <li><a href='%{link_new_result}' target='_blank'>Erstellen Sie mindestens ein Ergebnis manuell</a> über das Admin-Backend bevor Sie die Importfunktion nutzen, damit Sie mit dem Format und den benötigten Eingaben vertraut sind.</li>
60
64
  <li>%{link_export_csv}</li>
61
- <li>Nehmen Sie Änderungen lokal vor. Sie können nur die folgenden Spalten des CSV ändern:
65
+ <li>Machen Sie Änderungen lokal. Sie können nur die folgenden Spalten des CSV ändern:
62
66
  <ul>
63
- <li><b>category/ID:</b> ID der Kategorie</li>
64
- <li><b>scope/ID:</b> ID des Themenbereichs</li>
65
- <li><b>parent/ID:</b> ID des übergeordneten Themenbereichs (für verwandte Ergebnisse). Optional</li>
67
+ <li><b>category/id:</b> ID der Kategorie</li>
68
+ <li><b>scope/id:</b> ID des Themenbereichs</li>
69
+ <li><b>parent/id:</b> ID des übergeordneten Themenbereichs (für verwandte Ergebnisse). Optional</li>
66
70
  <li><b>title/de:</b> Titel auf Deutsch. Dies wird von der Konfiguration ihrer Plattformsprachen abgängig sein.</li>
67
71
  <li><b>description/de:</b> Beschreibung auf Deutsch. Dies wird von der Konfiguration ihrer Plattformsprachen abgängig sein.</li>
68
72
  <li><b>start_date:</b> Datum, an dem die Umsetzung des Ergebnisses beginnt (Format JJJJ-MM-TT)</li>
69
- <li><b>end_date::</b> Datum, an dem die Umsetzung des Ergebnisses endet (Format JJJJ-MM-TT)</li>
70
- <li><b>status/ID:</b> ID des Status dieses Ergebnisses</li>
73
+ <li><b>end_date:</b> Datum, an dem die Umsetzung des Ergebnisses endet (Format JJJJ-MM-TT)</li>
74
+ <li><b>status/id:</b> ID des Status dieses Ergebnisses</li>
71
75
  <li><b>progress:</b> Prozentualer Fortschritt der Durchführung (von 0 bis 100)</li>
72
76
  <li><b>proposals_ids:</b> Interne ID der verwandten Vorschläge (kommagetrennt). Diese werden automatisch umgewandelt in <span class='attribute-name'>proposal_url</span></li>
73
77
  </ul>
74
78
  </li>
75
79
  </ol>
76
- title: Ergebnisse von CSV importieren
80
+ title: Ergebnisse aus CSV importieren
77
81
  imports:
78
82
  create:
79
- success: Die Datei wird importiert. Innerhalb von ein paar Minuten erhalten Sie eine E-Mail mit dem Importergebnis
83
+ invalid: Beim Importieren der Ergebnisse ist ein Fehler aufgetreten.
84
+ success: Die Datei wird importiert. Innerhalb von ein paar Minuten erhalten Sie eine E-Mail mit dem Importergebnis.
80
85
  models:
81
86
  result:
82
87
  name: Ergebnis
83
88
  status:
84
89
  name: Status
85
- timeline_entry:
86
- name: Zeitachseneintrag
90
+ projects_import:
91
+ create:
92
+ invalid: Es gab ein Problem beim Importieren der Projekte in Ergebnisse, bitte befolgen Sie die Anweisungen sorgfältig und stellen Sie sicher, dass Sie Projekte für die Umsetzung ausgewählt haben.
93
+ new:
94
+ create: Importieren
95
+ import_all_selected_projects: Alle zur Umsetzung ausgewählten Projekte importieren
96
+ new_items:
97
+ one: 1 ausgewähltes Projekt wird importiert
98
+ other: "%{count} ausgewählte Projekte werden importiert"
99
+ no_components: Es gibt keine weiteren Budgetkomponenten in diesem partizipativen Raum, um die Projekte in Ergebnisse zu importieren.
100
+ origin_component_id: Ursprungskomponente
101
+ select_component: Komponente auswählen
102
+ success:
103
+ one: Ein Projekt wird importiert. Sie werden per E-Mail benachrichtigt, sobald der Import abgeschlossen ist.
104
+ other: "%{count} Projekte werden in der Warteschlange importiert. Sie werden per E-Mail benachrichtigt, sobald sie abgeschlossen sind."
105
+ title: Projekte aus einer anderen Komponente importieren
87
106
  results:
88
107
  create:
89
- invalid: Beim Erstellen dieses Ergebnisses ist ein Problem aufgetreten
90
- success: Ergebnis erfolgreich erstellt
108
+ invalid: Beim Erstellen dieses Ergebnisses ist ein Problem aufgetreten.
109
+ success: Ergebnis erfolgreich erstellt.
91
110
  destroy:
92
- success: Ergebnis erfolgreich gelöscht
111
+ success: Ergebnis erfolgreich gelöscht.
93
112
  edit:
94
113
  title: Ergebnis bearbeiten
95
114
  update: Ergebnis aktualisieren
@@ -99,17 +118,17 @@ de:
99
118
  create: Ergebnis erstellen
100
119
  title: Neues Ergebnis
101
120
  update:
102
- invalid: Beim Aktualisieren dieses Ergebnisses ist ein Problem aufgetreten
103
- success: Ergebnis erfolgreich aktualisiert
121
+ invalid: Beim Aktualisieren dieses Ergebnisses ist ein Problem aufgetreten.
122
+ success: Ergebnis erfolgreich aktualisiert.
104
123
  shared:
105
124
  subnav:
106
125
  statuses: Status
107
126
  statuses:
108
127
  create:
109
- invalid: Beim Erstellen dieses Status ist ein Problem aufgetreten
110
- success: Status erfolgreich erstellt
128
+ invalid: Beim Erstellen dieses Status ist ein Problem aufgetreten.
129
+ success: Status erfolgreich erstellt.
111
130
  destroy:
112
- success: Status erfolgreich gelöscht
131
+ success: Status erfolgreich gelöscht.
113
132
  edit:
114
133
  title: Status bearbeiten
115
134
  update: Update Status
@@ -119,14 +138,14 @@ de:
119
138
  create: Status erstellen
120
139
  title: Neuer Status
121
140
  update:
122
- invalid: Beim Aktualisieren dieses Status ist ein Problem aufgetreten
123
- success: Status erfolgreich aktualisiert
141
+ invalid: Beim Aktualisieren dieses Status ist ein Problem aufgetreten.
142
+ success: Status erfolgreich aktualisiert.
124
143
  timeline_entries:
125
144
  create:
126
- invalid: Beim Erstellen dieses Eintrags ist ein Problem aufgetreten
127
- success: Der Eintrag wurde erfolgreich erstellt
145
+ invalid: Beim Erstellen dieses Eintrags ist ein Problem aufgetreten.
146
+ success: Der Eintrag wurde erfolgreich erstellt.
128
147
  destroy:
129
- success: Der Eintrag wurde erfolgreich gelöscht
148
+ success: Der Eintrag wurde erfolgreich gelöscht.
130
149
  edit:
131
150
  title: Eintrag bearbeiten
132
151
  update: Eintrag aktualisieren
@@ -136,8 +155,8 @@ de:
136
155
  create: Eintrag erstellen
137
156
  title: Neuer Eintrag
138
157
  update:
139
- invalid: Beim Aktualisieren dieses Eintrags ist ein Problem aufgetreten
140
- success: Eintrag erfolgreich aktualisiert
158
+ invalid: Beim Aktualisieren dieses Eintrags ist ein Problem aufgetreten.
159
+ success: Eintrag erfolgreich aktualisiert.
141
160
  admin_log:
142
161
  result:
143
162
  create: "%{user_name} hat das Ergebnis %{resource_name} in %{space_name} erstellt"
@@ -156,18 +175,23 @@ de:
156
175
  not_found: 'Das übergeordnete Objekt wurde nicht in der Datenbank gefunden (ID: %{id})'
157
176
  content_blocks:
158
177
  highlighted_results:
159
- dates: Daten
160
178
  results: Ergebnisse
161
- unspecified: Keine Angabe
162
179
  import_mailer:
163
180
  import:
164
181
  errors: Fehler
165
- errors_present: Beim Importieren der Ergebnisse ist ein Fehler aufgetreten
182
+ errors_present: Beim Importieren der Ergebnisse ist ein Fehler aufgetreten.
166
183
  row_number: Zeile
167
184
  subject: Ergebnisse wurden erfolgreich importiert
168
185
  success: Ergebnisse wurden erfolgreich importiert. Sie können die Ergebnisse über die Administrationsoberfläche aufrufen.
186
+ import_projects_mailer:
187
+ import:
188
+ added_projects:
189
+ one: Ein Ergebnis wurde aus Projekten importiert.
190
+ other: "%{count} Ergebnisse wurden aus Projekten importiert."
191
+ subject: Projekte wurden erfolgreich importiert
192
+ success: Projekte wurden erfolgreich in die Ergebnisse der %{component_name}-Komponente importiert. Sie können die Ergebnisse in der Administrationsoberfläche überprüfen.
169
193
  last_activity:
170
- new_result_at_html: "<span>Neues Ergebnis auf %{link}</span>"
194
+ new_result: 'Neues Ergebnis:'
171
195
  models:
172
196
  result:
173
197
  fields:
@@ -190,9 +214,6 @@ de:
190
214
  fields:
191
215
  entry_date: Datum
192
216
  title: Titel
193
- result_m:
194
- executed: Ausgeführt
195
- view: Ansicht
196
217
  results:
197
218
  count:
198
219
  results_count:
@@ -200,14 +221,16 @@ de:
200
221
  other: "%{count} Ergebnisse"
201
222
  filters:
202
223
  all: Alle
203
- scopes: Bereiche
204
224
  home:
205
225
  categories_label: Kategorien
226
+ empty: Es liegen noch keine Ergebnisse vor.
227
+ empty_filters: Es liegen noch keine Ergebnisse mit diesen Kriterien vor.
206
228
  subcategories_label: Unterkategorien
207
229
  home_header:
208
230
  global_status: Globaler Umsetzungsstatus
209
231
  nav_breadcrumb:
210
232
  global: Globale Ausführung
233
+ no_results: Es gibt keine Projekte
211
234
  search:
212
235
  search: Suche nach Aktionen
213
236
  show: