diff --git a/languages/mollie-payments-for-woocommerce-de_DE.po b/languages/mollie-payments-for-woocommerce-de_DE.po index 1e9cae90..3d750c20 100644 --- a/languages/mollie-payments-for-woocommerce-de_DE.po +++ b/languages/mollie-payments-for-woocommerce-de_DE.po @@ -1235,7 +1235,7 @@ msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten." #: src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:25 msgid "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant." -msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten. Sie erhalten eine E-Mail, sobald wir eine Bestätigung der Bank oder des Händlers erhalten." +msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten. Du erhältst eine E-Mail, sobald wir eine Bestätigung der Bank oder des Händlers erhalten." #. translators: Placeholder 1: payment method #: src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:33 diff --git a/src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php b/src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php index e1a47949..1f3399af 100644 --- a/src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php +++ b/src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php @@ -17,14 +17,14 @@ public function execute( if ($admin_instructions) { // Message to admin return __( - 'We have not received a definite payment status.', - 'mollie-payments-for-woocommerce' + "We have not received a definite payment status.", + "mollie-payments-for-woocommerce" ); } else { // Message to customer return __( - 'We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant.', - 'mollie-payments-for-woocommerce' + "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant.", + "mollie-payments-for-woocommerce" ); } } elseif ($payment->isPaid()) {