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.
		
			
				
	
	
		
			19 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php declare(strict_types=1);
 | 
						|
 | 
						|
return [
 | 
						|
    'Role' => 'Группа пользователей',
 | 
						|
    'User' => 'Пользователи',
 | 
						|
    'CaptchaToken' => 'Токены для создания капчи',
 | 
						|
    'Allowed to watch' => 'Разрешено смотреть',
 | 
						|
    'Allowed to create' => 'Разрешено создать',
 | 
						|
    'Allowed to edit' => 'Разрешено редактировать',
 | 
						|
    'Allowed to delete' => 'Разрешено удалять',
 | 
						|
    'Allowed to watch all tokens' => 'Разрешено смотреть все токены',
 | 
						|
    'Allowed to view own tokens' => 'Разрешено просматривать собственные токены',
 | 
						|
    'Allowed to create tokens' => 'Разрешено создавать токены',
 | 
						|
    'Allowed to edit all tokens' => 'Разрешено редактировать все токены',
 | 
						|
    'Allowed to edit own tokens' => 'Разрешено редактировать собственные токены',
 | 
						|
    'Allowed to delete all tokens' => 'Разрешено удалять все токены',
 | 
						|
    'Allowed to delete own tokens' => 'Разрешено удалять собственные токены',
 | 
						|
];
 |