feat(LRL App): init V0

This commit is contained in:
2025-10-22 17:09:48 +02:00
parent d3303fee95
commit 0924da3cda
475 changed files with 44862 additions and 7 deletions

View 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',
],
],
];

View 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',
],
],
];

View File

@@ -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.',
],
];

View 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.',
],
],
],
];