_coder_review_i18n_watchdog_with_t

Versions
mediamosa-21
_coder_review_i18n_watchdog_with_t()

Code

sites/all/modules/coder/coder_review/includes/coder_review_i18n.inc, line 187

<?php
function _coder_review_i18n_watchdog_with_t() {
  return array(
    '#warning' => t('The $message argument to !watchdog() should NOT be enclosed within !t(), so that it can be properly translated at display time.',
      array(
        '!watchdog' => theme('drupalapi', 'watchdog'),
        '!t' => theme('drupalapi', 't'),
      )
    ),
  );
}
?>