_coder_review_i18n_in_install_l_without_st()sites/all/modules/coder/coder_review/includes/coder_review_i18n.inc, line 108
<?php
function _coder_review_i18n_in_install_l_without_st() {
return array(
'#warning' => t('The $text argument to !l() should be enclosed within !st() so that it is translatable from within the install.',
array(
'!l' => theme('drupalapi', 'l'),
'!st' => theme('drupalapi', 'st'),
)
),
);
}
?>