Add neutral diagnostic framework for future reporting modules: - DiagnosticReporterInterface, Registry, Manager, PayloadSanitizer - Laravel exception hook in bootstrap/app.php - Module permission declarations (requires_permissions in module.json) - Core diagnostic report points (module boot/install/update failures) - Module documentation update (moduldoku.md) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
1.2 KiB
PHP
20 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
'page_title' => 'My Profile',
|
|
'section_info' => 'Profile Information',
|
|
'section_info_description' => 'Update your name and email address.',
|
|
'section_password' => 'Change Password',
|
|
'section_password_description' => 'Use a long, random password to stay secure.',
|
|
'section_delete' => 'Delete Account',
|
|
'section_delete_description' => 'Once your account is deleted, all of its resources and data will be permanently deleted. Please download any data you wish to retain.',
|
|
'field_current_password' => 'Current Password',
|
|
'field_new_password' => 'New Password',
|
|
'field_confirm_password' => 'Confirm Password',
|
|
'btn_save' => 'Save',
|
|
'btn_delete' => 'Delete Account',
|
|
'btn_cancel' => 'Cancel',
|
|
'saved' => 'Saved.',
|
|
'delete_confirm_title' => 'Are you sure you want to delete your account?',
|
|
'delete_confirm_description' => 'Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm.',
|
|
];
|