Status:
Answered
I realize this is a theming question, but if I want to change the word 'check' to the Canadian version of 'cheque', I see the naming convention in the ms_check.module as so:
- /**
- * Implementation of hook_ms_payment_gateway
- */
- function ms_check_ms_payment_gateway() {
- $title2 = t('Pay with a check or bank transfer.');
- $title2 .= '<br /><span style="padding-left: 5.5em;">'
- . t('<b>Includes:</b>');
- 'name' => 'Check or Bank Transfer',
- 'description' => $title2,
- 'module' => 'ms_check_dp',
- 'path' => 'ms/checkout/check',
- 'cancel_url' => '',
- 'modify_url' => '',
- 'billing_url' => '',
- 'recurring' => FALSE,
- 'cart' => TRUE,
- 'active' => variable_get('ms_check_show_gateway', TRUE),
- );
- return $gateways;
- }
I know these variables can be overridden in the template.php file, and specifically it's $title2 and ['name'] that I want to change but am not sure of the exact syntax for the template.php file. Would you be kind enough to post that here for other's reference too?
Thanks.








rajmataj,
This module will let you do it: http://drupal.org/project/stringoverrides
Sincerely,
Leighton Whiting