Prado\I18N\core\MessageFormat::setUntranslatedPS PHP Метод

setUntranslatedPS() публичный Метод

e.g. $postscript=array('[T]','[/T]'); will output "[T]Hello[/T]" if the translation for "Hello" can not be determined.
public setUntranslatedPS ( $postscript )
    function setUntranslatedPS($postscript)
    {
        if (is_array($postscript) && count($postscript) >= 2) {
            $this->postscript[0] = $postscript[0];
            $this->postscript[1] = $postscript[1];
        }
    }