doudou8783 2012-02-24 17:43
浏览 104
已采纳

用'gettext'回显字符串时有没有办法隐藏html标签?

I wonder if there is a way to hide html tags when echoing a string with php gettext function.

This is what I got and I want to strip html tags from string before putting them to .po file.

<?=_('You must be logged in to add a link.<br />
If you already have a account, 
<a href="#" name="Log In">click here</a> to log in or 
<a href="#" name="Register">join us</a> now!'); ?>

This puts string to .po file like this:

You must be logged in to add a link.<br />  If you already have a account, <a href="#" name="Log In">click here</a> to log in or <a href="#" name="Register">join us</a> now!

Translations of my website will be publicly editable (with Pootle) so I wonder is there any way to hide html tags from public? is there anything like this:

You must be logged in to add a link. If you already have a account, click here to log in or join us now!
  • 写回答

1条回答 默认 最新

  • dongyong3590 2012-02-24 17:54
    关注

    There is no real way to hide them and be able to reinsert them after the translation, you could use character position map, but after the translation the character length to the html tags would change.

    If you absolutely want to avoid html tags what you could do is to leave the breaks in and convert them to new lines if needed for transalators then use individual translations for text inside html tags for example;

    <?=_('You must be logged in to add a link.<br /> If you already have a account,') ?>
    <a href="#" name="Log In"><?= _('click here') ?></a> <?= _('to log in or') ?>
    

    '); ?>

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿