slash_admin 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/config/slash_admin_manifest.js +3 -0
- data/app/views/slash_admin/security/sessions/new.html.erb +1 -1
- data/config/locales/en.yml +1 -0
- data/config/locales/fr.yml +1 -0
- data/lib/slash_admin/engine.rb +7 -2
- data/lib/slash_admin/version.rb +1 -1
- metadata +2 -2
- data/app/assets/config/relax_admin_manifest.js +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebe752f1d9c7b3db8257c911d1d8d22266be1ca3b82f6e8fe46e884e8d2ac5d3
|
4
|
+
data.tar.gz: 73e5dc332ed479b79e9e8d1c0e2a84cd58c49dbe75ead00ab42803f2bc7754c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 980ea6895531a10a5ec28af525c98adb5170f3c198e54e510ccaca4232bf0209acbac781c14295256a6d8ffebd7bb3767c1a44055204f3ed41b33ad176cb02ac
|
7
|
+
data.tar.gz: 3698513797002065186e88cc1cbd57d67adabd2fb557f1746ebd18fbba5a62360a5b379d04354ef795f3490d8333d66e742e2b489ccee010d4ac139bfbb19e62
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<div class="section-separator"></div>
|
9
9
|
<div class="section-separator"></div>
|
10
10
|
<h1 class="main-title">Administration</h1>
|
11
|
-
<span class="sub-title"><%= I18n.t('
|
11
|
+
<span class="sub-title"><%= I18n.t('slash_admin.view.fill_login_and_password') %></span>
|
12
12
|
<div class="section-separator"></div>
|
13
13
|
<div class="content-width content-login">
|
14
14
|
<%= form_for(:admin, url: '') do |f| %>
|
data/config/locales/en.yml
CHANGED
@@ -13,6 +13,7 @@ en:
|
|
13
13
|
error: Impossible to create '%{model_name}'
|
14
14
|
success: Operation successed.
|
15
15
|
view:
|
16
|
+
fill_login_and_password: "Please enter your credentials to proceed."
|
16
17
|
administration: Administration
|
17
18
|
home: Home
|
18
19
|
welcome: Alow you to administrate your application
|
data/config/locales/fr.yml
CHANGED
@@ -13,6 +13,7 @@ fr:
|
|
13
13
|
error: Impossible de trier '%{model_name}'
|
14
14
|
success: Opération réussi.
|
15
15
|
view:
|
16
|
+
fill_login_and_password: "Merci d'entrer votre identifiant et mot de passe."
|
16
17
|
administration: Administration
|
17
18
|
home: Accueil
|
18
19
|
welcome: Vous permet d'administrer votre application
|
data/lib/slash_admin/engine.rb
CHANGED
@@ -1,8 +1,13 @@
|
|
1
1
|
module SlashAdmin
|
2
2
|
class Engine < ::Rails::Engine
|
3
3
|
isolate_namespace SlashAdmin
|
4
|
-
|
5
|
-
|
4
|
+
|
5
|
+
initializer "slash_admin.assets.precompile" do |app|
|
6
|
+
app.config.assets.precompile += %w[slash_admin/*]
|
6
7
|
end
|
8
|
+
|
9
|
+
# config.to_prepare do
|
10
|
+
# Rails.application.config.assets.precompile += %w[slash_admin/*]
|
11
|
+
# end
|
7
12
|
end
|
8
13
|
end
|
data/lib/slash_admin/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slash_admin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- KOVACS Nicolas
|
@@ -298,7 +298,7 @@ extensions: []
|
|
298
298
|
extra_rdoc_files: []
|
299
299
|
files:
|
300
300
|
- README.md
|
301
|
-
- app/assets/config/
|
301
|
+
- app/assets/config/slash_admin_manifest.js
|
302
302
|
- app/assets/images/slash_admin/de.png
|
303
303
|
- app/assets/images/slash_admin/en.png
|
304
304
|
- app/assets/images/slash_admin/es.png
|