function _coder_i18n_in_install_l_without_st in Coder 6.2
Same name and namespace in other branches
- 6 includes/coder_i18n.inc \_coder_i18n_in_install_l_without_st()
1 string reference to '_coder_i18n_in_install_l_without_st'
- coder_i18n_reviews in includes/
coder_i18n.inc - Implementation of hook_reviews().
File
- includes/
coder_i18n.inc, line 207 - This include file implements coder functionality to check for Internationalization issues.
Code
function _coder_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'),
)),
);
}