You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.7 KiB
54 lines
1.7 KiB
6 years ago
|
<?php
|
||
|
/**
|
||
|
* CodeIgniter-Aauth
|
||
|
*
|
||
|
* Aauth is a User Authorization Library for CodeIgniter 4.x, which aims to make
|
||
|
* easy some essential jobs such as login, permissions and access operations.
|
||
|
* Despite ease of use, it has also very advanced features like groupping,
|
||
|
* access management, public access etc..
|
||
|
*
|
||
|
* @package CodeIgniter-Aauth
|
||
|
* @author Magefly Team
|
||
|
* @copyright 2014-2017 Emre Akay
|
||
|
* @copyright 2018 Magefly
|
||
|
* @license https://opensource.org/licenses/MIT MIT License
|
||
|
* @link https://github.com/magefly/CodeIgniter-Aauth
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Admin language strings.
|
||
|
*
|
||
|
* Language English
|
||
|
*
|
||
|
* @package CodeIgniter-Aauth
|
||
|
*
|
||
|
* @codeCoverageIgnore
|
||
|
*/
|
||
|
return [
|
||
|
'homeHeader' => 'Admin Area',
|
||
|
'homeText' => 'Welcome to CodeIgniter-Aauth\'s Admin Area',
|
||
|
'homeBreadcrumbTitle' => 'Home',
|
||
|
|
||
|
'breadcrumbCommonNew' => 'New',
|
||
|
'breadcrumbCommonEdit' => 'Edit',
|
||
|
'breadcrumbCommonShow' => 'Show',
|
||
|
'breadcrumbCommonDelete' => 'Delete',
|
||
|
|
||
|
'usersIndexHeader' => 'Users',
|
||
|
'usersNewHeader' => 'New user',
|
||
|
'usersEditHeader' => 'Edit user',
|
||
|
'usersShowHeader' => 'Show user',
|
||
|
'usersDeleteHeader' => 'Delete user',
|
||
|
'usersBreadcrumbTitle' => 'Users',
|
||
|
'usersLabelId' => 'Id',
|
||
|
'usersLabelEmail' => 'Email address',
|
||
|
'usersLabelUsername' => 'Username',
|
||
|
'usersLabelBanned' => 'Banned',
|
||
|
'usersLabelCreatedAt' => 'Created at',
|
||
|
'usersLabelUpdatedAt' => 'Updated at',
|
||
|
'usersLabelLastIPAddress' => 'Last IP-Address',
|
||
|
'usersLabelLastActivity' => 'Last Activity',
|
||
|
'usersLabelLastLogin' => 'Last Login',
|
||
|
'usersLinkNew' => 'Create new user',
|
||
|
];
|