Adding english language phrases for the mode display table

This commit is contained in:
snipe
2013-11-13 05:54:57 -05:00
parent fc6e41e464
commit 92f80f979f
2 changed files with 31 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<?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.'
)
);
+9
View File
@@ -0,0 +1,9 @@
<?php
return array(
'title' => 'Asset Model Name',
'modelnumber' => 'Model No.',
'created_at' => 'Created at',
);