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
Comment #1
merlinofchaos commentedYou can rename thsi with hook_form_alter. That'll have to do.
Comment #2
thelocaltourist commentedI 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
);
Comment #3
ilw commentedIn version 6.x-2.6 it begins at line 970.
Thanks...
Comment #4
traviscarden commentedSee this forum thread for specific instructions on achieving this in your theme or with a custom module.