I would like to change the word 'Discover' to 'Diners Club' in the Magento checkout. They are selections for the saved credit card payment gateway.
in Mage Payment etc config.xml
<DI>
<code>DI</code>
<name>Discover</name>
<order>30</order>
</DI>
change name here clear cache and check.
Or in your app/etc/local.xml add this in your config node and change Discover to appropriate value
</global>
<payment>
<cc>
<types>
<DI>
<code>DI</code>
<name>Discover</name>
<order>30</order>
</DI>
</types>
</cc>
</payment>
</global>