Prado\I18N\core\MessageSource::append PHP Method

append() public method

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;
        }
    }