當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Translations::Translate方法代碼示例

本文整理匯總了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>&copy; <?php 
echo date('Y', time());
?>
 Inlux<br> All right reserved</p>
開發者ID:ruslankus,項目名稱:inlux-transfer,代碼行數:31,代碼來源:main_layout.php

示例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>
開發者ID:ruslankus,項目名稱:inlux-transfer,代碼行數:31,代碼來源:contacts_form.php

示例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>
開發者ID:ruslankus,項目名稱:inlux-transfer,代碼行數:18,代碼來源:top_menu.php

示例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 
}
開發者ID:ruslankus,項目名稱:inlux-transfer,代碼行數:30,代碼來源:imageSelectForm.php


注:本文中的Translations::Translate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。