language files for category view

This commit is contained in:
snipe
2013-11-13 17:02:25 -05:00
parent e08741b104
commit b18f69330f
2 changed files with 32 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
return array(
'does_not_exist' => 'Category does not exist.',
'create' => array(
'error' => 'Category was not created, please try again.',
'success' => 'Category created successfully.'
),
'update' => array(
'error' => 'Category was not updated, please try again',
'success' => 'Category updated successfully.'
),
'delete' => array(
'error' => 'There was an issue deleting the category. Please try again.',
'success' => 'The category post was deleted successfully.'
)
);
+10
View File
@@ -0,0 +1,10 @@
<?php
return array(
'id' => 'ID',
'title' => 'Asset Category Name',
'parent' => 'Parent',
'created_at' => 'Created at',
);