diff --git a/README.md b/README.md
index 81d0a26a9..08ed062de 100644
--- a/README.md
+++ b/README.md
@@ -90,12 +90,12 @@ The module supports the following payment methods. Each one can be enabled or di
| [Alipay](https://docs.buckaroo.io/docs/alipay) | [Apple Pay](https://docs.buckaroo.io/docs/apple-pay) | [Bancontact](https://docs.buckaroo.io/docs/bancontact) |
| [Bank Transfer](https://docs.buckaroo.io/docs/transfer) | [Belfius](https://docs.buckaroo.io/docs/belfius) | [Billink](https://docs.buckaroo.io/docs/billink) |
| [Bizum](https://docs.buckaroo.io/docs/bizum) | [Blik](https://docs.buckaroo.io/docs/blik) | [Credit and debit cards](https://docs.buckaroo.io/docs/creditcards) |
-| [EPS](https://docs.buckaroo.io/docs/eps) | [Giftcards](https://docs.buckaroo.io/docs/giftcards) | [GoSettle](https://docs.buckaroo.io/docs/gosettle) |
-| [iDEAL / Wero](https://docs.buckaroo.io/docs/ideal) | [In3](https://docs.buckaroo.io/docs/in3) | [KBC](https://docs.buckaroo.io/docs/kbc) |
-| [MB Way](https://docs.buckaroo.io/docs/mb-way) | [Multibanco](https://docs.buckaroo.io/docs/multibanco) | [Pay by Bank](https://docs.buckaroo.io/docs/pay-by-bank) |
-| [PayPal](https://docs.buckaroo.io/docs/paypal) | [PayPerEmail](https://docs.buckaroo.io/docs/payperemail) | [Przelewy24](https://docs.buckaroo.io/docs/przelewy24) |
-| [Riverty](https://docs.buckaroo.io/docs/riverty) | [Swish](https://docs.buckaroo.io/docs/swish) | [Trustly](https://docs.buckaroo.io/docs/trustly) |
-| [Twint](https://docs.buckaroo.io/docs/twint) | [WeChatPay](https://docs.buckaroo.io/docs/wechatpay) | [Wero](https://docs.buckaroo.io/docs/wero) |
+| [EPS](https://docs.buckaroo.io/docs/eps) | [Giftcards](https://docs.buckaroo.io/docs/giftcards) | [iDEAL / Wero](https://docs.buckaroo.io/docs/ideal) |
+| [In3](https://docs.buckaroo.io/docs/in3) | [KBC](https://docs.buckaroo.io/docs/kbc) | [MB Way](https://docs.buckaroo.io/docs/mb-way) |
+| [Multibanco](https://docs.buckaroo.io/docs/multibanco) | [Pay by Bank](https://docs.buckaroo.io/docs/pay-by-bank) | [PayPal](https://docs.buckaroo.io/docs/paypal) |
+| [PayPerEmail](https://docs.buckaroo.io/docs/payperemail) | [Przelewy24](https://docs.buckaroo.io/docs/przelewy24) | [Riverty](https://docs.buckaroo.io/docs/riverty) |
+| [Swish](https://docs.buckaroo.io/docs/swish) | [Trustly](https://docs.buckaroo.io/docs/trustly) | [Twint](https://docs.buckaroo.io/docs/twint) |
+| [WeChatPay](https://docs.buckaroo.io/docs/wechatpay) | [Wero](https://docs.buckaroo.io/docs/wero) | |
> [!IMPORTANT]
> All supported methods appear in the PrestaShop backend, but you need an active Buckaroo subscription for a method before you can offer it in your checkout.
diff --git a/api/paymentmethods/knaken/index.php b/api/paymentmethods/knaken/index.php
deleted file mode 100644
index 97ec565fb..000000000
--- a/api/paymentmethods/knaken/index.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
- * @copyright Copyright (c) Buckaroo B.V.
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
- */
-header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
-header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
-
-header('Cache-Control: no-store, no-cache, must-revalidate');
-header('Cache-Control: post-check=0, pre-check=0', false);
-header('Pragma: no-cache');
-
-header('Location: ../');
-exit;
diff --git a/api/paymentmethods/knaken/knaken.php b/api/paymentmethods/knaken/knaken.php
deleted file mode 100644
index 622e34253..000000000
--- a/api/paymentmethods/knaken/knaken.php
+++ /dev/null
@@ -1,30 +0,0 @@
-
- * @copyright Copyright (c) Buckaroo B.V.
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
- */
-if (!defined('_PS_VERSION_')) {
- exit;
-}
-
-require_once dirname(__FILE__) . '/../paymentmethod.php';
-
-class Knaken extends PaymentMethod
-{
- public function __construct()
- {
- $this->type = 'knaken';
- $this->version = 1;
- }
-}
diff --git a/api/paymentmethods/paymentrequestfactory.php b/api/paymentmethods/paymentrequestfactory.php
index 13665c3f5..cee4f027f 100644
--- a/api/paymentmethods/paymentrequestfactory.php
+++ b/api/paymentmethods/paymentrequestfactory.php
@@ -49,7 +49,6 @@ class PaymentRequestFactory
public const REQUEST_TYPE_ALIPAY = 'alipay';
public const REQUEST_TYPE_MULTIBANCO = 'multibanco';
public const REQUEST_TYPE_MBWAY = 'mbway';
- public const REQUEST_TYPE_KNAKEN = 'knaken';
public const REQUEST_TYPE_TWINT = 'twint';
public const REQUEST_TYPE_SWISH = 'swish';
public const REQUEST_TYPE_BIZUM = 'bizum';
@@ -85,7 +84,6 @@ class PaymentRequestFactory
PaymentRequestFactory::REQUEST_TYPE_ALIPAY => 'Alipay',
PaymentRequestFactory::REQUEST_TYPE_MULTIBANCO => 'Multibanco',
PaymentRequestFactory::REQUEST_TYPE_MBWAY => 'Mbway',
- PaymentRequestFactory::REQUEST_TYPE_KNAKEN => 'Knaken',
PaymentRequestFactory::REQUEST_TYPE_TWINT => 'Twint',
PaymentRequestFactory::REQUEST_TYPE_SWISH => 'Swish',
PaymentRequestFactory::REQUEST_TYPE_BIZUM => 'Bizum',
diff --git a/dev/lang/php_de.json b/dev/lang/php_de.json
index 8f1170bd2..1e34ed5ee 100644
--- a/dev/lang/php_de.json
+++ b/dev/lang/php_de.json
@@ -202,7 +202,6 @@
"payment_methods.bizum": "Bizum",
"payment_methods.wero": "Wero",
"payment_methods.wechatpay": "WeChatPay",
- "payment_methods.knaken": "goSettle",
"verification_methods.idin": "iDIN",
"dashboard.pages.payments.displayInCheckout": "Marken-Gruppierung im Checkout",
"dashboard.pages.payments.displayInCheckoutDesc": "Option, wie Marken im Checkout angezeigt werden sollen. Separate: Marken werden im Checkout separat angezeigt.Grouped: Marken werden innerhalb einer Gruppe angezeigt."
diff --git a/dev/lang/php_en.json b/dev/lang/php_en.json
index 6c000bbda..de0c25bff 100644
--- a/dev/lang/php_en.json
+++ b/dev/lang/php_en.json
@@ -207,7 +207,6 @@
"payment_methods.bizum": "Bizum",
"payment_methods.wero": "Wero",
"payment_methods.wechatpay": "WeChatPay",
- "payment_methods.knaken": "goSettle",
"verification_methods.idin": "iDIN",
"dashboard.pages.payments.displayInCheckout": "Group brands in checkout",
"dashboard.pages.payments.displayInCheckoutDesc": "Option for how to show brands in the checkout. Separate: Brands are shown separately in the checkout.Grouped: Brands are shown within one group."
diff --git a/dev/lang/php_fr.json b/dev/lang/php_fr.json
index bd7e0f086..180f74a9a 100644
--- a/dev/lang/php_fr.json
+++ b/dev/lang/php_fr.json
@@ -202,7 +202,6 @@
"payment_methods.bizum": "Bizum",
"payment_methods.wero": "Wero",
"payment_methods.wechatpay": "WeChatPay",
- "payment_methods.knaken": "goSettle",
"verification_methods.idin": "IDIN",
"dashboard.pages.payments.displayInCheckout": "Regroupement des marques au paiement",
"dashboard.pages.payments.displayInCheckoutDesc": "Option pour définir la façon dont les marques sont affichées lors du paiement. Separate : Les marques sont affichées séparément lors du paiement.Grouped : Les marques sont affichées dans un seul groupe."
diff --git a/dev/lang/php_nl.json b/dev/lang/php_nl.json
index cc742f18f..de5a1d3ba 100644
--- a/dev/lang/php_nl.json
+++ b/dev/lang/php_nl.json
@@ -198,7 +198,6 @@
"payment_methods.bizum": "Bizum",
"payment_methods.wero": "Wero",
"payment_methods.wechatpay": "WeChatPay",
- "payment_methods.knaken": "goSettle",
"verification_methods.idin": "iDIN",
"dashboard.pages.payments.displayInCheckout": "Groepering van merken in checkout",
"dashboard.pages.payments.displayInCheckoutDesc": "Optie om te bepalen hoe merken in de checkout worden getoond. Separate: Merken worden afzonderlijk in de checkout getoond.Grouped: Merken worden binnen één groep getoond."
diff --git a/library/checkout/checkout.php b/library/checkout/checkout.php
index 5568cb05f..e6e4a8d8d 100644
--- a/library/checkout/checkout.php
+++ b/library/checkout/checkout.php
@@ -57,7 +57,6 @@ abstract class Checkout
public const CHECKOUT_TYPE_ALIPAY = 'alipay';
public const CHECKOUT_TYPE_MBWAY = 'mbway';
public const CHECKOUT_TYPE_MULTIBANCO = 'multibanco';
- public const CHECKOUT_TYPE_KNAKEN = 'knaken';
public const CHECKOUT_TYPE_BLIK = 'blik';
public const CHECKOUT_TYPE_TWINT = 'twint';
public const CHECKOUT_TYPE_SWISH = 'swish';
@@ -92,7 +91,6 @@ abstract class Checkout
self::CHECKOUT_TYPE_ALIPAY => 'Alipay',
self::CHECKOUT_TYPE_MBWAY => 'Mbway',
self::CHECKOUT_TYPE_MULTIBANCO => 'Multibanco',
- self::CHECKOUT_TYPE_KNAKEN => 'Knaken',
self::CHECKOUT_TYPE_BLIK => 'Blik',
self::CHECKOUT_TYPE_TWINT => 'Twint',
self::CHECKOUT_TYPE_SWISH => 'Swish',
diff --git a/library/checkout/knakencheckout.php b/library/checkout/knakencheckout.php
deleted file mode 100644
index 02d1a057c..000000000
--- a/library/checkout/knakencheckout.php
+++ /dev/null
@@ -1,51 +0,0 @@
-
- * @copyright Copyright (c) Buckaroo B.V.
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
- */
-include_once _PS_MODULE_DIR_ . 'buckaroo3/library/checkout/checkout.php';
-
-if (!defined('_PS_VERSION_')) {
- exit;
-}
-
-class KnakenCheckout extends Checkout
-{
- protected $customVars = [];
-
- final public function setCheckout()
- {
- parent::setCheckout();
- }
-
- public function startPayment()
- {
- $this->payment_response = $this->payment_request->pay($this->customVars);
- }
-
- public function isRedirectRequired()
- {
- return true;
- }
-
- public function isVerifyRequired()
- {
- return false;
- }
-
- protected function initialize()
- {
- $this->payment_request = PaymentRequestFactory::create(PaymentRequestFactory::REQUEST_TYPE_KNAKEN);
- }
-}
diff --git a/src/Repository/RawPaymentMethodRepository.php b/src/Repository/RawPaymentMethodRepository.php
index 9478ec2c9..7716270fc 100644
--- a/src/Repository/RawPaymentMethodRepository.php
+++ b/src/Repository/RawPaymentMethodRepository.php
@@ -147,7 +147,6 @@ private function getPaymentMethodsData()
['name' => 'swish', 'label' => 'Swish', 'icon' => 'Swish.svg', 'template' => '', 'is_payment_method' => '1'],
['name' => 'bizum', 'label' => 'Bizum', 'icon' => 'Bizum.svg', 'template' => '', 'is_payment_method' => '1'],
['name' => 'wero', 'label' => 'Wero', 'icon' => 'Wero.svg', 'template' => '', 'is_payment_method' => '1'],
- ['name' => 'knaken', 'label' => 'goSettle', 'icon' => 'GoSettle.svg', 'template' => '', 'is_payment_method' => '1'],
];
}
diff --git a/tests/Unit/Service/BuckarooKnakenFlowTest.php b/tests/Unit/Service/BuckarooKnakenFlowTest.php
deleted file mode 100644
index 0bb7406ff..000000000
--- a/tests/Unit/Service/BuckarooKnakenFlowTest.php
+++ /dev/null
@@ -1,40 +0,0 @@
- [
- 'min_order_amount' => 0,
- 'max_order_amount' => 0,
- 'frontend_label' => 'Knaken',
- ],
- ];
-
- $service = $this->createFlowServiceForMethod('knaken', $config);
-
- $cart = new class {
- public $id_address_delivery = 1;
- public $id_address_invoice = 1;
- public $id_currency = 1;
-
- public function getOrderTotal($withTaxes, $type)
- {
- return 40.0;
- }
- };
-
- $options = $service->getPaymentOptions($cart);
-
- $this->assertCount(1, $options);
- $this->assertSame('knaken', $options[0]->getModuleName());
- }
-}
-
diff --git a/upgrade/upgrade-4.4.0.php b/upgrade/upgrade-4.4.0.php
index 92c06ced1..4a53a8fe9 100644
--- a/upgrade/upgrade-4.4.0.php
+++ b/upgrade/upgrade-4.4.0.php
@@ -45,7 +45,7 @@ function upgrade_module_4_4_0($object)
$paymentMethodId = Db::getInstance()->Insert_ID();
- // Insert default configuration for Knaken Settle
+ // Insert default configuration for Blik
$blikConfig = [
'mode' => 'off'
];
diff --git a/upgrade/upgrade-5.3.0.php b/upgrade/upgrade-5.3.0.php
new file mode 100644
index 000000000..038bb2239
--- /dev/null
+++ b/upgrade/upgrade-5.3.0.php
@@ -0,0 +1,75 @@
+
+ * @copyright Copyright (c) Buckaroo B.V.
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
+ */
+
+if (!defined('_PS_VERSION_')) {
+ exit;
+}
+
+/**
+ * Removes the GoSettle (knaken) payment method from existing installations.
+ *
+ * @param object $object Module instance
+ *
+ * @return bool
+ */
+function upgrade_module_5_2_1($object)
+{
+ $db = Db::getInstance();
+
+ $sql = new DbQuery();
+ $sql->select('id');
+ $sql->from('bk_payment_methods');
+ $sql->where('name = "knaken"');
+
+ $paymentMethodId = (int) $db->getValue($sql);
+
+ if ($paymentMethodId > 0) {
+ $db->execute(
+ 'DELETE FROM `' . _DB_PREFIX_ . 'bk_configuration` WHERE configurable_id = ' . $paymentMethodId
+ );
+
+ $orderings = $db->executeS('SELECT id, value FROM `' . _DB_PREFIX_ . 'bk_ordering`');
+ if (is_array($orderings)) {
+ foreach ($orderings as $row) {
+ $ids = json_decode($row['value'], true);
+ if (!is_array($ids)) {
+ continue;
+ }
+
+ $filtered = array_values(array_filter($ids, function ($id) use ($paymentMethodId) {
+ return (int) $id !== $paymentMethodId;
+ }));
+
+ $db->update(
+ 'bk_ordering',
+ [
+ 'value' => pSQL(json_encode($filtered)),
+ ],
+ 'id = ' . (int) $row['id']
+ );
+ }
+ }
+
+ $db->execute(
+ 'DELETE FROM `' . _DB_PREFIX_ . 'bk_payment_methods` WHERE id = ' . $paymentMethodId
+ );
+ }
+
+ $db->execute('DELETE FROM `' . _DB_PREFIX_ . 'bk_payment_methods` WHERE name = "knaken"');
+
+ return true;
+}
diff --git a/views/img/buckaroo/Payment methods/SVG/GoSettle.svg b/views/img/buckaroo/Payment methods/SVG/GoSettle.svg
deleted file mode 100644
index 9833ff9cb..000000000
--- a/views/img/buckaroo/Payment methods/SVG/GoSettle.svg
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
diff --git a/views/img/buckaroo/Payment methods/SVG/Knaken.svg b/views/img/buckaroo/Payment methods/SVG/Knaken.svg
deleted file mode 100644
index cbaa13192..000000000
--- a/views/img/buckaroo/Payment methods/SVG/Knaken.svg
+++ /dev/null
@@ -1,497 +0,0 @@
-
-
-
diff --git a/views/js/buckaroo.vue.js b/views/js/buckaroo.vue.js
index 1347a3c1c..abb3943b3 100644
--- a/views/js/buckaroo.vue.js
+++ b/views/js/buckaroo.vue.js
@@ -3,7 +3,7 @@ Even setting a specific payment method order for a specific country is possible.
This so you can highlight local payment methods for customers across different countries.`,"dashboard.pages.order_payment_methods.how_to_order_payment_method":"How to change the order of the payment methods in the checkout","dashboard.pages.order_payment_methods.if_you_have_any_questions":"If you have any questions about this plugin from Buckaroo, then you can contact us by e-mail:","dashboard.pages.order_payment_methods.order_payment_methods":"Order Payment Methods","dashboard.pages.order_payment_methods.order_payment_methods_label":"Change the order of payment methods.","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Payment method order updated successfully.","dashboard.pages.order_payment_methods.search_country":"Search country","dashboard.pages.order_payment_methods.something_went_wrong":"Something went wrong.","dashboard.pages.order_payment_methods.step_one":`First select the country for which you want to change the display order of the payment methods.
Or you can select “All Countries” to use a specific order of the payment methods globally.`,"dashboard.pages.order_payment_methods.step_three":"Save your chosen payment methods order and check if the payment methods are showed in the correct order in the checkout of your webshop.","dashboard.pages.order_payment_methods.step_two":`Drag and drop the payment methods in the order of your liking.
This can be done by dragging them from top to bottom with the arrow icons.`,"dashboard.pages.payments.add":"Add","dashboard.pages.payments.add_custom_giftcard":"Add custom giftcard","dashboard.pages.payments.all_countries":"All Countries","dashboard.pages.payments.allowed_creditcards":"Allowed Credit- and debitcards","dashboard.pages.payments.allowed_creditcards_label":"Only selected credit- or debitcards will be showed for this method","dashboard.pages.payments.allowed_giftcards":"Allowed giftcards","dashboard.pages.payments.allowed_giftcards_label":"Only selected giftcards will this method be shown","dashboard.pages.payments.allowed_methods":"Allowed payment methods","dashboard.pages.payments.clear":"Clear","dashboard.pages.payments.client_side":"Client Side Encryption","dashboard.pages.payments.client_side_label":"Enable or disable client sided payment method behavior.","dashboard.pages.payments.configure":"Configure","dashboard.pages.payments.configure_your_payment_method_settings":"Configure your payment method settings","dashboard.pages.payments.configure_your_payment_name_settings":"Configure your {payment_name} settings","dashboard.pages.payments.configure_your_verification_method_settings":"Configure your verification method settings","dashboard.pages.payments.configure_your_verification_name_settings":"Configure your {verification_name} settings","dashboard.pages.payments.countries":"Countries","dashboard.pages.payments.countries_label":"The payment method will only be showed for selected countries. You can leave this setting empty to display the payment method for all countries.","dashboard.pages.payments.custom_giftcard":"Custom giftcard","dashboard.pages.payments.custom_icon_url":"Custom Icon URL","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Business-to-Business","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"Business-to-consumer","dashboard.pages.payments.customer.type.both":"Both","dashboard.pages.payments.customer.type_label":"Customer Type","dashboard.pages.payments.customer_type":"Customer type","dashboard.pages.payments.display_type":"Button Display Type","dashboard.pages.payments.display_type_label":"This setting determines how the bank selection for this payment method will be displayed in the checkout. You can choose between radio buttons or a dropdown selection.","dashboard.pages.payments.display_types.dropdown":"Dropdown","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Due date (in days)","dashboard.pages.payments.edit":"Edit","dashboard.pages.payments.enter_giftcard_details":"Enter giftcard details","dashboard.pages.payments.front_label":"Front Label","dashboard.pages.payments.front_label_label":"This name will be displayed for this payment method in the checkout. When this field is empty, the standard payment method name will be displayed.","dashboard.pages.payments.giftcard_name":"Giftcard Name","dashboard.pages.payments.idin.display_mode":"iDIN mode:","dashboard.pages.payments.idin.display_mode.global":"Global","dashboard.pages.payments.idin.display_mode.product":"Specific products","dashboard.pages.payments.idin.display_mode_label":`With this setting you can select whether iDIN is enabled for all the products in the store (globally) or only for specific products.
-For specific products you also need to enable it for the products in the PrestaShop catalog.`,"dashboard.pages.payments.in3.version.label":"In3 version","dashboard.pages.payments.in3.version.v2":"V2 (Capayable/In3)","dashboard.pages.payments.in3.version.v3":"V3 (In3)","dashboard.pages.payments.max_order_amount_b2c":"Maximum B2B order amount","dashboard.pages.payments.maximum_order_amount":"Maximum order amount","dashboard.pages.payments.min_order_amount_b2b":"Minimum B2B order amount","dashboard.pages.payments.max_order_amount_b2b":"Maximum B2B order amount","dashboard.pages.payments.minimum_order_amount":"Minimum order amount","dashboard.pages.payments.mode":"Mode","dashboard.pages.payments.mode_label":'When set to "Live" you can do actual payments. When set to "Testing" you can do test transactions. This payment method will not appear when it is set to "Off".',"dashboard.pages.payments.modes_settings.live":"Live","dashboard.pages.payments.modes_settings.off":"Off","dashboard.pages.payments.modes_settings.test":"Test","dashboard.pages.payments.order_amount_allowed":"Order amount allowed","dashboard.pages.payments.order_amount_allowed_label":"This method will only be shown when this condition is met.","dashboard.pages.payments.payment_fee_incl_vat":"Payment fee incl. VAT","dashboard.pages.payments.payment_fee_incl_vat_label":"You can apply a fee when the customer selects this payment method. Choose either a fixed fee (e.g., 1.50) or a percentage-based fee (e.g., 3%). If the value contains %, it will be calculated as a percentage fee. Decimals should be separated by a dot (.).","dashboard.pages.payments.payment_methods":"Payments methods","dashboard.pages.payments.remove":"Remove","dashboard.pages.payments.save":"Save","dashboard.pages.payments.search_country":"Search Country","dashboard.pages.payments.search_creditcard":"Search Credit- or debitcard","dashboard.pages.payments.search_giftcard":"Search Giftcard","dashboard.pages.payments.seller_protection":"Seller protection","dashboard.pages.payments.seller_protection_disabled":"No","dashboard.pages.payments.seller_protection_enable":"Enable PayPal Seller Protection","dashboard.pages.payments.seller_protection_enabled":"Yes","dashboard.pages.payments.send_email_instruction":"Send payment instruction email","dashboard.pages.payments.send_email_instruction_no":"No","dashboard.pages.payments.send_email_instruction_yes":"Yes","dashboard.pages.payments.send_email_merchant":"Merchant sends email","dashboard.pages.payments.seperate_authorize_and_capture":"Seperate authorize and capture","dashboard.pages.payments.seperate_authorize_and_capture_label":"When this option is enabled you have to manually capture the credit- or debitcard payment.","dashboard.pages.payments.googlepay.merchant_details":"Google Pay merchant details","dashboard.pages.payments.googlepay.merchant_name":"Merchant name","dashboard.pages.payments.googlepay.merchant_id":"Google Merchant ID","dashboard.pages.payments.googlepay.gateway_merchant_id":"Gateway Merchant ID","dashboard.pages.payments.service_code":"Service Code","dashboard.pages.payments.service_code_label":"After you request your custom giftcard by Intersolve you will receive an email about your service code. If you have any questions about this do not hesitate to mail us at ","dashboard.pages.payments.settings":"Settings","dashboard.pages.payments.show_country_number_and_more":"and {country_number} more...","dashboard.pages.payments.show_less":"Show less","dashboard.pages.payments.vat_type_for_wrap":"Vat type for gift wrapping","dashboard.pages.payments.vat_type_for_wrap_select":"Please select vat type for gift wrapping","dashboard.pages.payments.verification_methods":"Verification methods","dashboard.pages.settings.add":"Add","dashboard.pages.settings.advance_settings":"Advanced Settings","dashboard.pages.settings.checkout_url":"Checkout URL","dashboard.pages.settings.checkout_url_explanation":"When this field is left empty, the customer will return to the default PrestaShop checkout page.","dashboard.pages.settings.checkout_url_label":"Set a custom checkout URL after the customer cancel the payment or something went wrong during the process.","dashboard.pages.settings.credentials":"Credentials","dashboard.pages.settings.credentials_label":"Get your Buckaroo credentials from the Buckaroo Plaza","dashboard.pages.settings.custom_scripts":"Custom scripts","dashboard.pages.settings.custom_scripts_label":"Add custom javascript or css to your checkout.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Example","dashboard.pages.settings.explanation_intro":"Welcome to the configuration panel of the Buckaroo Payment app for your PrestaShop webshop. In this panel you can set the app completely to your liking. Below you will find the steps to configue the settings. For further questions, please refer to our documentation page.","dashboard.pages.settings.generate_credit_slip":"Generate a Credit Slip","dashboard.pages.settings.generate_credit_slip_label":"Whether a credit note should be generated.","dashboard.pages.settings.generate_negative_payments":"Create Negative Payments on Refund","dashboard.pages.settings.generate_negative_payments_label":"Whether a negative payment does also need to be created when performing a refund.","dashboard.pages.settings.generate_voucher":"Generate a Voucher","dashboard.pages.settings.generate_voucher_label":"Whether a voucher should be generated.","dashboard.pages.settings.hide_advance_settings":"Hide Advanced Settings","dashboard.pages.settings.if_you_have_any_questions":"If you have any questions about the above, you can contact us by email:","dashboard.pages.settings.if_you_have_any_questions_link":" or phone ","dashboard.pages.settings.mode":"Mode","dashboard.pages.settings.mode_label":"Easily change the mode","dashboard.pages.settings.no_im_testing":"No, I'm Testing","dashboard.pages.settings.order_number":"Order number","dashboard.pages.settings.order_number2":"order_number","dashboard.pages.settings.refund_conf":"Automatic refunds via Buckaroo","dashboard.pages.settings.refund_conf_label":"Enable/disable automatic refunds via Buckaroo when a refund from PrestaShop is inititated.","dashboard.pages.settings.re_stock_products":"Re-stock Products","dashboard.pages.settings.re_stock_products_label":"Whether refunded products should be returned to inventory (increasing the quantity in stock).","dashboard.pages.settings.refunds":"Refunds","dashboard.pages.settings.refunds_label":"Refund Description","dashboard.pages.settings.refunds_label_explanation":"This description is used for the refunds and will be visible in Buckaroo and on the bank statement of the consumer. We recommend using the webshop name so customers can easily recognize the payment.","dashboard.pages.settings.refunds_label_label":"When enabled you can do (partial) refunds directly from your PrestaShop admin area Read more","dashboard.pages.settings.payment_fee":"Payment Fees","dashboard.pages.settings.payment_fee_description":"Here, you can configure various payment fee options, including setting the fee percentage and customizing the fee name for example.","dashboard.pages.settings.payment_fee_percentage_mode":"Fee percentage mode","dashboard.pages.settings.payment_fee_percentage_mode_description":"This setting only applies to percentage-based Buckaroo fees. Please choose over which amount the fee percentage is calculated.","dashboard.pages.settings.subtotal":"Subtotal","dashboard.pages.settings.subtotal_incl_tax":"Subtotal incl. tax","dashboard.pages.settings.payment_fee_frontend_label":"Payment fee frontend label","dashboard.pages.settings.payment_fee_frontend_label_description":"This label will be displayed next to the fee on the checkout, order, invoice and creditmemo pages and pdfs.","dashboard.pages.settings.remove":"Remove","dashboard.pages.settings.return_url":"Return URL","dashboard.pages.settings.return_url_explanation":"When this field is left empty, the customer will return to the default PrestaShop confirmation page.","dashboard.pages.settings.return_url_label":"Set a custom return URL after the customer finishes the payment.","dashboard.pages.settings.save":"Save","dashboard.pages.settings.secret_key":"Secret key","dashboard.pages.settings.settings":"Settings","dashboard.pages.settings.settings_label":"Configure your settings","dashboard.pages.settings.settings_successfully_updated":"Settings successfully updated.","dashboard.pages.settings.shop_name":"Shop name","dashboard.pages.settings.shop_name2":"shop_name","dashboard.pages.settings.step_five":"Start testing, when testing is oke you can start LIVE transactions","dashboard.pages.settings.step_four":"Configure advanced settings & payment methods","dashboard.pages.settings.step_one":"Fill in your websitekey","dashboard.pages.settings.step_three":"Click on ‘test connection’, when oke proceed to step 4.","dashboard.pages.settings.step_two":"Fill in your secretkey","dashboard.pages.settings.successfully_verified_the_credentials":"Successfully verified the credentials!","dashboard.pages.settings.test_connection":"Test Connection","dashboard.pages.settings.the_credentials_are_not_valid":"The credentials are not valid!","dashboard.pages.settings.transaction_description":"Transaction Description","dashboard.pages.settings.transaction_description_label":'Transaction description can be filled with static text and tags like: {order_number} and {shop_name}.',"dashboard.pages.settings.website_key":"Website key","dashboard.pages.settings.welcome_to_buckaroo":"Welcome to Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"When your shop is not live yet","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Yes, I'm ready to receive payments","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Your shop is live and ready to receive real payments","payment_methods.afterpay":"Riverty","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Pay","payment_methods.googlepay":"Google Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Billink","payment_methods.blik":"Blik","payment_methods.creditcard":"Cards","payment_methods.eps":"EPS","payment_methods.giftcard":"Giftcard","payment_methods.ideal":"iDEAL | Wero","payment_methods.idin":"iDIN","payment_methods.in3":"In3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"MB WAY","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"PayByBank","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"PayPal","payment_methods.payperemail":"PayPerEmail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"SEPA Direct Debit","payment_methods.transfer":"Transfer","payment_methods.trustly":"Trustly","payment_methods.twint":"Twint","payment_methods.swish":"Swish","payment_methods.bizum":"Bizum","payment_methods.wero":"Wero","payment_methods.wechatpay":"WeChatPay","payment_methods.knaken":"goSettle","verification_methods.idin":"iDIN","dashboard.pages.payments.displayInCheckout":"Group brands in checkout","dashboard.pages.payments.displayInCheckoutDesc":"Option for how to show brands in the checkout. Separate: Brands are shown separately in the checkout.Grouped: Brands are shown within one group."},_e={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"Er is een fout opgetreden tijdens het verwerken van de transactie: Je kunt niet meer cadeaukaarten gebruiken","buckaroo.response.invalid_parameter_originaltransaction":"Ongeldige parameter originaltransaction.","dashboard.channel_selector.select_channel":"Selecteer Kanaal","dashboard.channel_selector.select_channel_label":"Elk kanaal heeft zijn eigen configuratie-instellingen.","dashboard.country_select.search_countries":"Zoek Landen","dashboard.menu.channel":"Kanaal","dashboard.menu.order_payment_methods":"Betaalmethoden Volgorde","dashboard.menu.payment_methods":"Betaalmethoden","dashboard.menu.settings":"Instellingen","dashboard.menu.verification_methods":"Verificatiemethoden","dashboard.pages.order_payment_methods.all_countries":"Alle landen","dashboard.pages.order_payment_methods.explanation_intro":"Om de betaalmethoden per land in de juiste volgorde in te stellen, dient u aan de linkerkant van dit scherm het gewenste land te selecteren. Uw krijgt dan een overzicht van de betaalmethoden die voor dat land 'aan' staan. U kunt vervolgens de betaalmethoden in de juiste volgorde zetten door te slepen.","dashboard.pages.order_payment_methods.how_to_order_payment_method":"Hoe u uw betaalmethode volgorde aan kunt passen","dashboard.pages.order_payment_methods.if_you_have_any_questions":"Heeft u vragen over deze plugin van Buckaroo, dan kunt u contact met ons opnemen via e-mail:","dashboard.pages.order_payment_methods.order_payment_methods":"Betaalmethode volgorde","dashboard.pages.order_payment_methods.order_payment_methods_label":"Wijzig de volgorde van betaalmethoden","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Betaalmethoden volgorde succesvol geüpdatet.","dashboard.pages.order_payment_methods.search_country":"Zoek land","dashboard.pages.order_payment_methods.something_went_wrong":"Er is iets fout gegaan.","dashboard.pages.order_payment_methods.step_one":"Selecteer het land waarvoor u de volgorde van de betaalmethoden wilt wijzigen.","dashboard.pages.order_payment_methods.step_three":"Sla de instellingen op en controleer in uw webshop (checkout) of alles correct weergeven wordt.","dashboard.pages.order_payment_methods.step_two":"Sleep de betaalmethoden in de volgorde van uw voorkeur.","dashboard.pages.payments.add":"Toevoegen","dashboard.pages.payments.add_custom_giftcard":"Eigen cadeaukaart toevoegen","dashboard.pages.payments.all_countries":"Alle landen","dashboard.pages.payments.allowed_creditcards":"Toegestane Cards","dashboard.pages.payments.allowed_creditcards_label":"Alleen geselecteerde credit- of debitcards worden op deze manier getoond","dashboard.pages.payments.allowed_giftcards":"Toegestane cadeaukaarten","dashboard.pages.payments.allowed_giftcards_label":"Alleen geselecteerde cadeaukaarten worden op deze manier getoond","dashboard.pages.payments.allowed_methods":"Toegestane betaalmethoden","dashboard.pages.payments.clear":"Resetten","dashboard.pages.payments.client_side":"Cliënt Side Encryption","dashboard.pages.payments.client_side_label":"Gedrag van cliëntzijdige betaalmethode in- of uitschakelen.","dashboard.pages.payments.configure":"Configuratie","dashboard.pages.payments.configure_your_payment_method_settings":"Configureer uw betaalmethoden instellingen","dashboard.pages.payments.configure_your_payment_name_settings":"Configureer uw instellingen voor {payment_name}","dashboard.pages.payments.configure_your_verification_method_settings":"Configureer uw instellingen voor de verificatiemethoden","dashboard.pages.payments.configure_your_verification_name_settings":"Configureer uw instellingen voor {verification_name}","dashboard.pages.payments.countries":"Landen","dashboard.pages.payments.countries_label":"Alleen geselecteerde landen zullen deze betaalmethode tonen, laat dit veld leeg om de methode voor alle landen in te schakelen.","dashboard.pages.payments.custom_giftcard":"Eigen cadeaukaart","dashboard.pages.payments.custom_icon_url":"Aangepaste cadeaukaart logo URL","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Business-to-Business","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"Business-to-consumer","dashboard.pages.payments.customer.type.both":"Beide","dashboard.pages.payments.customer.type_label":"Klanttype","dashboard.pages.payments.customer_type":"Klant type","dashboard.pages.payments.display_type":"Weergavetype","dashboard.pages.payments.display_type_label":"Deze instelling bepaalt hoe de bankselectie voor deze betaalmethode wordt weergegeven bij het afrekenen. U kunt kiezen tussen keuzerondjes of een vervolgkeuzelijst.","dashboard.pages.payments.display_types.dropdown":"Laten vallen","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Vervaldatum (in dagen)","dashboard.pages.payments.edit":"Aanpassen","dashboard.pages.payments.enter_giftcard_details":"Voer cadeaukaartgegevens in","dashboard.pages.payments.front_label":"Betaalmethode naam","dashboard.pages.payments.front_label_label":"Deze naam wordt weergegeven in de checkout.","dashboard.pages.payments.giftcard_name":"Cadeaukaart Naam","dashboard.pages.payments.idin.display_mode":"iDIN modus:","dashboard.pages.payments.idin.display_mode.global":"Globaal","dashboard.pages.payments.idin.display_mode.product":"Specifieke producten","dashboard.pages.payments.idin.display_mode_label":"Met deze instelling kunt u selecteren of iDIN is ingeschakeld voor alle producten in de winkel (globaal) of alleen voor specifieke producten. Voor specifieke producten dient u het ook in te schakelen voor de producten in de PrestaShop-catalogus.","dashboard.pages.payments.in3.version.label":"In3 versie","dashboard.pages.payments.in3.version.v2":"V2 (Capayable/In3)","dashboard.pages.payments.in3.version.v3":"V3 (In3)","dashboard.pages.payments.max_order_amount_b2c":"Maximale B2B bestelbedrag","dashboard.pages.payments.maximum_order_amount":"Maximaal toegestane bestelbedrag","dashboard.pages.payments.min_order_amount_b2b":"Minimale B2B bestelbedrag","dashboard.pages.payments.max_order_amount_b2b":"Maximaal B2B toegestane bestelbedrag","dashboard.pages.payments.minimum_order_amount":"Minimaal toegestane bestelbedrag","dashboard.pages.payments.mode":"Modus","dashboard.pages.payments.mode_label":'Indien ingesteld op "Live", dan kunt u daadwerkelijke betalingen doen. Indien ingesteld op "Test", dan kun je testtransacties doen. De betaalmethode verschijnt niet als deze op "Uit" staat.',"dashboard.pages.payments.modes_settings.live":"Live","dashboard.pages.payments.modes_settings.off":"Uit","dashboard.pages.payments.modes_settings.test":"Test","dashboard.pages.payments.order_amount_allowed":"Bestelbedrag restricties","dashboard.pages.payments.order_amount_allowed_label":"Deze methode wordt alleen weergegeven als aan deze voorwaarde is voldaan.","dashboard.pages.payments.payment_fee_incl_vat":"Betaalkosten incl. BTW","dashboard.pages.payments.payment_fee_incl_vat_label":"U kunt kosten in rekening brengen wanneer de klant deze betaalmethode selecteert. Kies voor een vast bedrag (bijv. 1,50) of een percentage-gebaseerd bedrag (bijv. 3%). Als de waarde een % bevat, wordt deze berekend als een percentage kost. Decimalen moeten worden gescheiden door een punt (.).","dashboard.pages.payments.payment_methods":"Betaalmethoden","dashboard.pages.payments.remove":"Verwijderen","dashboard.pages.payments.save":"Opslaan","dashboard.pages.payments.search_country":"Zoek Land","dashboard.pages.payments.search_creditcard":"Zoek Credit- of debitcard","dashboard.pages.payments.search_giftcard":"Zoek Cadeaukaart","dashboard.pages.payments.seller_protection":"Verkopersbescherming","dashboard.pages.payments.seller_protection_disabled":"Nee","dashboard.pages.payments.seller_protection_enable":"Schakel de PayPal Verkopersbescherming in","dashboard.pages.payments.seller_protection_enabled":"Ja","dashboard.pages.payments.send_email_instruction":"Stuur betalingsinstructie e-mail","dashboard.pages.payments.send_email_instruction_no":"Nee","dashboard.pages.payments.send_email_instruction_yes":"Ja","dashboard.pages.payments.send_email_merchant":"Merchant stuurt e-mail","dashboard.pages.payments.seperate_authorize_and_capture":"Losse authorize en capture","dashboard.pages.payments.seperate_authorize_and_capture_label":"Wanneer deze optie is ingeschakeld, dient u de betaling van de credit- of debitcard handmatig vast te leggen (capture).","dashboard.pages.payments.service_code":"Service Code","dashboard.pages.payments.service_code_label":"Nadat u uw persoonlijke cadeaukaart bij Intersolve heeft aangevraagd, ontvangt u een e-mail over uw servicecode. Als u hierover vragen heeft, aarzel dan niet om ons te mailen op","dashboard.pages.payments.settings":"Instellingen","dashboard.pages.payments.show_country_number_and_more":"en {country_number} meer...","dashboard.pages.payments.show_less":"Minder tonen","dashboard.pages.payments.vat_type_for_wrap":"BTW-type voor cadeauverpakking","dashboard.pages.payments.vat_type_for_wrap_select":"Selecteer BTW-type voor cadeauverpakking","dashboard.pages.payments.verification_methods":"Verificatiemethoden","dashboard.pages.settings.add":"Toevoegen","dashboard.pages.settings.advance_settings":"Geavanceerde Instellingen","dashboard.pages.settings.checkout_url":"Cancel-URL","dashboard.pages.settings.checkout_url_explanation":"Wanneer dit veld leeg wordt gelaten, keert de klant terug naar de standaard PrestaShop afrekenpagina.","dashboard.pages.settings.checkout_url_label":"Stel een aangepaste cancel-URL in nadat de klant de betaling heeft geannuleerd of als er iets mis is gegaan tijdens het proces.","dashboard.pages.settings.credentials":"Buckaroo gegevens","dashboard.pages.settings.credentials_label":"Haal uw Buckaroo gegevens op uit de Buckaroo Plaza","dashboard.pages.settings.custom_scripts":"Aangepaste scripts","dashboard.pages.settings.custom_scripts_label":"Voeg aangepaste javascript of css code toe aan uw checkout.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Voorbeeld","dashboard.pages.settings.explanation_intro":"Welkom bij het configuratiescherm van de Buckaroo Payment app voor jouw PrestaShop webshop. In dit scherm kunt u de app helemaal naar wens instellen. Hieronder vind u de stappen om de instellingen te configureren. Voor verdere vragen verwijzen wij u naar onze documentatie pagina.","dashboard.pages.settings.generate_credit_slip":"Een creditnota genereren","dashboard.pages.settings.generate_credit_slip_label":"Of er een creditnota moet worden gegenereerd.","dashboard.pages.settings.generate_negative_payments":"Een negatieve betaling bij terugbetalingen aanmaken","dashboard.pages.settings.generate_negative_payments_label":"Of er ook een negatieve betaling moet worden gecreëerd bij het uitvoeren van een terugbetaling.","dashboard.pages.settings.generate_voucher":"Een voucher genereren","dashboard.pages.settings.generate_voucher_label":"Of er een voucher moet worden gegenereerd.","dashboard.pages.settings.hide_advance_settings":"Geavanceerde Instellingen Verbergen","dashboard.pages.settings.mode":"Modus","dashboard.pages.settings.mode_label":"Verander eenvoudig de modus","dashboard.pages.settings.no_im_testing":"Nee, ik wil testen","dashboard.pages.settings.order_number":"Bestellingsnummer","dashboard.pages.settings.order_number2":"bestellingsnummer","dashboard.pages.settings.refund_conf":"Automatische terugbetalingen via Buckaroo","dashboard.pages.settings.refund_conf_label":"Automatische terugbetalingen via Buckaroo in- of uitschakelen wanneer een terugbetaling vanuit PrestaShop wordt gestart.","dashboard.pages.settings.re_stock_products":"De voorraad aanvullen bij retourproducten","dashboard.pages.settings.re_stock_products_label":"Of terugbetaalde producten moeten worden teruggeplaatst in de voorraad (waardoor de voorraadhoeveelheid wordt verhoogd).","dashboard.pages.settings.refunds":"Terugbetalingen","dashboard.pages.settings.refunds_label":"Terugbetaling omschrijving","dashboard.pages.settings.refunds_label_explanation":"Deze omschrijving wordt gebruikt bij de terugbetaling en zal zichtbaar zijn in Buckaroo en op het bankafschrift van de consument. Wij adviseren om de webshopnaam te gebruiken, zodat klanten de betaling gemakkelijk kunnen herkennen.","dashboard.pages.settings.refunds_label_label":"Indien ingeschakeld, kunt u (gedeeltelijke) terugbetalingen rechtstreeks vanuit uw PrestaShop-beheergebied uitvoeren Read more","dashboard.pages.settings.payment_fee":"Transactiekosten","dashboard.pages.settings.payment_fee_description":"Hier kun je verschillende opties voor betalingskosten configureren, zoals het instellen van het kostenpercentage en het aanpassen van de naam van de kosten.","dashboard.pages.settings.payment_fee_percentage_mode":"Transactiekosten percentage modus","dashboard.pages.settings.payment_fee_percentage_mode_description":"Deze instelling is alleen van toepassing op percentage-gebaseerde Buckaroo-kosten. Kies over welk bedrag het kostenpercentage wordt berekend.","dashboard.pages.settings.subtotal":"Subtotaal","dashboard.pages.settings.subtotal_incl_tax":"Subtotaal incl. btw","dashboard.pages.settings.payment_fee_frontend_label":"Naam voor transactiekosten in de checkout","dashboard.pages.settings.payment_fee_frontend_label_description":"Dit label wordt weergegeven naast de kosten op de afreken-, bestel-, factuur- en creditnota-pagina's en pdf's.","dashboard.pages.settings.remove":"Verwijder","dashboard.pages.settings.return_url":"Return-URL","dashboard.pages.settings.return_url_explanation":"Wanneer dit veld leeg wordt gelaten, keert de klant terug naar de standaard PrestaShop bevestigingspagina.","dashboard.pages.settings.return_url_label":"Stel een aangepaste return-URL in nadat de klant de betaling heeft voltooid.","dashboard.pages.settings.save":"Opslaan","dashboard.pages.settings.secret_key":"Secret key","dashboard.pages.settings.settings":"Instellingen","dashboard.pages.settings.settings_label":"Configureer uw instellingen","dashboard.pages.settings.settings_successfully_updated":"Instellingen succesvol bijgewerkt.","dashboard.pages.settings.shop_name":"Winkelnaam","dashboard.pages.settings.shop_name2":"winkelnaam","dashboard.pages.settings.step_five":"Begin met testen, als het testen goed gaat, kunt u LIVE transacties starten","dashboard.pages.settings.step_four":"Configureer de geavanceerde instellingen & Betaalmethodes","dashboard.pages.settings.step_three":"Klik op ‘test verbinding’, indien correct ga verder naar stap 4.","dashboard.pages.settings.successfully_verified_the_credentials":"De gegevens zijn succesvol geverifieerd!","dashboard.pages.settings.test_connection":"Test Gegevens","dashboard.pages.settings.the_credentials_are_not_valid":"De gegevens zijn onjuist!","dashboard.pages.settings.transaction_description":"Transactie Beschrijving","dashboard.pages.settings.transaction_description_label":'De transactiebeschrijving kan worden gevuld met een statische tekst en tags zoals: {order_number} en {shop_name}.',"dashboard.pages.settings.website_key":"Website key","dashboard.pages.settings.welcome_to_buckaroo":"Welkom bij Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"Wanneer u webwinkel nog niet live is","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Ja, ik ben klaar om betalingen te ontvangen","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Uw webwinkel is live en klaar om echte betalingen te ontvangen","payment_methods.afterpay":"Riverty","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Pay","payment_methods.googlepay":"Google Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Billink","payment_methods.blik":"Blik","payment_methods.creditcard":"Cards","payment_methods.eps":"EPS","payment_methods.giftcard":"Giftcard","payment_methods.ideal":"iDEAL | Wero","payment_methods.idin":"iDIN","payment_methods.in3":"In3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"MB WAY","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"PayByBank","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"PayPal","payment_methods.payperemail":"PayPerEmail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"SEPA Direct Debit","payment_methods.transfer":"Transfer","payment_methods.trustly":"Trustly","payment_methods.twint":"Twint","payment_methods.swish":"Swish","payment_methods.bizum":"Bizum","payment_methods.wero":"Wero","payment_methods.wechatpay":"WeChatPay","payment_methods.knaken":"goSettle","verification_methods.idin":"iDIN","dashboard.pages.payments.displayInCheckout":"Groepering van merken in checkout","dashboard.pages.payments.displayInCheckoutDesc":"Optie om te bepalen hoe merken in de checkout worden getoond. Separate: Merken worden afzonderlijk in de checkout getoond.Grouped: Merken worden binnen één groep getoond."},be={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"Une erreur s'est produite lors du traitement de la transaction : impossible de payer davantage avec des cartes cadeaux","buckaroo.response.invalid_parameter_originaltransaction":"Paramètre originaltransaction non valide.","dashboard.channel_selector.select_channel":"Sélectionnez la chaîne","dashboard.channel_selector.select_channel_label":"Chaque canal a ses paramètres de configuration.","dashboard.country_select.search_countries":"Rechercher des pays","dashboard.menu.channel":"Canal","dashboard.menu.order_payment_methods":"Modes de paiement des commandes","dashboard.menu.payment_methods":"Méthodes de payement","dashboard.menu.settings":"Paramètres","dashboard.menu.verification_methods":"Méthodes de vérification","dashboard.pages.order_payment_methods.all_countries":"Tous les pays","dashboard.pages.order_payment_methods.explanation_intro":"Vous pouvez facilement modifier l'ordre des modes de paiement en les faisant glisser au bon endroit, de haut en bas.","dashboard.pages.order_payment_methods.how_to_order_payment_method":"Comment modifier l'ordre des modes de paiement lors du paiement","dashboard.pages.order_payment_methods.if_you_have_any_questions":"Si vous avez des questions sur ce plugin de Buckaroo, vous pouvez nous contacter par e-mail :","dashboard.pages.order_payment_methods.order_payment_methods":"Modes de paiement des commandes","dashboard.pages.order_payment_methods.order_payment_methods_label":"Modifiez l'ordre des modes de paiement.","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Commande de mode de paiement mise à jour avec succès.","dashboard.pages.order_payment_methods.search_country":"Rechercher un pays","dashboard.pages.order_payment_methods.something_went_wrong":"Quelque chose s'est mal passé.","dashboard.pages.order_payment_methods.step_one":"Sélectionnez d'abord le pays pour lequel vous souhaitez modifier l'ordre d'affichage des moyens de paiement.","dashboard.pages.order_payment_methods.step_three":"Enregistrez la commande des modes de paiement choisis et vérifiez si les modes de paiement s'affichent dans le bon ordre lors du paiement de votre boutique en ligne.","dashboard.pages.order_payment_methods.step_two":"Faites glisser et déposez les modes de paiement dans l'ordre de votre choix.","dashboard.pages.payments.add":"Ajouter","dashboard.pages.payments.add_custom_giftcard":"Ajouter une carte cadeau personnalisée","dashboard.pages.payments.all_countries":"Tous les pays","dashboard.pages.payments.allowed_creditcards":"Cartes de crédit et de débit autorisées","dashboard.pages.payments.allowed_creditcards_label":"Seules les cartes de crédit ou de débit sélectionnées seront affichées pour cette méthode","dashboard.pages.payments.allowed_giftcards":"Cartes cadeaux autorisées","dashboard.pages.payments.allowed_giftcards_label":"Seules les cartes cadeaux sélectionnées cette méthode sera affichée","dashboard.pages.payments.allowed_methods":"Modes de paiement autorisés","dashboard.pages.payments.clear":"Clair","dashboard.pages.payments.client_side":"Chiffrement côté client","dashboard.pages.payments.client_side_label":"Activez ou désactivez le comportement du mode de paiement côté client.","dashboard.pages.payments.configure":"Configurer","dashboard.pages.payments.configure_your_payment_method_settings":"Configurez les paramètres de votre mode de paiement","dashboard.pages.payments.configure_your_payment_name_settings":"Configurez vos paramètres {payment_name}","dashboard.pages.payments.configure_your_verification_method_settings":"Configurez les paramètres de votre méthode de vérification","dashboard.pages.payments.configure_your_verification_name_settings":"Configurez vos paramètres {verification_name}","dashboard.pages.payments.countries":"Des pays","dashboard.pages.payments.countries_label":"Le mode de paiement ne sera affiché que pour les pays sélectionnés. ","dashboard.pages.payments.custom_giftcard":"Carte cadeau personnalisée","dashboard.pages.payments.custom_icon_url":"URL de l'icône personnalisée","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Entreprise à entreprise","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"D'entreprise à consommateur","dashboard.pages.payments.customer.type.both":"Les deux","dashboard.pages.payments.customer.type_label":"Type de client","dashboard.pages.payments.customer_type":"Type de client","dashboard.pages.payments.display_type":"Type d'affichage du bouton","dashboard.pages.payments.display_type_label":"Ce paramètre détermine la manière dont la sélection de banque pour ce mode de paiement sera affichée lors du paiement. Vous pouvez choisir entre des boutons radio ou une sélection déroulante.","dashboard.pages.payments.display_types.dropdown":"Dérouler","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Date d'échéance (en jours)","dashboard.pages.payments.edit":"Modifier","dashboard.pages.payments.enter_giftcard_details":"Entrez les détails de la carte-cadeau","dashboard.pages.payments.front_label":"Étiquette avant","dashboard.pages.payments.front_label_label":"Ce nom sera affiché pour ce mode de paiement lors du paiement. ","dashboard.pages.payments.giftcard_name":"Nom de la carte cadeau","dashboard.pages.payments.idin.display_mode":"Mode IDIN :","dashboard.pages.payments.idin.display_mode.global":"Mondial","dashboard.pages.payments.idin.display_mode.product":"Produits spécifiques","dashboard.pages.payments.idin.display_mode_label":"Avec ce paramètre, vous pouvez choisir si iDIN est activé pour tous les produits du magasin (globalement) ou uniquement pour des produits spécifiques.","dashboard.pages.payments.in3.version.label":"Version In3","dashboard.pages.payments.in3.version.v2":"V2 (capacité/In3)","dashboard.pages.payments.in3.version.v3":"V3 (In3)","dashboard.pages.payments.max_order_amount_b2c":"Montant maximum de la commande B2B","dashboard.pages.payments.maximum_order_amount":"Montant maximum de la commande","dashboard.pages.payments.min_order_amount_b2b":"Montant minimum de la commande B2B","dashboard.pages.payments.max_order_amount_b2b":"Montant maximum de la commande B2B","dashboard.pages.payments.minimum_order_amount":"Montant minimum de commande","dashboard.pages.payments.mode":"Mode","dashboard.pages.payments.mode_label":"Lorsqu'il est réglé sur « Live », vous pouvez effectuer des paiements réels. ","dashboard.pages.payments.modes_settings.live":"En direct","dashboard.pages.payments.modes_settings.off":"Désactivé","dashboard.pages.payments.modes_settings.test":"Test","dashboard.pages.payments.order_amount_allowed":"Montant de la commande autorisé","dashboard.pages.payments.order_amount_allowed_label":"Cette méthode ne sera affichée que lorsque cette condition est remplie.","dashboard.pages.payments.payment_fee_incl_vat":"Frais de paiement inclus. ","dashboard.pages.payments.payment_fee_incl_vat_label":"Vous pouvez appliquer des frais lorsque le client sélectionne cette méthode de paiement. Choisissez soit des frais fixes (par ex. 1,50) soit des frais basés sur un pourcentage (par ex. 3%). Si la valeur contient %, elle sera calculée comme frais en pourcentage. Les décimales doivent être séparées par un point (.).","dashboard.pages.payments.payment_methods":"Modes de paiement","dashboard.pages.payments.remove":"Retirer","dashboard.pages.payments.save":"Sauvegarder","dashboard.pages.payments.search_country":"Rechercher un pays","dashboard.pages.payments.search_creditcard":"Rechercher une carte de crédit ou de débit","dashboard.pages.payments.search_giftcard":"Rechercher une carte cadeau","dashboard.pages.payments.seller_protection":"Protection du vendeur","dashboard.pages.payments.seller_protection_disabled":"Non","dashboard.pages.payments.seller_protection_enable":"Activer la protection des vendeurs PayPal","dashboard.pages.payments.seller_protection_enabled":"Oui","dashboard.pages.payments.send_email_instruction":"Envoyer un e-mail d'instructions de paiement","dashboard.pages.payments.send_email_instruction_no":"Non","dashboard.pages.payments.send_email_instruction_yes":"Oui","dashboard.pages.payments.send_email_merchant":"Le marchand envoie un e-mail","dashboard.pages.payments.seperate_authorize_and_capture":"Séparer l'autorisation et la capture","dashboard.pages.payments.seperate_authorize_and_capture_label":"Lorsque cette option est activée, vous devez capturer manuellement le paiement par carte de crédit ou de débit.","dashboard.pages.payments.service_code":"Code de service","dashboard.pages.payments.service_code_label":"Après avoir demandé votre carte-cadeau personnalisée auprès d'Intersolve, vous recevrez un e-mail concernant votre code de service. ","dashboard.pages.payments.settings":"Paramètres","dashboard.pages.payments.show_country_number_and_more":"et {country_number} plus...","dashboard.pages.payments.show_less":"Montrer moins","dashboard.pages.payments.vat_type_for_wrap":"Type de cuve pour emballage cadeau","dashboard.pages.payments.vat_type_for_wrap_select":"Veuillez sélectionner le type de cuve pour l'emballage cadeau","dashboard.pages.payments.verification_methods":"Méthodes de vérification","dashboard.pages.settings.add":"Ajouter","dashboard.pages.settings.advance_settings":"Réglages avancés","dashboard.pages.settings.checkout_url":"URL de paiement","dashboard.pages.settings.checkout_url_explanation":"Lorsque ce champ est laissé vide, le client reviendra à la page de paiement par défaut de PrestaShop.","dashboard.pages.settings.checkout_url_label":"Définissez une URL de paiement personnalisée après que le client a annulé le paiement ou qu'un problème s'est produit pendant le processus.","dashboard.pages.settings.credentials":"Informations d'identification","dashboard.pages.settings.credentials_label":"Obtenez vos informations d'identification Buckaroo auprès du Place Buckaroo","dashboard.pages.settings.custom_scripts":"Scripts personnalisés","dashboard.pages.settings.custom_scripts_label":"Ajoutez du javascript ou du CSS personnalisé à votre paiement.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Exemple","dashboard.pages.settings.explanation_intro":"Bienvenue dans le panneau de configuration de l'application Buckaroo Payment pour votre boutique en ligne PrestaShop. Dans ce panneau, vous pouvez configurer l'application complètement à votre guise. Vous trouverez ci-dessous les étapes pour configurer les paramètres. Pour d'autres questions, veuillez vous référer à notre page de documentation.","dashboard.pages.settings.generate_credit_slip":"Générer un avoir","dashboard.pages.settings.generate_credit_slip_label":"Si une note de crédit doit être générée.","dashboard.pages.settings.generate_negative_payments":"Créer des paiements négatifs lors du remboursement","dashboard.pages.settings.generate_negative_payments_label":"Indique si un paiement négatif doit également être créé lors de l'exécution d'un remboursement.","dashboard.pages.settings.generate_voucher":"Générer un bon","dashboard.pages.settings.generate_voucher_label":"Si un bon doit être généré.","dashboard.pages.settings.hide_advance_settings":"Masquer les paramètres avancés","dashboard.pages.settings.if_you_have_any_questions":"Si vous avez des questions sur ce qui précède, vous pouvez nous contacter par email :","dashboard.pages.settings.if_you_have_any_questions_link":" ou téléphone ","dashboard.pages.settings.mode":"Mode","dashboard.pages.settings.mode_label":"Changez facilement de mode","dashboard.pages.settings.no_im_testing":"Non, je teste","dashboard.pages.settings.order_number":"Numéro de commande","dashboard.pages.settings.order_number2":"numéro de commande","dashboard.pages.settings.refund_conf":"Remboursements automatiques via Buckaroo","dashboard.pages.settings.refund_conf_label":"Activer/désactiver les remboursements automatiques via Buckaroo lorsqu'un remboursement est initié depuis PrestaShop.","dashboard.pages.settings.re_stock_products":"Réapprovisionner les produits","dashboard.pages.settings.re_stock_products_label":"Si les produits remboursés doivent être retournés en stock (augmentant la quantité en stock).","dashboard.pages.settings.refunds":"Remboursements","dashboard.pages.settings.refunds_label":"Description du remboursement","dashboard.pages.settings.refunds_label_explanation":"Cette description sert aux remboursements et sera visible dans Buckaroo et sur le relevé bancaire du consommateur. ","dashboard.pages.settings.refunds_label_label":"Lorsqu'il est activé, vous pouvez effectuer des remboursements (partiels) directement depuis votre zone d'administration PrestaShop En savoir plus","dashboard.pages.settings.payment_fee":"Frais de paiement","dashboard.pages.settings.payment_fee_description":"Ici, vous pouvez configurer diverses options de frais de paiement, y compris définir le pourcentage des frais et personnaliser le nom des frais.","dashboard.pages.settings.payment_fee_percentage_mode":"Mode de pourcentage des frais","dashboard.pages.settings.payment_fee_percentage_mode_description":"Ce paramètre s'applique uniquement aux frais Buckaroo basés sur un pourcentage. Veuillez choisir sur quel montant le pourcentage des frais est calculé.","dashboard.pages.settings.subtotal":"Sous-total","dashboard.pages.settings.subtotal_incl_tax":"Sous-total incl. taxes","dashboard.pages.settings.payment_fee_frontend_label":"Libellé des frais de paiement en frontend","dashboard.pages.settings.payment_fee_frontend_label_description":"Ce libellé sera affiché à côté des frais sur les pages de paiement, de commande, de facture et d'avoir ainsi que sur les PDF.","dashboard.pages.settings.remove":"Retirer","dashboard.pages.settings.return_url":"URL de retour","dashboard.pages.settings.return_url_explanation":"Lorsque ce champ est laissé vide, le client reviendra à la page de confirmation par défaut de PrestaShop.","dashboard.pages.settings.return_url_label":"Définissez une URL de retour personnalisée une fois que le client a terminé le paiement.","dashboard.pages.settings.save":"Sauvegarder","dashboard.pages.settings.secret_key":"Clef secrète","dashboard.pages.settings.settings":"Paramètres","dashboard.pages.settings.settings_label":"Configurez vos paramètres","dashboard.pages.settings.settings_successfully_updated":"Paramètres mis à jour avec succès.","dashboard.pages.settings.shop_name":"Nom de la boutique","dashboard.pages.settings.shop_name2":"Nom de la boutique","dashboard.pages.settings.step_five":"Commencez les tests, lorsque les tests sont terminés, vous pouvez démarrer des transactions EN DIRECT","dashboard.pages.settings.step_four":"Configurer les paramètres avancés","dashboard.pages.settings.step_one":"Remplissez votre clé du site Web","dashboard.pages.settings.step_three":"Cliquez sur « tester la connexion », lorsque vous êtes d’accord, passez à l’étape 4.","dashboard.pages.settings.step_two":"Remplissez votre clef secrète","dashboard.pages.settings.successfully_verified_the_credentials":"Vérification des informations d'identification réussie !","dashboard.pages.settings.test_connection":"Tester la connexion","dashboard.pages.settings.the_credentials_are_not_valid":"Les informations d'identification ne sont pas valides !","dashboard.pages.settings.transaction_description":"description de la transaction","dashboard.pages.settings.transaction_description_label":'La description de la transaction peut être remplie de texte statique et de balises telles que : {order_number} et {shop name}.',"dashboard.pages.settings.website_key":"Clé du site Web","dashboard.pages.settings.welcome_to_buckaroo":"Bienvenue à Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"Quand votre boutique n'est pas encore en ligne","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Oui, je suis prêt à recevoir des paiements","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Votre boutique est en ligne et prête à recevoir des paiements réels","payment_methods.afterpay":"Rivière","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Payer","payment_methods.googlepay":"Google Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Lien de facturation","payment_methods.blik":"Blik","payment_methods.creditcard":"Cartes","payment_methods.eps":"PSE","payment_methods.giftcard":"Carte cadeau","payment_methods.ideal":"idéal | Wero","payment_methods.idin":"IDIN","payment_methods.in3":"Dans3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"VOIE MB","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"Payer par banque","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"Pay Pal","payment_methods.payperemail":"Payer par e-mail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"Prélèvement SEPA","payment_methods.transfer":"Transfert","payment_methods.trustly":"En toute confiance","payment_methods.twint":"Twint","payment_methods.swish":"Swish","payment_methods.bizum":"Bizum","payment_methods.wero":"Wero","payment_methods.wechatpay":"WeChatPay","payment_methods.knaken":"goSettle","verification_methods.idin":"IDIN","dashboard.pages.payments.displayInCheckout":"Regroupement des marques au paiement","dashboard.pages.payments.displayInCheckoutDesc":"Option pour définir la façon dont les marques sont affichées lors du paiement. Separate : Les marques sont affichées séparément lors du paiement.Grouped : Les marques sont affichées dans un seul groupe."},ye={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"Bei der Verarbeitung der Transaktion ist ein Fehler aufgetreten: Es kann nicht mehr mit Geschenkkarten bezahlt werden","buckaroo.response.invalid_parameter_originaltransaction":"Ungültiger Parameter Originaltransaktion.","dashboard.channel_selector.select_channel":"Wählen Sie Kanal","dashboard.channel_selector.select_channel_label":"Jeder Kanal hat seine Konfigurationseinstellungen.","dashboard.country_select.search_countries":"Länder suchen","dashboard.menu.channel":"Kanal","dashboard.menu.order_payment_methods":"Zahlungsmethoden für Bestellungen","dashboard.menu.payment_methods":"Zahlungsarten","dashboard.menu.settings":"Einstellungen","dashboard.menu.verification_methods":"Überprüfungsmethoden","dashboard.pages.order_payment_methods.all_countries":"Alle Länder","dashboard.pages.order_payment_methods.explanation_intro":"Sie können die Reihenfolge der Zahlungsmethoden ganz einfach ändern, indem Sie sie von oben nach unten an die richtige Stelle ziehen.","dashboard.pages.order_payment_methods.how_to_order_payment_method":"So ändern Sie die Reihenfolge der Zahlungsarten im Checkout","dashboard.pages.order_payment_methods.if_you_have_any_questions":"Wenn Sie Fragen zu diesem Plugin von Buckaroo haben, können Sie uns per E-Mail kontaktieren:","dashboard.pages.order_payment_methods.order_payment_methods":"Zahlungsmethoden für die Bestellung","dashboard.pages.order_payment_methods.order_payment_methods_label":"Ändern Sie die Reihenfolge der Zahlungsmethoden.","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Die Bestellung der Zahlungsmethode wurde erfolgreich aktualisiert.","dashboard.pages.order_payment_methods.search_country":"Land suchen","dashboard.pages.order_payment_methods.something_went_wrong":"Etwas ist schief gelaufen.","dashboard.pages.order_payment_methods.step_one":"Wählen Sie zunächst das Land aus, für das Sie die Anzeigereihenfolge der Zahlungsarten ändern möchten.","dashboard.pages.order_payment_methods.step_three":"Speichern Sie die von Ihnen gewählte Zahlungsarten-Bestellung und prüfen Sie, ob die Zahlungsarten im Checkout Ihres Webshops in der richtigen Reihenfolge angezeigt werden.","dashboard.pages.order_payment_methods.step_two":"Ziehen Sie die Zahlungsmethoden per Drag-and-Drop in die gewünschte Reihenfolge.","dashboard.pages.payments.add":"Hinzufügen","dashboard.pages.payments.add_custom_giftcard":"Fügen Sie eine benutzerdefinierte Geschenkkarte hinzu","dashboard.pages.payments.all_countries":"Alle Länder","dashboard.pages.payments.allowed_creditcards":"Erlaubte Kredit- und Debitkarten","dashboard.pages.payments.allowed_creditcards_label":"Für diese Methode werden nur ausgewählte Kredit- oder Debitkarten angezeigt","dashboard.pages.payments.allowed_giftcards":"Erlaubte Geschenkkarten","dashboard.pages.payments.allowed_giftcards_label":"Diese Methode wird nur für ausgewählte Geschenkkarten angezeigt","dashboard.pages.payments.allowed_methods":"Erlaubte Zahlungsmethoden","dashboard.pages.payments.clear":"Klar","dashboard.pages.payments.client_side":"Clientseitige Verschlüsselung","dashboard.pages.payments.client_side_label":"Aktivieren oder deaktivieren Sie das Verhalten der clientseitigen Zahlungsmethode.","dashboard.pages.payments.configure":"Konfigurieren","dashboard.pages.payments.configure_your_payment_method_settings":"Konfigurieren Sie Ihre Zahlungsmethodeneinstellungen","dashboard.pages.payments.configure_your_payment_name_settings":"Konfigurieren Sie Ihre {payment_name}-Einstellungen","dashboard.pages.payments.configure_your_verification_method_settings":"Konfigurieren Sie die Einstellungen Ihrer Verifizierungsmethode","dashboard.pages.payments.configure_your_verification_name_settings":"Konfigurieren Sie Ihre {verification_name}-Einstellungen","dashboard.pages.payments.countries":"Länder","dashboard.pages.payments.countries_label":"Die Zahlungsart wird nur für ausgewählte Länder angezeigt. ","dashboard.pages.payments.custom_giftcard":"Individuelle Geschenkkarte","dashboard.pages.payments.custom_icon_url":"Benutzerdefinierte Symbol-URL","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Von Geschäft zu Geschäft","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"Business-to-Consumer","dashboard.pages.payments.customer.type.both":"Beide","dashboard.pages.payments.customer.type_label":"Kundentyp","dashboard.pages.payments.customer_type":"Kundentyp","dashboard.pages.payments.display_type":"Schaltflächenanzeigetyp","dashboard.pages.payments.display_type_label":"Diese Einstellung legt fest, wie die Bankauswahl für diese Zahlungsart im Checkout angezeigt wird. Sie können zwischen Optionsfeldern oder einer Dropdown-Auswahl wählen.","dashboard.pages.payments.display_types.dropdown":"Runterfallen","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Fälligkeitsdatum (in Tagen)","dashboard.pages.payments.edit":"Bearbeiten","dashboard.pages.payments.enter_giftcard_details":"Geben Sie die Details der Geschenkkarte ein","dashboard.pages.payments.front_label":"Vorderes Etikett","dashboard.pages.payments.front_label_label":"Dieser Name wird für diese Zahlungsart im Checkout angezeigt. ","dashboard.pages.payments.giftcard_name":"Name der Geschenkkarte","dashboard.pages.payments.idin.display_mode":"iDIN-Modus:","dashboard.pages.payments.idin.display_mode.global":"Global","dashboard.pages.payments.idin.display_mode.product":"Spezifische Produkte","dashboard.pages.payments.idin.display_mode_label":"Mit dieser Einstellung können Sie auswählen, ob iDIN für alle Produkte im Shop (global) oder nur für bestimmte Produkte aktiviert ist.","dashboard.pages.payments.in3.version.label":"In3-Version","dashboard.pages.payments.in3.version.v2":"V2 (Capayable/In3)","dashboard.pages.payments.in3.version.v3":"V3 (In3)","dashboard.pages.payments.max_order_amount_b2c":"Maximaler B2B-Bestellbetrag","dashboard.pages.payments.maximum_order_amount":"Maximaler Bestellwert","dashboard.pages.payments.min_order_amount_b2b":"Mindestbestellwert für B2B","dashboard.pages.payments.max_order_amount_b2b":"Maximaler B2B Bestellwert","dashboard.pages.payments.minimum_order_amount":"Mindestbestellmenge","dashboard.pages.payments.mode":"Modus","dashboard.pages.payments.mode_label":"Bei der Einstellung „Live“ können Sie tatsächliche Zahlungen durchführen. ","dashboard.pages.payments.modes_settings.live":"Live","dashboard.pages.payments.modes_settings.off":"Aus","dashboard.pages.payments.modes_settings.test":"Prüfen","dashboard.pages.payments.order_amount_allowed":"Bestellmenge zulässig","dashboard.pages.payments.order_amount_allowed_label":"Diese Methode wird nur angezeigt, wenn diese Bedingung erfüllt ist.","dashboard.pages.payments.payment_fee_incl_vat":"Zahlungsgebühr inkl. ","dashboard.pages.payments.payment_fee_incl_vat_label":"Sie können eine Gebühr erheben, wenn der Kunde diese Zahlungsmethode auswählt. Wählen Sie entweder eine feste Gebühr (z. B. 1,50) oder eine prozentuale Gebühr (z. B. 3%). Wenn der Wert ein % enthält, wird er als prozentuale Gebühr berechnet. Dezimalstellen sollten durch einen Punkt (.) getrennt werden.","dashboard.pages.payments.payment_methods":"Zahlungsmethoden","dashboard.pages.payments.remove":"Entfernen","dashboard.pages.payments.save":"Speichern","dashboard.pages.payments.search_country":"Land suchen","dashboard.pages.payments.search_creditcard":"Suche Kredit- oder Debitkarte","dashboard.pages.payments.search_giftcard":"Geschenkkarte suchen","dashboard.pages.payments.seller_protection":"Verkäuferschutz","dashboard.pages.payments.seller_protection_disabled":"NEIN","dashboard.pages.payments.seller_protection_enable":"Aktivieren Sie den PayPal-Verkäuferschutz","dashboard.pages.payments.seller_protection_enabled":"Ja","dashboard.pages.payments.send_email_instruction":"Senden Sie eine E-Mail mit Zahlungsanweisungen","dashboard.pages.payments.send_email_instruction_no":"NEIN","dashboard.pages.payments.send_email_instruction_yes":"Ja","dashboard.pages.payments.send_email_merchant":"Händler sendet E-Mail","dashboard.pages.payments.seperate_authorize_and_capture":"Getrennte Autorisierung und Erfassung","dashboard.pages.payments.seperate_authorize_and_capture_label":"Wenn diese Option aktiviert ist, müssen Sie die Kredit- oder Debitkartenzahlung manuell erfassen.","dashboard.pages.payments.service_code":"Service code","dashboard.pages.payments.service_code_label":"Nachdem Sie Ihre individuelle Geschenkkarte bei Intersolve angefordert haben, erhalten Sie eine E-Mail mit Ihrem Servicecode. ","dashboard.pages.payments.settings":"Einstellungen","dashboard.pages.payments.show_country_number_and_more":"und {country_number} mehr...","dashboard.pages.payments.show_less":"Zeige weniger","dashboard.pages.payments.vat_type_for_wrap":"Mehrwertsteuertyp für Geschenkverpackungen","dashboard.pages.payments.vat_type_for_wrap_select":"Bitte wählen Sie den Mehrwertsteuertyp für die Geschenkverpackung aus","dashboard.pages.payments.verification_methods":"Überprüfungsmethoden","dashboard.pages.settings.add":"Hinzufügen","dashboard.pages.settings.advance_settings":"Erweiterte Einstellungen","dashboard.pages.settings.checkout_url":"Checkout-URL","dashboard.pages.settings.checkout_url_explanation":"Wenn dieses Feld leer bleibt, kehrt der Kunde zur Standard-Checkout-Seite von PrestaShop zurück.","dashboard.pages.settings.checkout_url_label":"Legen Sie eine benutzerdefinierte Checkout-URL fest, nachdem der Kunde die Zahlung abgebrochen hat oder während des Vorgangs ein Fehler aufgetreten ist.","dashboard.pages.settings.credentials":"Referenzen","dashboard.pages.settings.credentials_label":"Holen Sie sich Ihre Buckaroo-Anmeldeinformationen von der Buckaroo Plaza","dashboard.pages.settings.custom_scripts":"Benutzerdefinierte Skripte","dashboard.pages.settings.custom_scripts_label":"Fügen Sie Ihrem Checkout benutzerdefiniertes Javascript oder CSS hinzu.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Beispiel","dashboard.pages.settings.explanation_intro":"Willkommen im Konfigurationsbereich der Buckaroo Payment App für Ihren PrestaShop-Webshop. In diesem Bereich können Sie die App ganz nach Ihren Wünschen einstellen. Nachfolgend finden Sie die Schritte zum Konfigurieren der Einstellungen. Weitere Fragen finden Sie in unserem Dokumentationsseite.","dashboard.pages.settings.generate_credit_slip":"Erstellen Sie einen Gutschriftsbeleg","dashboard.pages.settings.generate_credit_slip_label":"Ob eine Gutschrift erstellt werden soll.","dashboard.pages.settings.generate_negative_payments":"Erstellen Sie negative Zahlungen bei Rückerstattung","dashboard.pages.settings.generate_negative_payments_label":"Ob bei einer Rückerstattung auch eine negative Zahlung erstellt werden muss.","dashboard.pages.settings.generate_voucher":"Generieren Sie einen Gutschein","dashboard.pages.settings.generate_voucher_label":"Ob ein Gutschein generiert werden soll.","dashboard.pages.settings.hide_advance_settings":"Verberge erweiterte Einstellungen","dashboard.pages.settings.if_you_have_any_questions":"Wenn Sie Fragen zu den oben genannten Punkten haben, können Sie uns per E-Mail kontaktieren:","dashboard.pages.settings.if_you_have_any_questions_link":" oder Telefon ","dashboard.pages.settings.mode":"Modus","dashboard.pages.settings.mode_label":"Ändern Sie ganz einfach den Modus","dashboard.pages.settings.no_im_testing":"Nein, ich teste","dashboard.pages.settings.order_number":"Bestellnummer","dashboard.pages.settings.order_number2":"Bestellnummer","dashboard.pages.settings.refund_conf":"Automatische Rückerstattungen über Buckaroo","dashboard.pages.settings.refund_conf_label":"Aktivieren/deaktivieren Sie automatische Rückerstattungen über Buckaroo, wenn eine Rückerstattung in PrestaShop initiiert wird.","dashboard.pages.settings.re_stock_products":"Produkte wieder auffüllen","dashboard.pages.settings.re_stock_products_label":"Ob erstattete Produkte wieder in den Lagerbestand aufgenommen werden sollen (Erhöhung der Lagermenge).","dashboard.pages.settings.refunds":"Rückerstattungen","dashboard.pages.settings.refunds_label":"Rückerstattungsbeschreibung","dashboard.pages.settings.refunds_label_explanation":"Diese Beschreibung wird für die Rückerstattungen verwendet und ist in Buckaroo und auf dem Kontoauszug des Verbrauchers sichtbar. ","dashboard.pages.settings.refunds_label_label":"Wenn diese Option aktiviert ist, können Sie (teilweise) Rückerstattungen direkt in Ihrem PrestaShop-Administrationsbereich vornehmen Mehr lesen","dashboard.pages.settings.payment_fee":"Zahlungsgebühren","dashboard.pages.settings.payment_fee_description":"Hier können Sie verschiedene Optionen für Zahlungskosten konfigurieren, einschließlich der Einstellung des Prozentsatzes und der Anpassung des Namens der Kosten.","dashboard.pages.settings.payment_fee_percentage_mode":"Gebührenprozentsatzmodus","dashboard.pages.settings.payment_fee_percentage_mode_description":"Diese Einstellung gilt nur für prozentbasierte Buckaroo-Gebühren. Bitte wählen Sie, über welchen Betrag der Gebührenprozentsatz berechnet wird.","dashboard.pages.settings.subtotal":"Zwischensumme","dashboard.pages.settings.subtotal_incl_tax":"Zwischensumme inkl. MwSt.","dashboard.pages.settings.payment_fee_frontend_label":"Frontend-Label für Zahlungsgebühr","dashboard.pages.settings.payment_fee_frontend_label_description":"Dieses Label wird neben der Gebühr auf den Checkout-, Bestell-, Rechnungs- und Gutschriftenseiten sowie in PDFs angezeigt.","dashboard.pages.settings.remove":"Entfernen","dashboard.pages.settings.return_url":"Rückgabe-URL","dashboard.pages.settings.return_url_explanation":"Wenn dieses Feld leer bleibt, kehrt der Kunde zur Standard-Bestätigungsseite von PrestaShop zurück.","dashboard.pages.settings.return_url_label":"Legen Sie eine benutzerdefinierte Rückgabe-URL fest, nachdem der Kunde die Zahlung abgeschlossen hat.","dashboard.pages.settings.save":"Speichern","dashboard.pages.settings.secret_key":"Geheimer Schlüssel","dashboard.pages.settings.settings":"Einstellungen","dashboard.pages.settings.settings_label":"Konfigurieren Sie Ihre Einstellungen","dashboard.pages.settings.settings_successfully_updated":"Einstellungen erfolgreich aktualisiert.","dashboard.pages.settings.shop_name":"Laden Name","dashboard.pages.settings.shop_name2":"Laden Name","dashboard.pages.settings.step_five":"Beginnen Sie mit dem Testen. Wenn der Test in Ordnung ist, können Sie LIVE-Transaktionen starten","dashboard.pages.settings.step_four":"Konfigurieren Sie erweiterte Einstellungen","dashboard.pages.settings.step_one":"Füllen Sie Ihre aus Websiteschlüssel","dashboard.pages.settings.step_three":"Klicken Sie auf „Verbindung testen“. Wenn OK, fahren Sie mit Schritt 4 fort.","dashboard.pages.settings.step_two":"Füllen Sie Ihre aus geheimer Schlüssel","dashboard.pages.settings.successfully_verified_the_credentials":"Die Anmeldeinformationen wurden erfolgreich überprüft!","dashboard.pages.settings.test_connection":"Testverbindung","dashboard.pages.settings.the_credentials_are_not_valid":"Die Anmeldedaten sind ungültig!","dashboard.pages.settings.transaction_description":"Transaktion Beschreibung","dashboard.pages.settings.transaction_description_label":'Die Transaktionsbeschreibung kann mit statischem Text und Tags wie den folgenden gefüllt werden: {order_number} Und {shop_name}.',"dashboard.pages.settings.website_key":"Website-Schlüssel","dashboard.pages.settings.welcome_to_buckaroo":"Willkommen in Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"Wenn Ihr Shop noch nicht live ist","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Ja, ich bin bereit, Zahlungen zu erhalten","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Ihr Shop ist live und bereit, echte Zahlungen zu empfangen","payment_methods.afterpay":"Riverty","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Pay","payment_methods.googlepay":"Google Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Billink","payment_methods.blik":"Blik","payment_methods.creditcard":"Karten","payment_methods.eps":"EPS","payment_methods.giftcard":"Geschenkkarte","payment_methods.ideal":"Ideal | Wero","payment_methods.idin":"iDIN","payment_methods.in3":"In3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"MB WEG","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"PayByBank","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"PayPal","payment_methods.payperemail":"PayPerEmail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"SEPA-Lastschrift","payment_methods.transfer":"Überweisen","payment_methods.trustly":"Vertrauenswürdig","payment_methods.twint":"Twint","payment_methods.swish":"Swish","payment_methods.bizum":"Bizum","payment_methods.wero":"Wero","payment_methods.wechatpay":"WeChatPay","payment_methods.knaken":"goSettle","verification_methods.idin":"iDIN","dashboard.pages.payments.displayInCheckout":"Marken-Gruppierung im Checkout","dashboard.pages.payments.displayInCheckoutDesc":"Option, wie Marken im Checkout angezeigt werden sollen. Separate: Marken werden im Checkout separat angezeigt.Grouped: Marken werden innerhalb einer Gruppe angezeigt."};/*
+For specific products you also need to enable it for the products in the PrestaShop catalog.`,"dashboard.pages.payments.in3.version.label":"In3 version","dashboard.pages.payments.in3.version.v2":"V2 (Capayable/In3)","dashboard.pages.payments.in3.version.v3":"V3 (In3)","dashboard.pages.payments.max_order_amount_b2c":"Maximum B2B order amount","dashboard.pages.payments.maximum_order_amount":"Maximum order amount","dashboard.pages.payments.min_order_amount_b2b":"Minimum B2B order amount","dashboard.pages.payments.max_order_amount_b2b":"Maximum B2B order amount","dashboard.pages.payments.minimum_order_amount":"Minimum order amount","dashboard.pages.payments.mode":"Mode","dashboard.pages.payments.mode_label":'When set to "Live" you can do actual payments. When set to "Testing" you can do test transactions. This payment method will not appear when it is set to "Off".',"dashboard.pages.payments.modes_settings.live":"Live","dashboard.pages.payments.modes_settings.off":"Off","dashboard.pages.payments.modes_settings.test":"Test","dashboard.pages.payments.order_amount_allowed":"Order amount allowed","dashboard.pages.payments.order_amount_allowed_label":"This method will only be shown when this condition is met.","dashboard.pages.payments.payment_fee_incl_vat":"Payment fee incl. VAT","dashboard.pages.payments.payment_fee_incl_vat_label":"You can apply a fee when the customer selects this payment method. Choose either a fixed fee (e.g., 1.50) or a percentage-based fee (e.g., 3%). If the value contains %, it will be calculated as a percentage fee. Decimals should be separated by a dot (.).","dashboard.pages.payments.payment_methods":"Payments methods","dashboard.pages.payments.remove":"Remove","dashboard.pages.payments.save":"Save","dashboard.pages.payments.search_country":"Search Country","dashboard.pages.payments.search_creditcard":"Search Credit- or debitcard","dashboard.pages.payments.search_giftcard":"Search Giftcard","dashboard.pages.payments.seller_protection":"Seller protection","dashboard.pages.payments.seller_protection_disabled":"No","dashboard.pages.payments.seller_protection_enable":"Enable PayPal Seller Protection","dashboard.pages.payments.seller_protection_enabled":"Yes","dashboard.pages.payments.send_email_instruction":"Send payment instruction email","dashboard.pages.payments.send_email_instruction_no":"No","dashboard.pages.payments.send_email_instruction_yes":"Yes","dashboard.pages.payments.send_email_merchant":"Merchant sends email","dashboard.pages.payments.seperate_authorize_and_capture":"Seperate authorize and capture","dashboard.pages.payments.seperate_authorize_and_capture_label":"When this option is enabled you have to manually capture the credit- or debitcard payment.","dashboard.pages.payments.googlepay.merchant_details":"Google Pay merchant details","dashboard.pages.payments.googlepay.merchant_name":"Merchant name","dashboard.pages.payments.googlepay.merchant_id":"Google Merchant ID","dashboard.pages.payments.googlepay.gateway_merchant_id":"Gateway Merchant ID","dashboard.pages.payments.service_code":"Service Code","dashboard.pages.payments.service_code_label":"After you request your custom giftcard by Intersolve you will receive an email about your service code. If you have any questions about this do not hesitate to mail us at ","dashboard.pages.payments.settings":"Settings","dashboard.pages.payments.show_country_number_and_more":"and {country_number} more...","dashboard.pages.payments.show_less":"Show less","dashboard.pages.payments.vat_type_for_wrap":"Vat type for gift wrapping","dashboard.pages.payments.vat_type_for_wrap_select":"Please select vat type for gift wrapping","dashboard.pages.payments.verification_methods":"Verification methods","dashboard.pages.settings.add":"Add","dashboard.pages.settings.advance_settings":"Advanced Settings","dashboard.pages.settings.checkout_url":"Checkout URL","dashboard.pages.settings.checkout_url_explanation":"When this field is left empty, the customer will return to the default PrestaShop checkout page.","dashboard.pages.settings.checkout_url_label":"Set a custom checkout URL after the customer cancel the payment or something went wrong during the process.","dashboard.pages.settings.credentials":"Credentials","dashboard.pages.settings.credentials_label":"Get your Buckaroo credentials from the Buckaroo Plaza","dashboard.pages.settings.custom_scripts":"Custom scripts","dashboard.pages.settings.custom_scripts_label":"Add custom javascript or css to your checkout.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Example","dashboard.pages.settings.explanation_intro":"Welcome to the configuration panel of the Buckaroo Payment app for your PrestaShop webshop. In this panel you can set the app completely to your liking. Below you will find the steps to configue the settings. For further questions, please refer to our documentation page.","dashboard.pages.settings.generate_credit_slip":"Generate a Credit Slip","dashboard.pages.settings.generate_credit_slip_label":"Whether a credit note should be generated.","dashboard.pages.settings.generate_negative_payments":"Create Negative Payments on Refund","dashboard.pages.settings.generate_negative_payments_label":"Whether a negative payment does also need to be created when performing a refund.","dashboard.pages.settings.generate_voucher":"Generate a Voucher","dashboard.pages.settings.generate_voucher_label":"Whether a voucher should be generated.","dashboard.pages.settings.hide_advance_settings":"Hide Advanced Settings","dashboard.pages.settings.if_you_have_any_questions":"If you have any questions about the above, you can contact us by email:","dashboard.pages.settings.if_you_have_any_questions_link":" or phone ","dashboard.pages.settings.mode":"Mode","dashboard.pages.settings.mode_label":"Easily change the mode","dashboard.pages.settings.no_im_testing":"No, I'm Testing","dashboard.pages.settings.order_number":"Order number","dashboard.pages.settings.order_number2":"order_number","dashboard.pages.settings.refund_conf":"Automatic refunds via Buckaroo","dashboard.pages.settings.refund_conf_label":"Enable/disable automatic refunds via Buckaroo when a refund from PrestaShop is inititated.","dashboard.pages.settings.re_stock_products":"Re-stock Products","dashboard.pages.settings.re_stock_products_label":"Whether refunded products should be returned to inventory (increasing the quantity in stock).","dashboard.pages.settings.refunds":"Refunds","dashboard.pages.settings.refunds_label":"Refund Description","dashboard.pages.settings.refunds_label_explanation":"This description is used for the refunds and will be visible in Buckaroo and on the bank statement of the consumer. We recommend using the webshop name so customers can easily recognize the payment.","dashboard.pages.settings.refunds_label_label":"When enabled you can do (partial) refunds directly from your PrestaShop admin area Read more","dashboard.pages.settings.payment_fee":"Payment Fees","dashboard.pages.settings.payment_fee_description":"Here, you can configure various payment fee options, including setting the fee percentage and customizing the fee name for example.","dashboard.pages.settings.payment_fee_percentage_mode":"Fee percentage mode","dashboard.pages.settings.payment_fee_percentage_mode_description":"This setting only applies to percentage-based Buckaroo fees. Please choose over which amount the fee percentage is calculated.","dashboard.pages.settings.subtotal":"Subtotal","dashboard.pages.settings.subtotal_incl_tax":"Subtotal incl. tax","dashboard.pages.settings.payment_fee_frontend_label":"Payment fee frontend label","dashboard.pages.settings.payment_fee_frontend_label_description":"This label will be displayed next to the fee on the checkout, order, invoice and creditmemo pages and pdfs.","dashboard.pages.settings.remove":"Remove","dashboard.pages.settings.return_url":"Return URL","dashboard.pages.settings.return_url_explanation":"When this field is left empty, the customer will return to the default PrestaShop confirmation page.","dashboard.pages.settings.return_url_label":"Set a custom return URL after the customer finishes the payment.","dashboard.pages.settings.save":"Save","dashboard.pages.settings.secret_key":"Secret key","dashboard.pages.settings.settings":"Settings","dashboard.pages.settings.settings_label":"Configure your settings","dashboard.pages.settings.settings_successfully_updated":"Settings successfully updated.","dashboard.pages.settings.shop_name":"Shop name","dashboard.pages.settings.shop_name2":"shop_name","dashboard.pages.settings.step_five":"Start testing, when testing is oke you can start LIVE transactions","dashboard.pages.settings.step_four":"Configure advanced settings & payment methods","dashboard.pages.settings.step_one":"Fill in your websitekey","dashboard.pages.settings.step_three":"Click on ‘test connection’, when oke proceed to step 4.","dashboard.pages.settings.step_two":"Fill in your secretkey","dashboard.pages.settings.successfully_verified_the_credentials":"Successfully verified the credentials!","dashboard.pages.settings.test_connection":"Test Connection","dashboard.pages.settings.the_credentials_are_not_valid":"The credentials are not valid!","dashboard.pages.settings.transaction_description":"Transaction Description","dashboard.pages.settings.transaction_description_label":'Transaction description can be filled with static text and tags like: {order_number} and {shop_name}.',"dashboard.pages.settings.website_key":"Website key","dashboard.pages.settings.welcome_to_buckaroo":"Welcome to Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"When your shop is not live yet","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Yes, I'm ready to receive payments","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Your shop is live and ready to receive real payments","payment_methods.afterpay":"Riverty","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Pay","payment_methods.googlepay":"Google Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Billink","payment_methods.blik":"Blik","payment_methods.creditcard":"Cards","payment_methods.eps":"EPS","payment_methods.giftcard":"Giftcard","payment_methods.ideal":"iDEAL | Wero","payment_methods.idin":"iDIN","payment_methods.in3":"In3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"MB WAY","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"PayByBank","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"PayPal","payment_methods.payperemail":"PayPerEmail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"SEPA Direct Debit","payment_methods.transfer":"Transfer","payment_methods.trustly":"Trustly","payment_methods.twint":"Twint","payment_methods.swish":"Swish","payment_methods.bizum":"Bizum","payment_methods.wero":"Wero","payment_methods.wechatpay":"WeChatPay","verification_methods.idin":"iDIN","dashboard.pages.payments.displayInCheckout":"Group brands in checkout","dashboard.pages.payments.displayInCheckoutDesc":"Option for how to show brands in the checkout. Separate: Brands are shown separately in the checkout.Grouped: Brands are shown within one group."},_e={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"Er is een fout opgetreden tijdens het verwerken van de transactie: Je kunt niet meer cadeaukaarten gebruiken","buckaroo.response.invalid_parameter_originaltransaction":"Ongeldige parameter originaltransaction.","dashboard.channel_selector.select_channel":"Selecteer Kanaal","dashboard.channel_selector.select_channel_label":"Elk kanaal heeft zijn eigen configuratie-instellingen.","dashboard.country_select.search_countries":"Zoek Landen","dashboard.menu.channel":"Kanaal","dashboard.menu.order_payment_methods":"Betaalmethoden Volgorde","dashboard.menu.payment_methods":"Betaalmethoden","dashboard.menu.settings":"Instellingen","dashboard.menu.verification_methods":"Verificatiemethoden","dashboard.pages.order_payment_methods.all_countries":"Alle landen","dashboard.pages.order_payment_methods.explanation_intro":"Om de betaalmethoden per land in de juiste volgorde in te stellen, dient u aan de linkerkant van dit scherm het gewenste land te selecteren. Uw krijgt dan een overzicht van de betaalmethoden die voor dat land 'aan' staan. U kunt vervolgens de betaalmethoden in de juiste volgorde zetten door te slepen.","dashboard.pages.order_payment_methods.how_to_order_payment_method":"Hoe u uw betaalmethode volgorde aan kunt passen","dashboard.pages.order_payment_methods.if_you_have_any_questions":"Heeft u vragen over deze plugin van Buckaroo, dan kunt u contact met ons opnemen via e-mail:","dashboard.pages.order_payment_methods.order_payment_methods":"Betaalmethode volgorde","dashboard.pages.order_payment_methods.order_payment_methods_label":"Wijzig de volgorde van betaalmethoden","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Betaalmethoden volgorde succesvol geüpdatet.","dashboard.pages.order_payment_methods.search_country":"Zoek land","dashboard.pages.order_payment_methods.something_went_wrong":"Er is iets fout gegaan.","dashboard.pages.order_payment_methods.step_one":"Selecteer het land waarvoor u de volgorde van de betaalmethoden wilt wijzigen.","dashboard.pages.order_payment_methods.step_three":"Sla de instellingen op en controleer in uw webshop (checkout) of alles correct weergeven wordt.","dashboard.pages.order_payment_methods.step_two":"Sleep de betaalmethoden in de volgorde van uw voorkeur.","dashboard.pages.payments.add":"Toevoegen","dashboard.pages.payments.add_custom_giftcard":"Eigen cadeaukaart toevoegen","dashboard.pages.payments.all_countries":"Alle landen","dashboard.pages.payments.allowed_creditcards":"Toegestane Cards","dashboard.pages.payments.allowed_creditcards_label":"Alleen geselecteerde credit- of debitcards worden op deze manier getoond","dashboard.pages.payments.allowed_giftcards":"Toegestane cadeaukaarten","dashboard.pages.payments.allowed_giftcards_label":"Alleen geselecteerde cadeaukaarten worden op deze manier getoond","dashboard.pages.payments.allowed_methods":"Toegestane betaalmethoden","dashboard.pages.payments.clear":"Resetten","dashboard.pages.payments.client_side":"Cliënt Side Encryption","dashboard.pages.payments.client_side_label":"Gedrag van cliëntzijdige betaalmethode in- of uitschakelen.","dashboard.pages.payments.configure":"Configuratie","dashboard.pages.payments.configure_your_payment_method_settings":"Configureer uw betaalmethoden instellingen","dashboard.pages.payments.configure_your_payment_name_settings":"Configureer uw instellingen voor {payment_name}","dashboard.pages.payments.configure_your_verification_method_settings":"Configureer uw instellingen voor de verificatiemethoden","dashboard.pages.payments.configure_your_verification_name_settings":"Configureer uw instellingen voor {verification_name}","dashboard.pages.payments.countries":"Landen","dashboard.pages.payments.countries_label":"Alleen geselecteerde landen zullen deze betaalmethode tonen, laat dit veld leeg om de methode voor alle landen in te schakelen.","dashboard.pages.payments.custom_giftcard":"Eigen cadeaukaart","dashboard.pages.payments.custom_icon_url":"Aangepaste cadeaukaart logo URL","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Business-to-Business","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"Business-to-consumer","dashboard.pages.payments.customer.type.both":"Beide","dashboard.pages.payments.customer.type_label":"Klanttype","dashboard.pages.payments.customer_type":"Klant type","dashboard.pages.payments.display_type":"Weergavetype","dashboard.pages.payments.display_type_label":"Deze instelling bepaalt hoe de bankselectie voor deze betaalmethode wordt weergegeven bij het afrekenen. U kunt kiezen tussen keuzerondjes of een vervolgkeuzelijst.","dashboard.pages.payments.display_types.dropdown":"Laten vallen","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Vervaldatum (in dagen)","dashboard.pages.payments.edit":"Aanpassen","dashboard.pages.payments.enter_giftcard_details":"Voer cadeaukaartgegevens in","dashboard.pages.payments.front_label":"Betaalmethode naam","dashboard.pages.payments.front_label_label":"Deze naam wordt weergegeven in de checkout.","dashboard.pages.payments.giftcard_name":"Cadeaukaart Naam","dashboard.pages.payments.idin.display_mode":"iDIN modus:","dashboard.pages.payments.idin.display_mode.global":"Globaal","dashboard.pages.payments.idin.display_mode.product":"Specifieke producten","dashboard.pages.payments.idin.display_mode_label":"Met deze instelling kunt u selecteren of iDIN is ingeschakeld voor alle producten in de winkel (globaal) of alleen voor specifieke producten. Voor specifieke producten dient u het ook in te schakelen voor de producten in de PrestaShop-catalogus.","dashboard.pages.payments.in3.version.label":"In3 versie","dashboard.pages.payments.in3.version.v2":"V2 (Capayable/In3)","dashboard.pages.payments.in3.version.v3":"V3 (In3)","dashboard.pages.payments.max_order_amount_b2c":"Maximale B2B bestelbedrag","dashboard.pages.payments.maximum_order_amount":"Maximaal toegestane bestelbedrag","dashboard.pages.payments.min_order_amount_b2b":"Minimale B2B bestelbedrag","dashboard.pages.payments.max_order_amount_b2b":"Maximaal B2B toegestane bestelbedrag","dashboard.pages.payments.minimum_order_amount":"Minimaal toegestane bestelbedrag","dashboard.pages.payments.mode":"Modus","dashboard.pages.payments.mode_label":'Indien ingesteld op "Live", dan kunt u daadwerkelijke betalingen doen. Indien ingesteld op "Test", dan kun je testtransacties doen. De betaalmethode verschijnt niet als deze op "Uit" staat.',"dashboard.pages.payments.modes_settings.live":"Live","dashboard.pages.payments.modes_settings.off":"Uit","dashboard.pages.payments.modes_settings.test":"Test","dashboard.pages.payments.order_amount_allowed":"Bestelbedrag restricties","dashboard.pages.payments.order_amount_allowed_label":"Deze methode wordt alleen weergegeven als aan deze voorwaarde is voldaan.","dashboard.pages.payments.payment_fee_incl_vat":"Betaalkosten incl. BTW","dashboard.pages.payments.payment_fee_incl_vat_label":"U kunt kosten in rekening brengen wanneer de klant deze betaalmethode selecteert. Kies voor een vast bedrag (bijv. 1,50) of een percentage-gebaseerd bedrag (bijv. 3%). Als de waarde een % bevat, wordt deze berekend als een percentage kost. Decimalen moeten worden gescheiden door een punt (.).","dashboard.pages.payments.payment_methods":"Betaalmethoden","dashboard.pages.payments.remove":"Verwijderen","dashboard.pages.payments.save":"Opslaan","dashboard.pages.payments.search_country":"Zoek Land","dashboard.pages.payments.search_creditcard":"Zoek Credit- of debitcard","dashboard.pages.payments.search_giftcard":"Zoek Cadeaukaart","dashboard.pages.payments.seller_protection":"Verkopersbescherming","dashboard.pages.payments.seller_protection_disabled":"Nee","dashboard.pages.payments.seller_protection_enable":"Schakel de PayPal Verkopersbescherming in","dashboard.pages.payments.seller_protection_enabled":"Ja","dashboard.pages.payments.send_email_instruction":"Stuur betalingsinstructie e-mail","dashboard.pages.payments.send_email_instruction_no":"Nee","dashboard.pages.payments.send_email_instruction_yes":"Ja","dashboard.pages.payments.send_email_merchant":"Merchant stuurt e-mail","dashboard.pages.payments.seperate_authorize_and_capture":"Losse authorize en capture","dashboard.pages.payments.seperate_authorize_and_capture_label":"Wanneer deze optie is ingeschakeld, dient u de betaling van de credit- of debitcard handmatig vast te leggen (capture).","dashboard.pages.payments.service_code":"Service Code","dashboard.pages.payments.service_code_label":"Nadat u uw persoonlijke cadeaukaart bij Intersolve heeft aangevraagd, ontvangt u een e-mail over uw servicecode. Als u hierover vragen heeft, aarzel dan niet om ons te mailen op","dashboard.pages.payments.settings":"Instellingen","dashboard.pages.payments.show_country_number_and_more":"en {country_number} meer...","dashboard.pages.payments.show_less":"Minder tonen","dashboard.pages.payments.vat_type_for_wrap":"BTW-type voor cadeauverpakking","dashboard.pages.payments.vat_type_for_wrap_select":"Selecteer BTW-type voor cadeauverpakking","dashboard.pages.payments.verification_methods":"Verificatiemethoden","dashboard.pages.settings.add":"Toevoegen","dashboard.pages.settings.advance_settings":"Geavanceerde Instellingen","dashboard.pages.settings.checkout_url":"Cancel-URL","dashboard.pages.settings.checkout_url_explanation":"Wanneer dit veld leeg wordt gelaten, keert de klant terug naar de standaard PrestaShop afrekenpagina.","dashboard.pages.settings.checkout_url_label":"Stel een aangepaste cancel-URL in nadat de klant de betaling heeft geannuleerd of als er iets mis is gegaan tijdens het proces.","dashboard.pages.settings.credentials":"Buckaroo gegevens","dashboard.pages.settings.credentials_label":"Haal uw Buckaroo gegevens op uit de Buckaroo Plaza","dashboard.pages.settings.custom_scripts":"Aangepaste scripts","dashboard.pages.settings.custom_scripts_label":"Voeg aangepaste javascript of css code toe aan uw checkout.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Voorbeeld","dashboard.pages.settings.explanation_intro":"Welkom bij het configuratiescherm van de Buckaroo Payment app voor jouw PrestaShop webshop. In dit scherm kunt u de app helemaal naar wens instellen. Hieronder vind u de stappen om de instellingen te configureren. Voor verdere vragen verwijzen wij u naar onze documentatie pagina.","dashboard.pages.settings.generate_credit_slip":"Een creditnota genereren","dashboard.pages.settings.generate_credit_slip_label":"Of er een creditnota moet worden gegenereerd.","dashboard.pages.settings.generate_negative_payments":"Een negatieve betaling bij terugbetalingen aanmaken","dashboard.pages.settings.generate_negative_payments_label":"Of er ook een negatieve betaling moet worden gecreëerd bij het uitvoeren van een terugbetaling.","dashboard.pages.settings.generate_voucher":"Een voucher genereren","dashboard.pages.settings.generate_voucher_label":"Of er een voucher moet worden gegenereerd.","dashboard.pages.settings.hide_advance_settings":"Geavanceerde Instellingen Verbergen","dashboard.pages.settings.mode":"Modus","dashboard.pages.settings.mode_label":"Verander eenvoudig de modus","dashboard.pages.settings.no_im_testing":"Nee, ik wil testen","dashboard.pages.settings.order_number":"Bestellingsnummer","dashboard.pages.settings.order_number2":"bestellingsnummer","dashboard.pages.settings.refund_conf":"Automatische terugbetalingen via Buckaroo","dashboard.pages.settings.refund_conf_label":"Automatische terugbetalingen via Buckaroo in- of uitschakelen wanneer een terugbetaling vanuit PrestaShop wordt gestart.","dashboard.pages.settings.re_stock_products":"De voorraad aanvullen bij retourproducten","dashboard.pages.settings.re_stock_products_label":"Of terugbetaalde producten moeten worden teruggeplaatst in de voorraad (waardoor de voorraadhoeveelheid wordt verhoogd).","dashboard.pages.settings.refunds":"Terugbetalingen","dashboard.pages.settings.refunds_label":"Terugbetaling omschrijving","dashboard.pages.settings.refunds_label_explanation":"Deze omschrijving wordt gebruikt bij de terugbetaling en zal zichtbaar zijn in Buckaroo en op het bankafschrift van de consument. Wij adviseren om de webshopnaam te gebruiken, zodat klanten de betaling gemakkelijk kunnen herkennen.","dashboard.pages.settings.refunds_label_label":"Indien ingeschakeld, kunt u (gedeeltelijke) terugbetalingen rechtstreeks vanuit uw PrestaShop-beheergebied uitvoeren Read more","dashboard.pages.settings.payment_fee":"Transactiekosten","dashboard.pages.settings.payment_fee_description":"Hier kun je verschillende opties voor betalingskosten configureren, zoals het instellen van het kostenpercentage en het aanpassen van de naam van de kosten.","dashboard.pages.settings.payment_fee_percentage_mode":"Transactiekosten percentage modus","dashboard.pages.settings.payment_fee_percentage_mode_description":"Deze instelling is alleen van toepassing op percentage-gebaseerde Buckaroo-kosten. Kies over welk bedrag het kostenpercentage wordt berekend.","dashboard.pages.settings.subtotal":"Subtotaal","dashboard.pages.settings.subtotal_incl_tax":"Subtotaal incl. btw","dashboard.pages.settings.payment_fee_frontend_label":"Naam voor transactiekosten in de checkout","dashboard.pages.settings.payment_fee_frontend_label_description":"Dit label wordt weergegeven naast de kosten op de afreken-, bestel-, factuur- en creditnota-pagina's en pdf's.","dashboard.pages.settings.remove":"Verwijder","dashboard.pages.settings.return_url":"Return-URL","dashboard.pages.settings.return_url_explanation":"Wanneer dit veld leeg wordt gelaten, keert de klant terug naar de standaard PrestaShop bevestigingspagina.","dashboard.pages.settings.return_url_label":"Stel een aangepaste return-URL in nadat de klant de betaling heeft voltooid.","dashboard.pages.settings.save":"Opslaan","dashboard.pages.settings.secret_key":"Secret key","dashboard.pages.settings.settings":"Instellingen","dashboard.pages.settings.settings_label":"Configureer uw instellingen","dashboard.pages.settings.settings_successfully_updated":"Instellingen succesvol bijgewerkt.","dashboard.pages.settings.shop_name":"Winkelnaam","dashboard.pages.settings.shop_name2":"winkelnaam","dashboard.pages.settings.step_five":"Begin met testen, als het testen goed gaat, kunt u LIVE transacties starten","dashboard.pages.settings.step_four":"Configureer de geavanceerde instellingen & Betaalmethodes","dashboard.pages.settings.step_three":"Klik op ‘test verbinding’, indien correct ga verder naar stap 4.","dashboard.pages.settings.successfully_verified_the_credentials":"De gegevens zijn succesvol geverifieerd!","dashboard.pages.settings.test_connection":"Test Gegevens","dashboard.pages.settings.the_credentials_are_not_valid":"De gegevens zijn onjuist!","dashboard.pages.settings.transaction_description":"Transactie Beschrijving","dashboard.pages.settings.transaction_description_label":'De transactiebeschrijving kan worden gevuld met een statische tekst en tags zoals: {order_number} en {shop_name}.',"dashboard.pages.settings.website_key":"Website key","dashboard.pages.settings.welcome_to_buckaroo":"Welkom bij Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"Wanneer u webwinkel nog niet live is","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Ja, ik ben klaar om betalingen te ontvangen","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Uw webwinkel is live en klaar om echte betalingen te ontvangen","payment_methods.afterpay":"Riverty","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Pay","payment_methods.googlepay":"Google Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Billink","payment_methods.blik":"Blik","payment_methods.creditcard":"Cards","payment_methods.eps":"EPS","payment_methods.giftcard":"Giftcard","payment_methods.ideal":"iDEAL | Wero","payment_methods.idin":"iDIN","payment_methods.in3":"In3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"MB WAY","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"PayByBank","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"PayPal","payment_methods.payperemail":"PayPerEmail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"SEPA Direct Debit","payment_methods.transfer":"Transfer","payment_methods.trustly":"Trustly","payment_methods.twint":"Twint","payment_methods.swish":"Swish","payment_methods.bizum":"Bizum","payment_methods.wero":"Wero","payment_methods.wechatpay":"WeChatPay","verification_methods.idin":"iDIN","dashboard.pages.payments.displayInCheckout":"Groepering van merken in checkout","dashboard.pages.payments.displayInCheckoutDesc":"Optie om te bepalen hoe merken in de checkout worden getoond. Separate: Merken worden afzonderlijk in de checkout getoond.Grouped: Merken worden binnen één groep getoond."},be={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"Une erreur s'est produite lors du traitement de la transaction : impossible de payer davantage avec des cartes cadeaux","buckaroo.response.invalid_parameter_originaltransaction":"Paramètre originaltransaction non valide.","dashboard.channel_selector.select_channel":"Sélectionnez la chaîne","dashboard.channel_selector.select_channel_label":"Chaque canal a ses paramètres de configuration.","dashboard.country_select.search_countries":"Rechercher des pays","dashboard.menu.channel":"Canal","dashboard.menu.order_payment_methods":"Modes de paiement des commandes","dashboard.menu.payment_methods":"Méthodes de payement","dashboard.menu.settings":"Paramètres","dashboard.menu.verification_methods":"Méthodes de vérification","dashboard.pages.order_payment_methods.all_countries":"Tous les pays","dashboard.pages.order_payment_methods.explanation_intro":"Vous pouvez facilement modifier l'ordre des modes de paiement en les faisant glisser au bon endroit, de haut en bas.","dashboard.pages.order_payment_methods.how_to_order_payment_method":"Comment modifier l'ordre des modes de paiement lors du paiement","dashboard.pages.order_payment_methods.if_you_have_any_questions":"Si vous avez des questions sur ce plugin de Buckaroo, vous pouvez nous contacter par e-mail :","dashboard.pages.order_payment_methods.order_payment_methods":"Modes de paiement des commandes","dashboard.pages.order_payment_methods.order_payment_methods_label":"Modifiez l'ordre des modes de paiement.","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Commande de mode de paiement mise à jour avec succès.","dashboard.pages.order_payment_methods.search_country":"Rechercher un pays","dashboard.pages.order_payment_methods.something_went_wrong":"Quelque chose s'est mal passé.","dashboard.pages.order_payment_methods.step_one":"Sélectionnez d'abord le pays pour lequel vous souhaitez modifier l'ordre d'affichage des moyens de paiement.","dashboard.pages.order_payment_methods.step_three":"Enregistrez la commande des modes de paiement choisis et vérifiez si les modes de paiement s'affichent dans le bon ordre lors du paiement de votre boutique en ligne.","dashboard.pages.order_payment_methods.step_two":"Faites glisser et déposez les modes de paiement dans l'ordre de votre choix.","dashboard.pages.payments.add":"Ajouter","dashboard.pages.payments.add_custom_giftcard":"Ajouter une carte cadeau personnalisée","dashboard.pages.payments.all_countries":"Tous les pays","dashboard.pages.payments.allowed_creditcards":"Cartes de crédit et de débit autorisées","dashboard.pages.payments.allowed_creditcards_label":"Seules les cartes de crédit ou de débit sélectionnées seront affichées pour cette méthode","dashboard.pages.payments.allowed_giftcards":"Cartes cadeaux autorisées","dashboard.pages.payments.allowed_giftcards_label":"Seules les cartes cadeaux sélectionnées cette méthode sera affichée","dashboard.pages.payments.allowed_methods":"Modes de paiement autorisés","dashboard.pages.payments.clear":"Clair","dashboard.pages.payments.client_side":"Chiffrement côté client","dashboard.pages.payments.client_side_label":"Activez ou désactivez le comportement du mode de paiement côté client.","dashboard.pages.payments.configure":"Configurer","dashboard.pages.payments.configure_your_payment_method_settings":"Configurez les paramètres de votre mode de paiement","dashboard.pages.payments.configure_your_payment_name_settings":"Configurez vos paramètres {payment_name}","dashboard.pages.payments.configure_your_verification_method_settings":"Configurez les paramètres de votre méthode de vérification","dashboard.pages.payments.configure_your_verification_name_settings":"Configurez vos paramètres {verification_name}","dashboard.pages.payments.countries":"Des pays","dashboard.pages.payments.countries_label":"Le mode de paiement ne sera affiché que pour les pays sélectionnés. ","dashboard.pages.payments.custom_giftcard":"Carte cadeau personnalisée","dashboard.pages.payments.custom_icon_url":"URL de l'icône personnalisée","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Entreprise à entreprise","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"D'entreprise à consommateur","dashboard.pages.payments.customer.type.both":"Les deux","dashboard.pages.payments.customer.type_label":"Type de client","dashboard.pages.payments.customer_type":"Type de client","dashboard.pages.payments.display_type":"Type d'affichage du bouton","dashboard.pages.payments.display_type_label":"Ce paramètre détermine la manière dont la sélection de banque pour ce mode de paiement sera affichée lors du paiement. Vous pouvez choisir entre des boutons radio ou une sélection déroulante.","dashboard.pages.payments.display_types.dropdown":"Dérouler","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Date d'échéance (en jours)","dashboard.pages.payments.edit":"Modifier","dashboard.pages.payments.enter_giftcard_details":"Entrez les détails de la carte-cadeau","dashboard.pages.payments.front_label":"Étiquette avant","dashboard.pages.payments.front_label_label":"Ce nom sera affiché pour ce mode de paiement lors du paiement. ","dashboard.pages.payments.giftcard_name":"Nom de la carte cadeau","dashboard.pages.payments.idin.display_mode":"Mode IDIN :","dashboard.pages.payments.idin.display_mode.global":"Mondial","dashboard.pages.payments.idin.display_mode.product":"Produits spécifiques","dashboard.pages.payments.idin.display_mode_label":"Avec ce paramètre, vous pouvez choisir si iDIN est activé pour tous les produits du magasin (globalement) ou uniquement pour des produits spécifiques.","dashboard.pages.payments.in3.version.label":"Version In3","dashboard.pages.payments.in3.version.v2":"V2 (capacité/In3)","dashboard.pages.payments.in3.version.v3":"V3 (In3)","dashboard.pages.payments.max_order_amount_b2c":"Montant maximum de la commande B2B","dashboard.pages.payments.maximum_order_amount":"Montant maximum de la commande","dashboard.pages.payments.min_order_amount_b2b":"Montant minimum de la commande B2B","dashboard.pages.payments.max_order_amount_b2b":"Montant maximum de la commande B2B","dashboard.pages.payments.minimum_order_amount":"Montant minimum de commande","dashboard.pages.payments.mode":"Mode","dashboard.pages.payments.mode_label":"Lorsqu'il est réglé sur « Live », vous pouvez effectuer des paiements réels. ","dashboard.pages.payments.modes_settings.live":"En direct","dashboard.pages.payments.modes_settings.off":"Désactivé","dashboard.pages.payments.modes_settings.test":"Test","dashboard.pages.payments.order_amount_allowed":"Montant de la commande autorisé","dashboard.pages.payments.order_amount_allowed_label":"Cette méthode ne sera affichée que lorsque cette condition est remplie.","dashboard.pages.payments.payment_fee_incl_vat":"Frais de paiement inclus. ","dashboard.pages.payments.payment_fee_incl_vat_label":"Vous pouvez appliquer des frais lorsque le client sélectionne cette méthode de paiement. Choisissez soit des frais fixes (par ex. 1,50) soit des frais basés sur un pourcentage (par ex. 3%). Si la valeur contient %, elle sera calculée comme frais en pourcentage. Les décimales doivent être séparées par un point (.).","dashboard.pages.payments.payment_methods":"Modes de paiement","dashboard.pages.payments.remove":"Retirer","dashboard.pages.payments.save":"Sauvegarder","dashboard.pages.payments.search_country":"Rechercher un pays","dashboard.pages.payments.search_creditcard":"Rechercher une carte de crédit ou de débit","dashboard.pages.payments.search_giftcard":"Rechercher une carte cadeau","dashboard.pages.payments.seller_protection":"Protection du vendeur","dashboard.pages.payments.seller_protection_disabled":"Non","dashboard.pages.payments.seller_protection_enable":"Activer la protection des vendeurs PayPal","dashboard.pages.payments.seller_protection_enabled":"Oui","dashboard.pages.payments.send_email_instruction":"Envoyer un e-mail d'instructions de paiement","dashboard.pages.payments.send_email_instruction_no":"Non","dashboard.pages.payments.send_email_instruction_yes":"Oui","dashboard.pages.payments.send_email_merchant":"Le marchand envoie un e-mail","dashboard.pages.payments.seperate_authorize_and_capture":"Séparer l'autorisation et la capture","dashboard.pages.payments.seperate_authorize_and_capture_label":"Lorsque cette option est activée, vous devez capturer manuellement le paiement par carte de crédit ou de débit.","dashboard.pages.payments.service_code":"Code de service","dashboard.pages.payments.service_code_label":"Après avoir demandé votre carte-cadeau personnalisée auprès d'Intersolve, vous recevrez un e-mail concernant votre code de service. ","dashboard.pages.payments.settings":"Paramètres","dashboard.pages.payments.show_country_number_and_more":"et {country_number} plus...","dashboard.pages.payments.show_less":"Montrer moins","dashboard.pages.payments.vat_type_for_wrap":"Type de cuve pour emballage cadeau","dashboard.pages.payments.vat_type_for_wrap_select":"Veuillez sélectionner le type de cuve pour l'emballage cadeau","dashboard.pages.payments.verification_methods":"Méthodes de vérification","dashboard.pages.settings.add":"Ajouter","dashboard.pages.settings.advance_settings":"Réglages avancés","dashboard.pages.settings.checkout_url":"URL de paiement","dashboard.pages.settings.checkout_url_explanation":"Lorsque ce champ est laissé vide, le client reviendra à la page de paiement par défaut de PrestaShop.","dashboard.pages.settings.checkout_url_label":"Définissez une URL de paiement personnalisée après que le client a annulé le paiement ou qu'un problème s'est produit pendant le processus.","dashboard.pages.settings.credentials":"Informations d'identification","dashboard.pages.settings.credentials_label":"Obtenez vos informations d'identification Buckaroo auprès du Place Buckaroo","dashboard.pages.settings.custom_scripts":"Scripts personnalisés","dashboard.pages.settings.custom_scripts_label":"Ajoutez du javascript ou du CSS personnalisé à votre paiement.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Exemple","dashboard.pages.settings.explanation_intro":"Bienvenue dans le panneau de configuration de l'application Buckaroo Payment pour votre boutique en ligne PrestaShop. Dans ce panneau, vous pouvez configurer l'application complètement à votre guise. Vous trouverez ci-dessous les étapes pour configurer les paramètres. Pour d'autres questions, veuillez vous référer à notre page de documentation.","dashboard.pages.settings.generate_credit_slip":"Générer un avoir","dashboard.pages.settings.generate_credit_slip_label":"Si une note de crédit doit être générée.","dashboard.pages.settings.generate_negative_payments":"Créer des paiements négatifs lors du remboursement","dashboard.pages.settings.generate_negative_payments_label":"Indique si un paiement négatif doit également être créé lors de l'exécution d'un remboursement.","dashboard.pages.settings.generate_voucher":"Générer un bon","dashboard.pages.settings.generate_voucher_label":"Si un bon doit être généré.","dashboard.pages.settings.hide_advance_settings":"Masquer les paramètres avancés","dashboard.pages.settings.if_you_have_any_questions":"Si vous avez des questions sur ce qui précède, vous pouvez nous contacter par email :","dashboard.pages.settings.if_you_have_any_questions_link":" ou téléphone ","dashboard.pages.settings.mode":"Mode","dashboard.pages.settings.mode_label":"Changez facilement de mode","dashboard.pages.settings.no_im_testing":"Non, je teste","dashboard.pages.settings.order_number":"Numéro de commande","dashboard.pages.settings.order_number2":"numéro de commande","dashboard.pages.settings.refund_conf":"Remboursements automatiques via Buckaroo","dashboard.pages.settings.refund_conf_label":"Activer/désactiver les remboursements automatiques via Buckaroo lorsqu'un remboursement est initié depuis PrestaShop.","dashboard.pages.settings.re_stock_products":"Réapprovisionner les produits","dashboard.pages.settings.re_stock_products_label":"Si les produits remboursés doivent être retournés en stock (augmentant la quantité en stock).","dashboard.pages.settings.refunds":"Remboursements","dashboard.pages.settings.refunds_label":"Description du remboursement","dashboard.pages.settings.refunds_label_explanation":"Cette description sert aux remboursements et sera visible dans Buckaroo et sur le relevé bancaire du consommateur. ","dashboard.pages.settings.refunds_label_label":"Lorsqu'il est activé, vous pouvez effectuer des remboursements (partiels) directement depuis votre zone d'administration PrestaShop En savoir plus","dashboard.pages.settings.payment_fee":"Frais de paiement","dashboard.pages.settings.payment_fee_description":"Ici, vous pouvez configurer diverses options de frais de paiement, y compris définir le pourcentage des frais et personnaliser le nom des frais.","dashboard.pages.settings.payment_fee_percentage_mode":"Mode de pourcentage des frais","dashboard.pages.settings.payment_fee_percentage_mode_description":"Ce paramètre s'applique uniquement aux frais Buckaroo basés sur un pourcentage. Veuillez choisir sur quel montant le pourcentage des frais est calculé.","dashboard.pages.settings.subtotal":"Sous-total","dashboard.pages.settings.subtotal_incl_tax":"Sous-total incl. taxes","dashboard.pages.settings.payment_fee_frontend_label":"Libellé des frais de paiement en frontend","dashboard.pages.settings.payment_fee_frontend_label_description":"Ce libellé sera affiché à côté des frais sur les pages de paiement, de commande, de facture et d'avoir ainsi que sur les PDF.","dashboard.pages.settings.remove":"Retirer","dashboard.pages.settings.return_url":"URL de retour","dashboard.pages.settings.return_url_explanation":"Lorsque ce champ est laissé vide, le client reviendra à la page de confirmation par défaut de PrestaShop.","dashboard.pages.settings.return_url_label":"Définissez une URL de retour personnalisée une fois que le client a terminé le paiement.","dashboard.pages.settings.save":"Sauvegarder","dashboard.pages.settings.secret_key":"Clef secrète","dashboard.pages.settings.settings":"Paramètres","dashboard.pages.settings.settings_label":"Configurez vos paramètres","dashboard.pages.settings.settings_successfully_updated":"Paramètres mis à jour avec succès.","dashboard.pages.settings.shop_name":"Nom de la boutique","dashboard.pages.settings.shop_name2":"Nom de la boutique","dashboard.pages.settings.step_five":"Commencez les tests, lorsque les tests sont terminés, vous pouvez démarrer des transactions EN DIRECT","dashboard.pages.settings.step_four":"Configurer les paramètres avancés","dashboard.pages.settings.step_one":"Remplissez votre clé du site Web","dashboard.pages.settings.step_three":"Cliquez sur « tester la connexion », lorsque vous êtes d’accord, passez à l’étape 4.","dashboard.pages.settings.step_two":"Remplissez votre clef secrète","dashboard.pages.settings.successfully_verified_the_credentials":"Vérification des informations d'identification réussie !","dashboard.pages.settings.test_connection":"Tester la connexion","dashboard.pages.settings.the_credentials_are_not_valid":"Les informations d'identification ne sont pas valides !","dashboard.pages.settings.transaction_description":"description de la transaction","dashboard.pages.settings.transaction_description_label":'La description de la transaction peut être remplie de texte statique et de balises telles que : {order_number} et {shop name}.',"dashboard.pages.settings.website_key":"Clé du site Web","dashboard.pages.settings.welcome_to_buckaroo":"Bienvenue à Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"Quand votre boutique n'est pas encore en ligne","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Oui, je suis prêt à recevoir des paiements","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Votre boutique est en ligne et prête à recevoir des paiements réels","payment_methods.afterpay":"Rivière","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Payer","payment_methods.googlepay":"Google Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Lien de facturation","payment_methods.blik":"Blik","payment_methods.creditcard":"Cartes","payment_methods.eps":"PSE","payment_methods.giftcard":"Carte cadeau","payment_methods.ideal":"idéal | Wero","payment_methods.idin":"IDIN","payment_methods.in3":"Dans3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"VOIE MB","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"Payer par banque","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"Pay Pal","payment_methods.payperemail":"Payer par e-mail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"Prélèvement SEPA","payment_methods.transfer":"Transfert","payment_methods.trustly":"En toute confiance","payment_methods.twint":"Twint","payment_methods.swish":"Swish","payment_methods.bizum":"Bizum","payment_methods.wero":"Wero","payment_methods.wechatpay":"WeChatPay","verification_methods.idin":"IDIN","dashboard.pages.payments.displayInCheckout":"Regroupement des marques au paiement","dashboard.pages.payments.displayInCheckoutDesc":"Option pour définir la façon dont les marques sont affichées lors du paiement. Separate : Les marques sont affichées séparément lors du paiement.Grouped : Les marques sont affichées dans un seul groupe."},ye={"buckaroo.response.an_error_occurred_while_processing_the_transaction_unable_to_pay_more_with_giftcards":"Bei der Verarbeitung der Transaktion ist ein Fehler aufgetreten: Es kann nicht mehr mit Geschenkkarten bezahlt werden","buckaroo.response.invalid_parameter_originaltransaction":"Ungültiger Parameter Originaltransaktion.","dashboard.channel_selector.select_channel":"Wählen Sie Kanal","dashboard.channel_selector.select_channel_label":"Jeder Kanal hat seine Konfigurationseinstellungen.","dashboard.country_select.search_countries":"Länder suchen","dashboard.menu.channel":"Kanal","dashboard.menu.order_payment_methods":"Zahlungsmethoden für Bestellungen","dashboard.menu.payment_methods":"Zahlungsarten","dashboard.menu.settings":"Einstellungen","dashboard.menu.verification_methods":"Überprüfungsmethoden","dashboard.pages.order_payment_methods.all_countries":"Alle Länder","dashboard.pages.order_payment_methods.explanation_intro":"Sie können die Reihenfolge der Zahlungsmethoden ganz einfach ändern, indem Sie sie von oben nach unten an die richtige Stelle ziehen.","dashboard.pages.order_payment_methods.how_to_order_payment_method":"So ändern Sie die Reihenfolge der Zahlungsarten im Checkout","dashboard.pages.order_payment_methods.if_you_have_any_questions":"Wenn Sie Fragen zu diesem Plugin von Buckaroo haben, können Sie uns per E-Mail kontaktieren:","dashboard.pages.order_payment_methods.order_payment_methods":"Zahlungsmethoden für die Bestellung","dashboard.pages.order_payment_methods.order_payment_methods_label":"Ändern Sie die Reihenfolge der Zahlungsmethoden.","dashboard.pages.order_payment_methods.payment_method_order_updated_successfully":"Die Bestellung der Zahlungsmethode wurde erfolgreich aktualisiert.","dashboard.pages.order_payment_methods.search_country":"Land suchen","dashboard.pages.order_payment_methods.something_went_wrong":"Etwas ist schief gelaufen.","dashboard.pages.order_payment_methods.step_one":"Wählen Sie zunächst das Land aus, für das Sie die Anzeigereihenfolge der Zahlungsarten ändern möchten.","dashboard.pages.order_payment_methods.step_three":"Speichern Sie die von Ihnen gewählte Zahlungsarten-Bestellung und prüfen Sie, ob die Zahlungsarten im Checkout Ihres Webshops in der richtigen Reihenfolge angezeigt werden.","dashboard.pages.order_payment_methods.step_two":"Ziehen Sie die Zahlungsmethoden per Drag-and-Drop in die gewünschte Reihenfolge.","dashboard.pages.payments.add":"Hinzufügen","dashboard.pages.payments.add_custom_giftcard":"Fügen Sie eine benutzerdefinierte Geschenkkarte hinzu","dashboard.pages.payments.all_countries":"Alle Länder","dashboard.pages.payments.allowed_creditcards":"Erlaubte Kredit- und Debitkarten","dashboard.pages.payments.allowed_creditcards_label":"Für diese Methode werden nur ausgewählte Kredit- oder Debitkarten angezeigt","dashboard.pages.payments.allowed_giftcards":"Erlaubte Geschenkkarten","dashboard.pages.payments.allowed_giftcards_label":"Diese Methode wird nur für ausgewählte Geschenkkarten angezeigt","dashboard.pages.payments.allowed_methods":"Erlaubte Zahlungsmethoden","dashboard.pages.payments.clear":"Klar","dashboard.pages.payments.client_side":"Clientseitige Verschlüsselung","dashboard.pages.payments.client_side_label":"Aktivieren oder deaktivieren Sie das Verhalten der clientseitigen Zahlungsmethode.","dashboard.pages.payments.configure":"Konfigurieren","dashboard.pages.payments.configure_your_payment_method_settings":"Konfigurieren Sie Ihre Zahlungsmethodeneinstellungen","dashboard.pages.payments.configure_your_payment_name_settings":"Konfigurieren Sie Ihre {payment_name}-Einstellungen","dashboard.pages.payments.configure_your_verification_method_settings":"Konfigurieren Sie die Einstellungen Ihrer Verifizierungsmethode","dashboard.pages.payments.configure_your_verification_name_settings":"Konfigurieren Sie Ihre {verification_name}-Einstellungen","dashboard.pages.payments.countries":"Länder","dashboard.pages.payments.countries_label":"Die Zahlungsart wird nur für ausgewählte Länder angezeigt. ","dashboard.pages.payments.custom_giftcard":"Individuelle Geschenkkarte","dashboard.pages.payments.custom_icon_url":"Benutzerdefinierte Symbol-URL","dashboard.pages.payments.customer.type.b2b":"B2B","dashboard.pages.payments.customer.type.b2b.long":"Von Geschäft zu Geschäft","dashboard.pages.payments.customer.type.b2c":"B2C","dashboard.pages.payments.customer.type.b2c.long":"Business-to-Consumer","dashboard.pages.payments.customer.type.both":"Beide","dashboard.pages.payments.customer.type_label":"Kundentyp","dashboard.pages.payments.customer_type":"Kundentyp","dashboard.pages.payments.display_type":"Schaltflächenanzeigetyp","dashboard.pages.payments.display_type_label":"Diese Einstellung legt fest, wie die Bankauswahl für diese Zahlungsart im Checkout angezeigt wird. Sie können zwischen Optionsfeldern oder einer Dropdown-Auswahl wählen.","dashboard.pages.payments.display_types.dropdown":"Runterfallen","dashboard.pages.payments.display_types.radio":"Radio","dashboard.pages.payments.due_date":"Fälligkeitsdatum (in Tagen)","dashboard.pages.payments.edit":"Bearbeiten","dashboard.pages.payments.enter_giftcard_details":"Geben Sie die Details der Geschenkkarte ein","dashboard.pages.payments.front_label":"Vorderes Etikett","dashboard.pages.payments.front_label_label":"Dieser Name wird für diese Zahlungsart im Checkout angezeigt. ","dashboard.pages.payments.giftcard_name":"Name der Geschenkkarte","dashboard.pages.payments.idin.display_mode":"iDIN-Modus:","dashboard.pages.payments.idin.display_mode.global":"Global","dashboard.pages.payments.idin.display_mode.product":"Spezifische Produkte","dashboard.pages.payments.idin.display_mode_label":"Mit dieser Einstellung können Sie auswählen, ob iDIN für alle Produkte im Shop (global) oder nur für bestimmte Produkte aktiviert ist.","dashboard.pages.payments.in3.version.label":"In3-Version","dashboard.pages.payments.in3.version.v2":"V2 (Capayable/In3)","dashboard.pages.payments.in3.version.v3":"V3 (In3)","dashboard.pages.payments.max_order_amount_b2c":"Maximaler B2B-Bestellbetrag","dashboard.pages.payments.maximum_order_amount":"Maximaler Bestellwert","dashboard.pages.payments.min_order_amount_b2b":"Mindestbestellwert für B2B","dashboard.pages.payments.max_order_amount_b2b":"Maximaler B2B Bestellwert","dashboard.pages.payments.minimum_order_amount":"Mindestbestellmenge","dashboard.pages.payments.mode":"Modus","dashboard.pages.payments.mode_label":"Bei der Einstellung „Live“ können Sie tatsächliche Zahlungen durchführen. ","dashboard.pages.payments.modes_settings.live":"Live","dashboard.pages.payments.modes_settings.off":"Aus","dashboard.pages.payments.modes_settings.test":"Prüfen","dashboard.pages.payments.order_amount_allowed":"Bestellmenge zulässig","dashboard.pages.payments.order_amount_allowed_label":"Diese Methode wird nur angezeigt, wenn diese Bedingung erfüllt ist.","dashboard.pages.payments.payment_fee_incl_vat":"Zahlungsgebühr inkl. ","dashboard.pages.payments.payment_fee_incl_vat_label":"Sie können eine Gebühr erheben, wenn der Kunde diese Zahlungsmethode auswählt. Wählen Sie entweder eine feste Gebühr (z. B. 1,50) oder eine prozentuale Gebühr (z. B. 3%). Wenn der Wert ein % enthält, wird er als prozentuale Gebühr berechnet. Dezimalstellen sollten durch einen Punkt (.) getrennt werden.","dashboard.pages.payments.payment_methods":"Zahlungsmethoden","dashboard.pages.payments.remove":"Entfernen","dashboard.pages.payments.save":"Speichern","dashboard.pages.payments.search_country":"Land suchen","dashboard.pages.payments.search_creditcard":"Suche Kredit- oder Debitkarte","dashboard.pages.payments.search_giftcard":"Geschenkkarte suchen","dashboard.pages.payments.seller_protection":"Verkäuferschutz","dashboard.pages.payments.seller_protection_disabled":"NEIN","dashboard.pages.payments.seller_protection_enable":"Aktivieren Sie den PayPal-Verkäuferschutz","dashboard.pages.payments.seller_protection_enabled":"Ja","dashboard.pages.payments.send_email_instruction":"Senden Sie eine E-Mail mit Zahlungsanweisungen","dashboard.pages.payments.send_email_instruction_no":"NEIN","dashboard.pages.payments.send_email_instruction_yes":"Ja","dashboard.pages.payments.send_email_merchant":"Händler sendet E-Mail","dashboard.pages.payments.seperate_authorize_and_capture":"Getrennte Autorisierung und Erfassung","dashboard.pages.payments.seperate_authorize_and_capture_label":"Wenn diese Option aktiviert ist, müssen Sie die Kredit- oder Debitkartenzahlung manuell erfassen.","dashboard.pages.payments.service_code":"Service code","dashboard.pages.payments.service_code_label":"Nachdem Sie Ihre individuelle Geschenkkarte bei Intersolve angefordert haben, erhalten Sie eine E-Mail mit Ihrem Servicecode. ","dashboard.pages.payments.settings":"Einstellungen","dashboard.pages.payments.show_country_number_and_more":"und {country_number} mehr...","dashboard.pages.payments.show_less":"Zeige weniger","dashboard.pages.payments.vat_type_for_wrap":"Mehrwertsteuertyp für Geschenkverpackungen","dashboard.pages.payments.vat_type_for_wrap_select":"Bitte wählen Sie den Mehrwertsteuertyp für die Geschenkverpackung aus","dashboard.pages.payments.verification_methods":"Überprüfungsmethoden","dashboard.pages.settings.add":"Hinzufügen","dashboard.pages.settings.advance_settings":"Erweiterte Einstellungen","dashboard.pages.settings.checkout_url":"Checkout-URL","dashboard.pages.settings.checkout_url_explanation":"Wenn dieses Feld leer bleibt, kehrt der Kunde zur Standard-Checkout-Seite von PrestaShop zurück.","dashboard.pages.settings.checkout_url_label":"Legen Sie eine benutzerdefinierte Checkout-URL fest, nachdem der Kunde die Zahlung abgebrochen hat oder während des Vorgangs ein Fehler aufgetreten ist.","dashboard.pages.settings.credentials":"Referenzen","dashboard.pages.settings.credentials_label":"Holen Sie sich Ihre Buckaroo-Anmeldeinformationen von der Buckaroo Plaza","dashboard.pages.settings.custom_scripts":"Benutzerdefinierte Skripte","dashboard.pages.settings.custom_scripts_label":"Fügen Sie Ihrem Checkout benutzerdefiniertes Javascript oder CSS hinzu.","dashboard.pages.settings.custom_scripts_placeholder":"Javascript / CSS (https://example.com/style.css)","dashboard.pages.settings.example":"Beispiel","dashboard.pages.settings.explanation_intro":"Willkommen im Konfigurationsbereich der Buckaroo Payment App für Ihren PrestaShop-Webshop. In diesem Bereich können Sie die App ganz nach Ihren Wünschen einstellen. Nachfolgend finden Sie die Schritte zum Konfigurieren der Einstellungen. Weitere Fragen finden Sie in unserem Dokumentationsseite.","dashboard.pages.settings.generate_credit_slip":"Erstellen Sie einen Gutschriftsbeleg","dashboard.pages.settings.generate_credit_slip_label":"Ob eine Gutschrift erstellt werden soll.","dashboard.pages.settings.generate_negative_payments":"Erstellen Sie negative Zahlungen bei Rückerstattung","dashboard.pages.settings.generate_negative_payments_label":"Ob bei einer Rückerstattung auch eine negative Zahlung erstellt werden muss.","dashboard.pages.settings.generate_voucher":"Generieren Sie einen Gutschein","dashboard.pages.settings.generate_voucher_label":"Ob ein Gutschein generiert werden soll.","dashboard.pages.settings.hide_advance_settings":"Verberge erweiterte Einstellungen","dashboard.pages.settings.if_you_have_any_questions":"Wenn Sie Fragen zu den oben genannten Punkten haben, können Sie uns per E-Mail kontaktieren:","dashboard.pages.settings.if_you_have_any_questions_link":" oder Telefon ","dashboard.pages.settings.mode":"Modus","dashboard.pages.settings.mode_label":"Ändern Sie ganz einfach den Modus","dashboard.pages.settings.no_im_testing":"Nein, ich teste","dashboard.pages.settings.order_number":"Bestellnummer","dashboard.pages.settings.order_number2":"Bestellnummer","dashboard.pages.settings.refund_conf":"Automatische Rückerstattungen über Buckaroo","dashboard.pages.settings.refund_conf_label":"Aktivieren/deaktivieren Sie automatische Rückerstattungen über Buckaroo, wenn eine Rückerstattung in PrestaShop initiiert wird.","dashboard.pages.settings.re_stock_products":"Produkte wieder auffüllen","dashboard.pages.settings.re_stock_products_label":"Ob erstattete Produkte wieder in den Lagerbestand aufgenommen werden sollen (Erhöhung der Lagermenge).","dashboard.pages.settings.refunds":"Rückerstattungen","dashboard.pages.settings.refunds_label":"Rückerstattungsbeschreibung","dashboard.pages.settings.refunds_label_explanation":"Diese Beschreibung wird für die Rückerstattungen verwendet und ist in Buckaroo und auf dem Kontoauszug des Verbrauchers sichtbar. ","dashboard.pages.settings.refunds_label_label":"Wenn diese Option aktiviert ist, können Sie (teilweise) Rückerstattungen direkt in Ihrem PrestaShop-Administrationsbereich vornehmen Mehr lesen","dashboard.pages.settings.payment_fee":"Zahlungsgebühren","dashboard.pages.settings.payment_fee_description":"Hier können Sie verschiedene Optionen für Zahlungskosten konfigurieren, einschließlich der Einstellung des Prozentsatzes und der Anpassung des Namens der Kosten.","dashboard.pages.settings.payment_fee_percentage_mode":"Gebührenprozentsatzmodus","dashboard.pages.settings.payment_fee_percentage_mode_description":"Diese Einstellung gilt nur für prozentbasierte Buckaroo-Gebühren. Bitte wählen Sie, über welchen Betrag der Gebührenprozentsatz berechnet wird.","dashboard.pages.settings.subtotal":"Zwischensumme","dashboard.pages.settings.subtotal_incl_tax":"Zwischensumme inkl. MwSt.","dashboard.pages.settings.payment_fee_frontend_label":"Frontend-Label für Zahlungsgebühr","dashboard.pages.settings.payment_fee_frontend_label_description":"Dieses Label wird neben der Gebühr auf den Checkout-, Bestell-, Rechnungs- und Gutschriftenseiten sowie in PDFs angezeigt.","dashboard.pages.settings.remove":"Entfernen","dashboard.pages.settings.return_url":"Rückgabe-URL","dashboard.pages.settings.return_url_explanation":"Wenn dieses Feld leer bleibt, kehrt der Kunde zur Standard-Bestätigungsseite von PrestaShop zurück.","dashboard.pages.settings.return_url_label":"Legen Sie eine benutzerdefinierte Rückgabe-URL fest, nachdem der Kunde die Zahlung abgeschlossen hat.","dashboard.pages.settings.save":"Speichern","dashboard.pages.settings.secret_key":"Geheimer Schlüssel","dashboard.pages.settings.settings":"Einstellungen","dashboard.pages.settings.settings_label":"Konfigurieren Sie Ihre Einstellungen","dashboard.pages.settings.settings_successfully_updated":"Einstellungen erfolgreich aktualisiert.","dashboard.pages.settings.shop_name":"Laden Name","dashboard.pages.settings.shop_name2":"Laden Name","dashboard.pages.settings.step_five":"Beginnen Sie mit dem Testen. Wenn der Test in Ordnung ist, können Sie LIVE-Transaktionen starten","dashboard.pages.settings.step_four":"Konfigurieren Sie erweiterte Einstellungen","dashboard.pages.settings.step_one":"Füllen Sie Ihre aus Websiteschlüssel","dashboard.pages.settings.step_three":"Klicken Sie auf „Verbindung testen“. Wenn OK, fahren Sie mit Schritt 4 fort.","dashboard.pages.settings.step_two":"Füllen Sie Ihre aus geheimer Schlüssel","dashboard.pages.settings.successfully_verified_the_credentials":"Die Anmeldeinformationen wurden erfolgreich überprüft!","dashboard.pages.settings.test_connection":"Testverbindung","dashboard.pages.settings.the_credentials_are_not_valid":"Die Anmeldedaten sind ungültig!","dashboard.pages.settings.transaction_description":"Transaktion Beschreibung","dashboard.pages.settings.transaction_description_label":'Die Transaktionsbeschreibung kann mit statischem Text und Tags wie den folgenden gefüllt werden: {order_number} Und {shop_name}.',"dashboard.pages.settings.website_key":"Website-Schlüssel","dashboard.pages.settings.welcome_to_buckaroo":"Willkommen in Buckaroo","dashboard.pages.settings.when_your_shop_is_not_live_yet":"Wenn Ihr Shop noch nicht live ist","dashboard.pages.settings.yes_im_ready_to_receive_payments":"Ja, ich bin bereit, Zahlungen zu erhalten","dashboard.pages.settings.your_shop_is_live_and_ready_to_receive_real_payments":"Ihr Shop ist live und bereit, echte Zahlungen zu empfangen","payment_methods.afterpay":"Riverty","payment_methods.alipay":"Alipay","payment_methods.applepay":"Apple Pay","payment_methods.googlepay":"Google Pay","payment_methods.bancontact":"Bancontact","payment_methods.bancontactmrcash":"Bancontact","payment_methods.belfius":"Belfius","payment_methods.billink":"Billink","payment_methods.blik":"Blik","payment_methods.creditcard":"Karten","payment_methods.eps":"EPS","payment_methods.giftcard":"Geschenkkarte","payment_methods.ideal":"Ideal | Wero","payment_methods.idin":"iDIN","payment_methods.in3":"In3","payment_methods.kbcpaymentbutton":"KBC","payment_methods.klarna":"Klarna","payment_methods.mbway":"MB WEG","payment_methods.multibanco":"Multibanco","payment_methods.paybybank":"PayByBank","payment_methods.payconiq":"Payconiq","payment_methods.paypal":"PayPal","payment_methods.payperemail":"PayPerEmail","payment_methods.przelewy24":"Przelewy24","payment_methods.sepadirectdebit":"SEPA-Lastschrift","payment_methods.transfer":"Überweisen","payment_methods.trustly":"Vertrauenswürdig","payment_methods.twint":"Twint","payment_methods.swish":"Swish","payment_methods.bizum":"Bizum","payment_methods.wero":"Wero","payment_methods.wechatpay":"WeChatPay","verification_methods.idin":"iDIN","dashboard.pages.payments.displayInCheckout":"Marken-Gruppierung im Checkout","dashboard.pages.payments.displayInCheckoutDesc":"Option, wie Marken im Checkout angezeigt werden sollen. Separate: Marken werden im Checkout separat angezeigt.Grouped: Marken werden innerhalb einer Gruppe angezeigt."};/*
*
*
*