decidim-system 0.24.1 → 0.24.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: 81134e45fb1b2168c196c47a6eb51d131801dd16aace004022be2b06ba0b4efe
4
- data.tar.gz: 5d49d74f7b4a52d76dd1e1cac7ea674745d07842fd6f08f44c52312f7add51fe
3
+ metadata.gz: 7359b508535054976709c181f1fd147a562fe7833f72e2e591a407bab0d8140d
4
+ data.tar.gz: 6211b856bf9b8c1542db906001e1e5e4565f8ba793cf00caa0742e124420e854
5
5
  SHA512:
6
- metadata.gz: 302d11f8ce341223d2230de204a53ea224c132f968608a4553a3321a62e38877a6d3e09a040f77ecf16512879737e9592c12a9e6e6bb486affb5c4c7463d11f8
7
- data.tar.gz: 240614ff7aa68a32c598869b17e4688e9f29ca76be8ce34108f2db024efc9d88ee41d815d3e05bcf909f9e26a9ea1e5bf83ce0d048aee310f7b3257ac5ce7575
6
+ metadata.gz: ee23ed5cce1c95d0938ee2c30c1c802753f078b2c6d61ae3015266b9790a7f711db3ebaea24ca5a741bfb8ca15de3b83ee2856d5b4d552132b403745161c981f
7
+ data.tar.gz: 13228026e6473650e9f538327563fc3c35c7d9c5c58d4d8c5ac5c14056ba6d306cf065a08509389b764e1024e03586a4926ca27a73363b3e6799d2fda890057e
@@ -3,7 +3,7 @@
3
3
  <% end %>
4
4
 
5
5
  <div class="actions title">
6
- <%= link_to t("actions.new", scope: "decidim.system", name: t("models.admin.name", scope: "decidim.system")), ["new", "admin"], class: "new" %>
6
+ <%= link_to t("actions.new", scope: "decidim.system", name: t("models.admin.name", scope: "decidim.system")), [:new, :admin], class: "new" %>
7
7
  </div>
8
8
 
9
9
  <table class="stack">
@@ -24,7 +24,7 @@
24
24
  <%= l admin.created_at, format: :short %>
25
25
  </td>
26
26
  <td class="actions">
27
- <%= link_to t("actions.edit", scope: "decidim.system"), ["edit", admin] %>
27
+ <%= link_to t("actions.edit", scope: "decidim.system"), [:edit, admin] %>
28
28
  <%= link_to t("actions.destroy", scope: "decidim.system"), admin, method: :delete, class: "small alert button", data: { confirm: t("actions.confirm_destroy", scope: "decidim.system") } %>
29
29
  </td>
30
30
  </tr>
@@ -3,7 +3,7 @@
3
3
  <% end %>
4
4
 
5
5
  <div class="actions title">
6
- <%= link_to t("actions.new", scope: "decidim.system", name: t("models.oauth_application.name", scope: "decidim.system")), ["new", "oauth_application"], class: "new" %>
6
+ <%= link_to t("actions.new", scope: "decidim.system", name: t("models.oauth_application.name", scope: "decidim.system")), [:new, :oauth_application], class: "new" %>
7
7
  </div>
8
8
 
9
9
  <table class="stack">
@@ -32,7 +32,7 @@
32
32
  <%= l oauth_application.created_at, format: :short %>
33
33
  </td>
34
34
  <td class="actions">
35
- <%= link_to t("actions.edit", scope: "decidim.system"), ["edit", oauth_application] %>
35
+ <%= link_to t("actions.edit", scope: "decidim.system"), [:edit, oauth_application] %>
36
36
  <%= link_to t("actions.destroy", scope: "decidim.system"), oauth_application, method: :delete, class: "small alert button", data: { confirm: t(".confirm_delete") } %>
37
37
  </td>
38
38
  </tr>
@@ -3,7 +3,7 @@
3
3
  <% end %>
4
4
 
5
5
  <div class="actions title">
6
- <%= link_to t("actions.new", scope: "decidim.system", name: t("models.organization.name", scope: "decidim.system")), ["new", "organization"], class: "new" %>
6
+ <%= link_to t("actions.new", scope: "decidim.system", name: t("models.organization.name", scope: "decidim.system")), [:new, :organization], class: "new" %>
7
7
  </div>
8
8
 
9
9
  <table class="stack">
@@ -25,7 +25,7 @@
25
25
  <%= l organization.created_at, format: :short %>
26
26
  </td>
27
27
  <td class="actions">
28
- <%= link_to t("actions.edit", scope: "decidim.system"), ["edit", organization] %>
28
+ <%= link_to t("actions.edit", scope: "decidim.system"), [:edit, organization] %>
29
29
  </td>
30
30
  </tr>
31
31
  <% end %>
@@ -6,5 +6,5 @@
6
6
 
7
7
  <div class="actions">
8
8
  <hr>
9
- <%= link_to t("decidim.system.actions.edit"), ["edit", @organization] %>
9
+ <%= link_to t("decidim.system.actions.edit"), [:edit, @organization] %>
10
10
  </div>
@@ -105,6 +105,9 @@ sv:
105
105
  success: Organisationen har skapats.
106
106
  edit:
107
107
  secondary_hosts_hint: Ange var och en av dem på en ny rad
108
+ file_upload_settings:
109
+ file_sizes:
110
+ title: Max filstorlekar
108
111
  index:
109
112
  title: Organisationer
110
113
  new:
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-system version.
5
5
  module System
6
6
  def self.version
7
- "0.24.1"
7
+ "0.24.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-system
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.1
4
+ version: 0.24.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: 2021-04-08 00:00:00.000000000 Z
13
+ date: 2021-05-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: active_link_to
@@ -32,14 +32,14 @@ dependencies:
32
32
  requirements:
33
33
  - - '='
34
34
  - !ruby/object:Gem::Version
35
- version: 0.24.1
35
+ version: 0.24.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.24.1
42
+ version: 0.24.2
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: devise
45
45
  requirement: !ruby/object:Gem::Requirement
@@ -130,14 +130,14 @@ dependencies:
130
130
  requirements:
131
131
  - - '='
132
132
  - !ruby/object:Gem::Version
133
- version: 0.24.1
133
+ version: 0.24.2
134
134
  type: :development
135
135
  prerelease: false
136
136
  version_requirements: !ruby/object:Gem::Requirement
137
137
  requirements:
138
138
  - - '='
139
139
  - !ruby/object:Gem::Version
140
- version: 0.24.1
140
+ version: 0.24.2
141
141
  description: System administration to create new organization in an installation.
142
142
  email:
143
143
  - josepjaume@gmail.com