----------------------------------------
* CRM-14146: Button on contribution page should be "Confirm Contribution"
http://issues.civicrm.org/jira/browse/CRM-14146
if (!($allAreBillingModeProcessors && !$this->_values['is_pay_later'])) {
$submitButton = array(
'type' => 'upload',
- 'name' => ts('Contribute'),
+ 'name' => CRM_Utils_Array::value('is_confirm_enabled', $this->_values) ? ts('Confirm Contribution') : ts('Contribute'),
'spacing' => ' ',
'isDefault' => TRUE,
);