decidim-accountability 0.23.0 → 0.24.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/decidim/accountability/accountability/_categories.scss +5 -4
  3. data/app/cells/decidim/accountability/content_blocks/highlighted_results/elements.erb +5 -0
  4. data/app/cells/decidim/accountability/content_blocks/highlighted_results/heading.erb +1 -0
  5. data/app/cells/decidim/accountability/content_blocks/highlighted_results_cell.rb +18 -0
  6. data/app/cells/decidim/accountability/result_cell.rb +21 -0
  7. data/app/cells/decidim/accountability/result_m/data.erb +23 -0
  8. data/app/cells/decidim/accountability/result_m/footer.erb +22 -0
  9. data/app/cells/decidim/accountability/result_m/tags.erb +1 -0
  10. data/app/cells/decidim/accountability/result_m_cell.rb +37 -0
  11. data/app/controllers/concerns/decidim/accountability/admin/filterable.rb +59 -0
  12. data/app/controllers/decidim/accountability/admin/attachment_collections_controller.rb +32 -0
  13. data/app/controllers/decidim/accountability/admin/attachments_controller.rb +32 -0
  14. data/app/controllers/decidim/accountability/admin/results_controller.rb +7 -2
  15. data/app/helpers/decidim/accountability/admin/filterable_helper.rb +10 -0
  16. data/app/helpers/decidim/accountability/breadcrumb_helper.rb +3 -1
  17. data/app/models/decidim/accountability/result.rb +15 -2
  18. data/app/models/decidim/accountability/status.rb +5 -0
  19. data/app/views/decidim/accountability/admin/results/index.html.erb +52 -2
  20. data/app/views/decidim/accountability/results/_show_leaf.html.erb +2 -0
  21. data/app/views/decidim/accountability/results/_show_parent.html.erb +2 -0
  22. data/config/locales/ar.yml +0 -4
  23. data/config/locales/bg.yml +0 -4
  24. data/config/locales/ca.yml +24 -14
  25. data/config/locales/cs.yml +41 -21
  26. data/config/locales/da.yml +197 -0
  27. data/config/locales/de.yml +42 -22
  28. data/config/locales/el.yml +0 -4
  29. data/config/locales/en.yml +24 -4
  30. data/config/locales/es-MX.yml +12 -4
  31. data/config/locales/es-PY.yml +12 -4
  32. data/config/locales/es.yml +21 -13
  33. data/config/locales/eu.yml +8 -12
  34. data/config/locales/fi-plain.yml +24 -4
  35. data/config/locales/fi.yml +24 -4
  36. data/config/locales/fr-CA.yml +24 -4
  37. data/config/locales/fr.yml +24 -4
  38. data/config/locales/gl.yml +48 -5
  39. data/config/locales/hu.yml +0 -4
  40. data/config/locales/id-ID.yml +0 -4
  41. data/config/locales/is-IS.yml +53 -4
  42. data/config/locales/it.yml +24 -4
  43. data/config/locales/ja.yml +24 -4
  44. data/config/locales/lv.yml +0 -4
  45. data/config/locales/nl.yml +33 -13
  46. data/config/locales/no.yml +22 -4
  47. data/config/locales/pl.yml +24 -4
  48. data/config/locales/pt-BR.yml +0 -4
  49. data/config/locales/pt.yml +0 -4
  50. data/config/locales/ro-RO.yml +4 -4
  51. data/config/locales/ru.yml +0 -4
  52. data/config/locales/si-LK.yml +31 -0
  53. data/config/locales/sk.yml +23 -4
  54. data/config/locales/sl.yml +0 -4
  55. data/config/locales/sr-CS.yml +0 -4
  56. data/config/locales/sv.yml +26 -4
  57. data/config/locales/sw-KE.yml +1 -0
  58. data/config/locales/tr-TR.yml +59 -18
  59. data/config/locales/uk.yml +0 -4
  60. data/config/locales/zh-CN.yml +0 -4
  61. data/lib/decidim/accountability.rb +1 -0
  62. data/lib/decidim/accountability/admin_engine.rb +2 -0
  63. data/lib/decidim/accountability/api.rb +10 -0
  64. data/lib/decidim/accountability/component.rb +20 -8
  65. data/lib/decidim/accountability/engine.rb +0 -17
  66. data/lib/decidim/accountability/version.rb +1 -1
  67. data/lib/decidim/api/accountability_type.rb +26 -0
  68. data/lib/decidim/api/result_type.rb +32 -0
  69. data/lib/decidim/api/status_type.rb +19 -0
  70. data/lib/decidim/api/timeline_entry_type.rb +17 -0
  71. metadata +46 -33
  72. data/app/types/decidim/accountability/accountability_type.rb +0 -32
  73. data/app/types/decidim/accountability/result_type.rb +0 -35
  74. data/app/types/decidim/accountability/status_type.rb +0 -20
  75. data/app/types/decidim/accountability/timeline_entry_type.rb +0 -18
  76. data/app/views/decidim/participatory_processes/participatory_process_groups/_highlighted_results.html.erb +0 -12
  77. data/app/views/decidim/participatory_processes/participatory_process_groups/_result.html.erb +0 -32
@@ -70,6 +70,8 @@
70
70
  <%= render partial: "stats_box" %>
71
71
 
72
72
  <%= render partial: "timeline", locals: { result: result } if result.timeline_entries.any? %>
73
+
74
+ <%= attachments_for result %>
73
75
  </div>
74
76
  </div>
75
77
 
@@ -15,6 +15,8 @@
15
15
  <%= cell "decidim/tags", result, context: { extra_classes: ["tags--result"] } %>
16
16
 
17
17
  <%= render partial: "results_leaf", locals: { results: result.children.page(1).per(result.children_count), total_count: result.children_count } %>
18
+
19
+ <%= attachments_for result %>
18
20
  </div>
19
21
  </div>
20
22
  <%= render partial: "stats_box" %>
@@ -200,10 +200,6 @@ ar:
200
200
  description: عدد النتائج الناتجة
201
201
  object: النتائج
202
202
  title: النتائج
203
- participatory_processes:
204
- participatory_process_groups:
205
- highlighted_results:
206
- results: النتائج
207
203
  resource_links:
208
204
  included_projects:
209
205
  result_project: المشاريع المدرجة في هذه النتيجة
@@ -212,10 +212,6 @@ bg:
212
212
  description: Брой генерирани резултати
213
213
  object: резултати
214
214
  title: Резултати
215
- participatory_processes:
216
- participatory_process_groups:
217
- highlighted_results:
218
- results: Резултати
219
215
  participatory_spaces:
220
216
  highlighted_results:
221
217
  see_all: Виж всички резултати (%{count})
@@ -6,11 +6,11 @@ ca:
6
6
  decidim_category_id: Categoria
7
7
  decidim_scope_id: Àmbit
8
8
  description: Descripció
9
- end_date: Fi
9
+ end_date: Data de finalització
10
10
  progress: Progrés
11
11
  project_ids: Projectes inclosos
12
12
  proposals: Propostes incloses
13
- start_date: Inici
13
+ start_date: Data d'inici
14
14
  title: Títol
15
15
  updated_at: Actualitzat el
16
16
  status:
@@ -22,7 +22,7 @@ ca:
22
22
  description: Descripció
23
23
  entry_date: Data
24
24
  models:
25
- decidim/accountability/proposal_linked_event: Proposta inclosa en un resultat
25
+ decidim/accountability/proposal_linked_event: Proposta inclosa a un resultat
26
26
  decidim/accountability/result_progress_updated_event: Progrés del resultat actualitzat
27
27
  activerecord:
28
28
  models:
@@ -32,7 +32,9 @@ ca:
32
32
  decidim:
33
33
  accountability:
34
34
  actions:
35
- confirm_destroy: Estàs segur que vols suprimir aquest %{name}?
35
+ attachment_collections: Carpetes
36
+ attachments: Fitxers adjunts
37
+ confirm_destroy: Segur que vols suprimir aquest %{name}?
36
38
  destroy: Esborrar
37
39
  edit: Editar
38
40
  import_csv: Importar CSV
@@ -42,6 +44,7 @@ ca:
42
44
  title: Accions
43
45
  admin:
44
46
  exports:
47
+ result_comments: Comentaris
45
48
  results: Resultats
46
49
  import_results:
47
50
  new:
@@ -51,23 +54,23 @@ ca:
51
54
  title: Importar resultats via CSV
52
55
  imports:
53
56
  create:
54
- success: S'està important el fitxer. Rebràs un email en els propers minuts amb el resultat de la importació
57
+ success: S'està important el fitxer. Rebràs un correu electrònic en els propers minuts amb el resultat de la importació
55
58
  models:
56
59
  result:
57
60
  name: Resultat
58
61
  status:
59
62
  name: Estat
60
63
  timeline_entry:
61
- name: Element
64
+ name: Entrada de la cronologia
62
65
  results:
63
66
  create:
64
67
  invalid: S'ha produït un error en crear aquest resultat
65
- success: El resultat ha estat creat correctament
68
+ success: Resultat creat correctament
66
69
  destroy:
67
- success: El resultat ha estat eliminat correctament
70
+ success: Resultat eliminat correctament
68
71
  edit:
69
72
  title: Editar resultat
70
- update: Actualitza resultat
73
+ update: Actualitzar resultat
71
74
  index:
72
75
  title: Resultats
73
76
  new:
@@ -75,7 +78,7 @@ ca:
75
78
  title: Nou resultat
76
79
  update:
77
80
  invalid: S'ha produït un error en actualitzar aquest resultat
78
- success: El resultat ha estat actualitzat correctament
81
+ success: Resultat actualitzat correctament
79
82
  shared:
80
83
  subnav:
81
84
  statuses: Estats
@@ -148,6 +151,8 @@ ca:
148
151
  fields:
149
152
  description: Descripció
150
153
  entry_date: Data
154
+ result_m:
155
+ view: Veure
151
156
  results:
152
157
  count:
153
158
  results_count:
@@ -178,6 +183,15 @@ ca:
178
183
  votes: Suports
179
184
  timeline:
180
185
  title: Evolució del projecte
186
+ admin:
187
+ filters:
188
+ results:
189
+ category_id_eq:
190
+ label: Categoria
191
+ scope_id_eq:
192
+ label: Àmbit
193
+ status_id_eq:
194
+ label: Estat
181
195
  components:
182
196
  accountability:
183
197
  name: Seguiment
@@ -212,10 +226,6 @@ ca:
212
226
  description: Nombre de resultats generats
213
227
  object: resultats
214
228
  title: Resultats
215
- participatory_processes:
216
- participatory_process_groups:
217
- highlighted_results:
218
- results: Resultats
219
229
  participatory_spaces:
220
230
  highlighted_results:
221
231
  see_all: Veure tots els resultats (%{count})
@@ -7,17 +7,17 @@ cs:
7
7
  decidim_scope_id: Oblast působnosti
8
8
  description: Popis
9
9
  end_date: Datum ukončení
10
- progress: Pokrok
10
+ progress: Průběh
11
11
  project_ids: Zahrnuté projekty
12
12
  proposals: Zahrnuté návrhy
13
- start_date: Počáteční datum
13
+ start_date: Datum zahájení
14
14
  title: Titul
15
- updated_at: Aktualizováno na
15
+ updated_at: Aktualizováno v
16
16
  status:
17
17
  description: Popis
18
18
  key: Klíč
19
19
  name: Název
20
- progress: Pokrok
20
+ progress: Průběh
21
21
  timeline_entry:
22
22
  description: Popis
23
23
  entry_date: Datum
@@ -30,20 +30,23 @@ cs:
30
30
  one: Výsledek
31
31
  few: Výsledek
32
32
  many: Výsledek
33
- other: Výsledek
33
+ other: Výsledků
34
34
  decidim:
35
35
  accountability:
36
36
  actions:
37
+ attachment_collections: Složky
38
+ attachments: Přílohy
37
39
  confirm_destroy: Opravdu chcete smazat tento %{name}?
38
40
  destroy: Odstranit
39
41
  edit: Upravit
40
42
  import_csv: Importovat CSV
41
- new: Nová %{name}
43
+ new: Nový %{name}
42
44
  preview: Náhled
43
45
  timeline_entries: Vývoj projektu
44
46
  title: Akce
45
47
  admin:
46
48
  exports:
49
+ result_comments: Komentáře
47
50
  results: Výsledky
48
51
  import_results:
49
52
  new:
@@ -60,7 +63,7 @@ cs:
60
63
  status:
61
64
  name: Stav
62
65
  timeline_entry:
63
- name: Časová položka
66
+ name: Záznam v harmonogramu
64
67
  results:
65
68
  create:
66
69
  invalid: Při vytváření tohoto výsledku došlo k problému
@@ -110,7 +113,7 @@ cs:
110
113
  index:
111
114
  title: Položky časové osy projektu
112
115
  new:
113
- create: Vytvořte položku
116
+ create: Vytvořit položku
114
117
  title: Nová položka
115
118
  update:
116
119
  invalid: Došlo k problému při aktualizaci této položky
@@ -122,7 +125,12 @@ cs:
122
125
  update: "%{user_name} aktualizovaný výsledek %{resource_name} v %{space_name}"
123
126
  value_types:
124
127
  parent_presenter:
125
- not_found: 'Rodič nebyl nalezen v databázi (ID: %{id})'
128
+ not_found: 'Nadřazený nebyl nalezen v databázi (ID: %{id})'
129
+ content_blocks:
130
+ highlighted_results:
131
+ dates: Data
132
+ results: Výsledky
133
+ unspecified: Nespecifikováno
126
134
  import_mailer:
127
135
  import:
128
136
  errors: Chyby
@@ -135,8 +143,12 @@ cs:
135
143
  models:
136
144
  result:
137
145
  fields:
146
+ category: Kategorie
147
+ created_at: Vytvořeno
138
148
  end_date: Datum ukončení
139
- progress: Pokrok
149
+ id: ID
150
+ progress: Průběh
151
+ scope: Oblast působnosti
140
152
  start_date: Počáteční datum
141
153
  status: Stav
142
154
  title: Název
@@ -145,11 +157,14 @@ cs:
145
157
  description: Popis
146
158
  key: Klíč
147
159
  name: Název
148
- progress: Pokrok
160
+ progress: Průběh
149
161
  timeline_entry:
150
162
  fields:
151
163
  description: Popis
152
164
  entry_date: Datum
165
+ result_m:
166
+ executed: Provedeno
167
+ view: Zobrazit
153
168
  results:
154
169
  count:
155
170
  results_count:
@@ -166,9 +181,9 @@ cs:
166
181
  home_header:
167
182
  global_status: Globální stav provedení
168
183
  nav_breadcrumb:
169
- global: Globální provádění
184
+ global: Globální provedení
170
185
  search:
171
- search: Vyhledání akcí
186
+ search: Hledat akce
172
187
  show:
173
188
  stats:
174
189
  attendees: Účastníci
@@ -176,12 +191,21 @@ cs:
176
191
  comments: Komentáře
177
192
  contributions: Příspěvky
178
193
  last_edited_by: Naposledy upravil
179
- last_updated_at: Poslední aktualizace na
194
+ last_updated_at: Poslední aktualizace v
180
195
  meetings: Setkání
181
196
  proposals: Návrhy
182
- votes: Podporuje
197
+ votes: Podpory
183
198
  timeline:
184
199
  title: Vývoj projektu
200
+ admin:
201
+ filters:
202
+ results:
203
+ category_id_eq:
204
+ label: Kategorie
205
+ scope_id_eq:
206
+ label: Oblast působnosti
207
+ status_id_eq:
208
+ label: Stav
185
209
  components:
186
210
  accountability:
187
211
  name: Odpovědnost
@@ -202,8 +226,8 @@ cs:
202
226
  events:
203
227
  accountability:
204
228
  proposal_linked:
205
- email_intro: 'Návrh je „%{proposal_title} byla zahrnuta do výsledek. Můžete ji vidět z této stránky:'
206
- email_outro: Toto oznámení jste obdrželi, protože jste sledovali "%{proposal_title}". Po předchozím propojení můžete přestat přijímat oznámení.
229
+ email_intro: 'Návrh "%{proposal_title}" byl zahrnut do výsledku. Můžete jej vidět z této stránky:'
230
+ email_outro: Toto oznámení jste obdrželi, protože sledujete "%{proposal_title}". Můžete přestat dostávat oznámení za předchozím odkazem.
207
231
  email_subject: Aktualizace na %{proposal_title}
208
232
  notification_title: Návrh <a href="%{proposal_path}">%{proposal_title}</a> byl zahrnut do výsledku <a href="%{resource_path}">%{resource_title}</a>.
209
233
  result_progress_updated:
@@ -216,10 +240,6 @@ cs:
216
240
  description: Počet vygenerovaných výsledků
217
241
  object: výsledky
218
242
  title: Výsledky
219
- participatory_processes:
220
- participatory_process_groups:
221
- highlighted_results:
222
- results: Výsledky
223
243
  participatory_spaces:
224
244
  highlighted_results:
225
245
  see_all: Zobrazit všechny výsledky (%{count})
@@ -1 +1,198 @@
1
1
  da:
2
+ activemodel:
3
+ attributes:
4
+ result:
5
+ decidim_accountability_status_id: Status
6
+ decidim_category_id: Kategori
7
+ decidim_scope_id: Anvendelsesområde
8
+ description: Beskrivelse
9
+ end_date: Slutdato
10
+ progress: Fremskridt
11
+ project_ids: Inkluderede projekter
12
+ proposals: Inkluderede projekter
13
+ start_date: Start dato
14
+ title: Titel
15
+ updated_at: Opdateret
16
+ status:
17
+ description: Beskrivelse
18
+ key: Nøgle
19
+ name: Navn
20
+ progress: Fremskridt
21
+ timeline_entry:
22
+ description: Beskrivelse
23
+ entry_date: Dato
24
+ models:
25
+ decidim/accountability/proposal_linked_event: Projekter, der indgår i dette resultat
26
+ decidim/accountability/result_progress_updated_event: Resultatstatus opdateret
27
+ activerecord:
28
+ models:
29
+ decidim/accountability/result:
30
+ one: Resultat
31
+ other: Resultater
32
+ decidim:
33
+ accountability:
34
+ actions:
35
+ confirm_destroy: Er du sikker på, at du vil slette dette %{name}?
36
+ destroy: Slet
37
+ edit: Rediger
38
+ import_csv: Importér CSV
39
+ new: Nyt %{name}
40
+ preview: Eksempelvisning
41
+ timeline_entries: Projektudvikling
42
+ title: Handlinger
43
+ admin:
44
+ exports:
45
+ results: Resultater
46
+ import_results:
47
+ new:
48
+ import: Import
49
+ info: "<p>Vi anbefaler, at du følger disse trin:</p><ol><li>Opret status for de resultater, du ønsker at tilføje (<a href='%{link_new_status}' target='_blank'>link</a>)</li><li>Opret mindst ét resultat manuelt via dette administrationspanel (<a href='%{link_new_result}' target='_blank'>link</a>) før brug af import for at få en bedre forståelse af formatet, og hvad du har brug for til at udfylde det.</li><li>Download eksporten som CSV-format (%{link_export_csv})</li><li>Lav ændringerne lokalt. Du kan kun ændre følgende kolonner i CSV’et:</li></ol><ul><li><b>category/id:</b> ID for kategorien</li><li><b>scope/id:</b> ID for anvendelsesområde</li><li><b>parent/id:</b> ID for forælder(tilknyttede resultater). Valgfrit</li><li><b>title/I18N:</b> Titel for X-sprog</li><li><b>description/I18N:</b> Beskrivelse på X-sprog</li><li><b> dato, hvor resultatet begynder med at blive gennemført (format YYYY-MM-DD)</li><li><b>slutdato:</b> dato, hvor gennemførelsen af resultatet afsluttes (format YYYY-MM-DD)</li><li><b>status/id:</b> ID for status for dette resultat</li><li><b>fremskridt:</b> procentandel (fra 0 til 100) for gennemførelsen </li><li><b>proposals_ids:</b> internt ID for de tilknyttede forslag (adskilt med et komma). Den konverteres automatisk til <span class='attribute-name'>proposal_url</span></li></ul>"
50
+ link: link
51
+ title: Importresultater fra CSV
52
+ imports:
53
+ create:
54
+ success: Import af filen er begyndt. Du vil inden for de næste få minutter modtage en e-mail med resultatet af importen
55
+ models:
56
+ result:
57
+ name: Resultat
58
+ status:
59
+ name: Status
60
+ timeline_entry:
61
+ name: Indførsel på tidslinje
62
+ results:
63
+ create:
64
+ invalid: Der opstod et problem med oprettelsen af dette resultat
65
+ success: Resultat oprettet
66
+ destroy:
67
+ success: Resultat slettet
68
+ edit:
69
+ title: Rediger resultat
70
+ update: Opdater resultat
71
+ index:
72
+ title: Resultater
73
+ new:
74
+ create: Opret resultat
75
+ title: Nyt resultat
76
+ update:
77
+ invalid: Der opstod et problem med opdateringen af dette resultat
78
+ success: Resultat opdateret
79
+ shared:
80
+ subnav:
81
+ statuses: Statusser
82
+ statuses:
83
+ create:
84
+ invalid: Der opstod et problem med oprettelsen af denne status
85
+ success: Status oprettet
86
+ destroy:
87
+ success: Status slettet
88
+ edit:
89
+ title: Rediger status
90
+ update: Opdater status
91
+ index:
92
+ title: Statusser
93
+ new:
94
+ create: Opret status
95
+ title: Ny status
96
+ update:
97
+ invalid: Der opstod et problem med oprettelsen af denne status
98
+ success: Status opdateret
99
+ timeline_entries:
100
+ create:
101
+ invalid: Der opstod et problem med at oprette dette indlæg
102
+ success: Indlægget blev oprettet
103
+ destroy:
104
+ success: Indlægget blev slettet
105
+ edit:
106
+ title: Rediger Indlæg
107
+ update: Opdater indlæg
108
+ index:
109
+ title: Projekt tidslinje indlæg
110
+ new:
111
+ create: Opret indlæg
112
+ title: Nyt indlæg
113
+ update:
114
+ invalid: Der opstod et problem med at opdatere dette indlæg
115
+ success: Indlæg opdateret
116
+ admin_log:
117
+ result:
118
+ create: "%{user_name} oprettede resultat %{resource_name} i %{space_name}"
119
+ delete: "%{user_name} slettede %{resource_name} resultatet i %{space_name}"
120
+ update: "%{user_name} opdaterede resultat %{resource_name} i %{space_name}"
121
+ value_types:
122
+ parent_presenter:
123
+ not_found: 'Forældretypen blev ikke fundet i databasen (ID: %{id})'
124
+ import_mailer:
125
+ import:
126
+ errors: Fejl
127
+ errors_present: Der opstod et problem med at importere resultater
128
+ row_number: Række
129
+ subject: Succesfuld import af resultater
130
+ success: Succesfuld import af resultater. Du kan gennemgå resultaterne i administrator interfacet.
131
+ last_activity:
132
+ new_result_at_html: "<span>Nyt resultat på %{link}</span>"
133
+ models:
134
+ result:
135
+ fields:
136
+ end_date: Slutdato
137
+ progress: Fremskridt
138
+ start_date: Start dato
139
+ status: Status
140
+ title: Titel
141
+ status:
142
+ fields:
143
+ description: Beskrivelse
144
+ key: Nøgle
145
+ name: Navn
146
+ progress: Fremskridt
147
+ timeline_entry:
148
+ fields:
149
+ description: Beskrivelse
150
+ entry_date: Dato
151
+ results:
152
+ count:
153
+ results_count:
154
+ one: 1 resultat
155
+ other: "%{count} resultater"
156
+ filters:
157
+ all: Alle
158
+ scopes: Områder
159
+ home:
160
+ categories_label: Kategorier
161
+ subcategories_label: Underkategorier
162
+ home_header:
163
+ global_status: Samlet gennemførelsesstatus
164
+ nav_breadcrumb:
165
+ global: Samlet udførelse
166
+ search:
167
+ search: Søg efter handlinger
168
+ show:
169
+ stats:
170
+ attendees: Mødedeltagere
171
+ back_to_resource: Tilbage til resultater
172
+ comments: Kommentarer
173
+ contributions: Bidrag
174
+ last_edited_by: Sidst redigeret af
175
+ last_updated_at: Senest opdateret den
176
+ meetings: Møder
177
+ proposals: Forslag
178
+ votes: Støtter
179
+ timeline:
180
+ title: Projektets udvikling
181
+ components:
182
+ accountability:
183
+ name: Ansvarlighed
184
+ settings:
185
+ global:
186
+ categories_label: Navn for "kategorier"
187
+ comments_enabled: Kommentarer aktiveret
188
+ comments_max_length: Kommentarer maks. længde (Leave 0 for standardværdi)
189
+ display_progress_enabled: Vis fremskridt
190
+ heading_leaf_level_results: Navn for "Projekter"
191
+ heading_parent_level_results: Navn for "Resultater"
192
+ intro: Intro
193
+ scope_id: Omfang
194
+ scopes_enabled: Omfang aktiveret
195
+ subcategories_label: Navn for "Underkategorier"
196
+ resource_links:
197
+ included_proposals:
198
+ result_proposal: Forslag i dette resultat