first commit

This commit is contained in:
ericli1018
2025-06-13 12:36:48 +08:00
commit 0475d9de8e
167 changed files with 20145 additions and 0 deletions

16
lang/vendor/backpack/en/backup.php vendored Normal file
View File

@ -0,0 +1,16 @@
<?php
// --------------------------------------------------------
// This is only a pointer file, not an actual language file
// --------------------------------------------------------
//
// If you've copied this file to your /resources/lang/vendor/backpack/
// folder, please delete it, it's no use there. You need to copy/publish the
// actual language file, from the package.
// If a langfile with the same name exists in the package, load that one
if (file_exists(__DIR__.'/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
return include __DIR__.'/../../../../../backupmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
}
return [];

96
lang/vendor/backpack/en/base.php vendored Normal file
View File

@ -0,0 +1,96 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Backpack\Base Language Lines
|--------------------------------------------------------------------------
*/
'registration_closed' => 'Registration is closed.',
'no_email_column' => 'Users do not have an associated email address.',
'first_page_you_see' => 'The first page you see after login',
'login_status' => 'Login status',
'logged_in' => 'You are logged in!',
'toggle_navigation' => 'Toggle navigation',
'administration' => 'ADMINISTRATION',
'user' => 'USER',
'logout' => 'Logout',
'login' => 'Login',
'register' => 'Register',
'name' => 'Name',
'email_address' => 'E-mail address',
'email' => 'Email',
'username' => 'Username',
'password' => 'Password',
'old_password' => 'Old password',
'new_password' => 'New password',
'confirm_password' => 'Confirm password',
'remember_me' => 'Remember me',
'forgot_your_password' => 'Forgot Your Password?',
'reset_password' => 'Reset Password',
'send_reset_link' => 'Send Password Reset Link',
'click_here_to_reset' => 'Click here to reset your password',
'change_password' => 'Change Password',
'unauthorized' => 'Unauthorized.',
'dashboard' => 'Dashboard',
'handcrafted_by' => 'Handcrafted by',
'powered_by' => 'Powered by',
'my_account' => 'My Account',
'update_account_info' => 'Update Account Info',
'save' => 'Save',
'cancel' => 'Cancel',
'error' => 'Error',
'success' => 'Success',
'warning' => 'Warning',
'notice' => 'Notice',
'old_password_incorrect' => 'Old password is incorrect.',
'password_dont_match' => 'Passwords do not match.',
'password_empty' => 'Make sure both password fields are filled out.',
'password_updated' => 'Password updated.',
'account_updated' => 'Account updated successfully.',
'unknown_error' => 'An unknown error has occurred. Please try again.',
'error_saving' => 'Error while saving. Please try again.',
'welcome' => 'Welcome!',
'use_sidebar' => 'Use the sidebar to the left to create, edit or delete content.',
'error_page' => [
'title' => 'Error :error',
'button' => 'Take me home',
'message_4xx' => 'Please <a :href_back>go back</a> or return to <a :href_homepage>our homepage</a>.',
'message_500' => 'An internal server error has occurred. If the error persists please contact the development team.',
'message_503' => 'The server is overloaded or down for maintenance. Please try again later.',
'400' => 'Bad request.',
'401' => 'Unauthorized action.',
'403' => 'Forbidden.',
'404' => 'Page not found.',
'405' => 'Method not allowed.',
'408' => 'Request timeout.',
'429' => 'Too many requests.',
'500' => 'It\'s not you, it\'s me.',
],
'password_reset' => [
'greeting' => 'Hello!',
'subject' => 'Reset Password Notification',
'line_1' => 'You are receiving this email because we received a password reset request for your account.',
'line_2' => 'Click the button below to reset your password:',
'button' => 'Reset Password',
'notice' => 'If you did not request a password reset, no further action is required.',
],
'step' => 'Step',
'confirm_email' => 'Confirm Email',
'choose_new_password' => 'Choose New Password',
'confirm_new_password' => 'Confirm new password',
'throttled' => 'You have already requested a password reset recently. Please check your email. If you do not receive our email, please retry later.',
'throttled_request' => 'You have exceeded the limit of tries. Please wait a few minutes and try again.',
'verify_email' => [
'email_verification' => 'Email Verification',
'verification_link_sent' => 'A verification link has been sent to your email address.',
'email_verification_required' => 'Please verify your email address, by clicking on the link we\'ve sent you.',
'resend_verification_link' => 'Resend link',
],
];

188
lang/vendor/backpack/en/crud.php vendored Normal file
View File

@ -0,0 +1,188 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Backpack Crud Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the CRUD interface.
| You are free to change them to anything
| you want to customize your views to better match your application.
|
*/
// Forms
'save_action_save_and_new' => 'Save and new item',
'save_action_save_and_edit' => 'Save and edit this item',
'save_action_save_and_back' => 'Save and back',
'save_action_save_and_preview' => 'Save and preview',
'save_action_changed_notification' => 'Default behaviour after saving has been changed.',
// Create form
'add' => 'Add',
'back_to_all' => 'Back to all ',
'cancel' => 'Cancel',
'add_a_new' => 'Add a new ',
// Edit form
'edit' => 'Edit',
'save' => 'Save',
// Translatable models
'edit_translations' => 'Translation',
'language' => 'Language',
// CRUD table view
'all' => 'All ',
'in_the_database' => 'in the database',
'list' => 'List',
'reset' => 'Reset',
'actions' => 'Actions',
'preview' => 'Preview',
'delete' => 'Delete',
'admin' => 'Admin',
'details_row' => 'This is the details row. Modify as you please.',
'details_row_loading_error' => 'There was an error loading the details. Please retry.',
'clone' => 'Clone',
'clone_success' => '<strong>Entry cloned</strong><br>A new entry has been added, with the same information as this one.',
'clone_failure' => '<strong>Cloning failed</strong><br>The new entry could not be created. Please try again.',
// Confirmation messages and bubbles
'delete_confirm' => 'Are you sure you want to delete this item?',
'delete_confirmation_title' => 'Item Deleted',
'delete_confirmation_message' => 'The item has been deleted successfully.',
'delete_confirmation_not_title' => 'NOT deleted',
'delete_confirmation_not_message' => "There's been an error. Your item might not have been deleted.",
'delete_confirmation_not_deleted_title' => 'Not deleted',
'delete_confirmation_not_deleted_message' => 'Nothing happened. Your item is safe.',
// Bulk actions
'bulk_no_entries_selected_title' => 'No entries selected',
'bulk_no_entries_selected_message' => 'Please select one or more items to perform a bulk action on them.',
// Bulk delete
'bulk_delete_are_you_sure' => 'Are you sure you want to delete these :number entries?',
'bulk_delete_sucess_title' => 'Entries deleted',
'bulk_delete_sucess_message' => ' items have been deleted',
'bulk_delete_error_title' => 'Delete failed',
'bulk_delete_error_message' => 'One or more items could not be deleted',
// Bulk clone
'bulk_clone_are_you_sure' => 'Are you sure you want to clone these :number entries?',
'bulk_clone_sucess_title' => 'Entries cloned',
'bulk_clone_sucess_message' => ' items have been cloned.',
'bulk_clone_error_title' => 'Cloning failed',
'bulk_clone_error_message' => 'One or more entries could not be created. Please try again.',
// Ajax errors
'ajax_error_title' => 'Error',
'ajax_error_text' => 'Error loading page. Please refresh the page.',
// DataTables translation
'emptyTable' => 'No data available in table',
'info' => 'Showing _START_ to _END_ of _TOTAL_ entries',
'infoEmpty' => 'No entries',
'infoFiltered' => '(filtered from _MAX_ total entries)',
'infoPostFix' => '.',
'thousands' => ',',
'lengthMenu' => '_MENU_ entries per page',
'loadingRecords' => 'Loading...',
'processing' => 'Processing...',
'search' => 'Search',
'zeroRecords' => 'No matching entries found',
'paginate' => [
'first' => 'First',
'last' => 'Last',
'next' => 'Next',
'previous' => 'Previous',
],
'aria' => [
'sortAscending' => ': activate to sort column ascending',
'sortDescending' => ': activate to sort column descending',
],
'export' => [
'export' => 'Export',
'copy' => 'Copy',
'excel' => 'Excel',
'csv' => 'CSV',
'pdf' => 'PDF',
'print' => 'Print',
'column_visibility' => 'Column visibility',
],
// global crud - errors
'unauthorized_access' => 'Unauthorized access - you do not have the necessary permissions to see this page.',
'please_fix' => 'Please fix the following errors:',
// global crud - success / error notification bubbles
'insert_success' => 'The item has been added successfully.',
'update_success' => 'The item has been modified successfully.',
// CRUD reorder view
'reorder' => 'Reorder',
'reorder_text' => 'Use drag&drop to reorder.',
'reorder_success_title' => 'Done',
'reorder_success_message' => 'Your order has been saved.',
'reorder_error_title' => 'Error',
'reorder_error_message' => 'Your order has not been saved.',
// CRUD yes/no
'yes' => 'Yes',
'no' => 'No',
// CRUD filters navbar view
'filters' => 'Filters',
'toggle_filters' => 'Toggle filters',
'remove_filters' => 'Remove filters',
'apply' => 'Apply',
//filters language strings
'today' => 'Today',
'yesterday' => 'Yesterday',
'last_7_days' => 'Last 7 Days',
'last_30_days' => 'Last 30 Days',
'this_month' => 'This Month',
'last_month' => 'Last Month',
'custom_range' => 'Custom Range',
'weekLabel' => 'W',
// Fields
'browse_uploads' => 'Browse uploads',
'select_all' => 'Select All',
'select_files' => 'Select files',
'select_file' => 'Select file',
'clear' => 'Clear',
'page_link' => 'Page link',
'page_link_placeholder' => 'http://example.com/your-desired-page',
'internal_link' => 'Internal link',
'internal_link_placeholder' => 'Internal slug. Ex: \'admin/page\' (no quotes) for \':url\'',
'external_link' => 'External link',
'choose_file' => 'Choose file',
'new_item' => 'New Item',
'select_entry' => 'Select an entry',
'select_entries' => 'Select entries',
'upload_multiple_files_selected' => 'Files selected. After save, they will show up above.',
//Table field
'table_cant_add' => 'Cannot add new :entity',
'table_max_reached' => 'Maximum number of :max reached',
// google_map
'google_map_locate' => 'Get my location',
// File manager
'file_manager' => 'File Manager',
// InlineCreateOperation
'related_entry_created_success' => 'Related entry has been created and selected.',
'related_entry_created_error' => 'Could not create related entry.',
'inline_saving' => 'Saving...',
// returned when no translations found in select inputs
'empty_translations' => '(empty)',
// The pivot selector required validation message
'pivot_selector_required_validation_message' => 'The pivot field is required.',
];

View File

@ -0,0 +1,16 @@
<?php
// --------------------------------------------------------
// This is only a pointer file, not an actual language file
// --------------------------------------------------------
//
// If you've copied this file to your /resources/lang/vendor/backpack/
// folder, please delete it, it's no use there. You need to copy/publish the
// actual language file, from the package.
// If a langfile with the same name exists in the package, load that one
if (file_exists(__DIR__.'/../../../../../langfilemanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
return include __DIR__.'/../../../../../langfilemanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
}
return [];

16
lang/vendor/backpack/en/logmanager.php vendored Normal file
View File

@ -0,0 +1,16 @@
<?php
// --------------------------------------------------------
// This is only a pointer file, not an actual language file
// --------------------------------------------------------
//
// If you've copied this file to your /resources/lang/vendor/backpack/
// folder, please delete it, it's no use there. You need to copy/publish the
// actual language file, from the package.
// If a langfile with the same name exists in the package, load that one
if (file_exists(__DIR__.'/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
return include __DIR__.'/../../../../../logmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
}
return [];

16
lang/vendor/backpack/en/pagemanager.php vendored Normal file
View File

@ -0,0 +1,16 @@
<?php
// --------------------------------------------------------
// This is only a pointer file, not an actual language file
// --------------------------------------------------------
//
// If you've copied this file to your /resources/lang/vendor/backpack/
// folder, please delete it, it's no use there. You need to copy/publish the
// actual language file, from the package.
// If a langfile with the same name exists in the package, load that one
if (file_exists(__DIR__.'/../../../../../pagemanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
return include __DIR__.'/../../../../../pagemanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
}
return [];

View File

@ -0,0 +1,16 @@
<?php
// --------------------------------------------------------
// This is only a pointer file, not an actual language file
// --------------------------------------------------------
//
// If you've copied this file to your /resources/lang/vendor/backpack/
// folder, please delete it, it's no use there. You need to copy/publish the
// actual language file, from the package.
// If a langfile with the same name exists in the package, load that one
if (file_exists(__DIR__.'/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
return include __DIR__.'/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
}
return [];

16
lang/vendor/backpack/en/settings.php vendored Normal file
View File

@ -0,0 +1,16 @@
<?php
// --------------------------------------------------------
// This is only a pointer file, not an actual language file
// --------------------------------------------------------
//
// If you've copied this file to your /resources/lang/vendor/backpack/
// folder, please delete it, it's no use there. You need to copy/publish the
// actual language file, from the package.
// If a langfile with the same name exists in the package, load that one
if (file_exists(__DIR__.'/../../../../../settings/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
return include __DIR__.'/../../../../../settings/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
}
return [];