decidim-accountability 0.27.10 → 0.28.0.rc4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/accountability/content_blocks/highlighted_results_cell.rb +3 -8
- data/app/cells/decidim/accountability/highlighted_results/show.erb +3 -1
- data/app/cells/decidim/accountability/highlighted_results_for_component/show.erb +19 -19
- data/app/cells/decidim/accountability/highlighted_results_for_component_cell.rb +29 -6
- data/app/cells/decidim/accountability/project/show.erb +11 -0
- data/app/cells/decidim/accountability/project/timeline.erb +22 -0
- data/app/cells/decidim/accountability/project_cell.rb +75 -0
- data/app/cells/decidim/accountability/result_activity_cell.rb +1 -4
- data/app/cells/decidim/accountability/result_card_cell.rb +21 -0
- data/app/cells/decidim/accountability/result_cell.rb +2 -2
- data/app/cells/decidim/accountability/result_l/extra_data.erb +3 -0
- data/app/cells/decidim/accountability/result_l_cell.rb +30 -0
- data/app/cells/decidim/accountability/result_metadata/project_aside.erb +6 -0
- data/app/cells/decidim/accountability/result_metadata/show_footer.erb +11 -0
- data/app/cells/decidim/accountability/result_metadata/versions.erb +1 -0
- data/app/cells/decidim/accountability/result_metadata_cell.rb +136 -0
- data/app/cells/decidim/accountability/results/show.erb +7 -0
- data/app/cells/decidim/accountability/results_cell.rb +14 -0
- data/app/cells/decidim/accountability/status/show.erb +9 -0
- data/app/cells/decidim/accountability/status/status.erb +16 -0
- data/app/cells/decidim/accountability/status_cell.rb +91 -0
- data/app/commands/decidim/accountability/admin/import_projects_to_accountability.rb +37 -0
- data/app/controllers/concerns/decidim/accountability/admin/filterable.rb +2 -2
- data/app/controllers/decidim/accountability/admin/import_results_controller.rb +18 -6
- data/app/controllers/decidim/accountability/admin/projects_import_controller.rb +31 -0
- data/app/controllers/decidim/accountability/admin/results_controller.rb +4 -5
- data/app/controllers/decidim/accountability/admin/statuses_controller.rb +3 -3
- data/app/controllers/decidim/accountability/admin/timeline_entries_controller.rb +3 -3
- data/app/controllers/decidim/accountability/results_controller.rb +20 -2
- data/app/events/decidim/accountability/proposal_linked_event.rb +18 -1
- data/app/events/decidim/accountability/result_progress_updated_event.rb +18 -2
- data/app/forms/decidim/accountability/admin/import_results_form.rb +22 -0
- data/app/forms/decidim/accountability/admin/result_import_projects_form.rb +51 -0
- data/app/helpers/decidim/accountability/admin/application_helper.rb +1 -0
- data/app/helpers/decidim/accountability/application_helper.rb +43 -2
- data/app/helpers/decidim/accountability/breadcrumb_helper.rb +10 -0
- data/app/jobs/decidim/accountability/admin/import_projects_job.rb +72 -0
- data/app/mailers/decidim/accountability/import_projects_mailer.rb +25 -0
- data/app/models/decidim/accountability/result.rb +1 -1
- data/app/packs/entrypoints/decidim_accountability.js +4 -1
- data/app/packs/entrypoints/decidim_accountability_admin_imports.js +3 -0
- data/app/packs/images/decidim/accountability/breadcrumb_arrow.svg +3 -0
- data/app/packs/src/decidim/accountability/admin/imports.js +15 -0
- data/app/packs/stylesheets/accountability.scss +169 -0
- data/app/permissions/decidim/accountability/admin/permissions.rb +17 -6
- data/app/presenters/decidim/accountability/admin_log/result_presenter.rb +2 -2
- data/app/presenters/decidim/accountability/admin_log/status_presenter.rb +2 -2
- data/app/presenters/decidim/accountability/admin_log/timeline_entry_presenter.rb +2 -2
- data/app/queries/decidim/accountability/metrics/results_metric_manage.rb +1 -1
- data/app/services/decidim/accountability/results_calculator.rb +1 -1
- data/app/services/decidim/accountability/results_csv_importer.rb +2 -2
- data/app/views/decidim/accountability/admin/import_results/new.html.erb +27 -23
- data/app/views/decidim/accountability/admin/projects_import/new.html.erb +45 -0
- data/app/views/decidim/accountability/admin/results/_form.html.erb +46 -46
- data/app/views/decidim/accountability/admin/results/edit.html.erb +18 -7
- data/app/views/decidim/accountability/admin/results/index.html.erb +102 -91
- data/app/views/decidim/accountability/admin/results/new.html.erb +18 -8
- data/app/views/decidim/accountability/admin/shared/_subnav.html.erb +1 -1
- data/app/views/decidim/accountability/admin/statuses/_form.html.erb +15 -17
- data/app/views/decidim/accountability/admin/statuses/edit.html.erb +16 -6
- data/app/views/decidim/accountability/admin/statuses/index.html.erb +33 -36
- data/app/views/decidim/accountability/admin/statuses/new.html.erb +16 -6
- data/app/views/decidim/accountability/admin/timeline_entries/_form.html.erb +12 -14
- data/app/views/decidim/accountability/admin/timeline_entries/edit.html.erb +17 -6
- data/app/views/decidim/accountability/admin/timeline_entries/index.html.erb +35 -34
- data/app/views/decidim/accountability/admin/timeline_entries/new.html.erb +17 -6
- data/app/views/decidim/accountability/import_projects_mailer/import.html.erb +2 -0
- data/app/views/decidim/accountability/results/_home_categories.html.erb +28 -73
- data/app/views/decidim/accountability/results/_linked_results.html.erb +3 -12
- data/app/views/decidim/accountability/results/_project.html.erb +29 -0
- data/app/views/decidim/accountability/results/_projects_aside.html.erb +40 -0
- data/app/views/decidim/accountability/results/_scope_filters.html.erb +27 -27
- data/app/views/decidim/accountability/results/_search.html.erb +15 -9
- data/app/views/decidim/accountability/results/_stats_box.html.erb +3 -3
- data/app/views/decidim/accountability/results/home.html.erb +34 -8
- data/app/views/decidim/accountability/results/index.html.erb +15 -15
- data/app/views/decidim/accountability/results/index.js.erb +3 -0
- data/app/views/decidim/accountability/results/show.html.erb +9 -10
- data/app/views/decidim/accountability/versions/show.html.erb +13 -10
- data/app/views/decidim/participatory_spaces/_result.html.erb +4 -4
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +23 -61
- data/config/locales/bg.yml +0 -96
- data/config/locales/ca.yml +54 -31
- data/config/locales/cs.yml +58 -29
- data/config/locales/da.yml +1 -36
- data/config/locales/de.yml +59 -36
- data/config/locales/el.yml +62 -29
- data/config/locales/en.yml +55 -31
- data/config/locales/es-MX.yml +52 -29
- data/config/locales/es-PY.yml +52 -29
- data/config/locales/es.yml +55 -32
- data/config/locales/eu.yml +53 -30
- data/config/locales/fi-plain.yml +51 -28
- data/config/locales/fi.yml +54 -31
- data/config/locales/fr-CA.yml +51 -28
- data/config/locales/fr.yml +52 -29
- data/config/locales/ga-IE.yml +0 -4
- data/config/locales/gl.yml +0 -41
- data/config/locales/hu.yml +41 -29
- data/config/locales/id-ID.yml +1 -30
- data/config/locales/is-IS.yml +0 -32
- data/config/locales/it.yml +0 -43
- data/config/locales/ja.yml +55 -39
- data/config/locales/kaa.yml +20 -1
- data/config/locales/ko.yml +0 -188
- data/config/locales/lb.yml +1 -42
- data/config/locales/lt.yml +60 -41
- data/config/locales/lv.yml +1 -36
- data/config/locales/nl.yml +0 -41
- data/config/locales/no.yml +8 -49
- data/config/locales/pl.yml +17 -61
- data/config/locales/pt-BR.yml +41 -29
- data/config/locales/pt.yml +0 -42
- data/config/locales/ro-RO.yml +39 -66
- data/config/locales/ru.yml +1 -30
- data/config/locales/si-LK.yml +0 -4
- data/config/locales/sk.yml +1 -40
- data/config/locales/sl.yml +0 -11
- data/config/locales/sq-AL.yml +82 -7
- data/config/locales/sr-CS.yml +1 -30
- data/config/locales/sv.yml +36 -51
- data/config/locales/th-TH.yml +0 -140
- data/config/locales/tr-TR.yml +9 -75
- data/config/locales/uk.yml +1 -28
- data/config/locales/zh-CN.yml +1 -36
- data/config/locales/zh-TW.yml +52 -43
- data/lib/decidim/accountability/admin_engine.rb +3 -2
- data/lib/decidim/accountability/component.rb +4 -99
- data/lib/decidim/accountability/engine.rb +9 -1
- data/lib/decidim/accountability/result_serializer.rb +1 -1
- data/lib/decidim/accountability/seeds.rb +115 -0
- data/lib/decidim/accountability/test/factories.rb +18 -29
- data/lib/decidim/accountability/version.rb +1 -1
- data/lib/decidim/api/result_type.rb +1 -0
- metadata +62 -51
- data/app/cells/decidim/accountability/content_blocks/highlighted_results/elements.erb +0 -5
- data/app/cells/decidim/accountability/content_blocks/highlighted_results/heading.erb +0 -1
- data/app/cells/decidim/accountability/result_m/data.erb +0 -23
- data/app/cells/decidim/accountability/result_m/footer.erb +0 -22
- data/app/cells/decidim/accountability/result_m/tags.erb +0 -1
- data/app/cells/decidim/accountability/result_m_cell.rb +0 -37
- data/app/events/decidim/accountability/base_result_event.rb +0 -29
- data/app/packs/stylesheets/decidim/accountability/_accountability.scss +0 -4
- data/app/packs/stylesheets/decidim/accountability/accountability/_cards.scss +0 -11
- data/app/packs/stylesheets/decidim/accountability/accountability/_categories.scss +0 -121
- data/app/packs/stylesheets/decidim/accountability/accountability/_lines_breadcrumb.scss +0 -37
- data/app/packs/stylesheets/decidim/accountability/accountability/_results.scss +0 -148
- data/app/views/decidim/accountability/admin/results/proposals_picker.html.erb +0 -1
- data/app/views/decidim/accountability/result_widgets/show.html.erb +0 -2
- data/app/views/decidim/accountability/results/_home_header.html.erb +0 -23
- data/app/views/decidim/accountability/results/_results_leaf.html.erb +0 -47
- data/app/views/decidim/accountability/results/_results_parent.html.erb +0 -32
- data/app/views/decidim/accountability/results/_show_leaf.html.erb +0 -81
- data/app/views/decidim/accountability/results/_show_parent.html.erb +0 -30
- data/app/views/decidim/accountability/results/_stats.html.erb +0 -15
- data/app/views/decidim/accountability/results/_timeline.html.erb +0 -30
- data/app/views/decidim/accountability/versions/index.html.erb +0 -12
- data/config/locales/he-IL.yml +0 -219
- data/decidim-accountability.gemspec +0 -38
data/config/locales/ar.yml
CHANGED
@@ -8,6 +8,7 @@ ar:
|
|
8
8
|
decidim_scope_id: نطاق
|
9
9
|
description: وصف
|
10
10
|
end_date: تاريخ الانتهاء
|
11
|
+
meetings_ids: الاجتماعات ذات الصلة
|
11
12
|
progress: تقدم
|
12
13
|
project_ids: المشاريع المدرجة
|
13
14
|
proposals: المقترحات المدرجة
|
@@ -43,8 +44,6 @@ ar:
|
|
43
44
|
confirm_destroy: هل أنت متأكد أنك تريد حذف هذا %{name}؟
|
44
45
|
destroy: حذف
|
45
46
|
edit: تعديل
|
46
|
-
import_csv: استيراد CSV
|
47
|
-
new: '%{name} جديد'
|
48
47
|
preview: معاينة
|
49
48
|
timeline_entries: تطور المشروع
|
50
49
|
title: الإجراءات
|
@@ -56,43 +55,28 @@ ar:
|
|
56
55
|
new:
|
57
56
|
download_export: تحميل التصدير بصيغه CSV
|
58
57
|
import: استيراد
|
59
|
-
info: |
|
60
|
-
<p>نحن ننصح باتباع هذه الخطوات:</p>
|
61
|
-
<ol>
|
62
|
-
<li>قم بإنشاء حالات النتائج التي تريد إضافتها (<a href="%{link_new_status}" target="_blank">الرابط</a>)</li>
|
63
|
-
<li>قم بإنشاء نتيجة واحدة على الأقل يدويًا من خلال لوحة المدير هذه (<a href="%{link_new_result}" target="_blank">link</a>) قبل أستخدام الاستيراد, للحصول على فهم أفضل للتنسيق وما ستحتاج لملئه.</li>
|
64
|
-
<li>قم بتنزيل التصدير بتنسيق CSV(%{link_export_csv})</li>
|
65
|
-
<li>قم بإجراء التغييرات محليًا على جهازك. يمكنك فقط تغيير الأعمدة التالية من ملف CSV:</li>
|
66
|
-
</ol>
|
67
|
-
<ul>
|
68
|
-
<li><b>category/id:</b>رقم مٌعرف للفئه</li>
|
69
|
-
<li><b>scope/id:</b>رقم مٌعرف للمجال</li>
|
70
|
-
<li><b>parent/id:</b> رقم مٌعرف بالأب (للنتائج ذات الصلة). اختياري</li>
|
71
|
-
<li><b>title/I18N:</b> عنوان اللغه</li>
|
72
|
-
<li><b>description/I18N:</b> وصف اللغه</li>
|
73
|
-
<li><b>start_date:</b>التاريخ الذي يبدأ فيه تنفيذ النتيجة (التنسيق YYYY-MM-DD)</li>
|
74
|
-
<li><b>end_date:</b> التاريخ الذي ينتهى فيه تنفيذ النتيجة (التنسيق YYYY-MM-DD</li>
|
75
|
-
<li><b>status/id:</b> رقم مٌعرف لحالة النتيجة</li>
|
76
|
-
<li><b>progress:</b> النسبة المئوية (من 0 الى 100) للتنفيذ</li>
|
77
|
-
<li><b>proposals_ids:</b> رقم مُعرف داخلى للمقترحات ذات الصلة (مفصولاً بفاصلة). يتم تحويله تلقائيًا إلى <span class="attribute-name">رابط للمقترح</span></li>
|
78
|
-
</ul>
|
79
|
-
title: استيراد النتائج من ملف CSV
|
80
|
-
imports:
|
81
|
-
create:
|
82
|
-
success: لقد بدأ استيراد الملف. سوف تتلقى رسالة بريد إلكتروني في غصون الدقائق القادمة مع نتيجة الاستيراد
|
83
58
|
models:
|
84
59
|
result:
|
85
60
|
name: نتيجة
|
86
61
|
status:
|
87
62
|
name: الحالة
|
88
|
-
|
89
|
-
name: دخول الجدول الزمني
|
90
|
-
results:
|
63
|
+
projects_import:
|
91
64
|
create:
|
92
|
-
invalid:
|
93
|
-
|
94
|
-
|
95
|
-
|
65
|
+
invalid: كان هناك مشكله فى استيراد المشاريع إلى النتائج, يرجى اتباع التعليمات بعناية و التأكد من اختيار مشاريع للتنفيذ.
|
66
|
+
new:
|
67
|
+
create: استيراد
|
68
|
+
import_all_selected_projects: استيراد جميع المشاريع المحددة للتنفيذ
|
69
|
+
new_items:
|
70
|
+
zero: "%{count} مشروع محدد سوف يتم إستيراده"
|
71
|
+
one: مشروع واحد محدد سوف يتم إستيراده
|
72
|
+
two: "مشروع واحد محدد سوف يتم إستيراده"
|
73
|
+
few: "مشروع واحد محدد سوف يتم إستيراده"
|
74
|
+
many: "مشروع واحد محدد سوف يتم إستيراده"
|
75
|
+
other: "%{count} مشروع محدد سوف يتم إستيراده"
|
76
|
+
no_components: لا توجد أى مقومات فى الميزانيه فى هذا الحيز لتوريد المشاريع إلى نتائج.
|
77
|
+
origin_component_id: عنصر أساسى
|
78
|
+
select_component: اختيار المكون
|
79
|
+
results:
|
96
80
|
edit:
|
97
81
|
title: تحرير النتيجة
|
98
82
|
update: تحديث النتيجة
|
@@ -101,18 +85,10 @@ ar:
|
|
101
85
|
new:
|
102
86
|
create: إنشاء نتيجة
|
103
87
|
title: نتيجة جديدة
|
104
|
-
update:
|
105
|
-
invalid: حدثت مشكلة أثناء تحديث هذه النتيجة
|
106
|
-
success: تم تحديث النتيجة بنجاح
|
107
88
|
shared:
|
108
89
|
subnav:
|
109
90
|
statuses: الحالات
|
110
91
|
statuses:
|
111
|
-
create:
|
112
|
-
invalid: كانت هناك مشكلة في إنشاء هذه الحالة
|
113
|
-
success: تم إنشاء الحالة بنجاح
|
114
|
-
destroy:
|
115
|
-
success: تم حذف الحالة بنجاح
|
116
92
|
edit:
|
117
93
|
title: تحرير الحالة
|
118
94
|
update: تحديث الحالة
|
@@ -121,15 +97,7 @@ ar:
|
|
121
97
|
new:
|
122
98
|
create: إنشاء الحالة
|
123
99
|
title: حالة جديدة
|
124
|
-
update:
|
125
|
-
invalid: حدثت مشكلة أثناء تحديث هذه الحالة
|
126
|
-
success: تم تحديث الحالة بنجاح
|
127
100
|
timeline_entries:
|
128
|
-
create:
|
129
|
-
invalid: حدثت مشكلة أثناء إنشاء هذا الإدخال
|
130
|
-
success: تم إنشاء الدخول بنجاح
|
131
|
-
destroy:
|
132
|
-
success: تم حذف الإدخال بنجاح
|
133
101
|
edit:
|
134
102
|
title: تحرير الإدخال
|
135
103
|
update: تحديث الإدخال
|
@@ -138,9 +106,6 @@ ar:
|
|
138
106
|
new:
|
139
107
|
create: إنشاء الإدخال
|
140
108
|
title: إدخال جديد
|
141
|
-
update:
|
142
|
-
invalid: حدثت مشكلة أثناء تحديث هذا الإدخال
|
143
|
-
success: تم تحديث الإدخال بنجاح
|
144
109
|
admin_log:
|
145
110
|
result:
|
146
111
|
create: "%{user_name} أنشأ النتيجة %{resource_name} في %{space_name}"
|
@@ -159,18 +124,19 @@ ar:
|
|
159
124
|
not_found: 'لم يتم العثور على الأصل في قاعدة البيانات (الرقم-المُعرف: %{id})'
|
160
125
|
content_blocks:
|
161
126
|
highlighted_results:
|
162
|
-
dates: التواريخ
|
163
127
|
results: النتائج
|
164
|
-
unspecified: غير محدد
|
165
128
|
import_mailer:
|
166
129
|
import:
|
167
130
|
errors: أخطاء
|
168
|
-
errors_present: حدثت مشكلة في استيراد النتائج
|
169
131
|
row_number: الصف
|
170
132
|
subject: استيراد النتائج بنجاح
|
171
133
|
success: نجاح استيراد النتائج. يمكنك مراجعة النتائج في واجهة الإدارة.
|
134
|
+
import_projects_mailer:
|
135
|
+
import:
|
136
|
+
subject: استيراد المشاريع بنجاح
|
137
|
+
success: النتائج المستوردة إلى النتائج في مكون %{component_name}. يمكن معاينة النتائج في واجهة الإدارة.
|
172
138
|
last_activity:
|
173
|
-
|
139
|
+
new_result: 'النتيجة الجديدة:'
|
174
140
|
models:
|
175
141
|
result:
|
176
142
|
fields:
|
@@ -193,9 +159,6 @@ ar:
|
|
193
159
|
fields:
|
194
160
|
entry_date: تاريخ
|
195
161
|
title: العنوان
|
196
|
-
result_m:
|
197
|
-
executed: تم التنفيذ
|
198
|
-
view: عرض
|
199
162
|
results:
|
200
163
|
count:
|
201
164
|
results_count:
|
@@ -207,7 +170,6 @@ ar:
|
|
207
170
|
other: "%{count} النتائج"
|
208
171
|
filters:
|
209
172
|
all: الكل
|
210
|
-
scopes: نطاقات
|
211
173
|
home:
|
212
174
|
categories_label: الفئات
|
213
175
|
subcategories_label: الفئات الفرعية
|
@@ -221,7 +183,7 @@ ar:
|
|
221
183
|
stats:
|
222
184
|
attendees: الحضور
|
223
185
|
back_to_resource: العودة إلى النتيجة
|
224
|
-
comments:
|
186
|
+
comments: تعليقات
|
225
187
|
contributions: مساهمات
|
226
188
|
last_edited_by: التعديل الأخير تم بواسطة
|
227
189
|
last_updated_at: آخر تحديث في
|
data/config/locales/bg.yml
CHANGED
@@ -22,7 +22,6 @@ bg:
|
|
22
22
|
timeline_entry:
|
23
23
|
description: Описание
|
24
24
|
entry_date: Дата
|
25
|
-
title: Заглавие
|
26
25
|
models:
|
27
26
|
decidim/accountability/proposal_linked_event: Предложение, включено в резултата
|
28
27
|
decidim/accountability/result_progress_updated_event: Напредъкът на резултатите е актуализиран
|
@@ -34,62 +33,24 @@ bg:
|
|
34
33
|
decidim:
|
35
34
|
accountability:
|
36
35
|
actions:
|
37
|
-
attachment_collections: Папки
|
38
|
-
attachments: Прикачени файлове
|
39
36
|
confirm_destroy: Сигурни ли сте, че искате да изтриете това %{name}?
|
40
37
|
destroy: Изтрий
|
41
38
|
edit: Редактирай
|
42
|
-
import_csv: Импортиране на CSV
|
43
|
-
new: Ново %{name}
|
44
39
|
preview: Преглед
|
45
40
|
timeline_entries: Развитие на проекта
|
46
41
|
title: Действия
|
47
42
|
admin:
|
48
43
|
exports:
|
49
|
-
result_comments: Коментари
|
50
44
|
results: Резултати
|
51
45
|
import_results:
|
52
46
|
new:
|
53
|
-
download_export: Свалете експорта в CSV формат
|
54
47
|
import: Внасяне
|
55
|
-
info: |
|
56
|
-
<p>Препоръчваме ви да следвате следните стъпки:</p>
|
57
|
-
<ol>
|
58
|
-
<li><a href='%{link_new_status}' target='_blank'>Създайте статусите за резултатите</a>, които искате да добавите</li>
|
59
|
-
<li><a href='%{link_new_result}' target='_blank'>Създайте поне един резултат ръчно</a> чрез този административен панел, преди да използвате Импортиране, за да разберете по-добре формата и това, което ще се нуждае от попълване.</li>
|
60
|
-
<li>%{link_export_csv}</li>
|
61
|
-
<li>Направете промените локално. Можете да промените само следните колони в CSV:
|
62
|
-
<ul>
|
63
|
-
<li><b>category/id:</b> ID за категорията</li>
|
64
|
-
<li><b>scope/id:</b> ID за обхвата</li>
|
65
|
-
<li><b>parent/id:</b> ID на родителя (за свързани резултати). По избор</li>
|
66
|
-
<li><b>title/en:</b> Заглавие на английски език. Това ще зависи от езиковата конфигурация на вашата платформа.</li>
|
67
|
-
<li><b>description/en:</b> Описание на английски език. Това ще зависи от езиковата конфигурация на вашата платформа.</li>
|
68
|
-
<li><b>начална_дата:</b> дата, когато резултатът започва да се изпълнява (формат ГГГГ-ММ-ДД)</li>
|
69
|
-
<li><b>крайна_дата:</b> дата, на която резултатът приключва изпълнението (формат ГГГГ-ММ-ДД)</li>
|
70
|
-
<li><b>status/id:</b> ID на статуса за този резултат</li>
|
71
|
-
<li><b>напредък:</b> Процент (от 0 до 100) на изпълнението</li>
|
72
|
-
<li><b>proposals_ids:</b> вътрешен идентификатор на свързаните предложения (разделени със запетая). Той автоматично се преобразува в <span class='attribute-name'>proposal_url</span></li>
|
73
|
-
</ul>
|
74
|
-
</li>
|
75
|
-
</ol>
|
76
|
-
title: Импортирай резултати от CSV
|
77
|
-
imports:
|
78
|
-
create:
|
79
|
-
success: Файлът започна да се импортира. В следващите минути ще получите ел. поща с резултата от импортирането
|
80
48
|
models:
|
81
49
|
result:
|
82
50
|
name: Резултат
|
83
51
|
status:
|
84
52
|
name: Статус
|
85
|
-
timeline_entry:
|
86
|
-
name: Запис във времевата линия
|
87
53
|
results:
|
88
|
-
create:
|
89
|
-
invalid: Възникна проблем при създаване на резултата
|
90
|
-
success: Резултата е създаден успешно
|
91
|
-
destroy:
|
92
|
-
success: Резултата е изтрит успешно
|
93
54
|
edit:
|
94
55
|
title: Редактирай резултат
|
95
56
|
update: Обнови резултат
|
@@ -98,18 +59,10 @@ bg:
|
|
98
59
|
new:
|
99
60
|
create: Създай резултат
|
100
61
|
title: Нови резултати
|
101
|
-
update:
|
102
|
-
invalid: Възникна проблем при обновяването на резултата
|
103
|
-
success: Резултата е обновен успешно
|
104
62
|
shared:
|
105
63
|
subnav:
|
106
64
|
statuses: Статуси
|
107
65
|
statuses:
|
108
|
-
create:
|
109
|
-
invalid: Възникна проблем при създаване на статуса
|
110
|
-
success: Статуса е създаден успешно
|
111
|
-
destroy:
|
112
|
-
success: Статуса е изтрит успешно
|
113
66
|
edit:
|
114
67
|
title: Редактирай на статуса
|
115
68
|
update: Обнови на статус
|
@@ -118,15 +71,7 @@ bg:
|
|
118
71
|
new:
|
119
72
|
create: Създай статус
|
120
73
|
title: Нов статус
|
121
|
-
update:
|
122
|
-
invalid: Възникна проблем при обновяване на статуса
|
123
|
-
success: Статуса е обновен успешно
|
124
74
|
timeline_entries:
|
125
|
-
create:
|
126
|
-
invalid: Възникна проблем при създаване на записа
|
127
|
-
success: Записа е създаден успешно
|
128
|
-
destroy:
|
129
|
-
success: Записа е изтрит успешно
|
130
75
|
edit:
|
131
76
|
title: Редактирай на запис
|
132
77
|
update: Обнови на запис
|
@@ -135,48 +80,25 @@ bg:
|
|
135
80
|
new:
|
136
81
|
create: Създай запис
|
137
82
|
title: Нов запис
|
138
|
-
update:
|
139
|
-
invalid: Възникна проблем при обновяване на записа
|
140
|
-
success: Записа е обновен успешно
|
141
83
|
admin_log:
|
142
84
|
result:
|
143
85
|
create: "%{user_name} създаде резултата %{resource_name} в %{space_name}"
|
144
86
|
delete: "%{user_name} изтри резултата %{resource_name} в %{space_name}"
|
145
87
|
update: "%{user_name} обнови резултата %{resource_name} в %{space_name}"
|
146
|
-
status:
|
147
|
-
create: "Статусът е създаден"
|
148
|
-
delete: "Статусът е изтрит"
|
149
|
-
update: "Статусът е обновен"
|
150
|
-
timeline_entry:
|
151
|
-
create: "Създаде запис във времевата линия"
|
152
|
-
delete: "Изтри запис от времевата линия"
|
153
|
-
update: "Обнови запис във времевата линия"
|
154
88
|
value_types:
|
155
89
|
parent_presenter:
|
156
90
|
not_found: 'Родителя липсва в базата данни (ID: %{id})'
|
157
|
-
content_blocks:
|
158
|
-
highlighted_results:
|
159
|
-
dates: Дати
|
160
|
-
results: Резултати
|
161
|
-
unspecified: Не е посочено
|
162
91
|
import_mailer:
|
163
92
|
import:
|
164
93
|
errors: Грешки
|
165
|
-
errors_present: Възникна проблем при внасяне на резултата
|
166
94
|
row_number: Редове
|
167
95
|
subject: Успешно внасяне на резултати
|
168
96
|
success: Успешно внасяне на резултати. Може да ги прегледате в администраторския интерфейс.
|
169
|
-
last_activity:
|
170
|
-
new_result_at_html: "<span>Нов резултат в %{link}</span>"
|
171
97
|
models:
|
172
98
|
result:
|
173
99
|
fields:
|
174
|
-
category: Категория
|
175
|
-
created_at: Създаден
|
176
100
|
end_date: Крайна дата
|
177
|
-
id: ID
|
178
101
|
progress: Напредък
|
179
|
-
scope: Обхват
|
180
102
|
start_date: Начална дата
|
181
103
|
status: Статус
|
182
104
|
title: Заглавие
|
@@ -189,10 +111,6 @@ bg:
|
|
189
111
|
timeline_entry:
|
190
112
|
fields:
|
191
113
|
entry_date: Дата
|
192
|
-
title: Заглавие
|
193
|
-
result_m:
|
194
|
-
executed: Изпълнено
|
195
|
-
view: Изглед
|
196
114
|
results:
|
197
115
|
count:
|
198
116
|
results_count:
|
@@ -200,7 +118,6 @@ bg:
|
|
200
118
|
other: "%{count} резултата"
|
201
119
|
filters:
|
202
120
|
all: Всички
|
203
|
-
scopes: Сфери
|
204
121
|
home:
|
205
122
|
categories_label: Категории
|
206
123
|
subcategories_label: Подкатегории
|
@@ -223,19 +140,8 @@ bg:
|
|
223
140
|
votes: Поддръжки
|
224
141
|
timeline:
|
225
142
|
title: Развитие на проекта
|
226
|
-
admin:
|
227
|
-
filters:
|
228
|
-
results:
|
229
|
-
category_id_eq:
|
230
|
-
label: Категория
|
231
|
-
scope_id_eq:
|
232
|
-
label: Обхват
|
233
|
-
status_id_eq:
|
234
|
-
label: Статус
|
235
143
|
components:
|
236
144
|
accountability:
|
237
|
-
actions:
|
238
|
-
comment: Коментар
|
239
145
|
name: Отговорност
|
240
146
|
settings:
|
241
147
|
global:
|
@@ -276,5 +182,3 @@ bg:
|
|
276
182
|
result_project: Проекти, включени в резултата
|
277
183
|
included_proposals:
|
278
184
|
result_proposal: Предложения, включени в резултата
|
279
|
-
statistics:
|
280
|
-
results_count: Резултати
|
data/config/locales/ca.yml
CHANGED
@@ -8,6 +8,7 @@ ca:
|
|
8
8
|
decidim_scope_id: Àmbit
|
9
9
|
description: Descripció
|
10
10
|
end_date: Data de finalització
|
11
|
+
meetings_ids: Trobades relacionades
|
11
12
|
progress: Progrés
|
12
13
|
project_ids: Projectes inclosos
|
13
14
|
proposals: Propostes incloses
|
@@ -39,8 +40,11 @@ ca:
|
|
39
40
|
confirm_destroy: Segur que vols suprimir aquest %{name}?
|
40
41
|
destroy: Esborrar
|
41
42
|
edit: Editar
|
42
|
-
|
43
|
-
|
43
|
+
import: Importar projectes des d'un altre component
|
44
|
+
import_csv: Importar resultats des d'un fitxer CSV
|
45
|
+
new_result: Afegir resultat
|
46
|
+
new_status: Afegir estat
|
47
|
+
new_timeline_entry: Afegir entrada de la cronologia
|
44
48
|
preview: Previsualitzar
|
45
49
|
timeline_entries: Evolució del projecte
|
46
50
|
title: Accions
|
@@ -73,23 +77,38 @@ ca:
|
|
73
77
|
</ul>
|
74
78
|
</li>
|
75
79
|
</ol>
|
76
|
-
title: Importar resultats
|
80
|
+
title: Importar resultats des d'un fitxer CSV
|
77
81
|
imports:
|
78
82
|
create:
|
79
|
-
|
83
|
+
invalid: Hi ha hagut un problema important els resultats.
|
84
|
+
success: S'està important el fitxer. Rebràs un correu electrònic en els pròxims minuts amb el resultat de la importació.
|
80
85
|
models:
|
81
86
|
result:
|
82
87
|
name: Resultat
|
83
88
|
status:
|
84
89
|
name: Estat
|
85
|
-
|
86
|
-
|
90
|
+
projects_import:
|
91
|
+
create:
|
92
|
+
invalid: Hi ha hagut un problema important els projectes com a resultats, si us plau, segueix les instruccions amb cura i assegura't de marcar els projectes seleccionats per a la seva implementació.
|
93
|
+
new:
|
94
|
+
create: Importar
|
95
|
+
import_all_selected_projects: Importar tots els projectes seleccionats per a ser implementats
|
96
|
+
new_items:
|
97
|
+
one: S'importarà 1 projecte seleccionat
|
98
|
+
other: "S'importaran %{count} projectes seleccionats"
|
99
|
+
no_components: No hi ha cap component de pressupostos en aquest espai de participació per a poder importar els projectes com a resultats.
|
100
|
+
origin_component_id: Component d'origen
|
101
|
+
select_component: Selecciona un component
|
102
|
+
success:
|
103
|
+
one: Hi ha 1 projecte a la cua per ser importat. Es notificarà per correu electrònic, quan es completi la importació.
|
104
|
+
other: "Hi ha %{count} a la cua per ser importats. Es notificarà per correu electrònic, quan es completi la importació."
|
105
|
+
title: Importar projectes des d'un altre component
|
87
106
|
results:
|
88
107
|
create:
|
89
|
-
invalid: S'ha produït un error en crear aquest resultat
|
90
|
-
success: Resultat creat correctament
|
108
|
+
invalid: S'ha produït un error en crear aquest resultat.
|
109
|
+
success: Resultat creat correctament.
|
91
110
|
destroy:
|
92
|
-
success: Resultat eliminat correctament
|
111
|
+
success: Resultat eliminat correctament.
|
93
112
|
edit:
|
94
113
|
title: Editar resultat
|
95
114
|
update: Actualitzar resultat
|
@@ -99,17 +118,17 @@ ca:
|
|
99
118
|
create: Crear resultat
|
100
119
|
title: Nou resultat
|
101
120
|
update:
|
102
|
-
invalid: S'ha produït un error en actualitzar aquest resultat
|
103
|
-
success: Resultat actualitzat correctament
|
121
|
+
invalid: S'ha produït un error en actualitzar aquest resultat.
|
122
|
+
success: Resultat actualitzat correctament.
|
104
123
|
shared:
|
105
124
|
subnav:
|
106
125
|
statuses: Estats
|
107
126
|
statuses:
|
108
127
|
create:
|
109
|
-
invalid: S'ha produït un error en crear aquest estat
|
110
|
-
success:
|
128
|
+
invalid: S'ha produït un error en crear aquest estat.
|
129
|
+
success: Estat creat correctament.
|
111
130
|
destroy:
|
112
|
-
success:
|
131
|
+
success: Estat creat correctament.
|
113
132
|
edit:
|
114
133
|
title: Editar estat
|
115
134
|
update: Actualitzar estat
|
@@ -119,14 +138,14 @@ ca:
|
|
119
138
|
create: Crear estat
|
120
139
|
title: Nou estat
|
121
140
|
update:
|
122
|
-
invalid: S'ha produït un error en actualitzar aquest estat
|
123
|
-
success:
|
141
|
+
invalid: S'ha produït un error en actualitzar aquest estat.
|
142
|
+
success: Estat actualitzat correctament.
|
124
143
|
timeline_entries:
|
125
144
|
create:
|
126
|
-
invalid: S'ha produït un error en crear
|
127
|
-
success:
|
145
|
+
invalid: S'ha produït un error en crear aquesta entrada.
|
146
|
+
success: Entrada creada correctament.
|
128
147
|
destroy:
|
129
|
-
success:
|
148
|
+
success: Entrada eliminada correctament.
|
130
149
|
edit:
|
131
150
|
title: Editar element
|
132
151
|
update: Actualitzar element
|
@@ -136,8 +155,8 @@ ca:
|
|
136
155
|
create: Crear element
|
137
156
|
title: Nou element
|
138
157
|
update:
|
139
|
-
invalid: S'ha produït un error en actualitzar
|
140
|
-
success:
|
158
|
+
invalid: S'ha produït un error en actualitzar aquesta entrada.
|
159
|
+
success: Entrada actualitzada correctament.
|
141
160
|
admin_log:
|
142
161
|
result:
|
143
162
|
create: "%{user_name} ha creat el resultat %{resource_name} en %{space_name}"
|
@@ -156,18 +175,23 @@ ca:
|
|
156
175
|
not_found: 'No s''ha trobat el pare a la base de dades (ID: %{id})'
|
157
176
|
content_blocks:
|
158
177
|
highlighted_results:
|
159
|
-
dates: Dates
|
160
178
|
results: Resultats
|
161
|
-
unspecified: Sense especificar
|
162
179
|
import_mailer:
|
163
180
|
import:
|
164
181
|
errors: Errors
|
165
|
-
errors_present: Hi ha hagut un problema important els resultats
|
182
|
+
errors_present: Hi ha hagut un problema important els resultats.
|
166
183
|
row_number: Fila
|
167
184
|
subject: Els resultats s'han importat correctament
|
168
185
|
success: Els resultats s'han important correctament. Pots revisar els resultats a través del panell d'administració.
|
186
|
+
import_projects_mailer:
|
187
|
+
import:
|
188
|
+
added_projects:
|
189
|
+
one: S'ha importat un resultat des de projectes.
|
190
|
+
other: "S'han importat %{count} resultats des de projectes."
|
191
|
+
subject: Els projectes s'han importat correctament
|
192
|
+
success: Projectes importats com a resultats amb èxit al component %{component_name}. Pots revisar els resultats al taulell d'administració.
|
169
193
|
last_activity:
|
170
|
-
|
194
|
+
new_result: 'Nou resultat:'
|
171
195
|
models:
|
172
196
|
result:
|
173
197
|
fields:
|
@@ -190,9 +214,6 @@ ca:
|
|
190
214
|
fields:
|
191
215
|
entry_date: Data
|
192
216
|
title: Títol
|
193
|
-
result_m:
|
194
|
-
executed: Executat
|
195
|
-
view: Veure
|
196
217
|
results:
|
197
218
|
count:
|
198
219
|
results_count:
|
@@ -200,14 +221,16 @@ ca:
|
|
200
221
|
other: "%{count} resultats"
|
201
222
|
filters:
|
202
223
|
all: Tots
|
203
|
-
scopes: Àmbits
|
204
224
|
home:
|
205
225
|
categories_label: Categories
|
226
|
+
empty: Encara no hi ha cap resultat.
|
227
|
+
empty_filters: No hi ha cap resultat amb aquest criteri.
|
206
228
|
subcategories_label: Subcategories
|
207
229
|
home_header:
|
208
230
|
global_status: Estat d'execució global
|
209
231
|
nav_breadcrumb:
|
210
232
|
global: Execució global
|
233
|
+
no_results: No hi ha projectes
|
211
234
|
search:
|
212
235
|
search: Cercar actuacions
|
213
236
|
show:
|
@@ -260,7 +283,7 @@ ca:
|
|
260
283
|
notification_title: La proposta <a href="%{proposal_path}">%{proposal_title}</a> s'ha inclòs al resultat <a href="%{resource_path}">%{resource_title}</a>.
|
261
284
|
result_progress_updated:
|
262
285
|
email_intro: 'El resultat "%{resource_title}", que inclou la proposta "%{proposal_title}", s''ha completat en un %{progress}%. Pots veure-ho des d''aquesta pàgina:'
|
263
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint
|
286
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint "%{proposal_title}", i aquesta proposta s'inclou al resultat "%{resource_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
264
287
|
email_subject: Una actualització sobre el progrés de %{resource_title}
|
265
288
|
notification_title: El resultat <a href="%{resource_path}">%{resource_title}</a>, que inclou la proposta <a href="%{proposal_path}">%{proposal_title}</a>, s'ha completat en un %{progress}%.
|
266
289
|
metrics:
|
@@ -270,7 +293,7 @@ ca:
|
|
270
293
|
title: Resultats
|
271
294
|
participatory_spaces:
|
272
295
|
highlighted_results:
|
273
|
-
see_all: Veure tots els resultats
|
296
|
+
see_all: Veure tots els resultats
|
274
297
|
resource_links:
|
275
298
|
included_projects:
|
276
299
|
result_project: Projectes inclosos en aquest resultat
|