feat(LRL App): init V0
This commit is contained in:
67
lang/vendor/filament-panels/en/auth/multi-factor/email/actions/disable.php
vendored
Normal file
67
lang/vendor/filament-panels/en/auth/multi-factor/email/actions/disable.php
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Turn off',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Disable email verification codes',
|
||||
|
||||
'description' => 'Are you sure you want to stop receiving email verification codes? Disabling this will remove an extra layer of security from your account.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code we sent you by email',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend' => [
|
||||
|
||||
'label' => 'Send a new code by email',
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'resent' => [
|
||||
'title' => 'We\'ve sent you a new code by email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Disable email verification codes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'disabled' => [
|
||||
'title' => 'Email verification codes have been disabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
67
lang/vendor/filament-panels/en/auth/multi-factor/email/actions/set-up.php
vendored
Normal file
67
lang/vendor/filament-panels/en/auth/multi-factor/email/actions/set-up.php
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Set up',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Set up email verification codes',
|
||||
|
||||
'description' => 'You\'ll need to enter the 6-digit code we send you by email each time you sign in or perform sensitive actions. Check your email for a 6-digit code to complete the setup.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code we sent you by email',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend' => [
|
||||
|
||||
'label' => 'Send a new code by email',
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'resent' => [
|
||||
'title' => 'We\'ve sent you a new code by email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Enable email verification codes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'enabled' => [
|
||||
'title' => 'Email verification codes have been enabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'subject' => 'Here\'s your sign-in code',
|
||||
|
||||
'lines' => [
|
||||
'Your sign-in code is: :code',
|
||||
'This code will expire in a minute.|This code will expire in :minutes minutes.',
|
||||
],
|
||||
|
||||
];
|
||||
60
lang/vendor/filament-panels/en/auth/multi-factor/email/provider.php
vendored
Normal file
60
lang/vendor/filament-panels/en/auth/multi-factor/email/provider.php
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'management_schema' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'label' => 'Email verification codes',
|
||||
|
||||
'below_content' => 'Receive a temporary code at your email address to verify your identity during login.',
|
||||
|
||||
'messages' => [
|
||||
'enabled' => 'Enabled',
|
||||
'disabled' => 'Disabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'login_form' => [
|
||||
|
||||
'label' => 'Send a code to your email',
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code we sent you by email',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend' => [
|
||||
|
||||
'label' => 'Send a new code by email',
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'resent' => [
|
||||
'title' => 'We\'ve sent you a new code by email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user