From 35c734d840e53b3160b442440d527d759b8acd74 Mon Sep 17 00:00:00 2001 From: Leonid Nikitin Date: Tue, 19 Sep 2023 15:19:48 +0600 Subject: [PATCH] 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. --- lang/en/permissions.php | 1 + lang/ru/permissions.php | 1 + 2 files changed, 2 insertions(+) diff --git a/lang/en/permissions.php b/lang/en/permissions.php index 2029569..df5b906 100644 --- a/lang/en/permissions.php +++ b/lang/en/permissions.php @@ -3,6 +3,7 @@ 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', diff --git a/lang/ru/permissions.php b/lang/ru/permissions.php index a64c97f..ccd21bb 100644 --- a/lang/ru/permissions.php +++ b/lang/ru/permissions.php @@ -3,6 +3,7 @@ return [ 'Role' => 'Группа пользователей', 'User' => 'Пользователи', + 'CaptchaToken' => 'Токены для создания капчи', 'Allowed to watch' => 'Разрешено смотреть', 'Allowed to create' => 'Разрешено создать', 'Allowed to edit' => 'Разрешено редактировать',