decidim-accountability 0.26.2 → 0.27.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/accountability/highlighted_results_for_component_cell.rb +13 -1
  3. data/app/commands/decidim/accountability/admin/create_imported_result.rb +1 -1
  4. data/app/commands/decidim/accountability/admin/create_result.rb +1 -1
  5. data/app/commands/decidim/accountability/admin/create_status.rb +6 -3
  6. data/app/commands/decidim/accountability/admin/create_timeline_entry.rb +11 -7
  7. data/app/commands/decidim/accountability/admin/destroy_result.rb +1 -1
  8. data/app/commands/decidim/accountability/admin/update_imported_result.rb +1 -1
  9. data/app/commands/decidim/accountability/admin/update_result.rb +1 -1
  10. data/app/commands/decidim/accountability/admin/update_status.rb +6 -3
  11. data/app/commands/decidim/accountability/admin/update_timeline_entry.rb +9 -5
  12. data/app/controllers/decidim/accountability/admin/statuses_controller.rb +5 -3
  13. data/app/controllers/decidim/accountability/admin/timeline_entries_controller.rb +5 -3
  14. data/app/controllers/decidim/accountability/results_controller.rb +12 -12
  15. data/app/forms/decidim/accountability/admin/result_form.rb +2 -2
  16. data/app/forms/decidim/accountability/admin/timeline_entry_form.rb +2 -1
  17. data/app/helpers/decidim/accountability/breadcrumb_helper.rb +2 -2
  18. data/app/models/decidim/accountability/result.rb +9 -5
  19. data/app/models/decidim/accountability/status.rb +6 -2
  20. data/app/models/decidim/accountability/timeline_entry.rb +6 -0
  21. data/app/permissions/decidim/accountability/admin/permissions.rb +7 -1
  22. data/app/presenters/decidim/accountability/admin_log/status_presenter.rb +38 -0
  23. data/app/presenters/decidim/accountability/admin_log/timeline_entry_presenter.rb +37 -0
  24. data/app/services/decidim/accountability/results_calculator.rb +10 -6
  25. data/app/views/decidim/accountability/admin/results/index.html.erb +1 -1
  26. data/app/views/decidim/accountability/admin/timeline_entries/_form.html.erb +5 -1
  27. data/app/views/decidim/accountability/admin/timeline_entries/index.html.erb +2 -2
  28. data/app/views/decidim/accountability/results/_home_categories.html.erb +2 -2
  29. data/app/views/decidim/accountability/results/_nav_breadcrumb.html.erb +3 -3
  30. data/app/views/decidim/accountability/results/_results_leaf.html.erb +3 -3
  31. data/app/views/decidim/accountability/results/_results_parent.html.erb +1 -1
  32. data/app/views/decidim/accountability/results/_scope_filters.html.erb +3 -3
  33. data/app/views/decidim/accountability/results/_search.html.erb +1 -1
  34. data/app/views/decidim/accountability/results/_show_leaf.html.erb +2 -2
  35. data/app/views/decidim/accountability/results/_timeline.html.erb +8 -2
  36. data/app/views/decidim/accountability/results/home.html.erb +3 -1
  37. data/app/views/decidim/accountability/versions/show.html.erb +3 -1
  38. data/config/locales/ar.yml +3 -1
  39. data/config/locales/bg.yml +1 -1
  40. data/config/locales/ca.yml +11 -1
  41. data/config/locales/cs.yml +11 -1
  42. data/config/locales/da.yml +1 -1
  43. data/config/locales/de.yml +11 -1
  44. data/config/locales/el.yml +1 -1
  45. data/config/locales/en.yml +10 -1
  46. data/config/locales/es-MX.yml +11 -1
  47. data/config/locales/es-PY.yml +11 -1
  48. data/config/locales/es.yml +11 -1
  49. data/config/locales/eu.yml +1 -1
  50. data/config/locales/fi-plain.yml +11 -1
  51. data/config/locales/fi.yml +11 -1
  52. data/config/locales/fr-CA.yml +11 -1
  53. data/config/locales/fr.yml +11 -1
  54. data/config/locales/ga-IE.yml +1 -0
  55. data/config/locales/gl.yml +1 -1
  56. data/config/locales/hu.yml +20 -10
  57. data/config/locales/id-ID.yml +1 -1
  58. data/config/locales/is-IS.yml +2 -2
  59. data/config/locales/it.yml +1 -1
  60. data/config/locales/ja.yml +11 -1
  61. data/config/locales/lb.yml +1 -1
  62. data/config/locales/lt.yml +13 -1
  63. data/config/locales/lv.yml +1 -1
  64. data/config/locales/nl.yml +12 -1
  65. data/config/locales/no.yml +13 -3
  66. data/config/locales/pl.yml +11 -1
  67. data/config/locales/pt-BR.yml +1 -1
  68. data/config/locales/pt.yml +1 -1
  69. data/config/locales/ro-RO.yml +1 -1
  70. data/config/locales/ru.yml +1 -1
  71. data/config/locales/si-LK.yml +1 -1
  72. data/config/locales/sk.yml +1 -1
  73. data/config/locales/sl.yml +1 -1
  74. data/config/locales/sr-CS.yml +1 -1
  75. data/config/locales/sv.yml +7 -1
  76. data/config/locales/tr-TR.yml +1 -1
  77. data/config/locales/uk.yml +1 -1
  78. data/config/locales/zh-CN.yml +1 -1
  79. data/db/migrate/20220331150008_add_title_to_timeline_entries.rb +7 -0
  80. data/db/migrate/20220331150155_move_legacy_description_to_title_of_timeline_entries.rb +13 -0
  81. data/lib/decidim/accountability/component.rb +2 -1
  82. data/lib/decidim/accountability/test/factories.rb +1 -0
  83. data/lib/decidim/accountability/version.rb +1 -1
  84. data/lib/decidim/api/timeline_entry_type.rb +1 -0
  85. metadata +28 -25
  86. data/app/services/decidim/accountability/result_search.rb +0 -48
@@ -7,7 +7,7 @@
7
7
  <% if category.present? && category.parent.present? %>
8
8
  <span class="breadcrumb--separator">></span>
9
9
  <div>
10
- <%= link_to translated_attribute(category.parent.name), results_path(filter: { category_id: category.parent_id, scope_id: current_scope }) %>
10
+ <%= link_to translated_attribute(category.parent.name), results_path(filter: { with_category: category.parent_id, with_scope: current_scope }) %>
11
11
  <% if component_settings.display_progress_enabled? %>
12
12
  <span class="percentage"><%= display_percentage progress_calculator(current_scope, category.parent_id) %></span>
13
13
  <% end %>
@@ -17,7 +17,7 @@
17
17
  <% if category.present? %>
18
18
  <span class="breadcrumb--separator">></span>
19
19
  <div>
20
- <%= link_to translated_attribute(category.name), results_path(filter: { category_id: category.id, scope_id: current_scope }) %>
20
+ <%= link_to translated_attribute(category.name), results_path(filter: { with_category: category.id, with_scope: current_scope }) %>
21
21
  <% if component_settings.display_progress_enabled? %>
22
22
  <span class="percentage"><%= display_percentage progress_calculator(current_scope, category.id) %></span>
23
23
  <% end %>
@@ -27,7 +27,7 @@
27
27
  <% if result && result.parent.present? %>
28
28
  <span class="breadcrumb--separator">></span>
29
29
  <div>
30
- <%= link_to translated_attribute(result.parent.title), result_path(result.parent, filter: { scope_id: current_scope }) %>
30
+ <%= link_to translated_attribute(result.parent.title), result_path(result.parent, filter: { with_category: current_scope }) %>
31
31
  <% if component_settings.display_progress_enabled? %>
32
32
  <span class="percentage"><%= display_percentage result.parent.progress %></span>
33
33
  <% end %>
@@ -19,12 +19,12 @@
19
19
  <div class="text-small card--meta">
20
20
  <% if result.start_date %>
21
21
  <strong><%= t("models.result.fields.start_date", scope: "decidim.accountability") %></strong>
22
- <span><%= result.start_date %></span>
22
+ <span><%= l result.start_date, format: :decidim_short %></span>
23
23
  <% end %>
24
24
 
25
25
  <% if result.end_date %>
26
26
  <strong><%= t("models.result.fields.end_date", scope: "decidim.accountability") %></strong>
27
- <span><%= result.end_date %></span>
27
+ <span><%= l result.end_date, format: :decidim_short %></span>
28
28
  <% end %>
29
29
 
30
30
  <% if result.status %>
@@ -42,6 +42,6 @@
42
42
  </div>
43
43
  <% end %>
44
44
  </div>
45
- <%= decidim_paginate results, order_start_time: params[:order_start_time], scope_id: params[:scope_id] %>
45
+ <%= decidim_paginate results, order_start_time: params[:order_start_time], with_scope: params.dig(:filter, :with_scope) %>
46
46
  </div>
47
47
  </div>
@@ -27,6 +27,6 @@
27
27
  </div>
28
28
  <% end %>
29
29
  </div>
30
- <%= decidim_paginate results, order_start_time: params[:order_start_time], scope_id: params[:scope_id] %>
30
+ <%= decidim_paginate results, order_start_time: params[:order_start_time], with_scope: params.dig(:filter, :with_scope) %>
31
31
  </div>
32
32
  </div>
@@ -4,7 +4,7 @@
4
4
 
5
5
  <ul class="tags tags--action">
6
6
  <li <%= active_class_if_current(nil) %>>
7
- <%= link_to url_for(filter: { category_id: category.try(:id) }) do %>
7
+ <%= link_to url_for(filter: { with_category: category.try(:id) }) do %>
8
8
  <span class="show-for-sr"><%= Decidim::Scope.model_name.human(count: 2) %></span>
9
9
  <%= t("results.filters.all", scope: "decidim.accountability") %>
10
10
  <% end %>
@@ -12,7 +12,7 @@
12
12
 
13
13
  <% if current_participatory_space.scope %>
14
14
  <li <%= active_class_if_current(current_participatory_space.scope.id) %>>
15
- <%= link_to url_for(filter: { scope_id: current_participatory_space.scope.id, category_id: category.try(:id) }) do %>
15
+ <%= link_to url_for(filter: { with_scope: current_participatory_space.scope.id, with_category: category.try(:id) }) do %>
16
16
  <span class="show-for-sr"><%= Decidim::Scope.model_name.human(count: 1) %></span>
17
17
  <%= translated_attribute(current_participatory_space.scope.name) %>
18
18
  <% end %>
@@ -20,7 +20,7 @@
20
20
  <% end %>
21
21
  <% current_participatory_space.subscopes.each do |scope| %>
22
22
  <li <%= active_class_if_current(scope.id) %>>
23
- <%= link_to url_for(filter: { scope_id: scope.id, category_id: category.try(:id) }) do %>
23
+ <%= link_to url_for(filter: { with_scope: scope.id, with_category: category.try(:id) }) do %>
24
24
  <span class="show-for-sr"><%= Decidim::Scope.model_name.human(count: 1) %></span>
25
25
  <%= translated_attribute(scope.name) %>
26
26
  <% end %>
@@ -1,7 +1,7 @@
1
1
  <%= form_tag results_path, method: :get do %>
2
2
  <div class="filters__search">
3
3
  <div class="input-group">
4
- <%= search_field_tag "filter[search_text]", nil, class: "input-group-field", placeholder: t(".search"), value: "", title: t(".search") %>
4
+ <%= search_field_tag "filter[search_text_cont]", nil, class: "input-group-field", placeholder: t(".search"), value: "", title: t(".search") %>
5
5
  <div class="input-group-button">
6
6
  <button type="submit" class="button">
7
7
  <%= icon "magnifying-glass", aria_label: t(".search"), role: "img" %>
@@ -31,14 +31,14 @@
31
31
  <div class="result-meta row">
32
32
  <% if result.start_date %>
33
33
  <div class="result-meta--label medium-2 columns"><%= t("models.result.fields.start_date", scope: "decidim.accountability") %></div>
34
- <div class="result-meta--data medium-10 columns"><%= result.start_date %></div>
34
+ <div class="result-meta--data medium-10 columns"><%= l result.start_date, format: :decidim_short %></div>
35
35
  <% end %>
36
36
  </div>
37
37
 
38
38
  <div class="result-meta row">
39
39
  <% if result.end_date %>
40
40
  <div class="result-meta--label medium-2 columns"><%= t("models.result.fields.end_date", scope: "decidim.accountability") %></div>
41
- <div class="result-meta--data medium-10 columns"><%= result.end_date %></div>
41
+ <div class="result-meta--data medium-10 columns"><%= l result.end_date, format: :decidim_short %></div>
42
42
  <% end %>
43
43
  </div>
44
44
 
@@ -10,11 +10,17 @@
10
10
  <div class="timeline__info">
11
11
  <div class="timeline__description">
12
12
  <span class="timeline__date text-small">
13
- <%= timeline_entry.entry_date %>
13
+ <%= l timeline_entry.entry_date, format: :decidim_short %>
14
14
  </span>
15
15
  <h4 class="timeline__title">
16
- <%= translated_attribute timeline_entry.description %>
16
+ <%= translated_attribute timeline_entry.title %>
17
17
  </h4>
18
+
19
+ <% if translated_attribute(timeline_entry.description).present? %>
20
+ <div class="timeline__description__description">
21
+ <%== translated_attribute timeline_entry.description %>
22
+ </div>
23
+ <% end %>
18
24
  </div>
19
25
  </div>
20
26
  </li>
@@ -6,4 +6,6 @@
6
6
  </div>
7
7
  </div>
8
8
 
9
- <%= javascript_pack_tag "decidim_accountability" %>
9
+ <% content_for :js_content do %>
10
+ <%= javascript_pack_tag "decidim_accountability" %>
11
+ <% end %>
@@ -1,4 +1,6 @@
1
- <%= javascript_pack_tag "decidim_accountability" %>
1
+ <% content_for :js_content do %>
2
+ <%= javascript_pack_tag "decidim_accountability" %>
3
+ <% end %>
2
4
  <div class="row accountability">
3
5
  <div class="small-12 columns">
4
6
  <%= render partial: "decidim/accountability/results/nav_breadcrumb", locals: { category: versioned_resource.parent.try(:category) || versioned_resource.try(:category) } %>
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ar:
2
3
  activemodel:
3
4
  attributes:
@@ -21,6 +22,7 @@ ar:
21
22
  timeline_entry:
22
23
  description: وصف
23
24
  entry_date: تاريخ
25
+ title: العنوان
24
26
  models:
25
27
  decidim/accountability/proposal_linked_event: اقتراح المدرجة في النتيجة
26
28
  decidim/accountability/result_progress_updated_event: نتيجة التقدم المحدث
@@ -162,8 +164,8 @@ ar:
162
164
  progress: تقدم
163
165
  timeline_entry:
164
166
  fields:
165
- description: وصف
166
167
  entry_date: تاريخ
168
+ title: العنوان
167
169
  result_m:
168
170
  executed: تم التنفيذ
169
171
  view: عرض
@@ -1,3 +1,4 @@
1
+ ---
1
2
  bg:
2
3
  activemodel:
3
4
  attributes:
@@ -146,7 +147,6 @@ bg:
146
147
  progress: Напредък
147
148
  timeline_entry:
148
149
  fields:
149
- description: Описание
150
150
  entry_date: Дата
151
151
  results:
152
152
  count:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ca:
2
3
  activemodel:
3
4
  attributes:
@@ -21,6 +22,7 @@ ca:
21
22
  timeline_entry:
22
23
  description: Descripció
23
24
  entry_date: Data
25
+ title: Títol
24
26
  models:
25
27
  decidim/accountability/proposal_linked_event: Proposta inclosa a un resultat
26
28
  decidim/accountability/result_progress_updated_event: Progrés del resultat actualitzat
@@ -121,6 +123,14 @@ ca:
121
123
  create: "%{user_name} ha creat el resultat %{resource_name} en %{space_name}"
122
124
  delete: "%{user_name} ha eliminat el resultat %{resource_name} de l'espai %{space_name}"
123
125
  update: "%{user_name} ha actualitzat el resultat %{resource_name} en %{space_name}"
126
+ status:
127
+ create: "%{user_name} ha creat l'estat %{resource_name}"
128
+ delete: "%{user_name} ha eliminat l'estat %{resource_name}"
129
+ update: "%{user_name} ha actualitzat l'estat %{resource_name}"
130
+ timeline_entry:
131
+ create: "%{user_name} ha creat l'entrada %{resource_name} a la línia de temps"
132
+ delete: "%{user_name} ha eliminat l'entrada %{resource_name} a la línia de temps"
133
+ update: "%{user_name} ha actualitzat l'entrada %{resource_name} a la línia de temps"
124
134
  value_types:
125
135
  parent_presenter:
126
136
  not_found: 'No s''ha trobat el pare a la base de dades (ID: %{id})'
@@ -158,8 +168,8 @@ ca:
158
168
  progress: Progrés
159
169
  timeline_entry:
160
170
  fields:
161
- description: Descripció
162
171
  entry_date: Data
172
+ title: Títol
163
173
  result_m:
164
174
  executed: Executat
165
175
  view: Veure
@@ -1,3 +1,4 @@
1
+ ---
1
2
  cs:
2
3
  activemodel:
3
4
  attributes:
@@ -21,6 +22,7 @@ cs:
21
22
  timeline_entry:
22
23
  description: Popis
23
24
  entry_date: Datum
25
+ title: Název
24
26
  models:
25
27
  decidim/accountability/proposal_linked_event: Návrh zahrnutý do výsledku
26
28
  decidim/accountability/result_progress_updated_event: Výsledek byl aktualizován
@@ -123,6 +125,14 @@ cs:
123
125
  create: "%{user_name} vytvořen výsledek %{resource_name} v %{space_name}"
124
126
  delete: "%{user_name} odstranil %{resource_name} výsledek v %{space_name}"
125
127
  update: "%{user_name} aktualizovaný výsledek %{resource_name} v %{space_name}"
128
+ status:
129
+ create: "%{user_name} vytvořil/a stav %{resource_name}"
130
+ delete: "%{user_name} odstranil stav %{resource_name}"
131
+ update: "%{user_name} aktualizoval stav %{resource_name}"
132
+ timeline_entry:
133
+ create: "%{user_name} vytvořil záznam %{resource_name} časové osy"
134
+ delete: "%{user_name} odstranil záznam %{resource_name} časové osy"
135
+ update: "%{user_name} aktualizoval záznam %{resource_name} časové osy"
126
136
  value_types:
127
137
  parent_presenter:
128
138
  not_found: 'Nadřazený nebyl nalezen v databázi (ID: %{id})'
@@ -160,8 +170,8 @@ cs:
160
170
  progress: Průběh
161
171
  timeline_entry:
162
172
  fields:
163
- description: Popis
164
173
  entry_date: Datum
174
+ title: Název
165
175
  result_m:
166
176
  executed: Provedeno
167
177
  view: Zobrazit
@@ -1,3 +1,4 @@
1
+ ---
1
2
  da:
2
3
  activemodel:
3
4
  attributes:
@@ -146,7 +147,6 @@ da:
146
147
  progress: Fremskridt
147
148
  timeline_entry:
148
149
  fields:
149
- description: Beskrivelse
150
150
  entry_date: Dato
151
151
  results:
152
152
  count:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  de:
2
3
  activemodel:
3
4
  attributes:
@@ -21,6 +22,7 @@ de:
21
22
  timeline_entry:
22
23
  description: Beschreibung
23
24
  entry_date: Datum
25
+ title: Titel
24
26
  models:
25
27
  decidim/accountability/proposal_linked_event: Vorschlag in einem Ergebnis enthalten
26
28
  decidim/accountability/result_progress_updated_event: Ergebnisfortschritt aktualisiert
@@ -121,6 +123,14 @@ de:
121
123
  create: "%{user_name} hat das Ergebnis %{resource_name} in %{space_name} erstellt"
122
124
  delete: "%{user_name} hat das Ergebnis %{resource_name} in %{space_name} gelöscht"
123
125
  update: "%{user_name} hat das Ergebnis %{resource_name} in %{space_name} aktualisiert"
126
+ status:
127
+ create: "%{user_name} hat den Status %{resource_name} erstellt"
128
+ delete: "%{user_name} hat den Status %{resource_name} gelöscht"
129
+ update: "%{user_name} hat den Status %{resource_name} aktualisiert"
130
+ timeline_entry:
131
+ create: "%{user_name} hat den Zeiteintrag %{resource_name} erstellt"
132
+ delete: "%{user_name} hat den Zeiteintrag %{resource_name} gelöscht"
133
+ update: "%{user_name} hat den Zeiteintrag %{resource_name} aktualisiert"
124
134
  value_types:
125
135
  parent_presenter:
126
136
  not_found: 'Das übergeordnete Objekt wurde nicht in der Datenbank gefunden (ID: %{id})'
@@ -158,8 +168,8 @@ de:
158
168
  progress: Fortschritt
159
169
  timeline_entry:
160
170
  fields:
161
- description: Beschreibung
162
171
  entry_date: Datum
172
+ title: Titel
163
173
  result_m:
164
174
  executed: Ausgeführt
165
175
  view: Ansicht
@@ -1,3 +1,4 @@
1
+ ---
1
2
  el:
2
3
  activemodel:
3
4
  attributes:
@@ -158,7 +159,6 @@ el:
158
159
  progress: Πρόοδος
159
160
  timeline_entry:
160
161
  fields:
161
- description: Περιγραφή
162
162
  entry_date: Ημερομηνία
163
163
  result_m:
164
164
  executed: Εκτελέσθηκε
@@ -22,6 +22,7 @@ en:
22
22
  timeline_entry:
23
23
  description: Description
24
24
  entry_date: Date
25
+ title: Title
25
26
  models:
26
27
  decidim/accountability/proposal_linked_event: Proposal included in a result
27
28
  decidim/accountability/result_progress_updated_event: Result progress updated
@@ -122,6 +123,14 @@ en:
122
123
  create: "%{user_name} created result %{resource_name} in %{space_name}"
123
124
  delete: "%{user_name} deleted the %{resource_name} result in %{space_name}"
124
125
  update: "%{user_name} updated result %{resource_name} in %{space_name}"
126
+ status:
127
+ create: "%{user_name} created the %{resource_name} status"
128
+ delete: "%{user_name} deleted the %{resource_name} status"
129
+ update: "%{user_name} updated the %{resource_name} status"
130
+ timeline_entry:
131
+ create: "%{user_name} created the %{resource_name} timeline entry"
132
+ delete: "%{user_name} deleted the %{resource_name} timeline entry"
133
+ update: "%{user_name} updated the %{resource_name} timeline entry"
125
134
  value_types:
126
135
  parent_presenter:
127
136
  not_found: 'The parent was not found on the database (ID: %{id})'
@@ -159,8 +168,8 @@ en:
159
168
  progress: Progress
160
169
  timeline_entry:
161
170
  fields:
162
- description: Description
163
171
  entry_date: Date
172
+ title: Title
164
173
  result_m:
165
174
  executed: Executed
166
175
  view: View
@@ -1,3 +1,4 @@
1
+ ---
1
2
  es-MX:
2
3
  activemodel:
3
4
  attributes:
@@ -21,6 +22,7 @@ es-MX:
21
22
  timeline_entry:
22
23
  description: Descripción
23
24
  entry_date: Fecha
25
+ title: Título
24
26
  models:
25
27
  decidim/accountability/proposal_linked_event: Propuesta incluida en un resultado
26
28
  decidim/accountability/result_progress_updated_event: Progreso del resultado actualizado
@@ -121,6 +123,14 @@ es-MX:
121
123
  create: "%{user_name} creó el resultado %{resource_name} en %{space_name}"
122
124
  delete: "%{user_name} borró el resultado %{resource_name} en %{space_name}"
123
125
  update: "%{user_name} actualizó el resultado %{resource_name} en %{space_name}"
126
+ status:
127
+ create: "%{user_name} ha creado el estado %{resource_name}"
128
+ delete: "%{user_name} ha eliminado el estado %{resource_name}"
129
+ update: "%{user_name} ha actualizado el estado %{resource_name}"
130
+ timeline_entry:
131
+ create: "%{user_name} ha creado la entrada %{resource_name} en la línea de tiempo"
132
+ delete: "%{user_name} ha eliminado la entrada %{resource_name} en la línea de tiempo"
133
+ update: "%{user_name} ha actualizado la entrada %{resource_name} en la línea de tiempo"
124
134
  value_types:
125
135
  parent_presenter:
126
136
  not_found: 'El padre no se encontró en la base de datos (ID: %{id})'
@@ -158,8 +168,8 @@ es-MX:
158
168
  progress: Progreso
159
169
  timeline_entry:
160
170
  fields:
161
- description: Descripción
162
171
  entry_date: Fecha
172
+ title: Título
163
173
  result_m:
164
174
  executed: Ejecutado
165
175
  view: Ver
@@ -1,3 +1,4 @@
1
+ ---
1
2
  es-PY:
2
3
  activemodel:
3
4
  attributes:
@@ -21,6 +22,7 @@ es-PY:
21
22
  timeline_entry:
22
23
  description: Descripción
23
24
  entry_date: Fecha
25
+ title: Título
24
26
  models:
25
27
  decidim/accountability/proposal_linked_event: Propuesta incluida en un resultado
26
28
  decidim/accountability/result_progress_updated_event: Progreso del resultado actualizado
@@ -121,6 +123,14 @@ es-PY:
121
123
  create: "%{user_name} creó el resultado %{resource_name} en %{space_name}"
122
124
  delete: "%{user_name} borró el resultado %{resource_name} en %{space_name}"
123
125
  update: "%{user_name} actualizó el resultado %{resource_name} en %{space_name}"
126
+ status:
127
+ create: "%{user_name} ha creado el estado %{resource_name}"
128
+ delete: "%{user_name} ha eliminado el estado %{resource_name}"
129
+ update: "%{user_name} ha actualizado el estado %{resource_name}"
130
+ timeline_entry:
131
+ create: "%{user_name} ha creado la entrada %{resource_name} en la línea de tiempo"
132
+ delete: "%{user_name} ha eliminado la entrada %{resource_name} en la línea de tiempo"
133
+ update: "%{user_name} ha actualizado la entrada %{resource_name} en la línea de tiempo"
124
134
  value_types:
125
135
  parent_presenter:
126
136
  not_found: 'El padre no se encontró en la base de datos (ID: %{id})'
@@ -158,8 +168,8 @@ es-PY:
158
168
  progress: Progreso
159
169
  timeline_entry:
160
170
  fields:
161
- description: Descripción
162
171
  entry_date: Fecha
172
+ title: Título
163
173
  result_m:
164
174
  executed: Ejecutado
165
175
  view: Ver
@@ -1,3 +1,4 @@
1
+ ---
1
2
  es:
2
3
  activemodel:
3
4
  attributes:
@@ -21,6 +22,7 @@ es:
21
22
  timeline_entry:
22
23
  description: Descripción
23
24
  entry_date: Fecha
25
+ title: Título
24
26
  models:
25
27
  decidim/accountability/proposal_linked_event: Propuesta incluida en un resultado
26
28
  decidim/accountability/result_progress_updated_event: Progreso del resultado actualizado
@@ -121,6 +123,14 @@ es:
121
123
  create: "%{user_name} creó el resultado %{resource_name} en %{space_name}"
122
124
  delete: "%{user_name} borró el resultado %{resource_name} en %{space_name}"
123
125
  update: "%{user_name} actualizó el resultado %{resource_name} en %{space_name}"
126
+ status:
127
+ create: "%{user_name} ha creado el estado %{resource_name}"
128
+ delete: "%{user_name} ha eliminado el estado %{resource_name}"
129
+ update: "%{user_name} ha actualizado el estado %{resource_name}"
130
+ timeline_entry:
131
+ create: "%{user_name} ha creado la entrada %{resource_name} en la línea de tiempo"
132
+ delete: "%{user_name} ha eliminado la entrada %{resource_name} en la línea de tiempo"
133
+ update: "%{user_name} ha actualizado la entrada %{resource_name} en la línea de tiempo"
124
134
  value_types:
125
135
  parent_presenter:
126
136
  not_found: 'El padre no se encontró en la base de datos (ID: %{id})'
@@ -158,8 +168,8 @@ es:
158
168
  progress: Progreso
159
169
  timeline_entry:
160
170
  fields:
161
- description: Descripción
162
171
  entry_date: Fecha
172
+ title: Título
163
173
  result_m:
164
174
  executed: Ejecutado
165
175
  view: Ver
@@ -1,3 +1,4 @@
1
+ ---
1
2
  eu:
2
3
  activemodel:
3
4
  attributes:
@@ -158,7 +159,6 @@ eu:
158
159
  progress: Aurrerapena
159
160
  timeline_entry:
160
161
  fields:
161
- description: Deskribapena
162
162
  entry_date: Data
163
163
  result_m:
164
164
  executed: Burutua
@@ -1,3 +1,4 @@
1
+ ---
1
2
  fi-pl:
2
3
  activemodel:
3
4
  attributes:
@@ -21,6 +22,7 @@ fi-pl:
21
22
  timeline_entry:
22
23
  description: Kuvaus
23
24
  entry_date: Päivämäärä
25
+ title: Otsikko
24
26
  models:
25
27
  decidim/accountability/proposal_linked_event: Ehdotus sisältyy tulokseen
26
28
  decidim/accountability/result_progress_updated_event: Tuloksen edistyminen päivitetty
@@ -121,6 +123,14 @@ fi-pl:
121
123
  create: "%{user_name} loi tuloksen %{resource_name} tilassa %{space_name}"
122
124
  delete: "%{user_name} poisti tuloksen %{resource_name} tilassa %{space_name}"
123
125
  update: "%{user_name} päivitti tuloksen %{resource_name} tilassa %{space_name}"
126
+ status:
127
+ create: "%{user_name} loi tilan %{resource_name}"
128
+ delete: "%{user_name} poisti tilan %{resource_name}"
129
+ update: "%{user_name} päivitti tilaa %{resource_name}"
130
+ timeline_entry:
131
+ create: "%{user_name} loi aikajanan merkinnän %{resource_name}"
132
+ delete: "%{user_name} poisti aikajanan merkinnän %{resource_name}"
133
+ update: "%{user_name} päivitti aikajanan merkintää %{resource_name}"
124
134
  value_types:
125
135
  parent_presenter:
126
136
  not_found: 'Pääelementtiä ei löytynyt tietokannasta (ID: %{id})'
@@ -158,8 +168,8 @@ fi-pl:
158
168
  progress: Edistyminen
159
169
  timeline_entry:
160
170
  fields:
161
- description: Kuvaus
162
171
  entry_date: Päivämäärä
172
+ title: Otsikko
163
173
  result_m:
164
174
  executed: Valmistunut
165
175
  view: Näytä
@@ -1,3 +1,4 @@
1
+ ---
1
2
  fi:
2
3
  activemodel:
3
4
  attributes:
@@ -21,6 +22,7 @@ fi:
21
22
  timeline_entry:
22
23
  description: Kuvaus
23
24
  entry_date: Päivämäärä
25
+ title: Otsikko
24
26
  models:
25
27
  decidim/accountability/proposal_linked_event: Ehdotus sisältyy tulokseen
26
28
  decidim/accountability/result_progress_updated_event: Tuloksen edistyminen päivitetty
@@ -121,6 +123,14 @@ fi:
121
123
  create: "%{user_name} loi tuloksen %{resource_name} osallistumistilassa %{space_name}"
122
124
  delete: "%{user_name} poisti tuloksen %{resource_name} osallistumistilassa %{space_name}"
123
125
  update: "%{user_name} päivitti tuloksen %{resource_name} osallistumistilassa %{space_name}"
126
+ status:
127
+ create: "%{user_name} loi tilan %{resource_name}"
128
+ delete: "%{user_name} poisti tilan %{resource_name}"
129
+ update: "%{user_name} päivitti tilaa %{resource_name}"
130
+ timeline_entry:
131
+ create: "%{user_name} loi aikajanan merkinnän %{resource_name}"
132
+ delete: "%{user_name} poisti aikajanan merkinnän %{resource_name}"
133
+ update: "%{user_name} päivitti aikajanan merkintää %{resource_name}"
124
134
  value_types:
125
135
  parent_presenter:
126
136
  not_found: 'Pääelementtiä ei löytynyt tietokannasta (ID: %{id})'
@@ -158,8 +168,8 @@ fi:
158
168
  progress: Edistyminen
159
169
  timeline_entry:
160
170
  fields:
161
- description: Kuvaus
162
171
  entry_date: Päivämäärä
172
+ title: Otsikko
163
173
  result_m:
164
174
  executed: Valmistunut
165
175
  view: Näytä
@@ -1,3 +1,4 @@
1
+ ---
1
2
  fr-CA:
2
3
  activemodel:
3
4
  attributes:
@@ -21,6 +22,7 @@ fr-CA:
21
22
  timeline_entry:
22
23
  description: Description
23
24
  entry_date: Date
25
+ title: Titre
24
26
  models:
25
27
  decidim/accountability/proposal_linked_event: Proposition incluse dans une réalisation
26
28
  decidim/accountability/result_progress_updated_event: Résultat du progrès mis à jour
@@ -121,6 +123,14 @@ fr-CA:
121
123
  create: "%{user_name} a créé la réalisation %{resource_name} dans %{space_name}"
122
124
  delete: "%{user_name} a supprimé la réalisation %{resource_name} dans %{space_name}"
123
125
  update: "%{user_name} a mis à jour la réalisation %{resource_name} dans %{space_name}"
126
+ status:
127
+ create: "%{user_name} a créé le statut %{resource_name}"
128
+ delete: "%{user_name} a supprimé le statut %{resource_name}"
129
+ update: "%{user_name} a mis à jour le statut %{resource_name}"
130
+ timeline_entry:
131
+ create: "%{user_name} a créé l'étape d'évolution de la réalisation %{resource_name}"
132
+ delete: "%{user_name} a supprimé l'étape d'évolution de la réalisation %{resource_name}"
133
+ update: "%{user_name} a mis à jour l'étape d'évolution de la réalisation %{resource_name}"
124
134
  value_types:
125
135
  parent_presenter:
126
136
  not_found: 'Le parent n''a pas été trouvé dans la base de données (ID: %{id})'
@@ -158,8 +168,8 @@ fr-CA:
158
168
  progress: Avancement
159
169
  timeline_entry:
160
170
  fields:
161
- description: Description
162
171
  entry_date: Date
172
+ title: Titre
163
173
  result_m:
164
174
  executed: Exécuté
165
175
  view: Voir
@@ -1,3 +1,4 @@
1
+ ---
1
2
  fr:
2
3
  activemodel:
3
4
  attributes:
@@ -21,6 +22,7 @@ fr:
21
22
  timeline_entry:
22
23
  description: Description
23
24
  entry_date: Date
25
+ title: Titre
24
26
  models:
25
27
  decidim/accountability/proposal_linked_event: Proposition incluse dans une réalisation
26
28
  decidim/accountability/result_progress_updated_event: Résultat du progrès mis à jour
@@ -121,6 +123,14 @@ fr:
121
123
  create: "%{user_name} a créé la réalisation %{resource_name} dans %{space_name}"
122
124
  delete: "%{user_name} a supprimé la réalisation %{resource_name} dans %{space_name}"
123
125
  update: "%{user_name} a mis à jour la réalisation %{resource_name} dans %{space_name}"
126
+ status:
127
+ create: "%{user_name} a créé le statut %{resource_name}"
128
+ delete: "%{user_name} a supprimé le statut %{resource_name}"
129
+ update: "%{user_name} a mis à jour le statut %{resource_name}"
130
+ timeline_entry:
131
+ create: "%{user_name} a créé l'étape d'évolution de la réalisation %{resource_name}"
132
+ delete: "%{user_name} a supprimé l'étape d'évolution de la réalisation %{resource_name}"
133
+ update: "%{user_name} a mis à jour l'étape d'évolution de la réalisation %{resource_name}"
124
134
  value_types:
125
135
  parent_presenter:
126
136
  not_found: 'Le parent n''a pas été trouvé dans la base de données (ID: %{id})'
@@ -158,8 +168,8 @@ fr:
158
168
  progress: Avancement
159
169
  timeline_entry:
160
170
  fields:
161
- description: Description
162
171
  entry_date: Date
172
+ title: Titre
163
173
  result_m:
164
174
  executed: Exécuté
165
175
  view: Voir
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ga:
2
3
  activemodel:
3
4
  attributes: