decidim-budgets 0.23.3 → 0.24.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/decidim/budgets/projects.js.es6 +30 -13
  3. data/app/cells/decidim/budgets/limit_announcement_cell.rb +2 -9
  4. data/app/cells/decidim/budgets/project_list_item/project_data_vote_button.erb +1 -0
  5. data/app/cells/decidim/budgets/project_list_item_cell.rb +4 -0
  6. data/app/commands/decidim/budgets/admin/import_proposals_to_budgets.rb +8 -1
  7. data/app/controllers/decidim/budgets/admin/budgets_controller.rb +22 -1
  8. data/app/controllers/decidim/budgets/orders_controller.rb +1 -1
  9. data/app/forms/decidim/budgets/admin/component_form.rb +57 -10
  10. data/app/forms/decidim/budgets/admin/project_form.rb +3 -2
  11. data/app/forms/decidim/budgets/admin/project_import_proposals_form.rb +11 -0
  12. data/app/helpers/decidim/budgets/projects_helper.rb +45 -1
  13. data/app/models/decidim/budgets/order.rb +94 -18
  14. data/app/permissions/decidim/budgets/admin/permissions.rb +1 -1
  15. data/app/views/decidim/budgets/admin/budgets/index.html.erb +22 -5
  16. data/app/views/decidim/budgets/admin/projects/index.html.erb +13 -6
  17. data/app/views/decidim/budgets/admin/proposals_imports/new.html.erb +6 -1
  18. data/app/views/decidim/budgets/projects/_budget_excess.html.erb +2 -2
  19. data/app/views/decidim/budgets/projects/_budget_summary.html.erb +32 -12
  20. data/app/views/decidim/budgets/projects/_filters_small_view.html.erb +1 -1
  21. data/app/views/decidim/budgets/projects/_order_progress.html.erb +1 -1
  22. data/app/views/decidim/budgets/projects/_order_total_budget.html.erb +5 -1
  23. data/config/locales/ar.yml +2 -5
  24. data/config/locales/ca.yml +36 -8
  25. data/config/locales/cs.yml +34 -6
  26. data/config/locales/de.yml +34 -6
  27. data/config/locales/el.yml +2 -6
  28. data/config/locales/en.yml +35 -7
  29. data/config/locales/es-MX.yml +35 -7
  30. data/config/locales/es-PY.yml +35 -7
  31. data/config/locales/es.yml +35 -7
  32. data/config/locales/eu.yml +2 -5
  33. data/config/locales/fi-plain.yml +34 -6
  34. data/config/locales/fi.yml +36 -8
  35. data/config/locales/fr-CA.yml +35 -7
  36. data/config/locales/fr.yml +35 -7
  37. data/config/locales/gl.yml +23 -7
  38. data/config/locales/hu.yml +2 -5
  39. data/config/locales/id-ID.yml +2 -5
  40. data/config/locales/is-IS.yml +2 -4
  41. data/config/locales/it.yml +2 -6
  42. data/config/locales/ja.yml +3 -7
  43. data/config/locales/lv.yml +2 -6
  44. data/config/locales/nl.yml +49 -7
  45. data/config/locales/no.yml +2 -7
  46. data/config/locales/pl.yml +41 -13
  47. data/config/locales/pt-BR.yml +2 -5
  48. data/config/locales/pt.yml +2 -6
  49. data/config/locales/ro-RO.yml +69 -6
  50. data/config/locales/ru.yml +2 -5
  51. data/config/locales/sk.yml +2 -6
  52. data/config/locales/sr-CS.yml +0 -2
  53. data/config/locales/sv.yml +35 -7
  54. data/config/locales/tr-TR.yml +31 -7
  55. data/config/locales/uk.yml +2 -5
  56. data/config/locales/zh-CN.yml +2 -7
  57. data/db/migrate/20200804175222_votes_enabled_to_votes_choices.rb +4 -4
  58. data/db/migrate/20210310120613_add_followable_counter_cache_to_budgets.rb +16 -0
  59. data/lib/decidim/api/budget_type.rb +21 -0
  60. data/lib/decidim/api/budgets_type.rb +26 -0
  61. data/lib/decidim/api/project_type.rb +23 -0
  62. data/lib/decidim/budgets.rb +2 -0
  63. data/lib/decidim/budgets/api.rb +9 -0
  64. data/lib/decidim/budgets/component.rb +31 -14
  65. data/lib/decidim/budgets/project_serializer.rb +81 -0
  66. data/lib/decidim/budgets/test/factories.rb +35 -1
  67. data/lib/decidim/budgets/version.rb +1 -1
  68. data/lib/decidim/budgets/workflows/all.rb +1 -1
  69. data/lib/decidim/budgets/workflows/base.rb +3 -3
  70. data/lib/decidim/budgets/workflows/one.rb +1 -1
  71. metadata +20 -17
  72. data/app/types/decidim/budgets/budget_type.rb +0 -24
  73. data/app/types/decidim/budgets/budgets_type.rb +0 -32
  74. data/app/types/decidim/budgets/project_type.rb +0 -26
@@ -70,10 +70,10 @@ pt:
70
70
  description: Estes são os projetos que você escolheu para fazer parte do orçamento.
71
71
  title: Confirmar votação
72
72
  budget_excess:
73
+ budget_excess:
74
+ title: O orçamento máximo excedeu
73
75
  close: Fechar
74
- description: Este projeto excede o orçamento máximo e não pode ser adicionado. Se você quiser, você pode excluir um projeto que você já selecionou para adicionar ou fazer seu voto com suas preferências.
75
76
  ok: OK
76
- title: O orçamento máximo excedeu
77
77
  budget_summary:
78
78
  are_you_sure: Deseja mesmo cancelar o seu voto?
79
79
  assigned: 'Atribuído:'
@@ -81,7 +81,6 @@ pt:
81
81
  checked_out:
82
82
  description: Você já votou no orçamento. Se você mudou de idéia, você pode %{cancel_link}.
83
83
  title: Votação do orçamento concluída
84
- description: Em que projetos pensa que devemos atribuir orçamento? Atribua pelo menos %{minimum_budget} aos projetos que deseja e vote com suas preferências para definir o orçamento.
85
84
  title: Você decide o orçamento
86
85
  count:
87
86
  projects_count:
@@ -119,7 +118,6 @@ pt:
119
118
  announcement: Anúncio
120
119
  comments_enabled: Comentários ativados
121
120
  projects_per_page: Projetos por página
122
- resources_permissions_enabled: Permissões de ações podem ser definidas para cada reunião
123
121
  total_budget: Orçamento total
124
122
  vote_threshold_percent: Porcentagem do limiar de voto
125
123
  step:
@@ -140,4 +138,3 @@ pt:
140
138
  project_proposal: 'Propostas incluídas neste projeto:'
141
139
  index:
142
140
  confirmed_orders_count: Contagem de votos
143
- total_budget: Orçamento total
@@ -74,10 +74,10 @@ pt:
74
74
  description: Estes são os projetos que escolheu para fazer parte do orçamento.
75
75
  title: Confirmar votação
76
76
  budget_excess:
77
+ budget_excess:
78
+ title: Orçamento máximo excedido
77
79
  close: Fechar
78
- description: Este projeto excede o orçamento máximo e não pode ser adicionado. Se quiser, pode eliminar um projeto que já selecionou para adicionar, ou fazer o seu voto com as suas preferências.
79
80
  ok: OK
80
- title: Orçamento máximo excedido
81
81
  budget_summary:
82
82
  are_you_sure: Tem a certeza de que deseja cancelar o seu voto?
83
83
  assigned: 'Atribuído:'
@@ -85,8 +85,6 @@ pt:
85
85
  checked_out:
86
86
  description: Já votou no orçamento. Se mudou de ideia, pode %{cancel_link}.
87
87
  title: Votação do orçamento concluída
88
- description: Em que projetos crê que devemos alocar orçamento? Atribua pelo menos %{minimum_budget} aos projetos que deseja e vote com as suas preferências para definir o orçamento.
89
- description_minimum_projects_rule: Em que projetos crê que devemos alocar orçamento? Selecione pelo menos %{minimum_number} projetos que deseja e vote de acordo com as suas preferências para definir o orçamento.
90
88
  title: Você decide o orçamento
91
89
  count:
92
90
  projects_count:
@@ -142,7 +140,6 @@ pt:
142
140
  budget_voting_rule_only_one: Apenas deve estar ativa uma regra de votação
143
141
  budget_voting_rule_required: É necessária uma regra de votação
144
142
  projects_per_page: Projetos por página
145
- resources_permissions_enabled: Permissões de ações podem ser definidas para cada reunião
146
143
  total_budget: Orçamento total
147
144
  vote_minimum_budget_projects_number: Número mínimo de projetos a votar
148
145
  vote_rule_minimum_budget_projects_enabled: 'Ativar regra: Número mínimo de projetos a voto'
@@ -166,4 +163,3 @@ pt:
166
163
  project_proposal: 'Propostas incluídas neste projeto:'
167
164
  index:
168
165
  confirmed_orders_count: Contagem de votos
169
- total_budget: Orçamento total
@@ -1,11 +1,18 @@
1
1
  ro:
2
2
  activemodel:
3
3
  attributes:
4
+ budget:
5
+ decidim_scope_id: Domeniu de aplicare
6
+ description: Descriere
7
+ title: Titlu
8
+ total_budget: Total budget
4
9
  project:
10
+ budget_amount: Sumă bugetară
5
11
  decidim_category_id: Categorie
6
12
  decidim_scope_id: Domeniu
7
13
  description: Descriere
8
14
  proposal_ids: Propuneri conexe
15
+ selected: Selectate pentru implementare
9
16
  title: Titlu
10
17
  activerecord:
11
18
  models:
@@ -21,11 +28,39 @@ ro:
21
28
  confirm_destroy: Sunteţi sigur că doriţi să ştergeţi acest proiect?
22
29
  destroy: Ștergere
23
30
  edit: Editare
31
+ edit_projects: Gestionați proiectele
24
32
  import: Importă propuneri în proiecte
33
+ new: Nou %{name}
25
34
  preview: Previzualizare
26
35
  title: Acțiuni
27
36
  admin:
37
+ budgets:
38
+ create:
39
+ invalid: A apărut o problemă la crearea acestui buget
40
+ success: Buget creat cu succes
41
+ destroy:
42
+ invalid: A apărut o eroare la ștergerea acestui buget
43
+ success: Bugetul a fost șters
44
+ edit:
45
+ title: Editare buget
46
+ update: Actualizați bugetul
47
+ index:
48
+ finished_orders: Voturi finalizate
49
+ pending_orders: Voturi în așteptare
50
+ title: Bugete
51
+ users_with_finished_orders: Utilizatori cu voturi finalizate
52
+ users_with_pending_orders: Utilizatori cu voturi în așteptare
53
+ new:
54
+ create: Creați un buget
55
+ title: Buget nou
56
+ update:
57
+ invalid: A apărut o eroare la actualizarea acestui buget
58
+ success: Buget actualizat cu succes
59
+ exports:
60
+ projects: Proiecte
28
61
  models:
62
+ budget:
63
+ name: Buget
29
64
  project:
30
65
  name: Proiect
31
66
  projects:
@@ -40,6 +75,7 @@ ro:
40
75
  index:
41
76
  finished_orders: Voturi terminate
42
77
  pending_orders: Voturi în așteptare
78
+ selected: Selectate
43
79
  title: Proiecte
44
80
  new:
45
81
  create: Crează
@@ -55,12 +91,41 @@ ro:
55
91
  create: Importă propuneri în proiecte
56
92
  no_components: Nu există alte componente de propunere în acest spațiu participativ pentru a importa propunerile în proiecte.
57
93
  select_component: Vă rugăm să selectaţi o componentă
94
+ title: Importă propuneri
58
95
  admin_log:
96
+ budget:
97
+ create: "%{user_name} a creat bugetul %{resource_name} în spațiul %{space_name}"
98
+ delete: "%{user_name} a șters bugetul %{resource_name} în spațiul %{space_name}"
99
+ update: "%{user_name} a actualizat bugetul %{resource_name} în spațiul %{space_name}"
59
100
  project:
60
101
  create: "%{user_name} a creat proiectul %{resource_name} în spațiul %{space_name}"
61
102
  delete: "%{user_name} a șters proiectul %{resource_name} în spațiul %{space_name}"
62
103
  update: "%{user_name} a actualizat proiectul %{resource_name} în spațiul %{space_name}"
104
+ budget:
105
+ view: Vezi toate proiectele bugetare
106
+ budget_information_modal:
107
+ back_to: Înapoi la %{component_name}
108
+ close_modal: Închidere
109
+ continue: Continuă
110
+ more_information: Mai multe informații
111
+ budgets_list:
112
+ cancel_order:
113
+ more_than_one: șterge votul pentru %{name} și începe din nou
114
+ only_one: șterge votul și începe din nou.
115
+ finished_message: Ai terminat procesul de vot. Mulțumim pentru participare!
116
+ highlighted_cta: Votează la %{name}
117
+ if_change_opinion: Dacă v-ați răzgândit, puteți
118
+ my_budgets: Bugetele mele
119
+ voted_on: Ai votat pentru %{links}
120
+ limit_announcement:
121
+ cant_vote: Nu puteți vota pentru acest buget. <a href="%{landing_path}">Încercați un alt buget</a>.
122
+ limit_reached: Voturi active în %{links}. Pentru a vota cu privire la acest buget, trebuie să <a href="%{landing_path}">ștergeți votul și să reîncepeți</a>.
63
123
  models:
124
+ budget:
125
+ fields:
126
+ name: Nume
127
+ projects_count: Număr de proiecte
128
+ total_budget: Buget total
64
129
  project:
65
130
  fields:
66
131
  title: Titlu
@@ -68,6 +133,8 @@ ro:
68
133
  order_summary:
69
134
  selected_projects: 'Proiectele pe care le-aţi selectat sunt:'
70
135
  subject: Ați votat pentru spațiul participativ %{space_name}
136
+ voted_on_space: Ați votat asupra bugetului %{budget_name} pentru spațiul participativ al %{space_name}.
137
+ voted_on_space_with_scope: Ați votat bugetul pentru %{budget_name} pentru spațiul participativ %{space_name} pe %{scope_name} (%{scope_type}).
71
138
  projects:
72
139
  budget_confirm:
73
140
  cancel: Anulează
@@ -75,10 +142,10 @@ ro:
75
142
  description: Acestea sunt proiectele pe care aţi ales să le faceţi parte din buget.
76
143
  title: Confirmă votul
77
144
  budget_excess:
145
+ budget_excess:
146
+ title: Buget maxim depășit
78
147
  close: Inchide
79
- description: Acest proiect depășește bugetul maxim și nu poate fi adăugat. Dacă doriți, puteți șterge un proiect pe care l-ați selectat deja pentru a adăuga sau puteți vota cu preferințele dvs.
80
148
  ok: Ok
81
- title: Buget maxim depășit
82
149
  budget_summary:
83
150
  are_you_sure: Ești sigur că vrei să anulezi votul?
84
151
  assigned: 'Atribuit'
@@ -86,8 +153,6 @@ ro:
86
153
  checked_out:
87
154
  description: Ai votat deja pentru buget. Dacă te-ai răzgândit, poți %{cancel_link}.
88
155
  title: Votul pentru buget finalizat
89
- description: Ce proiecte credeţi că ar trebui să alocăm bugetul? Atribuiți cel puțin %{minimum_budget} proiectelor pe care le doriți și votați cu preferințele dvs. pentru a defini bugetul.
90
- description_minimum_projects_rule: Ce proiecte credeţi că ar trebui să alocăm bugetul? Selectați cel puțin %{minimum_number} proiecte pe care le doriți și votați cu preferințele dvs. pentru a defini bugetul.
91
156
  title: Dumneavoastră decideţi bugetul
92
157
  count:
93
158
  projects_count:
@@ -145,7 +210,6 @@ ro:
145
210
  budget_voting_rule_only_one: Doar o singură regulă de vot trebuie activată
146
211
  budget_voting_rule_required: Este necesară o regulă de vot
147
212
  projects_per_page: Proiecte pe pagină
148
- resources_permissions_enabled: Permisiunile de acțiuni pot fi setate pentru fiecare întâlnire
149
213
  total_budget: Buget total
150
214
  vote_minimum_budget_projects_number: Numărul minim de proiecte de votat
151
215
  vote_rule_minimum_budget_projects_enabled: 'Permite regula: numărul minim de proiecte care urmează să fie votate pe'
@@ -169,4 +233,3 @@ ro:
169
233
  project_proposal: 'Propuneri incluse în acest proiect:'
170
234
  index:
171
235
  confirmed_orders_count: Numărul de voturi
172
- total_budget: Buget total
@@ -72,10 +72,10 @@ ru:
72
72
  description: Вот те проекты, которые вы выбрали для включения в бюджет.
73
73
  title: Подтвердить голос
74
74
  budget_excess:
75
+ budget_excess:
76
+ title: Превышен предельный бюджет
75
77
  close: Закрыть
76
- description: Добавление этого проекта превысит предельный бюджет, и поэтому его сейчас нельзя добавить. Если хотите, вы можете удалить один из проектов, который вы ранее выбрали для добавления, или проголосовать за то распределение средств, которое вы уже сделали.
77
78
  ok: Хорошо
78
- title: Превышен предельный бюджет
79
79
  budget_summary:
80
80
  are_you_sure: Вы действительно хотите отменить свой голос?
81
81
  assigned: 'Выделено:'
@@ -83,7 +83,6 @@ ru:
83
83
  checked_out:
84
84
  description: Вы уже голосовали за бюджет. Если вы передумали, вы можете %{cancel_link}.
85
85
  title: Голосование по бюджету завершено
86
- description: Какие проекты, по вашему мнению, заслуживают выделения средств? Выделите не менее %{minimum_budget} проектам, которые вы поддерживаете, и проголосуйте за такое распределение средств, чтобы определить бюджет.
87
86
  title: Вы определяете бюджет
88
87
  count:
89
88
  projects_count:
@@ -125,7 +124,6 @@ ru:
125
124
  announcement: Объявление
126
125
  comments_enabled: Комментарии включены
127
126
  projects_per_page: Проектов на страницу
128
- resources_permissions_enabled: Для каждой встречи можно задать те или иные разрешения на действия
129
127
  total_budget: Общий бюджет
130
128
  vote_threshold_percent: Минимальный процент бюджета для голосования
131
129
  step:
@@ -146,4 +144,3 @@ ru:
146
144
  project_proposal: 'Предложения, включенные в этот проект:'
147
145
  index:
148
146
  confirmed_orders_count: Количество голосов
149
- total_budget: Общий бюджет
@@ -75,10 +75,10 @@ sk:
75
75
  description: Na týchto projektoch ste si zvolili účasť na rozpočte.
76
76
  title: Potvrdiť hlas
77
77
  budget_excess:
78
+ budget_excess:
79
+ title: Maximálny rozpočet prekročený
78
80
  close: Zavrieť
79
- description: Tento projekt prekročil maximálny rozpočet a nemôže byť pridaný. Ak chcete, môžete vymazať niektorý projekt, ktorý ste už zvolili, alebo hlasovať svojimi preferenciami.
80
81
  ok: OK
81
- title: Maximálny rozpočet prekročený
82
82
  budget_summary:
83
83
  are_you_sure: Naozaj chcete zrušiť svoj hlas?
84
84
  assigned: 'Priradený:'
@@ -86,8 +86,6 @@ sk:
86
86
  checked_out:
87
87
  description: Už ste hlasovali za rozpočet. Ak ste zmenili názor, môžete %{cancel_link}.
88
88
  title: Hlasovanie o rozpočte dokončené
89
- description: Na ktoré projekty by sme podľa Vás mali vyčleniť rozpočet? Vyberte si aspoň %{minimum_budget} na projekty, ktoré chcete, a hlasujte podľa svojich preferencií pre definovanie rozpočtu.
90
- description_minimum_projects_rule: Na ktoré projekty by sme podľa Vás mali vyčleniť rozpočet? Vyberte si aspoň %{minimum_number} projektov, ktoré chcete, a hlasujte podľa svojich preferencií za rozpočet.
91
89
  title: Vy rozhodujete o rozpočte
92
90
  count:
93
91
  projects_count:
@@ -139,7 +137,6 @@ sk:
139
137
  budget_voting_rule_only_one: Povolený smie byť iba jeden spôsob hlasovania
140
138
  budget_voting_rule_required: Požaduje sa jeden spôsob hlasovania
141
139
  projects_per_page: Projektov na stránke
142
- resources_permissions_enabled: Povolenia pre akcie môžu byť nastavené pre každé stretnutie zvlášť
143
140
  total_budget: Celkový rozpočet
144
141
  vote_minimum_budget_projects_number: Minimálny počet projektov, za ktoré je možné hlasovať
145
142
  vote_rule_minimum_budget_projects_enabled: 'Povoliť pravidlo: Minimálny počet projektov, za ktoré je možné hlasovať'
@@ -163,4 +160,3 @@ sk:
163
160
  project_proposal: 'Návrhy, zahrnuté v rámci tohto projektu:'
164
161
  index:
165
162
  confirmed_orders_count: Počet hlasov
166
- total_budget: Celkový rozpočet
@@ -6,8 +6,6 @@ sr:
6
6
  selected_projects: 'Projekti koje ste izabrali su:'
7
7
  subject: Glasali ste na prostoru za diskusiju %{space_name}
8
8
  projects:
9
- budget_summary:
10
- description_minimum_projects_rule: Za koje projekte mislite da bi trebalo da odvojimo sredstva u budžetu? Odaberite bar %{minimum_number} projekata koje želite, glasajte za predloge koji vam se sviđaju i tako pomognite u definisanju budžeta.
11
9
  orders:
12
10
  highest_cost: Najveća cena
13
11
  label: Poređaj projekte po
@@ -45,13 +45,19 @@ sv:
45
45
  title: Redigera budget
46
46
  update: Uppdatera budget
47
47
  index:
48
+ finished_orders: Avslutade röster
49
+ pending_orders: Pågående omröstningar
48
50
  title: Budgetar
51
+ users_with_finished_orders: Användare med avslutade röster
52
+ users_with_pending_orders: Användare med väntande röster
49
53
  new:
50
54
  create: Skapa budget
51
55
  title: Ny budget
52
56
  update:
53
57
  invalid: Det gick inte att uppdatera budgeten
54
58
  success: Budgeten har uppdaterats
59
+ exports:
60
+ projects: Projekt
55
61
  models:
56
62
  budget:
57
63
  name: Budget
@@ -85,6 +91,7 @@ sv:
85
91
  create: Importera förslag till projekt
86
92
  no_components: Det finns inga andra förslagskomponenter med förslag i deltagarutrymmet som kan importeras till projekt.
87
93
  select_component: Välj en komponent
94
+ title: Importera förslag
88
95
  admin_log:
89
96
  budget:
90
97
  create: "%{user_name} skapade budgeten %{resource_name} i utrymmet %{space_name}"
@@ -136,10 +143,15 @@ sv:
136
143
  description: De projekt där du har valt att delta i budgeten.
137
144
  title: Bekräfta röst
138
145
  budget_excess:
146
+ budget_excess:
147
+ description: Detta projekt överstiger den maximala budgeten och kan inte läggas till. Om du vill kan du ta bort ett projekt som du redan har lagt till, eller lämna in en röst enligt dina önskemål.
148
+ title: Maximal budget överskriden
139
149
  close: Stäng
140
- description: Detta projekt överstiger den maximala budgeten och kan inte läggas till. Om du vill kan du ta bort ett projekt som du redan har lagt till, eller lämna in en röst med dina önskemål.
150
+ description: Detta projekt överstiger den maximala budgeten och kan inte läggas till. Om du vill kan du ta bort ett projekt som du redan har lagt till, eller lämna in en röst enligt dina önskemål.
141
151
  ok: OK
142
- title: Maximal budget överskriden
152
+ projects_excess:
153
+ description: Detta projekt överstiger det maximala antal projekt och kan inte läggas till. Om du vill kan du ta bort ett projekt som du redan har lagt till, eller lämna in en röst enligt dina önskemål.
154
+ title: Maximalt antal projekt överskridet
143
155
  budget_summary:
144
156
  are_you_sure: Vill du dra tillbaka din röst?
145
157
  assigned: 'Tilldelad:'
@@ -147,9 +159,23 @@ sv:
147
159
  checked_out:
148
160
  description: Du har redan röstat för budgeten. Om du har ändrat dig kan du %{cancel_link}.
149
161
  title: Budgetomröstning slutförd
150
- description: Vilka projekt tycker du att vi borde avsätta budget till? Tilldela minst %{minimum_budget} till de projekt som du vill ha och definiera budgeten genom att rösta med dina val.
151
- description_minimum_projects_rule: Vilka projekt tycker du att vi borde avsätta budget till? Välj minst %{minimum_number} projekt som du vill ha och definiera budgeten genom att rösta med dina val.
162
+ minimum_projects_rule:
163
+ description: Vilka projekt tycker du att vi ska anslå budgetmedel för? Välj minst %{minimum_number} projekt som du vill ha och rösta enligt dina egna preferenser för att definiera budgeten.
164
+ instruction: "<li>Välj minst %{minimum_number} projekt som du vill ha och rösta enligt dina egna preferenser för att definiera budgeten.</li>"
165
+ projects_rule:
166
+ description: Vilka projekt tycker du att vi ska anslå budgetmedel för? Välj minst %{minimum_number} projekt och upp till %{maximum_number} som du vill ha och rösta enligt dina egna preferenser för att definiera budgeten.
167
+ instruction: "<li>Välj minst %{minimum_number} and upp till %{maximum_number} projekt som du vill ha och rösta enligt dina egna preferenser för att definiera budgeten.</li>"
168
+ projects_rule_maximum_only:
169
+ description: Vilka projekt tycker du att vi ska anslå budgetmedel för? Välj upp till %{maximum_number} projekt som du vill ha och rösta enligt dina egna preferenser för att definiera budgeten.
170
+ instruction: "<li>Välj upp till %{maximum_number} projekt som du vill ha och rösta enligt dina egna preferenser för att definiera budgeten.</li>"
171
+ rules:
172
+ title: Budgetregler
152
173
  title: Du bestämmer budgeten
174
+ total_budget: Total budget
175
+ total_projects: Totala röster
176
+ vote_threshold_percent_rule:
177
+ description: Vilka projekt tycker du vi borde allokera en budget för? Tilldela åtminstone %{minimum_budget} till projekten som du vill ha rösta med dina preferenser för att definiera budgeten.
178
+ instruction: "<li>Sätt minst %{minimum_budget} till de projekt du vill ha och rösta enligt dina egna preferenser för att definiera budgeten.</li>"
153
179
  count:
154
180
  projects_count:
155
181
  one: Ett projekt
@@ -191,7 +217,7 @@ sv:
191
217
  votes:
192
218
  one: röst
193
219
  other: röster
194
- you_voted: Du röstade
220
+ you_voted: Det här är din röst
195
221
  project_budget_button:
196
222
  add: Lägg till i din röst
197
223
  add_descriptive: Lägg till projekt %{resource_name} till din röst
@@ -218,14 +244,17 @@ sv:
218
244
  landing_page_content: Budgetarnas landningssida
219
245
  more_information_modal: Fönster "Mer information"
220
246
  projects_per_page: Projekt per sida
221
- resources_permissions_enabled: Åtgärdsbehörigheter kan ställas in för varje möte
247
+ resources_permissions_enabled: Åtgärdsbehörigheter kan ställas in för varje projekt
222
248
  scope_id: Omfång
223
249
  scopes_enabled: Omfång aktiverade
224
250
  title: Titel
225
251
  total_budget: Total budget
226
252
  vote_minimum_budget_projects_number: Minsta antal projekt att rösta om
227
253
  vote_rule_minimum_budget_projects_enabled: 'Aktivera regel: Minsta antal projekt att rösta om'
254
+ vote_rule_selected_projects_enabled: 'Aktivera regel: Valda projekt med min och max antal projekt att välja'
228
255
  vote_rule_threshold_percent_enabled: 'Aktivera regel: Lägsta procentandel av budget'
256
+ vote_selected_projects_maximum: Högsta antal projekt att välja
257
+ vote_selected_projects_minimum: Minsta antal projekt att välja
229
258
  vote_threshold_percent: Tröskel för röster i procent
230
259
  workflow: Arbetsflöde
231
260
  workflow_choices:
@@ -264,4 +293,3 @@ sv:
264
293
  project_proposal: 'Förslag som ingår i detta projekt:'
265
294
  index:
266
295
  confirmed_orders_count: Antal röster
267
- total_budget: Total budget
@@ -52,6 +52,8 @@ tr:
52
52
  update:
53
53
  invalid: Bu bütçe güncellenirken bir sorunla karşılaşıldı
54
54
  success: Bütçe başarıyla güncellendi
55
+ exports:
56
+ projects: Projeler
55
57
  models:
56
58
  budget:
57
59
  name: Bütçe
@@ -85,6 +87,7 @@ tr:
85
87
  create: Teklifleri projelere aktarın
86
88
  no_components: Bu katılımcı alanda teklifleri projelere aktarmak için başka bir teklif bileşeni yoktur.
87
89
  select_component: Lütfen bir bileşen seçin
90
+ title: Teklifleri içe aktar
88
91
  admin_log:
89
92
  budget:
90
93
  create: "%{user_name}, %{space_name} alanında %{resource_name} bütçesini oluşturdu"
@@ -136,10 +139,15 @@ tr:
136
139
  description: Bunlar bütçenin bir parçası olmak için seçtiğiniz projeler.
137
140
  title: Oyu onayla
138
141
  budget_excess:
142
+ budget_excess:
143
+ description: Bu proje maksimum bütçeyi aşıyor ve eklenemez. Dilerseniz daha önce eklemeyi seçmiş olduğunuz bir projeyi silebilir veya tercihlerinize göre oyunuzu verebilirsiniz.
144
+ title: Maksimum bütçe aşıldı
139
145
  close: Kapat
140
- description: Bu proje azami bütçeyi aşıyor ve eklenemiyor. İsterseniz, eklemek için önceden seçtiğiniz bir projeyi silebilir veya tercihlerinize oy verebilirsiniz.
146
+ description: Bu proje maksimum bütçeyi aşıyor ve eklenemez. Dilerseniz daha önce eklemeyi seçmiş olduğunuz bir projeyi silebilir veya tercihlerinize göre oyunuzu verebilirsiniz.
141
147
  ok: TAMAM
142
- title: Maksimum bütçe aşıldı
148
+ projects_excess:
149
+ description: Bu proje maksimum proje sayısını aşıyor ve eklenemez. Dilerseniz daha önce eklemeyi seçmiş olduğunuz bir projeyi silebilir veya tercihlerinize göre oyunuzu verebilirsiniz.
150
+ title: Maksimum proje sınırını aştı
143
151
  budget_summary:
144
152
  are_you_sure: Oyunuzu iptal etmek istediğinizden emin misiniz?
145
153
  assigned: 'atanan:'
@@ -147,9 +155,23 @@ tr:
147
155
  checked_out:
148
156
  description: Bütçeye zaten oy verdiniz. Fikrinizi değiştirdiyseniz, %{cancel_link}yapabilirsiniz.
149
157
  title: Bütçe oyu tamamlandı
150
- description: Hangi projeler için bütçe ayırmamız gerektiğini düşünüyorsunuz? İstediğiniz projelere en az %{minimum_budget} atayın ve bütçeyi belirlemek için tercihleriniz doğrultusunda oy kullanın.
151
- description_minimum_projects_rule: Sizce hangi projeler için bütçe ayırmalıyız? Bütçeyi belirlemek için istediğiniz en az %{minimum_number} proje seçin ve tercihlerinize göre oy verin.
158
+ minimum_projects_rule:
159
+ description: Sizce hangi projeler için bütçe ayırmalıyız? Bütçeyi belirlemek için istediğiniz en az %{minimum_number} proje seçin ve tercihlerinize göre oy verin.
160
+ instruction: "<li> İstediğiniz en az %{minimum_number} proje seçin ve bütçeyi belirlemek için tercihlerinize göre oylayın. </li>"
161
+ projects_rule:
162
+ description: Sizce hangi projeler için bütçe ayırmalıyız? İstediğiniz en az %{minimum_number} ve en fazla %{maximum_number} proje seçin ve bütçeyi belirlemek için tercihlerinize göre oy verin.
163
+ instruction: "<li> İstediğiniz en az %{minimum_number} ve en fazla %{maximum_number} proje seçin ve bütçeyi belirlemek için tercihlerinize göre oylayın. </li>"
164
+ projects_rule_maximum_only:
165
+ description: Sizce hangi projeler için bütçe ayırmalıyız? İstediğiniz en fazla %{maximum_number} proje seçin ve bütçeyi belirlemek için tercihlerinize göre oylayın.
166
+ instruction: "<li> İstediğiniz en fazla %{maximum_number} proje seçin ve bütçeyi belirlemek için tercihlerinize göre oylayın. </li>"
167
+ rules:
168
+ title: Bütçe kuralları
152
169
  title: Bütçeye siz karar verin
170
+ total_budget: Toplam bütçe
171
+ total_projects: Toplam Oy
172
+ vote_threshold_percent_rule:
173
+ description: Sizce hangi projeler için bütçe ayırmalıyız? Bütçeyi belirlemek için istediğiniz projelere en az %{minimum_budget} atayın ve tercihlerinize göre oy verin.
174
+ instruction: "<li> İstediğiniz projelere en az %{minimum_budget} atayın ve bütçeyi belirlemek için tercihlerinize göre oy verin. </li>"
153
175
  count:
154
176
  projects_count:
155
177
  one: 1 proje
@@ -191,7 +213,7 @@ tr:
191
213
  votes:
192
214
  one: oy
193
215
  other: oylar
194
- you_voted: Oy verdiniz
216
+ you_voted: Buna oy verdin
195
217
  project_budget_button:
196
218
  add: Oyunuza ekleyin
197
219
  add_descriptive: Oyunuza %{resource_name} projesini ekleyin
@@ -218,14 +240,17 @@ tr:
218
240
  landing_page_content: Bütçeler ana sayfası
219
241
  more_information_modal: Daha fazla bilgi
220
242
  projects_per_page: Sayfa başına projeler
221
- resources_permissions_enabled: Her toplantı için ayrı eylem izinleri ayarlanabilir
243
+ resources_permissions_enabled: Her proje için eylem izinleri ayarlanabilir
222
244
  scope_id: Kapsam
223
245
  scopes_enabled: Kapsamlar etkinleştirildi
224
246
  title: Başlık
225
247
  total_budget: Toplam bütçe
226
248
  vote_minimum_budget_projects_number: Oy verilecek minimum proje sayısı
227
249
  vote_rule_minimum_budget_projects_enabled: 'Kuralı etkinleştir: Oylanacak minimum proje sayısı'
250
+ vote_rule_selected_projects_enabled: 'Kuralı etkinleştir: Oylanacak minimum ve maksimum sayıda projeye sahip seçilen projeler'
228
251
  vote_rule_threshold_percent_enabled: 'Kuralı etkinleştir: Minimum bütçe yüzdesi'
252
+ vote_selected_projects_maximum: Seçilecek maksimum proje sayısı
253
+ vote_selected_projects_minimum: Seçilecek minimum proje sayısı
229
254
  vote_threshold_percent: Oy eşiği yüzde
230
255
  workflow: İş Akışı
231
256
  workflow_choices:
@@ -264,4 +289,3 @@ tr:
264
289
  project_proposal: 'Bu projede yer alan teklifler:'
265
290
  index:
266
291
  confirmed_orders_count: Oy sayısı
267
- total_budget: Toplam bütçe