decidim-pages 0.26.0 → 0.27.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/commands/decidim/pages/admin/update_page.rb +1 -1
- data/app/commands/decidim/pages/copy_page.rb +1 -1
- data/app/commands/decidim/pages/create_page.rb +1 -1
- data/app/commands/decidim/pages/destroy_page.rb +1 -1
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +1 -0
- data/config/locales/bg.yml +1 -0
- data/config/locales/ca.yml +2 -1
- data/config/locales/cs.yml +1 -0
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +1 -2
- data/config/locales/el.yml +1 -0
- data/config/locales/en.yml +1 -1
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +2 -1
- data/config/locales/es-PY.yml +2 -1
- data/config/locales/es.yml +2 -1
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +1 -2
- data/config/locales/fi-plain.yml +2 -1
- data/config/locales/fi.yml +2 -1
- data/config/locales/fr-CA.yml +2 -1
- data/config/locales/fr.yml +1 -0
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +1 -2
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +1 -0
- data/config/locales/id-ID.yml +1 -0
- data/config/locales/is-IS.yml +2 -1
- data/config/locales/it.yml +1 -2
- data/config/locales/ja.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lb.yml +1 -2
- data/config/locales/lt.yml +1 -0
- data/config/locales/lv.yml +1 -0
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +1 -2
- data/config/locales/no.yml +1 -2
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +1 -0
- data/config/locales/pt-BR.yml +2 -3
- data/config/locales/pt.yml +1 -2
- data/config/locales/ro-RO.yml +1 -2
- data/config/locales/ru.yml +1 -0
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +1 -0
- data/config/locales/sl.yml +1 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +1 -0
- data/config/locales/sv.yml +1 -2
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +1 -0
- data/config/locales/uk.yml +1 -0
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +1 -0
- data/config/locales/zh-TW.yml +1 -0
- data/lib/decidim/pages/version.rb +1 -1
- metadata +12 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 30f594258b31fbf7e292ec3f8af2403131fb40d163771ca5074b2e6e21a627d7
|
4
|
+
data.tar.gz: 3a65184f0b078b710d730f515d32e883dbcd55a2aecc96babbbf46beae2752f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 154347ec05c32f8a723f2998686717f46c5c75ccc42d618ca9b0f6cd7babacb969842d1c2ae9610ef1cfc1be69e7e72022f748e2f84a311284057123284f3b8a
|
7
|
+
data.tar.gz: 642b14e8daa549018ac3b91e2e3c272ce9467d220a3383a698e253438cf403f6d22ed8e2d7220ef659e902c63cec10b55e2ce6b17e7b9209f20db4dd68907b0c
|
@@ -5,7 +5,7 @@ module Decidim
|
|
5
5
|
module Admin
|
6
6
|
# This command is executed when the user changes a Page from the admin
|
7
7
|
# panel.
|
8
|
-
class UpdatePage <
|
8
|
+
class UpdatePage < Decidim::Command
|
9
9
|
# Initializes a UpdatePage Command.
|
10
10
|
#
|
11
11
|
# form - The form from which to get the data.
|
@@ -5,7 +5,7 @@ module Decidim
|
|
5
5
|
# Command that gets called whenever a component's page has to be duplicated.
|
6
6
|
# It's need a context with the old component that
|
7
7
|
# is going to be duplicated on the new one
|
8
|
-
class CopyPage <
|
8
|
+
class CopyPage < Decidim::Command
|
9
9
|
def initialize(context)
|
10
10
|
@context = context
|
11
11
|
end
|
@@ -4,7 +4,7 @@ module Decidim
|
|
4
4
|
module Pages
|
5
5
|
# Command that gets called whenever a component's page has to be created. It
|
6
6
|
# usually happens as a callback when the component itself is created.
|
7
|
-
class CreatePage <
|
7
|
+
class CreatePage < Decidim::Command
|
8
8
|
def initialize(component)
|
9
9
|
@component = component
|
10
10
|
end
|
@@ -4,7 +4,7 @@ module Decidim
|
|
4
4
|
module Pages
|
5
5
|
# Command that gets called when the page of this component needs to be
|
6
6
|
# destroyed. It usually happens as a callback when the component is removed.
|
7
|
-
class DestroyPage <
|
7
|
+
class DestroyPage < Decidim::Command
|
8
8
|
def initialize(component)
|
9
9
|
@component = component
|
10
10
|
end
|
data/config/locales/am-ET.yml
CHANGED
data/config/locales/ar.yml
CHANGED
data/config/locales/bg.yml
CHANGED
data/config/locales/ca.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
ca:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -30,6 +31,6 @@ ca:
|
|
30
31
|
success: Pàgina desada correctament.
|
31
32
|
home:
|
32
33
|
hero:
|
33
|
-
participate_title: Participa
|
34
|
+
participate_title: Participa en els processos de la plataforma
|
34
35
|
sub_hero:
|
35
36
|
register_title: Registra't per tenir un compte
|
data/config/locales/cs.yml
CHANGED
data/config/locales/da.yml
CHANGED
data/config/locales/de.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
de:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -29,7 +30,5 @@ de:
|
|
29
30
|
invalid: Beim Speichern der Seite sind Fehler aufgetreten.
|
30
31
|
success: Seite erfolgreich gespeichert
|
31
32
|
home:
|
32
|
-
hero:
|
33
|
-
participate_title: An den Prozessen der Plattform teilnehmen
|
34
33
|
sub_hero:
|
35
34
|
register_title: Registrieren
|
data/config/locales/el.yml
CHANGED
data/config/locales/en.yml
CHANGED
data/config/locales/eo.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es-MX:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -30,6 +31,6 @@ es-MX:
|
|
30
31
|
success: Página guardada correctamente.
|
31
32
|
home:
|
32
33
|
hero:
|
33
|
-
participate_title:
|
34
|
+
participate_title: Participa en los procesos de la plataforma
|
34
35
|
sub_hero:
|
35
36
|
register_title: Regístrate para tener una cuenta
|
data/config/locales/es-PY.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es-PY:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -30,6 +31,6 @@ es-PY:
|
|
30
31
|
success: Página guardada correctamente.
|
31
32
|
home:
|
32
33
|
hero:
|
33
|
-
participate_title:
|
34
|
+
participate_title: Participa en los procesos de la plataforma
|
34
35
|
sub_hero:
|
35
36
|
register_title: Regístrate para tener una cuenta
|
data/config/locales/es.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -30,6 +31,6 @@ es:
|
|
30
31
|
success: Página guardada correctamente.
|
31
32
|
home:
|
32
33
|
hero:
|
33
|
-
participate_title:
|
34
|
+
participate_title: Participa en los procesos de la plataforma
|
34
35
|
sub_hero:
|
35
36
|
register_title: Regístrate para tener una cuenta
|
data/config/locales/et.yml
CHANGED
data/config/locales/eu.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
eu:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -29,7 +30,5 @@ eu:
|
|
29
30
|
invalid: Erroreak gertatu dira orria gordetzean.
|
30
31
|
success: Orria zuzen gorde da.
|
31
32
|
home:
|
32
|
-
hero:
|
33
|
-
participate_title: Parte hartu plataformako prozesuetan
|
34
33
|
sub_hero:
|
35
34
|
register_title: Erregistratu kontu bat edukitzeko
|
data/config/locales/fi-plain.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
fi-pl:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -30,6 +31,6 @@ fi-pl:
|
|
30
31
|
success: Sivu tallennettu onnistuneesti.
|
31
32
|
home:
|
32
33
|
hero:
|
33
|
-
participate_title: Osallistu prosesseihin
|
34
|
+
participate_title: Osallistu alustan prosesseihin
|
34
35
|
sub_hero:
|
35
36
|
register_title: Luo oma tili alustalle
|
data/config/locales/fi.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
fi:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -30,6 +31,6 @@ fi:
|
|
30
31
|
success: Sivun tallentaminen onnistui.
|
31
32
|
home:
|
32
33
|
hero:
|
33
|
-
participate_title: Osallistu prosesseihin
|
34
|
+
participate_title: Osallistu alustan prosesseihin
|
34
35
|
sub_hero:
|
35
36
|
register_title: Luo oma tili alustalle
|
data/config/locales/fr-CA.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
fr-CA:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -30,6 +31,6 @@ fr-CA:
|
|
30
31
|
success: Page enregistrée avec succès.
|
31
32
|
home:
|
32
33
|
hero:
|
33
|
-
participate_title: Participer aux
|
34
|
+
participate_title: Participer aux concertations de la plateforme
|
34
35
|
sub_hero:
|
35
36
|
register_title: Inscrivez-vous pour créer un compte
|
data/config/locales/fr.yml
CHANGED
data/config/locales/ga-IE.yml
CHANGED
data/config/locales/gl.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
gl:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -29,7 +30,5 @@ gl:
|
|
29
30
|
invalid: Produciuse un erro ao gardar a páxina.
|
30
31
|
success: A páxina gardouse correctamente.
|
31
32
|
home:
|
32
|
-
hero:
|
33
|
-
participate_title: Participar nos procesos da plataforma
|
34
33
|
sub_hero:
|
35
34
|
register_title: Rexistrarse para crear unha conta
|
data/config/locales/hr.yml
CHANGED
data/config/locales/hu.yml
CHANGED
data/config/locales/id-ID.yml
CHANGED
data/config/locales/is-IS.yml
CHANGED
data/config/locales/it.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
it:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -29,7 +30,5 @@ it:
|
|
29
30
|
invalid: C'è stato un errore durante il salvataggio della pagina.
|
30
31
|
success: La pagina è stata salvata correttamente.
|
31
32
|
home:
|
32
|
-
hero:
|
33
|
-
participate_title: Partecipa ai processi della piattaforma
|
34
33
|
sub_hero:
|
35
34
|
register_title: Registrati e crea un account
|
data/config/locales/ja.yml
CHANGED
data/config/locales/ko.yml
CHANGED
data/config/locales/lb.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
lb:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -29,7 +30,5 @@ lb:
|
|
29
30
|
invalid: Beim Speichern der Seite sind Fehler aufgetreten.
|
30
31
|
success: Seite erfolgreich gespeichert
|
31
32
|
home:
|
32
|
-
hero:
|
33
|
-
participate_title: An den Prozessen der Plattform teilnehmen
|
34
33
|
sub_hero:
|
35
34
|
register_title: Registrieren
|
data/config/locales/lt.yml
CHANGED
data/config/locales/lv.yml
CHANGED
data/config/locales/mt.yml
CHANGED
data/config/locales/nl.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
nl:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -29,7 +30,5 @@ nl:
|
|
29
30
|
invalid: Er zijn fouten opgetreden bij het opslaan van de pagina.
|
30
31
|
success: Pagina is succesvol opgeslagen.
|
31
32
|
home:
|
32
|
-
hero:
|
33
|
-
participate_title: Neem deel aan de processen van het platform
|
34
33
|
sub_hero:
|
35
34
|
register_title: Meld je aan voor een account
|
data/config/locales/no.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
"no":
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -29,7 +30,5 @@
|
|
29
30
|
invalid: Det oppsto et problem med å lagre denne siden.
|
30
31
|
success: Siden ble lagret.
|
31
32
|
home:
|
32
|
-
hero:
|
33
|
-
participate_title: Delta i plattformens prosesser
|
34
33
|
sub_hero:
|
35
34
|
register_title: Registrer deg for å opprette en konto
|
data/config/locales/om-ET.yml
CHANGED
data/config/locales/pl.yml
CHANGED
data/config/locales/pt-BR.yml
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
|
1
|
+
---
|
2
|
+
pt:
|
2
3
|
activerecord:
|
3
4
|
models:
|
4
5
|
decidim/pages/page:
|
@@ -29,7 +30,5 @@ pt-BR:
|
|
29
30
|
invalid: Ocorreu erros ao salvar a página.
|
30
31
|
success: Página salva com sucesso.
|
31
32
|
home:
|
32
|
-
hero:
|
33
|
-
participate_title: Participar dos processos da plataforma
|
34
33
|
sub_hero:
|
35
34
|
register_title: Cadastre-se para criar uma conta
|
data/config/locales/pt.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
pt:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -29,7 +30,5 @@ pt:
|
|
29
30
|
invalid: Ocorreu um problema ao guardar a página.
|
30
31
|
success: Pagina guardada com êxito.
|
31
32
|
home:
|
32
|
-
hero:
|
33
|
-
participate_title: Participe nos processos da plataforma
|
34
33
|
sub_hero:
|
35
34
|
register_title: Registre para criar conta
|
data/config/locales/ro-RO.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
ro:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -30,7 +31,5 @@ ro:
|
|
30
31
|
invalid: A apărut o eroare la salvarea paginii.
|
31
32
|
success: Pagina a fost salvată cu succes.
|
32
33
|
home:
|
33
|
-
hero:
|
34
|
-
participate_title: Participă la procesele platformei
|
35
34
|
sub_hero:
|
36
35
|
register_title: Înregistrează-te pentru a crea un cont
|
data/config/locales/ru.yml
CHANGED
data/config/locales/si-LK.yml
CHANGED
data/config/locales/sk.yml
CHANGED
data/config/locales/sl.yml
CHANGED
data/config/locales/so-SO.yml
CHANGED
data/config/locales/sr-CS.yml
CHANGED
data/config/locales/sv.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
sv:
|
2
3
|
activerecord:
|
3
4
|
models:
|
@@ -29,7 +30,5 @@ sv:
|
|
29
30
|
invalid: Det gick inte att spara sidan.
|
30
31
|
success: Sidan sparades framgångsrikt.
|
31
32
|
home:
|
32
|
-
hero:
|
33
|
-
participate_title: Delta i plattformens dialoger
|
34
33
|
sub_hero:
|
35
34
|
register_title: Skapa ett konto
|
data/config/locales/sw-KE.yml
CHANGED
data/config/locales/ti-ER.yml
CHANGED
data/config/locales/tr-TR.yml
CHANGED
data/config/locales/uk.yml
CHANGED
data/config/locales/val-ES.yml
CHANGED
data/config/locales/vi.yml
CHANGED
data/config/locales/zh-CN.yml
CHANGED
data/config/locales/zh-TW.yml
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-pages
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.27.0.rc1
|
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-
|
13
|
+
date: 2022-06-27 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: decidim-core
|
@@ -18,42 +18,42 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.
|
21
|
+
version: 0.27.0.rc1
|
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.
|
28
|
+
version: 0.27.0.rc1
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: decidim-dev
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
33
|
- - '='
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.
|
35
|
+
version: 0.27.0.rc1
|
36
36
|
type: :development
|
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.
|
42
|
+
version: 0.27.0.rc1
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: decidim-participatory_processes
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - '='
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 0.
|
49
|
+
version: 0.27.0.rc1
|
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.
|
56
|
+
version: 0.27.0.rc1
|
57
57
|
description: A pages component for decidim's participatory processes.
|
58
58
|
email:
|
59
59
|
- josepjaume@gmail.com
|
@@ -181,14 +181,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
181
181
|
requirements:
|
182
182
|
- - ">="
|
183
183
|
- !ruby/object:Gem::Version
|
184
|
-
version: '
|
184
|
+
version: '3.0'
|
185
185
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
186
186
|
requirements:
|
187
|
-
- - "
|
187
|
+
- - ">"
|
188
188
|
- !ruby/object:Gem::Version
|
189
|
-
version:
|
189
|
+
version: 1.3.1
|
190
190
|
requirements: []
|
191
|
-
rubygems_version: 3.
|
191
|
+
rubygems_version: 3.2.22
|
192
192
|
signing_key:
|
193
193
|
specification_version: 4
|
194
194
|
summary: Decidim pages module
|