コード例 #1
0
ファイル: pommo.php プロジェクト: shakatakshak/poMMo-v5-FR
 function _TP($msg, $plural, $count)
 {
     // for plurals
     global $pommo;
     if ($pommo->_escaping) {
         return $pommo->_l10n ? htmlspecialchars(PommoHelperL10n::translatePlural($msg, $plural, $count)) : htmlspecialchars($msg);
     }
     return $pommo->_l10n ? PommoHelperL10n::translatePlural($msg, $plural, $count) : $msg;
 }