0
我想在<strong>
標籤中包裝一個詞。在t()
調用中正確地做到這一點是正確的,還是我應該以其他方式做到這一點?Drupal:錯誤地使用t()?
$help = '<p>' . t("Does this sample data look right for node type %node_type? If not, use your browser's <strong>back</strong> button to fix it on the previous page.", array('%node_type' => $_SESSION[NODE_TYPE_KEY])) . '</p>';
另外,剛剛將變量直接放入t()
這樣呢?
foreach ($term_info['term_fields'] as $vocab) {
$options[$vocab] = t($vocab); // TODO: incorrect use of t()?
}