decidim-pages 0.27.4 → 0.27.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9fc96130aab3916dd6b7ae085e9dc8e334cf6bd2d8c674562f7c5dd452a9bcb5
4
- data.tar.gz: 8aebb9bae120d767f5db7c3d201b2295361ea6782bc4889d1113ff6ef1e2b03e
3
+ metadata.gz: fc7ff092bc2f1f0f7820c6661cbc00d60ee685917138f59492db1c3c265218a8
4
+ data.tar.gz: 6f50a5c073bf56769f150dc3ccdb99bf23103792903d00c9e65f7ebb8cc01fc9
5
5
  SHA512:
6
- metadata.gz: 8b6a89b8d3ff1661fe461dc116dc9a5822d896e16bd0ac2c50a0568ac20e3c2dd3b9e46782f73b058bba64467ff623d93df669e223f2cd14b032c5b6a4f7e41b
7
- data.tar.gz: 070cf19c496cb7c647345a98591673f4e7e9179ab817f3f267ed91e1d733dd64a440bb0177591f4c215d1f0222bf2e1b34852ef02809cbf6199ccb995e8808b8
6
+ metadata.gz: 0a83f8ca3fc615dead5562ef84edddbe2b5324bfc9b118da99c6b215cd925a137bd6782196602e480d19d4b01bc22d977e3e909175a160930d9b9c0f1c0e166b
7
+ data.tar.gz: a7086dd51c94e912f6a6d983ae2898d85cf69d3630aad6ff7cc5eb7e00b879365626d6e06c323e3ffda7ab2f29f9691fe9f21599a3d13a3a8925b36126c83fc9
@@ -29,3 +29,8 @@ bg:
29
29
  update:
30
30
  invalid: Възникна проблем при запазване на страницата.
31
31
  success: Страницата е успешно съхранена.
32
+ home:
33
+ hero:
34
+ participate_title: Участвайте в процесите на платформата
35
+ sub_hero:
36
+ register_title: Регистрирайте се, за да си създадете акаунт
@@ -8,7 +8,7 @@ eu:
8
8
  decidim:
9
9
  admin_log:
10
10
  page:
11
- update: "%{user_name} %{resource_name} orrialdea %{space_name} eguneratu du"
11
+ update: "%{user_name} k %{resource_name} orrialdea hemen %{space_name} eguneratu du"
12
12
  components:
13
13
  pages:
14
14
  name: Orria
@@ -21,14 +21,16 @@ eu:
21
21
  admin:
22
22
  models:
23
23
  components:
24
- body: Testua
24
+ body: Gorputza
25
25
  pages:
26
26
  edit:
27
27
  save: Eguneratu
28
28
  title: Editatu orria
29
29
  update:
30
- invalid: Erroreak gertatu dira orria gordetzean.
30
+ invalid: Arazo bat egon da argitalpena gordetzean.
31
31
  success: Orria zuzen gorde da.
32
32
  home:
33
+ hero:
34
+ participate_title: Hartu parte plataformako prozesuetan
33
35
  sub_hero:
34
36
  register_title: Erregistratu kontu bat edukitzeko
@@ -12,3 +12,6 @@ ga:
12
12
  pages:
13
13
  edit:
14
14
  save: Nuashonraigh
15
+ home:
16
+ sub_hero:
17
+ register_title: Cláraigh le cuntas a chruthú
@@ -0,0 +1 @@
1
+ he:
@@ -32,5 +32,7 @@ pl:
32
32
  invalid: Podczas zapisywania strony wystąpił błąd.
33
33
  success: Strona została zapisana.
34
34
  home:
35
+ hero:
36
+ participate_title: Weź udział w procesach platformy
35
37
  sub_hero:
36
38
  register_title: Zarejestruj się, aby utworzyć konto
@@ -30,5 +30,7 @@ pt-BR:
30
30
  invalid: Ocorreu erros ao salvar a página.
31
31
  success: Página salva com sucesso.
32
32
  home:
33
+ hero:
34
+ participate_title: Participe dos processos da plataforma
33
35
  sub_hero:
34
36
  register_title: Cadastre-se para criar uma conta
@@ -0,0 +1 @@
1
+ sq:
@@ -0,0 +1 @@
1
+ th:
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ $LOAD_PATH.push File.expand_path("lib", __dir__)
4
+
5
+ # Maintain your gem's version:
6
+ require "decidim/pages/version"
7
+
8
+ # Describe your gem and declare its dependencies:
9
+ Gem::Specification.new do |s|
10
+ s.version = Decidim::Pages.version
11
+ s.authors = ["Josep Jaume Rey Peroy", "Marc Riera Casals", "Oriol Gual Oliva"]
12
+ s.email = ["josepjaume@gmail.com", "mrc2407@gmail.com", "oriolgual@gmail.com"]
13
+ s.license = "AGPL-3.0"
14
+ s.homepage = "https://github.com/decidim/decidim"
15
+ s.required_ruby_version = "~> 3.0.0"
16
+
17
+ s.name = "decidim-pages"
18
+ s.summary = "Decidim pages module"
19
+ s.description = "A pages component for decidim's participatory processes."
20
+
21
+ s.files = Dir.chdir(__dir__) do
22
+ `git ls-files -z`.split("\x0").select do |f|
23
+ (File.expand_path(f) == __FILE__) ||
24
+ f.start_with?(*%w(app/ config/ db/ lib/ Rakefile README.md))
25
+ end
26
+ end
27
+
28
+ s.add_dependency "decidim-core", Decidim::Pages.version
29
+
30
+ s.add_development_dependency "decidim-dev", Decidim::Pages.version
31
+ s.add_development_dependency "decidim-participatory_processes", Decidim::Pages.version
32
+ end
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-pages version.
5
5
  module Pages
6
6
  def self.version
7
- "0.27.4"
7
+ "0.27.6"
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim-pages
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.4
4
+ version: 0.27.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josep Jaume Rey Peroy
8
8
  - Marc Riera Casals
9
9
  - Oriol Gual Oliva
10
- autorequire:
10
+ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2023-07-27 00:00:00.000000000 Z
13
+ date: 2024-04-30 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.27.4
21
+ version: 0.27.6
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.4
28
+ version: 0.27.6
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.27.4
35
+ version: 0.27.6
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.27.4
42
+ version: 0.27.6
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.27.4
49
+ version: 0.27.6
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.4
56
+ version: 0.27.6
57
57
  description: A pages component for decidim's participatory processes.
58
58
  email:
59
59
  - josepjaume@gmail.com
@@ -86,7 +86,6 @@ files:
86
86
  - app/views/decidim/pages/admin/pages/edit.html.erb
87
87
  - app/views/decidim/pages/application/show.html.erb
88
88
  - config/assets.rb
89
- - config/environment.rb
90
89
  - config/locales/am-ET.yml
91
90
  - config/locales/ar-SA.yml
92
91
  - config/locales/ar.yml
@@ -119,6 +118,7 @@ files:
119
118
  - config/locales/ga-IE.yml
120
119
  - config/locales/gl.yml
121
120
  - config/locales/gn-PY.yml
121
+ - config/locales/he-IL.yml
122
122
  - config/locales/hr-HR.yml
123
123
  - config/locales/hr.yml
124
124
  - config/locales/hu.yml
@@ -153,9 +153,11 @@ files:
153
153
  - config/locales/sk.yml
154
154
  - config/locales/sl.yml
155
155
  - config/locales/so-SO.yml
156
+ - config/locales/sq-AL.yml
156
157
  - config/locales/sr-CS.yml
157
158
  - config/locales/sv.yml
158
159
  - config/locales/sw-KE.yml
160
+ - config/locales/th-TH.yml
159
161
  - config/locales/ti-ER.yml
160
162
  - config/locales/tr-TR.yml
161
163
  - config/locales/uk.yml
@@ -169,6 +171,7 @@ files:
169
171
  - db/migrate/20170110145040_remove_commentable_flag_from_pages.rb
170
172
  - db/migrate/20170220091402_remove_page_feature_titles.rb
171
173
  - db/migrate/20180305133658_rename_features_to_components_at_pages.rb
174
+ - decidim-pages.gemspec
172
175
  - lib/decidim/api/page_type.rb
173
176
  - lib/decidim/api/pages_type.rb
174
177
  - lib/decidim/pages.rb
@@ -182,15 +185,15 @@ homepage: https://github.com/decidim/decidim
182
185
  licenses:
183
186
  - AGPL-3.0
184
187
  metadata: {}
185
- post_install_message:
188
+ post_install_message:
186
189
  rdoc_options: []
187
190
  require_paths:
188
191
  - lib
189
192
  required_ruby_version: !ruby/object:Gem::Requirement
190
193
  requirements:
191
- - - ">="
194
+ - - "~>"
192
195
  - !ruby/object:Gem::Version
193
- version: '3.0'
196
+ version: 3.0.0
194
197
  required_rubygems_version: !ruby/object:Gem::Requirement
195
198
  requirements:
196
199
  - - ">="
@@ -198,7 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
201
  version: '0'
199
202
  requirements: []
200
203
  rubygems_version: 3.2.22
201
- signing_key:
204
+ signing_key:
202
205
  specification_version: 4
203
206
  summary: Decidim pages module
204
207
  test_files: []
File without changes