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
@@ -0,0 +1,129 @@
1
+ sl:
2
+ activemodel:
3
+ attributes:
4
+ result:
5
+ decidim_accountability_status_id: Status
6
+ decidim_category_id: Kategorija
7
+ decidim_scope_id: Obseg
8
+ description: Opis
9
+ end_date: Končni datum
10
+ progress: Napredek
11
+ project_ids: Vključeni projekti
12
+ proposals: Vključeni predlogi
13
+ start_date: Začetni datum
14
+ title: Naslov
15
+ updated_at: Posodobljeno
16
+ status:
17
+ description: Opis
18
+ key: Ključ
19
+ name: Ime
20
+ progress: Napredek
21
+ timeline_entry:
22
+ description: Opis
23
+ entry_date: Datum
24
+ models:
25
+ decidim/accountability/proposal_linked_event: Predlog vključen v rezultat
26
+ decidim/accountability/result_progress_updated_event: Posodobljen razvoj postavk
27
+ decidim:
28
+ accountability:
29
+ actions:
30
+ confirm_destroy: Ali ste prepričani, da želite izbrisati to %{name}?
31
+ destroy: Izbriši
32
+ edit: Uredi
33
+ import_csv: Uvozi CSV
34
+ new: Novo %{name}
35
+ preview: Predogled
36
+ timeline_entries: Razvoj projekta
37
+ title: Dejanja
38
+ admin:
39
+ exports:
40
+ results: Rezultati
41
+ import_results:
42
+ new:
43
+ import: Uvozi
44
+ link: povezava
45
+ title: Uvozi postavke iz CSV datoteke
46
+ models:
47
+ result:
48
+ name: Rezultat
49
+ status:
50
+ name: Status
51
+ results:
52
+ create:
53
+ success: Rezultati uspešno ustvarjeni
54
+ index:
55
+ title: Rezultati
56
+ shared:
57
+ subnav:
58
+ statuses: Statusi
59
+ statuses:
60
+ create:
61
+ success: Status uspešno ustvarjen
62
+ edit:
63
+ title: Uredi status
64
+ update: Posodobi status
65
+ index:
66
+ title: Statusi
67
+ timeline_entries:
68
+ create:
69
+ success: Vnos uspešno ustvarjen
70
+ edit:
71
+ title: Uredi vnos
72
+ new:
73
+ create: Ustvari nov vnos
74
+ title: Nov vnos
75
+ update:
76
+ success: Vnos uspešno posodobljen
77
+ admin_log:
78
+ result:
79
+ create: "%{user_name} ustvaril(a) %{resource_name} v %{space_name}"
80
+ import_mailer:
81
+ import:
82
+ errors: Napake
83
+ row_number: Vrsta
84
+ models:
85
+ result:
86
+ fields:
87
+ end_date: Končni datum
88
+ progress: Napredek
89
+ start_date: Začetni datum
90
+ status: Status
91
+ title: Naslov
92
+ status:
93
+ fields:
94
+ description: Opis
95
+ key: Ključ
96
+ name: Ime
97
+ progress: Napredek
98
+ timeline_entry:
99
+ fields:
100
+ description: Opis
101
+ entry_date: Datum
102
+ results:
103
+ filters:
104
+ all: Vsi
105
+ home:
106
+ categories_label: Kategorije
107
+ subcategories_label: Podkategorije
108
+ search:
109
+ search: Išči dejanja
110
+ show:
111
+ stats:
112
+ last_edited_by: Nazadnje uredil(a) {0}, {1}
113
+ components:
114
+ accountability:
115
+ settings:
116
+ global:
117
+ intro: Predstavitev
118
+ metrics:
119
+ results:
120
+ description: Število ustvarjenih rezultatov
121
+ object: rezultati
122
+ title: Rezultati
123
+ participatory_processes:
124
+ participatory_process_groups:
125
+ highlighted_results:
126
+ results: Rezultati
127
+ resource_links:
128
+ included_proposals:
129
+ result_proposal: Predlogi, vključeni v rezultat
@@ -0,0 +1,205 @@
1
+ sr:
2
+ activemodel:
3
+ attributes:
4
+ result:
5
+ decidim_accountability_status_id: Stanje
6
+ decidim_category_id: Kategorija
7
+ decidim_scope_id: Opseg
8
+ description: Opis
9
+ end_date: Krajnji datum
10
+ progress: Naprеdak
11
+ project_ids: Uključeni projekti
12
+ proposals: Uključeni predlozi
13
+ start_date: Datum početka
14
+ title: Naslov
15
+ updated_at: Ažurirano u
16
+ status:
17
+ description: Opis
18
+ key: Ključ
19
+ name: Ime
20
+ progress: Napredak
21
+ timeline_entry:
22
+ description: Opis
23
+ entry_date: Datum
24
+ models:
25
+ decidim/accountability/proposal_linked_event: Predlog uključen u rezultat
26
+ decidim/accountability/result_progress_updated_event: Rezultati napretka ažurirani
27
+ activerecord:
28
+ models:
29
+ decidim/accountability/result:
30
+ one: Rezultat
31
+ few: Rezultati
32
+ other: Rezultati
33
+ decidim:
34
+ accountability:
35
+ actions:
36
+ confirm_destroy: Da li ste sigurni da želite da obrišete ovo %{name}?
37
+ destroy: Obriši
38
+ edit: Izmeni
39
+ new: Novo %{name}
40
+ preview: Pregled
41
+ timeline_entries: Evolucija predloga
42
+ title: Akcije
43
+ admin:
44
+ exports:
45
+ results: Rezultati
46
+ models:
47
+ result:
48
+ name: Rezultat
49
+ status:
50
+ name: Stanje
51
+ timeline_entry:
52
+ name: Unos u vremensku liniju
53
+ results:
54
+ create:
55
+ invalid: Nastao je problem pri stvaranju ovog rezultata
56
+ success: Rezultat uspešno stvoren
57
+ destroy:
58
+ success: Rezultat uspešno obrisan
59
+ edit:
60
+ title: Izmeni rezultat
61
+ update: Ažuriraj rezultat
62
+ index:
63
+ title: Rezultati
64
+ new:
65
+ create: Stvori rezultat
66
+ title: Novi rezultat
67
+ update:
68
+ invalid: Nastao je problem pri ažuriranju ovog rezultata
69
+ success: Rezultat uspešno ažuriran
70
+ shared:
71
+ subnav:
72
+ statuses: Statusi
73
+ statuses:
74
+ create:
75
+ invalid: Nastao je problem pri stvaranju ovog statusa
76
+ success: Status je uspešno stvoren
77
+ destroy:
78
+ success: Status je uspešno obrisan
79
+ edit:
80
+ title: Izmeni status
81
+ update: Ažuriraj status
82
+ index:
83
+ title: Statusi
84
+ new:
85
+ create: Stvori status
86
+ title: Novi status
87
+ update:
88
+ invalid: Nastao je problem pri ažuriranju ovog statusa
89
+ success: Status je uspešno ažuriran
90
+ timeline_entries:
91
+ create:
92
+ invalid: Nastao je problem pri stvaranju ovog unosa
93
+ success: Unos je uspešno stvoren
94
+ destroy:
95
+ success: Unos je uspešno obrisan
96
+ edit:
97
+ title: Uredi unos
98
+ update: Ažuriraj unos
99
+ index:
100
+ title: Unosi vremenske linije projekta
101
+ new:
102
+ create: Stvori unos
103
+ title: Nov unos
104
+ update:
105
+ invalid: Nastao je problem pri ažuriranju ovog unosa
106
+ success: Unos je uspešno ažuriran
107
+ admin_log:
108
+ result:
109
+ create: "%{user_name} je stvorio rezultat %{resource_name} u %{space_name}"
110
+ delete: "%{user_name} je obrisao %{resource_name} u %{space_name}"
111
+ update: "%{user_name} je ažurirao rezultat %{resource_name} u %{space_name}"
112
+ value_types:
113
+ parent_presenter:
114
+ not_found: 'Ovaj roditelj nije pronađen u bazi podataka (ID: %{id})'
115
+ last_activity:
116
+ new_result_at_html: "<span>Novi rezultat u %{link}</span>"
117
+ models:
118
+ result:
119
+ fields:
120
+ end_date: Krajnji datum
121
+ progress: Napredak
122
+ start_date: Datum početka
123
+ status: Stanje
124
+ title: Naslov
125
+ status:
126
+ fields:
127
+ description: Opis
128
+ key: Ključ
129
+ name: Ime
130
+ progress: Napredak
131
+ timeline_entry:
132
+ fields:
133
+ description: Opis
134
+ entry_date: Datum
135
+ results:
136
+ count:
137
+ results_count:
138
+ one: 1 rezultat
139
+ few: "%{count} rezultata"
140
+ other: "%{count} rezultata"
141
+ filters:
142
+ all: Sve
143
+ scopes: Opsezi
144
+ home:
145
+ categories_label: Kategorije
146
+ subcategories_label: Podkategorije
147
+ home_header:
148
+ global_status: Sveopšte stanje izvršenja
149
+ nav_breadcrumb:
150
+ global: Sveopšte izvršenje
151
+ search:
152
+ search: Potraga za akcijama
153
+ show:
154
+ stats:
155
+ attendees: Učesnici
156
+ back_to_resource: Vrati se na rezultat
157
+ comments: Komentari
158
+ contributions: Doprinosi
159
+ last_edited_by: Poslednji put izmenjeno od strane
160
+ last_updated_at: Poslеdnji put ažurirano
161
+ meetings: Sastanci
162
+ proposals: Predlozi
163
+ votes: Podržavanja
164
+ timeline:
165
+ title: Evolucija projekta
166
+ components:
167
+ accountability:
168
+ name: Odgovornost
169
+ settings:
170
+ global:
171
+ categories_label: Ime za "Kategorije"
172
+ comments_enabled: Komentari su omogućeni
173
+ display_progress_enabled: Prikaži napredak
174
+ heading_leaf_level_results: Ime za "Projekte"
175
+ heading_parent_level_results: Ime za "Rezultate"
176
+ intro: Uvod
177
+ subcategories_label: Ime za "Podkategorije"
178
+ step:
179
+ comments_blocked: Komentari su onemogućeni
180
+ events:
181
+ accountability:
182
+ proposal_linked:
183
+ email_intro: 'Predlog "%{proposal_title}" je uključen u rezultatu. Možete ga videti na ovoj stranici:'
184
+ email_outro: Dobili ste ovo obaveštenje jer pratite "%{proposal_title}". Možete da prestanete da dobijate obaveštenja, ukoliko pratite prethodni link.
185
+ email_subject: Ažuriranje %{proposal_title}
186
+ notification_title: Predlog <a href="%{proposal_path}">%{proposal_title}</a> je uključen u rezultat <a href="%{resource_path}">%{resource_title}</a>.
187
+ result_progress_updated:
188
+ email_intro: 'Rezultat "%{resource_title}", u koji je uključen predlog "%{proposal_title}", je sada %{progress} gotov. Možete ga videti na ovoj stranici:'
189
+ email_outro: Dobili ste ovo obaveštenje jer pratite "%{proposal_title}", a ovaj predlog je uključen u rezultat "%{resource_title}". Možete da prekinete da dobijate obaveštenja ako pratite prethodni link.
190
+ email_subject: Ažuriranje napredka %{resource_title}
191
+ notification_title: Rezultat <a href="%{resource_path}">%{resource_title}</a>, koji uključuje predlog <a href="%{proposal_path}">%{proposal_title}</a>, je sada %{progress}% gotov.
192
+ metrics:
193
+ results:
194
+ description: Broj generisanih rezultata
195
+ object: rezultati
196
+ title: Rezultati
197
+ participatory_processes:
198
+ participatory_process_groups:
199
+ highlighted_results:
200
+ results: Rezultati
201
+ resource_links:
202
+ included_projects:
203
+ result_project: Projekti koji su deo ovog rezultata
204
+ included_proposals:
205
+ result_proposal: Projekti koji su deo ovog rezultata
@@ -35,6 +35,7 @@ sv:
35
35
  confirm_destroy: Vill du radera detta %{name}?
36
36
  destroy: Radera
37
37
  edit: Redigera
38
+ import_csv: Importera CSV
38
39
  new: Ny %{name}
39
40
  preview: Förhandsvisa
40
41
  timeline_entries: Projektutveckling
@@ -42,6 +43,15 @@ sv:
42
43
  admin:
43
44
  exports:
44
45
  results: Resultat
46
+ import_results:
47
+ new:
48
+ import: Importera
49
+ info: "<p>Vi rekommenderar att du följer dessa steg:</p><ol><li>Skapa statusar för de resultat som du vill lägga till (<a href='%{link_new_status}' target='_blank'>länk</a>)</li><li>Skapa minst ett resultat manuellt genom denna Admin panel (<a href='%{link_new_result}' target='_blank'>länk</a>) innan du använder Importera, för att ha en bättre förståelse för formatet och vad du behöver för att fylla i.</li><li>Ladda ner exporten med CSV-format (%{link_export_csv})</li><li>Gör ändringarna lokalt. Du kan bara ändra följande kolumner i CSV:</li></ol><ul><li><b>kategori/id:</b> ID för kategorin</li><li><b>omfattning/id:</b> ID för omfattningen</li><li><b>förälder/id:</b> ID för föräldern (för relaterade resultat). Valfri</li><li><b>title/I18N:</b> Titel på X språk</li><li><b>beskrivning/I18N:</b> Beskrivning på X språk</li><li><b>start_date:</b> datum när resultatet startar exekvering (format YYYY-MM-DD)</li><li><b>end_date:</b> datum när resultatet slutar exekvering (format YYYY-MM-DD)</li><li><b>status/id:</b> ID för status för detta resultat</li><li><b>fortskrider:</b> Procent (från 0 till 100) av exekveringen</li><li><b>förslag_ids:</b> internt ID för de relaterade förslagen (separerade med komma). Det konverteras automatiskt till <span class='attribute-name'>proposal_url</span></li></ul>"
50
+ link: länk
51
+ title: Importera resultat från CSV
52
+ imports:
53
+ create:
54
+ success: Filen har börjat importera. Du kommer att få ett e-postmeddelande inom de närmaste minuterna med resultatet av importen
45
55
  models:
46
56
  result:
47
57
  name: Resultat
@@ -58,17 +68,11 @@ sv:
58
68
  edit:
59
69
  title: Redigera resultat
60
70
  update: Uppdatera resultat
61
- form:
62
- add_proposal: Lägg till förslag
63
71
  index:
64
72
  title: Resultat
65
73
  new:
66
74
  create: Skapa resultat
67
75
  title: Nytt resultat
68
- proposals:
69
- close: Stäng
70
- current_selection: Aktuellt urval
71
- select: Välj
72
76
  update:
73
77
  invalid: Det gick inte att uppdatera det här resultatet
74
78
  success: Resultatet har uppdaterats
@@ -117,6 +121,13 @@ sv:
117
121
  value_types:
118
122
  parent_presenter:
119
123
  not_found: 'Föräldraposten hittades inte i databasen (ID: %{id})'
124
+ import_mailer:
125
+ import:
126
+ errors: Fel
127
+ errors_present: Det gick inte att importera resultat
128
+ row_number: Rad
129
+ subject: Lyckad import av resultat
130
+ success: Lyckad import av resultat. Du kan granska resultaten i administrationsgränssnittet.
120
131
  last_activity:
121
132
  new_result_at_html: "<span>Nytt resultat på %{link}</span>"
122
133
  models:
@@ -157,30 +168,16 @@ sv:
157
168
  show:
158
169
  stats:
159
170
  attendees: Deltagare
160
- back_to_result: Gå tillbaka till resultatet
171
+ back_to_resource: Gå tillbaka till resultatet
161
172
  comments: Kommentarer
162
173
  contributions: Bidrag
163
174
  last_edited_by: Senast ändrad av
164
175
  last_updated_at: Senast uppdaterad den
165
176
  meetings: Möten
166
- number_of_versions: Versioner
167
177
  proposals: Förslag
168
- show_all_versions: Visa alla versioner
169
- version_author: Versionsförfattare
170
- version_created_at: Version skapad
171
- version_number: Versionsnummer
172
- version_number_out_of_total: "%{current_version} av %{total_count}"
173
- votes: Stöder
178
+ votes: Stöd
174
179
  timeline:
175
180
  title: Projektutveckling
176
- versions:
177
- index:
178
- changes_at_title: Ändringar vid "%{title}"
179
- title: Versioner
180
- show:
181
- changes_at_title: Ändringar vid "%{title}"
182
- version:
183
- version_index: Version %{index}
184
181
  components:
185
182
  accountability:
186
183
  name: Ansvarsskyldighet
@@ -199,7 +196,7 @@ sv:
199
196
  accountability:
200
197
  proposal_linked:
201
198
  email_intro: 'Förslaget "%{proposal_title}" har tagits med i ett resultat. Visa det från den här sidan:'
202
- email_outro: Du har fått den här meddelandet eftersom du följer "%{proposal_title}". Du kan sluta att ta emot meddelanden genom att följa föregående länk.
199
+ email_outro: Du har fått det här meddelandet eftersom du följer "%{proposal_title}". Du kan sluta att ta emot meddelanden genom att följa föregående länk.
203
200
  email_subject: En uppdatering till %{proposal_title}
204
201
  notification_title: Förslaget <a href="%{proposal_path}">%{proposal_title}</a> har tagits med i resultatet <a href="%{resource_path}">%{resource_title}</a>.
205
202
  result_progress_updated:
@@ -218,7 +215,7 @@ sv:
218
215
  results: Resultat
219
216
  participatory_spaces:
220
217
  highlighted_results:
221
- see_all: Visa alla (%{count})
218
+ see_all: Se alla resultat (%{count})
222
219
  resource_links:
223
220
  included_projects:
224
221
  result_project: Projekt som ingår i detta resultat
@@ -58,17 +58,11 @@ tr:
58
58
  edit:
59
59
  title: Sonucu düzenle
60
60
  update: Sonuç güncelle
61
- form:
62
- add_proposal: Teklif ekle
63
61
  index:
64
62
  title: Sonuçlar
65
63
  new:
66
64
  create: Sonuç oluştur
67
65
  title: Yeni sonuç
68
- proposals:
69
- close: Kapat
70
- current_selection: Şu anki seçim
71
- select: seçmek
72
66
  update:
73
67
  invalid: Bu sonucu güncellerken bir sorun oluştu
74
68
  success: Sonuç başarıyla güncellendi
@@ -157,30 +151,16 @@ tr:
157
151
  show:
158
152
  stats:
159
153
  attendees: Katılımcılar
160
- back_to_result: Sonuca geri dön
154
+ back_to_resource: Sonuca geri dön
161
155
  comments: Yorumlar
162
156
  contributions: Katılımlar
163
157
  last_edited_by: Tarafından düzenlenmiş Son
164
158
  last_updated_at: 'Son güncelleme tarihi:'
165
159
  meetings: Toplantılar
166
- number_of_versions: Sürümler
167
160
  proposals: Teklif
168
- show_all_versions: Tüm sürümleri göster
169
- version_author: Sürüm yazarı
170
- version_created_at: '''De oluşturulan sürüm'
171
- version_number: Versiyon numarası
172
- version_number_out_of_total: "%{current_version} üzerinden %{total_count}"
173
161
  votes: Destekler
174
162
  timeline:
175
163
  title: Proje evrimi
176
- versions:
177
- index:
178
- changes_at_title: '"%{title}" daki değişiklikler'
179
- title: Sürümler
180
- show:
181
- changes_at_title: '"%{title}" daki değişiklikler'
182
- version:
183
- version_index: Sürüm %{index}
184
164
  components:
185
165
  accountability:
186
166
  name: Hesap verebilirlik
@@ -216,9 +196,6 @@ tr:
216
196
  participatory_process_groups:
217
197
  highlighted_results:
218
198
  results: Sonuçlar
219
- participatory_spaces:
220
- highlighted_results:
221
- see_all: Tümünü gör (%{count})
222
199
  resource_links:
223
200
  included_projects:
224
201
  result_project: Bu sonuca dahil edilen projeler