decidim-sortitions 0.27.3 → 0.27.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/decidim/sortitions/admin/sortitions/confirm_destroy.html.erb +1 -0
- data/app/views/decidim/sortitions/admin/sortitions/edit.html.erb +1 -0
- data/app/views/decidim/sortitions/admin/sortitions/index.html.erb +1 -0
- data/app/views/decidim/sortitions/admin/sortitions/new.html.erb +1 -0
- data/app/views/decidim/sortitions/admin/sortitions/show.html.erb +1 -0
- data/app/views/decidim/sortitions/sortitions/_tags.html.erb +3 -3
- data/config/environment.rb +0 -0
- data/config/locales/de.yml +1 -0
- data/config/locales/el.yml +5 -0
- data/config/locales/es.yml +1 -1
- data/config/locales/eu.yml +69 -72
- data/config/locales/pt-BR.yml +1 -0
- data/db/migrate/20181017110803_make_sortitions_authors_polymorphic.rb +20 -9
- data/lib/decidim/sortitions/version.rb +1 -1
- metadata +16 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 074e2509c41ebe41cf98ac0492fe2dedab356bf835858a155fb50d7dcc4f9785
|
4
|
+
data.tar.gz: 8a64a92fd78a6790744bedbe39c5194068a71a96e33a11ae3ade1ede5f9239e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37a6cb3e8ed1bfdddba0405fb78965cc40d7858ad632a065678cec74f026f83b8a15b804abe6dcd4bd639c797ec6ae0e7df8d68ba413395b9a723613699c1c93
|
7
|
+
data.tar.gz: 74c61a532bf9688ba8608e0e1ec608bb4409e7ce65e1dd0ec3ed23a35d1e1f9b78dadb4dd73928799d0057006ccfa55acdc69f3b92b22ceceb3159db67da3b88
|
@@ -2,15 +2,15 @@
|
|
2
2
|
<ul class="tags tags--sortition">
|
3
3
|
<li>
|
4
4
|
<%= link_to t("filters.active", scope: "decidim.sortitions.sortitions"),
|
5
|
-
sortitions_path(filter: {
|
5
|
+
sortitions_path(filter: { with_any_state: "active" }) unless sortition.cancelled? %>
|
6
6
|
|
7
7
|
<%= link_to t("filters.cancelled", scope: "decidim.sortitions.sortitions"),
|
8
|
-
sortitions_path(filter: {
|
8
|
+
sortitions_path(filter: { with_any_state: "cancelled" }) if sortition.cancelled? %>
|
9
9
|
</li>
|
10
10
|
|
11
11
|
<% if sortition.category.present? %>
|
12
12
|
<li>
|
13
|
-
<%= link_to translated_attribute(sortition.category.name), sortitions_path(filter: {
|
13
|
+
<%= link_to translated_attribute(sortition.category.name), sortitions_path(filter: { with_category: sortition.category.id }) %>
|
14
14
|
</li>
|
15
15
|
<% end %>
|
16
16
|
</ul>
|
File without changes
|
data/config/locales/de.yml
CHANGED
@@ -77,6 +77,7 @@ de:
|
|
77
77
|
index:
|
78
78
|
title: Sortierungen
|
79
79
|
new:
|
80
|
+
confirm: Durch Drücken des nächsten Knopfes zeichnet Decidim das Datum und die Zeit (mit der Genauigkeit von Sekunden) auf und zusammen mit dem Würfelwurf wird diese Information verwendet, um eine zufällige Auswahl zu erzeugen. Die Aktion ist unumkehrbar. Sobald die Schaltfläche angeklickt wird, wird das Ergebnis dieser Verlosung veröffentlicht, zusammen mit den in diesem Formular eingegebenen Daten und kann nicht geändert werden. Überprüfen Sie deshalb bitte den Inhalt sorgfältig
|
80
81
|
create: Erstellen
|
81
82
|
title: Neue Sortierung
|
82
83
|
show:
|
data/config/locales/el.yml
CHANGED
@@ -20,10 +20,13 @@ el:
|
|
20
20
|
decidim:
|
21
21
|
components:
|
22
22
|
sortitions:
|
23
|
+
actions:
|
24
|
+
comment: Σχόλιο
|
23
25
|
name: Κληρώσεις
|
24
26
|
settings:
|
25
27
|
global:
|
26
28
|
comments_enabled: Τα σχόλια ενεργοποιήθηκαν
|
29
|
+
comments_max_length: Μέγιστο μέγεθος σχολίων (Αφήστε το 0 για την προκαθορισμένη τιμή)
|
27
30
|
events:
|
28
31
|
sortitions:
|
29
32
|
sortition_created:
|
@@ -143,3 +146,5 @@ el:
|
|
143
146
|
count:
|
144
147
|
one: 1 κλήρωση
|
145
148
|
other: "%{count} κληρώσεις"
|
149
|
+
statistics:
|
150
|
+
sortitions_count: Κληρώσεις
|
data/config/locales/es.yml
CHANGED
@@ -72,7 +72,7 @@ es:
|
|
72
72
|
update: Actualizar
|
73
73
|
form:
|
74
74
|
all_categories: Todas las categorias
|
75
|
-
select_proposal_component:
|
75
|
+
select_proposal_component: Selecciona el conjunto de propuestas
|
76
76
|
title: Nuevo sorteo para propuestas
|
77
77
|
index:
|
78
78
|
title: Sorteos
|
data/config/locales/eu.yml
CHANGED
@@ -3,148 +3,145 @@ eu:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
sortition:
|
6
|
-
additional_info:
|
7
|
-
decidim_category_id:
|
8
|
-
decidim_proposals_component_id:
|
9
|
-
dice:
|
10
|
-
target_items:
|
6
|
+
additional_info: Zozketari buruzko informazioa
|
7
|
+
decidim_category_id: Zozketatu nahi dituzun proposamenen taldearen kategoriak
|
8
|
+
decidim_proposals_component_id: Proposamen taldea
|
9
|
+
dice: Dadoen emaitza. Bota 6 aldeko dado bat edo bilatu beste eraren bat 1etik 6ra bitarteko ausazko zenbaki bat sortzeko eta sartu hemen zenbaki hori hainbat lekukoren aurrean. Horrek emaitzen ausazkotasunaren kalitatea eta bermea lagunduko ditu
|
10
|
+
target_items: Aukeratu nahi duzun proposamen kopurua (adierazitako proposamen taldetik zozketaren bidez aukeratu nahi duzun proposamen kopurua ezarri)
|
11
11
|
title: Izenburua
|
12
12
|
witnesses: Lekukoak
|
13
13
|
models:
|
14
|
-
decidim/sortitions/create_sortition_event:
|
14
|
+
decidim/sortitions/create_sortition_event: Zozketa
|
15
15
|
activerecord:
|
16
16
|
models:
|
17
17
|
decidim/sortitions/sortition:
|
18
|
-
one:
|
19
|
-
other:
|
18
|
+
one: Zozketa
|
19
|
+
other: Zozketak
|
20
20
|
decidim:
|
21
21
|
components:
|
22
22
|
sortitions:
|
23
23
|
actions:
|
24
|
-
comment:
|
25
|
-
name:
|
24
|
+
comment: Iruzkina
|
25
|
+
name: Zozketak
|
26
26
|
settings:
|
27
27
|
global:
|
28
28
|
comments_enabled: Iruzkinak gaituta
|
29
|
-
comments_max_length: Iruzkinen gehieneko luzera (utzi 0
|
29
|
+
comments_max_length: Iruzkinen gehieneko luzera (utzi 0 lehenetsitako konfigurazioa uzteko)
|
30
30
|
events:
|
31
31
|
sortitions:
|
32
32
|
sortition_created:
|
33
|
-
email_intro: '"%{resource_title}"
|
34
|
-
email_outro:
|
35
|
-
email_subject:
|
36
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a>
|
33
|
+
email_intro: '"%{resource_title}" zozketa jarraitzen ari zaren "%{participatory_space_title}" espazioan gehitu da.'
|
34
|
+
email_outro: Jakinarazpen hau jaso duzu "%{participatory_space_title}" jarraitzen ari zarelako. Aurreko estekan sartu jarraitzeari uzteko.
|
35
|
+
email_subject: Zozketa berria gehitu da %{participatory_space_title} espaziora
|
36
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> zozketa %{participatory_space_title} espaziora gehitu da
|
37
37
|
sortitions:
|
38
38
|
admin:
|
39
39
|
actions:
|
40
|
-
destroy:
|
40
|
+
destroy: Zozketa bertan behera utzi
|
41
41
|
edit: Editatu
|
42
|
-
new:
|
43
|
-
show:
|
42
|
+
new: Zozketa berria
|
43
|
+
show: Zozketaren xehetasunak
|
44
44
|
models:
|
45
45
|
sortition:
|
46
46
|
fields:
|
47
47
|
category: Kategoria
|
48
48
|
created_at: Sortze data
|
49
|
-
decidim_proposals_component:
|
50
|
-
dice:
|
49
|
+
decidim_proposals_component: Proposamenen osagaia
|
50
|
+
dice: Dadoa
|
51
51
|
reference: Erreferentzia
|
52
|
-
request_timestamp:
|
53
|
-
seed:
|
52
|
+
request_timestamp: Zozketa-denbora
|
53
|
+
seed: Hazia
|
54
54
|
target_items: Aukeratutako elementuak
|
55
55
|
title: Izenburua
|
56
56
|
name:
|
57
|
-
one:
|
58
|
-
other:
|
57
|
+
one: Zozketa
|
58
|
+
other: Zozketak
|
59
59
|
sortitions:
|
60
60
|
confirm_destroy:
|
61
|
-
confirm_destroy: Ziur al zaude hau
|
62
|
-
destroy:
|
63
|
-
title:
|
61
|
+
confirm_destroy: Ziur al zaude zozketa hau bertan behera utzi nahi duzula?
|
62
|
+
destroy: Zozketa bertan behera utzi
|
63
|
+
title: Zozketa bertan behera utzi
|
64
64
|
create:
|
65
|
-
error:
|
66
|
-
success:
|
65
|
+
error: Arazo bat gertatu da zozketa berri bat sortzean.
|
66
|
+
success: Zozketa ondo sortu da
|
67
67
|
destroy:
|
68
|
-
error:
|
69
|
-
success:
|
68
|
+
error: Zozketa ezin da bertan behera utzi.
|
69
|
+
success: Zozketa bertan behera utzi da
|
70
70
|
edit:
|
71
|
-
title: Eguneratu
|
72
|
-
update:
|
71
|
+
title: Eguneratu zozketari buruzko informazioa
|
72
|
+
update: Eguneratu
|
73
73
|
form:
|
74
74
|
all_categories: Kategoria guztiak
|
75
75
|
select_proposal_component: Aukeratu proposamenen multzoa
|
76
|
-
title:
|
76
|
+
title: Proposamenen zozketa berria
|
77
77
|
index:
|
78
|
-
title:
|
78
|
+
title: Zozketak
|
79
79
|
new:
|
80
|
+
confirm: Botoia sakatzean plataformak egun eta ordua (segundu gutxi batzuk gora behera) eta dadoak botatzean ateratako zenbakia gorde egingo ditu ausazko hautaketa bat egiteko. Botoia sakatu ondoren ez dago atzera egiterik eta zozketaren emaitzak zein txantiloi honetan sartutako datuak argitaratu eta ezin izango dira aldatu. Beraz, mesedez, arretaz jarraitu
|
80
81
|
create: Sortu
|
81
|
-
title:
|
82
|
+
title: Zozketa berria
|
82
83
|
show:
|
83
|
-
selected_proposals: Aukeratutako proposamenak
|
84
|
+
selected_proposals: Aukeratutako proposamenak
|
84
85
|
update:
|
85
|
-
error:
|
86
|
-
success:
|
86
|
+
error: Arazo bat sortu da zozketa eguneratzean.
|
87
|
+
success: Zozketa zuzen eguneratu da
|
87
88
|
admin_log:
|
88
89
|
sortition:
|
89
|
-
create: "%{user_name} %{resource_name}
|
90
|
-
delete: "%{user_name} %{resource_name}
|
91
|
-
update: "%{user_name} %{resource_name}
|
90
|
+
create: "%{user_name} k %{resource_name} zozketa sortu du %{space_name} espazioan"
|
91
|
+
delete: "%{user_name} k %{resource_name} zozketa bertan behera utzi du %{space_name} espazioan"
|
92
|
+
update: "%{user_name} k %{resource_name} zozketa eguneratu du %{space_name} espazioan"
|
92
93
|
sortitions:
|
93
|
-
count:
|
94
|
-
proposals_count:
|
95
|
-
one: 1 proposamen
|
96
|
-
other: "%{count} proposamen"
|
97
94
|
filters:
|
98
|
-
active:
|
99
|
-
all:
|
95
|
+
active: Aktiboa
|
96
|
+
all: Guztiak
|
100
97
|
cancelled: Bertan behera
|
101
98
|
category: Kategoria
|
102
99
|
category_prompt: Aukeratu kategoria bat
|
103
100
|
search: Bilatu
|
104
|
-
state:
|
101
|
+
state: Egoera
|
105
102
|
filters_small_view:
|
106
|
-
close_modal:
|
107
|
-
filter:
|
108
|
-
filter_by:
|
103
|
+
close_modal: Modala itxi
|
104
|
+
filter: Filtroa
|
105
|
+
filter_by: Honen arabera iragazi
|
109
106
|
unfold: Zabaldu
|
110
107
|
linked_sortitions:
|
111
108
|
selected_proposals: Aukeratutako proposamenak
|
112
109
|
orders:
|
113
|
-
label: '
|
114
|
-
random:
|
115
|
-
recent:
|
110
|
+
label: 'Zozketak honen arabera ordenatu:'
|
111
|
+
random: Ausaz
|
112
|
+
recent: Berrienak
|
116
113
|
results_count:
|
117
114
|
count:
|
118
115
|
one: hautatutako proposamena
|
119
116
|
other: hautatutako proposamenak
|
120
117
|
show:
|
121
|
-
algorithm:
|
122
|
-
any_category: kategoria
|
118
|
+
algorithm: Zozketaren algoritmoaren kodea
|
119
|
+
any_category: kategoria guztienak
|
123
120
|
back: Itzuli zerrendara
|
124
|
-
cancelled:
|
125
|
-
candidate_proposal_ids:
|
126
|
-
candidate_proposals_info: '
|
121
|
+
cancelled: Zozketa beran behera utzita
|
122
|
+
candidate_proposal_ids: Zozketako proposamenen hurrenkera eta IDak
|
123
|
+
candidate_proposals_info: 'Zozketa (%{category_label}) proposamenen artean egin da, honako IDekin (letra lodiz hautatutako proposamenak) '
|
127
124
|
category: '%{category} kategoriatik'
|
128
|
-
dice_result: "(1)
|
129
|
-
introduction: 'Orrialde honek %{reference}
|
125
|
+
dice_result: "(1) Dadoen emaitza"
|
126
|
+
introduction: 'Orrialde honek %{reference} zozketaren emaitzak ditu. Zozketa honen bidez, %{target_items} emaitza kopurua ausaz eta banaketa probabilistiko berdinarekin aukeratu dira proposamen multzotik. Orri honek, emaitzak ezezik, berme guztiak izateko behar den informazioa ere jaso du. Zozketa honen kalitateak bi gako ditu. Alde batetik, dadoa hainbat lekukoren aurrean bota dela. Bestetik, zozketaren une zehatzean sortu den algoritmoak eman duen ausazko hautaketa. Sailkapenerako hazi-denbora hain da zehatza (segunduak) gizakiak ezin baitu hori kontrolatu. Honi esker, bidezko emaitza bermatzen duen sarrera bikoitz "kontrolaezina" sortzen da. '
|
130
127
|
mathematical_result: Emaitza (1) x (2)
|
131
|
-
proposals_selected_by_sortition:
|
132
|
-
sortition_reproducibility_details:
|
128
|
+
proposals_selected_by_sortition: Zozketa bidez aukeratutako proposamenak
|
129
|
+
sortition_reproducibility_details: Zozketaren errepikagarritasunaren xehetasunak
|
133
130
|
time_seed: "(2) Denbora hazia"
|
134
131
|
witnesses: Lekukoak
|
135
132
|
sortition:
|
136
|
-
random_seed:
|
133
|
+
random_seed: Ausazkotasun hazia
|
137
134
|
selected_proposals:
|
138
|
-
one:
|
139
|
-
other:
|
140
|
-
view:
|
135
|
+
one: aukeratutako proposamena
|
136
|
+
other: aukeratutako proposamenak
|
137
|
+
view: Ikusi
|
141
138
|
sortition_author:
|
142
|
-
deleted:
|
139
|
+
deleted: Ezabatutako parte-hartailea
|
143
140
|
sortition_cancel_author:
|
144
|
-
deleted:
|
141
|
+
deleted: Ezabatutako parte-hartzailea
|
145
142
|
sortitions_count:
|
146
143
|
count:
|
147
|
-
one: 1
|
148
|
-
other: "%{count}
|
144
|
+
one: Zozketa 1
|
145
|
+
other: "%{count} zozketa"
|
149
146
|
statistics:
|
150
147
|
sortitions_count: Zozketak
|
data/config/locales/pt-BR.yml
CHANGED
@@ -75,6 +75,7 @@ pt-BR:
|
|
75
75
|
index:
|
76
76
|
title: Sorteios
|
77
77
|
new:
|
78
|
+
confirm: Ao pressionar o próximo botão, a plataforma registrará a data e a hora (com precisão de segundos) e, junto com o lançamento de dados, essa informação será usada para gerar uma seleção aleatória. A ação será irreversível, uma vez que o botão é clicado o resultado deste sorteio será publicado, juntamente com os dados inseridos neste formulário e não podem ser modificados, por favor, verifique o conteúdo cuidadosamente
|
78
79
|
create: Criar
|
79
80
|
title: Nova classificação
|
80
81
|
show:
|
@@ -1,18 +1,29 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
class MakeSortitionsAuthorsPolymorphic < ActiveRecord::Migration[5.2]
|
4
|
+
class User < ApplicationRecord
|
5
|
+
self.table_name = :decidim_users
|
6
|
+
self.inheritance_column = nil # disable the default inheritance
|
7
|
+
|
8
|
+
default_scope { where(type: "Decidim::User") }
|
9
|
+
end
|
10
|
+
|
11
|
+
class Sortition < ApplicationRecord
|
12
|
+
include Decidim::HasComponent
|
13
|
+
|
14
|
+
self.table_name = :decidim_sortitions_sortitions
|
15
|
+
end
|
16
|
+
|
4
17
|
def change
|
5
18
|
add_column :decidim_sortitions_sortitions, :decidim_author_type, :string
|
6
19
|
|
7
|
-
|
8
|
-
|
9
|
-
author
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
sortition.author = author
|
15
|
-
sortition.save!
|
20
|
+
Sortition.find_each do |sortition|
|
21
|
+
author = User.find_by(id: sortition.decidim_author_id) if sortition.decidim_author_id.present?
|
22
|
+
author ||= sortition.organization
|
23
|
+
sortition.update!(
|
24
|
+
decidim_author_type: author.is_a?(User) ? author.type : "Decidim::Organization",
|
25
|
+
decidim_author_id: author.id
|
26
|
+
)
|
16
27
|
end
|
17
28
|
|
18
29
|
add_index :decidim_sortitions_sortitions,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-sortitions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.27.
|
4
|
+
version: 0.27.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Salvador Perez Garcia
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: decidim-admin
|
@@ -16,70 +16,70 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.27.
|
19
|
+
version: 0.27.4
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.27.
|
26
|
+
version: 0.27.4
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: decidim-comments
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.27.
|
33
|
+
version: 0.27.4
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.27.
|
40
|
+
version: 0.27.4
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: decidim-core
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.27.
|
47
|
+
version: 0.27.4
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.27.
|
54
|
+
version: 0.27.4
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: decidim-proposals
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.27.
|
61
|
+
version: 0.27.4
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.27.
|
68
|
+
version: 0.27.4
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: decidim-dev
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - '='
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 0.27.
|
75
|
+
version: 0.27.4
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - '='
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 0.27.
|
82
|
+
version: 0.27.4
|
83
83
|
description: This module makes possible to select amont a set of proposal by sortition
|
84
84
|
email:
|
85
85
|
- jsperezg@gmail.com
|
@@ -144,6 +144,7 @@ files:
|
|
144
144
|
- app/views/decidim/sortitions/sortitions/index.js.erb
|
145
145
|
- app/views/decidim/sortitions/sortitions/show.html.erb
|
146
146
|
- config/assets.rb
|
147
|
+
- config/environment.rb
|
147
148
|
- config/locales/am-ET.yml
|
148
149
|
- config/locales/ar-SA.yml
|
149
150
|
- config/locales/ar.yml
|
@@ -251,7 +252,7 @@ homepage: https://github.com/decidim/decidim
|
|
251
252
|
licenses:
|
252
253
|
- AGPL-3.0
|
253
254
|
metadata: {}
|
254
|
-
post_install_message:
|
255
|
+
post_install_message:
|
255
256
|
rdoc_options: []
|
256
257
|
require_paths:
|
257
258
|
- lib
|
@@ -267,7 +268,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
267
268
|
version: '0'
|
268
269
|
requirements: []
|
269
270
|
rubygems_version: 3.2.22
|
270
|
-
signing_key:
|
271
|
+
signing_key:
|
271
272
|
specification_version: 4
|
272
273
|
summary: Decidim sortitions module
|
273
274
|
test_files: []
|