decidim-budgets 0.32.0.rc3 → 0.32.0
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 +4 -4
- data/app/commands/decidim/budgets/admin/create_project.rb +6 -6
- data/app/commands/decidim/budgets/admin/update_project.rb +6 -6
- data/app/forms/decidim/budgets/admin/project_form.rb +4 -2
- data/app/views/decidim/budgets/admin/projects/_form.html.erb +1 -1
- data/config/locales/bg.yml +0 -1
- data/config/locales/ca-IT.yml +1 -1
- data/config/locales/ca.yml +1 -1
- data/config/locales/cs.yml +0 -1
- data/config/locales/de.yml +0 -1
- data/config/locales/el.yml +0 -1
- data/config/locales/en.yml +1 -1
- data/config/locales/es-MX.yml +1 -1
- data/config/locales/es-PY.yml +1 -1
- data/config/locales/es.yml +1 -1
- data/config/locales/eu.yml +3 -3
- data/config/locales/fr-CA.yml +1 -1
- data/config/locales/fr.yml +1 -1
- data/config/locales/gl.yml +0 -1
- data/config/locales/hu.yml +0 -1
- data/config/locales/it.yml +0 -1
- data/config/locales/ja.yml +1 -1
- data/config/locales/lb.yml +0 -1
- data/config/locales/lt.yml +0 -1
- data/config/locales/nl.yml +0 -1
- data/config/locales/no.yml +0 -1
- data/config/locales/pl.yml +0 -1
- data/config/locales/pt-BR.yml +0 -1
- data/config/locales/pt.yml +0 -1
- data/config/locales/ro-RO.yml +0 -1
- data/config/locales/sk.yml +0 -1
- data/config/locales/sv.yml +0 -1
- data/config/locales/tr-TR.yml +0 -1
- data/config/locales/zh-CN.yml +0 -1
- data/config/locales/zh-TW.yml +0 -1
- data/decidim-budgets.gemspec +1 -1
- data/lib/decidim/budgets/version.rb +1 -1
- metadata +11 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f520d8d7c40ec672a9ec5a891aa9dc77557b51e136414c5971b46933d3682ba7
|
|
4
|
+
data.tar.gz: cb50f451f7a4815bb447cf5a023aca5d9a09d0f33e0725b15377ae35a055a95c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9fa084355a7679cbdc24491c6f405c661428e61ce6cfcfa34fe49be20340a2ccb0d9885cece8ff4576a6bb6421e1d376f0bde1dac50b229226bd467a37a1fb8
|
|
7
|
+
data.tar.gz: 0d9dcb05f8501a224548fb72e9443e15ca827b5bc15a72af2a36836d8e9ee555f6162129eac5ee8ad547b16727954226214b362ca64ceca92c949c78d2e24613
|
|
@@ -6,25 +6,25 @@ module Decidim
|
|
|
6
6
|
# This command is executed when the user creates a Project from the admin
|
|
7
7
|
# panel.
|
|
8
8
|
class CreateProject < Decidim::Commands::CreateResource
|
|
9
|
-
include ::Decidim::
|
|
9
|
+
include ::Decidim::MultipleAttachmentsMethods
|
|
10
10
|
|
|
11
11
|
fetch_form_attributes :budget, :taxonomizations, :title, :description, :budget_amount, :address, :latitude, :longitude
|
|
12
12
|
|
|
13
13
|
private
|
|
14
14
|
|
|
15
|
-
attr_reader :
|
|
15
|
+
attr_reader :attachments
|
|
16
16
|
|
|
17
17
|
def run_after_hooks
|
|
18
18
|
@attached_to = resource
|
|
19
19
|
link_proposals
|
|
20
|
-
|
|
20
|
+
create_attachments if process_attachments?
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
def run_before_hooks
|
|
24
|
-
return unless
|
|
24
|
+
return unless process_attachments?
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
raise Decidim::Commands::HookError if
|
|
26
|
+
build_attachments
|
|
27
|
+
raise Decidim::Commands::HookError if attachments_invalid?
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
def extra_params
|
|
@@ -6,7 +6,7 @@ module Decidim
|
|
|
6
6
|
# This command is executed when the user changes a Project from the admin
|
|
7
7
|
# panel.
|
|
8
8
|
class UpdateProject < Decidim::Commands::UpdateResource
|
|
9
|
-
include ::Decidim::
|
|
9
|
+
include ::Decidim::MultipleAttachmentsMethods
|
|
10
10
|
|
|
11
11
|
fetch_form_attributes :taxonomizations, :title, :description, :budget_amount, :address, :latitude, :longitude
|
|
12
12
|
|
|
@@ -19,15 +19,15 @@ module Decidim
|
|
|
19
19
|
|
|
20
20
|
def run_after_hooks
|
|
21
21
|
link_proposals
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
create_attachments if process_attachments?
|
|
23
|
+
attachment_cleanup!(include_all_attachments: true)
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
def run_before_hooks
|
|
27
|
-
return unless
|
|
27
|
+
return unless process_attachments?
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
raise Decidim::Commands::HookError if
|
|
29
|
+
build_attachments
|
|
30
|
+
raise Decidim::Commands::HookError if attachments_invalid?
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
def attributes
|
|
@@ -22,7 +22,7 @@ module Decidim
|
|
|
22
22
|
attribute :attachment, AttachmentForm
|
|
23
23
|
attribute :selected, Boolean
|
|
24
24
|
|
|
25
|
-
attachments_attribute :
|
|
25
|
+
attachments_attribute :attachments
|
|
26
26
|
|
|
27
27
|
validates :title, translatable_presence: true
|
|
28
28
|
validates :description, translatable_presence: true
|
|
@@ -36,6 +36,8 @@ module Decidim
|
|
|
36
36
|
def map_model(model)
|
|
37
37
|
self.proposal_ids = model.linked_resources(:proposals, "included_proposals").pluck(:id)
|
|
38
38
|
self.selected = model.selected?
|
|
39
|
+
self.attachments = model.attachments.ids
|
|
40
|
+
self.add_attachments = model.attachments.map { |att| { id: att.id, title: att.title } }
|
|
39
41
|
end
|
|
40
42
|
|
|
41
43
|
def participatory_space_manifest
|
|
@@ -74,7 +76,7 @@ module Decidim
|
|
|
74
76
|
# an error, the attachment is lost, so we need a way to inform the user of
|
|
75
77
|
# this problem.
|
|
76
78
|
def notify_missing_attachment_if_errored
|
|
77
|
-
errors.add(:
|
|
79
|
+
errors.add(:add_attachments, :needs_to_be_reattached) if errors.any? && add_attachments.present?
|
|
78
80
|
end
|
|
79
81
|
end
|
|
80
82
|
end
|
data/config/locales/bg.yml
CHANGED
|
@@ -269,7 +269,6 @@ bg:
|
|
|
269
269
|
global:
|
|
270
270
|
announcement: Обявление
|
|
271
271
|
comments_enabled: Коментарите са активирани
|
|
272
|
-
comments_max_length: Максимална дължина на коментарите (Оставете 0 за стойност по подразбиране)
|
|
273
272
|
form:
|
|
274
273
|
errors:
|
|
275
274
|
budget_voting_rule_only_one: Трябва да бъде активирано само едно правило за гласуване.
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -347,7 +347,7 @@ ca-IT:
|
|
|
347
347
|
announcement: Avís
|
|
348
348
|
clear_all: Netejar-ho tot
|
|
349
349
|
comments_enabled: Comentaris habilitats
|
|
350
|
-
comments_max_length:
|
|
350
|
+
comments_max_length: Caràcters màxims per comentari (deixar a 0 el valor predeterminat)
|
|
351
351
|
define_taxonomy_filters: Si us plau, defineix algunes filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
|
352
352
|
form:
|
|
353
353
|
errors:
|
data/config/locales/ca.yml
CHANGED
|
@@ -347,7 +347,7 @@ ca:
|
|
|
347
347
|
announcement: Avís
|
|
348
348
|
clear_all: Netejar-ho tot
|
|
349
349
|
comments_enabled: Comentaris habilitats
|
|
350
|
-
comments_max_length:
|
|
350
|
+
comments_max_length: Caràcters màxims per comentari (deixar a 0 el valor predeterminat)
|
|
351
351
|
define_taxonomy_filters: Si us plau, defineix algunes filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
|
352
352
|
form:
|
|
353
353
|
errors:
|
data/config/locales/cs.yml
CHANGED
|
@@ -367,7 +367,6 @@ cs:
|
|
|
367
367
|
announcement: Oznámení
|
|
368
368
|
clear_all: Vymazat vše
|
|
369
369
|
comments_enabled: Komentáře povoleny
|
|
370
|
-
comments_max_length: Maximální délka komentáře (ponechte 0 pro výchozí hodnotu)
|
|
371
370
|
define_taxonomy_filters: Před použitím tohoto nastavení prosím definujte některé filtry pro tento participační prostor.
|
|
372
371
|
form:
|
|
373
372
|
errors:
|
data/config/locales/de.yml
CHANGED
|
@@ -343,7 +343,6 @@ de:
|
|
|
343
343
|
announcement: Ankündigung
|
|
344
344
|
clear_all: Alles löschen
|
|
345
345
|
comments_enabled: Kommentare aktiviert
|
|
346
|
-
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
|
347
346
|
define_taxonomy_filters: Bitte definieren Sie einige Filter für diesen partizipativen Bereich, bevor Sie diese Einstellung verwenden.
|
|
348
347
|
form:
|
|
349
348
|
errors:
|
data/config/locales/el.yml
CHANGED
|
@@ -228,7 +228,6 @@ el:
|
|
|
228
228
|
global:
|
|
229
229
|
announcement: Ανακοίνωση
|
|
230
230
|
comments_enabled: Τα σχόλια ενεργοποιήθηκαν
|
|
231
|
-
comments_max_length: Μέγιστο μέγεθος σχολίων (Αφήστε το 0 για το προκαθορισμένο μέγεθος)
|
|
232
231
|
form:
|
|
233
232
|
errors:
|
|
234
233
|
budget_voting_rule_only_one: Μόνο ένας κανόνας ψηφοφορίας πρέπει να είναι ενεργοποιημένος.
|
data/config/locales/en.yml
CHANGED
|
@@ -347,7 +347,7 @@ en:
|
|
|
347
347
|
announcement: Announcement
|
|
348
348
|
clear_all: Clear all
|
|
349
349
|
comments_enabled: Comments enabled
|
|
350
|
-
comments_max_length:
|
|
350
|
+
comments_max_length: Max characters per comment (Leave 0 for default value)
|
|
351
351
|
define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
|
|
352
352
|
form:
|
|
353
353
|
errors:
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -344,7 +344,7 @@ es-MX:
|
|
|
344
344
|
announcement: Anuncio
|
|
345
345
|
clear_all: Limpiar todo
|
|
346
346
|
comments_enabled: Comentarios habilitados
|
|
347
|
-
comments_max_length:
|
|
347
|
+
comments_max_length: Caracteres máximos por comentario (dejar 0 para el valor predeterminado)
|
|
348
348
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
349
349
|
form:
|
|
350
350
|
errors:
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -347,7 +347,7 @@ es-PY:
|
|
|
347
347
|
announcement: Anuncio
|
|
348
348
|
clear_all: Limpiar todo
|
|
349
349
|
comments_enabled: Comentarios habilitados
|
|
350
|
-
comments_max_length:
|
|
350
|
+
comments_max_length: Caracteres máximos por comentario (dejar 0 para el valor predeterminado)
|
|
351
351
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
352
352
|
form:
|
|
353
353
|
errors:
|
data/config/locales/es.yml
CHANGED
|
@@ -347,7 +347,7 @@ es:
|
|
|
347
347
|
announcement: Aviso
|
|
348
348
|
clear_all: Limpiar todo
|
|
349
349
|
comments_enabled: Comentarios habilitados
|
|
350
|
-
comments_max_length:
|
|
350
|
+
comments_max_length: Caracteres máximos por comentario (dejar 0 para el valor predeterminado)
|
|
351
351
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
352
352
|
form:
|
|
353
353
|
errors:
|
data/config/locales/eu.yml
CHANGED
|
@@ -153,7 +153,7 @@ eu:
|
|
|
153
153
|
orders:
|
|
154
154
|
description: Parte-hatzaileek mezu elektroniko bat jasoko dute, eskaera bat egiteke duten aurrekontuetarako estekekin.
|
|
155
155
|
title:
|
|
156
|
-
one: Gogorarazpen bat bidaltzear zaude posta elektronikoz %{count}
|
|
156
|
+
one: Gogorarazpen bat bidaltzear zaude posta elektronikoz %{count} erabiltzaileri
|
|
157
157
|
other: Gogorarazpen bat bidaltzear zaude posta elektronikoz %{count} parte-hartzaileri
|
|
158
158
|
admin_log:
|
|
159
159
|
budget:
|
|
@@ -180,7 +180,7 @@ eu:
|
|
|
180
180
|
only_one: ezabatu zure babesa eta hasi berriro.
|
|
181
181
|
completed: Amaituta
|
|
182
182
|
count:
|
|
183
|
-
one: "%{count}
|
|
183
|
+
one: "Aurrekontu %{count}"
|
|
184
184
|
other: "%{count} aurrekontu"
|
|
185
185
|
empty: Oraindik ez dago aurrekonturik
|
|
186
186
|
finished_message: Amaitu duzu babesa emateko prozesua. Eskerrik asko parte hartzeagatik!
|
|
@@ -347,7 +347,7 @@ eu:
|
|
|
347
347
|
announcement: Oharra
|
|
348
348
|
clear_all: Garbitu dena
|
|
349
349
|
comments_enabled: Iruzkinak gaituta
|
|
350
|
-
comments_max_length:
|
|
350
|
+
comments_max_length: Iruzkin bakoitzeko gehieneko karaktereak (utzi 0 aurrez zehaztutako baliorako)
|
|
351
351
|
define_taxonomy_filters: Mesedez, eszenatoki hau erabili aurretik, zehaztu espazio parte-hartzaile honetarako iragazki batzuk.
|
|
352
352
|
form:
|
|
353
353
|
errors:
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -335,7 +335,7 @@ fr-CA:
|
|
|
335
335
|
global:
|
|
336
336
|
announcement: Annonce
|
|
337
337
|
comments_enabled: Activer le module de commentaire
|
|
338
|
-
comments_max_length:
|
|
338
|
+
comments_max_length: Nombre maximum de caractères par commentaire (Laisser 0 pour la valeur par défaut)
|
|
339
339
|
define_taxonomy_filters: Veuillez définir des filtres pour cet espace participatif avant d'utiliser ce paramètre.
|
|
340
340
|
form:
|
|
341
341
|
errors:
|
data/config/locales/fr.yml
CHANGED
|
@@ -335,7 +335,7 @@ fr:
|
|
|
335
335
|
global:
|
|
336
336
|
announcement: Annonce
|
|
337
337
|
comments_enabled: Activer le module de commentaire
|
|
338
|
-
comments_max_length:
|
|
338
|
+
comments_max_length: Nombre maximum de caractères par commentaire (Laisser 0 pour la valeur par défaut)
|
|
339
339
|
define_taxonomy_filters: Veuillez définir des filtres pour cet espace participatif avant d'utiliser ce paramètre.
|
|
340
340
|
form:
|
|
341
341
|
errors:
|
data/config/locales/gl.yml
CHANGED
|
@@ -163,7 +163,6 @@ gl:
|
|
|
163
163
|
global:
|
|
164
164
|
announcement: Anuncio
|
|
165
165
|
comments_enabled: Comentarios habilitados
|
|
166
|
-
comments_max_length: Lonxitude máxima dos comentarios (0 para valor predefinido)
|
|
167
166
|
projects_per_page: Proxectos por páxina
|
|
168
167
|
title: Título
|
|
169
168
|
total_budget: Orzamento total
|
data/config/locales/hu.yml
CHANGED
|
@@ -252,7 +252,6 @@ hu:
|
|
|
252
252
|
global:
|
|
253
253
|
announcement: Közlemény
|
|
254
254
|
comments_enabled: Megjegyzések engedélyezve
|
|
255
|
-
comments_max_length: Kommentek maximális hossza (Hagyjon 0 -t az alapértékhez)
|
|
256
255
|
form:
|
|
257
256
|
errors:
|
|
258
257
|
budget_voting_rule_only_one: Csak egy szavazási szabály állítható be.
|
data/config/locales/it.yml
CHANGED
|
@@ -168,7 +168,6 @@ it:
|
|
|
168
168
|
global:
|
|
169
169
|
announcement: Annuncio
|
|
170
170
|
comments_enabled: Commenti abilitati
|
|
171
|
-
comments_max_length: Lunghezza massima dei commenti (Lasciare 0 per il valore predefinito)
|
|
172
171
|
landing_page_content: Pagina iniziale dei budget
|
|
173
172
|
more_information_modal: Finestra modale "Maggiori informazioni"
|
|
174
173
|
projects_per_page: Progetti per pagina
|
data/config/locales/ja.yml
CHANGED
|
@@ -337,7 +337,7 @@ ja:
|
|
|
337
337
|
announcement: お知らせ
|
|
338
338
|
clear_all: すべてクリア
|
|
339
339
|
comments_enabled: コメントを有効にする
|
|
340
|
-
comments_max_length:
|
|
340
|
+
comments_max_length: 各コメントの最大文字数 (0はデフォルト値のまま)
|
|
341
341
|
define_taxonomy_filters: この設定を使用する前に、参加型スペースのフィルターをいくつか定義してください。
|
|
342
342
|
form:
|
|
343
343
|
errors:
|
data/config/locales/lb.yml
CHANGED
|
@@ -146,7 +146,6 @@ lb:
|
|
|
146
146
|
global:
|
|
147
147
|
announcement: Ankündigung
|
|
148
148
|
comments_enabled: Kommentare aktiviert
|
|
149
|
-
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
|
150
149
|
landing_page_content: Budgets Landingpage
|
|
151
150
|
more_information_modal: Weitere Informationen
|
|
152
151
|
projects_per_page: Projekte pro Seite
|
data/config/locales/lt.yml
CHANGED
|
@@ -254,7 +254,6 @@ lt:
|
|
|
254
254
|
global:
|
|
255
255
|
announcement: Pranešimas
|
|
256
256
|
comments_enabled: Komentarai aktyvuoti
|
|
257
|
-
comments_max_length: Maksimalus komentaro ilgis (įrašyti 0 įprastam ilgiui)
|
|
258
257
|
form:
|
|
259
258
|
errors:
|
|
260
259
|
budget_voting_rule_only_one: Turi būti įjungta tik viena balsavimo taisyklė.
|
data/config/locales/nl.yml
CHANGED
|
@@ -193,7 +193,6 @@ nl:
|
|
|
193
193
|
global:
|
|
194
194
|
announcement: Aankondiging
|
|
195
195
|
comments_enabled: Reacties ingeschakeld
|
|
196
|
-
comments_max_length: Commentaar maximale lengte (laat 0 voor standaardwaarde)
|
|
197
196
|
landing_page_content: Budgetten landingspagina
|
|
198
197
|
more_information_modal: Meer informatie
|
|
199
198
|
projects_per_page: Projecten per pagina
|
data/config/locales/no.yml
CHANGED
|
@@ -184,7 +184,6 @@
|
|
|
184
184
|
global:
|
|
185
185
|
announcement: Kunngjøring
|
|
186
186
|
comments_enabled: Kommentarer aktivert
|
|
187
|
-
comments_max_length: Maks lengde på kommentarer (Sett 0 for standardverdi)
|
|
188
187
|
landing_page_content: Landingsside budsjett
|
|
189
188
|
more_information_modal: Mer informasjon
|
|
190
189
|
projects_per_page: Prosjekter per side
|
data/config/locales/pl.yml
CHANGED
|
@@ -265,7 +265,6 @@ pl:
|
|
|
265
265
|
global:
|
|
266
266
|
announcement: Ogłoszenie
|
|
267
267
|
comments_enabled: Komentarze włączone
|
|
268
|
-
comments_max_length: Maksymalna długość komentarzy (Pozostaw 0 dla wartości domyślnej)
|
|
269
268
|
form:
|
|
270
269
|
errors:
|
|
271
270
|
budget_voting_rule_only_one: Może być włączona tylko jedna reguła głosowania.
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -347,7 +347,6 @@ pt-BR:
|
|
|
347
347
|
announcement: Anúncio
|
|
348
348
|
clear_all: Limpar tudo
|
|
349
349
|
comments_enabled: Comentários ativados
|
|
350
|
-
comments_max_length: Tamanho máximo de comentários (deixe 0 para o valor padrão)
|
|
351
350
|
define_taxonomy_filters: Por favor, defina alguns filtros para este espaço participativo antes de usar esta configuração.
|
|
352
351
|
form:
|
|
353
352
|
errors:
|
data/config/locales/pt.yml
CHANGED
|
@@ -156,7 +156,6 @@ pt:
|
|
|
156
156
|
global:
|
|
157
157
|
announcement: Anúncio
|
|
158
158
|
comments_enabled: Comentários ativados
|
|
159
|
-
comments_max_length: Comprimento máximo dos comentários (Deixar 0 para o valor predefinido)
|
|
160
159
|
landing_page_content: Página de entrada dos orçamentos
|
|
161
160
|
more_information_modal: Mais informações modal
|
|
162
161
|
projects_per_page: Projetos por página
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -188,7 +188,6 @@ ro:
|
|
|
188
188
|
global:
|
|
189
189
|
announcement: Anunţ
|
|
190
190
|
comments_enabled: Comentarii activate
|
|
191
|
-
comments_max_length: Lungimea maximă a comentariilor (lăsați 0 pentru valoarea implicită)
|
|
192
191
|
landing_page_content: Pagina pentru bugetare participativă
|
|
193
192
|
more_information_modal: Mai multe informații
|
|
194
193
|
projects_per_page: Proiecte pe pagină
|
data/config/locales/sk.yml
CHANGED
|
@@ -367,7 +367,6 @@ sk:
|
|
|
367
367
|
announcement: Oznámenie
|
|
368
368
|
clear_all: Vymazať všetko
|
|
369
369
|
comments_enabled: Komentáre povolené
|
|
370
|
-
comments_max_length: Maximálna dĺžka komentárov (Ponechajte 0 pre predvolenú hodnotu)
|
|
371
370
|
define_taxonomy_filters: Pred použitím tohto nastavenia definujte nejaké filtre pre tento participatívny priestor.
|
|
372
371
|
form:
|
|
373
372
|
errors:
|
data/config/locales/sv.yml
CHANGED
|
@@ -345,7 +345,6 @@ sv:
|
|
|
345
345
|
announcement: Meddelande
|
|
346
346
|
clear_all: Återställ
|
|
347
347
|
comments_enabled: Aktivera kommentarer
|
|
348
|
-
comments_max_length: Maximal kommentarslängd (ange 0 för att använda standardvärdet)
|
|
349
348
|
define_taxonomy_filters: Ställ in filter innan du använder den här inställningen.
|
|
350
349
|
form:
|
|
351
350
|
errors:
|
data/config/locales/tr-TR.yml
CHANGED
|
@@ -153,7 +153,6 @@ tr:
|
|
|
153
153
|
global:
|
|
154
154
|
announcement: Duyurular
|
|
155
155
|
comments_enabled: Yorumlar etkin
|
|
156
|
-
comments_max_length: Maksimum yorum uzunluğu (Varsayılan değer için 0 bırakın)
|
|
157
156
|
landing_page_content: Bütçeler ana sayfası
|
|
158
157
|
more_information_modal: Daha fazla bilgi
|
|
159
158
|
projects_per_page: Sayfa başına projeler
|
data/config/locales/zh-CN.yml
CHANGED
data/config/locales/zh-TW.yml
CHANGED
data/decidim-budgets.gemspec
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
$LOAD_PATH.push File.expand_path("lib", __dir__)
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
|
-
version = "0.32.0
|
|
6
|
+
version = "0.32.0"
|
|
7
7
|
s.version = version
|
|
8
8
|
s.authors = ["Josep Jaume Rey Peroy", "Marc Riera Casals", "Oriol Gual Oliva"]
|
|
9
9
|
s.email = ["josepjaume@gmail.com", "mrc2407@gmail.com", "oriolgual@gmail.com"]
|
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.32.0
|
|
4
|
+
version: 0.32.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josep Jaume Rey Peroy
|
|
@@ -17,70 +17,70 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - '='
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 0.32.0
|
|
20
|
+
version: 0.32.0
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - '='
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 0.32.0
|
|
27
|
+
version: 0.32.0
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: decidim-core
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
31
31
|
requirements:
|
|
32
32
|
- - '='
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: 0.32.0
|
|
34
|
+
version: 0.32.0
|
|
35
35
|
type: :runtime
|
|
36
36
|
prerelease: false
|
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
38
|
requirements:
|
|
39
39
|
- - '='
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: 0.32.0
|
|
41
|
+
version: 0.32.0
|
|
42
42
|
- !ruby/object:Gem::Dependency
|
|
43
43
|
name: decidim-admin
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
45
45
|
requirements:
|
|
46
46
|
- - '='
|
|
47
47
|
- !ruby/object:Gem::Version
|
|
48
|
-
version: 0.32.0
|
|
48
|
+
version: 0.32.0
|
|
49
49
|
type: :development
|
|
50
50
|
prerelease: false
|
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
52
|
requirements:
|
|
53
53
|
- - '='
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
|
-
version: 0.32.0
|
|
55
|
+
version: 0.32.0
|
|
56
56
|
- !ruby/object:Gem::Dependency
|
|
57
57
|
name: decidim-dev
|
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
|
59
59
|
requirements:
|
|
60
60
|
- - '='
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
|
-
version: 0.32.0
|
|
62
|
+
version: 0.32.0
|
|
63
63
|
type: :development
|
|
64
64
|
prerelease: false
|
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
|
67
67
|
- - '='
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: 0.32.0
|
|
69
|
+
version: 0.32.0
|
|
70
70
|
- !ruby/object:Gem::Dependency
|
|
71
71
|
name: decidim-proposals
|
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
74
|
- - '='
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
|
-
version: 0.32.0
|
|
76
|
+
version: 0.32.0
|
|
77
77
|
type: :development
|
|
78
78
|
prerelease: false
|
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
|
80
80
|
requirements:
|
|
81
81
|
- - '='
|
|
82
82
|
- !ruby/object:Gem::Version
|
|
83
|
-
version: 0.32.0
|
|
83
|
+
version: 0.32.0
|
|
84
84
|
description: A budgets component for decidim's participatory spaces.
|
|
85
85
|
email:
|
|
86
86
|
- josepjaume@gmail.com
|