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