decidim-budgets 0.27.0 → 0.27.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ecfe4d190fbbf63ae26c044c3bc0bb5ac302f0bc1597184e18878f7e743c9513
4
- data.tar.gz: 8ac6c3cec9eac72c473261a1a8d006fa3bc343f40829a3f29a25030e26037b13
3
+ metadata.gz: 685a5f0eb505f7b98f896b28f0ffe99b81197bdf4d875dbde6b5d1b2fe00bb58
4
+ data.tar.gz: f7bbcc990268189ec4b0d6b6257920f95a3f53de1cca9a90ae3f8c30c64bf420
5
5
  SHA512:
6
- metadata.gz: 7073a78925bccef303124a4f7fd1803fae2b0ccb5864d82ab3aaa1d68253e0d7cd7cb79cd91731ad07581d207f9fd1ea04f57adcee091fe6275a0d3bf7d53567
7
- data.tar.gz: c8b1e7b975607dbf4dc0b1f89d099fa6dc071fdb3890a8d8667eebb008f1896909f5ea091fe0fe6fc041971ece5fef9a8164d1806e4432c94a5d3bfead7f6c2d
6
+ metadata.gz: f1624da12169b7e4c97bca3d82691853a880d3ed86674ac1c8b9fa56e37995260eed77d68b5ce8cf5dc1d32a3bf7a0dc57be749840da8da4545fff22f082f0c8
7
+ data.tar.gz: 1d78bc77d4e0b29326205df8e50714382f0f88f0e0d7ca2605dafaaf3fbeef12a7b3c0762386a75ce86e8cba2b33b196ebb3cd08ebf02b9507a9967ecc4ac164
@@ -84,7 +84,10 @@ module Decidim
84
84
  end
85
85
 
86
86
  def proposal_already_copied?(original_proposal)
87
- original_proposal.linked_resources(:projects, "included_proposals").any? do |project|
87
+ # Note: we are including also projects from unpublished components
88
+ # because otherwise duplicates could be created until the component is
89
+ # published.
90
+ original_proposal.linked_resources(:projects, "included_proposals", component_published: false).any? do |project|
88
91
  project.budget == form.budget
89
92
  end
90
93
  end
@@ -152,8 +152,8 @@ module Decidim
152
152
  end
153
153
 
154
154
  on(:update_projects_selection) do
155
- flash.now[:notice] = update_projects_bulk_response_successful(@response, :selected)
156
- flash.now[:alert] = update_projects_bulk_response_errored(@response, :selected)
155
+ flash.now[:notice] = update_projects_bulk_response_successful(@response, :selected, selection: @selection)
156
+ flash.now[:alert] = update_projects_bulk_response_errored(@response, :selected, selection: @selection)
157
157
  end
158
158
  end
159
159
 
@@ -188,59 +188,47 @@ module Decidim
188
188
  @project ||= projects.find(params[:id])
189
189
  end
190
190
 
191
- def update_projects_bulk_response_successful(response, subject)
191
+ def update_projects_bulk_response_successful(response, subject, extra = {})
192
192
  return if response[:successful].blank?
193
193
 
194
+ interpolations = {
195
+ subject_name: response[:subject_name],
196
+ projects: response[:successful].to_sentence
197
+ }
198
+
194
199
  case subject
195
200
  when :category
196
- t(
197
- "projects.update_category.success",
198
- subject_name: response[:subject_name],
199
- projects: response[:successful].to_sentence,
200
- scope: "decidim.budgets.admin"
201
- )
201
+ t("projects.update_category.success", scope: "decidim.budgets.admin", **interpolations)
202
202
  when :scope
203
- t(
204
- "projects.update_scope.success",
205
- subject_name: response[:subject_name],
206
- projects: response[:successful].to_sentence,
207
- scope: "decidim.budgets.admin"
208
- )
203
+ t("projects.update_scope.success", scope: "decidim.budgets.admin", **interpolations)
209
204
  when :selected
210
- t(
211
- "projects.update_selected.success",
212
- subject_name: response[:subject_name],
213
- projects: response[:successful].to_sentence,
214
- scope: "decidim.budgets.admin"
215
- )
205
+ if extra[:selection]
206
+ t("projects.update_selected.success.selected", scope: "decidim.budgets.admin", **interpolations)
207
+ else
208
+ t("projects.update_selected.success.unselected", scope: "decidim.budgets.admin", **interpolations)
209
+ end
216
210
  end
217
211
  end
218
212
 
219
- def update_projects_bulk_response_errored(response, subject)
213
+ def update_projects_bulk_response_errored(response, subject, extra = {})
220
214
  return if response[:errored].blank?
221
215
 
216
+ interpolations = {
217
+ subject_name: response[:subject_name],
218
+ projects: response[:errored].to_sentence
219
+ }
220
+
222
221
  case subject
223
222
  when :category
224
- t(
225
- "projects.update_category.invalid",
226
- subject_name: response[:subject_name],
227
- projects: response[:errored].to_sentence,
228
- scope: "decidim.budgets.admin"
229
- )
223
+ t("projects.update_category.invalid", scope: "decidim.budgets.admin", **interpolations)
230
224
  when :scope
231
- t(
232
- "projects.update_scope.invalid",
233
- subject_name: response[:subject_name],
234
- projects: response[:errored].to_sentence,
235
- scope: "decidim.budgets.admin"
236
- )
225
+ t("projects.update_scope.invalid", scope: "decidim.budgets.admin", **interpolations)
237
226
  when :selected
238
- t(
239
- "projects.update_selected.invalid",
240
- subject_name: response[:subject_name],
241
- projects: response[:errored].to_sentence,
242
- scope: "decidim.budgets.admin"
243
- )
227
+ if extra[:selection]
228
+ t("projects.update_selected.invalid.selected", scope: "decidim.budgets.admin", **interpolations)
229
+ else
230
+ t("projects.update_selected.invalid.unselected", scope: "decidim.budgets.admin", **interpolations)
231
+ end
244
232
  end
245
233
  end
246
234
  end
@@ -28,8 +28,8 @@ module Decidim
28
28
  def projects
29
29
  return @projects if @projects
30
30
 
31
- @projects = search.result.page(params[:page]).per(current_component.settings.projects_per_page)
32
- @projects = reorder(@projects)
31
+ @projects = reorder(search.result)
32
+ @projects = @projects.page(params[:page]).per(current_component.settings.projects_per_page)
33
33
  end
34
34
 
35
35
  def all_geocoded_projects
@@ -6,7 +6,7 @@
6
6
  </div>
7
7
  <div class="flex--cc flex-gap--1">
8
8
  <% if allowed_to? :remind, :order %>
9
- <%= link_to "Send voting reminders", admin_reminders_path(current_component, name: "orders"), class: "button tiny button--title" %>
9
+ <%= link_to t("actions.send_voting_reminders", scope: "decidim.budgets"), admin_reminders_path(current_component, name: "orders"), class: "button tiny button--title" %>
10
10
  <% end %>
11
11
  <% if allowed_to? :export, :budget %>
12
12
  <%= export_dropdown %>
@@ -41,13 +41,14 @@ ca:
41
41
  actions:
42
42
  attachment_collections: Carpetes
43
43
  attachments: Adjunts
44
- confirm_destroy: Estàs segura que vols eliminar aquest projecte?
44
+ confirm_destroy: Segur que vols eliminar aquest projecte?
45
45
  destroy: Esborrar
46
46
  edit: Editar
47
47
  edit_projects: Gestionar projectes
48
48
  import: Importa propostes a projectes
49
49
  new: Nou %{name}
50
50
  preview: Previsualitzar
51
+ send_voting_reminders: Enviar recordatoris de votació
51
52
  title: Accions
52
53
  admin:
53
54
  budgets:
@@ -93,11 +94,11 @@ ca:
93
94
  cancel: Cancel·lar
94
95
  change_category: Canviar categoria
95
96
  change_scope: Canviar àmbit
96
- change_selected: Canviar la selecció
97
- deselect_implementation: Deseleccionar
97
+ change_selected: Canviar l'estat seleccionat
98
+ deselect_implementation: No s'ha seleccionat per implementar
98
99
  finished_orders: Vots finalitzats
99
100
  pending_orders: Vots en procés
100
- select_for_implementation: Seleccionar
101
+ select_for_implementation: Seleccionat per implementar
101
102
  selected: Seleccionat
102
103
  title: Projectes
103
104
  update: Actualitzar
@@ -119,10 +120,14 @@ ca:
119
120
  select_a_scope: Si us plau, selecciona un àmbit
120
121
  success: 'Els projectes s''han actualitzat correctament a l''àmbit %{subject_name}: %{projects}.'
121
122
  update_selected:
122
- invalid: 'Aquests projectes ja estaven seleccionats: %{projects}.'
123
+ invalid:
124
+ selected: 'Aquests projectes ja han estat seleccionats per a ser implementats: %{projects}.'
125
+ unselected: 'Aquests projectes han estat deseleccionats de ser implementats: %{projects}.'
123
126
  select_a_project: Si us plau, selecciona un projecte
124
- select_a_selection: Si us plau, fes una selecció
125
- success: 'Selecció de projectes modificada correctament: %{projects}.'
127
+ select_a_selection: Si us plau, selecciona un estat d'implementació
128
+ success:
129
+ selected: 'Aquests projectes s''han seleccionat correctament per a ser implementats: %{projects}.'
130
+ unselected: 'Aquests projectes s''han deseleccionat correctament per a ser implementats: %{projects}.'
126
131
  proposals_imports:
127
132
  create:
128
133
  invalid: S'ha produït un error en importar les propostes en projectes
@@ -50,6 +50,7 @@ cs:
50
50
  import: Importovat návrhy do projektů
51
51
  new: Nový %{name}
52
52
  preview: Náhled
53
+ send_voting_reminders: Odeslat připomenutí hlasování
53
54
  title: Akce
54
55
  admin:
55
56
  budgets:
@@ -95,11 +96,11 @@ cs:
95
96
  cancel: Zrušit
96
97
  change_category: Změnit kategorii
97
98
  change_scope: Změnit rozsah
98
- change_selected: Změnit vybrané
99
- deselect_implementation: Zrušit výběr
99
+ change_selected: Změnit vybraný stav
100
+ deselect_implementation: Zrušit výběr z implementace
100
101
  finished_orders: Dokončené hlasy
101
102
  pending_orders: Čeká na hlasování
102
- select_for_implementation: Vybrat
103
+ select_for_implementation: Vybrat pro implementaci
103
104
  selected: Vybrané
104
105
  title: Projekty
105
106
  update: Aktualizovat
@@ -121,10 +122,14 @@ cs:
121
122
  select_a_scope: Vyberte prosím rozsah
122
123
  success: 'Projekty byly úspěšně aktualizovány na rozsah %{subject_name}: %{projects}.'
123
124
  update_selected:
124
- invalid: 'Tyto projekty již mají stejný výběr: %{projects}.'
125
+ invalid:
126
+ selected: 'Tyto projekty již byly vybrány pro implementaci: %{projects}.'
127
+ unselected: 'Tyto projekty již byly odebrány z implementace: %{projects}.'
125
128
  select_a_project: Vyberte projekt
126
- select_a_selection: Vyberte prosím výběr
127
- success: 'Výběr projektů byl úspěšně změněn: %{projects}.'
129
+ select_a_selection: Vyberte prosím stav implementace
130
+ success:
131
+ selected: 'Tyto projekty byly úspěšně vybrány pro implementaci: %{projects}.'
132
+ unselected: 'Tyto projekty byly úspěšně odebrány z implementace: %{projects}.'
128
133
  proposals_imports:
129
134
  create:
130
135
  invalid: Při importu návrhů do projektů došlo k problému
@@ -295,7 +300,7 @@ cs:
295
300
  few: hlasy
296
301
  many: hlasů
297
302
  other: hlasů
298
- you_voted: Hlasovali jste
303
+ you_voted: Hlasoval jste pro toto
299
304
  project_budget_button:
300
305
  add: Přidat do vašeho hlasování
301
306
  add_descriptive: Přidat k hlasování projekt %{resource_name}
@@ -7,7 +7,7 @@ de:
7
7
  description: Beschreibung
8
8
  title: Titel
9
9
  total_budget: Gesamtbudget
10
- weight: Bestellposition
10
+ weight: Reihenfolge
11
11
  project:
12
12
  budget_amount: Höhe des Budgets
13
13
  decidim_category_id: Kategorie
@@ -91,11 +91,9 @@ de:
91
91
  cancel: Abbrechen
92
92
  change_category: Kategorie ändern
93
93
  change_scope: Themenbereich ändern
94
- change_selected: Auswahl ändern
95
- deselect_implementation: Auswahl aufheben
94
+ change_selected: Ausgewählten Status ändern
96
95
  finished_orders: Abgeschlossene Stimmen
97
96
  pending_orders: Ausstehende Stimmen
98
- select_for_implementation: Auswählen
99
97
  selected: Ausgewählt
100
98
  title: Projekte
101
99
  update: Aktualisieren
@@ -117,10 +115,7 @@ de:
117
115
  select_a_scope: Bitte wählen Sie einen Themenbereich
118
116
  success: 'Die folgenden Projekte wurden erfolgreich zum Themenbereich %{subject_name} hinzugefügt: %{projects}.'
119
117
  update_selected:
120
- invalid: 'Diese Projekte wurden bereits zur Umsetzung ausgewählt: %{projects}.'
121
118
  select_a_project: Bitte wählen Sie ein Projekt
122
- select_a_selection: Bitte wähle einen Umsetzungsstatus
123
- success: 'Ausgewählte Projekte erfolgreich geändert: %{projects}.'
124
119
  proposals_imports:
125
120
  create:
126
121
  invalid: Beim Importieren der Vorschläge in Projekte ist ein Problem aufgetreten
@@ -281,7 +276,6 @@ de:
281
276
  votes:
282
277
  one: Abstimmung
283
278
  other: Abstimmungen
284
- you_voted: Du hast für dieses gestimmt
285
279
  project_budget_button:
286
280
  add: Zur Abstimmung hinzufügen
287
281
  add_descriptive: Projekt %{resource_name} Ihrer Stimme hinzufügen
@@ -218,7 +218,6 @@ el:
218
218
  votes:
219
219
  one: ψήφος
220
220
  other: ψήφοι
221
- you_voted: Το ψηφίσατε
222
221
  project_budget_button:
223
222
  add: Προσθέστε στην ψήφο σας
224
223
  add_descriptive: Προσθήκη του έργου %{resource_name} στην ψήφο σας
@@ -48,6 +48,7 @@ en:
48
48
  import: Import proposals to projects
49
49
  new: New %{name}
50
50
  preview: Preview
51
+ send_voting_reminders: Send voting reminders
51
52
  title: Actions
52
53
  admin:
53
54
  budgets:
@@ -93,11 +94,11 @@ en:
93
94
  cancel: Cancel
94
95
  change_category: Change category
95
96
  change_scope: Change scope
96
- change_selected: Change selected
97
- deselect_implementation: Unselect
97
+ change_selected: Change selected state
98
+ deselect_implementation: Unselect from implementation
98
99
  finished_orders: Finished votes
99
100
  pending_orders: Pending votes
100
- select_for_implementation: Select
101
+ select_for_implementation: Select for implementation
101
102
  selected: Selected
102
103
  title: Projects
103
104
  update: Update
@@ -119,10 +120,14 @@ en:
119
120
  select_a_scope: Please select a scope
120
121
  success: 'Projects successfully updated to the %{subject_name} scope: %{projects}.'
121
122
  update_selected:
122
- invalid: 'These projects already had the same selected: %{projects}.'
123
+ invalid:
124
+ selected: 'These projects were already selected for implementation: %{projects}.'
125
+ unselected: 'These projects were already unselected from implementation: %{projects}.'
123
126
  select_a_project: Please select a project
124
- select_a_selection: Please select a selection
125
- success: 'Projects selection successfully changed: %{projects}.'
127
+ select_a_selection: Please select an implementation state
128
+ success:
129
+ selected: 'These projects were successfully selected for implementation: %{projects}.'
130
+ unselected: 'These projects were successfully unselected from implementation: %{projects}.'
126
131
  proposals_imports:
127
132
  create:
128
133
  invalid: There was a problem importing the proposals into projects
@@ -285,7 +290,7 @@ en:
285
290
  votes:
286
291
  one: vote
287
292
  other: votes
288
- you_voted: You voted this
293
+ you_voted: You voted for this
289
294
  project_budget_button:
290
295
  add: Add to your vote
291
296
  add_descriptive: Add project %{resource_name} to your vote
@@ -48,6 +48,7 @@ es-MX:
48
48
  import: Importar propuestas a proyectos
49
49
  new: Nuevo %{name}
50
50
  preview: Previsualizar
51
+ send_voting_reminders: Enviar recordatorios de votación
51
52
  title: Acciones
52
53
  admin:
53
54
  budgets:
@@ -93,11 +94,11 @@ es-MX:
93
94
  cancel: Cancelar
94
95
  change_category: Cambiar categoría
95
96
  change_scope: Cambiar ámbito
96
- change_selected: Cambiar la selección
97
- deselect_implementation: Deseleccionar
97
+ change_selected: Cambiar estado seleccionado
98
+ deselect_implementation: No seleccionado para implementar
98
99
  finished_orders: Votos terminados
99
100
  pending_orders: Votos pendientes
100
- select_for_implementation: Seleccionar
101
+ select_for_implementation: Seleccionado para implementar
101
102
  selected: Seleccionado
102
103
  title: Proyectos
103
104
  update: Actualizar
@@ -119,10 +120,14 @@ es-MX:
119
120
  select_a_scope: Por favor, selecciona un ámbito
120
121
  success: 'Los siguientes proyectos se han actualizado correctamente al ámbito %{subject_name}: %{projects}.'
121
122
  update_selected:
122
- invalid: 'Estos proyectos ya estaban seleccionados: %{projects}.'
123
+ invalid:
124
+ selected: 'Estos proyectos ya han sido seleccionados para ser implementados: %{projects}.'
125
+ unselected: 'Estos proyectos ya han sido deseleccionados de ser implementados: %{projects}.'
123
126
  select_a_project: Por favor, selecciona un proyecto
124
- select_a_selection: Por favor, elige un estado
125
- success: 'Selección de proyectos cambiada con éxito: %{projects}.'
127
+ select_a_selection: Por favor, seleccione un estado de implementación
128
+ success:
129
+ selected: 'Estos proyectos fueron seleccionados con éxito para ser implementados: %{projects}.'
130
+ unselected: 'Estos proyectos fueron deseleccionados con éxito para ser implementados: %{projects}.'
126
131
  proposals_imports:
127
132
  create:
128
133
  invalid: Ha habido un problema al importar las propuestas en proyectos
@@ -48,6 +48,7 @@ es-PY:
48
48
  import: Importar propuestas a proyectos
49
49
  new: Nuevo %{name}
50
50
  preview: Previsualizar
51
+ send_voting_reminders: Enviar recordatorios de votación
51
52
  title: Acciones
52
53
  admin:
53
54
  budgets:
@@ -93,11 +94,11 @@ es-PY:
93
94
  cancel: Cancelar
94
95
  change_category: Cambiar categoría
95
96
  change_scope: Cambiar ámbito
96
- change_selected: Cambiar la selección
97
- deselect_implementation: Deseleccionar
97
+ change_selected: Cambiar estado seleccionado
98
+ deselect_implementation: No seleccionado para implementar
98
99
  finished_orders: Votos terminados
99
100
  pending_orders: Votos pendientes
100
- select_for_implementation: Seleccionar
101
+ select_for_implementation: Seleccionado para implementar
101
102
  selected: Seleccionado
102
103
  title: Proyectos
103
104
  update: Actualizar
@@ -119,10 +120,14 @@ es-PY:
119
120
  select_a_scope: Por favor, selecciona un ámbito
120
121
  success: 'Los proyectos se han actualizado correctamente al ámbito %{subject_name}: %{projects}.'
121
122
  update_selected:
122
- invalid: 'Estos proyectos ya estaban seleccionados: %{projects}.'
123
+ invalid:
124
+ selected: 'Estos proyectos ya han sido seleccionados para ser implementados: %{projects}.'
125
+ unselected: 'Estos proyectos ya han sido deseleccionados de ser implementados: %{projects}.'
123
126
  select_a_project: Por favor, selecciona un proyecto
124
- select_a_selection: Por favor, elige un estado
125
- success: 'Selección de proyectos cambiada con éxito: %{projects}.'
127
+ select_a_selection: Por favor, seleccione un estado de implementación
128
+ success:
129
+ selected: 'Estos proyectos fueron seleccionados con éxito para ser implementados: %{projects}.'
130
+ unselected: 'Estos proyectos fueron deseleccionados con éxito para ser implementados: %{projects}.'
126
131
  proposals_imports:
127
132
  create:
128
133
  invalid: Ha habido un problema al importar las propuestas en proyectos
@@ -41,13 +41,14 @@ es:
41
41
  actions:
42
42
  attachment_collections: Carpetas
43
43
  attachments: Adjuntos
44
- confirm_destroy: '¿Estás segura de que deseas eliminar este proyecto?'
44
+ confirm_destroy: '¿Seguro que deseas eliminar este proyecto?'
45
45
  destroy: Borrar
46
46
  edit: Editar
47
47
  edit_projects: Gestionar proyectos
48
48
  import: Importar propuestas a proyectos
49
49
  new: Nuevo %{name}
50
50
  preview: Previsualizar
51
+ send_voting_reminders: Enviar recordatorios de votación
51
52
  title: Acciones
52
53
  admin:
53
54
  budgets:
@@ -93,11 +94,11 @@ es:
93
94
  cancel: Cancelar
94
95
  change_category: Cambiar categoría
95
96
  change_scope: Cambiar ámbito
96
- change_selected: Cambiar la selección
97
- deselect_implementation: Deseleccionar
97
+ change_selected: Cambiar estado seleccionado
98
+ deselect_implementation: No seleccionado para implementar
98
99
  finished_orders: Votos terminados
99
100
  pending_orders: Votos pendientes
100
- select_for_implementation: Seleccionar
101
+ select_for_implementation: Seleccionado para implementar
101
102
  selected: Seleccionado
102
103
  title: Proyectos
103
104
  update: Actualizar
@@ -119,10 +120,14 @@ es:
119
120
  select_a_scope: Por favor, selecciona un ámbito
120
121
  success: 'Los proyectos se han actualizado correctamente al ámbito %{subject_name}: %{projects}.'
121
122
  update_selected:
122
- invalid: 'Estos proyectos ya estaban seleccionados: %{projects}.'
123
+ invalid:
124
+ selected: 'Estos proyectos ya han sido seleccionados para ser implementados: %{projects}.'
125
+ unselected: 'Estos proyectos ya han sido deseleccionados de ser implementados: %{projects}.'
123
126
  select_a_project: Por favor, selecciona un proyecto
124
- select_a_selection: Por favor, elige un estado
125
- success: 'Selección de proyectos cambiada con éxito: %{projects}.'
127
+ select_a_selection: Por favor, seleccione un estado de implementación
128
+ success:
129
+ selected: 'Estos proyectos fueron seleccionados con éxito para ser implementados: %{projects}.'
130
+ unselected: 'Estos proyectos fueron deseleccionados con éxito para ser implementados: %{projects}.'
126
131
  proposals_imports:
127
132
  create:
128
133
  invalid: Se ha producido un error al importar las propuestas a proyectos
@@ -213,7 +218,7 @@ es:
213
218
  description: Este proyecto sobrepasa el presupuesto máximo y no se puede añadir. Si lo deseas, puedes eliminar un proyecto que ya hayas seleccionado, o votar de acuerdo a tus preferencias.
214
219
  title: Se ha superado el número máximo de proyectos
215
220
  budget_summary:
216
- are_you_sure: '¿Estás seguro de que deseas cancelar tu voto?'
221
+ are_you_sure: '¿Seguro que deseas cancelar tu voto?'
217
222
  assigned: 'Asignado:'
218
223
  cancel_order: eliminar tu voto y empezar de nuevo
219
224
  checked_out:
@@ -14,8 +14,11 @@ eu:
14
14
  decidim_scope_id: Esparrua
15
15
  description: Descripción
16
16
  proposal_ids: Honekin lotutako proposamenak
17
- selected: Hautatua inplementatzeko
17
+ proposals: Proposamenak
18
+ selected: Ezarpenerako hautatuak
18
19
  title: Titulua
20
+ proposals_import:
21
+ scope_id: Eremua
19
22
  activerecord:
20
23
  models:
21
24
  decidim/budgets/project:
@@ -27,6 +30,8 @@ eu:
27
30
  projects:
28
31
  category_id_eq:
29
32
  label: Kategoria
33
+ scope_id_eq:
34
+ label: Eremua
30
35
  selected_at_null:
31
36
  label: Hautatua
32
37
  values:
@@ -43,6 +48,7 @@ eu:
43
48
  import: Inportatu proposamenak proiektuetarako
44
49
  new: '%{name} berria'
45
50
  preview: Aurreikusi
51
+ send_voting_reminders: Botoa gogorarazi
46
52
  title: Ekintzak
47
53
  admin:
48
54
  budgets:
@@ -84,16 +90,36 @@ eu:
84
90
  title: Editatu proiektua
85
91
  update: Eguneratu
86
92
  index:
93
+ actions: Ekintzak
94
+ cancel: Ezeztatu
95
+ change_category: Kategoria aldatu
96
+ change_scope: Aldatu eremua
97
+ change_selected: Aldatu hautatutako eremua
98
+ deselect_implementation: Gauzatzekoetatik kendu
87
99
  finished_orders: Bukatutako botoak
88
100
  pending_orders: Zain dauden botoei
101
+ select_for_implementation: Gauzatzeko hautatua
89
102
  selected: Hautatua
90
103
  title: Proiektuak
104
+ update: Eguneratu
105
+ update_scope_button: Eguneratu eremua
91
106
  new:
92
107
  create: Sortu
93
108
  title: Proiektu berria
94
109
  update:
95
110
  invalid: Arazo bat izan da proiektu hau eguneratzean
96
111
  success: Proiektua zuzen eguneratu da
112
+ update_category:
113
+ select_a_category: Mesedez, hautatu kategoria bat
114
+ select_a_project: Mesedez, hautatu proiektu bat
115
+ update_selected:
116
+ invalid:
117
+ selected: 'Honako proiektu hauek dagoeneko gauzatzeko hautatu dira: %{projects}.'
118
+ unselected: 'Honako proiektu hauek dagoeneko gauzatzekoetatik kendu dira: %{projects}.'
119
+ select_a_selection: Hautatu gauzatzearen egoera
120
+ success:
121
+ selected: 'Honako proiektu hauek dagoeneko gauzatzeko hautatu dira: %{projects}.'
122
+ unselected: 'Honako proiektu hauek dagoeneko gauzatzekoetatik kendu dira: %{projects}.'
97
123
  proposals_imports:
98
124
  create:
99
125
  invalid: Arazo bat izan da proiektuen proposamenak inportatzea
@@ -237,7 +263,7 @@ eu:
237
263
  votes:
238
264
  one: Botoa
239
265
  other: botoak
240
- you_voted: Hau bozkatu duzu
266
+ you_voted: Honen aldeko botoa eman duzu
241
267
  project_budget_button:
242
268
  add: Gehitu zure botoari
243
269
  add_descriptive: Gehitu %{resource_name} proiektua zure botoari
@@ -48,6 +48,7 @@ fi-pl:
48
48
  import: Tuo ehdotuksia suunnitelmiin
49
49
  new: Uusi %{name}
50
50
  preview: Esikatsele
51
+ send_voting_reminders: Lähetä äänestysmuistutukset
51
52
  title: Toiminnot
52
53
  admin:
53
54
  budgets:
@@ -93,8 +94,8 @@ fi-pl:
93
94
  cancel: Peruuta
94
95
  change_category: Vaihda aihepiiri
95
96
  change_scope: Vaihda teema
96
- change_selected: Vaihda valittu-tilaa
97
- deselect_implementation: Ei toteutukseen
97
+ change_selected: Muuta tilaa
98
+ deselect_implementation: Ei valittu toteutukseen
98
99
  finished_orders: Valmiit äänet
99
100
  pending_orders: Odottavat äänet
100
101
  select_for_implementation: Valittu toteutukseen
@@ -119,10 +120,14 @@ fi-pl:
119
120
  select_a_scope: Valitse teema
120
121
  success: 'Seuraavien projektien teeman päivitys onnistui %{subject_name}: %{projects}.'
121
122
  update_selected:
122
- invalid: 'Nämä projektit oli jo merkitty toteutettaviksi: %{projects}.'
123
+ invalid:
124
+ selected: 'Nämä projektit oli jo valittu toteutukseen: %{projects}.'
125
+ unselected: 'Näitä projekteja ei oltu valittu toteutukseen: %{projects}.'
123
126
  select_a_project: Valitse projekti
124
- select_a_selection: Valitse toteutuksen tila
125
- success: 'Toteutuksen tilan päivitys onnistui projekteille: %{projects}.'
127
+ select_a_selection: Valitse tila
128
+ success:
129
+ selected: 'Näiden projektien valinta toteutukseen onnistui: %{projects}.'
130
+ unselected: 'Näiden projektien toteutukseen valinnan poistaminen onnistui: %{projects}.'
126
131
  proposals_imports:
127
132
  create:
128
133
  invalid: Ehdotusten tuomisessa suunnitelmiin esiintyi ongelmia
@@ -48,6 +48,7 @@ fi:
48
48
  import: Tuo ehdotuksia suunnitelmiksi
49
49
  new: Uusi %{name}
50
50
  preview: Esikatsele
51
+ send_voting_reminders: Lähetä äänestysmuistutukset
51
52
  title: Toiminnot
52
53
  admin:
53
54
  budgets:
@@ -93,8 +94,8 @@ fi:
93
94
  cancel: Peruuta
94
95
  change_category: Vaihda aihepiiri
95
96
  change_scope: Vaihda teema
96
- change_selected: Vaihda valittu-tilaa
97
- deselect_implementation: Ei toteutukseen
97
+ change_selected: Muuta tilaa
98
+ deselect_implementation: Ei valittu toteutukseen
98
99
  finished_orders: Valmiit äänet
99
100
  pending_orders: Odottavat äänet
100
101
  select_for_implementation: Valittu toteutukseen
@@ -119,10 +120,14 @@ fi:
119
120
  select_a_scope: Valitse teema
120
121
  success: 'Seuraavien projektien teeman päivitys onnistui %{subject_name}: %{projects}.'
121
122
  update_selected:
122
- invalid: 'Nämä projektit oli jo merkitty toteutettaviksi: %{projects}.'
123
+ invalid:
124
+ selected: 'Nämä projektit oli jo valittu toteutukseen: %{projects}.'
125
+ unselected: 'Näitä projekteja ei oltu valittu toteutukseen: %{projects}.'
123
126
  select_a_project: Valitse projekti
124
- select_a_selection: Valitse toteutuksen tila
125
- success: 'Toteutuksen tilan päivitys onnistui projekteille: %{projects}.'
127
+ select_a_selection: Valitse tila
128
+ success:
129
+ selected: 'Näiden projektien valinta toteutukseen onnistui: %{projects}.'
130
+ unselected: 'Näiden projektien toteutukseen valinnan poistaminen onnistui: %{projects}.'
126
131
  proposals_imports:
127
132
  create:
128
133
  invalid: Ehdotusten tuonti suunnitelmiksi epäonnistui
@@ -48,6 +48,7 @@ fr-CA:
48
48
  import: Importer des propositions dans des projets
49
49
  new: Nouveau %{name}
50
50
  preview: Aperçu
51
+ send_voting_reminders: Envoyer des rappels de vote
51
52
  title: Actions
52
53
  admin:
53
54
  budgets:
@@ -93,8 +94,8 @@ fr-CA:
93
94
  cancel: Annuler
94
95
  change_category: Modifier la catégorie
95
96
  change_scope: Changer le secteur
96
- change_selected: Changer l'état "sélectionné"
97
- deselect_implementation: Annuler la sélection
97
+ change_selected: Changer l'état sélectionné
98
+ deselect_implementation: Retirer de la sélection pour implémentation
98
99
  finished_orders: Votes terminés
99
100
  pending_orders: Votes en cours
100
101
  select_for_implementation: Sélectionné pour implémentation
@@ -119,10 +120,14 @@ fr-CA:
119
120
  select_a_scope: Veuillez sélectionner un secteur
120
121
  success: 'Les projets ont été mis à jour avec succès avec le secteur %{subject_name} : %{projects}.'
121
122
  update_selected:
122
- invalid: 'Ces projets étaient déjà sélectionnés pour l''implémentation : %{projects}.'
123
+ invalid:
124
+ selected: 'Ces projets ont déjà été sélectionnés pour une implémentation : %{projects}.'
125
+ unselected: 'Ces projets ont déjà été retirés de la sélection pour une implémentation : %{projects}.'
123
126
  select_a_project: Veuillez selectionner un projet
124
- select_a_selection: Veuillez sélectionner un état de sélection pour implémentation
125
- success: 'La sélection des projets a été modifiée avec succès : %{projects}.'
127
+ select_a_selection: Veuillez sélectionner un état d'implémentation
128
+ success:
129
+ selected: 'Ces projets ont été bien été sélectionnés pour une implémentation : %{projects}.'
130
+ unselected: 'Ces projets ont été retirés de la sélection pour une implémentation : %{projects}.'
126
131
  proposals_imports:
127
132
  create:
128
133
  invalid: Un problème est survenu lors de l'importation des propositions dans des projets
@@ -285,7 +290,7 @@ fr-CA:
285
290
  votes:
286
291
  one: vote
287
292
  other: votes
288
- you_voted: Vous avez voté pour
293
+ you_voted: Vous avez voté pour ceci
289
294
  project_budget_button:
290
295
  add: Ajouter à votre vote
291
296
  add_descriptive: Ajouter le projet %{resource_name} à votre vote
@@ -48,6 +48,7 @@ fr:
48
48
  import: Importer des propositions dans des projets
49
49
  new: Nouveau %{name}
50
50
  preview: Aperçu
51
+ send_voting_reminders: Envoyer des rappels de vote
51
52
  title: Actions
52
53
  admin:
53
54
  budgets:
@@ -93,8 +94,8 @@ fr:
93
94
  cancel: Annuler
94
95
  change_category: Modifier la catégorie
95
96
  change_scope: Changer le secteur
96
- change_selected: Changer l'état "sélectionné"
97
- deselect_implementation: Annuler la sélection
97
+ change_selected: Changer l'état sélectionné
98
+ deselect_implementation: Retirer de la sélection pour implémentation
98
99
  finished_orders: Votes terminés
99
100
  pending_orders: Votes en cours
100
101
  select_for_implementation: Sélectionné pour implémentation
@@ -119,10 +120,14 @@ fr:
119
120
  select_a_scope: Veuillez sélectionner un secteur
120
121
  success: 'Les projets ont été mis à jour avec succès avec le secteur %{subject_name} : %{projects}.'
121
122
  update_selected:
122
- invalid: 'Ces projets étaient déjà sélectionnés pour l''implémentation : %{projects}.'
123
+ invalid:
124
+ selected: 'Ces projets ont déjà été sélectionnés pour une implémentation : %{projects}.'
125
+ unselected: 'Ces projets ont déjà été retirés de la sélection pour une implémentation : %{projects}.'
123
126
  select_a_project: Veuillez selectionner un projet
124
- select_a_selection: Veuillez sélectionner un état de sélection pour implémentation
125
- success: 'La sélection des projets a été modifiée avec succès : %{projects}.'
127
+ select_a_selection: Veuillez sélectionner un état d'implémentation
128
+ success:
129
+ selected: 'Ces projets ont été bien été sélectionnés pour une implémentation : %{projects}.'
130
+ unselected: 'Ces projets ont été retirés de la sélection pour une implémentation : %{projects}.'
126
131
  proposals_imports:
127
132
  create:
128
133
  invalid: Un problème est survenu lors de l'importation des propositions dans des projets
@@ -285,7 +290,7 @@ fr:
285
290
  votes:
286
291
  one: vote
287
292
  other: votes
288
- you_voted: Vous avez voté pour
293
+ you_voted: Vous avez voté pour ceci
289
294
  project_budget_button:
290
295
  add: Ajouter à votre vote
291
296
  add_descriptive: Ajouter le projet %{resource_name} à votre vote
@@ -210,7 +210,6 @@ gl:
210
210
  votes:
211
211
  one: voto
212
212
  other: votos
213
- you_voted: Votaches isto
214
213
  project_budget_button:
215
214
  add: Engadir ao teu voto
216
215
  add_descriptive: Engadir o proxecto %{resource_name} ao teu voto
@@ -0,0 +1 @@
1
+ gn:
@@ -42,11 +42,8 @@ hu:
42
42
  cancel: Mégsem
43
43
  change_category: Kategória módosítása
44
44
  change_scope: Hatáskör megváltoztatása
45
- change_selected: Kijelölés módosítása
46
- deselect_implementation: Kiválasztás törlése
47
45
  finished_orders: Befejezett szavazások
48
46
  pending_orders: Függőben lévő szavazások
49
- select_for_implementation: Kijelölés
50
47
  title: Projektek
51
48
  update: Frissítés
52
49
  update_scope_button: Hatáskör frissítése
@@ -227,7 +227,6 @@ it:
227
227
  votes:
228
228
  one: voto
229
229
  other: voti
230
- you_voted: Hai votato
231
230
  project_budget_button:
232
231
  add: Aggiungi al tuo voto
233
232
  add_descriptive: Aggiungi progetto %{resource_name} al tuo voto
@@ -47,6 +47,7 @@ ja:
47
47
  import: プロジェクトへの提案をインポート
48
48
  new: 新しい %{name}
49
49
  preview: プレビュー
50
+ send_voting_reminders: 投票リマインダーを送信
50
51
  title: アクション
51
52
  admin:
52
53
  budgets:
@@ -92,11 +93,11 @@ ja:
92
93
  cancel: キャンセル
93
94
  change_category: カテゴリの変更
94
95
  change_scope: スコープの変更
95
- change_selected: 選択した項目を変更
96
- deselect_implementation: 選択解除
96
+ change_selected: 選択した状態を変更
97
+ deselect_implementation: 実装から選択解除
97
98
  finished_orders: 完了した投票
98
99
  pending_orders: 保留中の投票
99
- select_for_implementation: 選択
100
+ select_for_implementation: 実装のために選択
100
101
  selected: 選択済
101
102
  title: プロジェクト
102
103
  update: 更新
@@ -118,10 +119,14 @@ ja:
118
119
  select_a_scope: スコープを選択してください
119
120
  success: 'プロジェクトは %{subject_name} スコープに正常に更新されました: %{projects}'
120
121
  update_selected:
121
- invalid: 'これらのプロジェクトは既に選択されています: %{projects}'
122
+ invalid:
123
+ selected: 'これらのプロジェクトはすでに実装のために選択されています: %{projects}。'
124
+ unselected: 'これらのプロジェクトは既に実装から選択解除されています: %{projects}。'
122
125
  select_a_project: プロジェクトを選択してください
123
- select_a_selection: 選択してください
124
- success: 'プロジェクトの選択が変更されました: %{projects}.'
126
+ select_a_selection: 実装の状態を選択してください
127
+ success:
128
+ selected: 'これらのプロジェクトは、実装のために正常に選択されました: %{projects}。'
129
+ unselected: 'これらのプロジェクトは、実装から正常に選択解除されました: %{projects}。'
125
130
  proposals_imports:
126
131
  create:
127
132
  invalid: 提案をプロジェクトにインポートする際に問題が発生しました
@@ -280,7 +285,7 @@ ja:
280
285
  view: 表示
281
286
  votes:
282
287
  other: 投票
283
- you_voted: 投票済
288
+ you_voted: あなたの投票
284
289
  project_budget_button:
285
290
  add: 投票に追加
286
291
  add_descriptive: プロジェクト %{resource_name} をあなたの投票に追加
@@ -0,0 +1 @@
1
+ ka:
@@ -210,7 +210,6 @@ lb:
210
210
  votes:
211
211
  one: Abstimmung
212
212
  other: Abstimmungen
213
- you_voted: Du hast für dieses gestimmt
214
213
  project_budget_button:
215
214
  add: Zur Abstimmung hinzufügen
216
215
  add_descriptive: Projekt %{resource_name} Ihrer Stimme hinzufügen
@@ -0,0 +1 @@
1
+ lo:
@@ -95,11 +95,8 @@ lt:
95
95
  cancel: Atšaukti
96
96
  change_category: Keisti kategoriją
97
97
  change_scope: Keisti sritį
98
- change_selected: Pakeisti pasirinkimą
99
- deselect_implementation: Atžymėti
100
98
  finished_orders: Baigti balsavimai
101
99
  pending_orders: Balsai laukiantys patvirtinimo
102
- select_for_implementation: Pasirinkti
103
100
  selected: Pasirinkta
104
101
  title: Projektai
105
102
  update: Atnaujinimas
@@ -121,10 +118,7 @@ lt:
121
118
  select_a_scope: Pasirinkite sritį
122
119
  success: 'Projektai sėkmingai atnaujinti %{subject_name} srityje: %{projects}.'
123
120
  update_selected:
124
- invalid: 'Šie projektai jau buvo pasirinkti įgyvendinimui: %{projects}.'
125
121
  select_a_project: Pasirinkite projektą
126
- select_a_selection: Prašau pasirinkite įgyvendinimo būseną
127
- success: 'Projektų pasirinkimas sėkmingai pakeistas: %{projects}.'
128
122
  proposals_imports:
129
123
  create:
130
124
  invalid: Importuojant pasiūlymus į projektus kilo problema
@@ -295,7 +289,6 @@ lt:
295
289
  few: balsai
296
290
  many: balsai
297
291
  other: balsai
298
- you_voted: Balsavote už
299
292
  project_budget_button:
300
293
  add: Pridėti prie balsų
301
294
  add_descriptive: Pridėti projektą %{resource_name} prie balsų
@@ -93,11 +93,8 @@ nl:
93
93
  cancel: Annuleren
94
94
  change_category: Categorie wijzigen
95
95
  change_scope: Scope wijzigen
96
- change_selected: Selectie wijzigen
97
- deselect_implementation: Selectie ongedaan maken
98
96
  finished_orders: Voltooide stemmen
99
97
  pending_orders: Afwachtende stemmen
100
- select_for_implementation: Selecteer
101
98
  selected: Geselecteerd
102
99
  title: Projecten
103
100
  update: Bijwerken
@@ -119,10 +116,7 @@ nl:
119
116
  select_a_scope: Selecteer een scope
120
117
  success: 'Voorstellen succesvol bijgewerkt naar categorie %{subject_name}: %{projects}.'
121
118
  update_selected:
122
- invalid: 'Deze projecten zijn al geselecteerd voor implementatie: %{projects}.'
123
119
  select_a_project: Selecteer een project
124
- select_a_selection: Selecteer een implementatie status
125
- success: 'Projectselectie succesvol gewijzigd: %{projects}.'
126
120
  proposals_imports:
127
121
  create:
128
122
  invalid: Er is een probleem opgetreden bij het importeren van de voorstellen in projecten
@@ -285,7 +279,6 @@ nl:
285
279
  votes:
286
280
  one: stem
287
281
  other: stemmen
288
- you_voted: Je stemde hiervoor
289
282
  project_budget_button:
290
283
  add: Voeg toe aan je stem
291
284
  add_descriptive: Voeg project %{resource_name} toe aan je stem
@@ -247,7 +247,6 @@
247
247
  votes:
248
248
  one: stem
249
249
  other: stemmer
250
- you_voted: Du stemte dette
251
250
  project_budget_button:
252
251
  add: Legg til i stemmen din
253
252
  add_descriptive: Legg til prosjektet %{resource_name} til din stemme
@@ -76,6 +76,7 @@ pl:
76
76
  title: Edytuj projekt
77
77
  update: Aktualizuj
78
78
  index:
79
+ change_selected: Zmień wybrany status
79
80
  finished_orders: Ukończone głosowania
80
81
  pending_orders: Głosowania oczekujące
81
82
  selected: Wybrano
@@ -86,6 +87,8 @@ pl:
86
87
  update:
87
88
  invalid: Wystąpił błąd podczas aktualizowania tego projektu
88
89
  success: Zaktualizowano projekt
90
+ update_selected:
91
+ select_a_selection: Wybierz status implementacji
89
92
  proposals_imports:
90
93
  create:
91
94
  invalid: Wystąpił błąd podczas importowania propozycji do projektów
@@ -227,7 +230,6 @@ pl:
227
230
  few: głosów
228
231
  many: głosów
229
232
  other: głosów
230
- you_voted: Zagłosowałeś na
231
233
  project_budget_button:
232
234
  add: Dodaj do swojego głosu
233
235
  add_descriptive: Dodaj projekt %{resource_name} do swojego głosu
@@ -218,7 +218,6 @@ pt-BR:
218
218
  votes:
219
219
  one: voto
220
220
  other: votos
221
- you_voted: Você votou nisto
222
221
  project_budget_button:
223
222
  add: Adicione ao seu voto
224
223
  add_descriptive: Adicione o projeto %{resource_name} ao seu voto
@@ -221,7 +221,6 @@ pt:
221
221
  votes:
222
222
  one: Votações
223
223
  other: Votações
224
- you_voted: Votou isto
225
224
  project_budget_button:
226
225
  add: Adicionar à sua votação
227
226
  add_descriptive: Adicionar projeto %{resource_name} à sua votação
@@ -14,8 +14,11 @@ ro:
14
14
  decidim_scope_id: Domeniu de interes
15
15
  description: Descriere
16
16
  proposal_ids: Propuneri asociate
17
+ proposals: Propuneri
17
18
  selected: Selectate pentru implementare
18
19
  title: Titlu
20
+ proposals_import:
21
+ scope_id: Domeniu de interes
19
22
  activerecord:
20
23
  models:
21
24
  decidim/budgets/project:
@@ -46,6 +49,7 @@ ro:
46
49
  import: Importă propuneri în proiecte
47
50
  new: Nou %{name}
48
51
  preview: Previzualizare
52
+ send_voting_reminders: Trimite memento-uri de votare
49
53
  title: Acțiuni
50
54
  admin:
51
55
  budgets:
@@ -87,16 +91,32 @@ ro:
87
91
  title: Editare proiect
88
92
  update: Actualizare
89
93
  index:
94
+ actions: Acțiuni
95
+ cancel: Anulează
96
+ change_category: Schimbă categoria
97
+ change_scope: Schimbă domeniul
98
+ change_selected: Schimbă starea selectată
90
99
  finished_orders: Voturi terminate
91
100
  pending_orders: Voturi în așteptare
101
+ select_for_implementation: Ales pentru implementare
92
102
  selected: Selectate
93
103
  title: Proiecte
104
+ update: Actualizare
105
+ update_scope_button: Actualizează domeniu
94
106
  new:
95
107
  create: Creează
96
108
  title: Proiect nou
97
109
  update:
98
110
  invalid: A apărut o eroare la actualizarea acestui proiect
99
111
  success: Proiectul a fost actualizat cu succes
112
+ update_category:
113
+ select_a_category: Te rugăm să selectezi o categorie
114
+ select_a_project: Vă rugăm să selectaţi un proiect
115
+ update_scope:
116
+ select_a_project: Te rugăm să selectezi un proiect
117
+ select_a_scope: Te rugăm selectează un domeniu
118
+ update_selected:
119
+ select_a_project: Te rugăm să selectezi un proiect
100
120
  proposals_imports:
101
121
  create:
102
122
  invalid: A apărut o problemă la importul propunerilor în proiecte
@@ -150,6 +170,7 @@ ro:
150
170
  fields:
151
171
  category: Categorie
152
172
  id: ID
173
+ scope: Domeniu de interes
153
174
  title: Titlu
154
175
  order_summary_mailer:
155
176
  order_summary:
@@ -220,6 +241,8 @@ ro:
220
241
  filter: Filtrare
221
242
  filter_by: Filtrează după
222
243
  unfold: Extinde
244
+ index:
245
+ view_project: Vizualizare proiect
223
246
  order_progress:
224
247
  vote: Votează
225
248
  order_selected_projects:
@@ -245,7 +268,6 @@ ro:
245
268
  one: vot
246
269
  few: voturi
247
270
  other: voturi
248
- you_voted: Ai votat pentru
249
271
  project_budget_button:
250
272
  add: Adaugă la votul tău
251
273
  add_descriptive: Adaugă proiectul %{resource_name} la votul tău
@@ -7,7 +7,7 @@ sv:
7
7
  description: Beskrivning
8
8
  title: Titel
9
9
  total_budget: Total budget
10
- weight: Vikt
10
+ weight: Ordning
11
11
  project:
12
12
  budget_amount: Belopp
13
13
  decidim_category_id: Kategori
@@ -90,13 +90,13 @@ sv:
90
90
  index:
91
91
  actions: Åtgärder
92
92
  cancel: Avbryt
93
- deselect_implementation: Avmarkera
93
+ change_category: Ändra kategori
94
94
  finished_orders: Avslutade omröstningar
95
95
  pending_orders: Pågående omröstningar
96
- select_for_implementation: Välj
97
96
  selected: Valda
98
97
  title: Projekt
99
98
  update: Uppdatera
99
+ update_scope_button: Uppdatera omfång
100
100
  new:
101
101
  create: Skapa
102
102
  title: Nytt projekt
@@ -150,6 +150,8 @@ sv:
150
150
  show: Visa projekt
151
151
  vote: Rösta
152
152
  voted_on: Du har röstat på %{links}
153
+ last_activity:
154
+ new_vote_at_html: "<span>Ny omröstning på %{link}</span>"
153
155
  limit_announcement:
154
156
  cant_vote: Du kan inte rösta på denna budget. <a href="%{landing_path}">Pröva en annan budget</a>.
155
157
  limit_reached: Du har aktiva röster i %{links}. För att rösta måste du <a href="%{landing_path}">ta bort din röst och börja om</a>.
@@ -180,10 +182,13 @@ sv:
180
182
  title: Bekräfta röst
181
183
  budget_excess:
182
184
  budget_excess:
185
+ description: Detta projekt överstiger den maximala budgeten och kan inte tilläggas. Du måste först ta bort ett projekt innan du lägger till ett nytt.
183
186
  title: Maximal budget överskriden
184
187
  close: Stäng
188
+ description: Detta projekt överstiger den maximala budgeten och kan inte tilläggas. Du måste först ta bort ett projekt innan du lägger till ett nytt.
185
189
  ok: OK
186
190
  projects_excess:
191
+ description: Du har valt för många projekt. Du måste först ta bort ett projekt innan du lägger till ett nytt.
187
192
  title: Maximalt antal projekt överskridet
188
193
  budget_summary:
189
194
  are_you_sure: Vill du dra tillbaka din röst?
@@ -233,6 +238,8 @@ sv:
233
238
  filter: Filtrera
234
239
  filter_by: Filtrera efter
235
240
  unfold: Veckla ut
241
+ index:
242
+ view_project: Visa projektet
236
243
  order_progress:
237
244
  vote: Rösta
238
245
  order_selected_projects:
@@ -256,7 +263,6 @@ sv:
256
263
  votes:
257
264
  one: röst
258
265
  other: röster
259
- you_voted: Det här är din röst
260
266
  project_budget_button:
261
267
  add: Lägg till i din röst
262
268
  add_descriptive: Lägg till projekt %{resource_name} till din röst
@@ -210,7 +210,6 @@ tr:
210
210
  votes:
211
211
  one: oy
212
212
  other: oylar
213
- you_voted: Buna oy verdin
214
213
  project_budget_button:
215
214
  add: Oyunuza ekleyin
216
215
  add_descriptive: Oyunuza %{resource_name} projesini ekleyin
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-budgets version.
5
5
  module Budgets
6
6
  def self.version
7
- "0.27.0"
7
+ "0.27.2"
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim-budgets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 0.27.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josep Jaume Rey Peroy
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-09-29 00:00:00.000000000 Z
13
+ date: 2023-02-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: decidim-comments
@@ -18,70 +18,70 @@ dependencies:
18
18
  requirements:
19
19
  - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 0.27.0
21
+ version: 0.27.2
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - '='
27
27
  - !ruby/object:Gem::Version
28
- version: 0.27.0
28
+ version: 0.27.2
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: decidim-core
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
33
  - - '='
34
34
  - !ruby/object:Gem::Version
35
- version: 0.27.0
35
+ version: 0.27.2
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - '='
41
41
  - !ruby/object:Gem::Version
42
- version: 0.27.0
42
+ version: 0.27.2
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: decidim-admin
45
45
  requirement: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - '='
48
48
  - !ruby/object:Gem::Version
49
- version: 0.27.0
49
+ version: 0.27.2
50
50
  type: :development
51
51
  prerelease: false
52
52
  version_requirements: !ruby/object:Gem::Requirement
53
53
  requirements:
54
54
  - - '='
55
55
  - !ruby/object:Gem::Version
56
- version: 0.27.0
56
+ version: 0.27.2
57
57
  - !ruby/object:Gem::Dependency
58
58
  name: decidim-dev
59
59
  requirement: !ruby/object:Gem::Requirement
60
60
  requirements:
61
61
  - - '='
62
62
  - !ruby/object:Gem::Version
63
- version: 0.27.0
63
+ version: 0.27.2
64
64
  type: :development
65
65
  prerelease: false
66
66
  version_requirements: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - '='
69
69
  - !ruby/object:Gem::Version
70
- version: 0.27.0
70
+ version: 0.27.2
71
71
  - !ruby/object:Gem::Dependency
72
72
  name: decidim-proposals
73
73
  requirement: !ruby/object:Gem::Requirement
74
74
  requirements:
75
75
  - - '='
76
76
  - !ruby/object:Gem::Version
77
- version: 0.27.0
77
+ version: 0.27.2
78
78
  type: :development
79
79
  prerelease: false
80
80
  version_requirements: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - '='
83
83
  - !ruby/object:Gem::Version
84
- version: 0.27.0
84
+ version: 0.27.2
85
85
  description: A budgets component for decidim's participatory spaces.
86
86
  email:
87
87
  - josepjaume@gmail.com
@@ -264,6 +264,7 @@ files:
264
264
  - config/locales/fr.yml
265
265
  - config/locales/ga-IE.yml
266
266
  - config/locales/gl.yml
267
+ - config/locales/gn-PY.yml
267
268
  - config/locales/hr-HR.yml
268
269
  - config/locales/hr.yml
269
270
  - config/locales/hu.yml
@@ -272,10 +273,12 @@ files:
272
273
  - config/locales/is.yml
273
274
  - config/locales/it.yml
274
275
  - config/locales/ja.yml
276
+ - config/locales/ka-GE.yml
275
277
  - config/locales/ko-KR.yml
276
278
  - config/locales/ko.yml
277
279
  - config/locales/lb-LU.yml
278
280
  - config/locales/lb.yml
281
+ - config/locales/lo-LA.yml
279
282
  - config/locales/lt-LT.yml
280
283
  - config/locales/lt.yml
281
284
  - config/locales/lv.yml
@@ -363,7 +366,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
363
366
  - !ruby/object:Gem::Version
364
367
  version: '0'
365
368
  requirements: []
366
- rubygems_version: 3.2.22
369
+ rubygems_version: 3.3.7
367
370
  signing_key:
368
371
  specification_version: 4
369
372
  summary: Decidim budgets module