--- flexifilter.components.inc 2008-02-02 22:03:59.000000000 -0500 +++ flexifilter.components_new.inc 2008-02-02 22:07:32.000000000 -0500 @@ -41,10 +41,10 @@ function flexifilter_flexifilter_compone // Simple text operations $components['flexifilter_text_replace'] = array( - 'label' => t('Simple Text Replace'), + 'label' => t('Text Replace'), 'description' => t('Does a primtive search & replace on the text.'), 'callback' => 'flexifilter_component_text_simple_replace', - 'group' => t('Text: Simple'), + 'group' => t('Text: Basic'), 'step' => 'either', ); $components['flexifilter_text_regex'] = array( @@ -62,24 +62,24 @@ function flexifilter_flexifilter_compone 'step' => 'either', ); $components['flexifilter_text_append'] = array( - 'label' => t('Simple Text Append'), + 'label' => t('Text Append'), 'description' => t('Appends text to the end.'), 'callback' => 'flexifilter_component_text_append', - 'group' => t('Text: Simple'), + 'group' => t('Text: Basic'), 'step' => 'either', ); $components['flexifilter_text_prepend'] = array( - 'label' => t('Simple Text Prepend'), + 'label' => t('Text Prepend'), 'description' => t('Prepends text to the beginning.'), 'callback' => 'flexifilter_component_text_prepend', - 'group' => t('Text: Simple'), + 'group' => t('Text: Basic'), 'step' => 'either', ); $components['flexifilter_text_substr'] = array( - 'label' => t('Simple Text Slice'), + 'label' => t('Text Slice'), 'description' => t('"Slices" a certain number of characters off either end of the text.'), 'callback' => 'flexifilter_component_text_substr', - 'group' => t('Text: Simple'), + 'group' => t('Text: Basic'), 'step' => 'either', ); $components['flexifilter_advanced_append'] = array(