我已經創建了一個覆蓋AdminProductController.php並創建一個新的bulk_action的模塊。PrestaShop:翻譯overrided控制器
<?php
class AdminProductsController extends AdminProductsControllerCore
{
public function __construct()
{
parent::__construct();
$this->bulk_actions['setprice'] = array(
'text' => $this->l('Set a price for selected'),
'icon' => 'icon-price',
);
}
}
現在我需要翻譯動作文本並將該翻譯與模塊分發。 問題是我看不到模塊翻譯中的原文,而是在後臺翻譯中可見。
那麼,有沒有辦法將這個字符串添加到模塊翻譯而不是後臺翻譯? 。
到目前爲止它沒有幫助。該短語從後臺選項卡中消失,但未出現在模塊選項卡中 – 1099511627776