Add iDEAL to GatewayType

This commit is contained in:
Benjamin Beganović 2021-10-04 16:11:39 +02:00
parent c461212d8e
commit 225de1592c
2 changed files with 3 additions and 1 deletions

View File

@ -64,7 +64,8 @@ class GatewayType extends StaticModel
return ctrans('texts.kbc_cbc'); return ctrans('texts.kbc_cbc');
case self::BANCONTACT: case self::BANCONTACT:
return ctrans('texts.bancontact'); return ctrans('texts.bancontact');
case self::IDEAL:
return ctrans('texts.ideal');
default: default:
return 'Undefined.'; return 'Undefined.';
break; break;

View File

@ -4316,6 +4316,7 @@ $LANG = array(
'payment_method_cannot_be_preauthorized' => 'This payment method cannot be preauthorized.', 'payment_method_cannot_be_preauthorized' => 'This payment method cannot be preauthorized.',
'kbc_cbc' => 'KBC/CBC', 'kbc_cbc' => 'KBC/CBC',
'bancontact' => 'Bancontact', 'bancontact' => 'Bancontact',
'ideal' => 'iDEAL',
); );
return $LANG; return $LANG;