diff --git a/Model/Config/Source/ShowCustomFields.php b/Model/Config/Source/ShowCustomFields.php
new file mode 100644
index 00000000..a245a604
--- /dev/null
+++ b/Model/Config/Source/ShowCustomFields.php
@@ -0,0 +1,38 @@
+toArray();
+
+ $arrResult = [];
+ foreach ($arrOptions as $value => $label) {
+ $arrResult[] = ['value' => $value, 'label' => $label];
+ }
+ return $arrResult;
+ }
+
+ /**
+ * Get options in "key-value" format
+ *
+ * @return array
+ */
+ public function toArray()
+ {
+ return [
+ '0' => __('No'),
+ '1' => __('Optional'),
+ '2' => __('Required'),
+ ];
+ }
+}
diff --git a/Model/Config/Source/ShowDobOptions.php b/Model/Config/Source/ShowDobOptions.php
index c592b591..f84506f1 100644
--- a/Model/Config/Source/ShowDobOptions.php
+++ b/Model/Config/Source/ShowDobOptions.php
@@ -30,9 +30,10 @@ public function toOptionArray()
public function toArray()
{
return [
- '0' => __('No'),
- '1' => __('Optional'),
- '2' => __('Required'),
+ '0' => __('Don\'t show at payment method.'),
+ '1' => __('Show DOB field at method, but leave it optional.'),
+ '2' => __('Show DOB field at method, make it required.'),
+ '3' => __('Don\'t show DOB field at method, but set as required. Use DOB field from checkout instead.'),
];
}
}
diff --git a/Model/Config/Source/ShowKvkOptions.php b/Model/Config/Source/ShowKvkOptions.php
index fa2c204c..63942ccc 100644
--- a/Model/Config/Source/ShowKvkOptions.php
+++ b/Model/Config/Source/ShowKvkOptions.php
@@ -30,9 +30,10 @@ public function toOptionArray()
public function toArray()
{
return [
- '0' => __('No'),
- '1' => __('Optional'),
- '2' => __('Required'),
+ '0' => __('Don\'t show at payment method.'),
+ '1' => __('Show COC field at method, but leave it optional.'),
+ '2' => __('Show COC field at method, make it required.'),
+ '3' => __('Don\'t show COC field at method, but set as required. Use COC field from checkout instead.'),
];
}
}
diff --git a/Model/Config/Source/ShowNonPrivate.php b/Model/Config/Source/ShowNonPrivate.php
index 1617c198..04c96aa8 100644
--- a/Model/Config/Source/ShowNonPrivate.php
+++ b/Model/Config/Source/ShowNonPrivate.php
@@ -30,9 +30,10 @@ public function toOptionArray()
public function toArray()
{
return [
- '0' => __('No'),
- '1' => __('Optional for business customers'),
- '2' => __('Required for business customers'),
+ '0' => __('Don\'t show at payment method.'),
+ '1' => __('Show VAT field at method, but leave it optional.'),
+ '2' => __('Show VAT field at method, make it required.'),
+ '3' => __('Don\'t show VAT field at method, but set as required. Use VAT field from checkout instead.'),
];
}
}
diff --git a/Plugin/Checkout/LayoutProcessor.php b/Plugin/Checkout/LayoutProcessor.php
new file mode 100644
index 00000000..7864d7ca
--- /dev/null
+++ b/Plugin/Checkout/LayoutProcessor.php
@@ -0,0 +1,137 @@
+scopeConfig = $context->getScopeConfig();
+ $this->checkoutSession = $checkoutSession;
+ $this->customerAddressFactory = $customerAddressFactory;
+ }
+
+ /**
+ * @param \Magento\Checkout\Block\Checkout\LayoutProcessor $subject
+ * @param array $jsLayout
+ * @return array
+ */
+ public function afterProcess(\Magento\Checkout\Block\Checkout\LayoutProcessor $subject, array $jsLayout)
+ {
+ $showDOB = $this->scopeConfig->getValue('payment/paynl/show_custom_field_dob');
+ $showKVK = $this->scopeConfig->getValue('payment/paynl/show_custom_field_kvk');
+ $showVAT = $this->scopeConfig->getValue('payment/paynl/show_custom_field_vat');
+
+ // Date of Birth
+ if ($showDOB > 0) {
+ $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['paynl_dob'] = $this->createCustomField('paynl_dob', 'date', ' Date of birth', '', 501, ($showDOB == 2), 'shippingAddress'); // phpcs:ignore
+ }
+
+ // COC number
+ if ($showKVK > 0) {
+ $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['paynl_coc_number'] = $this->createCustomField('paynl_coc_number', 'input', 'COC number', '', 502, ($showKVK == 2), 'shippingAddress'); // phpcs:ignore
+ }
+
+ // VAT number
+ if ($showVAT > 0) {
+ $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['paynl_vat_number'] = $this->createCustomField('paynl_vat_number', 'input', 'VAT number', '', 503, ($showVAT == 2), 'shippingAddress'); // phpcs:ignore
+ }
+
+ // Billing Address
+ $configuration = $jsLayout['components']['checkout']['children']['steps']['children']['billing-step']['children']['payment']['children']['payments-list']['children'];
+ foreach ($configuration as $paymentGroup => $groupConfig) {
+ if ($showDOB > 0) {
+ $jsLayout['components']['checkout']['children']['steps']['children']['billing-step']['children']['payment']['children']['payments-list']['children'][$paymentGroup]['children']['form-fields']['children']['paynl_dob'] = $this->createCustomField('paynl_dob', 'date', ' Date of birth', '', 501, ($showDOB == 2), 'billingAddress'); // phpcs:ignore
+ }
+ if ($showKVK > 0) {
+ $jsLayout['components']['checkout']['children']['steps']['children']['billing-step']['children']['payment']['children']['payments-list']['children'][$paymentGroup]['children']['form-fields']['children']['paynl_coc_number'] = $this->createCustomField('paynl_coc_number', 'input', 'COC number', '', 502, ($showKVK == 2), 'billingAddress'); // phpcs:ignore
+ }
+ if ($showVAT > 0) {
+ $jsLayout['components']['checkout']['children']['steps']['children']['billing-step']['children']['payment']['children']['payments-list']['children'][$paymentGroup]['children']['form-fields']['children']['paynl_vat_number'] = $this->createCustomField('paynl_vat_number', 'input', 'VAT number', '', 503, ($showVAT == 2), 'billingAddress'); // phpcs:ignore
+ }
+ }
+
+ return $jsLayout;
+ }
+
+ /**
+ * @param string $id
+ * @param string $type
+ * @param string $name
+ * @param string $tooltip
+ * @param integer $sort_order
+ * @param boolean $required
+ * @param string $adressType
+ * @return array
+ */
+ public function createCustomField($id, $type, $name, $tooltip, $sort_order, $required, $adressType)
+ {
+ switch ($type) {
+ case 'date':
+ $elementTmpl = 'ui/form/element/date';
+ break;
+ default:
+ $elementTmpl = 'ui/form/element/input';
+ break;
+ }
+
+ $customField = [
+ 'component' => 'Magento_Ui/js/form/element/abstract',
+ 'config' => [
+ 'customScope' => $adressType . '.custom_attributes',
+ 'template' => 'ui/form/field',
+ 'elementTmpl' => $elementTmpl,
+ 'options' => [],
+ ],
+ 'dataScope' => $adressType . '.custom_attributes.' . $id,
+ 'label' => $name,
+ 'provider' => 'checkoutProvider',
+ 'sortOrder' => $sort_order,
+ 'validation' => [
+ 'required-entry' => $required,
+ ],
+ 'options' => [],
+ 'filterBy' => null,
+ 'customEntry' => null,
+ 'visible' => true,
+ 'value' => '',
+ ];
+
+ if (!empty($tooltip)) {
+ $customField['config']['tooltip']['description'] = $tooltip;
+ }
+
+ return $customField;
+ }
+}
diff --git a/etc/adminhtml/paymentmethods/afterpay.xml b/etc/adminhtml/paymentmethods/afterpay.xml
index ff4757e2..ff397e75 100644
--- a/etc/adminhtml/paymentmethods/afterpay.xml
+++ b/etc/adminhtml/paymentmethods/afterpay.xml
@@ -113,7 +113,7 @@
1payment/paynl_payment_afterpay/showkvk
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.
@@ -122,7 +122,7 @@
1payment/paynl_payment_afterpay/showvat
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.
@@ -131,7 +131,7 @@
1payment/paynl_payment_afterpay/showdob
-
+ When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.
diff --git a/etc/adminhtml/paymentmethods/afterpay_international.xml b/etc/adminhtml/paymentmethods/afterpay_international.xml
index 4eb491f9..d8c2de7e 100644
--- a/etc/adminhtml/paymentmethods/afterpay_international.xml
+++ b/etc/adminhtml/paymentmethods/afterpay_international.xml
@@ -113,7 +113,7 @@
1payment/paynl_payment_afterpay_international/showkvk
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.
@@ -122,7 +122,7 @@
1payment/paynl_payment_afterpay_international/showvat
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.
@@ -131,7 +131,7 @@
1payment/paynl_payment_afterpay_international/showdob
-
+ When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.
diff --git a/etc/adminhtml/paymentmethods/biller.xml b/etc/adminhtml/paymentmethods/biller.xml
index 19c6f411..4e482a3e 100644
--- a/etc/adminhtml/paymentmethods/biller.xml
+++ b/etc/adminhtml/paymentmethods/biller.xml
@@ -11,7 +11,7 @@
- Paynl\Payment\Model\Config\Source\ShowKvkOptions
+ Paynl\Payment\Model\Config\Source\ShowCustomFields1
@@ -25,7 +25,7 @@
1payment/paynl_payment_biller/showkvk
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.
@@ -34,7 +34,7 @@
1payment/paynl_payment_biller/showvat
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.
@@ -43,7 +43,7 @@
1payment/paynl_payment_biller/showdob
-
+ When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.
diff --git a/etc/adminhtml/paymentmethods/billink.xml b/etc/adminhtml/paymentmethods/billink.xml
index af266294..aaef9728 100644
--- a/etc/adminhtml/paymentmethods/billink.xml
+++ b/etc/adminhtml/paymentmethods/billink.xml
@@ -16,7 +16,7 @@
1payment/paynl_payment_billink/showkvk
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.
@@ -25,7 +25,7 @@
1payment/paynl_payment_billink/showvat
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.
diff --git a/etc/adminhtml/paymentmethods/capayable_gespreid.xml b/etc/adminhtml/paymentmethods/capayable_gespreid.xml
index 77d50058..6ffecce5 100644
--- a/etc/adminhtml/paymentmethods/capayable_gespreid.xml
+++ b/etc/adminhtml/paymentmethods/capayable_gespreid.xml
@@ -78,7 +78,7 @@
1payment/paynl_payment_capayable_gespreid/showkvk
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.
@@ -87,7 +87,7 @@
1payment/paynl_payment_capayable_gespreid/showvat
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.
@@ -96,7 +96,7 @@
1payment/paynl_payment_capayable_gespreid/showdob
-
+ When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.
diff --git a/etc/adminhtml/paymentmethods/in3business.xml b/etc/adminhtml/paymentmethods/in3business.xml
index b36e6e00..2338d06f 100644
--- a/etc/adminhtml/paymentmethods/in3business.xml
+++ b/etc/adminhtml/paymentmethods/in3business.xml
@@ -78,7 +78,7 @@
1payment/paynl_payment_in3business/showkvk
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.
@@ -87,7 +87,7 @@
1payment/paynl_payment_in3business/showvat
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.
@@ -96,7 +96,7 @@
1payment/paynl_payment_in3business/showdob
-
+ When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.
diff --git a/etc/adminhtml/paymentmethods/klarna.xml b/etc/adminhtml/paymentmethods/klarna.xml
index d3e901d9..809f3dbe 100644
--- a/etc/adminhtml/paymentmethods/klarna.xml
+++ b/etc/adminhtml/paymentmethods/klarna.xml
@@ -78,7 +78,7 @@
1payment/paynl_payment_klarna/showkvk
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.
@@ -87,7 +87,7 @@
1payment/paynl_payment_klarna/showvat
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.
@@ -96,7 +96,7 @@
1payment/paynl_payment_klarna/showdob
-
+ When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.
diff --git a/etc/adminhtml/paymentmethods/klarnakp.xml b/etc/adminhtml/paymentmethods/klarnakp.xml
index 217bbd71..309a3bff 100644
--- a/etc/adminhtml/paymentmethods/klarnakp.xml
+++ b/etc/adminhtml/paymentmethods/klarnakp.xml
@@ -78,7 +78,7 @@
1payment/paynl_payment_klarnakp/showkvk
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.
@@ -87,7 +87,7 @@
1payment/paynl_payment_klarnakp/showvat
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.
@@ -96,7 +96,7 @@
1payment/paynl_payment_klarnakp/showdob
-
+ When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.
diff --git a/etc/adminhtml/paymentmethods/spraypay.xml b/etc/adminhtml/paymentmethods/spraypay.xml
index 06c2601f..6105325e 100644
--- a/etc/adminhtml/paymentmethods/spraypay.xml
+++ b/etc/adminhtml/paymentmethods/spraypay.xml
@@ -78,7 +78,7 @@
1payment/paynl_payment_spraypay/showkvk
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.
@@ -87,7 +87,7 @@
1payment/paynl_payment_spraypay/showvat
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.
@@ -96,7 +96,7 @@
1payment/paynl_payment_spraypay/showdob
-
+ When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.
diff --git a/etc/adminhtml/paymentmethods/yourgift.xml b/etc/adminhtml/paymentmethods/yourgift.xml
index fc20b38f..c93174df 100644
--- a/etc/adminhtml/paymentmethods/yourgift.xml
+++ b/etc/adminhtml/paymentmethods/yourgift.xml
@@ -78,7 +78,7 @@
1payment/paynl_payment_yourgift/showkvk
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.
@@ -87,7 +87,7 @@
1payment/paynl_payment_yourgift/showvat
-
+ When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.
@@ -96,7 +96,7 @@
1payment/paynl_payment_yourgift/showdob
-
+ When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.
diff --git a/etc/adminhtml/system.xml b/etc/adminhtml/system.xml
index 36bfd512..2e13139b 100755
--- a/etc/adminhtml/system.xml
+++ b/etc/adminhtml/system.xml
@@ -109,6 +109,33 @@ On - via Sherpa - Capture automatically via Sherpa.
payment/paynl/follow_payment_methodAlthough an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.
+
+
+ Paynl\Payment\Model\Config\Source\ShowCustomFields
+
+ 1
+
+ payment/paynl/show_custom_field_dob
+ When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.
+
+
+
+ Paynl\Payment\Model\Config\Source\ShowCustomFields
+
+ 1
+
+ payment/paynl/show_custom_field_kvk
+ When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.
+
+
+
+ Paynl\Payment\Model\Config\Source\ShowCustomFields
+
+ 1
+
+ payment/paynl/show_custom_field_vat
+ When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.
+
@@ -158,7 +185,7 @@ On - via Sherpa - Capture automatically via Sherpa.
- When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.
+ When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.Magento\Config\Model\Config\Source\Yesnopayment/paynl/always_base_currency
diff --git a/etc/frontend/di.xml b/etc/frontend/di.xml
index a7265f7f..471e126c 100644
--- a/etc/frontend/di.xml
+++ b/etc/frontend/di.xml
@@ -9,4 +9,7 @@
+
+
+
diff --git a/i18n/de_AT.csv b/i18n/de_AT.csv
index 95d74622..f4ba81b3 100644
--- a/i18n/de_AT.csv
+++ b/i18n/de_AT.csv
@@ -172,6 +172,20 @@
"Follow payment method","Follow payment method"
"This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected","Dadurch wird sichergestellt, dass die Bestellung mit der tatsächlichen Zahlungsmethode aktualisiert wird, die zum Abschluss der Bestellung verwendet wurde. Diese kann von der ursprünglich gewählten Zahlungsart abweichen"
"PAY.: Updated payment method from %1 to %2","PAY.: Zahlungsmethode geändert von %1 bis %2"
+"Don't show at payment method.":"Bei Zahlungsmethode nicht anzeigen."
+"Show DOB field at method, but leave it optional.":"Zeigen Sie das Feld Geburtsdatum bei der Methode an, aber lassen Sie es optional."
+"Show DOB field at method, make it required.":"Zeigen Sie das Feld Geburtsdatum bei der Methode an, machen Sie es erforderlich."
+"Don't show DOB field at method, but set as required. Use DOB field from checkout instead.":"Das Feld für das Geburtsdatum bei der Methode nicht anzeigen, aber als erforderlich festlegen. Verwenden Sie stattdessen das Feld für das Geburtsdatum an der Checkout."
+"Show COC field at method, but leave it optional.":"Zeigen Sie das Handelsregisternummer-Feld bei der Methode an, aber lassen Sie es optional."
+"Show COC field at method, make it required.":"Zeigen Sie das Handelsregisternummer-Feld bei der Methode an, machen Sie es erforderlich."
+"Don't show COC field at method, but set as required. Use COC field from checkout instead.":"Handelsregisternummer-Feld bei der Methode nicht anzeigen, aber als erforderlich festlegen. Verwenden Sie stattdessen das Handelsregisternummer-Feld aus dem Checkout."
+"Show VAT field at method, but leave it optional.":"Zeigen Sie das USt-IdNr-Feld bei der Methode an, aber lassen Sie es optional."
+"Show VAT field at method, make it required.":"Zeigen Sie das USt-IdNr-Feld bei der Methode an, machen Sie es erforderlich.."
+"Don't show VAT field at method, but set as required. Use VAT field from checkout instead.":"USt-IdNr-Feld bei der Methode nicht anzeigen, aber als erforderlich festlegen. Verwenden Sie stattdessen das USt-IdNr-Feld aus dem Checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.","Wenn diese Option aktiviert ist, wird der Zahlungsmethode ein zusätzliches Feld hinzugefügt, in das der Kunde seine Handelsregisternummer-Nummer eingeben kann. Sie können auch festlegen, dass die Handelsregisternummer-Nummer für diese Methode erforderlich ist, indem Sie die vierte Option verwenden. Dazu müssen Sie die Einstellung "Benutzerdefiniertes Handelsregisternummer-Feld anzeigen" auf der Registerkarte "Einstellungen" aktivieren, wodurch das Handelsregisternummer-Feld zur checkout hinzugefügt wird."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.","Wenn diese Option aktiviert ist, wird der Zahlungsmethode ein zusätzliches Feld hinzugefügt, in das der Kunde seine USt-IdNr-Nummer eingeben kann. Sie können auch festlegen, dass die USt-IdNr-Nummer für diese Methode erforderlich ist, indem Sie die vierte Option verwenden. Dazu müssen Sie die Einstellung "Benutzerdefiniertes USt-IdNr-Feld anzeigen" auf der Registerkarte "Einstellungen" aktivieren, wodurch das USt-IdNr-Feld zur checkout hinzugefügt wird."
+"When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.","Wenn diese Option aktiviert ist, wird der Zahlungsmethode ein Datumsauswahlfeld hinzugefügt, in das der Kunde sein Geburtsdatum eingeben kann. Sie können auch festlegen, dass dies für diese Methode erforderlich ist, indem Sie die vierte Option verwenden. Dazu müssen Sie die Einstellung "Benutzerdefiniertes Geburtsdatum-Feld anzeigen" auf der Registerkarte "Einstellungen" aktivieren, wodurch das Feld für das Geburtsdatum der checkout selbst hinzugefügt wird."
+"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Obwohl eine Bestellung mit einer bestimmten Zahlungsart gestartet wird, kann es dennoch vorkommen, dass sie mit einer anderen Zahlungsart abgeschlossen wird. Beispiel: Jemand beginnt eine Bestellung mit IN3, schließt sie jedoch nie ab. Wenn diese Person später eine Erinnerungs-E-Mail mit dem Hinweis erhält, dass die Bestellung noch offen ist, kann sie diese mit iDEAL abschließen. Wenn diese Option aktiviert ist, wird iDEAL bei der Bestellung angezeigt. Darüber hinaus wird in den Bestellnotizen ein Hinweis darauf angezeigt, dass sich die Zahlungsart geändert hat."
"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Obwohl eine Bestellung mit einer bestimmten Zahlungsart gestartet wird, kann es dennoch vorkommen, dass sie mit einer anderen Zahlungsart abgeschlossen wird. Beispiel: Jemand beginnt eine Bestellung mit iDEAL in3, schließt sie jedoch nie ab. Wenn diese Person später eine Erinnerungs-E-Mail mit dem Hinweis erhält, dass die Bestellung noch offen ist, kann sie diese mit iDEAL abschließen. Wenn diese Option aktiviert ist, wird iDEAL bei der Bestellung angezeigt. Darüber hinaus wird in den Bestellnotizen ein Hinweis darauf angezeigt, dass sich die Zahlungsart geändert hat."
"Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens.","Wählen Sie die Sprache aus, in der die Zahlungsbildschirme geöffnet werden (z. B. der Kreditkartenbildschirm oder die Überweisungsseite). Bitte beachten Sie: Die Sprache kann auch auf den Zahlungsbildschirmen geändert werden."
"Off - No autocapture.
@@ -181,6 +195,13 @@ On - via Sherpa - Capture automatically via Sherpa.","Aus – Keine automatische
Ein – Zahlungen mit dem Status AUTORISIEREN automatisch erfassen, wenn eine Sendung in Magento erstellt wird (Picqer wird dabei auch unterstützt).
Ein – über Wuunder – Automatische Erfassung über Wuunder.
Ein – über Sherpa – Automatische Erfassung über Sherpa."
+"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.","When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro. Beispiel: Die Geschäftswährung ist Dollar, die Basiswährung ist Euro. Pay. startet Zahlungen in Euro."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.","Wenn aktiviert, wird ein zusätzliches Feld zur Checkout hinzugefügt, in das der Kunde seine Handelsregisternummer-Nummer eingeben kann."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.","Wenn aktiviert, wird ein zusätzliches Feld zur Checkout hinzugefügt, in das der Kunde seine USt-IdNr-Nummer eingeben kann."
+"When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.","Wenn aktiviert, wird der Checkout ein Datumsauswahlfeld hinzugefügt, in das der Kunde sein Geburtsdatum eingeben kann."
+"Show custom COC field","Benutzerdefiniertes Handelsregisternummer-Nummer-Feld anzeigen"
+"Show custom VAT field","Benutzerdefiniertes USt-IdNr-Nummer-Feld anzeigen"
+"Show custom date of birth field","Benutzerdefiniertes Feld für das Geburtsdatum anzeigen"
"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.","When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency."
"Customer Type","Kundentyp"
"By default payment methods are available in the checkout for all customer types.
diff --git a/i18n/de_CH.csv b/i18n/de_CH.csv
index 520e0383..da5d1937 100644
--- a/i18n/de_CH.csv
+++ b/i18n/de_CH.csv
@@ -172,6 +172,20 @@
"Follow payment method","Follow payment method"
"This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected","Dadurch wird sichergestellt, dass die Bestellung mit der tatsächlichen Zahlungsmethode aktualisiert wird, die zum Abschluss der Bestellung verwendet wurde. Diese kann von der ursprünglich gewählten Zahlungsart abweichen"
"PAY.: Updated payment method from %1 to %2","PAY.: Zahlungsmethode geändert von %1 bis %2"
+"Don't show at payment method.":"Bei Zahlungsmethode nicht anzeigen."
+"Show DOB field at method, but leave it optional.":"Zeigen Sie das Feld Geburtsdatum bei der Methode an, aber lassen Sie es optional."
+"Show DOB field at method, make it required.":"Zeigen Sie das Feld Geburtsdatum bei der Methode an, machen Sie es erforderlich."
+"Don't show DOB field at method, but set as required. Use DOB field from checkout instead.":"Das Feld für das Geburtsdatum bei der Methode nicht anzeigen, aber als erforderlich festlegen. Verwenden Sie stattdessen das Feld für das Geburtsdatum an der Checkout."
+"Show COC field at method, but leave it optional.":"Zeigen Sie das Handelsregisternummer-Feld bei der Methode an, aber lassen Sie es optional."
+"Show COC field at method, make it required.":"Zeigen Sie das Handelsregisternummer-Feld bei der Methode an, machen Sie es erforderlich."
+"Don't show COC field at method, but set as required. Use COC field from checkout instead.":"Handelsregisternummer-Feld bei der Methode nicht anzeigen, aber als erforderlich festlegen. Verwenden Sie stattdessen das Handelsregisternummer-Feld aus dem Checkout."
+"Show VAT field at method, but leave it optional.":"Zeigen Sie das USt-IdNr-Feld bei der Methode an, aber lassen Sie es optional."
+"Show VAT field at method, make it required.":"Zeigen Sie das USt-IdNr-Feld bei der Methode an, machen Sie es erforderlich.."
+"Don't show VAT field at method, but set as required. Use VAT field from checkout instead.":"USt-IdNr-Feld bei der Methode nicht anzeigen, aber als erforderlich festlegen. Verwenden Sie stattdessen das USt-IdNr-Feld aus dem Checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.","Wenn diese Option aktiviert ist, wird der Zahlungsmethode ein zusätzliches Feld hinzugefügt, in das der Kunde seine Handelsregisternummer-Nummer eingeben kann. Sie können auch festlegen, dass die Handelsregisternummer-Nummer für diese Methode erforderlich ist, indem Sie die vierte Option verwenden. Dazu müssen Sie die Einstellung "Benutzerdefiniertes Handelsregisternummer-Feld anzeigen" auf der Registerkarte "Einstellungen" aktivieren, wodurch das Handelsregisternummer-Feld zur checkout hinzugefügt wird."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.","Wenn diese Option aktiviert ist, wird der Zahlungsmethode ein zusätzliches Feld hinzugefügt, in das der Kunde seine USt-IdNr-Nummer eingeben kann. Sie können auch festlegen, dass die USt-IdNr-Nummer für diese Methode erforderlich ist, indem Sie die vierte Option verwenden. Dazu müssen Sie die Einstellung "Benutzerdefiniertes USt-IdNr-Feld anzeigen" auf der Registerkarte "Einstellungen" aktivieren, wodurch das USt-IdNr-Feld zur checkout hinzugefügt wird."
+"When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.","Wenn diese Option aktiviert ist, wird der Zahlungsmethode ein Datumsauswahlfeld hinzugefügt, in das der Kunde sein Geburtsdatum eingeben kann. Sie können auch festlegen, dass dies für diese Methode erforderlich ist, indem Sie die vierte Option verwenden. Dazu müssen Sie die Einstellung "Benutzerdefiniertes Geburtsdatum-Feld anzeigen" auf der Registerkarte "Einstellungen" aktivieren, wodurch das Feld für das Geburtsdatum der checkout selbst hinzugefügt wird."
+"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Obwohl eine Bestellung mit einer bestimmten Zahlungsart gestartet wird, kann es dennoch vorkommen, dass sie mit einer anderen Zahlungsart abgeschlossen wird. Beispiel: Jemand beginnt eine Bestellung mit IN3, schließt sie jedoch nie ab. Wenn diese Person später eine Erinnerungs-E-Mail mit dem Hinweis erhält, dass die Bestellung noch offen ist, kann sie diese mit iDEAL abschließen. Wenn diese Option aktiviert ist, wird iDEAL bei der Bestellung angezeigt. Darüber hinaus wird in den Bestellnotizen ein Hinweis darauf angezeigt, dass sich die Zahlungsart geändert hat."
"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Obwohl eine Bestellung mit einer bestimmten Zahlungsart gestartet wird, kann es dennoch vorkommen, dass sie mit einer anderen Zahlungsart abgeschlossen wird. Beispiel: Jemand beginnt eine Bestellung mit iDEAL in3, schließt sie jedoch nie ab. Wenn diese Person später eine Erinnerungs-E-Mail mit dem Hinweis erhält, dass die Bestellung noch offen ist, kann sie diese mit iDEAL abschließen. Wenn diese Option aktiviert ist, wird iDEAL bei der Bestellung angezeigt. Darüber hinaus wird in den Bestellnotizen ein Hinweis darauf angezeigt, dass sich die Zahlungsart geändert hat."
"Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens.","Wählen Sie die Sprache aus, in der die Zahlungsbildschirme geöffnet werden (z. B. der Kreditkartenbildschirm oder die Überweisungsseite). Bitte beachten Sie: Die Sprache kann auch auf den Zahlungsbildschirmen geändert werden."
"Off - No autocapture.
@@ -181,6 +195,13 @@ On - via Sherpa - Capture automatically via Sherpa.","Aus – Keine automatische
Ein – Zahlungen mit dem Status AUTORISIEREN automatisch erfassen, wenn eine Sendung in Magento erstellt wird (Picqer wird dabei auch unterstützt).
Ein – über Wuunder – Automatische Erfassung über Wuunder.
Ein – über Sherpa – Automatische Erfassung über Sherpa."
+"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.","When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro. Beispiel: Die Geschäftswährung ist Dollar, die Basiswährung ist Euro. Pay. startet Zahlungen in Euro."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.","Wenn aktiviert, wird ein zusätzliches Feld zur Checkout hinzugefügt, in das der Kunde seine Handelsregisternummer-Nummer eingeben kann."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.","Wenn aktiviert, wird ein zusätzliches Feld zur Checkout hinzugefügt, in das der Kunde seine USt-IdNr-Nummer eingeben kann."
+"When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.","Wenn aktiviert, wird der Checkout ein Datumsauswahlfeld hinzugefügt, in das der Kunde sein Geburtsdatum eingeben kann."
+"Show custom COC field","Benutzerdefiniertes Handelsregisternummer-Nummer-Feld anzeigen"
+"Show custom VAT field","Benutzerdefiniertes USt-IdNr-Nummer-Feld anzeigen"
+"Show custom date of birth field","Benutzerdefiniertes Feld für das Geburtsdatum anzeigen"
"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.","Wenn die Shopwährung von der Basiswährungseinstellung in Magento abweicht, sorgt diese Einstellung dafür, dass die Zahlung in der Basiswährung und nicht in der Shopwährung beginnt."
"Customer Type","Kundentyp"
"By default payment methods are available in the checkout for all customer types.
diff --git a/i18n/de_DE.csv b/i18n/de_DE.csv
index 520e0383..da5d1937 100644
--- a/i18n/de_DE.csv
+++ b/i18n/de_DE.csv
@@ -172,6 +172,20 @@
"Follow payment method","Follow payment method"
"This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected","Dadurch wird sichergestellt, dass die Bestellung mit der tatsächlichen Zahlungsmethode aktualisiert wird, die zum Abschluss der Bestellung verwendet wurde. Diese kann von der ursprünglich gewählten Zahlungsart abweichen"
"PAY.: Updated payment method from %1 to %2","PAY.: Zahlungsmethode geändert von %1 bis %2"
+"Don't show at payment method.":"Bei Zahlungsmethode nicht anzeigen."
+"Show DOB field at method, but leave it optional.":"Zeigen Sie das Feld Geburtsdatum bei der Methode an, aber lassen Sie es optional."
+"Show DOB field at method, make it required.":"Zeigen Sie das Feld Geburtsdatum bei der Methode an, machen Sie es erforderlich."
+"Don't show DOB field at method, but set as required. Use DOB field from checkout instead.":"Das Feld für das Geburtsdatum bei der Methode nicht anzeigen, aber als erforderlich festlegen. Verwenden Sie stattdessen das Feld für das Geburtsdatum an der Checkout."
+"Show COC field at method, but leave it optional.":"Zeigen Sie das Handelsregisternummer-Feld bei der Methode an, aber lassen Sie es optional."
+"Show COC field at method, make it required.":"Zeigen Sie das Handelsregisternummer-Feld bei der Methode an, machen Sie es erforderlich."
+"Don't show COC field at method, but set as required. Use COC field from checkout instead.":"Handelsregisternummer-Feld bei der Methode nicht anzeigen, aber als erforderlich festlegen. Verwenden Sie stattdessen das Handelsregisternummer-Feld aus dem Checkout."
+"Show VAT field at method, but leave it optional.":"Zeigen Sie das USt-IdNr-Feld bei der Methode an, aber lassen Sie es optional."
+"Show VAT field at method, make it required.":"Zeigen Sie das USt-IdNr-Feld bei der Methode an, machen Sie es erforderlich.."
+"Don't show VAT field at method, but set as required. Use VAT field from checkout instead.":"USt-IdNr-Feld bei der Methode nicht anzeigen, aber als erforderlich festlegen. Verwenden Sie stattdessen das USt-IdNr-Feld aus dem Checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.","Wenn diese Option aktiviert ist, wird der Zahlungsmethode ein zusätzliches Feld hinzugefügt, in das der Kunde seine Handelsregisternummer-Nummer eingeben kann. Sie können auch festlegen, dass die Handelsregisternummer-Nummer für diese Methode erforderlich ist, indem Sie die vierte Option verwenden. Dazu müssen Sie die Einstellung "Benutzerdefiniertes Handelsregisternummer-Feld anzeigen" auf der Registerkarte "Einstellungen" aktivieren, wodurch das Handelsregisternummer-Feld zur checkout hinzugefügt wird."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.","Wenn diese Option aktiviert ist, wird der Zahlungsmethode ein zusätzliches Feld hinzugefügt, in das der Kunde seine USt-IdNr-Nummer eingeben kann. Sie können auch festlegen, dass die USt-IdNr-Nummer für diese Methode erforderlich ist, indem Sie die vierte Option verwenden. Dazu müssen Sie die Einstellung "Benutzerdefiniertes USt-IdNr-Feld anzeigen" auf der Registerkarte "Einstellungen" aktivieren, wodurch das USt-IdNr-Feld zur checkout hinzugefügt wird."
+"When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.","Wenn diese Option aktiviert ist, wird der Zahlungsmethode ein Datumsauswahlfeld hinzugefügt, in das der Kunde sein Geburtsdatum eingeben kann. Sie können auch festlegen, dass dies für diese Methode erforderlich ist, indem Sie die vierte Option verwenden. Dazu müssen Sie die Einstellung "Benutzerdefiniertes Geburtsdatum-Feld anzeigen" auf der Registerkarte "Einstellungen" aktivieren, wodurch das Feld für das Geburtsdatum der checkout selbst hinzugefügt wird."
+"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Obwohl eine Bestellung mit einer bestimmten Zahlungsart gestartet wird, kann es dennoch vorkommen, dass sie mit einer anderen Zahlungsart abgeschlossen wird. Beispiel: Jemand beginnt eine Bestellung mit IN3, schließt sie jedoch nie ab. Wenn diese Person später eine Erinnerungs-E-Mail mit dem Hinweis erhält, dass die Bestellung noch offen ist, kann sie diese mit iDEAL abschließen. Wenn diese Option aktiviert ist, wird iDEAL bei der Bestellung angezeigt. Darüber hinaus wird in den Bestellnotizen ein Hinweis darauf angezeigt, dass sich die Zahlungsart geändert hat."
"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Obwohl eine Bestellung mit einer bestimmten Zahlungsart gestartet wird, kann es dennoch vorkommen, dass sie mit einer anderen Zahlungsart abgeschlossen wird. Beispiel: Jemand beginnt eine Bestellung mit iDEAL in3, schließt sie jedoch nie ab. Wenn diese Person später eine Erinnerungs-E-Mail mit dem Hinweis erhält, dass die Bestellung noch offen ist, kann sie diese mit iDEAL abschließen. Wenn diese Option aktiviert ist, wird iDEAL bei der Bestellung angezeigt. Darüber hinaus wird in den Bestellnotizen ein Hinweis darauf angezeigt, dass sich die Zahlungsart geändert hat."
"Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens.","Wählen Sie die Sprache aus, in der die Zahlungsbildschirme geöffnet werden (z. B. der Kreditkartenbildschirm oder die Überweisungsseite). Bitte beachten Sie: Die Sprache kann auch auf den Zahlungsbildschirmen geändert werden."
"Off - No autocapture.
@@ -181,6 +195,13 @@ On - via Sherpa - Capture automatically via Sherpa.","Aus – Keine automatische
Ein – Zahlungen mit dem Status AUTORISIEREN automatisch erfassen, wenn eine Sendung in Magento erstellt wird (Picqer wird dabei auch unterstützt).
Ein – über Wuunder – Automatische Erfassung über Wuunder.
Ein – über Sherpa – Automatische Erfassung über Sherpa."
+"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.","When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro. Beispiel: Die Geschäftswährung ist Dollar, die Basiswährung ist Euro. Pay. startet Zahlungen in Euro."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.","Wenn aktiviert, wird ein zusätzliches Feld zur Checkout hinzugefügt, in das der Kunde seine Handelsregisternummer-Nummer eingeben kann."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.","Wenn aktiviert, wird ein zusätzliches Feld zur Checkout hinzugefügt, in das der Kunde seine USt-IdNr-Nummer eingeben kann."
+"When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.","Wenn aktiviert, wird der Checkout ein Datumsauswahlfeld hinzugefügt, in das der Kunde sein Geburtsdatum eingeben kann."
+"Show custom COC field","Benutzerdefiniertes Handelsregisternummer-Nummer-Feld anzeigen"
+"Show custom VAT field","Benutzerdefiniertes USt-IdNr-Nummer-Feld anzeigen"
+"Show custom date of birth field","Benutzerdefiniertes Feld für das Geburtsdatum anzeigen"
"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.","Wenn die Shopwährung von der Basiswährungseinstellung in Magento abweicht, sorgt diese Einstellung dafür, dass die Zahlung in der Basiswährung und nicht in der Shopwährung beginnt."
"Customer Type","Kundentyp"
"By default payment methods are available in the checkout for all customer types.
diff --git a/i18n/de_LU.csv b/i18n/de_LU.csv
index 36abf4a1..4074f13f 100644
--- a/i18n/de_LU.csv
+++ b/i18n/de_LU.csv
@@ -173,6 +173,20 @@
"Follow payment method","Follow payment method"
"This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected","Dadurch wird sichergestellt, dass die Bestellung mit der tatsächlichen Zahlungsmethode aktualisiert wird, die zum Abschluss der Bestellung verwendet wurde. Diese kann von der ursprünglich gewählten Zahlungsart abweichen"
"PAY.: Updated payment method from %1 to %2","PAY.: Zahlungsmethode geändert von %1 bis %2"
+"Don't show at payment method.":"Bei Zahlungsmethode nicht anzeigen."
+"Show DOB field at method, but leave it optional.":"Zeigen Sie das Feld Geburtsdatum bei der Methode an, aber lassen Sie es optional."
+"Show DOB field at method, make it required.":"Zeigen Sie das Feld Geburtsdatum bei der Methode an, machen Sie es erforderlich."
+"Don't show DOB field at method, but set as required. Use DOB field from checkout instead.":"Das Feld für das Geburtsdatum bei der Methode nicht anzeigen, aber als erforderlich festlegen. Verwenden Sie stattdessen das Feld für das Geburtsdatum an der Checkout."
+"Show COC field at method, but leave it optional.":"Zeigen Sie das Handelsregisternummer-Feld bei der Methode an, aber lassen Sie es optional."
+"Show COC field at method, make it required.":"Zeigen Sie das Handelsregisternummer-Feld bei der Methode an, machen Sie es erforderlich."
+"Don't show COC field at method, but set as required. Use COC field from checkout instead.":"Handelsregisternummer-Feld bei der Methode nicht anzeigen, aber als erforderlich festlegen. Verwenden Sie stattdessen das Handelsregisternummer-Feld aus dem Checkout."
+"Show VAT field at method, but leave it optional.":"Zeigen Sie das USt-IdNr-Feld bei der Methode an, aber lassen Sie es optional."
+"Show VAT field at method, make it required.":"Zeigen Sie das USt-IdNr-Feld bei der Methode an, machen Sie es erforderlich.."
+"Don't show VAT field at method, but set as required. Use VAT field from checkout instead.":"USt-IdNr-Feld bei der Methode nicht anzeigen, aber als erforderlich festlegen. Verwenden Sie stattdessen das USt-IdNr-Feld aus dem Checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.","Wenn diese Option aktiviert ist, wird der Zahlungsmethode ein zusätzliches Feld hinzugefügt, in das der Kunde seine Handelsregisternummer-Nummer eingeben kann. Sie können auch festlegen, dass die Handelsregisternummer-Nummer für diese Methode erforderlich ist, indem Sie die vierte Option verwenden. Dazu müssen Sie die Einstellung "Benutzerdefiniertes Handelsregisternummer-Feld anzeigen" auf der Registerkarte "Einstellungen" aktivieren, wodurch das Handelsregisternummer-Feld zur checkout hinzugefügt wird."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.","Wenn diese Option aktiviert ist, wird der Zahlungsmethode ein zusätzliches Feld hinzugefügt, in das der Kunde seine USt-IdNr-Nummer eingeben kann. Sie können auch festlegen, dass die USt-IdNr-Nummer für diese Methode erforderlich ist, indem Sie die vierte Option verwenden. Dazu müssen Sie die Einstellung "Benutzerdefiniertes USt-IdNr-Feld anzeigen" auf der Registerkarte "Einstellungen" aktivieren, wodurch das USt-IdNr-Feld zur checkout hinzugefügt wird."
+"When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.","Wenn diese Option aktiviert ist, wird der Zahlungsmethode ein Datumsauswahlfeld hinzugefügt, in das der Kunde sein Geburtsdatum eingeben kann. Sie können auch festlegen, dass dies für diese Methode erforderlich ist, indem Sie die vierte Option verwenden. Dazu müssen Sie die Einstellung "Benutzerdefiniertes Geburtsdatum-Feld anzeigen" auf der Registerkarte "Einstellungen" aktivieren, wodurch das Feld für das Geburtsdatum der checkout selbst hinzugefügt wird."
+"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Obwohl eine Bestellung mit einer bestimmten Zahlungsart gestartet wird, kann es dennoch vorkommen, dass sie mit einer anderen Zahlungsart abgeschlossen wird. Beispiel: Jemand beginnt eine Bestellung mit IN3, schließt sie jedoch nie ab. Wenn diese Person später eine Erinnerungs-E-Mail mit dem Hinweis erhält, dass die Bestellung noch offen ist, kann sie diese mit iDEAL abschließen. Wenn diese Option aktiviert ist, wird iDEAL bei der Bestellung angezeigt. Darüber hinaus wird in den Bestellnotizen ein Hinweis darauf angezeigt, dass sich die Zahlungsart geändert hat."
"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Obwohl eine Bestellung mit einer bestimmten Zahlungsart gestartet wird, kann es dennoch vorkommen, dass sie mit einer anderen Zahlungsart abgeschlossen wird. Beispiel: Jemand beginnt eine Bestellung mit iDEAL in3, schließt sie jedoch nie ab. Wenn diese Person später eine Erinnerungs-E-Mail mit dem Hinweis erhält, dass die Bestellung noch offen ist, kann sie diese mit iDEAL abschließen. Wenn diese Option aktiviert ist, wird iDEAL bei der Bestellung angezeigt. Darüber hinaus wird in den Bestellnotizen ein Hinweis darauf angezeigt, dass sich die Zahlungsart geändert hat."
"Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens.","Wählen Sie die Sprache aus, in der die Zahlungsbildschirme geöffnet werden (z. B. der Kreditkartenbildschirm oder die Überweisungsseite). Bitte beachten Sie: Die Sprache kann auch auf den Zahlungsbildschirmen geändert werden."
"Off - No autocapture.
@@ -182,6 +196,13 @@ On - via Sherpa - Capture automatically via Sherpa.","Aus – Keine automatische
Ein – Zahlungen mit dem Status AUTORISIEREN automatisch erfassen, wenn eine Sendung in Magento erstellt wird (Picqer wird dabei auch unterstützt).
Ein – über Wuunder – Automatische Erfassung über Wuunder.
Ein – über Sherpa – Automatische Erfassung über Sherpa."
+"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.","When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro. Beispiel: Die Geschäftswährung ist Dollar, die Basiswährung ist Euro. Pay. startet Zahlungen in Euro."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.","Wenn aktiviert, wird ein zusätzliches Feld zur Checkout hinzugefügt, in das der Kunde seine Handelsregisternummer-Nummer eingeben kann."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.","Wenn aktiviert, wird ein zusätzliches Feld zur Checkout hinzugefügt, in das der Kunde seine USt-IdNr-Nummer eingeben kann."
+"When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.","Wenn aktiviert, wird der Checkout ein Datumsauswahlfeld hinzugefügt, in das der Kunde sein Geburtsdatum eingeben kann."
+"Show custom COC field","Benutzerdefiniertes Handelsregisternummer-Nummer-Feld anzeigen"
+"Show custom VAT field","Benutzerdefiniertes USt-IdNr-Nummer-Feld anzeigen"
+"Show custom date of birth field","Benutzerdefiniertes Feld für das Geburtsdatum anzeigen"
"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.","Wenn die Shopwährung von der Basiswährungseinstellung in Magento abweicht, sorgt diese Einstellung dafür, dass die Zahlung in der Basiswährung und nicht in der Shopwährung beginnt."
"Customer Type","Kundentyp"
"By default payment methods are available in the checkout for all customer types.
diff --git a/i18n/en_US.csv b/i18n/en_US.csv
index 6fc5434a..93a13ec7 100644
--- a/i18n/en_US.csv
+++ b/i18n/en_US.csv
@@ -224,6 +224,20 @@
"Follow payment method","Follow payment method"
"This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected","This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected"
"PAY.: Updated payment method from %1 to %2","PAY.: Updated payment method from %1 to %2"
+"Don't show at payment method.":"Don't show at payment method."
+"Show DOB field at method, but leave it optional.":"Show DOB field at method, but leave it optional."
+"Show DOB field at method, make it required.":"Show DOB field at method, make it required."
+"Don't show DOB field at method, but set as required. Use DOB field from checkout instead.":"Don't show DOB field at method, but set as required. Use DOB field from checkout instead."
+"Show COC field at method, but leave it optional.":"Show COC field at method, but leave it optional."
+"Show COC field at method, make it required.":"Show COC field at method, make it required."
+"Don't show COC field at method, but set as required. Use COC field from checkout instead.":"Don't show COC field at method, but set as required. Use COC field from checkout instead."
+"Show VAT field at method, but leave it optional.":"Show VAT field at method, but leave it optional."
+"Show VAT field at method, make it required.":"Show VAT field at method, make it required."
+"Don't show VAT field at method, but set as required. Use VAT field from checkout instead.":"Don't show VAT field at method, but set as required. Use VAT field from checkout instead."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.","When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.","When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself."
+"When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.","When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself."
+"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed."
"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed."
"Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens.","Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens."
"Off - No autocapture.
@@ -233,6 +247,13 @@ On - via Sherpa - Capture automatically via Sherpa.","Off - No autocapture.
On - Automatically capture payments with the status AUTHORIZE when a shipment is created in Magento (Picqer is also supported in this).
On - via Wuunder - Capture automatically via Wuunder.
On - via Sherpa - Capture automatically via Sherpa."
+"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.","When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.","When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.","When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number."
+"When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.","When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth."
+"Show custom COC field","Show custom COC field"
+"Show custom VAT field","Show custom VAT field"
+"Show custom date of birth field","Show custom date of birth field"
"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.","When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency."
"Customer Type","Customer Type"
"By default payment methods are available in the checkout for all customer types.
diff --git a/i18n/fr_BE.csv b/i18n/fr_BE.csv
index 450a9811..1e2def35 100644
--- a/i18n/fr_BE.csv
+++ b/i18n/fr_BE.csv
@@ -172,6 +172,20 @@
"Follow payment method","Follow payment method"
"This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected","Cela garantira que la commande est mise à jour avec le mode de paiement réel utilisé pour finaliser la commande. Celui-ci peut différer du mode de paiement initialement sélectionné"
"PAY.: Updated payment method from %1 to %2","PAY.: Mode de paiement modifié de %1 à %2"
+"Don't show at payment method.":"Ne pas afficher le mode de paiement."
+"Show DOB field at method, but leave it optional.":"Afficher le champ de la date de naissance dans la méthode, mais le laisser facultatif."
+"Show DOB field at method, make it required.":"Afficher le champ de la date de naissance dans la méthode, le rendre obligatoire."
+"Don't show DOB field at method, but set as required. Use DOB field from checkout instead.":"Ne pas afficher le champ de la date de naissance dans la méthode, mais le rendre obligatoire. Utilisez plutôt le champ de la date de naissance à la caisse."
+"Show COC field at method, but leave it optional.":"Afficher le champ Chambre de Commerce dans la méthode, mais le laisser facultatif."
+"Show COC field at method, make it required.":"Afficher le champ Chambre de Commerce dans la méthode, le rendre obligatoire."
+"Don't show COC field at method, but set as required. Use COC field from checkout instead.":"Ne pas afficher le champ Chambre de Commerce dans la méthode, mais le rendre obligatoire. Utiliser le champ Chambre de Commerce de la caisse à la place."
+"Show VAT field at method, but leave it optional.":"Afficher le champ de numéro de TVA dans la méthode, mais le laisser facultatif."
+"Show VAT field at method, make it required.":"Afficher le champ de numéro de TVA dans la méthode, le rendre obligatoire."
+"Don't show VAT field at method, but set as required. Use VAT field from checkout instead.":"Ne pas afficher le champ de numéro de TVA dans la méthode, mais le rendre obligatoire. Utiliser le champ de numéro de TVA de la caisse à la place."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la méthode de paiement pour permettre au client d'entrer son numéro de Chambre de Commerce. Vous pouvez également choisir de rendre le numéro de Chambre de Commerce obligatoire pour cette méthode en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ Chambre de Commerce personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ Chambre de Commerce à la checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la méthode de paiement pour permettre au client d'entrer son numéro de TVA. Vous pouvez également choisir de rendre le numéro de TVA obligatoire pour cette méthode en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ de numéro de TVA personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ de numéro de TVA à la checkout."
+"When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.","Lorsque cette option est activée, elle ajoute un champ de sélection de date à la méthode de paiement pour que le client puisse saisir sa date de naissance. Vous pouvez également choisir de rendre ce champ obligatoire pour ce mode de paiement en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ DOB personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ de la date de naissance à la caisse elle-même."
+"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Même si une commande est démarrée avec un certain mode de paiement, elle peut toujours être complétée avec un autre mode de paiement. Par exemple : quelqu'un commence une commande avec IN3, mais ne la termine jamais. Lorsque cette personne reçoit ultérieurement un e-mail de rappel indiquant que la commande est toujours ouverte, elle peut la compléter avec iDEAL. Lorsque cette option est activée, iDEAL sera affiché avec la commande. Une note sera également placée dans les bons de commande indiquant que le mode de paiement a changé."
"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Même si une commande est démarrée avec un certain mode de paiement, elle peut toujours être complétée avec un autre mode de paiement. Par exemple : quelqu'un commence une commande avec iDEAL in3, mais ne la termine jamais. Lorsque cette personne reçoit ultérieurement un e-mail de rappel indiquant que la commande est toujours ouverte, elle peut la compléter avec iDEAL. Lorsque cette option est activée, iDEAL sera affiché avec la commande. Une note sera également placée dans les bons de commande indiquant que le mode de paiement a changé."
"Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens.","Sélectionnez la langue dans laquelle les écrans de paiement s'ouvrent (comme l'écran Carte de crédit ou la page Transfert). Attention : la langue peut également être modifiée depuis les écrans de paiement."
"Off - No autocapture.
@@ -181,6 +195,13 @@ On - via Sherpa - Capture automatically via Sherpa.","Désactivé - Pas de captu
Activé - Capturer automatiquement les paiements avec le statut AUTORISER lorsqu'un envoi est créé dans Magento (Picqer est également pris en charge dans ce domaine).
Activé - via Wuunder - Capture automatique via Wuunder.
Activé - via Sherpa - Capture automatique via Sherpa."
+"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.","Lorsque la devise du magasin diffère de la devise de base dans Magento, ce paramètre garantit que le paiement commence dans la devise de base au lieu de la devise du magasin. Exemple : La devise du magasin est le dollar, la devise de base est l'euro. Pay. commencera les paiements en euros."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la caisse pour permettre au client d'entrer son numéro de Chambre de Commerce."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la caisse pour permettre au client d'entrer son numéro de TVA."
+"When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.","Lorsque cette option est activée, elle ajoute un champ de sélection de date à la caisse pour permettre au client d'entrer sa date de naissance."
+"Show custom COC field","Afficher le champ de numéro de Chambre de Commerce. personnalisé"
+"Show custom VAT field","Afficher le champ de numéro de TVA personnalisé"
+"Show custom date of birth field","Afficher le champ personnalisé de la date de naissance"
"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.","Lorsque la devise du magasin diffère de la devise de base dans Magento, ce paramètre garantit que le paiement commence dans la devise de base au lieu de la devise du magasin."
"Customer Type","Type de client"
"By default payment methods are available in the checkout for all customer types.
diff --git a/i18n/fr_CA.csv b/i18n/fr_CA.csv
index 450a9811..1e2def35 100644
--- a/i18n/fr_CA.csv
+++ b/i18n/fr_CA.csv
@@ -172,6 +172,20 @@
"Follow payment method","Follow payment method"
"This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected","Cela garantira que la commande est mise à jour avec le mode de paiement réel utilisé pour finaliser la commande. Celui-ci peut différer du mode de paiement initialement sélectionné"
"PAY.: Updated payment method from %1 to %2","PAY.: Mode de paiement modifié de %1 à %2"
+"Don't show at payment method.":"Ne pas afficher le mode de paiement."
+"Show DOB field at method, but leave it optional.":"Afficher le champ de la date de naissance dans la méthode, mais le laisser facultatif."
+"Show DOB field at method, make it required.":"Afficher le champ de la date de naissance dans la méthode, le rendre obligatoire."
+"Don't show DOB field at method, but set as required. Use DOB field from checkout instead.":"Ne pas afficher le champ de la date de naissance dans la méthode, mais le rendre obligatoire. Utilisez plutôt le champ de la date de naissance à la caisse."
+"Show COC field at method, but leave it optional.":"Afficher le champ Chambre de Commerce dans la méthode, mais le laisser facultatif."
+"Show COC field at method, make it required.":"Afficher le champ Chambre de Commerce dans la méthode, le rendre obligatoire."
+"Don't show COC field at method, but set as required. Use COC field from checkout instead.":"Ne pas afficher le champ Chambre de Commerce dans la méthode, mais le rendre obligatoire. Utiliser le champ Chambre de Commerce de la caisse à la place."
+"Show VAT field at method, but leave it optional.":"Afficher le champ de numéro de TVA dans la méthode, mais le laisser facultatif."
+"Show VAT field at method, make it required.":"Afficher le champ de numéro de TVA dans la méthode, le rendre obligatoire."
+"Don't show VAT field at method, but set as required. Use VAT field from checkout instead.":"Ne pas afficher le champ de numéro de TVA dans la méthode, mais le rendre obligatoire. Utiliser le champ de numéro de TVA de la caisse à la place."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la méthode de paiement pour permettre au client d'entrer son numéro de Chambre de Commerce. Vous pouvez également choisir de rendre le numéro de Chambre de Commerce obligatoire pour cette méthode en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ Chambre de Commerce personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ Chambre de Commerce à la checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la méthode de paiement pour permettre au client d'entrer son numéro de TVA. Vous pouvez également choisir de rendre le numéro de TVA obligatoire pour cette méthode en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ de numéro de TVA personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ de numéro de TVA à la checkout."
+"When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.","Lorsque cette option est activée, elle ajoute un champ de sélection de date à la méthode de paiement pour que le client puisse saisir sa date de naissance. Vous pouvez également choisir de rendre ce champ obligatoire pour ce mode de paiement en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ DOB personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ de la date de naissance à la caisse elle-même."
+"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Même si une commande est démarrée avec un certain mode de paiement, elle peut toujours être complétée avec un autre mode de paiement. Par exemple : quelqu'un commence une commande avec IN3, mais ne la termine jamais. Lorsque cette personne reçoit ultérieurement un e-mail de rappel indiquant que la commande est toujours ouverte, elle peut la compléter avec iDEAL. Lorsque cette option est activée, iDEAL sera affiché avec la commande. Une note sera également placée dans les bons de commande indiquant que le mode de paiement a changé."
"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Même si une commande est démarrée avec un certain mode de paiement, elle peut toujours être complétée avec un autre mode de paiement. Par exemple : quelqu'un commence une commande avec iDEAL in3, mais ne la termine jamais. Lorsque cette personne reçoit ultérieurement un e-mail de rappel indiquant que la commande est toujours ouverte, elle peut la compléter avec iDEAL. Lorsque cette option est activée, iDEAL sera affiché avec la commande. Une note sera également placée dans les bons de commande indiquant que le mode de paiement a changé."
"Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens.","Sélectionnez la langue dans laquelle les écrans de paiement s'ouvrent (comme l'écran Carte de crédit ou la page Transfert). Attention : la langue peut également être modifiée depuis les écrans de paiement."
"Off - No autocapture.
@@ -181,6 +195,13 @@ On - via Sherpa - Capture automatically via Sherpa.","Désactivé - Pas de captu
Activé - Capturer automatiquement les paiements avec le statut AUTORISER lorsqu'un envoi est créé dans Magento (Picqer est également pris en charge dans ce domaine).
Activé - via Wuunder - Capture automatique via Wuunder.
Activé - via Sherpa - Capture automatique via Sherpa."
+"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.","Lorsque la devise du magasin diffère de la devise de base dans Magento, ce paramètre garantit que le paiement commence dans la devise de base au lieu de la devise du magasin. Exemple : La devise du magasin est le dollar, la devise de base est l'euro. Pay. commencera les paiements en euros."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la caisse pour permettre au client d'entrer son numéro de Chambre de Commerce."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la caisse pour permettre au client d'entrer son numéro de TVA."
+"When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.","Lorsque cette option est activée, elle ajoute un champ de sélection de date à la caisse pour permettre au client d'entrer sa date de naissance."
+"Show custom COC field","Afficher le champ de numéro de Chambre de Commerce. personnalisé"
+"Show custom VAT field","Afficher le champ de numéro de TVA personnalisé"
+"Show custom date of birth field","Afficher le champ personnalisé de la date de naissance"
"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.","Lorsque la devise du magasin diffère de la devise de base dans Magento, ce paramètre garantit que le paiement commence dans la devise de base au lieu de la devise du magasin."
"Customer Type","Type de client"
"By default payment methods are available in the checkout for all customer types.
diff --git a/i18n/fr_CH.csv b/i18n/fr_CH.csv
index 450a9811..1e2def35 100644
--- a/i18n/fr_CH.csv
+++ b/i18n/fr_CH.csv
@@ -172,6 +172,20 @@
"Follow payment method","Follow payment method"
"This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected","Cela garantira que la commande est mise à jour avec le mode de paiement réel utilisé pour finaliser la commande. Celui-ci peut différer du mode de paiement initialement sélectionné"
"PAY.: Updated payment method from %1 to %2","PAY.: Mode de paiement modifié de %1 à %2"
+"Don't show at payment method.":"Ne pas afficher le mode de paiement."
+"Show DOB field at method, but leave it optional.":"Afficher le champ de la date de naissance dans la méthode, mais le laisser facultatif."
+"Show DOB field at method, make it required.":"Afficher le champ de la date de naissance dans la méthode, le rendre obligatoire."
+"Don't show DOB field at method, but set as required. Use DOB field from checkout instead.":"Ne pas afficher le champ de la date de naissance dans la méthode, mais le rendre obligatoire. Utilisez plutôt le champ de la date de naissance à la caisse."
+"Show COC field at method, but leave it optional.":"Afficher le champ Chambre de Commerce dans la méthode, mais le laisser facultatif."
+"Show COC field at method, make it required.":"Afficher le champ Chambre de Commerce dans la méthode, le rendre obligatoire."
+"Don't show COC field at method, but set as required. Use COC field from checkout instead.":"Ne pas afficher le champ Chambre de Commerce dans la méthode, mais le rendre obligatoire. Utiliser le champ Chambre de Commerce de la caisse à la place."
+"Show VAT field at method, but leave it optional.":"Afficher le champ de numéro de TVA dans la méthode, mais le laisser facultatif."
+"Show VAT field at method, make it required.":"Afficher le champ de numéro de TVA dans la méthode, le rendre obligatoire."
+"Don't show VAT field at method, but set as required. Use VAT field from checkout instead.":"Ne pas afficher le champ de numéro de TVA dans la méthode, mais le rendre obligatoire. Utiliser le champ de numéro de TVA de la caisse à la place."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la méthode de paiement pour permettre au client d'entrer son numéro de Chambre de Commerce. Vous pouvez également choisir de rendre le numéro de Chambre de Commerce obligatoire pour cette méthode en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ Chambre de Commerce personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ Chambre de Commerce à la checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la méthode de paiement pour permettre au client d'entrer son numéro de TVA. Vous pouvez également choisir de rendre le numéro de TVA obligatoire pour cette méthode en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ de numéro de TVA personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ de numéro de TVA à la checkout."
+"When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.","Lorsque cette option est activée, elle ajoute un champ de sélection de date à la méthode de paiement pour que le client puisse saisir sa date de naissance. Vous pouvez également choisir de rendre ce champ obligatoire pour ce mode de paiement en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ DOB personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ de la date de naissance à la caisse elle-même."
+"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Même si une commande est démarrée avec un certain mode de paiement, elle peut toujours être complétée avec un autre mode de paiement. Par exemple : quelqu'un commence une commande avec IN3, mais ne la termine jamais. Lorsque cette personne reçoit ultérieurement un e-mail de rappel indiquant que la commande est toujours ouverte, elle peut la compléter avec iDEAL. Lorsque cette option est activée, iDEAL sera affiché avec la commande. Une note sera également placée dans les bons de commande indiquant que le mode de paiement a changé."
"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Même si une commande est démarrée avec un certain mode de paiement, elle peut toujours être complétée avec un autre mode de paiement. Par exemple : quelqu'un commence une commande avec iDEAL in3, mais ne la termine jamais. Lorsque cette personne reçoit ultérieurement un e-mail de rappel indiquant que la commande est toujours ouverte, elle peut la compléter avec iDEAL. Lorsque cette option est activée, iDEAL sera affiché avec la commande. Une note sera également placée dans les bons de commande indiquant que le mode de paiement a changé."
"Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens.","Sélectionnez la langue dans laquelle les écrans de paiement s'ouvrent (comme l'écran Carte de crédit ou la page Transfert). Attention : la langue peut également être modifiée depuis les écrans de paiement."
"Off - No autocapture.
@@ -181,6 +195,13 @@ On - via Sherpa - Capture automatically via Sherpa.","Désactivé - Pas de captu
Activé - Capturer automatiquement les paiements avec le statut AUTORISER lorsqu'un envoi est créé dans Magento (Picqer est également pris en charge dans ce domaine).
Activé - via Wuunder - Capture automatique via Wuunder.
Activé - via Sherpa - Capture automatique via Sherpa."
+"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.","Lorsque la devise du magasin diffère de la devise de base dans Magento, ce paramètre garantit que le paiement commence dans la devise de base au lieu de la devise du magasin. Exemple : La devise du magasin est le dollar, la devise de base est l'euro. Pay. commencera les paiements en euros."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la caisse pour permettre au client d'entrer son numéro de Chambre de Commerce."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la caisse pour permettre au client d'entrer son numéro de TVA."
+"When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.","Lorsque cette option est activée, elle ajoute un champ de sélection de date à la caisse pour permettre au client d'entrer sa date de naissance."
+"Show custom COC field","Afficher le champ de numéro de Chambre de Commerce. personnalisé"
+"Show custom VAT field","Afficher le champ de numéro de TVA personnalisé"
+"Show custom date of birth field","Afficher le champ personnalisé de la date de naissance"
"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.","Lorsque la devise du magasin diffère de la devise de base dans Magento, ce paramètre garantit que le paiement commence dans la devise de base au lieu de la devise du magasin."
"Customer Type","Type de client"
"By default payment methods are available in the checkout for all customer types.
diff --git a/i18n/fr_FR.csv b/i18n/fr_FR.csv
index 0af04c18..41e56b81 100644
--- a/i18n/fr_FR.csv
+++ b/i18n/fr_FR.csv
@@ -172,6 +172,20 @@
"Follow payment method","Follow payment method"
"This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected","Cela garantira que la commande est mise à jour avec le mode de paiement réel utilisé pour finaliser la commande. Celui-ci peut différer du mode de paiement initialement sélectionné"
"PAY.: Updated payment method from %1 to %2","PAY.: Mode de paiement modifié de %1 à %2"
+"Don't show at payment method.":"Ne pas afficher le mode de paiement."
+"Show DOB field at method, but leave it optional.":"Afficher le champ de la date de naissance dans la méthode, mais le laisser facultatif."
+"Show DOB field at method, make it required.":"Afficher le champ de la date de naissance dans la méthode, le rendre obligatoire."
+"Don't show DOB field at method, but set as required. Use DOB field from checkout instead.":"Ne pas afficher le champ de la date de naissance dans la méthode, mais le rendre obligatoire. Utilisez plutôt le champ de la date de naissance à la caisse."
+"Show COC field at method, but leave it optional.":"Afficher le champ Chambre de Commerce dans la méthode, mais le laisser facultatif."
+"Show COC field at method, make it required.":"Afficher le champ Chambre de Commerce dans la méthode, le rendre obligatoire."
+"Don't show COC field at method, but set as required. Use COC field from checkout instead.":"Ne pas afficher le champ Chambre de Commerce dans la méthode, mais le rendre obligatoire. Utiliser le champ Chambre de Commerce de la caisse à la place."
+"Show VAT field at method, but leave it optional.":"Afficher le champ de numéro de TVA dans la méthode, mais le laisser facultatif."
+"Show VAT field at method, make it required.":"Afficher le champ de numéro de TVA dans la méthode, le rendre obligatoire."
+"Don't show VAT field at method, but set as required. Use VAT field from checkout instead.":"Ne pas afficher le champ de numéro de TVA dans la méthode, mais le rendre obligatoire. Utiliser le champ de numéro de TVA de la caisse à la place."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la méthode de paiement pour permettre au client d'entrer son numéro de Chambre de Commerce. Vous pouvez également choisir de rendre le numéro de Chambre de Commerce obligatoire pour cette méthode en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ Chambre de Commerce personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ Chambre de Commerce à la checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la méthode de paiement pour permettre au client d'entrer son numéro de TVA. Vous pouvez également choisir de rendre le numéro de TVA obligatoire pour cette méthode en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ de numéro de TVA personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ de numéro de TVA à la checkout."
+"When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.","Lorsque cette option est activée, elle ajoute un champ de sélection de date à la méthode de paiement pour que le client puisse saisir sa date de naissance. Vous pouvez également choisir de rendre ce champ obligatoire pour ce mode de paiement en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ DOB personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ de la date de naissance à la caisse elle-même."
+"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Même si une commande est démarrée avec un certain mode de paiement, elle peut toujours être complétée avec un autre mode de paiement. Par exemple : quelqu'un commence une commande avec IN3, mais ne la termine jamais. Lorsque cette personne reçoit ultérieurement un e-mail de rappel indiquant que la commande est toujours ouverte, elle peut la compléter avec iDEAL. Lorsque cette option est activée, iDEAL sera affiché avec la commande. Une note sera également placée dans les bons de commande indiquant que le mode de paiement a changé."
"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Même si une commande est démarrée avec un certain mode de paiement, elle peut toujours être complétée avec un autre mode de paiement. Par exemple : quelqu'un commence une commande avec iDEAL in3, mais ne la termine jamais. Lorsque cette personne reçoit ultérieurement un e-mail de rappel indiquant que la commande est toujours ouverte, elle peut la compléter avec iDEAL. Lorsque cette option est activée, iDEAL sera affiché avec la commande. Une note sera également placée dans les bons de commande indiquant que le mode de paiement a changé."
"Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens.","Sélectionnez la langue dans laquelle les écrans de paiement s'ouvrent (comme l'écran Carte de crédit ou la page Transfert). Attention : la langue peut également être modifiée depuis les écrans de paiement."
"Off - No autocapture.
@@ -181,6 +195,13 @@ On - via Sherpa - Capture automatically via Sherpa.","Désactivé - Pas de captu
Activé - Capturer automatiquement les paiements avec le statut AUTORISER lorsqu'un envoi est créé dans Magento (Picqer est également pris en charge dans ce domaine).
Activé - via Wuunder - Capture automatique via Wuunder.
Activé - via Sherpa - Capture automatique via Sherpa."
+"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.","Lorsque la devise du magasin diffère de la devise de base dans Magento, ce paramètre garantit que le paiement commence dans la devise de base au lieu de la devise du magasin. Exemple : La devise du magasin est le dollar, la devise de base est l'euro. Pay. commencera les paiements en euros."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la caisse pour permettre au client d'entrer son numéro de Chambre de Commerce."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la caisse pour permettre au client d'entrer son numéro de TVA."
+"When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.","Lorsque cette option est activée, elle ajoute un champ de sélection de date à la caisse pour permettre au client d'entrer sa date de naissance."
+"Show custom COC field","Afficher le champ de numéro de Chambre de Commerce. personnalisé"
+"Show custom VAT field","Afficher le champ de numéro de TVA personnalisé"
+"Show custom date of birth field","Afficher le champ personnalisé de la date de naissance"
"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.","Lorsque la devise du magasin diffère de la devise de base dans Magento, ce paramètre garantit que le paiement commence dans la devise de base au lieu de la devise du magasin."'
"Customer Type","Type de client"
"By default payment methods are available in the checkout for all customer types.
diff --git a/i18n/fr_LU.csv b/i18n/fr_LU.csv
index d4a2c110..7cba3b18 100644
--- a/i18n/fr_LU.csv
+++ b/i18n/fr_LU.csv
@@ -172,6 +172,20 @@
"Follow payment method","Follow payment method"
"This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected","Cela garantira que la commande est mise à jour avec le mode de paiement réel utilisé pour finaliser la commande. Celui-ci peut différer du mode de paiement initialement sélectionné"
"PAY.: Updated payment method from %1 to %2","PAY.: Mode de paiement modifié de %1 à %2"
+"Don't show at payment method.":"Ne pas afficher le mode de paiement."
+"Show DOB field at method, but leave it optional.":"Afficher le champ de la date de naissance dans la méthode, mais le laisser facultatif."
+"Show DOB field at method, make it required.":"Afficher le champ de la date de naissance dans la méthode, le rendre obligatoire."
+"Don't show DOB field at method, but set as required. Use DOB field from checkout instead.":"Ne pas afficher le champ de la date de naissance dans la méthode, mais le rendre obligatoire. Utilisez plutôt le champ de la date de naissance à la caisse."
+"Show COC field at method, but leave it optional.":"Afficher le champ Chambre de Commerce dans la méthode, mais le laisser facultatif."
+"Show COC field at method, make it required.":"Afficher le champ Chambre de Commerce dans la méthode, le rendre obligatoire."
+"Don't show COC field at method, but set as required. Use COC field from checkout instead.":"Ne pas afficher le champ Chambre de Commerce dans la méthode, mais le rendre obligatoire. Utiliser le champ Chambre de Commerce de la caisse à la place."
+"Show VAT field at method, but leave it optional.":"Afficher le champ de numéro de TVA dans la méthode, mais le laisser facultatif."
+"Show VAT field at method, make it required.":"Afficher le champ de numéro de TVA dans la méthode, le rendre obligatoire."
+"Don't show VAT field at method, but set as required. Use VAT field from checkout instead.":"Ne pas afficher le champ de numéro de TVA dans la méthode, mais le rendre obligatoire. Utiliser le champ de numéro de TVA de la caisse à la place."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la méthode de paiement pour permettre au client d'entrer son numéro COC. Vous pouvez également choisir de rendre le numéro COC obligatoire pour cette méthode en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ COC personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ COC à la checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la méthode de paiement pour permettre au client d'entrer son numéro de TVA. Vous pouvez également choisir de rendre le numéro de TVA obligatoire pour cette méthode en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ de numéro de TVA personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ de numéro de TVA à la checkout."
+"When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.","Lorsque cette option est activée, elle ajoute un champ de sélection de date à la méthode de paiement pour que le client puisse saisir sa date de naissance. Vous pouvez également choisir de rendre ce champ obligatoire pour ce mode de paiement en utilisant la quatrième option. Pour ce faire, vous devez activer le paramètre "Afficher le champ DOB personnalisé" dans l'onglet "Paramètres", ce qui ajoute le champ de la date de naissance à la caisse elle-même."
+"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Même si une commande est démarrée avec un certain mode de paiement, elle peut toujours être complétée avec un autre mode de paiement. Par exemple : quelqu'un commence une commande avec IN3, mais ne la termine jamais. Lorsque cette personne reçoit ultérieurement un e-mail de rappel indiquant que la commande est toujours ouverte, elle peut la compléter avec iDEAL. Lorsque cette option est activée, iDEAL sera affiché avec la commande. Une note sera également placée dans les bons de commande indiquant que le mode de paiement a changé."
"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Même si une commande est démarrée avec un certain mode de paiement, elle peut toujours être complétée avec un autre mode de paiement. Par exemple : quelqu'un commence une commande avec iDEAL in3, mais ne la termine jamais. Lorsque cette personne reçoit ultérieurement un e-mail de rappel indiquant que la commande est toujours ouverte, elle peut la compléter avec iDEAL. Lorsque cette option est activée, iDEAL sera affiché avec la commande. Une note sera également placée dans les bons de commande indiquant que le mode de paiement a changé."
"Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens.","Sélectionnez la langue dans laquelle les écrans de paiement s'ouvrent (comme l'écran Carte de crédit ou la page Transfert). Attention : la langue peut également être modifiée depuis les écrans de paiement."
"Off - No autocapture.
@@ -181,6 +195,13 @@ On - via Sherpa - Capture automatically via Sherpa.","Désactivé - Pas de captu
Activé - Capturer automatiquement les paiements avec le statut AUTORISER lorsqu'un envoi est créé dans Magento (Picqer est également pris en charge dans ce domaine).
Activé - via Wuunder - Capture automatique via Wuunder.
Activé - via Sherpa - Capture automatique via Sherpa."
+"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.","Lorsque la devise du magasin diffère de la devise de base dans Magento, ce paramètre garantit que le paiement commence dans la devise de base au lieu de la devise du magasin. Exemple : La devise du magasin est le dollar, la devise de base est l'euro. Pay. commencera les paiements en euros."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la caisse pour permettre au client d'entrer son numéro de Chambre de Commerce."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.","Lorsque cette option est activée, un champ supplémentaire est ajouté à la caisse pour permettre au client d'entrer son numéro de TVA."
+"When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.","Lorsque cette option est activée, elle ajoute un champ de sélection de date à la caisse pour permettre au client d'entrer sa date de naissance."
+"Show custom COC field","Afficher le champ de numéro de Chambre de Commerce. personnalisé"
+"Show custom VAT field","Afficher le champ de numéro de TVA personnalisé"
+"Show custom date of birth field","Afficher le champ personnalisé de la date de naissance"
"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.","Lorsque la devise du magasin diffère de la devise de base dans Magento, ce paramètre garantit que le paiement commence dans la devise de base au lieu de la devise du magasin.""Customer Type","Type de client"
"By default payment methods are available in the checkout for all customer types.
Private, B2C: Only show this payment method when the customer didn't enter a company name.
diff --git a/i18n/nl_BE.csv b/i18n/nl_BE.csv
index 885ac9d0..c43ebc02 100644
--- a/i18n/nl_BE.csv
+++ b/i18n/nl_BE.csv
@@ -228,6 +228,20 @@
"Follow payment method","Follow payment method"
"This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected","Dit zorgt ervoor dat de bestelling wordt bijgewerkt met de daadwerkelijke betaalmethode die is gebruikt om de bestelling te voltooien. Dit kan afwijken van de aanvankelijk gekozen betaalmethode"
"PAY.: Updated payment method from %1 to %2","PAY.: Betaalmethode gewijzigd van %1 naar %2"
+"Don't show at payment method.":"Niet weergeven bij betaalmethode."
+"Show DOB field at method, but leave it optional.":"Toon het geboortedatumveld bij de methode, maar laat het optioneel.."
+"Show DOB field at method, make it required.":"Toon geboortedatum veld bij methode, maak het verplicht"
+"Don't show DOB field at method, but set as required. Use DOB field from checkout instead.":"Toon het geboortedatumveld niet bij de methode, maar stel het in als verplicht. Gebruik in plaats daarvan het geboortedatumveld van de checkout."
+"Show COC field at method, but leave it optional.":"Toon KVK-veld bij methode, maar laat het optioneel."
+"Show COC field at method, make it required.":"Toon KVK-veld bij methode, maak het verplicht."
+"Don't show COC field at method, but set as required. Use COC field from checkout instead.":"Toon het KVK-veld niet bij de methode, maar stel het in als verplicht. Gebruik in plaats daarvan het KVK-veld van de checkout."
+"Show VAT field at method, but leave it optional.":"Toon het BTW-veld bij de methode, maar laat het optioneel."
+"Show VAT field at method, make it required.":"Toon BTW-veld bij methode, maak het verplicht."
+"Don't show VAT field at method, but set as required. Use VAT field from checkout instead.":"Btw-veld niet weergeven bij methode, maar instellen als verplicht. Gebruik in plaats daarvan het btw-veld van de checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.","Als deze optie is ingeschakeld, wordt er een extra veld aan de betaalmethode toegevoegd waarin de klant zijn of haar KVK-nummer kan invoeren. Je kunt er ook voor kiezen om het KVK-nummer verplicht te maken voor deze methode door de 4e optie te gebruiken. Hiervoor moet je de instelling 'Toon KVK-veld' aan zetten op het tabblad 'Instellingen', waardoor het KVK-veld wordt toegevoegd aan de checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.","Als deze optie is ingeschakeld, wordt er een extra veld aan de betaalmethode toegevoegd waarin de klant zijn of haar BTW-nummer kan invoeren. Je kunt er ook voor kiezen om het BTW-nummer verplicht te maken voor deze methode door de 4e optie te gebruiken. Hiervoor moet je de instelling 'Toon BTW-veld' aan zetten op het tabblad 'Instellingen', waardoor het BTW-veld wordt toegevoegd aan de checkout."
+"When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.","Als deze optie is ingeschakeld, wordt er een datumveld toegevoegd aan de betaalmethode waarin de klant zijn geboortedatum kan invoeren. Je kunt er ook voor kiezen om dit verplicht te maken voor deze methode door de 4e optie te gebruiken. Hiervoor moet je de instelling 'Toon geboortedatumveld' aan zetten op het tabblad 'Instellingen', waardoor het geboortedatumveld wordt toegevoegd aan de checkout."
+"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Hoewel een order wordt gestart met een bepaalde betaalmethode, kan het toch zijn dat deze wordt afgerond met een andere betaalmethode. Bijvoorbeeld: Iemand start een order met IN3, maar rond deze nooit af. Wanneer die iemand later een herinneringsmail krijgt, met de melding dat de order nog open staat, kan hij of zij deze afronden met iDEAL. Wanneer deze optie dan is ingeschakeld, wordt iDEAL bij de order getoond. Ook wordt er een notitie geplaatst bij de order-notities waar aangegeven wordt dat de betaalmethode is gewijzigd."
"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Hoewel een order wordt gestart met een bepaalde betaalmethode, kan het toch zijn dat deze wordt afgerond met een andere betaalmethode. Bijvoorbeeld: Iemand start een order met iDEAL in3, maar rond deze nooit af. Wanneer die iemand later een herinneringsmail krijgt, met de melding dat de order nog open staat, kan hij of zij deze afronden met iDEAL. Wanneer deze optie dan is ingeschakeld, wordt iDEAL bij de order getoond. Ook wordt er een notitie geplaatst bij de order-notities waar aangegeven wordt dat de betaalmethode is gewijzigd."
"Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens.","Selecteer de taal waarin betaalschermen openen (zoals bijvoorbeeld het Creditcard scherm of Overboekingspagina). Let wel: de taal kan vanuit de betaalschermen ook gewijzigd worden."
"Off - No autocapture.
@@ -237,6 +251,13 @@ On - via Sherpa - Capture automatically via Sherpa.","Uit - Geen autocapture.
Aan - Capture automatisch betalingen met de status AUTHORIZE wanneer een shipment in Magento wordt aangemaakt (Picqer wordt hierin ook ondersteund).
Aan - via Wuunder - Capture automatisch via Wuunder.
Aan - via Sherpa - Capture automatisch via Sherpa."
+"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.","Wanneer de winkelvaluta afwijkt van de basisvaluta-instelling in Magento, zorgt deze instelling ervoor dat de betalingen worden gestart in de basisvaluta in plaats van de winkelvaluta. Voorbeeld: Winkelvaluta is in dollar, basisvaluta is euro. Pay. start betalingen in euro."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.","Als deze optie is ingeschakeld, wordt er een extra veld aan de checkout toegevoegd waarin de klant het KVK-nummer kan invoeren."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.","Als deze optie is ingeschakeld, wordt er een extra veld aan de checkout toegevoegd waarin de klant het BTW-nummer kan invoeren."
+"When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.","Als deze optie is ingeschakeld, zal dit een datepickerveld toevoegen aan de checkout zodat de klant zijn geboortedatum kan invoeren"
+"Show custom COC field","Toon KVK-nummer veld"
+"Show custom VAT field","Toon BTW-nummer veld"
+"Show custom date of birth field","Show geboortedatum veld"
"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.","Wanneer de winkelvaluta afwijkt van de basisvaluta-instelling in Magento, zorgt deze instelling ervoor dat de betalingen worden gestart in de basisvaluta in plaats van de winkelvaluta."
"Customer Type","Type klant"
"By default payment methods are available in the checkout for all customer types.
diff --git a/i18n/nl_NL.csv b/i18n/nl_NL.csv
index 1f4baac6..ee97b820 100644
--- a/i18n/nl_NL.csv
+++ b/i18n/nl_NL.csv
@@ -228,6 +228,20 @@
"Follow payment method","Follow payment method"
"This will ensure the order is updated with the actual payment method used to complete the order. This can differ from the payment method initially selected","Dit zorgt ervoor dat de bestelling wordt bijgewerkt met de daadwerkelijke betaalmethode die is gebruikt om de bestelling te voltooien. Dit kan afwijken van de aanvankelijk gekozen betaalmethode"
"PAY.: Updated payment method from %1 to %2","PAY.: Betaalmethode gewijzigd van %1 naar %2"
+"Don't show at payment method.":"Niet weergeven bij betaalmethode."
+"Show DOB field at method, but leave it optional.":"Toon het geboortedatumveld bij de methode, maar laat het optioneel.."
+"Show DOB field at method, make it required.":"Toon geboortedatum veld bij methode, maak het verplicht"
+"Don't show DOB field at method, but set as required. Use DOB field from checkout instead.":"Toon het geboortedatumveld niet bij de methode, maar stel het in als verplicht. Gebruik in plaats daarvan het geboortedatumveld van de checkout."
+"Show COC field at method, but leave it optional.":"Toon KVK-veld bij methode, maar laat het optioneel."
+"Show COC field at method, make it required.":"Toon KVK-veld bij methode, maak het verplicht."
+"Don't show COC field at method, but set as required. Use COC field from checkout instead.":"Toon het KVK-veld niet bij de methode, maar stel het in als verplicht. Gebruik in plaats daarvan het KVK-veld van de checkout."
+"Show VAT field at method, but leave it optional.":"Toon het BTW-veld bij de methode, maar laat het optioneel."
+"Show VAT field at method, make it required.":"Toon BTW-veld bij methode, maak het verplicht."
+"Don't show VAT field at method, but set as required. Use VAT field from checkout instead.":"Btw-veld niet weergeven bij methode, maar instellen als verplicht. Gebruik in plaats daarvan het btw-veld van de checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their COC number. You can also choose to make the COC number required for this method by using the 4th option. This will require you to enable the 'Show custom COC field' setting in the 'Settings' tab, which adds the COC field to the checkout itself.","Als deze optie is ingeschakeld, wordt er een extra veld aan de betaalmethode toegevoegd waarin de klant zijn of haar KVK-nummer kan invoeren. Je kunt er ook voor kiezen om het KVK-nummer verplicht te maken voor deze methode door de 4e optie te gebruiken. Hiervoor moet je de instelling 'Toon KVK-veld' aan zetten op het tabblad 'Instellingen', waardoor het KVK-veld wordt toegevoegd aan de checkout."
+"When Enabled, this will add an extra field to the payment method for the customer to enter in their VAT number. You can also choose to make the VAT number required for this method by using the 4th option. This will require you to enable the 'Show custom VAT field' setting in the 'Settings' tab, which adds the VAT field to the checkout itself.","Als deze optie is ingeschakeld, wordt er een extra veld aan de betaalmethode toegevoegd waarin de klant zijn of haar BTW-nummer kan invoeren. Je kunt er ook voor kiezen om het BTW-nummer verplicht te maken voor deze methode door de 4e optie te gebruiken. Hiervoor moet je de instelling 'Toon BTW-veld' aan zetten op het tabblad 'Instellingen', waardoor het BTW-veld wordt toegevoegd aan de checkout."
+"When Enabled, this will add an datepicker field to the payment method for the customer to enter in their date of birth. You can also choose to make this required for this method by using the 4th option. This will require you to enable the 'Show custom DOB field' setting in the 'Settings' tab, which adds the date of birth field to the checkout itself.","Als deze optie is ingeschakeld, wordt er een datumveld toegevoegd aan de betaalmethode waarin de klant zijn geboortedatum kan invoeren. Je kunt er ook voor kiezen om dit verplicht te maken voor deze methode door de 4e optie te gebruiken. Hiervoor moet je de instelling 'Toon geboortedatumveld' aan zetten op het tabblad 'Instellingen', waardoor het geboortedatumveld wordt toegevoegd aan de checkout."
+"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with IN3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Hoewel een order wordt gestart met een bepaalde betaalmethode, kan het toch zijn dat deze wordt afgerond met een andere betaalmethode. Bijvoorbeeld: Iemand start een order met IN3, maar rond deze nooit af. Wanneer die iemand later een herinneringsmail krijgt, met de melding dat de order nog open staat, kan hij of zij deze afronden met iDEAL. Wanneer deze optie dan is ingeschakeld, wordt iDEAL bij de order getoond. Ook wordt er een notitie geplaatst bij de order-notities waar aangegeven wordt dat de betaalmethode is gewijzigd."
"Although an order is started with a certain payment method, it may still be completed with a different payment method. For example: Someone starts an order with iDEAL in3, but never completes it. When that person later receives a reminder email stating that the order is still open, he or she can complete it with iDEAL. When this option is enabled, iDEAL will be shown with the order. A note will also be placed in the order notes indicating that the payment method has changed.","Hoewel een order wordt gestart met een bepaalde betaalmethode, kan het toch zijn dat deze wordt afgerond met een andere betaalmethode. Bijvoorbeeld: Iemand start een order met iDEAL in3, maar rond deze nooit af. Wanneer die iemand later een herinneringsmail krijgt, met de melding dat de order nog open staat, kan hij of zij deze afronden met iDEAL. Wanneer deze optie dan is ingeschakeld, wordt iDEAL bij de order getoond. Ook wordt er een notitie geplaatst bij de order-notities waar aangegeven wordt dat de betaalmethode is gewijzigd."
"Select the language in which payment screens open (such as the Credit Card screen or Transfer page). Please note: the language can also be changed from the payment screens.","Selecteer de taal waarin betaalschermen openen (zoals bijvoorbeeld het Creditcard scherm of Overboekingspagina). Let wel: de taal kan vanuit de betaalschermen ook gewijzigd worden."
"Off - No autocapture.
@@ -237,6 +251,13 @@ On - via Sherpa - Capture automatically via Sherpa.","Uit - Geen autocapture.
Aan - Capture automatisch betalingen met de status AUTHORIZE wanneer een shipment in Magento wordt aangemaakt (Picqer wordt hierin ook ondersteund).
Aan - via Wuunder - Capture automatisch via Wuunder.
Aan - via Sherpa - Capture automatisch via Sherpa."
+"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency. Example: Store currency is in Dollar, Base currency is Euro. Pay. will start payments in Euro.","Wanneer de winkelvaluta afwijkt van de basisvaluta-instelling in Magento, zorgt deze instelling ervoor dat de betalingen worden gestart in de basisvaluta in plaats van de winkelvaluta. Voorbeeld: Winkelvaluta is in dollar, basisvaluta is euro. Pay. start betalingen in euro."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their COC number.","Als deze optie is ingeschakeld, wordt er een extra veld aan de checkout toegevoegd waarin de klant het KVK-nummer kan invoeren."
+"When Enabled, this will add an extra field to the checkout for the customer to enter in their VAT number.","Als deze optie is ingeschakeld, wordt er een extra veld aan de checkout toegevoegd waarin de klant het BTW-nummer kan invoeren."
+"When Enabled, this will add an datepicker field to the checkout for the customer to enter in their date of birth.","Als deze optie is ingeschakeld, zal dit een datepickerveld toevoegen aan de checkout zodat de klant zijn geboortedatum kan invoeren"
+"Show custom COC field","Toon KVK-nummer veld"
+"Show custom VAT field","Toon BTW-nummer veld"
+"Show custom date of birth field","Show geboortedatum veld"
"When the store currency deviates from the base currency setting in Magento, this setting will ensure the payment starts in the base currency instead of the store currency.","Wanneer de winkelvaluta afwijkt van de basisvaluta-instelling in Magento, zorgt deze instelling ervoor dat de betalingen worden gestart in de basisvaluta in plaats van de winkelvaluta."
"Chargebacks","Chargebacks"
"Set to `on` to accept chargebacks initiated from Pay.","Stel in op `aan` om chargebacks te accepteren die zijn geïnitieerd vanuit Pay."
diff --git a/view/adminhtml/web/css/configtab.css b/view/adminhtml/web/css/configtab.css
index 8ce45ca2..9501ee36 100644
--- a/view/adminhtml/web/css/configtab.css
+++ b/view/adminhtml/web/css/configtab.css
@@ -67,6 +67,9 @@
font-weight: bold;
}
+[id^="paynl_setup_paynl"] .tooltip-content,
+[id^="paynl_settings_paynl"] .tooltip-content,
+[id^="paynl_paymentmethods_paynl_payment"] .tooltip-content,
#paynl_settings_paynl_general_settings .tooltip-content,
#paynl_settings_paynl_advanced_settings .tooltip-content,
.accordion [id^="paynl_paymentmethods_paynl_payment_"].config .value.with-tooltip .tooltip-content {
@@ -76,6 +79,15 @@
white-space: pre-line;
}
+[id^="paynl_setup_paynl"] .tooltip .help span::before, [id^="paynl_setup_paynl"] .tooltip .help a::before,
+[id^="paynl_settings_paynl"] .tooltip .help span::before, [id^="paynl_settings_paynl"] .tooltip .help a::before,
+[id^="paynl_paymentmethods_paynl_payment"] .tooltip .help span::before, [id^="paynl_paymentmethods_paynl_payment"] .tooltip .help a::before {
+ opacity: 0.5;
+}
+
+[id^="paynl_setup_paynl"] td.use-default,
+[id^="paynl_settings_paynl"] td.use-default,
+[id^="paynl_paymentmethods_paynl_payment"] td.use-default,
#paynl_settings_paynl_general_settings .tooltip .help span::before, #paynl_settings_paynl_general_settings .tooltip .help a::before,
#paynl_settings_paynl_advanced_settings .tooltip .help span::before, #paynl_settings_paynl_advanced_settings .tooltip .help a::before,
.accordion [id^="paynl_paymentmethods_paynl_payment_"].config .tooltip .help span::before, #paynl_settings_paynl_advanced_settings .tooltip .help a::before {
diff --git a/view/frontend/web/js/view/payment/method-renderer/default.js b/view/frontend/web/js/view/payment/method-renderer/default.js
index b12e6570..bc6cddcb 100755
--- a/view/frontend/web/js/view/payment/method-renderer/default.js
+++ b/view/frontend/web/js/view/payment/method-renderer/default.js
@@ -131,13 +131,13 @@ define(
return false;
},
showKVK: function () {
- return this.getKVK() > 0;
+ return (this.getKVK() == 1 || this.getKVK() == 2);
},
getKVK: function () {
return (typeof window.checkoutConfig.payment.showkvk !== 'undefined') ? window.checkoutConfig.payment.showkvk[this.item.method] : '';
},
showVAT: function () {
- return this.getVAT() > 0;
+ return (this.getVAT() == 1 || this.getVAT() == 2);
},
getVAT: function () {
if (this.getCompany().length == 0 && (!this.getCompanyField() || this.getCompanyField() == 0)) {
@@ -149,7 +149,7 @@ define(
return (typeof window.checkoutConfig.payment.useAdditionalValidation !== 'undefined') ? window.checkoutConfig.payment.useAdditionalValidation : false;
},
showDOB: function () {
- return this.getDOB() > 0;
+ return (this.getDOB() == 1 || this.getDOB() == 2);
},
getDOB: function () {
return (typeof window.checkoutConfig.payment.showdob !== 'undefined') ? window.checkoutConfig.payment.showdob[this.item.method] : '';
@@ -175,7 +175,7 @@ define(
return this.getKVKDOB() > 0;
},
getKVKDOB: function () {
- return (this.getDOB() > 0 && this.getKVK() > 0);
+ return ((this.getDOB() == 1 || this.getDOB() == 2) && (this.getKVK() == 1 || this.getKVK() == 2));
},
showPinOption: ko.observable(true),
showPaymentOptions: function () {
@@ -258,21 +258,37 @@ define(
afterPlaceOrder: function () {
window.location.replace(url.build('paynl/checkout/redirect?nocache=' + (new Date().getTime())));
},
- getData: function () {
- var dob_format = '';
- if (this.dateofbirth != null) {
- var dob = new Date(this.dateofbirth);
- var dd = dob.getDate(), mm = dob.getMonth() + 1, yyyy = dob.getFullYear();
- dd = (dd < 10) ? '0' + dd : dd;
- mm = (mm < 10) ? '0' + mm : mm;
- dob_format = dd + '-' + mm + '-' + yyyy;
+ getCustomField: function (fieldname) {
+ var customFields = [];
+ if (quote.billingAddress.hasOwnProperty('_latestValue') && typeof quote.billingAddress._latestValue !== 'undefined' && quote.billingAddress._latestValue !== null) {
+ $.each(quote.billingAddress._latestValue.customAttributes, function (i, l) {
+ var field = quote.billingAddress._latestValue.customAttributes[i]
+ customFields[field.attribute_code] = field.value
+ })
}
+ return ((customFields.hasOwnProperty(fieldname)) ? customFields[fieldname] : null)
+ },
+ getData: function () {
+ var dateofbirth_val = (this.dateofbirth != null && this.dateofbirth.length > 0) ? this.dateofbirth : this.getCustomField('paynl_dob');
+ var cocnumber_val = (this.cocnumber != null && this.cocnumber.length > 0) ? this.cocnumber : this.getCustomField('paynl_coc_number');
+ var vatnumber_val = (this.vatnumber != null && this.vatnumber.length > 0) ? this.vatnumber : this.getCustomField('paynl_vat_number');
+
+ var dob_format = '';
+
+ if (dateofbirth_val != null) {
+ var dob = new Date(dateofbirth_val)
+ var dd = dob.getDate(), mm = dob.getMonth() + 1, yyyy = dob.getFullYear()
+ dd = (dd < 10) ? '0' + dd : dd
+ mm = (mm < 10) ? '0' + mm : mm
+ dob_format = dd + '-' + mm + '-' + yyyy
+ }
+
return {
'method': this.item.method,
'po_number': null,
'additional_data': {
- "cocnumber": this.cocnumber,
- "vatnumber": this.vatnumber,
+ "cocnumber": cocnumber_val,
+ "vatnumber": vatnumber_val,
"companyfield": this.companyfield,
"dob": dob_format,
"billink_agree": this.billink_agree,
@@ -289,9 +305,9 @@ define(
}
var placeOrder;
- var cocRequired = this.getKVK() == 2;
- var vatRequired = this.getVAT() == 2;
- var dobRequired = this.getDOB() == 2;
+ var cocRequired = this.getKVK() >= 2;
+ var vatRequired = this.getVAT() >= 2;
+ var dobRequired = this.getDOB() >= 2;
var companyfieldRequired = this.getCompanyField() == 2;
if (companyfieldRequired) {
@@ -317,7 +333,9 @@ define(
});
return false;
}
- if (this.cocnumber == null || this.cocnumber.length < 8) {
+ var cocMethodFieldCheck = (this.cocnumber == null || this.cocnumber.length < 8);
+ var cocCustomFieldCheck = (this.getCustomField('paynl_coc_number') == null || this.getCustomField('paynl_coc_number').length < 8);
+ if (cocMethodFieldCheck && cocCustomFieldCheck) {
alert({
title: $.mage.__('Invalid COC number'),
content: $.mage.__('Enter a valid COC number'),
@@ -329,10 +347,12 @@ define(
}
}
if (vatRequired) {
- if (this.vatnumber == null || this.vatnumber.length < 8) {
+ var vatMethodFieldCheck = (this.vatnumber == null || this.vatnumber.length < 8);
+ var vatCustomFieldCheck = (this.getCustomField('paynl_vat_number') == null || this.getCustomField('paynl_vat_number').length < 8);
+ if (vatMethodFieldCheck && vatCustomFieldCheck) {
alert({
- title: $.mage.__('VAT number'),
- content: $.mage.__('VAT number'),
+ title: $.mage.__('Invalid VAT number'),
+ content: $.mage.__('Enter a valid VAT number'),
actions: {
always: function (){}
}
@@ -341,7 +361,9 @@ define(
}
}
if (dobRequired) {
- if (this.dateofbirth == null || this.dateofbirth.length < 1) {
+ var dobMethodFieldCheck = (this.dateofbirth == null || this.dateofbirth.length < 1);
+ var dobCustomFieldCheck = (this.getCustomField('paynl_dob') == null || this.getCustomField('paynl_dob').length < 1);
+ if (dobMethodFieldCheck && dobCustomFieldCheck) {
alert({
title: $.mage.__('Invalid date of birth'),
content: $.mage.__('Enter a valid date of birth'),