dlnk_auth 0.1.0 → 0.2.0

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: c0d19743950394185b34f027606b621b9ed289ec80d37ff3086ad761c8869f3c
4
- data.tar.gz: d3913fffd2763cc6aa0b79ce9a324d3433214a14541503317c99eb01052002ad
3
+ metadata.gz: f6eac4fdf6c812cd7829a997a7e18542bb4cb9ce5ee5f018f3de08773aa4c7d5
4
+ data.tar.gz: 29fa2c8425b0a99827499b12c08884bd4298a5be83eb52e44c85cf2122e1ef78
5
5
  SHA512:
6
- metadata.gz: 11bdc33693539a8b731ee7d1969178003e0ca63caf6cf04e6c837e1ff50a6b68e56bbf9fe6cd2c89f255ab605dd4439ab073975a6845a4209da567a5f3802a1c
7
- data.tar.gz: 7659d49342261e67ca7074dfbbc19fc5344fe3f24874c0a86bcbcd36bf42517c91c2da3368e08aabefe0a457538dfac70dd0af663198ec78bde0686c58b706bc
6
+ metadata.gz: 9f80a55a217c21373410429f9f4efdce0e857271ee788e021e98053382f470279677614e5c435613e4c608017436354f0093b49f1ccea7c67fa6b1172ef40e58
7
+ data.tar.gz: bb2d174d41eba72d8adff1a6ac125d2b1ffd9e08356b8d53c58e71cbc72160e1ef002ec2f87fcc0612cdd9613a0c52447a212297971e91354cd9cd13410b44fe
@@ -1,15 +1,15 @@
1
1
  en:
2
2
  dlnk_auth:
3
3
  sessions:
4
- rate_limited: "Too many requests. Try again later."
5
4
  signed_out: "You have been signed out."
5
+ rate_limited: "Too many requests. Try again later."
6
6
  magic_links:
7
- rate_limited: "Too many attempts. Try again later."
7
+ code_sent: "If this email address is registered, you will receive a sign-in code shortly."
8
+ signed_in: "Signed in successfully."
8
9
  invalid_code: "Invalid or expired code. Please try again."
9
10
  email_first: "Please enter your email first."
10
11
  email_mismatch: "Email mismatch. Please try again."
11
- signed_in: "Signed in successfully."
12
- code_sent: "If this email address is registered, you will receive a sign-in code shortly."
12
+ rate_limited: "Too many attempts. Try again later."
13
13
  mailer:
14
14
  sign_in_instructions:
15
15
  subject: "Your sign in code"
@@ -0,0 +1,15 @@
1
+ fr:
2
+ dlnk_auth:
3
+ sessions:
4
+ signed_out: "Vous etes deconnecte."
5
+ rate_limited: "Trop de tentatives. Reessayez dans quelques minutes."
6
+ magic_links:
7
+ code_sent: "Si cette adresse email est enregistree, vous recevrez un code de connexion."
8
+ signed_in: "Vous etes connecte."
9
+ invalid_code: "Code invalide ou expire."
10
+ email_first: "Veuillez d'abord entrer votre email."
11
+ email_mismatch: "L'email ne correspond pas. Veuillez reessayer."
12
+ rate_limited: "Trop de tentatives. Reessayez dans quelques minutes."
13
+ mailer:
14
+ sign_in_instructions:
15
+ subject: "Votre code de connexion"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DlnkAuth
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dlnk_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - DALiNK
@@ -55,6 +55,7 @@ files:
55
55
  - app/views/layouts/dlnk_auth/application.html.erb
56
56
  - app/views/layouts/mailer.html.erb
57
57
  - config/locales/en.yml
58
+ - config/locales/fr.yml
58
59
  - config/routes.rb
59
60
  - db/migrate/20260215000001_create_dlnk_auth_sessions.rb
60
61
  - db/migrate/20260215000002_create_dlnk_auth_magic_links.rb