edit static pages in backend
This commit is contained in:
parent
e771c4921f
commit
783ac823ba
59 changed files with 1644 additions and 761 deletions
82
resources/lang/en/labels.php
Normal file
82
resources/lang/en/labels.php
Normal file
|
@ -0,0 +1,82 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Labels Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used in labels throughout the system.
|
||||
| Regardless where it is placed, a label can be listed here so it is easily
|
||||
| found in a intuitive way.
|
||||
|
|
||||
*/
|
||||
|
||||
'general' => [
|
||||
'all' => 'All',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'custom' => 'Custom',
|
||||
'actions' => 'Actions',
|
||||
'active' => 'Active',
|
||||
'buttons' => [
|
||||
'save' => 'Save',
|
||||
'update' => 'Update',
|
||||
],
|
||||
'hide' => 'Hide',
|
||||
'inactive' => 'Inactive',
|
||||
'none' => 'None',
|
||||
'show' => 'Show',
|
||||
'toggle_navigation' => 'Toggle Navigation',
|
||||
],
|
||||
|
||||
'backend' => [
|
||||
'profile_updated' => 'Your profile has been updated.',
|
||||
'access' => [
|
||||
'roles' => [
|
||||
'create' => 'Create Role',
|
||||
'edit' => 'Edit Role',
|
||||
'management' => 'Role Management',
|
||||
|
||||
'table' => [
|
||||
'number_of_users' => 'Number of Users',
|
||||
'permissions' => 'Permissions',
|
||||
'role' => 'Role',
|
||||
'sort' => 'Sort',
|
||||
'total' => 'role total|roles total',
|
||||
],
|
||||
],
|
||||
|
||||
'permissions' => [
|
||||
'create' => 'Create Permission',
|
||||
'edit' => 'Edit Permission',
|
||||
'management' => 'Permission Management',
|
||||
|
||||
'table' => [
|
||||
'permission' => 'Permission',
|
||||
'display_name' => 'Display Name',
|
||||
'sort' => 'Sort',
|
||||
'status' => 'Status',
|
||||
'total' => 'role total|roles total',
|
||||
],
|
||||
]
|
||||
],
|
||||
|
||||
'pages' => [
|
||||
'create' => 'Create Page',
|
||||
'edit' => 'Edit Page',
|
||||
'management' => 'Page Management',
|
||||
'title' => 'Pages',
|
||||
|
||||
'table' => [
|
||||
'title' => 'Title',
|
||||
'status' => 'Status',
|
||||
'createdat' => 'Created At',
|
||||
'updatedat' => 'Updated At',
|
||||
'createdby' => 'Created By',
|
||||
'all' => 'All',
|
||||
],
|
||||
]
|
||||
]
|
||||
];
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue