diff --git a/addons/default/visiosoft/cats-module/resources/lang/ru/permission.php b/addons/default/visiosoft/cats-module/resources/lang/ru/permission.php index 4811752f0..1d57a93bc 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ru/permission.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ru/permission.php @@ -1,24 +1,20 @@ [ - "name" =>"категория", - "option" => [ - "read" =>"Может читать категорию? ", - "write" =>"Можно создать / редактировать категорию? ", - "delete" =>"Можете удалить категорию?" - ], - - ], - "placeholderforsearch" => [ - "name" =>"Placeholderforsearch", - "option" => [ - "read" =>"Может читать заполнитель для поиска? ", - "write" =>"Можно создать / изменить заполнитель для поиска? ", - "delete" =>"Можно удалить заполнитель для поиска?", - - ], - - ], - -]; \ No newline at end of file +return [ + 'category' => [ + 'name' => 'Category', + 'option' => [ + 'read' => 'Can read category?', + 'write' => 'Can create/edit category?', + 'delete' => 'Can delete category?', + ], + ], + 'placeholderforsearch' => [ + 'name' => 'Placeholderforsearch', + 'option' => [ + 'read' => 'Can read placeholderforsearch?', + 'write' => 'Can create/edit placeholderforsearch?', + 'delete' => 'Can delete placeholderforsearch?', + ], + ], +];