decidim-accountability 0.27.5 → 0.27.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/accountability/highlighted_results_for_component/show.erb +1 -1
- data/app/events/decidim/accountability/base_result_event.rb +25 -0
- data/app/events/decidim/accountability/proposal_linked_event.rb +1 -18
- data/app/events/decidim/accountability/result_progress_updated_event.rb +2 -18
- data/app/views/decidim/accountability/results/_home_header.html.erb +1 -1
- data/app/views/decidim/accountability/results/_show_leaf.html.erb +1 -1
- data/app/views/decidim/accountability/results/_timeline.html.erb +1 -1
- data/app/views/decidim/participatory_spaces/_result.html.erb +2 -2
- data/config/locales/ar.yml +1 -1
- data/config/locales/bg.yml +61 -1
- data/config/locales/ca.yml +1 -1
- data/config/locales/da.yml +0 -1
- data/config/locales/de.yml +1 -1
- data/config/locales/es.yml +2 -2
- data/config/locales/he-IL.yml +219 -0
- data/config/locales/id-ID.yml +0 -1
- data/config/locales/it.yml +2 -0
- data/config/locales/ko.yml +173 -0
- data/config/locales/lb.yml +1 -1
- data/config/locales/lv.yml +0 -1
- data/config/locales/pt.yml +1 -0
- data/config/locales/ro-RO.yml +23 -21
- data/config/locales/ru.yml +0 -1
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +0 -1
- data/config/locales/sr-CS.yml +0 -1
- data/config/locales/tr-TR.yml +13 -0
- data/config/locales/uk.yml +0 -1
- data/config/locales/zh-CN.yml +0 -1
- data/decidim-accountability.gemspec +38 -0
- data/lib/decidim/accountability/test/factories.rb +29 -17
- data/lib/decidim/accountability/version.rb +1 -1
- data/lib/decidim/api/result_type.rb +0 -1
- metadata +29 -27
- data/config/environment.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0702d6afc7b53abc522e727d1225b4cf93999a5413cf69bd04792e58970db0e
|
4
|
+
data.tar.gz: b5c3d94419f7c4eb449def43ec93c929bbf6b952e1ad310c21e0ff3d19199085
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80ab9602f5e54b9d7fa1d6e01b77dec4204d375997e80c179d7147191205a01faa6562935e14f4e8e301d867d42069be24e3136a09a4395ff0e17f3b7575e1d4
|
7
|
+
data.tar.gz: 68e746bfe2b0198366ea99005bf4b1b396ebad92717313ed7b48ce2e44e47b99c5c358351b135a99c9a26ec93fbc774a0e4ed067e4ee09abe71e4416c201d740
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<section class="section row collapse highlighted_results">
|
2
2
|
<h3 class="section-heading">
|
3
|
-
<%=
|
3
|
+
<%= decidim_escape_translated(model.name) %> <a href="<%= main_component_path(model) %>" class="text-small"><%= t("decidim.participatory_spaces.highlighted_results.see_all", count: results_count) %></a>
|
4
4
|
</h3>
|
5
5
|
|
6
6
|
<div class="row">
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Decidim
|
4
|
+
module Accountability
|
5
|
+
class BaseResultEvent < Decidim::Events::SimpleEvent
|
6
|
+
i18n_attributes :proposal_title, :proposal_path
|
7
|
+
|
8
|
+
def resource_text
|
9
|
+
translated_attribute(resource.description)
|
10
|
+
end
|
11
|
+
|
12
|
+
def proposal_title
|
13
|
+
@proposal_title ||= decidim_sanitize_translated(proposal.title)
|
14
|
+
end
|
15
|
+
|
16
|
+
def proposal_path
|
17
|
+
@proposal_path ||= Decidim::ResourceLocatorPresenter.new(proposal).path
|
18
|
+
end
|
19
|
+
|
20
|
+
def proposal
|
21
|
+
@proposal ||= resource.linked_resources(:proposals, "included_proposals").find_by(id: extra[:proposal_id])
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -2,24 +2,7 @@
|
|
2
2
|
|
3
3
|
module Decidim
|
4
4
|
module Accountability
|
5
|
-
class ProposalLinkedEvent <
|
6
|
-
i18n_attributes :proposal_title, :proposal_path
|
7
|
-
|
8
|
-
def proposal_path
|
9
|
-
@proposal_path ||= Decidim::ResourceLocatorPresenter.new(proposal).path
|
10
|
-
end
|
11
|
-
|
12
|
-
def proposal_title
|
13
|
-
@proposal_title ||= translated_attribute(proposal.title)
|
14
|
-
end
|
15
|
-
|
16
|
-
def proposal
|
17
|
-
@proposal ||= resource.linked_resources(:proposals, "included_proposals").find_by(id: extra[:proposal_id])
|
18
|
-
end
|
19
|
-
|
20
|
-
def resource_text
|
21
|
-
translated_attribute(resource.description)
|
22
|
-
end
|
5
|
+
class ProposalLinkedEvent < BaseResultEvent
|
23
6
|
end
|
24
7
|
end
|
25
8
|
end
|
@@ -2,28 +2,12 @@
|
|
2
2
|
|
3
3
|
module Decidim
|
4
4
|
module Accountability
|
5
|
-
class ResultProgressUpdatedEvent <
|
6
|
-
i18n_attributes :
|
7
|
-
|
8
|
-
def proposal_path
|
9
|
-
@proposal_path ||= Decidim::ResourceLocatorPresenter.new(proposal).path
|
10
|
-
end
|
11
|
-
|
12
|
-
def proposal_title
|
13
|
-
@proposal_title ||= translated_attribute(proposal.title)
|
14
|
-
end
|
15
|
-
|
16
|
-
def proposal
|
17
|
-
@proposal ||= resource.linked_resources(:proposals, "included_proposals").find_by(id: extra[:proposal_id])
|
18
|
-
end
|
5
|
+
class ResultProgressUpdatedEvent < BaseResultEvent
|
6
|
+
i18n_attributes :progress
|
19
7
|
|
20
8
|
def progress
|
21
9
|
extra[:progress]
|
22
10
|
end
|
23
|
-
|
24
|
-
def resource_text
|
25
|
-
translated_attribute(resource.description)
|
26
|
-
end
|
27
11
|
end
|
28
12
|
end
|
29
13
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<div class="intro section">
|
2
2
|
<div class="row">
|
3
3
|
<div class="small-12 medium-7 columns">
|
4
|
-
|
4
|
+
<%= decidim_sanitize_admin translated_attribute(component_settings.intro) %>
|
5
5
|
</div>
|
6
6
|
|
7
7
|
<% if component_settings.display_progress_enabled? && progress_calculator(current_scope, nil).present? %>
|
@@ -62,7 +62,7 @@
|
|
62
62
|
|
63
63
|
<div class="small-12 mediumlarge-8 large-9 columns">
|
64
64
|
<div class="section result-description">
|
65
|
-
|
65
|
+
<%= decidim_sanitize_admin(translated_attribute(result.description)) %>
|
66
66
|
<%= cell "decidim/tags", result, context: { extra_classes: ["tags--result"] } %>
|
67
67
|
</div>
|
68
68
|
</div>
|
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
<% if translated_attribute(timeline_entry.description).present? %>
|
20
20
|
<div class="timeline__description__description">
|
21
|
-
|
21
|
+
<%= decidim_escape_translated(timeline_entry.description) %>
|
22
22
|
</div>
|
23
23
|
<% end %>
|
24
24
|
</div>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
<%= link_to resource_locator(result).path, class: "card--list__text card__link card__link--block" do %>
|
5
5
|
<h4 class="card--list__heading heading6">
|
6
|
-
<%=
|
6
|
+
<%= decidim_escape_translated(result.title) %>
|
7
7
|
</h4>
|
8
8
|
|
9
9
|
<div class="text-small card--meta">
|
@@ -19,7 +19,7 @@
|
|
19
19
|
|
20
20
|
<% if result.status %>
|
21
21
|
<strong><%= t("models.result.fields.status", scope: "decidim.accountability") %></strong>
|
22
|
-
<span><%=
|
22
|
+
<span><%= decidim_escape_translated(result.status.name) %></span>
|
23
23
|
<% end %>
|
24
24
|
</div>
|
25
25
|
<% end %>
|
data/config/locales/ar.yml
CHANGED
data/config/locales/bg.yml
CHANGED
@@ -22,6 +22,7 @@ bg:
|
|
22
22
|
timeline_entry:
|
23
23
|
description: Описание
|
24
24
|
entry_date: Дата
|
25
|
+
title: Заглавие
|
25
26
|
models:
|
26
27
|
decidim/accountability/proposal_linked_event: Предложение, включено в резултата
|
27
28
|
decidim/accountability/result_progress_updated_event: Напредъкът на резултатите е актуализиран
|
@@ -33,20 +34,45 @@ bg:
|
|
33
34
|
decidim:
|
34
35
|
accountability:
|
35
36
|
actions:
|
37
|
+
attachment_collections: Папки
|
38
|
+
attachments: Прикачени файлове
|
36
39
|
confirm_destroy: Сигурни ли сте, че искате да изтриете това %{name}?
|
37
40
|
destroy: Изтрий
|
38
41
|
edit: Редактирай
|
39
|
-
import_csv:
|
42
|
+
import_csv: Импортиране на CSV
|
40
43
|
new: Ново %{name}
|
41
44
|
preview: Преглед
|
42
45
|
timeline_entries: Развитие на проекта
|
43
46
|
title: Действия
|
44
47
|
admin:
|
45
48
|
exports:
|
49
|
+
result_comments: Коментари
|
46
50
|
results: Резултати
|
47
51
|
import_results:
|
48
52
|
new:
|
53
|
+
download_export: Свалете експорта в CSV формат
|
49
54
|
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>
|
50
76
|
title: Импортирай резултати от CSV
|
51
77
|
imports:
|
52
78
|
create:
|
@@ -117,9 +143,22 @@ bg:
|
|
117
143
|
create: "%{user_name} създаде резултата %{resource_name} в %{space_name}"
|
118
144
|
delete: "%{user_name} изтри резултата %{resource_name} в %{space_name}"
|
119
145
|
update: "%{user_name} обнови резултата %{resource_name} в %{space_name}"
|
146
|
+
status:
|
147
|
+
create: "Статусът е създаден"
|
148
|
+
delete: "Статусът е изтрит"
|
149
|
+
update: "Статусът е обновен"
|
150
|
+
timeline_entry:
|
151
|
+
create: "Създаде запис във времевата линия"
|
152
|
+
delete: "Изтри запис от времевата линия"
|
153
|
+
update: "Обнови запис във времевата линия"
|
120
154
|
value_types:
|
121
155
|
parent_presenter:
|
122
156
|
not_found: 'Родителя липсва в базата данни (ID: %{id})'
|
157
|
+
content_blocks:
|
158
|
+
highlighted_results:
|
159
|
+
dates: Дати
|
160
|
+
results: Резултати
|
161
|
+
unspecified: Не е посочено
|
123
162
|
import_mailer:
|
124
163
|
import:
|
125
164
|
errors: Грешки
|
@@ -132,8 +171,12 @@ bg:
|
|
132
171
|
models:
|
133
172
|
result:
|
134
173
|
fields:
|
174
|
+
category: Категория
|
175
|
+
created_at: Създаден
|
135
176
|
end_date: Крайна дата
|
177
|
+
id: ID
|
136
178
|
progress: Напредък
|
179
|
+
scope: Обхват
|
137
180
|
start_date: Начална дата
|
138
181
|
status: Статус
|
139
182
|
title: Заглавие
|
@@ -146,6 +189,10 @@ bg:
|
|
146
189
|
timeline_entry:
|
147
190
|
fields:
|
148
191
|
entry_date: Дата
|
192
|
+
title: Заглавие
|
193
|
+
result_m:
|
194
|
+
executed: Изпълнено
|
195
|
+
view: Изглед
|
149
196
|
results:
|
150
197
|
count:
|
151
198
|
results_count:
|
@@ -176,8 +223,19 @@ bg:
|
|
176
223
|
votes: Поддръжки
|
177
224
|
timeline:
|
178
225
|
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: Статус
|
179
235
|
components:
|
180
236
|
accountability:
|
237
|
+
actions:
|
238
|
+
comment: Коментар
|
181
239
|
name: Отговорност
|
182
240
|
settings:
|
183
241
|
global:
|
@@ -218,3 +276,5 @@ bg:
|
|
218
276
|
result_project: Проекти, включени в резултата
|
219
277
|
included_proposals:
|
220
278
|
result_proposal: Предложения, включени в резултата
|
279
|
+
statistics:
|
280
|
+
results_count: Резултати
|
data/config/locales/ca.yml
CHANGED
@@ -260,7 +260,7 @@ ca:
|
|
260
260
|
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
261
|
result_progress_updated:
|
262
262
|
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 "%{proposal_title}", i aquesta
|
263
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint la proposta "%{proposal_title}", i aquesta s'inclou al resultat "%{resource_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
264
264
|
email_subject: Una actualització sobre el progrés de %{resource_title}
|
265
265
|
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
266
|
metrics:
|
data/config/locales/da.yml
CHANGED
data/config/locales/de.yml
CHANGED
@@ -167,7 +167,7 @@ de:
|
|
167
167
|
subject: Ergebnisse wurden erfolgreich importiert
|
168
168
|
success: Ergebnisse wurden erfolgreich importiert. Sie können die Ergebnisse über die Administrationsoberfläche aufrufen.
|
169
169
|
last_activity:
|
170
|
-
new_result_at_html: "<span>Neues Ergebnis
|
170
|
+
new_result_at_html: "<span>Neues Ergebnis auf %{link}</span>"
|
171
171
|
models:
|
172
172
|
result:
|
173
173
|
fields:
|
data/config/locales/es.yml
CHANGED
@@ -255,12 +255,12 @@ es:
|
|
255
255
|
accountability:
|
256
256
|
proposal_linked:
|
257
257
|
email_intro: 'La propuesta "%{proposal_title}" se ha incluido en un resultado. Puedes verlo desde esta página:'
|
258
|
-
email_outro: Has recibido esta notificación porque estás siguiendo "%{proposal_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
258
|
+
email_outro: Has recibido esta notificación porque estás siguiendo la propuesta "%{proposal_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
259
259
|
email_subject: Una actualización en %{proposal_title}
|
260
260
|
notification_title: Se ha incluido la propuesta <a href="%{proposal_path}">%{proposal_title}</a> en el resultado <a href="%{resource_path}">%{resource_title}</a>.
|
261
261
|
result_progress_updated:
|
262
262
|
email_intro: 'El resultado "%{resource_title}", que incluye la propuesta "%{proposal_title}", está completado al %{progress}%. Puedes verlo desde esta página:'
|
263
|
-
email_outro: Has recibido esta notificación porque estás siguiendo "%{proposal_title}" y esta
|
263
|
+
email_outro: Has recibido esta notificación porque estás siguiendo la propuesta "%{proposal_title}" y esta se incluye en el resultado "%{resource_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
264
264
|
email_subject: Una actualización sobre el progreso de %{resource_title}
|
265
265
|
notification_title: El resultado <a href="%{resource_path}">%{resource_title}</a>, que incluye la propuesta <a href="%{proposal_path}">%{proposal_title}</a>, ahora está completado al %{progress}%.
|
266
266
|
metrics:
|
@@ -0,0 +1,219 @@
|
|
1
|
+
---
|
2
|
+
he:
|
3
|
+
activemodel:
|
4
|
+
attributes:
|
5
|
+
result:
|
6
|
+
decidim_accountability_status_id: סטטוס
|
7
|
+
decidim_category_id: קטגוריה
|
8
|
+
decidim_scope_id: היקף
|
9
|
+
description: תיאור
|
10
|
+
end_date: תאריך סיום
|
11
|
+
progress: התקדמות
|
12
|
+
project_ids: פרויקטים כלולים
|
13
|
+
proposals: הצעות כלולות
|
14
|
+
start_date: תאריך התחלה
|
15
|
+
title: כותרת
|
16
|
+
updated_at: עודכן ב-
|
17
|
+
status:
|
18
|
+
description: תיאור
|
19
|
+
key: מפתח
|
20
|
+
name: שם
|
21
|
+
progress: התקדמות
|
22
|
+
timeline_entry:
|
23
|
+
description: תיאור
|
24
|
+
entry_date: תאריך
|
25
|
+
title: כותרת
|
26
|
+
models:
|
27
|
+
decidim/accountability/proposal_linked_event: הצעה כלולה בתוצאה
|
28
|
+
decidim/accountability/result_progress_updated_event: התקדמות התוצאה עודכנה
|
29
|
+
activerecord:
|
30
|
+
models:
|
31
|
+
decidim/accountability/result:
|
32
|
+
one: תוצאה
|
33
|
+
two: תוצאות
|
34
|
+
many: תוצאות
|
35
|
+
other: תוצאות
|
36
|
+
decidim:
|
37
|
+
accountability:
|
38
|
+
actions:
|
39
|
+
attachment_collections: תיקיות
|
40
|
+
attachments: צרופות
|
41
|
+
confirm_destroy: האם את/ה בטוח/ה שברצונך למחוק את {name}?
|
42
|
+
destroy: מחיקה
|
43
|
+
edit: עריכה
|
44
|
+
preview: תצוגה מקדימה
|
45
|
+
timeline_entries: אבולוציה של הפרויקט
|
46
|
+
title: פעולות
|
47
|
+
admin:
|
48
|
+
exports:
|
49
|
+
result_comments: תגובות
|
50
|
+
results: תוצאות
|
51
|
+
import_results:
|
52
|
+
new:
|
53
|
+
download_export: להורדת הייצוא כקובץ CSV
|
54
|
+
import: ייבוא
|
55
|
+
models:
|
56
|
+
result:
|
57
|
+
name: תוצאה
|
58
|
+
status:
|
59
|
+
name: סטטוס
|
60
|
+
results:
|
61
|
+
edit:
|
62
|
+
title: עריכת תוצאה
|
63
|
+
update: עדכון תוצאה
|
64
|
+
index:
|
65
|
+
title: תוצאות
|
66
|
+
new:
|
67
|
+
create: יצירת תוצאה
|
68
|
+
title: תוצאה חדשה
|
69
|
+
shared:
|
70
|
+
subnav:
|
71
|
+
statuses: סטטוסים
|
72
|
+
statuses:
|
73
|
+
edit:
|
74
|
+
title: עריכת סטטוס
|
75
|
+
update: עדכון סטטוס
|
76
|
+
index:
|
77
|
+
title: סטטוסים
|
78
|
+
new:
|
79
|
+
create: יצירת סטטוס
|
80
|
+
title: סטטוס חדש
|
81
|
+
timeline_entries:
|
82
|
+
edit:
|
83
|
+
title: עריכת רשומה
|
84
|
+
update: עדכן רשומה
|
85
|
+
index:
|
86
|
+
title: ערכי ציר הזמן של הפרויקט
|
87
|
+
new:
|
88
|
+
create: יצירת רשומה
|
89
|
+
title: רשומה חדשה
|
90
|
+
admin_log:
|
91
|
+
result:
|
92
|
+
create: "%{user_name} תוצאה נוצרה %{resource_name} ב %{space_name}"
|
93
|
+
delete: "%{user_name} מחק.ה את %{resource_name} התוצאה ב %{space_name}"
|
94
|
+
update: "%{user_name} עדכן.ה תוצאה %{resource_name} ב %{space_name}"
|
95
|
+
status:
|
96
|
+
create: "%{user_name} יצר.ה את %{resource_name} הסטטוס"
|
97
|
+
delete: "%{user_name} מחק.ה את %{resource_name} הסטטוס"
|
98
|
+
update: "%{user_name} עדכנ.ה את %{resource_name} הסטטוס"
|
99
|
+
timeline_entry:
|
100
|
+
create: "%{user_name} יצר את הערך של ציר הזמן %{resource_name}"
|
101
|
+
delete: "%{user_name} מחק את הערך של ציר הזמן %{resource_name}"
|
102
|
+
update: "%{user_name} יצר את הערך של ציר הזמן %{resource_name}"
|
103
|
+
value_types:
|
104
|
+
parent_presenter:
|
105
|
+
not_found: 'ההורה לא נמצא במסד הנתונים (מזהה: %{id})'
|
106
|
+
content_blocks:
|
107
|
+
highlighted_results:
|
108
|
+
results: תוצאות
|
109
|
+
import_mailer:
|
110
|
+
import:
|
111
|
+
errors: שגיאות
|
112
|
+
row_number: שורה
|
113
|
+
subject: ייבוא מוצלח של תוצאות
|
114
|
+
success: ייבוא מוצלח של תוצאות. ניתן לעיין בתוצאות בממשק הניהול.
|
115
|
+
models:
|
116
|
+
result:
|
117
|
+
fields:
|
118
|
+
category: קטגוריה
|
119
|
+
created_at: נוצר
|
120
|
+
end_date: תאריך סיום
|
121
|
+
id: מספר מזהה
|
122
|
+
progress: התקדמות
|
123
|
+
scope: היקף
|
124
|
+
start_date: תאריך התחלה
|
125
|
+
status: סטטוס
|
126
|
+
title: כותרת
|
127
|
+
status:
|
128
|
+
fields:
|
129
|
+
description: תיאור
|
130
|
+
key: מפתח
|
131
|
+
name: שם
|
132
|
+
progress: התקדמות
|
133
|
+
timeline_entry:
|
134
|
+
fields:
|
135
|
+
entry_date: תאריך
|
136
|
+
title: כותרת
|
137
|
+
results:
|
138
|
+
count:
|
139
|
+
results_count:
|
140
|
+
one: תוצאה אחת
|
141
|
+
two: "שתי תוצאות"
|
142
|
+
many: "%{count} תוצאות"
|
143
|
+
other: "%{count} תוצאות"
|
144
|
+
filters:
|
145
|
+
all: הכל
|
146
|
+
home:
|
147
|
+
categories_label: קטגוריות
|
148
|
+
subcategories_label: תתי קטגוריות
|
149
|
+
home_header:
|
150
|
+
global_status: סטטוס ביצוע גלובלי
|
151
|
+
nav_breadcrumb:
|
152
|
+
global: ביצוע גלובלי
|
153
|
+
search:
|
154
|
+
search: חיפוש פעולה
|
155
|
+
show:
|
156
|
+
stats:
|
157
|
+
attendees: משתתפים.ות
|
158
|
+
back_to_resource: בחזרה לתוצאות
|
159
|
+
comments: תגובות
|
160
|
+
contributions: תרומות
|
161
|
+
last_edited_by: נערך לאחרונה על-ידי
|
162
|
+
last_updated_at: עודכן לאחרונה ב
|
163
|
+
meetings: פגישות
|
164
|
+
proposals: הצעות
|
165
|
+
votes: תמיכה
|
166
|
+
timeline:
|
167
|
+
title: אבולוציה של הפרויקט
|
168
|
+
admin:
|
169
|
+
filters:
|
170
|
+
results:
|
171
|
+
category_id_eq:
|
172
|
+
label: קטגוריה
|
173
|
+
scope_id_eq:
|
174
|
+
label: היקף
|
175
|
+
status_id_eq:
|
176
|
+
label: סטטוס
|
177
|
+
components:
|
178
|
+
accountability:
|
179
|
+
actions:
|
180
|
+
comment: תגובה
|
181
|
+
name: אחריותיות
|
182
|
+
settings:
|
183
|
+
global:
|
184
|
+
categories_label: שם ל"קטגוריות"
|
185
|
+
comments_enabled: איפשור תגובות
|
186
|
+
comments_max_length: אורך מקסימלי להערות (השאירו 0 לערך ברירת המחדל)
|
187
|
+
display_progress_enabled: הצגת התקדמות
|
188
|
+
heading_leaf_level_results: שם ל"פרויקטים"
|
189
|
+
heading_parent_level_results: שם ל"תוצאות"
|
190
|
+
intro: הקדמה
|
191
|
+
scope_id: היקף
|
192
|
+
scopes_enabled: היקפים מאופשרים
|
193
|
+
subcategories_label: שם ל"תתי קטוגריות"
|
194
|
+
step:
|
195
|
+
comments_blocked: תגובות חסומות
|
196
|
+
events:
|
197
|
+
accountability:
|
198
|
+
proposal_linked:
|
199
|
+
email_intro: 'ההצעה "%{proposal_title}" נכללה בתוצאה. ניתן לראות אותה מהעמוד הזה:'
|
200
|
+
email_outro: קיבלת הודעה זו מכיוון שאת.ה עוקב.ת אחר "%{proposal_title}". ניתן להפסיק לקבל התראות באמצעות הקישור הקודם.
|
201
|
+
email_subject: עדכון ל-%{proposal_title}
|
202
|
+
notification_title: ההצעה <a href="%{proposal_path}">%{proposal_title}</a> נכללה בתוצאת <a href="%{resource_path}">%{resource_title}</a>.
|
203
|
+
result_progress_updated:
|
204
|
+
email_intro: 'התוצאה "%{resource_title}", הכוללת את ההצעה "%{proposal_title}", הושלמה כעת %{progress}%. ניתן לראות את זה מהעמוד הזה:'
|
205
|
+
email_outro: קיבלת הודעה זו מכיוון שאת.ה עוקב.ת אחר "%{proposal_title}", וההצעה הזו כלולה בתוצאה "%{resource_title}". ניתן להפסיק לקבל התראות באמצעות הקישור הקודם.
|
206
|
+
email_subject: עדכון ל-%{resource_title} התקדמות
|
207
|
+
notification_title: התוצאה <a href="%{resource_path}">%{resource_title}</a>, הכוללת את ההצעה <a href="%{proposal_path}">%{proposal_title}</a>, היא כעת %{ התקדמות}% הושלמה.
|
208
|
+
metrics:
|
209
|
+
results:
|
210
|
+
description: מספר התוצאות שנוצרו
|
211
|
+
object: תוצאות
|
212
|
+
title: תוצאות
|
213
|
+
resource_links:
|
214
|
+
included_projects:
|
215
|
+
result_project: פרויקטים כלולים בתוצאה זו
|
216
|
+
included_proposals:
|
217
|
+
result_proposal: הצעות כלולות בתוצאה זו
|
218
|
+
statistics:
|
219
|
+
results_count: תוצאות
|
data/config/locales/id-ID.yml
CHANGED
data/config/locales/it.yml
CHANGED
@@ -22,6 +22,7 @@ it:
|
|
22
22
|
timeline_entry:
|
23
23
|
description: Descrizione
|
24
24
|
entry_date: Data
|
25
|
+
title: Titolo
|
25
26
|
models:
|
26
27
|
decidim/accountability/proposal_linked_event: Proposta inclusa in un risultato
|
27
28
|
decidim/accountability/result_progress_updated_event: Avanzamento dei risultati aggiornato
|
@@ -158,6 +159,7 @@ it:
|
|
158
159
|
timeline_entry:
|
159
160
|
fields:
|
160
161
|
entry_date: Data
|
162
|
+
title: Titolo
|
161
163
|
result_m:
|
162
164
|
executed: Eseguito
|
163
165
|
view: Visualizza
|