For maximum customization, the Apply button on the exposed filters should have an field so it may be renamed. Ideally this should be done by clicking the Filters link which should present a field to rename the Apply button to whatever the user would like.

Comments

merlinofchaos’s picture

Status: Active » Closed (won't fix)

You can rename thsi with hook_form_alter. That'll have to do.

thelocaltourist’s picture

I was able to change it in views.module:

Begin at Line 930 in Views 6.x-2.x-dev

// @todo deal with exposed sorts

$form['submit'] = array(
'#name' => '', // prevent from showing up in $_GET.
'#type' => 'submit',
'#value' => t('Apply'), <= Change Apply to the text you prefer
);

ilw’s picture

In version 6.x-2.6 it begins at line 970.

Thanks...

traviscarden’s picture

See this forum thread for specific instructions on achieving this in your theme or with a custom module.