decidim-accountability 0.19.0 → 0.22.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/decidim/accountability/admin/accountability_admin.js.es6 +6 -42
  3. data/app/assets/stylesheets/decidim/accountability/accountability/_categories.scss +8 -1
  4. data/app/assets/stylesheets/decidim/accountability/accountability/_lines_breadcrumb.scss +8 -0
  5. data/app/assets/stylesheets/decidim/accountability/accountability/_results.scss +0 -3
  6. data/app/cells/decidim/accountability/highlighted_results_for_component/show.erb +3 -3
  7. data/app/cells/decidim/accountability/highlighted_results_for_component_cell.rb +1 -1
  8. data/app/commands/decidim/accountability/admin/create_imported_result.rb +106 -0
  9. data/app/commands/decidim/accountability/admin/update_imported_result.rb +110 -0
  10. data/app/controllers/decidim/accountability/admin/import_results_controller.rb +34 -0
  11. data/app/controllers/decidim/accountability/admin/results_controller.rb +2 -20
  12. data/app/controllers/decidim/accountability/versions_controller.rb +7 -8
  13. data/app/jobs/application_job.rb +4 -0
  14. data/app/jobs/decidim/accountability/admin/import_results_csv_job.rb +19 -0
  15. data/app/mailers/decidim/accountability/import_mailer.rb +26 -0
  16. data/app/models/decidim/accountability/result.rb +9 -0
  17. data/app/queries/decidim/accountability/metrics/results_metric_manage.rb +2 -8
  18. data/app/services/decidim/accountability/results_csv_importer.rb +139 -0
  19. data/app/types/decidim/accountability/accountability_type.rb +32 -0
  20. data/app/types/decidim/accountability/result_type.rb +35 -0
  21. data/app/types/decidim/accountability/status_type.rb +20 -0
  22. data/app/types/decidim/accountability/timeline_entry_type.rb +18 -0
  23. data/app/views/decidim/accountability/admin/import_results/new.html.erb +22 -0
  24. data/app/views/decidim/accountability/admin/results/_form.html.erb +1 -5
  25. data/app/views/decidim/accountability/admin/results/index.html.erb +1 -0
  26. data/app/views/decidim/accountability/admin/results/proposals_picker.html.erb +1 -0
  27. data/app/views/decidim/accountability/import_mailer/import.html.erb +25 -0
  28. data/app/views/decidim/accountability/results/_linked_results.html.erb +1 -1
  29. data/app/views/decidim/accountability/results/_results_leaf.html.erb +5 -5
  30. data/app/views/decidim/accountability/results/_results_parent.html.erb +2 -2
  31. data/app/views/decidim/accountability/results/_scope_filters.html.erb +16 -3
  32. data/app/views/decidim/accountability/results/_search.html.erb +3 -3
  33. data/app/views/decidim/accountability/results/_stats_box.html.erb +11 -4
  34. data/app/views/decidim/accountability/results/_timeline.html.erb +2 -2
  35. data/app/views/decidim/accountability/versions/index.html.erb +7 -25
  36. data/app/views/decidim/accountability/versions/show.html.erb +9 -31
  37. data/app/views/decidim/participatory_spaces/_result.html.erb +3 -3
  38. data/config/locales/ar.yml +1 -24
  39. data/config/locales/bg-BG.yml +220 -0
  40. data/config/locales/ca.yml +19 -22
  41. data/config/locales/cs.yml +44 -47
  42. data/config/locales/da-DK.yml +1 -0
  43. data/config/locales/de.yml +19 -22
  44. data/config/locales/el-GR.yml +1 -0
  45. data/config/locales/el.yml +223 -0
  46. data/config/locales/en.yml +19 -22
  47. data/config/locales/es-MX.yml +19 -22
  48. data/config/locales/es-PY.yml +19 -22
  49. data/config/locales/es.yml +19 -22
  50. data/config/locales/et-EE.yml +1 -0
  51. data/config/locales/eu.yml +1 -24
  52. data/config/locales/fi-plain.yml +19 -22
  53. data/config/locales/fi.yml +32 -35
  54. data/config/locales/fr-CA.yml +222 -0
  55. data/config/locales/fr.yml +18 -22
  56. data/config/locales/ga-IE.yml +1 -0
  57. data/config/locales/gl.yml +1 -24
  58. data/config/locales/hr-HR.yml +1 -0
  59. data/config/locales/hu.yml +18 -22
  60. data/config/locales/id-ID.yml +1 -24
  61. data/config/locales/is-IS.yml +177 -0
  62. data/config/locales/it.yml +37 -40
  63. data/config/locales/ja-JP.yml +221 -0
  64. data/config/locales/lt-LT.yml +1 -0
  65. data/config/locales/lv-LV.yml +218 -0
  66. data/config/locales/mt-MT.yml +1 -0
  67. data/config/locales/nl.yml +19 -23
  68. data/config/locales/no.yml +218 -0
  69. data/config/locales/pl.yml +46 -49
  70. data/config/locales/pt-BR.yml +2 -25
  71. data/config/locales/pt.yml +59 -62
  72. data/config/locales/ro-RO.yml +223 -0
  73. data/config/locales/ru.yml +13 -21
  74. data/config/locales/sk-SK.yml +224 -0
  75. data/config/locales/sk.yml +207 -0
  76. data/config/locales/sl.yml +129 -0
  77. data/config/locales/sr-CS.yml +205 -0
  78. data/config/locales/sv.yml +21 -24
  79. data/config/locales/tr-TR.yml +1 -24
  80. data/config/locales/uk.yml +1 -21
  81. data/db/migrate/20200320105903_index_foreign_keys_in_decidim_accountability_results.rb +7 -0
  82. data/lib/decidim/accountability/admin_engine.rb +4 -3
  83. data/lib/decidim/accountability/component.rb +2 -0
  84. data/lib/decidim/accountability/version.rb +1 -1
  85. metadata +62 -25
  86. data/app/views/decidim/accountability/admin/results/_proposals.html.erb +0 -12
  87. data/app/views/decidim/accountability/versions/_version.html.erb +0 -20
@@ -12,9 +12,9 @@
12
12
  <%= icon "proposals", class: "card--list__icon", remove_icon_class: true %>
13
13
 
14
14
  <%= link_to result, class: "card--list__text card__link card__link--block" do %>
15
- <h5 class="card--list__heading">
15
+ <h3 class="card--list__heading">
16
16
  <%= translated_attribute result.title %>
17
- </h5>
17
+ </h3>
18
18
 
19
19
  <span class="text-small"><%= heading_leaf_level_results(result.children.count) %></span>
20
20
  <% end %>
@@ -3,15 +3,28 @@
3
3
  <div><%= t("results.filters.scopes", scope: "decidim.accountability") %></div>
4
4
 
5
5
  <ul class="tags tags--action">
6
- <li <%= active_class_if_current(nil) %>><%= link_to t("results.filters.all", scope: "decidim.accountability"), url_for(filter: { category_id: category.try(:id) }) %></li>
6
+ <li <%= active_class_if_current(nil) %>>
7
+ <%= link_to url_for(filter: { category_id: category.try(:id) }) do %>
8
+ <span class="show-for-sr"><%= Decidim::Scope.model_name.human(count: 2) %></span>
9
+ <%= t("results.filters.all", scope: "decidim.accountability") %>
10
+ <% end %>
11
+ </li>
7
12
 
8
13
  <% if current_participatory_space.scope %>
9
14
  <li <%= active_class_if_current(current_participatory_space.scope.id) %>>
10
- <%= link_to translated_attribute(current_participatory_space.scope.name), url_for(filter: { scope_id: current_participatory_space.scope.id, category_id: category.try(:id) }) %>
15
+ <%= link_to url_for(filter: { scope_id: current_participatory_space.scope.id, category_id: category.try(:id) }) do %>
16
+ <span class="show-for-sr"><%= Decidim::Scope.model_name.human(count: 1) %></span>
17
+ <%= translated_attribute(current_participatory_space.scope.name) %>
18
+ <% end %>
11
19
  </li>
12
20
  <% end %>
13
21
  <% current_participatory_space.subscopes.each do |scope| %>
14
- <li <%= active_class_if_current(scope.id) %>><%= link_to translated_attribute(scope.name), url_for(filter: { scope_id: scope.id, category_id: category.try(:id) }) %></li>
22
+ <li <%= active_class_if_current(scope.id) %>>
23
+ <%= link_to url_for(filter: { scope_id: scope.id, category_id: category.try(:id) }) do %>
24
+ <span class="show-for-sr"><%= Decidim::Scope.model_name.human(count: 1) %></span>
25
+ <%= translated_attribute(scope.name) %>
26
+ <% end %>
27
+ </li>
15
28
  <% end %>
16
29
  </ul>
17
30
  <% end %>
@@ -1,10 +1,10 @@
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, label: false, class: "input-group-field", placeholder: t(".search"), value: "" %>
4
+ <%= search_field_tag "filter[search_text]", nil, class: "input-group-field", placeholder: t(".search"), value: "", title: t(".search") %>
5
5
  <div class="input-group-button">
6
- <button type="submit" class="button button--muted">
7
- <%= icon "magnifying-glass", aria_label: t(".search") %>
6
+ <button type="submit" class="button">
7
+ <%= icon "magnifying-glass", aria_label: t(".search"), role: "img" %>
8
8
  </button>
9
9
  </div>
10
10
  </div>
@@ -20,10 +20,17 @@
20
20
  <div class="definition-data">
21
21
  <% if result.versions.any? %>
22
22
  <div class="definition-data__item versions_count">
23
- <span class="definition-data__title"><%= t("results.show.stats.version_number", scope: "decidim.accountability") %></span>
24
- <%= result.versions.count %>
25
- <div class="pr-s pl-s">
26
- <%= link_to t("results.show.stats.show_all_versions", scope: "decidim.accountability"), result_versions_path(result), class: "button button--sc hollow secondary small expanded" %>
23
+ <div>
24
+ <%= resource_version_number(result.versions_count, "text-large") %>
25
+ <small class="text-medium">
26
+ <%= resource_version_of(result.versions_count) %>
27
+ </small>
28
+ </div>
29
+
30
+ <div>
31
+ <span class="text-medium">
32
+ <%= link_to_other_resource_versions(result_versions_path(result)) %>
33
+ </span>
27
34
  </div>
28
35
  </div>
29
36
  <% if result.last_editor.present? %>
@@ -12,9 +12,9 @@
12
12
  <span class="timeline__date text-small">
13
13
  <%= timeline_entry.entry_date %>
14
14
  </span>
15
- <h6 class="timeline__title">
15
+ <h4 class="timeline__title">
16
16
  <%= translated_attribute timeline_entry.description %>
17
- </h6>
17
+ </h4>
18
18
  </div>
19
19
  </div>
20
20
  </li>
@@ -1,30 +1,12 @@
1
1
  <div class="row accountability">
2
2
  <div class="small-12 columns">
3
- <%= render partial: "decidim/accountability/results/nav_breadcrumb", locals: { category: result.parent.try(:category) || result.try(:category) } %>
3
+ <%= render partial: "decidim/accountability/results/nav_breadcrumb", locals: { category: versioned_resource.parent.try(:category) || versioned_resource.try(:category) } %>
4
4
  </div>
5
- <div class="small-12 columns">
6
- <h2 class="heading2"><%= t(".changes_at_title", title: translated_attribute(result.title)) %></h2>
7
- <h3 class="section-heading"><%= t(".title") %></h3>
8
- <div class="row">
9
- <div class="mediumlarge-8 columns">
10
- <div class="section">
11
- <div class="card card--list">
12
- <% result.versions.each_with_index do |version, index| %>
13
- <%= render partial: "version", locals: { version: version, index: index } %>
14
- <% end %>
15
- </div>
16
- </div>
17
- </div>
18
5
 
19
- <div class="columns section mediumlarge-4 large-3">
20
- <div class="card extra definition-data">
21
- <div class="definition-data__item versions_count">
22
- <span class="definition-data__title"><%= t("results.show.stats.number_of_versions", scope: "decidim.accountability") %></span>
23
- <%= result.versions.count %>
24
- <%= link_to t("results.show.stats.back_to_result", scope: "decidim.accountability"), result_path(result), class: "button button--sc hollow secondary small expanded" %>
25
- </div>
26
- </div>
27
- </div>
28
- </div>
29
- </div>
6
+ <%= cell(
7
+ "decidim/versions_list",
8
+ versioned_resource,
9
+ version_path: proc { |version_index| url_for(action: :show, id: version_index) },
10
+ i18n_scope: "decidim.accountability.results.show.stats"
11
+ ) %>
30
12
  </div>
@@ -2,37 +2,15 @@
2
2
  <%= javascript_include_tag "decidim/accountability/accountability" %>
3
3
  <div class="row accountability">
4
4
  <div class="small-12 columns">
5
- <%= render partial: "decidim/accountability/results/nav_breadcrumb", locals: { category: result.parent.try(:category) || result.try(:category) } %>
5
+ <%= render partial: "decidim/accountability/results/nav_breadcrumb", locals: { category: versioned_resource.parent.try(:category) || versioned_resource.try(:category) } %>
6
6
  </div>
7
- <div class="small-12 columns">
8
- <h2 class="heading2"><%= t(".changes_at_title", title: translated_attribute(result.title)) %></h2>
9
- <div class="row">
10
- <div class="mediumlarge-8 columns">
11
- <div class="section">
12
- <%= cell("decidim/diff", current_version) %>
13
- </div>
14
- </div>
15
7
 
16
- <div class="columns section mediumlarge-4 large-3">
17
- <div class="card extra definition-data">
18
- <div class="definition-data__item versions_count">
19
- <span class="definition-data__title"><%= t("results.show.stats.version_number", scope: "decidim.accountability") %></span>
20
- <%= t("results.show.stats.version_number_out_of_total", scope: "decidim.accountability", current_version: params[:id], total_count: result.versions_count) %>
21
- <%= link_to t("results.show.stats.show_all_versions", scope: "decidim.accountability"), result_versions_path(result), class: "button button--sc hollow secondary small expanded" %>
22
- <%= link_to t("results.show.stats.back_to_result", scope: "decidim.accountability"), result_path(result), class: "button button--sc hollow secondary small expanded" %>
23
- </div>
24
- <% if current_version.whodunnit.present? %>
25
- <div class="definition-data__item last_revision_by">
26
- <span class="definition-data__title"><%= t("results.show.stats.version_author", scope: "decidim.accountability") %></span>
27
- <%= render_resource_editor(current_version) %>
28
- </div>
29
- <% end %>
30
- <div class="definition-data__item versions_count">
31
- <span class="definition-data__title"><%= t("results.show.stats.version_created_at", scope: "decidim.accountability") %></span>
32
- <%= l current_version.created_at, format: :decidim_short %>
33
- </div>
34
- </div>
35
- </div>
36
- </div>
37
- </div>
8
+ <%= cell(
9
+ "decidim/version",
10
+ current_version,
11
+ index: params[:id],
12
+ versioned_resource: versioned_resource,
13
+ versions_path: proc { url_for(action: :index) },
14
+ i18n_scope: "decidim.accountability.results.show.stats"
15
+ ) %>
38
16
  </div>
@@ -1,10 +1,10 @@
1
1
  <div class="card--list__item">
2
- <%= icon "actions", class: "card--list__icon", remove_icon_class: true %>
2
+ <%= icon "actions", class: "card--list__icon", role: "img", "aria-hidden": true, remove_icon_class: true %>
3
3
 
4
4
  <%= link_to resource_locator(result).path, class: "card--list__text card__link card__link--block" do %>
5
- <h5 class="card--list__heading">
5
+ <h4 class="card--list__heading heading6">
6
6
  <%= translated_attribute(result.title) %>
7
- </h5>
7
+ </h4>
8
8
 
9
9
  <div class="text-small card--meta">
10
10
  <% if result.start_date %>
@@ -62,17 +62,11 @@ ar:
62
62
  edit:
63
63
  title: تحرير النتيجة
64
64
  update: تحديث النتيجة
65
- form:
66
- add_proposal: إضافة اقتراح
67
65
  index:
68
66
  title: النتائج
69
67
  new:
70
68
  create: إنشاء نتيجة
71
69
  title: نتيجة جديدة
72
- proposals:
73
- close: قريب
74
- current_selection: الإختيار الحالي
75
- select: تحديد
76
70
  update:
77
71
  invalid: حدثت مشكلة أثناء تحديث هذه النتيجة
78
72
  success: تم تحديث النتيجة بنجاح
@@ -165,30 +159,16 @@ ar:
165
159
  show:
166
160
  stats:
167
161
  attendees: الحاضرين
168
- back_to_result: العودة إلى النتيجة
162
+ back_to_resource: العودة إلى النتيجة
169
163
  comments: تعليقات
170
164
  contributions: مساهمات
171
165
  last_edited_by: التعديل الأخير تم بواسطة
172
166
  last_updated_at: آخر تحديث في
173
167
  meetings: اجتماعات
174
- number_of_versions: إصدارات
175
168
  proposals: اقتراحات
176
- show_all_versions: عرض جميع الإصدارات
177
- version_author: مؤلف الإصدار
178
- version_created_at: تم إنشاء الإصدار في
179
- version_number: رقم الإصدار
180
- version_number_out_of_total: "%{current_version} من %{total_count}"
181
169
  votes: الدعم
182
170
  timeline:
183
171
  title: تطور المشروع
184
- versions:
185
- index:
186
- changes_at_title: التغييرات في "%{title}"
187
- title: إصدارات
188
- show:
189
- changes_at_title: التغييرات في "%{title}"
190
- version:
191
- version_index: الإصدار %{index}
192
172
  components:
193
173
  accountability:
194
174
  name: المسائلة
@@ -224,9 +204,6 @@ ar:
224
204
  participatory_process_groups:
225
205
  highlighted_results:
226
206
  results: النتائج
227
- participatory_spaces:
228
- highlighted_results:
229
- see_all: شاهد الكل (%{count})
230
207
  resource_links:
231
208
  included_projects:
232
209
  result_project: المشاريع المدرجة في هذه النتيجة
@@ -0,0 +1,220 @@
1
+ bg:
2
+ activemodel:
3
+ attributes:
4
+ result:
5
+ decidim_accountability_status_id: Статус
6
+ decidim_category_id: Категория
7
+ decidim_scope_id: Сфера
8
+ description: Описание
9
+ end_date: Крайна дата
10
+ progress: Напредък
11
+ project_ids: Включени проекти
12
+ proposals: Включени предложения
13
+ start_date: Начална дата
14
+ title: Заглавие
15
+ updated_at: Обновен на
16
+ status:
17
+ description: Описание
18
+ key: Ключ
19
+ name: Име
20
+ progress: Напредък
21
+ timeline_entry:
22
+ description: Описание
23
+ entry_date: Дата
24
+ models:
25
+ decidim/accountability/proposal_linked_event: Предложение, включено в резултата
26
+ decidim/accountability/result_progress_updated_event: Напредъкът на резултатите е актуализиран
27
+ activerecord:
28
+ models:
29
+ decidim/accountability/result:
30
+ one: Резултат
31
+ other: Резултати
32
+ decidim:
33
+ accountability:
34
+ actions:
35
+ confirm_destroy: Сигурни ли сте, че искате да изтриете това %{name}?
36
+ destroy: Изтрий
37
+ edit: Редактирай
38
+ import_csv: Импорт CVS
39
+ new: Ново %{name}
40
+ preview: Преглед
41
+ timeline_entries: Развитие на проекта
42
+ title: Действия
43
+ admin:
44
+ exports:
45
+ results: Резултати
46
+ import_results:
47
+ new:
48
+ import: Внасяне
49
+ info: "<p>Препоръчваме ви да изпълните следните стъпки:</p><ol><li>Създайте статусите на резултатите, които искате да добавите (<a href='%{link_new_status}' target='_blank'>връзка</a>)</li><li>Създайте поне един Резултат ръчно чрез администраторския панел (<a href='%{link_new_result}' target='_blank'>връзка</a>), преди да използвате Импортиране, за с по-добро разбиране на формата и това, което ще трябва да попълните.</li><li>Изтеглете експортиране с CSV формат (%{link_export_csv})</li><li> Направете промените локално. Можете да промените само следните колони от CSV:</li></ol><ul><li><b>категория/id:</b> ID за категорията</li><li><b>обхват/id:</b>ИД за обхвата</li><li><b> родител / id: </b> ID на родителя (за свързани резултати). Незадължително </li><li><b>заглавие/I18N:</b>Заглавие на езика X</li><li><b>описание/I18N </b>Описание на X език</li>< li><b>начало_дата:</b>дата, когато резултатът стартира изпълнението (формат ГГГГ-ММ-DD)</li><li><b>край_ дата:</b>дата, когато резултатът приключи изпълнението (формат ГГГГ-MM-DD)</li><li><b>status/id:</b>ID на състоянието за този резултат</li><li><b>прогрес:</b>Процент (от 0 до 100) на изпълнението</li><li><b>offers_ids:</b>вътрешен ID на свързаните предложения (разделени със запетая). Той автоматично се преобразува в <span class='attribute-name'>предложение_url</span></li></ul>"
50
+ link: връзка
51
+ title: Импортирай резултати от CSV
52
+ imports:
53
+ create:
54
+ success: Файлът започна да се импортира. В следващите минути ще получите ел. поща с резултата от импортирането
55
+ models:
56
+ result:
57
+ name: Резултат
58
+ status:
59
+ name: Статус
60
+ timeline_entry:
61
+ name: Запис във времевата линия
62
+ results:
63
+ create:
64
+ invalid: Възникна проблем при създаване на резултата
65
+ success: Резултата е създаден успешно
66
+ destroy:
67
+ success: Резултата е изтрит успешно
68
+ edit:
69
+ title: Редактирай резултат
70
+ update: Обнови резултат
71
+ index:
72
+ title: Резултати
73
+ new:
74
+ create: Създай резултат
75
+ title: Нови резултати
76
+ update:
77
+ invalid: Възникна проблем при обновяването на резултата
78
+ success: Резултата е обновен успешно
79
+ shared:
80
+ subnav:
81
+ statuses: Статуси
82
+ statuses:
83
+ create:
84
+ invalid: Възникна проблем при създаване на статуса
85
+ success: Статуса е създаден успешно
86
+ destroy:
87
+ success: Статуса е изтрит успешно
88
+ edit:
89
+ title: Редактирай на статуса
90
+ update: Обнови на статус
91
+ index:
92
+ title: Статуси
93
+ new:
94
+ create: Създай статус
95
+ title: Нов статус
96
+ update:
97
+ invalid: Възникна проблем при обновяване на статуса
98
+ success: Статуса е обновен успешно
99
+ timeline_entries:
100
+ create:
101
+ invalid: Възникна проблем при създаване на записа
102
+ success: Записа е създаден успешно
103
+ destroy:
104
+ success: Записа е изтрит успешно
105
+ edit:
106
+ title: Редактирай на запис
107
+ update: Обнови на запис
108
+ index:
109
+ title: Запис във времевата линия
110
+ new:
111
+ create: Създай запис
112
+ title: Нов запис
113
+ update:
114
+ invalid: Възникна проблем при обновяване на записа
115
+ success: Записа е обновен успешно
116
+ admin_log:
117
+ result:
118
+ create: "%{user_name} създаде резултата %{resource_name} в %{space_name}"
119
+ delete: "%{user_name} изтри резултата %{resource_name} в %{space_name}"
120
+ update: "%{user_name} обнови резултата %{resource_name} в %{space_name}"
121
+ value_types:
122
+ parent_presenter:
123
+ not_found: 'Родителя липсва в базата данни (ID: %{id})'
124
+ import_mailer:
125
+ import:
126
+ errors: Грешки
127
+ errors_present: Възникна проблем при внасяне на резултата
128
+ row_number: Редове
129
+ subject: Успешно внасяне на резултати
130
+ success: Успешно внасяне на резултати. Може да ги прегледате в администраторския интерфейс.
131
+ last_activity:
132
+ new_result_at_html: "<span>Нов резултат в %{link}</span>"
133
+ models:
134
+ result:
135
+ fields:
136
+ end_date: Крайна дата
137
+ progress: Напредък
138
+ start_date: Начална дата
139
+ status: Статус
140
+ title: Заглавие
141
+ status:
142
+ fields:
143
+ description: Описание
144
+ key: Ключ
145
+ name: Име
146
+ progress: Напредък
147
+ timeline_entry:
148
+ fields:
149
+ description: Описание
150
+ entry_date: Дата
151
+ results:
152
+ count:
153
+ results_count:
154
+ one: 1 резултат
155
+ other: "%{count} резултата"
156
+ filters:
157
+ all: Всички
158
+ scopes: Сфери
159
+ home:
160
+ categories_label: Категории
161
+ subcategories_label: Подкатегории
162
+ home_header:
163
+ global_status: Общо състояние на изпълнение
164
+ nav_breadcrumb:
165
+ global: Общо изпълнение
166
+ search:
167
+ search: Търсене на действия
168
+ show:
169
+ stats:
170
+ attendees: Присъстващи
171
+ back_to_resource: Върни се към резултата
172
+ comments: Коментари
173
+ contributions: Предложения
174
+ last_edited_by: Последна промяна на
175
+ last_updated_at: Последно обновен на
176
+ meetings: Срещи
177
+ proposals: Предложения
178
+ votes: Поддръжки
179
+ timeline:
180
+ title: Развитие на проекта
181
+ components:
182
+ accountability:
183
+ name: Отговорност
184
+ settings:
185
+ global:
186
+ categories_label: Име за "категории"
187
+ comments_enabled: Коментарите са разрешени
188
+ display_progress_enabled: Показвай развитието
189
+ heading_leaf_level_results: Име за "Проекти"
190
+ heading_parent_level_results: Име за "Резултати"
191
+ intro: Въведение
192
+ subcategories_label: Име за "подкатегории"
193
+ step:
194
+ comments_blocked: Коментарите са блокирани
195
+ events:
196
+ accountability:
197
+ proposal_linked:
198
+ email_intro: 'Предложението "%{proposal_title}" е включено в резултата. Можете да го видите на страницата:'
199
+ email_outro: Получавате това известие, защото следвате "%{proposal_title}". Може да прекратите известията чрез предната връзка.
200
+ email_subject: Обновление в %{proposal_title}
201
+ notification_title: Предложението <a href="%{proposal_path}">%{proposal_title}</a> е включено в резултата <a href="%{resource_path}">%{resource_title}</a>.
202
+ result_progress_updated:
203
+ email_intro: 'Резултата "%{resource_title}", който включва предложението "%{proposal_title}", е завършен на %{progress}%. Можете да го видите на тази страница:'
204
+ email_outro: Получавате това известие, защото следвате "%{proposal_title}" и това предложение е включено в резултата %{resource_title}. Може да прекратите известията чрез предната връзка.
205
+ email_subject: Напредък в обновлението на %{resource_title}
206
+ notification_title: Резултатът <a href="%{resource_path}">%{resource_title}</a>, който включва предложението <a href="%{proposal_path}">%{proposal_title}</a>, е завършен %{progress}%.
207
+ metrics:
208
+ results:
209
+ description: Брой генерирани резултати
210
+ object: резултати
211
+ title: Резултати
212
+ participatory_processes:
213
+ participatory_process_groups:
214
+ highlighted_results:
215
+ results: Резултати
216
+ resource_links:
217
+ included_projects:
218
+ result_project: Проекти, включени в резултата
219
+ included_proposals:
220
+ result_proposal: Предложения, включени в резултата