18 lines
749 B
PHP
18 lines
749 B
PHP
<?php declare(strict_types=1);
|
|
|
|
return [
|
|
'Role' => 'User group',
|
|
'User' => 'Users',
|
|
'Allowed to watch' => 'Allowed to watch',
|
|
'Allowed to create' => 'Allowed to create',
|
|
'Allowed to edit' => 'Allowed to edit',
|
|
'Allowed to delete' => 'Allowed to delete',
|
|
'Allowed to watch all tokens' => 'Allowed to watch all tokens',
|
|
'Allowed to view own tokens' => 'Allowed to view own tokens',
|
|
'Allowed to create tokens' => 'Allowed to create tokens',
|
|
'Allowed to edit all tokens' => 'Allowed to edit all tokens',
|
|
'Allowed to edit own tokens' => 'Allowed to edit own tokens',
|
|
'Allowed to delete own tokens' => 'Allowed to delete own tokens',
|
|
'Allowed to delete all tokens' => 'Allowed to delete all tokens',
|
|
];
|