service-captcha/lang/en/permissions.php
Leonid Nikitin 35c734d840
Add CaptchaToken to permissions language files
This commit adds 'CaptchaToken' key to both English and Russian versions of the permissions language files. The addition of the 'CaptchaToken' key was necessary to provide translations for tokens used in captcha creation. The lack of these labels was causing readability issues in UI.
2023-09-19 15:19:48 +06:00

19 lines
802 B
PHP

<?php declare(strict_types=1);
return [
'Role' => 'User group',
'User' => 'Users',
'CaptchaToken' => 'Tokens for creating captcha',
'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',
];