Prado\I18N\core\MessageSource::append PHP 메소드

append() 공개 메소드

Add a untranslated message to the source. Need to call save() to save the messages to source.
public append ( $message )
    public function append($message)
    {
        if (!in_array($message, $this->untranslated)) {
            $this->untranslated[] = $message;
        }
    }