Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update translation string #943

Merged
merged 2 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion languages/mollie-payments-for-woocommerce-de_DE.po
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down
Loading