私はprestashop用の新しいモジュールを作成しています。 私はPrestaShopのガイドを使用していますが、私はこれを設定しようとすると:
class MiModulo extends Module{
public function __construct(){
$this->name = "mimodulo";
$this->tab = "front_office_features";
$this->version = "1.0.0";
$this->author = "Ivan Javier Barranco Gavilan";
$this->need_instance = 0;
$this->ps_versions_compliancy = array("min" => "1.6", "max" => _PS_VERSION_);
$this->bootstrap = true;
parent::__construct();
$this->displayName = $this->l("Mi Modulo");
$this->description = $this->l("Descripcion del modulo");
$this->confirmUninstall = $this->l("¿Esta seguro de que desea desinstalar el modulo?");
if(!Configuration::get("mimodulo"))
$this->warning = $this->l("Sin nombre proporcionado");
}
}
::リットルを()、それをPrestaShopのによると、テキスト文字列を変換する機能があるが、それはこれらの翻訳を導入すべきではないところ。
$ this-> l()は常に空の文字列を返します。
スペイン語でprestashopがインストールされています。 どのように翻訳を正しく行う必要がありますか?ありがとう!
':: L()'は何ですか?私たちはより多くの情報をお願いします。 – DevDonkey
沖、私の質問を更新する –