yii\apidoc\helpers\ApiMarkdown::translateBlockType PHP Method

translateBlockType() protected method

Since: 2.0.5
protected translateBlockType ( $type )
    protected function translateBlockType($type)
    {
        $key = ucfirst($type) . ':';
        if (isset(static::$blockTranslations[$key])) {
            $translation = static::$blockTranslations[$key];
        } else {
            $translation = $key;
        }
        return "{$translation} ";
    }