You are here

function _coder_review_i18n_in_install_l_without_st in Coder 7

1 string reference to '_coder_review_i18n_in_install_l_without_st'
coder_review_i18n_reviews in coder_review/includes/coder_review_i18n.inc
Implements hook_reviews().

File

coder_review/includes/coder_review_i18n.inc, line 108
This include file implements coder functionality to check for Internationalization issues.

Code

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', array(
        'function' => 'l',
      )),
      '!st' => theme('drupalapi', array(
        'function' => 'st',
      )),
    )),
  );
}