1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00

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');
case self::BANCONTACT:
return ctrans('texts.bancontact');
case self::IDEAL:
return ctrans('texts.ideal');
default:
return 'Undefined.';
break;

View File

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