本文整理汇总了PHP中Translations::Translate方法的典型用法代码示例。如果您正苦于以下问题:PHP Translations::Translate方法的具体用法?PHP Translations::Translate怎么用?PHP Translations::Translate使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Translations
的用法示例。
在下文中一共展示了Translations::Translate方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
?>
</div><!-- /left -->
<div class="right title clearfix">
<?php
$this->widget(Constants::CURRENTLY_USED_MODULE . '.widgets.ContactsPart', array('part' => 'right'));
?>
</div><!-- /right -->
</div><!-- /wrapper -->
</div><!-- /big-block -->
<div class="big-block clearfix">
<div class="big-title">
<h2><?php
echo Translations::Translate('Feedback');
?>
</h2>
</div><!-- /big-title -->
<?php
echo $content;
?>
</div><!-- /big-block -->
<div class="footer">
<p>© <?php
echo date('Y', time());
?>
Inlux<br> All right reserved</p>
示例2:
?>
">
<img style="width: 90px; height: 40px" src="<?php
echo $capObj->GetImgUrl();
?>
" alt="kaptcha">
<input name="cap" type="text" >
</div><!-- /captcha -->
</div><!-- /feedback-data -->
<div class="feedback-message">
<textarea name="message" placeholder="Message"></textarea>
<?php
if ($error == true) {
?>
<p><?php
echo Translations::Translate('Error: Something gone wrong');
?>
</p>
<?php
}
?>
<input type="submit" value="<?php
echo Translations::Translate("Send");
?>
" alt="send">
</div><!-- /feedback-message -->
</form>
示例3:
<ul>
<li><a href="#home"><?php
echo Translations::Translate("Home");
?>
</a></li>
<li><a href="#services"><?php
echo Translations::Translate("Services");
?>
</a></li>
<li><a href="#about"><?php
echo Translations::Translate("About");
?>
</a></li>
<li><a href="#contacts"><?php
echo Translations::Translate("Contacts");
?>
</a></li>
</ul>
示例4:
<td class="td-tbl-clr" style="width: 576px;">
<input type="file" name="<?php
echo $fieldName;
?>
" class="form-control" style="width: 300px;">
</td>
<td class="td-tbl-clr action-td" style="width: 200px;">
<?php
if ($image != null) {
?>
<a href='<?php
echo 'javascript:OpenWindowWarningDel(' . $image->id . ',"/admin/panel/delpic");';
?>
'><button type="button" class="btn btn-xs btn-danger"><?php
echo Translations::Translate("Delete Image");
?>
</button></a>
<?php
}
?>
</td>
</tr>
<?php
}
?>
</table>
<?php
}