22 lines
514 B
PHP
22 lines
514 B
PHP
<?php
|
|
return [
|
|
'buttons' => [
|
|
'update' => 'Update',
|
|
'select' => 'Select',
|
|
'remove' => 'Remove',
|
|
'create' => 'Create',
|
|
'delete' => 'Delete',
|
|
'logout' => 'Logout',
|
|
],
|
|
'titles' => [
|
|
'title' => 'Title',
|
|
'author' => 'Author',
|
|
'created' => 'Created',
|
|
'updated' => 'Updated',
|
|
'operations' => 'Operations',
|
|
'excerpt' => 'Excerpt',
|
|
'content' => 'Content',
|
|
'featureImage' => 'Feature Image'
|
|
]
|
|
];
|