ITransact payment driver was using echo i18n calls even though

it had real i18n data to pull from.
This commit is contained in:
Colin Kuskie 2008-07-11 17:19:05 +00:00
parent b634ec2147
commit 4720a6a217
2 changed files with 9 additions and 8 deletions

View file

@ -1,4 +1,5 @@
7.5.17 7.5.17
- fixed: Payment Methods Hover Help Incomplete
7.5.16 7.5.16
- Created a migration from 7.4.40 directly to 7.5.16. - Created a migration from 7.4.40 directly to 7.5.16.

View file

@ -354,23 +354,23 @@ sub definition {
%fields = ( %fields = (
vendorId => { vendorId => {
fieldType => 'text', fieldType => 'text',
label => $i18n->echo('vendorId'), label => $i18n->get('vendorId'),
hoverHelp => $i18n->echo('vendorId help'), hoverHelp => $i18n->get('vendorId help'),
}, },
password => { password => {
fieldType => 'password', fieldType => 'password',
label => $i18n->echo('password'), label => $i18n->get('password'),
hoverHelp => $i18n->echo('password help'), hoverHelp => $i18n->get('password help'),
}, },
useCVV2 => { useCVV2 => {
fieldType => 'yesNo', fieldType => 'yesNo',
label => $i18n->echo('use cvv2'), label => $i18n->get('use cvv2'),
hoverHelp => $i18n->echo('use cvv2 help'), hoverHelp => $i18n->get('use cvv2 help'),
}, },
emailMessage => { emailMessage => {
fieldType => 'textarea', fieldType => 'textarea',
label => $i18n->echo('emailMessage'), label => $i18n->get('emailMessage'),
hoverHelp => $i18n->echo('emailMessage help'), hoverHelp => $i18n->get('emailMessage help'),
}, },
# readonly stuff from old plugin here? # readonly stuff from old plugin here?
); );