【发布时间】:2016-11-20 07:51:06
【问题描述】:
我正在尝试更改 Joomla 的语言!称为 DigiCom 的组件。其实我在这里不明白这一行:
<th class="text-center"><?php echo JText::_("COM_DIGICOM_PRICE_PLAN");?></th>
我猜这可能是一个参考,因为显示的文本不是 COM_DIGICOM_PRICE_PLAN。如果我是对的,你知道我在哪里可以改变它吗?
下面是部分代码:
<?php
/**
* @package DigiCom
* @author ThemeXpert http://www.themexpert.com
* @copyright Copyright (c) 2010-2015 ThemeXpert. All rights reserved.
* @license GNU General Public License version 3 or later; see LICENSE.txt
* @since 1.0.0
*/
defined('_JEXEC') or die;
JHTML::_('behavior.formvalidation');
$pg_plugin = $this->pg_plugin;
$configs = $this->configs;
$data = $this->data;
?>
<div id="digicom" class="dc dc-checkout">
<?php
$this->setLayout('cart');
echo $this->loadTemplate('steps');
?>
<h1 class="page-title"><?php echo JText::sprintf("COM_DIGICOM_CHECKOUT_PAYMENT_DETAILS_PAGE_TITLE", $pg_plugin); ?></h1>
<div class="dc-checkout-items">
<h4 class="align-center"><?php echo JText::_("COM_DIGICOM_SUMMARY_YOUR_ORDER");?></h4>
【问题讨论】: