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.
91 lines
3.5 KiB
91 lines
3.5 KiB
<?php
|
|
|
|
return [
|
|
'admin_role' => [
|
|
'name_exists' => 'The role name already exists',
|
|
'menu_error' => 'The role number parameter is incorrect'
|
|
],
|
|
'admin_user' => [
|
|
'name_exists' => 'The user account already exists',
|
|
'not_del' => 'Super management account cannot be deleted',
|
|
'not_edit' => 'Super management account cannot be edited'
|
|
],
|
|
'admin_translation' => [
|
|
'data_exists' => 'Translation configuration already exists'
|
|
],
|
|
'admin_floor' => [
|
|
'name_exists' => 'The floor name already exists'
|
|
],
|
|
'admin_vip_list' => [
|
|
'license_exists' => 'The license plate number already exists'
|
|
],
|
|
'space_attributes' => [
|
|
'attributes_exists' => 'The parking space attribute name already exists'
|
|
],
|
|
'space_type' => [
|
|
'red' => 'red',
|
|
'green' => 'green',
|
|
'yellow' => 'yellow',
|
|
'blue' => 'blue',
|
|
'purple' => 'purple',
|
|
'cyan' => 'cyan',
|
|
'white' => 'white',
|
|
'name_exists' => 'The parking space type name already exists',
|
|
'license_exists' => 'Please clear the license plate first to delete it'
|
|
],
|
|
'license_plate' => [
|
|
'number_exists' => 'The license plate number already exists',
|
|
'not_clear' => 'No license plate needs to be cleared'
|
|
],
|
|
'reservation' => [
|
|
'undetermined' => 'undetermined',
|
|
'confirmed' => 'Confirmed',
|
|
'canceled' => 'Canceled',
|
|
'yes' => 'yes',
|
|
'no' => 'No',
|
|
'fuel' => 'fuel',
|
|
'new_energy' => 'new energy'
|
|
],
|
|
'parking_space' => [
|
|
'vacant' => 'vacant',
|
|
'occupy' => 'occupy',
|
|
'high' => 'high',
|
|
'middle' => 'middle',
|
|
'land' => 'land',
|
|
'no_cars' => 'Parking space status: no cars, update: cars available',
|
|
'yes_cars' => 'Parking status updated with cars available, no cars available',
|
|
'number_update' => 'License plate number update',
|
|
'number_exists' => 'The parking number already exists'
|
|
],
|
|
'parking_information' => [
|
|
'not_default' => 'Default parking space type not set'
|
|
],
|
|
'parking_camera' => [
|
|
'number_exists' => 'The device number already exists',
|
|
'flat_garage' => 'Flat garage'
|
|
],
|
|
'parking_pattern' => [
|
|
'name_exists' => 'Activity mode already exists',
|
|
'space_exists' => 'The current mode parking number already exists',
|
|
'space_not_exists' => 'The current parking space number does not exist',
|
|
'type_not_exists' => 'The current parking space type does not exist'
|
|
],
|
|
'event_calendar' => [
|
|
'planned' => 'planned',
|
|
'running' => 'running',
|
|
'ended' => 'ended',
|
|
'disabled' => 'disabled',
|
|
'pattern_exists' => 'The current activity mode already exists',
|
|
'error_status' => 'The current activity status cannot be deleted',
|
|
'error_end' => 'The current activity status cannot be ended'
|
|
],
|
|
'notice' => [
|
|
'hint' => 'Prompt message',
|
|
'support' => 'Support Information',
|
|
'touch' => 'touch the line',
|
|
'illegal' => 'Illegal parking',
|
|
'offline' => 'Device offline',
|
|
'vip' => 'VIP',
|
|
'task' => 'Task switching'
|
|
]
|
|
];
|
|
|