_coder_review_i18n_drupal_set_title_without_t()sites/all/modules/coder/coder_review/includes/coder_review_i18n.inc, line 176
<?php
function _coder_review_i18n_drupal_set_title_without_t() {
return array(
'#warning' => t('The $title argument to !drupal_set_title() should be enclosed within !t() so that it is translatable.',
array(
'!drupal_set_title' => theme('drupalapi', 'drupal_set_title'),
'!t' => theme('drupalapi', 't'),
)
),
);
}
?>