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,19 @@
<?php
return [
'notifications' => [
'blocked' => [
'title' => 'Email address change blocked',
'body' => 'You have successfully blocked an email address change attempt to :email. If you did not make the original request, please contact us immediately.',
],
'failed' => [
'title' => 'Failed to block email address change',
'body' => 'Unfortunately, you were unable to prevent the email address from being changed to :email, since it was already verified before you blocked it. If you did not make the original request, please contact us immediately.',
],
],
];

View File

@@ -0,0 +1,14 @@
<?php
return [
'notifications' => [
'verified' => [
'title' => 'Email address changed',
'body' => 'Your email address has been successfully changed to :email.',
],
],
];

View File

@@ -0,0 +1,71 @@
<?php
return [
'label' => 'Turn off',
'modal' => [
'heading' => 'Disable authenticator app',
'description' => 'Are you sure you want to stop using the authenticator app? Disabling this will remove an extra layer of security from your account.',
'form' => [
'code' => [
'label' => 'Enter the 6-digit code from the authenticator app',
'validation_attribute' => 'code',
'actions' => [
'use_recovery_code' => [
'label' => 'Use a recovery code instead',
],
],
'messages' => [
'invalid' => 'The code you entered is invalid.',
],
],
'recovery_code' => [
'label' => 'Or, enter a recovery code',
'validation_attribute' => 'recovery code',
'messages' => [
'invalid' => 'The recovery code you entered is invalid.',
],
],
],
'actions' => [
'submit' => [
'label' => 'Disable authenticator app',
],
],
],
'notifications' => [
'disabled' => [
'title' => 'Authenticator app has been disabled',
],
],
];

View File

@@ -0,0 +1,77 @@
<?php
return [
'label' => 'Regenerate recovery codes',
'modal' => [
'heading' => 'Regenerate authenticator app recovery codes',
'description' => 'If you lose your recovery codes, you can regenerate them here. Your old recovery codes will be invalidated immediately.',
'form' => [
'code' => [
'label' => 'Enter the 6-digit code from the authenticator app',
'validation_attribute' => 'code',
'messages' => [
'invalid' => 'The code you entered is invalid.',
],
],
'password' => [
'label' => 'Or, enter your current password',
'validation_attribute' => 'password',
],
],
'actions' => [
'submit' => [
'label' => 'Regenerate recovery codes',
],
],
],
'notifications' => [
'regenerated' => [
'title' => 'New authenticator app recovery codes have been generated',
],
],
'show_new_recovery_codes' => [
'modal' => [
'heading' => 'New recovery codes',
'description' => 'Please save the following recovery codes in a safe place. They will only be shown once, but you\'ll need them if you lose access to your authenticator app:',
'actions' => [
'submit' => [
'label' => 'Close',
],
],
],
],
];

View File

@@ -0,0 +1,81 @@
<?php
return [
'label' => 'Set up',
'modal' => [
'heading' => 'Set up authenticator app',
'description' => <<<'BLADE'
You'll need an app like Google Authenticator (<x-filament::link href="https://itunes.apple.com/us/app/google-authenticator/id388497605" target="_blank">iOS</x-filament::link>, <x-filament::link href="https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2" target="_blank">Android</x-filament::link>) to complete this process.
BLADE,
'content' => [
'qr_code' => [
'instruction' => 'Scan this QR code with your authenticator app:',
'alt' => 'QR code to scan with an authenticator app',
],
'text_code' => [
'instruction' => 'Or enter this code manually:',
'messages' => [
'copied' => 'Copied',
],
],
'recovery_codes' => [
'instruction' => 'Please save the following recovery codes in a safe place. They will only be shown once, but you\'ll need them if you lose access to your authenticator app:',
],
],
'form' => [
'code' => [
'label' => 'Enter the 6-digit code from the authenticator app',
'validation_attribute' => 'code',
'below_content' => 'You will need to enter the 6-digit code from your authenticator app each time you sign in or perform sensitive actions.',
'messages' => [
'invalid' => 'The code you entered is invalid.',
],
],
],
'actions' => [
'submit' => [
'label' => 'Enable authenticator app',
],
],
],
'notifications' => [
'enabled' => [
'title' => 'Authenticator app has been enabled',
],
],
];

View File

@@ -0,0 +1,64 @@
<?php
return [
'management_schema' => [
'actions' => [
'label' => 'Authenticator app',
'below_content' => 'Use a secure app to generate a temporary code for login verification.',
'messages' => [
'enabled' => 'Enabled',
'disabled' => 'Disabled',
],
],
],
'login_form' => [
'label' => 'Use a code from your authenticator app',
'code' => [
'label' => 'Enter the 6-digit code from the authenticator app',
'validation_attribute' => 'code',
'actions' => [
'use_recovery_code' => [
'label' => 'Use a recovery code instead',
],
],
'messages' => [
'invalid' => 'The code you entered is invalid.',
],
],
'recovery_code' => [
'label' => 'Or, enter a recovery code',
'validation_attribute' => 'recovery code',
'messages' => [
'invalid' => 'The recovery code you entered is invalid.',
],
],
],
];

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

View File

@@ -0,0 +1,19 @@
<?php
return [
'title' => 'Set up two-factor authentication (2FA)',
'heading' => 'Set up two-factor authentication',
'subheading' => '2FA adds an extra layer of security to your account by requiring a second form of verification when signing in.',
'actions' => [
'continue' => [
'label' => 'Continue',
],
],
];

View File

@@ -0,0 +1,27 @@
<?php
return [
'actions' => [
'Click to',
'copy' => [
'label' => 'copy',
],
'or',
'download' => [
'label' => 'download',
],
'all the codes at once.',
],
'messages' => [
'copied' => 'Copied',
],
];

View File

@@ -0,0 +1,16 @@
<?php
return [
'subject' => 'Your email address is being changed',
'lines' => [
'We received a request to change the email address associated with your account. Your password was used to confirm this change.',
'Once verified, the new email address on your account will be: :email.',
'You can block the change before it is verified by clicking the button below.',
'If you did not make this request, please contact us immediately.',
],
'action' => 'Block Email Change',
];

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

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

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

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

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

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

View File

@@ -0,0 +1,9 @@
<?php
return [
'title' => 'Error while loading page',
'body' => 'There was an error while attempting to load this page. Please try again later.',
];

View File

@@ -0,0 +1,12 @@
<?php
return [
'field' => [
'label' => 'Global search',
'placeholder' => 'Search',
],
'no_results_message' => 'No search results found.',
];

View File

@@ -0,0 +1,63 @@
<?php
return [
'direction' => 'ltr',
'actions' => [
'billing' => [
'label' => 'Manage subscription',
],
'logout' => [
'label' => 'Sign out',
],
'open_database_notifications' => [
'label' => 'Open notifications',
],
'open_user_menu' => [
'label' => 'User menu',
],
'sidebar' => [
'collapse' => [
'label' => 'Collapse sidebar',
],
'expand' => [
'label' => 'Expand sidebar',
],
],
'theme_switcher' => [
'dark' => [
'label' => 'Enable dark theme',
],
'light' => [
'label' => 'Enable light theme',
],
'system' => [
'label' => 'Enable system theme',
],
],
],
'avatar' => [
'alt' => 'Avatar of :name',
],
'logo' => [
'alt' => ':name logo',
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'title' => 'Dashboard',
'actions' => [
'filter' => [
'label' => 'Filter',
'modal' => [
'heading' => 'Filter',
'actions' => [
'apply' => [
'label' => 'Apply',
],
],
],
],
],
];

View File

@@ -0,0 +1,25 @@
<?php
return [
'form' => [
'actions' => [
'save' => [
'label' => 'Save changes',
],
],
],
'notifications' => [
'saved' => [
'title' => 'Saved',
],
],
];

View File

@@ -0,0 +1,37 @@
<?php
return [
'title' => 'Create :label',
'breadcrumb' => 'Create',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Cancel',
],
'create' => [
'label' => 'Create',
],
'create_another' => [
'label' => 'Create & create another',
],
],
],
'notifications' => [
'created' => [
'title' => 'Created',
],
],
];

View File

@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Edit :label',
'breadcrumb' => 'Edit',
'navigation_label' => 'Edit',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Cancel',
],
'save' => [
'label' => 'Save changes',
],
],
],
'content' => [
'tab' => [
'label' => 'Edit',
],
],
'notifications' => [
'saved' => [
'title' => 'Saved',
],
],
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => 'List',
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'title' => 'Manage :label :relationship',
];

View File

@@ -0,0 +1,19 @@
<?php
return [
'title' => 'View :label',
'breadcrumb' => 'View',
'navigation_label' => 'View',
'content' => [
'tab' => [
'label' => 'View',
],
],
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'body' => 'You have unsaved changes. Are you sure you want to leave this page?',
];

View File

@@ -0,0 +1,15 @@
<?php
return [
'actions' => [
'logout' => [
'label' => 'Sign out',
],
],
'welcome' => 'Welcome',
];

View File

@@ -0,0 +1,17 @@
<?php
return [
'actions' => [
'open_documentation' => [
'label' => 'Documentation',
],
'open_github' => [
'label' => 'GitHub',
],
],
];