Definition

t($string, $args = 0)
coder/scripts/coder_format/coder_format.php, line 389

Description

@defgroup coder_format_stub_functions

Code

<?php
function t($string, $args = 0) {
  if (!$args) {
    return $string;
  }
  else {
    return strtr($string, $args);
  }
}
?>