Gordonn
September 20, 2018, 2:51pm
1
Hi Gyus, I would need your help. I can’t find following phrase in translation file -
Bei Auswahl der Zahlungsart PayPal werden Sie im nächsten Schritt zu PayPal weitergeleitet. Dort können Sie sich in Ihr PayPal-Konto einloggen oder ein neues PayPal-Konto eröffnen und die Zahlung autorisieren. Sobald Sie Ihre Daten für die Zahlung bestätigt haben, werden Sie automatisch wieder zurück in den Shop geleitet, um die Bestellung abzuschließen.
Erst dann wird die Zahlung ausgeführt.
Where can I find it and translate to my language?
Many thanks!
this is payment method description, here you can get english version:
\OxidEsales\Eshop\Core\DatabaseProvider::getDb()->execute($query);
}
/**
* Add PayPal payment method set EN and DE long descriptions
*/
public static function addPaymentMethod()
{
$paymentDescriptions = array(
'en' => '<div>When selecting this payment method you are being redirected to PayPal where you can login into your account or open a new account. In PayPal you are able to authorize the payment. As soon you have authorized the payment, you are again redirected to our shop where you can confirm your order.</div> <div style="margin-top: 5px">Only after confirming the order, transfer of money takes place.</div>',
'de' => '<div>Bei Auswahl der Zahlungsart PayPal werden Sie im nächsten Schritt zu PayPal weitergeleitet. Dort können Sie sich in Ihr PayPal-Konto einloggen oder ein neues PayPal-Konto eröffnen und die Zahlung autorisieren. Sobald Sie Ihre Daten für die Zahlung bestätigt haben, werden Sie automatisch wieder zurück in den Shop geleitet, um die Bestellung abzuschließen.</div> <div style="margin-top: 5px">Erst dann wird die Zahlung ausgeführt.</div>'
);
$payment = oxNew(\OxidEsales\Eshop\Application\Model\Payment::class);
if (!$payment->load('oxidpaypal')) {
$payment->setId('oxidpaypal');
$payment->oxpayments__oxactive = new \OxidEsales\Eshop\Core\Field(1);
$payment->oxpayments__oxdesc = new \OxidEsales\Eshop\Core\Field('PayPal');
$payment->oxpayments__oxaddsum = new \OxidEsales\Eshop\Core\Field(0);
$payment->oxpayments__oxaddsumtype = new \OxidEsales\Eshop\Core\Field('abs');