get_t()
drupal/includes/bootstrap.inc, line 1199
Return the name of the localisation function. Use in code that needs to run both during installation and normal operation.
function get_t() {
static $t;
if (is_null($t)) {
$t = function_exists('install_main') ? 'st' : 't';
}
return $t;
}