Hi,
just add a line to your language file:
$TEXT['SUBMIT'] = ''";
and the button will be translated in depency of the
$TEXT['SEARCH'] = 'Suche';
entry in the language file.
An other solution is to hardcode it in the index.php of your template:
<input type="submit" name="submit" value="<?php if(isset($TEXT['SUBMIT'])) { echo $TEXT['SEARCH']; } else { echo 'Search'; } ?>" />
Bernd