decidim-accountability 0.27.4 → 0.27.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/accountability/highlighted_results_for_component/show.erb +1 -1
  3. data/app/events/decidim/accountability/base_result_event.rb +25 -0
  4. data/app/events/decidim/accountability/proposal_linked_event.rb +1 -18
  5. data/app/events/decidim/accountability/result_progress_updated_event.rb +2 -18
  6. data/app/views/decidim/accountability/results/_home_header.html.erb +1 -1
  7. data/app/views/decidim/accountability/results/_show_leaf.html.erb +1 -1
  8. data/app/views/decidim/accountability/results/_timeline.html.erb +1 -1
  9. data/app/views/decidim/participatory_spaces/_result.html.erb +2 -2
  10. data/config/locales/ar.yml +1 -1
  11. data/config/locales/bg.yml +61 -1
  12. data/config/locales/ca.yml +1 -1
  13. data/config/locales/da.yml +0 -1
  14. data/config/locales/de.yml +1 -1
  15. data/config/locales/es.yml +2 -2
  16. data/config/locales/eu.yml +24 -24
  17. data/config/locales/he-IL.yml +219 -0
  18. data/config/locales/id-ID.yml +0 -1
  19. data/config/locales/it.yml +2 -0
  20. data/config/locales/ja.yml +1 -1
  21. data/config/locales/kaa.yml +26 -0
  22. data/config/locales/ko.yml +188 -0
  23. data/config/locales/lb.yml +1 -1
  24. data/config/locales/lt.yml +22 -0
  25. data/config/locales/lv.yml +0 -1
  26. data/config/locales/no.yml +8 -8
  27. data/config/locales/pt-BR.yml +21 -0
  28. data/config/locales/pt.yml +1 -0
  29. data/config/locales/ro-RO.yml +23 -21
  30. data/config/locales/ru.yml +0 -1
  31. data/config/locales/si-LK.yml +1 -0
  32. data/config/locales/sk.yml +0 -1
  33. data/config/locales/sq-AL.yml +222 -0
  34. data/config/locales/sr-CS.yml +0 -1
  35. data/config/locales/th-TH.yml +1 -0
  36. data/config/locales/tr-TR.yml +13 -0
  37. data/config/locales/uk.yml +0 -1
  38. data/config/locales/zh-CN.yml +0 -1
  39. data/decidim-accountability.gemspec +38 -0
  40. data/lib/decidim/accountability/component.rb +1 -1
  41. data/lib/decidim/accountability/test/factories.rb +29 -17
  42. data/lib/decidim/accountability/version.rb +1 -1
  43. data/lib/decidim/api/result_type.rb +0 -1
  44. metadata +30 -26
  45. data/config/environment.rb +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a1cf080e06fd6023dc4b0cdc6f9228eef6b7ccdf1accf35d062eefba3ad891a
4
- data.tar.gz: 43b0b6dde82aac745056669823b43261bd0643a6f738c7aece590d00b0ff7637
3
+ metadata.gz: f0702d6afc7b53abc522e727d1225b4cf93999a5413cf69bd04792e58970db0e
4
+ data.tar.gz: b5c3d94419f7c4eb449def43ec93c929bbf6b952e1ad310c21e0ff3d19199085
5
5
  SHA512:
6
- metadata.gz: 925f366b76365f843606e81f6b89556723d0fad591292d155b68ad4f071c3983965016a3ee32b787cd39c3cc23bf4ae645fad55428167f510e09cae7fa922679
7
- data.tar.gz: 853b9f79635f59e3fb18101b35340b7920a899df9a8ebda62f86c021cef56ca31cdb0e3f1af9a54768eca4f04dd6bd51227330fe707dce4a90c9c644b6a7d835
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
- <%= translated_attribute(model.name) %> <a href="<%= main_component_path(model) %>" class="text-small"><%= t("decidim.participatory_spaces.highlighted_results.see_all", count: results_count) %></a>
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 < Decidim::Events::SimpleEvent
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 < Decidim::Events::SimpleEvent
6
- i18n_attributes :proposal_title, :proposal_path, :progress
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
- <%== translated_attribute component_settings.intro %>
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
- <%== translated_attribute result.description %>
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
- <%== translated_attribute timeline_entry.description %>
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
- <%= translated_attribute(result.title) %>
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><%= translated_attribute(result.status.name) %></span>
22
+ <span><%= decidim_escape_translated(result.status.name) %></span>
23
23
  <% end %>
24
24
  </div>
25
25
  <% end %>
@@ -221,7 +221,7 @@ ar:
221
221
  stats:
222
222
  attendees: الحضور
223
223
  back_to_resource: العودة إلى النتيجة
224
- comments: تعليقات
224
+ comments: التعليقات
225
225
  contributions: مساهمات
226
226
  last_edited_by: التعديل الأخير تم بواسطة
227
227
  last_updated_at: آخر تحديث في
@@ -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: Импорт CVS
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: Резултати
@@ -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 proposta s'inclou al resultat "%{resource_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
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:
@@ -167,7 +167,6 @@ da:
167
167
  stats:
168
168
  attendees: Mødedeltagere
169
169
  back_to_resource: Tilbage til resultater
170
- comments: Kommentarer
171
170
  contributions: Bidrag
172
171
  last_edited_by: Sidst redigeret af
173
172
  last_updated_at: Senest opdateret den
@@ -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 bei %{link}</span>"
170
+ new_result_at_html: "<span>Neues Ergebnis auf %{link}</span>"
171
171
  models:
172
172
  result:
173
173
  fields:
@@ -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 propuesta se incluye en el resultado "%{resource_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
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:
@@ -5,10 +5,10 @@ eu:
5
5
  result:
6
6
  decidim_accountability_status_id: Egoera
7
7
  decidim_category_id: Kategoria
8
- decidim_scope_id: Eremua
8
+ decidim_scope_id: Esparrua
9
9
  description: Deskribapena
10
10
  end_date: Bukaera-data
11
- progress: Aurreratzea
11
+ progress: Aurrerapena
12
12
  project_ids: Barne dauden proiektuak
13
13
  proposals: Barne dauden proposamenak
14
14
  start_date: Hasiera-data
@@ -22,7 +22,7 @@ eu:
22
22
  timeline_entry:
23
23
  description: Deskribapena
24
24
  entry_date: Data
25
- title: Izena
25
+ title: Izenburua
26
26
  models:
27
27
  decidim/accountability/proposal_linked_event: Emaitza batean sartutako proposamena
28
28
  decidim/accountability/result_progress_updated_event: Emaitzen aurrerapena eguneratu da
@@ -62,7 +62,7 @@ eu:
62
62
  <ul>
63
63
  <li><b> id category/id:</b> ID kategoriarako </li>
64
64
  <li><b>scope /id:</b> ID eremurako </li>
65
- <li><b>parent /id:</b> ID aitarentzat (erlazionatutako emaitzetarako). Aukerakoa </li>
65
+ <li><b>parent /id:</b> ID nagusiarentzat (erlazionatutako emaitzetarako). Aukerakoa </li>
66
66
  <li><b>title /I18N:</b> Izenburua hizkuntzan X</li>
67
67
  <li><b> deskribapena /I18N:</b> deskribapena hizkuntzan X</li>
68
68
  <li><b>start_date:</b> emaitza gauzatzen den hasiera-data (AAAA-MM-DD formatua)</li>
@@ -86,7 +86,7 @@ eu:
86
86
  name: Sarrera kronologian
87
87
  results:
88
88
  create:
89
- invalid: Arazo bat izan da emaitza hau sortzean.
89
+ invalid: Arazo bat egon da emaitza hau sortzean
90
90
  success: Emaitza zuzen sortu da
91
91
  destroy:
92
92
  success: Emaitza zuzen ezabatu da
@@ -97,33 +97,33 @@ eu:
97
97
  title: Emaitzak
98
98
  new:
99
99
  create: Sortu emaitza
100
- title: Emaitza berria
100
+ title: Beste emaitza bat
101
101
  update:
102
- invalid: Arazo bat izan da emaitza hau eguneratzean.
102
+ invalid: Arazo bat egon da emaitza hau eguneratzean
103
103
  success: Emaitza zuzen eguneratu da
104
104
  shared:
105
105
  subnav:
106
106
  statuses: Egoerak
107
107
  statuses:
108
108
  create:
109
- invalid: Arazo bat izan da egoera hau sortzean
109
+ invalid: Arazo bat egon da egoera hau sortzean
110
110
  success: Egoera behar bezala sortu da
111
111
  destroy:
112
112
  success: Egoera behar bezala ezabatu da
113
113
  edit:
114
114
  title: Editatu egoera
115
- update: Egoera eguneratu
115
+ update: Eguneratu egoera
116
116
  index:
117
117
  title: Egoerak
118
118
  new:
119
119
  create: Egoera sortu
120
- title: Egoera berria
120
+ title: Beste egoera bat
121
121
  update:
122
- invalid: Arazo bat izan da egoera hori eguneratzean
122
+ invalid: Arazo bat egon da egoera hau eguneratzean
123
123
  success: Egoera behar bezala eguneratu da
124
124
  timeline_entries:
125
125
  create:
126
- invalid: Arazo bat izan da sarrera hau sortzeko
126
+ invalid: Arazo bat egon da sarrera hau sortzean
127
127
  success: Sarrera ondo sortu da
128
128
  destroy:
129
129
  success: Sarrera zuzen ezabatu da
@@ -133,10 +133,10 @@ eu:
133
133
  index:
134
134
  title: Proiektuaren bilakaera
135
135
  new:
136
- create: Sortu sarrera
137
- title: Sarrera berria
136
+ create: Sortu sarrerak
137
+ title: Beste sarrera bat
138
138
  update:
139
- invalid: Arazo bat izan da sarrera hau eguneratzean
139
+ invalid: Arazo bat egon da sarrera hau eguneratzean
140
140
  success: Sarrera ondo eguneratu da
141
141
  admin_log:
142
142
  result:
@@ -153,7 +153,7 @@ eu:
153
153
  update: "%{user_name} k %{resource_name} sarrera eguneratu du kronologian"
154
154
  value_types:
155
155
  parent_presenter:
156
- not_found: 'Gurasoa ez zen datu-basean aurkitu (ID: %{id})'
156
+ not_found: 'Nagusi ez zen aurkitu (ID: %{id}) datu-basean'
157
157
  content_blocks:
158
158
  highlighted_results:
159
159
  dates: Datak
@@ -161,8 +161,8 @@ eu:
161
161
  unspecified: Zehaztu gabe
162
162
  import_mailer:
163
163
  import:
164
- errors: Akatsak
165
- errors_present: Arazo bat izan da emaitzak inportatzen
164
+ errors: Erroreak
165
+ errors_present: Arazo bat egon da emaitzak inportatzean
166
166
  row_number: Errenkada
167
167
  subject: Emaitzak zuzen inportatu dira
168
168
  success: Emaitzak zuzen inportatu dira. Emaitzak administrazioaren panelaren bidez berrikusi ahal dituzu.
@@ -209,7 +209,7 @@ eu:
209
209
  nav_breadcrumb:
210
210
  global: Gauzatze osoa
211
211
  search:
212
- search: Ekintzak bilatu
212
+ search: Bilatu ekintzak
213
213
  show:
214
214
  stats:
215
215
  attendees: Bertaratuak
@@ -256,13 +256,13 @@ eu:
256
256
  proposal_linked:
257
257
  email_intro: '"%{proposal_title}" proposamena emaitza batean sartu da. Orrialde honetan ikusi dezakezu:'
258
258
  email_outro: Jakinarazpen hau jaso duzu "%{proposal_title}" jarraitzen ari zarelako. Aurreko esteka sartuz jakinarazpenak jasotzeari utzi ahal diozu.
259
- email_subject: Eguneraketa bat %{proposal_title} proposamenean
259
+ email_subject: 'Eguneraketa bat honetarako: %{proposal_title}'
260
260
  notification_title: <a href="%{proposal_path}">%{proposal_title}</a> proposamena <a href="%{resource_path}">%{resource_title}</a> emaitzan sartu da.
261
261
  result_progress_updated:
262
- email_intro: '"%{proposal_title}" proposamena duen "%{resource_title}" emaitza, % %{progress}% osatu da. Orrialde honetan ikusi dezakezu:'
262
+ email_intro: '"%{proposal_title}" proposamena duen "%{resource_title}" emaitza % %{progress}% osatu da. Orrialde honetan ikusi dezakezu:'
263
263
  email_outro: Jakinarazpen hau jaso duzu "%{proposal_title}" jarraitzen ari zarelako, eta proposamen hori "%{resource_title}" emaitzaren barruan dago. Aurreko estekan sartu jakinarazpenak jasotzeari utzi nahi badiozu.
264
- email_subject: Eguneraketa bat %{resource_title} bilakaeran
265
- notification_title: <a href="%{proposal_path}">%{proposal_title}</a> proposamena duen <a href="%{resource_path}">%{resource_title}</a> emaitza, % %{progress}% osatu da.
264
+ email_subject: 'Eguneraketa bat honetarako: %{resource_title}'
265
+ notification_title: <a href="%{proposal_path}">%{proposal_title}</a> proposamena duen <a href="%{resource_path}">%{resource_title}</a> emaitza %{progress}% osatu da.
266
266
  metrics:
267
267
  results:
268
268
  description: Sortutako emaitza kopurua
@@ -275,6 +275,6 @@ eu:
275
275
  included_projects:
276
276
  result_project: Emaitza honetan sartutako proiektuak
277
277
  included_proposals:
278
- result_proposal: Emaitza honetan jasotako proposamenak
278
+ result_proposal: Emaitza honetan sartutako proiektuak
279
279
  statistics:
280
280
  results_count: Emaitzak