23 lines
502 B
PHP
Executable File
23 lines
502 B
PHP
Executable File
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Location does not exist.',
|
|
|
|
'create' => array(
|
|
'error' => 'Location was not created, please try again.',
|
|
'success' => 'Location created successfully.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Location was not updated, please try again',
|
|
'success' => 'Location updated successfully.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'error' => 'There was an issue deleting the location. Please try again.',
|
|
'success' => 'The location was deleted successfully.'
|
|
)
|
|
|
|
);
|