agilidee-devise 1.1.1 → 1.1.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/app/helpers/agilidee_devise/application_helper.rb +1 -1
- data/app/views/devise/confirmations/new.html.slim +1 -1
- data/app/views/devise/passwords/edit.html.slim +1 -1
- data/app/views/devise/passwords/new.html.slim +1 -1
- data/app/views/devise/registrations/edit.html.slim +6 -5
- data/app/views/devise/registrations/new.html.slim +1 -1
- data/app/views/devise/sessions/new.html.slim +1 -1
- data/app/views/devise/shared/_links.html.slim +20 -19
- data/app/views/devise/unlocks/new.html.slim +1 -1
- data/config/locales/fr.yml +2 -2
- data/lib/agilidee-devise/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15d01babff97e30508150b3f7de1a5874b29d3695ea322f4e08e5468ed503970
|
|
4
|
+
data.tar.gz: 5a6da2c0a5cc01a110f7ab89bfc3e2b32fa7823485b05fe1781a17fb3961d5a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 94fa499c9749f5b22b1ae0cf3d019152a1c6fc275e01a2e584ea4aa23e2fb33067e314604688b79dcb86ab904ea033d4a4aeedef399c6c664853aeb69da44e25
|
|
7
|
+
data.tar.gz: 0a231e6f0363034988c1f7645ca744ad7f669f55342d87b400b93cac43fc4600ea996e9287263b50fe3687380d8eec676bb41902385f55f9a7814349f4ed5fb8
|
data/CHANGELOG.md
CHANGED
|
@@ -11,7 +11,7 @@ module AgilideeDevise::ApplicationHelper
|
|
|
11
11
|
html = <<-HTML
|
|
12
12
|
<div class="alert alert-danger alert-block alert-devise">
|
|
13
13
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
|
14
|
-
<
|
|
14
|
+
<p>#{sentence}</p>
|
|
15
15
|
<ul>#{messages}</ul>
|
|
16
16
|
</div>
|
|
17
17
|
HTML
|
|
@@ -22,9 +22,10 @@
|
|
|
22
22
|
|
|
23
23
|
= f.submit t(".update"), class: "btn btn-primary"
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
.devise-bottom-links
|
|
26
|
+
p
|
|
27
|
+
= t(".unhappy")
|
|
28
|
+
= " "
|
|
29
|
+
= link_to t(".cancel_my_account"), registration_path(resource_name), data: { confirm: t(".are_you_sure") }, method: :delete
|
|
29
30
|
|
|
30
|
-
= link_to t(".back"), :back
|
|
31
|
+
= link_to t(".back"), :back
|
|
@@ -1,24 +1,25 @@
|
|
|
1
|
-
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
- if devise_mapping.registerable? && controller_name != "registrations"
|
|
6
|
-
= link_to t(".sign_up"), new_registration_path(resource_name)
|
|
7
|
-
br
|
|
1
|
+
.devise-bottom-links
|
|
2
|
+
- if controller_name != "sessions"
|
|
3
|
+
= link_to t(".sign_in"), new_session_path(resource_name)
|
|
4
|
+
br
|
|
8
5
|
|
|
9
|
-
- if devise_mapping.
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
- if devise_mapping.registerable? && controller_name != "registrations"
|
|
7
|
+
= link_to t(".sign_up"), new_registration_path(resource_name)
|
|
8
|
+
br
|
|
12
9
|
|
|
13
|
-
- if devise_mapping.
|
|
14
|
-
|
|
15
|
-
|
|
10
|
+
- if devise_mapping.recoverable? && controller_name != "passwords"
|
|
11
|
+
= link_to t(".forgot_your_password"), new_password_path(resource_name)
|
|
12
|
+
br
|
|
16
13
|
|
|
17
|
-
- if devise_mapping.
|
|
18
|
-
|
|
19
|
-
|
|
14
|
+
- if devise_mapping.confirmable? && controller_name != "confirmations"
|
|
15
|
+
= link_to t(".didn_t_receive_confirmation_instructions"), new_confirmation_path(resource_name)
|
|
16
|
+
br
|
|
20
17
|
|
|
21
|
-
- if devise_mapping.
|
|
22
|
-
|
|
23
|
-
= link_to t(".sign_in_with_provider", provider: provider.to_s.titleize), omniauth_authorize_path(resource_name, provider)
|
|
18
|
+
- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != "unlocks"
|
|
19
|
+
= link_to t(".didn_t_receive_unlock_instructions"), new_unlock_path(resource_name)
|
|
24
20
|
br
|
|
21
|
+
|
|
22
|
+
- if devise_mapping.omniauthable?
|
|
23
|
+
- resource_class.omniauth_providers.each do |provider|
|
|
24
|
+
= link_to t(".sign_in_with_provider", provider: provider.to_s.titleize), omniauth_authorize_path(resource_name, provider)
|
|
25
|
+
br
|
data/config/locales/fr.yml
CHANGED
|
@@ -117,5 +117,5 @@ fr:
|
|
|
117
117
|
not_found: n’a pas été trouvé(e)
|
|
118
118
|
not_locked: n’était pas verrouillé(e)
|
|
119
119
|
not_saved:
|
|
120
|
-
one: '
|
|
121
|
-
other: "
|
|
120
|
+
one: 'Une erreur est survenue :'
|
|
121
|
+
other: "Des erreurs sont survenues :"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: agilidee-devise
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- agilidée
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-12-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: devise
|