You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
3.5 KiB
85 lines
3.5 KiB
<?php
|
|
|
|
return [
|
|
'get_user_info_failed' => 'Failed to obtain user information',
|
|
'get_user_info_list_failed' => 'Failed to obtain user information',
|
|
'admin_user' => [
|
|
'create_failed' => 'Failed to create user',
|
|
'update_failed' => 'Failed to update user',
|
|
'destroy_failed' => 'Failed to delete user'
|
|
],
|
|
'admin_role' => [
|
|
'create_failed' => 'Failed to create role',
|
|
'update_failed' => 'Failed to update role',
|
|
'destroy_failed' => 'Failed to delete role'
|
|
],
|
|
'update_admin_config_failed' => 'Failed to update configuration',
|
|
'get_data_failed' => 'Failed to retrieve data',
|
|
'exception_handler' => [
|
|
'login' => 'Please log in first',
|
|
'resource' => 'Resource does not exist',
|
|
'api' => 'Interface does not exist',
|
|
'role' => 'No operation permission',
|
|
'frequent' => 'Requests are too frequent, please try again later',
|
|
'system' => 'System error'
|
|
],
|
|
'admin_translation' => [
|
|
'create_failed' => 'Translation creation failed',
|
|
'update_failed' => 'Updating translation failed',
|
|
'destroy_failed' => 'Delete translation failed'
|
|
],
|
|
'admin_floor' => [
|
|
'create_failed' => 'Failed to create floor',
|
|
'update_failed' => 'Failed to update floor',
|
|
'destroy_failed' => 'Failed to delete floor'
|
|
],
|
|
'upload' => [
|
|
'error' => 'Upload failed'
|
|
],
|
|
'admin_vip_list' => [
|
|
'create_failed' => 'Failed to create VIP list',
|
|
'update_failed' => 'Failed to update VIP list',
|
|
'destroy_failed' => 'Failed to delete VIP list',
|
|
'import_failed' => 'Upload failed'
|
|
],
|
|
'space_attributes' => [
|
|
'create_failed' => 'Failed to create parking space attributes',
|
|
'update_failed' => 'Failed to update parking space attributes',
|
|
'destroy_failed' => 'Failed to delete parking space attribute'
|
|
],
|
|
'space_type' => [
|
|
'create_failed' => 'Failed to create parking space type',
|
|
'update_failed' => 'Failed to update parking space type',
|
|
'destroy_failed' => 'Failed to delete parking space type'
|
|
],
|
|
'license_plate' => [
|
|
'create_failed' => 'Failed to create license plate number',
|
|
'update_failed' => 'Failed to update license plate number',
|
|
'destroy_failed' => 'Failed to delete license plate number',
|
|
'clear_failed' => 'Failed to clear license plate number'
|
|
],
|
|
'parking_space' => [
|
|
'update_type_failed' => 'Failed to modify parking space type',
|
|
'update_attr_failed' => 'Failed to modify parking space attributes'
|
|
],
|
|
'parking_information' => [
|
|
'create_failed' => 'Failed to add'
|
|
],
|
|
'parking_camera' => [
|
|
'create_failed' => 'Failed to add',
|
|
'update_failed' => 'Update failed',
|
|
'destroy_failed' => 'Deletion failed'
|
|
],
|
|
'parking_pattern' => [
|
|
'create_failed' => 'Failed to add',
|
|
'update_failed' => 'Update failed',
|
|
'destroy_failed' => 'Deletion failed'
|
|
],
|
|
'event_calendar' => [
|
|
'create_failed' => 'Failed to add activity',
|
|
'update_failed' => 'Update activity failed',
|
|
'destroy_failed' => 'Delete activity failed',
|
|
'end_failed' => 'Ending activity failed',
|
|
'end_succeeded' => 'Successfully ended the event'
|
|
]
|
|
];
|
|
|