feat(LRL App): init V0
This commit is contained in:
68
lang/vendor/filament-panels/en/auth/pages/edit-profile.php
vendored
Normal file
68
lang/vendor/filament-panels/en/auth/pages/edit-profile.php
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Profile',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email address',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Name',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'New password',
|
||||
'validation_attribute' => 'password',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Confirm new password',
|
||||
'validation_attribute' => 'password confirmation',
|
||||
],
|
||||
|
||||
'current_password' => [
|
||||
'label' => 'Current password',
|
||||
'below_content' => 'For security, please confirm your password to continue.',
|
||||
'validation_attribute' => 'current password',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Save changes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor_authentication' => [
|
||||
'label' => 'Two-factor authentication (2FA)',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'email_change_verification_sent' => [
|
||||
'title' => 'Email address change request sent',
|
||||
'body' => 'A request to change your email address has been sent to :email. Please check your email to verify the change.',
|
||||
],
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Saved',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Cancel',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
35
lang/vendor/filament-panels/en/auth/pages/email-verification/email-verification-prompt.php
vendored
Normal file
35
lang/vendor/filament-panels/en/auth/pages/email-verification/email-verification-prompt.php
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Verify your email address',
|
||||
|
||||
'heading' => 'Verify your email address',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend_notification' => [
|
||||
'label' => 'Resend it',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'notification_not_received' => 'Not received the email we sent?',
|
||||
'notification_sent' => 'We\'ve sent an email to :email containing instructions on how to verify your email address.',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'notification_resent' => [
|
||||
'title' => 'We\'ve resent the email.',
|
||||
],
|
||||
|
||||
'notification_resend_throttled' => [
|
||||
'title' => 'Too many resend attempts',
|
||||
'body' => 'Please try again in :seconds seconds.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
85
lang/vendor/filament-panels/en/auth/pages/login.php
vendored
Normal file
85
lang/vendor/filament-panels/en/auth/pages/login.php
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Login',
|
||||
|
||||
'heading' => 'Sign in',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'before' => 'or',
|
||||
'label' => 'sign up for an account',
|
||||
],
|
||||
|
||||
'request_password_reset' => [
|
||||
'label' => 'Forgot password?',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email address',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Password',
|
||||
],
|
||||
|
||||
'remember' => [
|
||||
'label' => 'Remember me',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Sign in',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor' => [
|
||||
|
||||
'heading' => 'Verify your identity',
|
||||
|
||||
'subheading' => 'To continue signing in, you need to verify your identity.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'provider' => [
|
||||
'label' => 'How would you like to verify?',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Confirm sign in',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Too many login attempts',
|
||||
'body' => 'Please try again in :seconds seconds.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
46
lang/vendor/filament-panels/en/auth/pages/password-reset/request-password-reset.php
vendored
Normal file
46
lang/vendor/filament-panels/en/auth/pages/password-reset/request-password-reset.php
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Reset your password',
|
||||
|
||||
'heading' => 'Forgot password?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'back to login',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email address',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'Send email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'sent' => [
|
||||
'body' => 'If your account doesn\'t exist, you will not receive the email.',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Too many requests',
|
||||
'body' => 'Please try again in :seconds seconds.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
43
lang/vendor/filament-panels/en/auth/pages/password-reset/reset-password.php
vendored
Normal file
43
lang/vendor/filament-panels/en/auth/pages/password-reset/reset-password.php
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Reset your password',
|
||||
|
||||
'heading' => 'Reset your password',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email address',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Password',
|
||||
'validation_attribute' => 'password',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Confirm password',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Reset password',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Too many reset attempts',
|
||||
'body' => 'Please try again in :seconds seconds.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
56
lang/vendor/filament-panels/en/auth/pages/register.php
vendored
Normal file
56
lang/vendor/filament-panels/en/auth/pages/register.php
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Register',
|
||||
|
||||
'heading' => 'Sign up',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'before' => 'or',
|
||||
'label' => 'sign in to your account',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email address',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Name',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Password',
|
||||
'validation_attribute' => 'password',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Confirm password',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'label' => 'Sign up',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Too many registration attempts',
|
||||
'body' => 'Please try again in :seconds seconds.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user