diff --git a/check-translations.sh b/check-translations.sh new file mode 100644 index 000000000..bfbce4f46 --- /dev/null +++ b/check-translations.sh @@ -0,0 +1,37 @@ +#! /bin/bash + +#copy potFile +cp en_GB.pot en_GB.po +echo "en_GB.po created" +#remove header +sed -i '' -e '1,17d' en_GB.po +#remove msgctxt +sed -i '' -e 's/msgctxt.*//g' en_GB.po +#remove msgstr +sed -i '' -e 's/msgstr.*//g' en_GB.po +#remove comments +sed -i '' -e 's/#.*//g' en_GB.po +#remove empty lines +sed -i '' -e '/^$/d' en_GB.po +#create array of file names +files=($(ls -1 *.po)) +#for each file in files +for file in "${files[@]}" +do + #copy file to temp-file + cp $file temp.po + #remove header + sed -i '' -e '1,17d' temp.po + #remove msgctxt + sed -i '' -e 's/msgctxt.*//g' temp.po + #remove msgstr + sed -i '' -e 's/msgstr.*//g' temp.po + #remove comments + sed -i '' -e 's/#.*//g' temp.po + #remove empty lines + sed -i '' -e '/^$/d' temp.po + #diff en_GB.po with all other files + diff en_GB.po temp.po > $file.diff + #remove temp-file + rm temp.po +done diff --git a/gulpfile.js b/gulpfile.js index 251c19ac1..9bd9fa6d4 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -8,6 +8,7 @@ const usage = require('gulp-help-doc') const zip = require('gulp-zip') const rename = require('gulp-rename') const date = require('date-and-time') +const wpPot = require('wp-pot') const options = { ...minimist( @@ -272,6 +273,22 @@ function _archive({baseDir, buildDir, distDir, packageVersion, packageName}) { } } +function _generatePotFile ({buildDir, langDir}) { + return async function generatePotFile (done) { + wpPot({ + destFile: `languages/en_GB.pot`, + includePOTCreationDate: false, + src: [ + `mollie-payments-for-woocommerce.php`, + `src/**/*.php`, + `inc/**/*.php`, + ] + }); + + done() + } +} + // -------------------------------------------------------------------- // TARGETS // -------------------------------------------------------------------- @@ -327,3 +344,7 @@ exports.dist = series( exports.default = series( exports.build ) + +exports.generatePotFile = series( + _generatePotFile(options) +) diff --git a/inc/woocommerce.php b/inc/woocommerce.php index 855132766..51089e80b 100644 --- a/inc/woocommerce.php +++ b/inc/woocommerce.php @@ -39,6 +39,20 @@ function untrailingslashit($string) } } +if (!function_exists('as_unschedule_action')) { + /** + * @since WooCommerce 3.0.0 + * @param string $hook + * @param array $args + * @param string $group + * @return bool + */ + function as_unschedule_action($hook, $args = [], $group = '') + { + return 0; + } +} + function mollieWooCommerceSession() { return WC()->session; diff --git a/languages/en_GB.pot b/languages/en_GB.pot new file mode 100644 index 000000000..76ca2baa8 --- /dev/null +++ b/languages/en_GB.pot @@ -0,0 +1,1975 @@ +# Copyright (C) 2022 unnamed project +# This file is distributed under the same license as the unnamed project package. +msgid "" +msgstr "" +"Project-Id-Version: Mollie Payments for WooCommerce 7.3.3\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: undefined\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../inc/settings/mollie_advanced_settings.php:12 +msgctxt "Label {orderNumber} description for payment description options" +msgid "Order number" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:13 +msgctxt "Label {storeName} description for payment description options" +msgid "Site Title" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:14 +msgctxt "Label {customer.firstname} description for payment description options" +msgid "Customer's first name" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:15 +msgctxt "Label {customer.lastname} description for payment description options" +msgid "Customer's last name" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:16 +msgctxt "Label {customer.company} description for payment description options" +msgid "Customer's company name" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:22 +msgid "Mollie advanced settings" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:24, ../src/Settings/Page/MollieSettingsPage.php:185 +msgid "The following options are required to use the plugin and are used by all Mollie payment methods" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:28 +msgid "Order status after cancelled payment" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:31 +msgid "Pending" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:32 +msgid "Cancelled" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:34 +msgid "Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don't want customers to re-try paying with a different payment method. This doesn't apply to payments for orders via the new Orders API and Klarna payments." +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:39 +msgid "Payment screen language" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:42 +msgid "Automatically send WordPress language" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:45, ../inc/settings/mollie_advanced_settings.php:105, ../src/Settings/General/MollieGeneralSettings.php:266 +msgid "default" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:46 +msgid "Detect using browser language" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:50 +msgid "English" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:51 +msgid "Dutch" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:52 +msgid "Flemish (Belgium)" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:53 +msgid "French" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:54 +msgid "French (Belgium)" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:55 +msgid "German" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:56 +msgid "Austrian German" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:57 +msgid "Swiss German" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:58 +msgid "Spanish" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:59 +msgid "Catalan" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:60 +msgid "Portuguese" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:61 +msgid "Italian" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:62 +msgid "Norwegian" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:63 +msgid "Swedish" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:64 +msgid "Finnish" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:65 +msgid "Danish" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:66 +msgid "Icelandic" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:67 +msgid "Hungarian" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:68 +msgid "Polish" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:69 +msgid "Latvian" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:70 +msgid "Lithuanian" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:73 +msgid "Sending a language (or locale) is required. The option 'Automatically send WordPress language' will try to get the customer's language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers." +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:81 +msgid "Store customer details at Mollie" +msgstr "" + +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_advanced_settings.php:84 +msgid "Should Mollie store customers name and email address for Single Click Payments? Default %1$s. Required if WooCommerce Subscriptions is being used! Read more about %2$s and how it improves your conversion." +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:88, ../src/Settings/Page/MollieSettingsPage.php:303 +msgid "Enabled" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:89 +msgid "Single Click Payments" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:97 +msgid "Select API Method" +msgstr "" + +#. translators: Placeholder 1: opening link tag, placeholder 2: closing link tag +#: ../inc/settings/mollie_advanced_settings.php:114 +msgid "Click %1$shere%2$s to read more about the differences between the Payments and Orders API" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:124 +msgid "API Payment Description" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:141 +msgctxt "Payment description options" +msgid "Available variables" +msgstr "" + +#. translators: Placeholder 1: Opening paragraph tag, placeholder 2: Closing paragraph tag +#: ../inc/settings/mollie_advanced_settings.php:166 +msgid "Select among the available variables the description to be used for this transaction.%1$s(Note: this only works when the method is set to Payments API)%2$s" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:177 +msgid "Surcharge gateway fee label" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:183, ../src/Gateway/Surcharge.php:36 +msgid "Gateway Fee" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:185 +msgid "This is the label will appear in frontend when the surcharge applies" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:193 +msgid "Remove Mollie data from Database on uninstall" +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:199 +msgid "Remove options and scheduled actions from database when uninstalling the plugin." +msgstr "" + +#: ../inc/settings/mollie_advanced_settings.php:200 +msgid "Clear now" +msgstr "" + +#: ../inc/settings/mollie_applepay_settings.php:12, ../src/PaymentMethods/Applepay.php:13 +msgid "Apple Pay" +msgstr "" + +#: ../inc/settings/mollie_applepay_settings.php:14 +msgid "The following options are required to use the Apple Pay gateway" +msgstr "" + +#: ../inc/settings/mollie_applepay_settings.php:19, ../src/Settings/General/MollieGeneralSettings.php:18 +msgid "Enable/Disable" +msgstr "" + +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:21, ../src/Settings/General/MollieGeneralSettings.php:25 +msgid "Enable %s" +msgstr "" + +#: ../inc/settings/mollie_applepay_settings.php:29, ../src/Settings/General/MollieGeneralSettings.php:38 +msgid "Title" +msgstr "" + +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:32, ../src/Settings/General/MollieGeneralSettings.php:42 +msgid "This controls the title which the user sees during checkout. Default %s" +msgstr "" + +#: ../inc/settings/mollie_applepay_settings.php:46, ../inc/settings/mollie_applepay_settings.php:48, ../src/Settings/General/MollieGeneralSettings.php:66 +msgid "Display logo" +msgstr "" + +#: ../inc/settings/mollie_applepay_settings.php:61, ../src/Settings/General/MollieGeneralSettings.php:52 +msgid "Description" +msgstr "" + +#. translators: Placeholder 1: Gateway description +#: ../inc/settings/mollie_applepay_settings.php:64, ../src/Settings/General/MollieGeneralSettings.php:56 +msgid "Payment method description that the customer will see on your checkout. Default %s" +msgstr "" + +#: ../inc/settings/mollie_applepay_settings.php:81 +msgid "Apple Pay button settings" +msgstr "" + +#: ../inc/settings/mollie_applepay_settings.php:86 +msgid "The following options are required to use the Apple Pay Direct Button" +msgstr "" + +#: ../inc/settings/mollie_applepay_settings.php:90, ../src/PaymentMethods/Applepay.php:34 +msgid "Enable Apple Pay Button on Cart page" +msgstr "" + +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:93, ../src/PaymentMethods/Applepay.php:36 +msgid "Enable the Apple Pay direct buy button on the Cart page" +msgstr "" + +#: ../inc/settings/mollie_applepay_settings.php:106, ../src/PaymentMethods/Applepay.php:44 +msgid "Enable Apple Pay Button on Product page" +msgstr "" + +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:109, ../src/PaymentMethods/Applepay.php:46 +msgid "Enable the Apple Pay direct buy button on the Product page" +msgstr "" + +#: ../inc/settings/mollie_components.php:9 +msgctxt "Mollie Components Settings" +msgid "Base Styles" +msgstr "" + +#: ../inc/settings/mollie_components.php:18, ../inc/settings/mollie_components.php:158 +msgctxt "Mollie Components Settings" +msgid "Background Color" +msgstr "" + +#: ../inc/settings/mollie_components.php:24, ../inc/settings/mollie_components.php:147 +msgctxt "Mollie Components Settings" +msgid "Text Color" +msgstr "" + +#: ../inc/settings/mollie_components.php:30 +msgctxt "Mollie Components Settings" +msgid "Placeholder Color" +msgstr "" + +#: ../inc/settings/mollie_components.php:36 +msgctxt "Mollie Components Settings" +msgid "Font Size" +msgstr "" + +#: ../inc/settings/mollie_components.php:37 +msgctxt "Mollie Components Settings" +msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'." +msgstr "" + +#: ../inc/settings/mollie_components.php:47 +msgctxt "Mollie Components Settings" +msgid "Font Weight" +msgstr "" + +#: ../inc/settings/mollie_components.php:50 +msgctxt "Mollie Components Settings" +msgid "Lighter" +msgstr "" + +#: ../inc/settings/mollie_components.php:51 +msgctxt "Mollie Components Settings" +msgid "Regular" +msgstr "" + +#: ../inc/settings/mollie_components.php:52 +msgctxt "Mollie Components Settings" +msgid "Bold" +msgstr "" + +#: ../inc/settings/mollie_components.php:58 +msgctxt "Mollie Components Settings" +msgid "Letter Spacing" +msgstr "" + +#: ../inc/settings/mollie_components.php:64 +msgctxt "Mollie Components Settings" +msgid "Line Height" +msgstr "" + +#: ../inc/settings/mollie_components.php:73 +msgctxt "Mollie Components Settings" +msgid "Padding" +msgstr "" + +#: ../inc/settings/mollie_components.php:74 +msgctxt "Mollie Components Settings" +msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`." +msgstr "" + +#: ../inc/settings/mollie_components.php:84 +msgctxt "Mollie Components Settings" +msgid "Align Text" +msgstr "" + +#: ../inc/settings/mollie_components.php:87 +msgctxt "Mollie Components Settings" +msgid "Left" +msgstr "" + +#: ../inc/settings/mollie_components.php:88 +msgctxt "Mollie Components Settings" +msgid "Right" +msgstr "" + +#: ../inc/settings/mollie_components.php:89 +msgctxt "Mollie Components Settings" +msgid "Center" +msgstr "" + +#: ../inc/settings/mollie_components.php:90 +msgctxt "Mollie Components Settings" +msgid "Justify" +msgstr "" + +#: ../inc/settings/mollie_components.php:96 +msgctxt "Mollie Components Settings" +msgid "Transform Text " +msgstr "" + +#: ../inc/settings/mollie_components.php:99 +msgctxt "Mollie Components Settings" +msgid "None" +msgstr "" + +#: ../inc/settings/mollie_components.php:104 +msgctxt "Mollie Components Settings" +msgid "Capitalize" +msgstr "" + +#: ../inc/settings/mollie_components.php:109 +msgctxt "Mollie Components Settings" +msgid "Uppercase" +msgstr "" + +#: ../inc/settings/mollie_components.php:114 +msgctxt "Mollie Components Settings" +msgid "Lowercase" +msgstr "" + +#: ../inc/settings/mollie_components.php:119 +msgctxt "Mollie Components Settings" +msgid "Full Width" +msgstr "" + +#: ../inc/settings/mollie_components.php:124 +msgctxt "Mollie Components Settings" +msgid "Full Size Kana" +msgstr "" + +#: ../inc/settings/mollie_components.php:138 +msgctxt "Mollie Components Settings" +msgid "Invalid Status Styles" +msgstr "" + +#: ../inc/settings/mollie_components.php:148 +msgctxt "Mollie Components Settings" +msgid "Text Color for invalid input." +msgstr "" + +#: ../inc/settings/mollie_components.php:159 +msgctxt "Mollie Components Settings" +msgid "Background Color for invalid input." +msgstr "" + +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to settings. Placeholder 4: Closing link tag. +#: ../src/Activation/ActivationModule.php:167 +msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s." +msgstr "" + +#: ../src/Activation/ConstraintsChecker.php:109 +msgid "%1$sMollie Payments for WooCommerce is inactive:%2$s" +msgstr "" + +#: ../src/Activation/ConstraintsChecker.php:113 +msgid "%1$sCorrect the above errors to use Mollie Payments for Woocommerce%2$s" +msgstr "" + +#: ../src/Assets/AssetsModule.php:432 +msgid "Name on card" +msgstr "" + +#: ../src/Assets/AssetsModule.php:436 +msgid "Card number" +msgstr "" + +#: ../src/Assets/AssetsModule.php:440 +msgid "Expiry date" +msgstr "" + +#: ../src/Assets/AssetsModule.php:444 +msgid "CVC/CVV" +msgstr "" + +#: ../src/Assets/AssetsModule.php:451 +msgid "An unknown error occurred, please check the card fields." +msgstr "" + +#: ../src/Assets/AssetsModule.php:521 +msgid "Please choose a billing country to see the available payment methods" +msgstr "" + +#: ../src/Assets/AssetsModule.php:570 +msgid "No custom logo selected" +msgstr "" + +#: ../src/Gateway/MolliePaymentGateway.php:271, ../src/Settings/Page/MollieSettingsPage.php:313 +msgid "Test mode enabled." +msgstr "" + +#. translators: The surrounding %s's Will be replaced by a link to the global setting page +#: ../src/Gateway/MolliePaymentGateway.php:276 +msgid "No API key provided. Please %1$sset you Mollie API key%2$s first." +msgstr "" + +#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Gateway/MolliePaymentGateway.php:291 +msgid "%1$s not enabled in your Mollie profile. You can enable it by editing your %2$sMollie profile%3$s." +msgstr "" + +#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies +#: ../src/Gateway/MolliePaymentGateway.php:306 +msgid "Current shop currency %1$s not supported by Mollie. Read more about %2$ssupported currencies and payment methods.%3$s " +msgstr "" + +#: ../src/Gateway/MolliePaymentGateway.php:577 +msgid "You have cancelled your payment. Please complete your order with a different payment method." +msgstr "" + +#: ../src/Gateway/MolliePaymentGateway.php:597, ../src/Gateway/MolliePaymentGateway.php:611 +msgid "Your payment was not successful. Please complete your order with a different payment method." +msgstr "" + +#: ../src/Gateway/MolliePaymentGateway.php:647 +msgid "Could not load order %s" +msgstr "" + +#: ../src/Gateway/MolliePaymentGateway.php:906 +msgid "Order cancelled" +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Gateway/MolliePaymentGateway.php:943 +msgid "%1$s payment still pending (%2$s) but customer already returned to the store. Status should be updated automatically in the future, if it doesn't this might indicate a communication issue between the site and Mollie." +msgstr "" + +#: ../src/Gateway/MolliePaymentGateway.php:949, ../src/Payment/MollieObject.php:687, ../src/Payment/MollieObject.php:655, ../src/Payment/MollieOrder.php:275, ../src/Payment/MollieOrder.php:332, ../src/Payment/MollieOrder.php:377, ../src/Payment/MollieOrder.php:459, ../src/Payment/MollieOrder.php:522, ../src/Payment/MollieOrder.php:941, ../src/Payment/MollieOrderService.php:165, ../src/Payment/MollieOrderService.php:428, ../src/Payment/MollieOrderService.php:491, ../src/Payment/MollieOrderService.php:705, ../src/Payment/MolliePayment.php:223, ../src/Payment/MolliePayment.php:310, ../src/Payment/MolliePayment.php:379, ../src/Payment/MolliePayment.php:402, ../src/Payment/PaymentService.php:788, ../src/Subscription/MollieSepaRecurringGateway.php:138, ../src/Subscription/MollieSepaRecurringGateway.php:205, ../src/Subscription/MollieSubscriptionGateway.php:470 +msgid "test mode" +msgstr "" + +#: ../src/Gateway/MolliePaymentGateway.php:964 +msgid ", payment pending." +msgstr "" + +#: ../src/Gateway/MolliePaymentGateway.php:996 +msgid "Your order has been cancelled." +msgstr "" + +#: ../src/Gateway/Surcharge.php:81 +msgid "A surchage fee might apply" +msgstr "" + +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. +#: ../src/Gateway/Surcharge.php:275 +msgid " + %1$s %2$s fee might apply" +msgstr "" + +#. translators: Placeholder 1: Fee amount tag. +#: ../src/Gateway/Surcharge.php:292 +msgid " + %1$s%% fee might apply" +msgstr "" + +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. +#: ../src/Gateway/Surcharge.php:315 +msgid " + %1$s %2$s + %3$s%% fee might apply" +msgstr "" + +#: ../src/Gateway/Surcharge.php:348 +msgid " (incl. VAT)" +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:682 +msgid "%1$s payment failed via Mollie (%2$s)." +msgstr "" + +#: ../src/Payment/MollieObject.php:650 +msgid "%1$s renewal payment failed via Mollie (%2$s). You will need to manually review the payment and adjust product stocks if you use them." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:721 +msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated." +msgstr "" + +#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID +#: ../src/Payment/MollieObject.php:740, ../src/PaymentMethods/InstructionStrategies/PaypalInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (PayPal transaction ID: %3$s)" +msgstr "" + +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:881 +msgctxt "Payment description for {orderNumber}" +msgid "Order {orderNumber}" +msgstr "" + +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:891 +msgctxt "Payment description for {storeName}" +msgid "StoreName {storeName}" +msgstr "" + +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:901 +msgctxt "Payment description for {customer.firstname}" +msgid "Customer Firstname {customer.firstname}" +msgstr "" + +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:911 +msgctxt "Payment description for {customer.lastname}" +msgid "Customer Lastname {customer.lastname}" +msgstr "" + +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:921 +msgctxt "Payment description for {customer.company}" +msgid "Customer Company {customer.company}" +msgstr "" + +#: ../src/Payment/MollieObject.php:936 +msgid "Order" +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:271, ../src/Payment/MolliePayment.php:221, ../src/Subscription/MollieSepaRecurringGateway.php:211 +msgid "Order completed using %1$s payment (%2$s)." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:330 +msgid "Order authorized using %1$s payment (%2$s). Set order to completed in WooCommerce when you have shipped the products, to capture the payment. Do this within 28 days, or the order will expire. To handle individual order lines, process the order via the Mollie Dashboard." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:375 +msgid "Order completed at Mollie for %1$s order (%2$s). At least one order line completed. Remember: Completed status for an order at Mollie is not the same as Completed status in WooCommerce!" +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:457 +msgid "%1$s order (%2$s) cancelled ." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:520 +msgid "%1$s order expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "" + +#: ../src/Payment/MollieOrder.php:616 +msgctxt "Order note error" +msgid "The sum of refunds for all order lines is not identical to the refund amount, so this refund will be processed as a payment amount refund, not an order line refund." +msgstr "" + +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. +#: ../src/Payment/MollieOrder.php:747 +msgid "%1$sx %2$s cancelled for %3$s%4$s in WooCommerce and at Mollie." +msgstr "" + +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. Placeholder 5: Reason. Placeholder 6: Refund Id. +#: ../src/Payment/MollieOrder.php:763 +msgid "%1$sx %2$s refunded for %3$s%4$s in WooCommerce and at Mollie.%5$s Refund ID: %6$s." +msgstr "" + +#. translators: Placeholder 1: payment status. +#: ../src/Payment/MollieOrder.php:823 +msgctxt "Order note error" +msgid "Can not refund order amount that has status %1$s at Mollie." +msgstr "" + +#. translators: Placeholder 1: Currency. Placeholder 2: Refund amount. Placeholder 3: Reason. Placeholder 4: Refund id. +#: ../src/Payment/MollieOrder.php:845 +msgid "Amount refund of %1$s%2$s refunded in WooCommerce and at Mollie.%3$s Refund ID: %4$s." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:936 +msgid "%1$s order (%2$s) expired ." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID +#: ../src/Payment/MollieOrderService.php:162 +msgid "%1$s payment %2$s (%3$s), not processed." +msgstr "" + +#: ../src/Payment/MollieOrderService.php:391 +msgid "New chargeback %s processed! Order note and order status updated." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:423 +msgid "%1$s payment charged back via Mollie (%2$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:485 +msgid "%1$s payment charged back via Mollie (%2$s). Subscription status updated, please review (and adjust product stocks if you use it)." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:692 +msgid "%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "" + +#: ../src/Payment/MollieOrderService.php:805 +msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:308 +msgid "%1$s payment (%2$s) cancelled ." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:377 +msgid "%1$s payment expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:400 +msgid "%1$s payment expired (%2$s)." +msgstr "" + +#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID +#: ../src/Payment/MolliePayment.php:476 +msgid "Refunded %1$s%2$s%3$s - Payment: %4$s, Refund: %5$s" +msgstr "" + +#. translators: Placeholder 1: order number +#: ../src/Payment/MollieSubscription.php:80 +msgctxt "Default payment description for subscription recurring payments" +msgid "Order %1$s" +msgstr "" + +#: ../src/Payment/OrderItemsRefunder.php:121 +msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item." +msgstr "" + +#: ../src/Payment/OrderItemsRefunder.php:166 +msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount." +msgstr "" + +#: ../src/Payment/OrderItemsRefunder.php:190 +msgid "Empty WooCommerce order items or mollie order lines." +msgstr "" + +#: ../src/Payment/OrderLines.php:509 +msgid "Shipping" +msgstr "" + +#: ../src/Payment/PaymentModule.php:194 +msgid "Unpaid order cancelled - time limit reached." +msgstr "" + +#: ../src/Payment/PaymentModule.php:213 +msgid "%1$s items refunded in WooCommerce and at Mollie." +msgstr "" + +#: ../src/Payment/PaymentModule.php:231 +msgid "%1$s items cancelled in WooCommerce and at Mollie." +msgstr "" + +#: ../src/Payment/PaymentModule.php:350 +msgctxt "Order note info" +msgid "Processing a payment, no capture needed" +msgstr "" + +#: ../src/Payment/PaymentModule.php:364 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be shipped/captured." +msgstr "" + +#: ../src/Payment/PaymentModule.php:372 +msgctxt "Order note info" +msgid "Order already completed at Mollie, can not be shipped/captured." +msgstr "" + +#: ../src/Payment/PaymentModule.php:381 +msgctxt "Order note info" +msgid "Order successfully updated to shipped at Mollie, capture of funds underway." +msgstr "" + +#: ../src/Payment/PaymentModule.php:387 +msgctxt "Order note info" +msgid "Order not paid or authorized at Mollie yet, can not be shipped." +msgstr "" + +#: ../src/Payment/PaymentModule.php:421 +msgctxt "Order note info" +msgid "Order contains Mollie payment method, but not a valid Mollie Order ID. Canceling order failed." +msgstr "" + +#: ../src/Payment/PaymentModule.php:442 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be canceled again." +msgstr "" + +#: ../src/Payment/PaymentModule.php:452 +msgctxt "Order note info" +msgid "Order also cancelled at Mollie." +msgstr "" + +#: ../src/Payment/PaymentModule.php:458 +msgctxt "Order note info" +msgid "Order could not be canceled at Mollie, because order status is " +msgstr "" + +#: ../src/Payment/PaymentService.php:620 +msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription." +msgstr "" + +#: ../src/Payment/PaymentService.php:626 +msgid "Failed switching subscriptions, no valid mandate." +msgstr "" + +#: ../src/Payment/PaymentService.php:635 +msgid "Order completed internally because of an existing valid mandate at Mollie." +msgstr "" + +#. translators: Placeholder 1: Payment method title +#: ../src/Payment/PaymentService.php:708, ../src/Buttons/ApplePayButton/AppleAjaxRequests.php:723, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:113, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:159 +msgid "Could not create %s payment." +msgstr "" + +#: ../src/Payment/PaymentService.php:766, ../src/Subscription/MollieSepaRecurringGateway.php:127, ../src/Subscription/MollieSubscriptionGateway.php:461 +msgid "Awaiting payment confirmation." +msgstr "" + +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Payment/PaymentService.php:786 +msgid "%s payment started (%s)." +msgstr "" + +#: ../src/Payment/RefundLineItemsBuilder.php:126 +msgid "Mollie doesn't allow a partial refund of the full amount or quantity of at least one order line. Trying to process this as an amount refund instead." +msgstr "" + +#: ../src/PaymentMethods/Applepay.php:14 +msgid "To accept payments via Apple Pay" +msgstr "" + +#: ../src/PaymentMethods/Bancontact.php:14 +msgid "Bancontact" +msgstr "" + +#: ../src/PaymentMethods/Banktransfer.php:33 +msgid "Bank Transfer" +msgstr "" + +#: ../src/PaymentMethods/Banktransfer.php:55, ../src/Settings/General/MollieGeneralSettings.php:235 +msgid "Activate expiry time setting" +msgstr "" + +#: ../src/PaymentMethods/Banktransfer.php:56, ../src/Settings/General/MollieGeneralSettings.php:236 +msgid "Enable expiry time for payments" +msgstr "" + +#: ../src/PaymentMethods/Banktransfer.php:57 +msgid "Enable this option if you want to be able to set the time after which the payment will expire. This will turn all transactions into payments instead of orders" +msgstr "" + +#: ../src/PaymentMethods/Banktransfer.php:62, ../src/Settings/General/MollieGeneralSettings.php:242 +msgid "Expiry time" +msgstr "" + +#. translators: Placeholder 1: Default expiry days. +#: ../src/PaymentMethods/Banktransfer.php:65 +msgid "Number of DAYS after the payment will expire. Default %d days" +msgstr "" + +#: ../src/PaymentMethods/Banktransfer.php:74 +msgid "Skip Mollie payment screen" +msgstr "" + +#: ../src/PaymentMethods/Banktransfer.php:75 +msgid "Skip Mollie payment screen when Bank Transfer is selected" +msgstr "" + +#: ../src/PaymentMethods/Banktransfer.php:76 +msgid "Enable this option if you want to skip redirecting your user to the Mollie payment screen, instead this will redirect your user directly to the WooCommerce order received page displaying instructions how to complete the Bank Transfer payment." +msgstr "" + +#: ../src/PaymentMethods/Belfius.php:13 +msgid "Belfius Direct Net" +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:16 +msgid "Credit card" +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:52 +msgid "Enable Mollie Components" +msgstr "" + +#. translators: Placeholder 1: Mollie Components. +#: ../src/PaymentMethods/Creditcard.php:55 +msgid "Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:59, ../src/Settings/Page/Components.php:21, ../src/Settings/Page/MollieSettingsPage.php:703 +msgid "Mollie Components" +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:92 +msgid "Customize Icons" +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:99 +msgid "Enable Icons Selector" +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:100 +msgid "Show customized creditcard icons on checkout page" +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:108 +msgid "Show American Express Icon" +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:113 +msgid "Show Carta Si Icon" +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:118 +msgid "Show Carte Bancaire Icon" +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:123 +msgid "Show Maestro Icon" +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:128 +msgid "Show Mastercard Icon" +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:133 +msgid "Show Visa Icon" +msgstr "" + +#: ../src/PaymentMethods/Creditcard.php:138 +msgid "Show VPay Icon" +msgstr "" + +#: ../src/PaymentMethods/Directdebit.php:13 +msgid "SEPA Direct Debit" +msgstr "" + +#: ../src/PaymentMethods/Directdebit.php:14 +msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscriptions, and will not be shown in the WooCommerce checkout for regular payments! You also need to enable iDEAL and/or other \"first\" payment methods if you want to use SEPA Direct Debit." +msgstr "" + +#: ../src/PaymentMethods/Eps.php:13 +msgid "EPS" +msgstr "" + +#: ../src/PaymentMethods/Giftcard.php:30 +msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency" +msgid "Mollie - Giftcard details: %1$s %2$s %3$s." +msgstr "" + +#: ../src/PaymentMethods/Giftcard.php:42 +msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency" +msgid " Remainder: %1$s %2$s %3$s." +msgstr "" + +#: ../src/PaymentMethods/Giftcard.php:60 +msgid "Gift cards" +msgstr "" + +#: ../src/PaymentMethods/Giftcard.php:62, ../src/PaymentMethods/Giftcard.php:105 +msgid "Select your gift card" +msgstr "" + +#: ../src/PaymentMethods/Giftcard.php:78 +msgid "Show gift cards dropdown" +msgstr "" + +#: ../src/PaymentMethods/Giftcard.php:84 +msgid "If you disable this, a dropdown with various gift cards will not be shown in the WooCommerce checkout, so users will select a gift card on the Mollie payment page after checkout." +msgstr "" + +#: ../src/PaymentMethods/Giftcard.php:93, ../src/PaymentMethods/Ideal.php:46, ../src/PaymentMethods/Kbc.php:48 +msgid "Issuers empty option" +msgstr "" + +#: ../src/PaymentMethods/Giftcard.php:99 +msgid "This text will be displayed as the first option in the gift card dropdown, but only if the above 'Show gift cards dropdown' is enabled." +msgstr "" + +#: ../src/PaymentMethods/Giropay.php:13 +msgid "Giropay" +msgstr "" + +#: ../src/PaymentMethods/Ideal.php:15 +msgid "iDEAL" +msgstr "" + +#: ../src/PaymentMethods/Ideal.php:17, ../src/PaymentMethods/Ideal.php:55, ../src/PaymentMethods/Kbc.php:16, ../src/PaymentMethods/Kbc.php:60 +msgid "Select your bank" +msgstr "" + +#: ../src/PaymentMethods/Ideal.php:34 +msgid "Show iDEAL banks dropdown" +msgstr "" + +#: ../src/PaymentMethods/Ideal.php:37 +msgid "If you disable this, a dropdown with various iDEAL banks will not be shown in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie payment page after checkout." +msgstr "" + +#: ../src/PaymentMethods/Ideal.php:49 +msgid "This text will be displayed as the first option in the iDEAL issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above 'Show iDEAL banks dropdown' is enabled." +msgstr "" + +#: ../src/PaymentMethods/In3.php:13 +msgid "in3" +msgstr "" + +#: ../src/PaymentMethods/In3.php:15 +msgid "Pay in 3 instalments, 0% interest" +msgstr "" + +#: ../src/PaymentMethods/Kbc.php:14 +msgid "KBC/CBC Payment Button" +msgstr "" + +#: ../src/PaymentMethods/Kbc.php:33 +msgid "Show KBC/CBC banks dropdown" +msgstr "" + +#: ../src/PaymentMethods/Kbc.php:39 +msgid "If you disable this, a dropdown with various KBC/CBC banks will not be shown in the WooCommerce checkout, so users will select a KBC/CBC bank on the Mollie payment page after checkout." +msgstr "" + +#: ../src/PaymentMethods/Kbc.php:54 +msgid "This text will be displayed as the first option in the KBC/CBC issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above ''Show KBC/CBC banks dropdown' is enabled." +msgstr "" + +#: ../src/PaymentMethods/Klarnapaylater.php:13 +msgid "Klarna Pay later" +msgstr "" + +#: ../src/PaymentMethods/Klarnapaylater.php:14, ../src/PaymentMethods/Klarnapaynow.php:14, ../src/PaymentMethods/Klarnasliceit.php:15 +msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required." +msgstr "" + +#: ../src/PaymentMethods/Klarnapaynow.php:13 +msgid "Klarna Pay Now" +msgstr "" + +#: ../src/PaymentMethods/Klarnasliceit.php:14 +msgid "Klarna Slice it" +msgstr "" + +#: ../src/PaymentMethods/Mybank.php:14 +msgid "MyBank" +msgstr "" + +#: ../src/PaymentMethods/Mybank.php:15 +msgid "To accept payments via MyBank" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:14 +msgid "PayPal" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:34 +msgid "Display on cart page" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:38 +msgid "Enable the PayPal button to be used in the cart page." +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:46 +msgid "Display on product page" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:50 +msgid "Enable the PayPal button to be used in the product page." +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:59 +msgctxt "Mollie PayPal Button Settings" +msgid "Button text language and color" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:60 +msgctxt "Mollie PayPal Button Settings" +msgid "Select the text and the colour of the button." +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:70 +msgid "Minimum amount to display button" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:74 +msgid "If the product or the cart total amount is under this number, then the button will not show up." +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:89 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill blue" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:90 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded blue" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:91 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill golden" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:92 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded golden" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:93 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill gray" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:94 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded gray" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:95 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill white" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:96 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded white" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:97 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill black" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:98 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded black" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:99 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill blue" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:100 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded blue" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:101 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill golden" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:102 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded golden" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:103 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill gray" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:104 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded gray" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:105 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill white" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:106 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded white" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:107 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill black" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:108 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded black" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:109 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill blue" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:110 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded blue" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:111 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill golden" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:112 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded golden" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:113 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill gray" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:114 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded gray" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:115 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill white" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:116 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded white" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:117 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill black" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:118 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded black" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:119 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill blue" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:120 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded blue" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:121 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill golden" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:122 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded golden" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:123 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill gray" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:124 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded gray" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:125 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill white" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:126 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded white" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:127 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Pill black" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:128 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Rounded black" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:129 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Pill blue" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:130 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Rounded blue" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:131 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Pill golden" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:132 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Rounded golden" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:133 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Pill gray" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:134 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Rounded gray" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:135 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Pill white" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:136 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Rounded white" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:137 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Pill black" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:138 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Rounded black" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:139 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Pill blue" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:140 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Rounded blue" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:141 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Pill golden" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:142 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Rounded golden" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:143 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Pill gray" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:144 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Rounded gray" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:145 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Pill white" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:146 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Rounded white" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:147 +msgctxt "Mollie PayPal button Settings" +msgid "French -- Buy with PayPal - Gold" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:148 +msgctxt "Mollie PayPal button Settings" +msgid "French -- Checkout with PayPal - Gold" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:149 +msgctxt "Mollie PayPal button Settings" +msgid "French -- Checkout with PayPal - Silver" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:150 +msgctxt "Mollie PayPal button Settings" +msgid "Polish -- Buy with PayPal - Gold" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:151 +msgctxt "Mollie PayPal button Settings" +msgid "Polish -- Checkout with PayPal - Gold" +msgstr "" + +#: ../src/PaymentMethods/Paypal.php:152 +msgctxt "Mollie PayPal button Settings" +msgid "Polish -- Checkout with PayPal - Silver" +msgstr "" + +#: ../src/PaymentMethods/Paysafecard.php:14 +msgid "paysafecard" +msgstr "" + +#: ../src/PaymentMethods/Przelewy24.php:14 +msgid "Przelewy24" +msgstr "" + +#: ../src/PaymentMethods/Przelewy24.php:15 +msgid "To accept payments via Przelewy24, a customer email is required for every payment." +msgstr "" + +#: ../src/PaymentMethods/Sofort.php:14 +msgid "SOFORT Banking" +msgstr "" + +#: ../src/PaymentMethods/Voucher.php:35 +msgid "Voucher" +msgstr "" + +#: ../src/PaymentMethods/Voucher.php:54, ../src/Gateway/Voucher/VoucherModule.php:220 +msgid "Select the default products category" +msgstr "" + +#: ../src/PaymentMethods/Voucher.php:57 +msgid "No category" +msgstr "" + +#: ../src/PaymentMethods/Voucher.php:58, ../src/Gateway/Voucher/VoucherModule.php:113, ../src/Gateway/Voucher/VoucherModule.php:147, ../src/Gateway/Voucher/VoucherModule.php:178, ../src/Gateway/Voucher/VoucherModule.php:233, ../src/Gateway/Voucher/VoucherModule.php:293 +msgid "Meal" +msgstr "" + +#: ../src/PaymentMethods/Voucher.php:59, ../src/Gateway/Voucher/VoucherModule.php:114, ../src/Gateway/Voucher/VoucherModule.php:148, ../src/Gateway/Voucher/VoucherModule.php:181, ../src/Gateway/Voucher/VoucherModule.php:234, ../src/Gateway/Voucher/VoucherModule.php:294 +msgid "Eco" +msgstr "" + +#: ../src/PaymentMethods/Voucher.php:60, ../src/Gateway/Voucher/VoucherModule.php:115, ../src/Gateway/Voucher/VoucherModule.php:149, ../src/Gateway/Voucher/VoucherModule.php:184, ../src/Gateway/Voucher/VoucherModule.php:235, ../src/Gateway/Voucher/VoucherModule.php:295 +msgid "Gift" +msgstr "" + +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/PaymentMethods/Voucher.php:64 +msgid "In order to process it, all products in the order must have a category. This selector will assign the default category for the shop products" +msgstr "" + +#: ../src/SDK/Api.php:49 +msgid "Invalid API key(s). Get them on the %1$sDevelopers page in the Mollie dashboard%2$s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters." +msgstr "" + +#: ../src/SDK/Api.php:47 +msgid "No API key provided. Please set your Mollie API keys below." +msgstr "" + +#: ../src/Settings/Settings.php:174 +msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb." +msgstr "" + +#: ../src/Settings/Settings.php:216 +msgid "Gateway Disabled" +msgstr "" + +#: ../src/Settings/Settings.php:237 +msgid "Return to payments" +msgstr "" + +#: ../src/Settings/Settings.php:252, ../src/Settings/General/MollieGeneralSettings.php:86 +msgid "Sell to specific countries" +msgstr "" + +#: ../src/Settings/Settings.php:264 +msgid "Choose countries…" +msgstr "" + +#: ../src/Settings/Settings.php:265 +msgid "Country" +msgstr "" + +#: ../src/Settings/Settings.php:274 +msgid "Select all" +msgstr "" + +#: ../src/Settings/Settings.php:275 +msgid "Select none" +msgstr "" + +#: ../src/Settings/Settings.php:470 +msgid "Error" +msgstr "" + +#: ../src/Settings/Settings.php:484 +msgid "Mollie status:" +msgstr "" + +#: ../src/Settings/Settings.php:485 +msgid "Connected" +msgstr "" + +#: ../src/Settings/SettingsModule.php:171 +msgid "Mollie settings" +msgstr "" + +#: ../src/Settings/SettingsModule.php:177 +msgid "Logs" +msgstr "" + +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/SettingsModule.php:187 +msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production." +msgstr "" + +#: ../src/Shared/Data.php:628 +msgid "Item #%1$s stock incremented from %2$s to %3$s." +msgstr "" + +#. translators: Placeholder 1: Plugin title. Placeholder 2: Min WooCommerce version. Placeholder 3: WooCommerce version used. +#: ../src/Shared/Status.php:74 +msgid "The %1$s plugin requires at least WooCommerce version %2$s, you are using version %3$s. Please update your WooCommerce plugin." +msgstr "" + +#: ../src/Shared/Status.php:87 +msgid "Mollie API client not installed. Please make sure the plugin is installed correctly." +msgstr "" + +#: ../src/Shared/Status.php:96 +msgid "Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable it in your server or ask your webhoster to enable it for you." +msgstr "" + +#. translators: Placeholder 1: Min PHP version. Placeholder 2: PHP version used. Placeholder 3: Opening link tag. placeholder 4: Closing link tag. +#: ../src/Shared/Status.php:111 +msgid "Mollie Payments for WooCommerce require PHP %1$s or higher, you have PHP %2$s. Please upgrade and view %3$sthis FAQ%4$s" +msgstr "" + +#: ../src/Shared/Status.php:123 +msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration." +msgstr "" + +#: ../src/Shared/Status.php:130 +msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration." +msgstr "" + +#: ../src/Shared/Status.php:138 +msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available." +msgstr "" + +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSepaRecurringGateway.php:136, ../src/Subscription/MollieSubscriptionGateway.php:468 +msgid "%1$s payment started (%2$s)." +msgstr "" + +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSubscriptionGateway.php:199 +msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process." +msgstr "" + +#: ../src/Subscription/MollieSubscriptionGateway.php:299 +msgid "The customer (%s) could not be used or found. " +msgstr "" + +#: ../src/Subscription/MollieSubscriptionGateway.php:326 +msgid "The customer (%s) does not have a valid mandate." +msgstr "" + +#. translators: Placeholder 1: Payment method title +#: ../src/Subscription/MollieSubscriptionGateway.php:366 +msgid "Could not create %s renewal payment." +msgstr "" + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Subscription/SubscriptionModule.php:106 +msgid "%1$s payment failed (%2$s)." +msgstr "" + +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:42 +msgid "%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "" + +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:58 +msgid "%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "" + +#: ../src/Gateway/Voucher/VoucherModule.php:78, ../src/Settings/Page/MollieSettingsPage.php:49, ../src/Settings/Page/MollieSettingsPage.php:182 +msgid "Mollie Settings" +msgstr "" + +#: ../src/Gateway/Voucher/VoucherModule.php:108, ../src/Gateway/Voucher/VoucherModule.php:143, ../src/Gateway/Voucher/VoucherModule.php:166 +msgid "Mollie Voucher Category" +msgstr "" + +#: ../src/Gateway/Voucher/VoucherModule.php:111, ../src/Gateway/Voucher/VoucherModule.php:145, ../src/Gateway/Voucher/VoucherModule.php:170 +msgid "--Please choose an option--" +msgstr "" + +#: ../src/Gateway/Voucher/VoucherModule.php:112, ../src/Gateway/Voucher/VoucherModule.php:146, ../src/Gateway/Voucher/VoucherModule.php:175, ../src/Gateway/Voucher/VoucherModule.php:232, ../src/Gateway/Voucher/VoucherModule.php:292 +msgid "No Category" +msgstr "" + +#: ../src/Gateway/Voucher/VoucherModule.php:151, ../src/Gateway/Voucher/VoucherModule.php:188 +msgid "Select a voucher category to apply to all products with this category" +msgstr "" + +#: ../src/Gateway/Voucher/VoucherModule.php:224 +msgid "Products voucher category" +msgstr "" + +#: ../src/Gateway/Voucher/VoucherModule.php:231, ../src/Gateway/Voucher/VoucherModule.php:291 +msgid "Same as default category" +msgstr "" + +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Gateway/Voucher/VoucherModule.php:241 +msgid "In order to process it, all products in the order must have a category. To disable the product from voucher selection select \"No category\" option." +msgstr "" + +#: ../src/Gateway/Voucher/VoucherModule.php:288 +msgid "Mollie Voucher category" +msgstr "" + +#: ../src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (Apple Pay transaction ID: %3$s)" +msgstr "" + +#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:26, ../src/PaymentMethods/InstructionStrategies/DirectdebitInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/IdealInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/SofortInstructionStrategy.php:20 +msgid "Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" +msgstr "" + +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:35 +msgid "Please complete your payment by transferring the total amount to the following bank account:" +msgstr "" + +#. translators: Placeholder 1: 'Stichting Mollie Payments' +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:39 +msgid "Beneficiary: %s" +msgstr "" + +#. translators: Placeholder 1: Payment details bank account +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:41 +msgid "IBAN: %s" +msgstr "" + +#. translators: Placeholder 1: Payment details bic +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:43 +msgid "BIC: %s" +msgstr "" + +#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:50 +msgid "Please provide the payment reference %s" +msgstr "" + +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:47 +msgid "Payment reference: %s" +msgstr "" + +#. translators: Placeholder 1: Payment expiry date +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:66 +msgid "The payment will expire on %s. Please make sure you transfer the total amount before this date." +msgstr "" + +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:60 +msgid "The payment will expire on %s." +msgstr "" + +#. translators: Placeholder 1: card holder +#: ../src/PaymentMethods/InstructionStrategies/CreditcardInstructionStrategy.php:20 +msgid "Payment completed by %s" +msgstr "" + +#. translators: Placeholder 1: payment method +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:34 +msgid "Payment completed with %s" +msgstr "" + +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:26 +msgid "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant." +msgstr "" + +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:20 +msgid "We have not received a definite payment status." +msgstr "" + +#: ../src/PaymentMethods/InstructionStrategies/MybankInstructionStrategy.php:19 +msgid "Payment completed by %1$s - %2$s" +msgstr "" + +#. translators: Placeholder 1: customer billing email +#: ../src/PaymentMethods/InstructionStrategies/Przelewy24InstructionStrategy.php:20 +msgid "Payment completed by %s." +msgstr "" + +#. translators: Placeholder 1: Lock icon. Placeholder 2: Mollie logo. +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:25 +msgid "%1$s Secure payments provided by %2$s" +msgstr "" + +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:41 +msgid "Secure payments provided by" +msgstr "" + +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:34 +msgid "%s display settings" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:71 +msgid "Display logo on checkout page. Default enabled" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:79 +msgid "Sales countries" +msgstr "" + +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:99 +msgid "%s custom logo" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:103 +msgid "Enable custom logo" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:109 +msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options." +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:115 +msgid "Upload custom logo" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:123 +msgid "Upload a custom icon for this gateway. The feature must be enabled." +msgstr "" + +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:134 +msgid "%s surcharge" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:139 +msgid "Payment Surcharge" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:145 +msgid "No fee" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:149 +msgid "Fixed fee" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:153 +msgid "Percentage" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:157 +msgid "Fixed fee and percentage" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:163 +msgid "Choose a payment surcharge for this gateway" +msgstr "" + +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:172 +msgid "Payment surcharge fixed amount in %s" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:176 +msgid "Control the fee added on checkout. Default 0.00" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:186 +msgid "Payment surcharge percentage amount %" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:189 +msgid "Control the percentage fee added on checkout. Default 0.00" +msgstr "" + +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:200 +msgid "Payment surcharge limit in %s" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:203 +msgid "Limit the maximum fee added on checkout. Default 0, means no limit" +msgstr "" + +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:214 +msgid "Surcharge only under this limit, in %s" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:217 +msgid "Maximum order amount to apply surcharge. If the order is above this number the surcharge will not apply. Default 0, means no maximum" +msgstr "" + +#. translators: Placeholder 1: gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:230 +msgid "%s advanced" +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:237 +msgid "Enable this option if you want to be able to set the time after which the order will expire." +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:245 +msgid "Number of MINUTES after the order will expire and will be canceled at Mollie and WooCommerce. A value of 0 means no expiry time will be considered." +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:258 +msgid "Initial order status" +msgstr "" + +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Settings/General/MollieGeneralSettings.php:277 +msgid "Some payment methods take longer than a few hours to complete. The initial order state is then set to '%1$s'. This ensures the order is not cancelled when the setting %2$s is used." +msgstr "" + +#: ../src/Settings/General/MollieGeneralSettings.php:286 +msgid "Hold Stock (minutes)" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:111 +msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them." +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:115 +msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie." +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:119 +msgid " Mollie is dedicated to making payments better for WooCommerce. " +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:123 +msgid "Please go to" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:126 +msgid " the signup page" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:130 +msgid " to create a new Mollie account and start receiving payments in a couple of minutes. " +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:134 +msgid "Contact " +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:138 +msgid " if you have any questions or comments about this plugin." +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:142 +msgid "Our pricing is always per transaction. No startup fees, no monthly fees, and no gateway fees. No hidden fees, period." +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:148 +msgid "Plugin Documentation" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:151 +msgid "Contact Support" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:163 +msgid "Log plugin events." +msgstr "" + +#. translators: Placeholder 1: Location of the log files +#: ../src/Settings/Page/MollieSettingsPage.php:170 +msgid "Log files are saved to %s" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:192 +msgid "Live API key" +msgstr "" + +#. translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Settings/Page/MollieSettingsPage.php:197, ../src/Settings/Page/MollieSettingsPage.php:230 +msgid "The API key is used to connect to Mollie. You can find your %1$s API key in your %2$sMollie account%3$s" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:208 +msgid "Live API key should start with live_" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:215 +msgid "Enable test mode" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:218 +msgid "Enable test mode if you want to test the plugin without using real payments." +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:225 +msgid "Test API key" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:241 +msgid "Test API key should start with test_" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:248 +msgid "Debug Log" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:300 +msgid "Gateway enabled" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:304 +msgid "Gateway disabled" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:307 +msgid "Disabled" +msgstr "" + +#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Settings/Page/MollieSettingsPage.php:318 +msgid "The following payment methods are activated in your %1$sMollie profile%2$s:" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:333 +msgid "Refresh" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:342 +msgid "No payment methods available" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:357 +msgid "Edit" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:365 +msgid "Activate" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:411 +msgid "You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. Enable SEPA Direct Debit if you want to allow customers to pay subscriptions with iDEAL and/or other \"first\" payment methods." +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:437 +msgid "You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via Mollie and disabling the default WooCommerce BACS payment gateway to prevent possible conflicts." +msgstr "" + +#. translators: Placeholder 1: Opening link tag. Placeholder 2: Closing link tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/Page/MollieSettingsPage.php:461 +msgid "You have activated Klarna. To accept payments, please make sure all default WooCommerce checkout fields are enabled and required. For more information, go to %1$sKlarna Pay Later documentation%2$s or %3$sKlarna Slice it documentation%4$s" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:702 +msgid "General" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:707 +msgid "Advanced" +msgstr "" + +#: ../src/Settings/Page/MollieSettingsPage.php:710 +msgid "Apple Pay Button" +msgstr "" diff --git a/languages/mollie-payments-for-woocommerce-de_DE.mo b/languages/mollie-payments-for-woocommerce-de_DE.mo index 097b8d2ee..a443ee349 100644 Binary files a/languages/mollie-payments-for-woocommerce-de_DE.mo and b/languages/mollie-payments-for-woocommerce-de_DE.mo differ diff --git a/languages/mollie-payments-for-woocommerce-de_DE.po b/languages/mollie-payments-for-woocommerce-de_DE.po index b1fdf6804..99e05b71d 100644 --- a/languages/mollie-payments-for-woocommerce-de_DE.po +++ b/languages/mollie-payments-for-woocommerce-de_DE.po @@ -1,2891 +1,1975 @@ -# Copyright (C) 2021 Mollie -# This file is distributed under the same license as the Mollie Payments for WooCommerce plugin. +# Copyright (C) 2022 unnamed project +# This file is distributed under the same license as the unnamed project package. msgid "" msgstr "" -"Project-Id-Version: Mollie Payments for WooCommerce 6.7.0\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mollie-payments-" -"for-woocommerce\n" -"POT-Creation-Date: 2021-11-12T07:59:02+00:00\n" -"PO-Revision-Date: 2022-06-21 08:31+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: de_DE\n" +"Project-Id-Version: Mollie Payments for WooCommerce 7.3.3\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: undefined\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.1\n" -"X-Domain: mollie-payments-for-woocommerce\n" -#. Plugin Name of the plugin -msgid "Mollie Payments for WooCommerce" -msgstr "Mollie-Zahlungen für WooCommerce" - -#. Plugin URI of the plugin -#. Author URI of the plugin -msgid "https://www.mollie.com" -msgstr "https://www.mollie.com" - -#. Description of the plugin -msgid "Accept payments in WooCommerce with the official Mollie plugin" -msgstr "WooCommerce-Zahlungen mit dem offiziellen Mollie-Plugin akzeptieren" - -#. Author of the plugin -msgid "Mollie" -msgstr "Mollie" - -#: build/inc/settings/mollie_advanced_settings.php:6 -#: inc/settings/mollie_advanced_settings.php:6 -msgid "Mollie advanced settings" -msgstr "Fortgeschrittene Mollie-Einstellungen" - -#: build/inc/settings/mollie_advanced_settings.php:8 -#: inc/settings/mollie_advanced_settings.php:8 +#: ../inc/settings/mollie_advanced_settings.php:12 msgctxt "Label {orderNumber} description for payment description options" msgid "Order number" msgstr "Bestellnummer" -#: build/inc/settings/mollie_advanced_settings.php:9 -#: inc/settings/mollie_advanced_settings.php:9 +#: ../inc/settings/mollie_advanced_settings.php:13 msgctxt "Label {storeName} description for payment description options" msgid "Site Title" msgstr "Seitentitel" -#: build/inc/settings/mollie_advanced_settings.php:10 -#: inc/settings/mollie_advanced_settings.php:10 -msgctxt "" -"Label {customer.firstname} description for payment description options" +#: ../inc/settings/mollie_advanced_settings.php:14 +msgctxt "Label {customer.firstname} description for payment description options" msgid "Customer's first name" msgstr "Vorname des Kunden" -#: build/inc/settings/mollie_advanced_settings.php:11 -#: inc/settings/mollie_advanced_settings.php:11 +#: ../inc/settings/mollie_advanced_settings.php:15 msgctxt "Label {customer.lastname} description for payment description options" msgid "Customer's last name" msgstr "Nachname des Kunden" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:16 msgctxt "Label {customer.company} description for payment description options" msgid "Customer's company name" msgstr "Firmenname des Kunden" -#: build/inc/settings/mollie_advanced_settings.php:8 -#: build/src/Mollie/WC/Helper/Settings.php:666 -#: inc/settings/mollie_advanced_settings.php:8 -#: src/Mollie/WC/Helper/Settings.php:666 -msgid "" -"The following options are required to use the plugin and are used by all " -"Mollie payment methods" -msgstr "" -"Die folgenden Optionen sind für die Verwendung des Plugins verpflichtend und " -"werden von allen Mollie-Bezahlmethoden verwendet" +#: ../inc/settings/mollie_advanced_settings.php:22 +msgid "Mollie advanced settings" +msgstr "Fortgeschrittene Mollie-Einstellungen" + +#: ../inc/settings/mollie_advanced_settings.php:24, ../src/Settings/Page/MollieSettingsPage.php:185 +msgid "The following options are required to use the plugin and are used by all Mollie payment methods" +msgstr "Die folgenden Optionen sind für die Verwendung des Plugins verpflichtend und werden von allen Mollie-Bezahlmethoden verwendet" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:28 msgid "Order status after cancelled payment" msgstr "Bestellstatus nach stornierter Zahlung" -#: build/inc/settings/mollie_advanced_settings.php:18 -#: inc/settings/mollie_advanced_settings.php:18 -msgid "" -"Status for orders when a payment (not a Mollie order via the Orders API) is " -"cancelled. Default: pending. Orders with status Pending can be paid with " -"another payment method, customers can try again. Cancelled orders are final. " -"Set this to Cancelled if you only have one payment method or don't want " -"customers to re-try paying with a different payment method. This doesn't " -"apply to payments for orders via the new Orders API and Klarna payments." -msgstr "" -"Status für Bestellungen bei stornierter Bezahlung (keine Mollie-Bestellung " -"über die Bestellungs-API). Standard: ausstehend Bestellungen mit " -"ausstehendem Status können über eine andere Bezahlmethode abgewickelt " -"werden, Kunden können die Bezahlung erneut versuchen. Stornierte " -"Bestellungen sind final. Setze den Status auf storniert, wenn du nur eine " -"Bezahlmethode anbietest oder nicht möchtest, dass Kunden die Bezahlung mit " -"einer anderen Bezahlmethode erneut versuchen. Dies trifft nicht auf " -"Zahlungen für Bestellungen über die neue Bestellungs-API oder Klarna-" -"Zahlungen zu." - -#: build/inc/settings/mollie_advanced_settings.php:23 -#: inc/settings/mollie_advanced_settings.php:23 +#: ../inc/settings/mollie_advanced_settings.php:31 +msgid "Pending" +msgstr "Offen" + +#: ../inc/settings/mollie_advanced_settings.php:32 +msgid "Cancelled" +msgstr "Storniert" + +#: ../inc/settings/mollie_advanced_settings.php:34 +msgid "Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don't want customers to re-try paying with a different payment method. This doesn't apply to payments for orders via the new Orders API and Klarna payments." +msgstr "Status für Bestellungen bei stornierter Bezahlung (keine Mollie-Bestellung über die Bestellungs-API). Standard: ausstehend Bestellungen mit ausstehendem Status können über eine andere Bezahlmethode abgewickelt werden, Kunden können die Bezahlung erneut versuchen. Stornierte Bestellungen sind final. Setze den Status auf storniert, wenn du nur eine Bezahlmethode anbietest oder nicht möchtest, dass Kunden die Bezahlung mit einer anderen Bezahlmethode erneut versuchen. Dies trifft nicht auf Zahlungen für Bestellungen über die neue Bestellungs-API oder Klarna-Zahlungen zu." + +#: ../inc/settings/mollie_advanced_settings.php:39 msgid "Payment screen language" msgstr "Sprache der Bezahlseite" -#: build/inc/settings/mollie_advanced_settings.php:26 -#: inc/settings/mollie_advanced_settings.php:26 +#: ../inc/settings/mollie_advanced_settings.php:42 msgid "Automatically send WordPress language" msgstr "WordPress-Sprache automatisch übermitteln" -#: build/inc/settings/mollie_advanced_settings.php:29 -#: build/inc/settings/mollie_advanced_settings.php:90 -#: build/src/Mollie/WC/Helper/Settings.php:288 -#: inc/settings/mollie_advanced_settings.php:29 -#: inc/settings/mollie_advanced_settings.php:90 -#: src/Mollie/WC/Helper/Settings.php:288 +#: ../inc/settings/mollie_advanced_settings.php:45, ../inc/settings/mollie_advanced_settings.php:105, ../src/Settings/General/MollieGeneralSettings.php:266 msgid "default" msgstr "Standard" -#: build/inc/settings/mollie_advanced_settings.php:30 -#: inc/settings/mollie_advanced_settings.php:30 +#: ../inc/settings/mollie_advanced_settings.php:46 msgid "Detect using browser language" msgstr "Über Browsersprache erkennen" -#: build/inc/settings/mollie_advanced_settings.php:34 -#: inc/settings/mollie_advanced_settings.php:34 +#: ../inc/settings/mollie_advanced_settings.php:50 msgid "English" msgstr "Englisch" -#: build/inc/settings/mollie_advanced_settings.php:35 -#: inc/settings/mollie_advanced_settings.php:35 +#: ../inc/settings/mollie_advanced_settings.php:51 msgid "Dutch" msgstr "Niederländisch" -#: build/inc/settings/mollie_advanced_settings.php:36 -#: inc/settings/mollie_advanced_settings.php:36 +#: ../inc/settings/mollie_advanced_settings.php:52 msgid "Flemish (Belgium)" msgstr "Flämisch (Belgien)" -#: build/inc/settings/mollie_advanced_settings.php:37 -#: inc/settings/mollie_advanced_settings.php:37 +#: ../inc/settings/mollie_advanced_settings.php:53 msgid "French" msgstr "Französisch" -#: build/inc/settings/mollie_advanced_settings.php:38 -#: inc/settings/mollie_advanced_settings.php:38 +#: ../inc/settings/mollie_advanced_settings.php:54 msgid "French (Belgium)" msgstr "Französisch (Belgien)" -#: build/inc/settings/mollie_advanced_settings.php:39 -#: inc/settings/mollie_advanced_settings.php:39 +#: ../inc/settings/mollie_advanced_settings.php:55 msgid "German" msgstr "Deutsch" -#: build/inc/settings/mollie_advanced_settings.php:40 -#: inc/settings/mollie_advanced_settings.php:40 +#: ../inc/settings/mollie_advanced_settings.php:56 msgid "Austrian German" msgstr "Deutsch (Österreich)" -#: build/inc/settings/mollie_advanced_settings.php:41 -#: inc/settings/mollie_advanced_settings.php:41 +#: ../inc/settings/mollie_advanced_settings.php:57 msgid "Swiss German" msgstr "Deutsch (Schweiz)" -#: build/inc/settings/mollie_advanced_settings.php:42 -#: inc/settings/mollie_advanced_settings.php:42 +#: ../inc/settings/mollie_advanced_settings.php:58 msgid "Spanish" msgstr "Spanisch" -#: build/inc/settings/mollie_advanced_settings.php:43 -#: inc/settings/mollie_advanced_settings.php:43 +#: ../inc/settings/mollie_advanced_settings.php:59 msgid "Catalan" msgstr "Katalanisch" -#: build/inc/settings/mollie_advanced_settings.php:44 -#: inc/settings/mollie_advanced_settings.php:44 +#: ../inc/settings/mollie_advanced_settings.php:60 msgid "Portuguese" msgstr "Portugiesisch" -#: build/inc/settings/mollie_advanced_settings.php:45 -#: inc/settings/mollie_advanced_settings.php:45 +#: ../inc/settings/mollie_advanced_settings.php:61 msgid "Italian" msgstr "Italienisch" -#: build/inc/settings/mollie_advanced_settings.php:46 -#: inc/settings/mollie_advanced_settings.php:46 +#: ../inc/settings/mollie_advanced_settings.php:62 msgid "Norwegian" msgstr "Norwegisch" -#: build/inc/settings/mollie_advanced_settings.php:47 -#: inc/settings/mollie_advanced_settings.php:47 +#: ../inc/settings/mollie_advanced_settings.php:63 msgid "Swedish" msgstr "Schwedisch" -#: build/inc/settings/mollie_advanced_settings.php:48 -#: inc/settings/mollie_advanced_settings.php:48 +#: ../inc/settings/mollie_advanced_settings.php:64 msgid "Finnish" msgstr "Finnisch" -#: build/inc/settings/mollie_advanced_settings.php:49 -#: inc/settings/mollie_advanced_settings.php:49 +#: ../inc/settings/mollie_advanced_settings.php:65 msgid "Danish" msgstr "Dänisch" -#: build/inc/settings/mollie_advanced_settings.php:50 -#: inc/settings/mollie_advanced_settings.php:50 +#: ../inc/settings/mollie_advanced_settings.php:66 msgid "Icelandic" msgstr "Isländisch" -#: build/inc/settings/mollie_advanced_settings.php:51 -#: inc/settings/mollie_advanced_settings.php:51 +#: ../inc/settings/mollie_advanced_settings.php:67 msgid "Hungarian" msgstr "Ungarisch" -#: build/inc/settings/mollie_advanced_settings.php:52 -#: inc/settings/mollie_advanced_settings.php:52 +#: ../inc/settings/mollie_advanced_settings.php:68 msgid "Polish" msgstr "Polnisch" -#: build/inc/settings/mollie_advanced_settings.php:53 -#: inc/settings/mollie_advanced_settings.php:53 +#: ../inc/settings/mollie_advanced_settings.php:69 msgid "Latvian" msgstr "Lettisch" -#: build/inc/settings/mollie_advanced_settings.php:54 -#: inc/settings/mollie_advanced_settings.php:54 +#: ../inc/settings/mollie_advanced_settings.php:70 msgid "Lithuanian" msgstr "Litauisch" -#: build/inc/settings/mollie_advanced_settings.php:57 -#: inc/settings/mollie_advanced_settings.php:57 -msgid "" -"Sending a language (or locale) is required. The option 'Automatically send " -"WordPress language' will try to get the customer's language in WordPress " -"(and respects multilanguage plugins) and convert it to a format Mollie " -"understands. If this fails, or if the language is not supported, it will " -"fall back to American English. You can also select one of the locales " -"currently supported by Mollie, that will then be used for all customers." -msgstr "" -"Du musst eine Sprache (oder locale) übermitteln. Bei Verwendung der Option " -"‚WordPress-Sprache automatisch übermitteln‘ wird versucht, die " -"Spracheinstellung des Kunden bei WordPress abzurufen (dabei werden " -"mehrsprachige Plug-ins berücksichtigt) und in ein Mollie-kompatibles Format " -"zu übertragen. Scheitert dies, oder wird die Sprache nicht unterstützt, wird " -"auf American English zurückgegriffen. Du kannst auch eine momentan von " -"Mollie unterstützte locale verwenden, die dann für alle Kunden angewandt " -"wird." - -#: build/inc/settings/mollie_advanced_settings.php:65 -#: inc/settings/mollie_advanced_settings.php:65 +#: ../inc/settings/mollie_advanced_settings.php:73 +msgid "Sending a language (or locale) is required. The option 'Automatically send WordPress language' will try to get the customer's language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers." +msgstr "Du musst eine Sprache (oder locale) übermitteln. Bei Verwendung der Option ‚WordPress-Sprache automatisch übermitteln‘ wird versucht, die Spracheinstellung des Kunden bei WordPress abzurufen (dabei werden mehrsprachige Plug-ins berücksichtigt) und in ein Mollie-kompatibles Format zu übertragen. Scheitert dies, oder wird die Sprache nicht unterstützt, wird auf American English zurückgegriffen. Du kannst auch eine momentan von Mollie unterstützte locale verwenden, die dann für alle Kunden angewandt wird." + +#: ../inc/settings/mollie_advanced_settings.php:81 msgid "Store customer details at Mollie" msgstr "Kundendetails des Geschäfts bei Mollie" -#: build/inc/settings/mollie_advanced_settings.php:68 -#: inc/settings/mollie_advanced_settings.php:68 -msgid "" -"Should Mollie store customers name and email address for Single Click " -"Payments? Default %1$s. Required if WooCommerce Subscriptions " -"is being used! Read more about " -"%2$s and how it improves your conversion." -msgstr "" -"Soll Mollie den Namen und die E-Mail-Adresse des Kunden für Single-Click-" -"Bezahlungen speichern? Standard: %1$s. Verpflichtend bei " -"Verwendung von WooCommerce Subscriptions. Mollie-Komponenten für dieses " -"Portal verwenden. Erfahre mehr über %2$s und wie du damit deinen Umsatz steigern kannst." - -#: build/inc/settings/mollie_advanced_settings.php:72 -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: inc/settings/mollie_advanced_settings.php:72 -#: src/Mollie/WC/Helper/Settings.php:551 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_advanced_settings.php:84 +msgid "Should Mollie store customers name and email address for Single Click Payments? Default %1$s. Required if WooCommerce Subscriptions is being used! Read more about %2$s and how it improves your conversion." +msgstr "Soll Mollie den Namen und die E-Mail-Adresse des Kunden für Single-Click-Bezahlungen speichern? Standard: %1$s. Verpflichtend bei Verwendung von WooCommerce Subscriptions. Mollie-Komponenten für dieses Portal verwenden. Erfahre mehr über %2$s und wie du damit deinen Umsatz steigern kannst." + +#: ../inc/settings/mollie_advanced_settings.php:88, ../src/Settings/Page/MollieSettingsPage.php:303 msgid "Enabled" msgstr "Aktiv" -#: build/inc/settings/mollie_advanced_settings.php:73 -#: inc/settings/mollie_advanced_settings.php:73 +#: ../inc/settings/mollie_advanced_settings.php:89 msgid "Single Click Payments" msgstr "Zahlungen mit einem Klick" -#: build/inc/settings/mollie_advanced_settings.php:82 -#: inc/settings/mollie_advanced_settings.php:82 +#: ../inc/settings/mollie_advanced_settings.php:97 msgid "Select API Method" msgstr "API-Methode auswählen" -#: build/inc/settings/mollie_advanced_settings.php:99 -#: inc/settings/mollie_advanced_settings.php:99 -msgid "" -"Click %shere%s to read more about the differences between the Payments and " -"Orders API" -msgstr "" -"%sHier%s erfährst du mehr über die Unterschiede zwischen der Payments API " -"und der Orders API" +#. translators: Placeholder 1: opening link tag, placeholder 2: closing link tag +#: ../inc/settings/mollie_advanced_settings.php:114 +msgid "Click %1$shere%2$s to read more about the differences between the Payments and Orders API" +msgstr "%1$sHier%2$s erfährst du mehr über die Unterschiede zwischen der Payments API und der Orders API" -#: build/inc/settings/mollie_advanced_settings.php:109 -#: inc/settings/mollie_advanced_settings.php:109 +#: ../inc/settings/mollie_advanced_settings.php:124 msgid "API Payment Description" msgstr "Beschreibung für Zahlung über API" -#: build/inc/settings/mollie_advanced_settings.php:137 -#: inc/settings/mollie_advanced_settings.php:137 +#: ../inc/settings/mollie_advanced_settings.php:141 msgctxt "Payment description options" msgid "Available variables" msgstr "Verfügbare Variablen" -#: build/inc/settings/mollie_advanced_settings.php:160 -#: inc/settings/mollie_advanced_settings.php:160 -msgid "" -"Select among the available variables the description to be used for this " -"transaction.%s(Note: this only works when the method is set to Payments " -"API)%s" -msgstr "" -"Wähle die Beschreibung, die für diese Transaktion verwendet werden soll, aus " -"den verfügbaren Variablen aus.%s(Hinweis: funktioniert nur, wenn die Methode " -"Payments API ausgewählt wurde)%s" +#. translators: Placeholder 1: Opening paragraph tag, placeholder 2: Closing paragraph tag +#: ../inc/settings/mollie_advanced_settings.php:166 +msgid "Select among the available variables the description to be used for this transaction.%1$s(Note: this only works when the method is set to Payments API)%2$s" +msgstr "Wähle die Beschreibung, die für diese Transaktion verwendet werden soll, aus den verfügbaren Variablen aus.%1$s(Hinweis: funktioniert nur, wenn die Methode Payments API ausgewählt wurde)%2$s" -#: build/inc/settings/mollie_advanced_settings.php:134 -#: inc/settings/mollie_advanced_settings.php:134 +#: ../inc/settings/mollie_advanced_settings.php:177 msgid "Surcharge gateway fee label" msgstr "Label für zusätzliche Gateway-Gebühr" -#: build/inc/settings/mollie_advanced_settings.php:140 -#: inc/settings/mollie_advanced_settings.php:140 +#: ../inc/settings/mollie_advanced_settings.php:183, ../src/Gateway/Surcharge.php:36 msgid "Gateway Fee" msgstr "Gateway-Gebühr" -#: build/inc/settings/mollie_advanced_settings.php:142 -#: inc/settings/mollie_advanced_settings.php:142 +#: ../inc/settings/mollie_advanced_settings.php:185 msgid "This is the label will appear in frontend when the surcharge applies" -msgstr "" -"Dieses Label erscheint auf dem Frontend, wenn die zusätzliche Gebühr anfällt" +msgstr "Dieses Label erscheint auf dem Frontend, wenn die zusätzliche Gebühr anfällt" -#: inc/settings/mollie_advanced_settings.php:194 +#: ../inc/settings/mollie_advanced_settings.php:193 msgid "Remove Mollie data from Database on uninstall" msgstr "Mollie-Daten beim Deinstallieren aus der Datenbank entfernen" -#: inc/settings/mollie_advanced_settings.php:199 -msgid "" -"Remove options and scheduled actions from database when uninstalling the " -"plugin." -msgstr "" -"Optionen und geplante Aktionen bei der Deinstallation des Plugins aus der " -"Datenbank löschen." +#: ../inc/settings/mollie_advanced_settings.php:199 +msgid "Remove options and scheduled actions from database when uninstalling the plugin." +msgstr "Optionen und geplante Aktionen bei der Deinstallation des Plugins aus der Datenbank löschen." + +#: ../inc/settings/mollie_advanced_settings.php:200 +msgid "Clear now" +msgstr "Jetzt entfernen" -#: build/inc/settings/mollie_applepay_settings.php:14 -#: inc/settings/mollie_applepay_settings.php:14 +#: ../inc/settings/mollie_applepay_settings.php:12, ../src/PaymentMethods/Applepay.php:13 +msgid "Apple Pay" +msgstr "Apple Pay" + +#: ../inc/settings/mollie_applepay_settings.php:14 msgid "The following options are required to use the Apple Pay gateway" -msgstr "" -"Die folgenden Optionen sind für die Verwendung des Zahlungsportals Apple Pay " -"verpflichtend" +msgstr "Die folgenden Optionen sind für die Verwendung des Zahlungsportals Apple Pay verpflichtend" -#: build/inc/settings/mollie_applepay_settings.php:19 -#: build/src/Mollie/WC/Helper/Settings.php:48 -#: inc/settings/mollie_applepay_settings.php:19 -#: src/Mollie/WC/Helper/Settings.php:48 +#: ../inc/settings/mollie_applepay_settings.php:19, ../src/Settings/General/MollieGeneralSettings.php:18 msgid "Enable/Disable" msgstr "Aktivieren/deaktivieren" -#. translators: Placeholder 1: enabled or disabled -#: build/inc/settings/mollie_applepay_settings.php:21 -#: build/src/Mollie/WC/Helper/Settings.php:54 -#: inc/settings/mollie_applepay_settings.php:21 -#: src/Mollie/WC/Helper/Settings.php:54 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:21, ../src/Settings/General/MollieGeneralSettings.php:25 msgid "Enable %s" msgstr "%s aktivieren" -#: build/inc/settings/mollie_applepay_settings.php:29 -#: build/src/Mollie/WC/Helper/Settings.php:68 -#: inc/settings/mollie_applepay_settings.php:29 -#: src/Mollie/WC/Helper/Settings.php:68 +#: ../inc/settings/mollie_applepay_settings.php:29, ../src/Settings/General/MollieGeneralSettings.php:38 msgid "Title" msgstr "Titel" -#: build/inc/settings/mollie_applepay_settings.php:32 -#: build/src/Mollie/WC/Helper/Settings.php:71 -#: inc/settings/mollie_applepay_settings.php:32 -#: src/Mollie/WC/Helper/Settings.php:71 -msgid "" -"This controls the title which the user sees during checkout. Default " -"%s" -msgstr "" -"Hierdurch wird der Titel gesteuert, den Benutzer beim Bezahlvorgang sehen. " -"Standard: %s" - -#: build/inc/settings/mollie_applepay_settings.php:45 -#: build/inc/settings/mollie_applepay_settings.php:48 -#: build/src/Mollie/WC/Helper/Settings.php:94 -#: inc/settings/mollie_applepay_settings.php:45 -#: inc/settings/mollie_applepay_settings.php:48 -#: src/Mollie/WC/Helper/Settings.php:94 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:32, ../src/Settings/General/MollieGeneralSettings.php:42 +msgid "This controls the title which the user sees during checkout. Default %s" +msgstr "Hierdurch wird der Titel gesteuert, den Benutzer beim Bezahlvorgang sehen. Standard: %s" + +#: ../inc/settings/mollie_applepay_settings.php:46, ../inc/settings/mollie_applepay_settings.php:48, ../src/Settings/General/MollieGeneralSettings.php:66 msgid "Display logo" msgstr "Logo anzeigen" -#: build/inc/settings/mollie_applepay_settings.php:60 -#: build/src/Mollie/WC/Helper/Settings.php:81 -#: inc/settings/mollie_applepay_settings.php:60 -#: src/Mollie/WC/Helper/Settings.php:81 +#: ../inc/settings/mollie_applepay_settings.php:61, ../src/Settings/General/MollieGeneralSettings.php:52 msgid "Description" msgstr "Beschreibung" -#: build/inc/settings/mollie_applepay_settings.php:63 -#: build/src/Mollie/WC/Helper/Settings.php:84 -#: inc/settings/mollie_applepay_settings.php:63 -#: src/Mollie/WC/Helper/Settings.php:84 -msgid "" -"Payment method description that the customer will see on your checkout. " -"Default %s" -msgstr "" -"Beschreibung der Bezahlmethode, die der Kunde im Bezahlvorgang angezeigt " -"bekommt. Standard: %s" +#. translators: Placeholder 1: Gateway description +#: ../inc/settings/mollie_applepay_settings.php:64, ../src/Settings/General/MollieGeneralSettings.php:56 +msgid "Payment method description that the customer will see on your checkout. Default %s" +msgstr "Beschreibung der Bezahlmethode, die der Kunde im Bezahlvorgang angezeigt bekommt. Standard: %s" -#: build/inc/settings/mollie_applepay_settings.php:79 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:6 -#: inc/settings/mollie_applepay_settings.php:79 -#: inc/settings/mollie_apple_pay_button_enabler.php:6 +#: ../inc/settings/mollie_applepay_settings.php:81 msgid "Apple Pay button settings" msgstr "Einstellungen zur Schaltfläche Apple Pay" -#: build/inc/settings/mollie_applepay_settings.php:84 -#: inc/settings/mollie_applepay_settings.php:84 +#: ../inc/settings/mollie_applepay_settings.php:86 msgid "The following options are required to use the Apple Pay Direct Button" -msgstr "" -"Die folgenden Optionen sind für die Verwendung der Schaltfläche „Direktkauf " -"über Apple Pay“ verpflichtend" +msgstr "Die folgenden Optionen sind für die Verwendung der Schaltfläche „Direktkauf über Apple Pay“ verpflichtend" -#: build/inc/settings/mollie_applepay_settings.php:88 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:18 -#: inc/settings/mollie_applepay_settings.php:88 -#: inc/settings/mollie_apple_pay_button_enabler.php:18 +#: ../inc/settings/mollie_applepay_settings.php:90, ../src/PaymentMethods/Applepay.php:34 msgid "Enable Apple Pay Button on Cart page" msgstr "Schalfläche Apple Pay im Einkaufswagen aktivieren" -#: build/inc/settings/mollie_applepay_settings.php:91 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:21 -#: inc/settings/mollie_applepay_settings.php:91 -#: inc/settings/mollie_apple_pay_button_enabler.php:21 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:93, ../src/PaymentMethods/Applepay.php:36 msgid "Enable the Apple Pay direct buy button on the Cart page" -msgstr "" -"Kaufschaltfläche „Direktkauf über Apple Pay“ im Einkaufswagen aktivieren" +msgstr "Kaufschaltfläche „Direktkauf über Apple Pay“ im Einkaufswagen aktivieren" -#: build/inc/settings/mollie_applepay_settings.php:103 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:29 -#: inc/settings/mollie_applepay_settings.php:103 -#: inc/settings/mollie_apple_pay_button_enabler.php:29 +#: ../inc/settings/mollie_applepay_settings.php:106, ../src/PaymentMethods/Applepay.php:44 msgid "Enable Apple Pay Button on Product page" msgstr "Schalfläche Apple Pay auf Produktseite aktivieren" -#: build/inc/settings/mollie_applepay_settings.php:106 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:32 -#: inc/settings/mollie_applepay_settings.php:106 -#: inc/settings/mollie_apple_pay_button_enabler.php:32 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:109, ../src/PaymentMethods/Applepay.php:46 msgid "Enable the Apple Pay direct buy button on the Product page" -msgstr "" -"Kaufschaltfläche „Direktkauf über Apple Pay“ auf der Produktseite aktivieren" - -#: build/inc/settings/mollie_apple_pay_button_enabler.php:11 -#: inc/settings/mollie_apple_pay_button_enabler.php:11 -msgid "The following options are required to use the Apple Pay button" -msgstr "" -"Die folgenden Optionen sind für die Verwendung der Schaltfläche Apple Pay " -"verpflichtend" +msgstr "Kaufschaltfläche „Direktkauf über Apple Pay“ auf der Produktseite aktivieren" -#: build/inc/settings/mollie_components.php:7 -#: inc/settings/mollie_components.php:7 +#: ../inc/settings/mollie_components.php:9 msgctxt "Mollie Components Settings" msgid "Base Styles" msgstr "Basisformat" -#: build/inc/settings/mollie_components.php:16 -#: build/inc/settings/mollie_components.php:156 -#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156 +#: ../inc/settings/mollie_components.php:18, ../inc/settings/mollie_components.php:158 msgctxt "Mollie Components Settings" msgid "Background Color" msgstr "Hintergrundfarbe" -#: build/inc/settings/mollie_components.php:22 -#: build/inc/settings/mollie_components.php:145 -#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145 +#: ../inc/settings/mollie_components.php:24, ../inc/settings/mollie_components.php:147 msgctxt "Mollie Components Settings" msgid "Text Color" msgstr "Textfarbe" -#: build/inc/settings/mollie_components.php:28 -#: inc/settings/mollie_components.php:28 +#: ../inc/settings/mollie_components.php:30 msgctxt "Mollie Components Settings" msgid "Placeholder Color" msgstr "Platzhalterfarbe" -#: build/inc/settings/mollie_components.php:34 -#: inc/settings/mollie_components.php:34 +#: ../inc/settings/mollie_components.php:36 msgctxt "Mollie Components Settings" msgid "Font Size" msgstr "Schriftgröße" -#: build/inc/settings/mollie_components.php:35 -#: inc/settings/mollie_components.php:35 +#: ../inc/settings/mollie_components.php:37 msgctxt "Mollie Components Settings" msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'." -msgstr "" -"Legt die Schriftgröße der Komponente fest. Erlaubte Einheiten: ‚em‘, ‚px‘, " -"‚rem‘." +msgstr "Legt die Schriftgröße der Komponente fest. Erlaubte Einheiten: ‚em‘, ‚px‘, ‚rem‘." -#: build/inc/settings/mollie_components.php:45 -#: inc/settings/mollie_components.php:45 +#: ../inc/settings/mollie_components.php:47 msgctxt "Mollie Components Settings" msgid "Font Weight" msgstr "Schriftbreite" -#: build/inc/settings/mollie_components.php:48 -#: inc/settings/mollie_components.php:48 +#: ../inc/settings/mollie_components.php:50 msgctxt "Mollie Components Settings" msgid "Lighter" msgstr "Schmaler" -#: build/inc/settings/mollie_components.php:49 -#: inc/settings/mollie_components.php:49 +#: ../inc/settings/mollie_components.php:51 msgctxt "Mollie Components Settings" msgid "Regular" msgstr "Normal" -#: build/inc/settings/mollie_components.php:50 -#: inc/settings/mollie_components.php:50 +#: ../inc/settings/mollie_components.php:52 msgctxt "Mollie Components Settings" msgid "Bold" msgstr "Fett" -#: build/inc/settings/mollie_components.php:56 -#: inc/settings/mollie_components.php:56 +#: ../inc/settings/mollie_components.php:58 msgctxt "Mollie Components Settings" msgid "Letter Spacing" msgstr "Zeichenabstand" -#: build/inc/settings/mollie_components.php:62 -#: inc/settings/mollie_components.php:62 +#: ../inc/settings/mollie_components.php:64 msgctxt "Mollie Components Settings" msgid "Line Height" msgstr "Zeilenhöhe" -#: build/inc/settings/mollie_components.php:71 -#: inc/settings/mollie_components.php:71 +#: ../inc/settings/mollie_components.php:73 msgctxt "Mollie Components Settings" msgid "Padding" msgstr "Abstände" -#: build/inc/settings/mollie_components.php:72 -#: inc/settings/mollie_components.php:72 +#: ../inc/settings/mollie_components.php:74 msgctxt "Mollie Components Settings" -msgid "" -"Add padding to the components. Allowed units include `16px 16px 16px 16px` " -"and `em`, `px`, `rem`." -msgstr "" -"Füge Abstände zu den Komponenten hinzu. Beispiele für erlaubte Einheiten: " -"‚16px 16px 16px 16px‘, ‚em‘, ‚px‘, ‚rem‘." +msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`." +msgstr "Füge Abstände zu den Komponenten hinzu. Beispiele für erlaubte Einheiten: ‚16px 16px 16px 16px‘, ‚em‘, ‚px‘, ‚rem‘." -#: build/inc/settings/mollie_components.php:82 -#: inc/settings/mollie_components.php:82 +#: ../inc/settings/mollie_components.php:84 msgctxt "Mollie Components Settings" msgid "Align Text" msgstr "Text ausrichten" -#: build/inc/settings/mollie_components.php:85 -#: inc/settings/mollie_components.php:85 +#: ../inc/settings/mollie_components.php:87 msgctxt "Mollie Components Settings" msgid "Left" msgstr "Links" -#: build/inc/settings/mollie_components.php:86 -#: inc/settings/mollie_components.php:86 +#: ../inc/settings/mollie_components.php:88 msgctxt "Mollie Components Settings" msgid "Right" msgstr "Rechts" -#: build/inc/settings/mollie_components.php:87 -#: inc/settings/mollie_components.php:87 +#: ../inc/settings/mollie_components.php:89 msgctxt "Mollie Components Settings" msgid "Center" msgstr "Zentrieren" -#: build/inc/settings/mollie_components.php:88 -#: inc/settings/mollie_components.php:88 +#: ../inc/settings/mollie_components.php:90 msgctxt "Mollie Components Settings" msgid "Justify" msgstr "Justieren" -#: build/inc/settings/mollie_components.php:94 -#: inc/settings/mollie_components.php:94 +#: ../inc/settings/mollie_components.php:96 msgctxt "Mollie Components Settings" msgid "Transform Text " msgstr "Text transformieren " -#: build/inc/settings/mollie_components.php:97 -#: inc/settings/mollie_components.php:97 +#: ../inc/settings/mollie_components.php:99 msgctxt "Mollie Components Settings" msgid "None" msgstr "Keine" -#: build/inc/settings/mollie_components.php:102 -#: inc/settings/mollie_components.php:102 +#: ../inc/settings/mollie_components.php:104 msgctxt "Mollie Components Settings" msgid "Capitalize" msgstr "Großschreibung" -#: build/inc/settings/mollie_components.php:107 -#: inc/settings/mollie_components.php:107 +#: ../inc/settings/mollie_components.php:109 msgctxt "Mollie Components Settings" msgid "Uppercase" msgstr "Großbuchstaben" -#: build/inc/settings/mollie_components.php:112 -#: inc/settings/mollie_components.php:112 +#: ../inc/settings/mollie_components.php:114 msgctxt "Mollie Components Settings" msgid "Lowercase" msgstr "Kleinbuchstaben" -#: build/inc/settings/mollie_components.php:117 -#: inc/settings/mollie_components.php:117 +#: ../inc/settings/mollie_components.php:119 msgctxt "Mollie Components Settings" msgid "Full Width" msgstr "Gesamte Breite" -#: build/inc/settings/mollie_components.php:122 -#: inc/settings/mollie_components.php:122 +#: ../inc/settings/mollie_components.php:124 msgctxt "Mollie Components Settings" msgid "Full Size Kana" msgstr "Gesamte Breite Kana" -#: build/inc/settings/mollie_components.php:136 -#: inc/settings/mollie_components.php:136 +#: ../inc/settings/mollie_components.php:138 msgctxt "Mollie Components Settings" msgid "Invalid Status Styles" msgstr "Format für invalide Status" -#: build/inc/settings/mollie_components.php:146 -#: inc/settings/mollie_components.php:146 +#: ../inc/settings/mollie_components.php:148 msgctxt "Mollie Components Settings" msgid "Text Color for invalid input." msgstr "Textfarbe bei ungültiger Eingabe." -#: build/inc/settings/mollie_components.php:157 -#: inc/settings/mollie_components.php:157 +#: ../inc/settings/mollie_components.php:159 msgctxt "Mollie Components Settings" msgid "Background Color for invalid input." msgstr "Hintergrundfarbe bei ungültiger Eingabe." -#: build/inc/settings/mollie_components_enabler.php:6 -#: inc/settings/mollie_components_enabler.php:6 -msgid "Enable Mollie Components" -msgstr "Mollie-Komponenten aktivieren" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to settings. Placeholder 4: Closing link tag. +#: ../src/Activation/ActivationModule.php:167 +msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s." +msgstr "%1$sMollie-Zahlungen für WooCommerce Fehlende API-Schlüssel%2$s Bitte%3$s richte deine API-Schlüssel hier ein%4$s." -#: build/inc/settings/mollie_components_enabler.php:8 -#: inc/settings/mollie_components_enabler.php:8 -msgid "" -"Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." -msgstr "" -"Mollie-Komponenten für dieses Portal aktivieren Mollie-Komponenten für " -"dieses Portal verwenden. Erfahre mehr über %s und wie " -"du damit deinen Umsatz steigern kannst." - -#: build/inc/settings/mollie_components_enabler.php:12 -#: build/src/Mollie/WC/Settings/Page/Components.php:10 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:139 -#: inc/settings/mollie_components_enabler.php:12 -#: src/Mollie/WC/Settings/Page/Components.php:10 -#: src/Mollie/WC/Settings/Page/Mollie.php:139 -msgid "Mollie Components" -msgstr "Mollie-Komponenten" +#: ../src/Activation/ConstraintsChecker.php:109 +msgid "%1$sMollie Payments for WooCommerce is inactive:%2$s" +msgstr "%1$sMollie-Zahlungen für WooCommerce ist inaktiv:%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:5 -#: inc/settings/mollie_creditcard_icons_selector.php:5 -msgid "Customize Icons" -msgstr "Symbole personalisieren" +#: ../src/Activation/ConstraintsChecker.php:113 +msgid "%1$sCorrect the above errors to use Mollie Payments for Woocommerce%2$s" +msgstr "%1$sKorrigiere die oben genannten Fehler, um Mollie-Zahlungen für WooCommerce zu nutzen%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:12 -#: inc/settings/mollie_creditcard_icons_selector.php:12 -msgid "Enable Icons Selector" -msgstr "Symbolauswahl aktivieren" +#: ../src/Assets/AssetsModule.php:432 +msgid "Name on card" +msgstr "Name auf der Karte" -#: build/inc/settings/mollie_creditcard_icons_selector.php:13 -#: inc/settings/mollie_creditcard_icons_selector.php:13 -msgid "Show customized creditcard icons on checkout page" -msgstr "Personalisierte Kreditkartensymbole auf der Checkout-Seite anzeigen" +#: ../src/Assets/AssetsModule.php:436 +msgid "Card number" +msgstr "Kartennummer" -#: build/inc/settings/mollie_creditcard_icons_selector.php:21 -#: inc/settings/mollie_creditcard_icons_selector.php:21 -msgid "Show American Express Icon" -msgstr "American-Express-Symbol anzeigen" +#: ../src/Assets/AssetsModule.php:440 +msgid "Expiry date" +msgstr "Ablaufdatum" -#: build/inc/settings/mollie_creditcard_icons_selector.php:26 -#: inc/settings/mollie_creditcard_icons_selector.php:26 -msgid "Show Carta Si Icon" -msgstr "Carta-Si-Symbol anzeigen" +#: ../src/Assets/AssetsModule.php:444 +msgid "CVC/CVV" +msgstr "CVC/CVV" -#: build/inc/settings/mollie_creditcard_icons_selector.php:31 -#: inc/settings/mollie_creditcard_icons_selector.php:31 -msgid "Show Carte Bancaire Icon" -msgstr "Carte-Bancaire-Symbol anzeigen" +#: ../src/Assets/AssetsModule.php:451 +msgid "An unknown error occurred, please check the card fields." +msgstr "Ein unbekannter Fehler ist aufgetreten, bitte überprüfe die Kartenfelder." -#: build/inc/settings/mollie_creditcard_icons_selector.php:36 -#: inc/settings/mollie_creditcard_icons_selector.php:36 -msgid "Show Maestro Icon" -msgstr "Maestro-Symbol anzeigen" +#: ../src/Assets/AssetsModule.php:521 +msgid "Please choose a billing country to see the available payment methods" +msgstr "Bitte wähle das Land aus, in dem die Rechnung erstellt wird, um die verfügbaren Zahlungsmethoden anzuzeigen" -#: build/inc/settings/mollie_creditcard_icons_selector.php:41 -#: inc/settings/mollie_creditcard_icons_selector.php:41 -msgid "Show Mastercard Icon" -msgstr "Mastercard-Symbol anzeigen" +#: ../src/Assets/AssetsModule.php:570 +msgid "No custom logo selected" +msgstr "Kein eigenes Logo ausgewählt" -#: build/inc/settings/mollie_creditcard_icons_selector.php:46 -#: inc/settings/mollie_creditcard_icons_selector.php:46 -msgid "Show Visa Icon" -msgstr "Visa-Symbol anzeigen" +#: ../src/Gateway/MolliePaymentGateway.php:271, ../src/Settings/Page/MollieSettingsPage.php:313 +msgid "Test mode enabled." +msgstr "Testmodus aktiviert." -#: build/inc/settings/mollie_creditcard_icons_selector.php:51 -#: inc/settings/mollie_creditcard_icons_selector.php:51 -msgid "Show VPay Icon" -msgstr "VPay-Symbol anzeigen" +#. translators: The surrounding %s's Will be replaced by a link to the global setting page +#: ../src/Gateway/MolliePaymentGateway.php:276 +msgid "No API key provided. Please %1$sset you Mollie API key%2$s first." +msgstr "Kein API-Schlüssel vorgegeben. Bitte %1$slege deinen Mollie-API-Schlüssel fest%2$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:7 -#: inc/settings/mollie_paypal_button_enabler.php:7 -msgid "PayPal button display settings" -msgstr "Anzeigeeinstellungen für die PayPal-Schaltfläche" +#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Gateway/MolliePaymentGateway.php:291 +msgid "%1$s not enabled in your Mollie profile. You can enable it by editing your %2$sMollie profile%3$s." +msgstr "%1$s ist nicht in deinem Mollie-Profil aktiviert. Du kannst es aktivieren, indem du dein %2$sMollie-Profil%3$s bearbeitest." -#: build/inc/settings/mollie_paypal_button_enabler.php:12 -#: inc/settings/mollie_paypal_button_enabler.php:12 -msgid "" -"%1sThe PayPal button is optimized for digital goods. And will only appear if " -"the product has no shipping. %2sThe customer's address information can only " -"be retrieved if the transaction has been done with the %3sOrders API%4s.%5s" -"%6s" -msgstr "" -"%1sDie PayPal-Schaltfläche ist für digitale Produkte optimiert und erscheint " -"nur, wenn das Produkt nicht versandt werden muss. %2sDie Adressdaten des " -"Kunden können nur abgerufen werden, wenn die Transaktion über die %3sOrders " -"API%4s durchgeführt wurde.%5s%6s" +#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies +#: ../src/Gateway/MolliePaymentGateway.php:306 +msgid "Current shop currency %1$s not supported by Mollie. Read more about %2$ssupported currencies and payment methods.%3$s " +msgstr "Die aktuelle Shopwährung %1$s wird von Mollie nicht unterstützt. Mehr Informationen zu %2$sunterstützten Währungen und Bezahlungsmethoden.%3$s " -#: build/inc/settings/mollie_paypal_button_enabler.php:19 -#: inc/settings/mollie_paypal_button_enabler.php:19 -msgid "Display on cart page" -msgstr "Im Einkaufswagen anzeigen" +#: ../src/Gateway/MolliePaymentGateway.php:577 +msgid "You have cancelled your payment. Please complete your order with a different payment method." +msgstr "Du hast deine Zahlung storniert. Vervollständige deine Bestellung bitte mit einer anderen Zahlungsmethode." -#: build/inc/settings/mollie_paypal_button_enabler.php:23 -#: inc/settings/mollie_paypal_button_enabler.php:23 -msgid "Enable the PayPal button to be used in the cart page." -msgstr "" -"Aktiviere die PayPal-Schaltfläche, die im Einkaufswagen verwendet werden " -"soll." +#: ../src/Gateway/MolliePaymentGateway.php:597, ../src/Gateway/MolliePaymentGateway.php:611 +msgid "Your payment was not successful. Please complete your order with a different payment method." +msgstr "Deine Zahlung war nicht erfolgreich. Vervollständige deine Bestellung bitte mit einer anderen Zahlungsmethode." -#: build/inc/settings/mollie_paypal_button_enabler.php:31 -#: inc/settings/mollie_paypal_button_enabler.php:31 -msgid "Display on product page" -msgstr "Auf der Produktseite anzeigen" +#: ../src/Gateway/MolliePaymentGateway.php:647 +msgid "Could not load order %s" +msgstr "Bestellung %s konnte nicht geladen werden" -#: build/inc/settings/mollie_paypal_button_enabler.php:35 -#: inc/settings/mollie_paypal_button_enabler.php:35 -msgid "Enable the PayPal button to be used in the product page." -msgstr "" -"Aktiviere die PayPal-Schaltfläche, die auf der Produktseite verwendet werden " -"soll." +#: ../src/Gateway/MolliePaymentGateway.php:906 +msgid "Order cancelled" +msgstr "Bestellung storniert" -#: build/inc/settings/mollie_paypal_button_enabler.php:44 -#: inc/settings/mollie_paypal_button_enabler.php:44 -msgctxt "Mollie PayPal Button Settings" -msgid "Button text language and color" -msgstr "Sprache und Farbe des Schaltflächentextes" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Gateway/MolliePaymentGateway.php:943 +msgid "%1$s payment still pending (%2$s) but customer already returned to the store. Status should be updated automatically in the future, if it doesn't this might indicate a communication issue between the site and Mollie." +msgstr "Eine %1$s-Zahlung ist noch offen (%2$s), der Kunde ist aber bereits zum Shop zurückgekehrt. Der Status sollte zukünftig automatisch aktualisiert werden. Falls dies nicht der Fall ist, liegt möglicherweise ein Kommunikationsproblem zwischen der Seite und Mollie vor." -#: build/inc/settings/mollie_paypal_button_enabler.php:46 -#: inc/settings/mollie_paypal_button_enabler.php:46 -msgctxt "Mollie PayPal Button Settings" -msgid "Select the text and the colour of the button." -msgstr "Wähle Text und Farbe der Schaltfläche aus." +#: ../src/Gateway/MolliePaymentGateway.php:949, ../src/Payment/MollieObject.php:687, ../src/Payment/MollieObject.php:655, ../src/Payment/MollieOrder.php:275, ../src/Payment/MollieOrder.php:332, ../src/Payment/MollieOrder.php:377, ../src/Payment/MollieOrder.php:459, ../src/Payment/MollieOrder.php:522, ../src/Payment/MollieOrder.php:941, ../src/Payment/MollieOrderService.php:165, ../src/Payment/MollieOrderService.php:428, ../src/Payment/MollieOrderService.php:491, ../src/Payment/MollieOrderService.php:705, ../src/Payment/MolliePayment.php:223, ../src/Payment/MolliePayment.php:310, ../src/Payment/MolliePayment.php:379, ../src/Payment/MolliePayment.php:402, ../src/Payment/PaymentService.php:788, ../src/Subscription/MollieSepaRecurringGateway.php:138, ../src/Subscription/MollieSepaRecurringGateway.php:205, ../src/Subscription/MollieSubscriptionGateway.php:470 +msgid "test mode" +msgstr "Testmodus" -#: build/inc/settings/mollie_paypal_button_enabler.php:54 -#: inc/settings/mollie_paypal_button_enabler.php:54 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill blue" -msgstr "Englisch -- Kauf über PayPal - Klein und rund, blau" +#: ../src/Gateway/MolliePaymentGateway.php:964 +msgid ", payment pending." +msgstr ", Zahlung ausstehend" -#: build/inc/settings/mollie_paypal_button_enabler.php:55 -#: inc/settings/mollie_paypal_button_enabler.php:55 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded blue" -msgstr "Englisch -- Kauf über PayPal - Abgerundet, blau" +#: ../src/Gateway/MolliePaymentGateway.php:996 +msgid "Your order has been cancelled." +msgstr "Deine Bestellung wurde storniert." -#: build/inc/settings/mollie_paypal_button_enabler.php:56 -#: inc/settings/mollie_paypal_button_enabler.php:56 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill golden" -msgstr "Englisch -- Kauf über PayPal - Klein und rund, goldfarben" +#: ../src/Gateway/Surcharge.php:81 +msgid "A surchage fee might apply" +msgstr "Möglicherweise fällt eine zusätzliche Gebühr an" -#: build/inc/settings/mollie_paypal_button_enabler.php:57 -#: inc/settings/mollie_paypal_button_enabler.php:57 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded golden" -msgstr "Englisch -- Kauf über PayPal - Abgerundet, goldfarben" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. +#: ../src/Gateway/Surcharge.php:275 +msgid " + %1$s %2$s fee might apply" +msgstr " Möglicherweise fällt eine + %1$s %2$s-Gebühr an" -#: build/inc/settings/mollie_paypal_button_enabler.php:58 -#: inc/settings/mollie_paypal_button_enabler.php:58 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill gray" -msgstr "Englisch -- Kauf über PayPal - Klein und rund, grau" +#. translators: Placeholder 1: Fee amount tag. +#: ../src/Gateway/Surcharge.php:292 +msgid " + %1$s%% fee might apply" +msgstr " Möglicherweise fällt eine + %1$s%%-Gebühr an" -#: build/inc/settings/mollie_paypal_button_enabler.php:59 -#: inc/settings/mollie_paypal_button_enabler.php:59 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded gray" -msgstr "Englisch -- Kauf über PayPal - Abgerundet, grau" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. +#: ../src/Gateway/Surcharge.php:315 +msgid " + %1$s %2$s + %3$s%% fee might apply" +msgstr " Möglicherweise fällt eine + %1$s %2$s + %3$s%%-Gebühr an" -#: build/inc/settings/mollie_paypal_button_enabler.php:60 -#: inc/settings/mollie_paypal_button_enabler.php:60 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill white" -msgstr "Englisch -- Kauf über PayPal - Klein und rund, weiß" +#: ../src/Gateway/Surcharge.php:348 +msgid " (incl. VAT)" +msgstr " (inkl. Mehrwertsteuer)" -#: build/inc/settings/mollie_paypal_button_enabler.php:61 -#: inc/settings/mollie_paypal_button_enabler.php:61 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded white" -msgstr "Englisch -- Kauf über PayPal - Abgerundet, weiß" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:682 +msgid "%1$s payment failed via Mollie (%2$s)." +msgstr "%1$s-Bezahlung über Mollie fehlgeschlagen (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:62 -#: inc/settings/mollie_paypal_button_enabler.php:62 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill black" -msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, schwarz" +#: ../src/Payment/MollieObject.php:650 +msgid "%1$s renewal payment failed via Mollie (%2$s). You will need to manually review the payment and adjust product stocks if you use them." +msgstr "Erneute %1$s-Zahlung über Mollie fehlgeschlagen (%2$s). Du musst die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen." -#: build/inc/settings/mollie_paypal_button_enabler.php:63 -#: inc/settings/mollie_paypal_button_enabler.php:63 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded black" -msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, schwarz" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:721 +msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated." +msgstr "Der Mollie-WebHook wurde aufgerufen, die Zahlung wurde jedoch gleichzeitig über %s gestartet. Der Bestellstatus wird deshalb nicht aktualisiert." -#: build/inc/settings/mollie_paypal_button_enabler.php:64 -#: inc/settings/mollie_paypal_button_enabler.php:64 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill blue" -msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, blau" +#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID +#: ../src/Payment/MollieObject.php:740, ../src/PaymentMethods/InstructionStrategies/PaypalInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (PayPal transaction ID: %3$s)" +msgstr "Zahlung durch %1$s - %2$s (PayPal Transaktions-ID: %3$s) erfolgt" -#: build/inc/settings/mollie_paypal_button_enabler.php:65 -#: inc/settings/mollie_paypal_button_enabler.php:65 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded blue" -msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, blau" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:881 +msgctxt "Payment description for {orderNumber}" +msgid "Order {orderNumber}" +msgstr "Bestellung {orderNumber}" -#: build/inc/settings/mollie_paypal_button_enabler.php:66 -#: inc/settings/mollie_paypal_button_enabler.php:66 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill golden" -msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, goldfarben" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:891 +msgctxt "Payment description for {storeName}" +msgid "StoreName {storeName}" +msgstr "Name des Shops {storeName}" -#: build/inc/settings/mollie_paypal_button_enabler.php:67 -#: inc/settings/mollie_paypal_button_enabler.php:67 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded golden" -msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, goldfarben" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:901 +msgctxt "Payment description for {customer.firstname}" +msgid "Customer Firstname {customer.firstname}" +msgstr "Vorname des Kunden {customer.firstname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:68 -#: inc/settings/mollie_paypal_button_enabler.php:68 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill gray" -msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, grau" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:911 +msgctxt "Payment description for {customer.lastname}" +msgid "Customer Lastname {customer.lastname}" +msgstr "Nachname des Kunden {customer.lastname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:69 -#: inc/settings/mollie_paypal_button_enabler.php:69 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded gray" -msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, grau" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:921 +msgctxt "Payment description for {customer.company}" +msgid "Customer Company {customer.company}" +msgstr "Firma des Kunden {customer.company}" -#: build/inc/settings/mollie_paypal_button_enabler.php:70 -#: inc/settings/mollie_paypal_button_enabler.php:70 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill white" -msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, weiß" +#: ../src/Payment/MollieObject.php:936 +msgid "Order" +msgstr "Bestellung" -#: build/inc/settings/mollie_paypal_button_enabler.php:71 -#: inc/settings/mollie_paypal_button_enabler.php:71 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded white" -msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, weiß" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:271, ../src/Payment/MolliePayment.php:221, ../src/Subscription/MollieSepaRecurringGateway.php:211 +msgid "Order completed using %1$s payment (%2$s)." +msgstr "Vorgang über %1$s-Bezahlung (%2$s) erfolgt." -#: build/inc/settings/mollie_paypal_button_enabler.php:72 -#: inc/settings/mollie_paypal_button_enabler.php:72 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill black" -msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, schwarz" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:330 +msgid "Order authorized using %1$s payment (%2$s). Set order to completed in WooCommerce when you have shipped the products, to capture the payment. Do this within 28 days, or the order will expire. To handle individual order lines, process the order via the Mollie Dashboard." +msgstr "Bestellung über %1$s-Bezahlung (%2$s) autorisiert. Setze die Bestellung in WooCommerce auf abgeschlossen, wenn du die Produkte versandt hast, um die Bezahlung zu erfassen. Erledige dies innerhalb von 28 Tagen, ansonsten verfällt die Bestellung. Um individuelle Auftragszeilen abzuwickeln, verarbeite die Bestellung über das Mollie-Dashboard." -#: build/inc/settings/mollie_paypal_button_enabler.php:73 -#: inc/settings/mollie_paypal_button_enabler.php:73 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded black" -msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, schwarz" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:375 +msgid "Order completed at Mollie for %1$s order (%2$s). At least one order line completed. Remember: Completed status for an order at Mollie is not the same as Completed status in WooCommerce!" +msgstr "Bestellvorgang bei Mollie für %1$s-Bestellung (%2$s) abgeschlossen. Mindestens eine Auftragszeile abgeschlossen. Hinweis: Der abgeschlossene Status bei Mollie ist nicht mit dem abgeschlossenen Status bei WooCommerce gleichzusetzen." -#: build/inc/settings/mollie_paypal_button_enabler.php:74 -#: inc/settings/mollie_paypal_button_enabler.php:74 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill blue" -msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, blau" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:457 +msgid "%1$s order (%2$s) cancelled ." +msgstr "%1$s-Bestellung (%2$s) abgebrochen." -#: build/inc/settings/mollie_paypal_button_enabler.php:75 -#: inc/settings/mollie_paypal_button_enabler.php:75 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded blue" -msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, blau" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:520 +msgid "%1$s order expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s-Bestellung (%2$s) abgelaufen, wegen einer weiteren offenen Zahlung (%3$s) jedoch nicht abgebrochen." -#: build/inc/settings/mollie_paypal_button_enabler.php:76 -#: inc/settings/mollie_paypal_button_enabler.php:76 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill golden" -msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, goldfarben" +#: ../src/Payment/MollieOrder.php:616 +msgctxt "Order note error" +msgid "The sum of refunds for all order lines is not identical to the refund amount, so this refund will be processed as a payment amount refund, not an order line refund." +msgstr "Die Summe der Rückerstattungen aller Auftragszeilen stimmt nicht mit dem Rückerstattungsbetrag überein, die Rückerstattung wird deshalb als Rückerstattung des Zahlungsbetrags und nicht als Rückerstattung der Auftragszeilen bearbeitet." -#: build/inc/settings/mollie_paypal_button_enabler.php:77 -#: inc/settings/mollie_paypal_button_enabler.php:77 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded golden" -msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, goldfarben" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. +#: ../src/Payment/MollieOrder.php:747 +msgid "%1$sx %2$s cancelled for %3$s%4$s in WooCommerce and at Mollie." +msgstr "%1$sx %2$s storniert für %3$s%4$s bei WooCommerce und Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:78 -#: inc/settings/mollie_paypal_button_enabler.php:78 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill gray" -msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, grau" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. Placeholder 5: Reason. Placeholder 6: Refund Id. +#: ../src/Payment/MollieOrder.php:763 +msgid "%1$sx %2$s refunded for %3$s%4$s in WooCommerce and at Mollie.%5$s Refund ID: %6$s." +msgstr "%1$sx %2$s erstattet für %3$s%4$s bei WooCommerce und Mollie.%5$s Erstattungs-ID: %6$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:79 -#: inc/settings/mollie_paypal_button_enabler.php:79 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded gray" -msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, grau" +#. translators: Placeholder 1: payment status. +#: ../src/Payment/MollieOrder.php:823 +msgctxt "Order note error" +msgid "Can not refund order amount that has status %1$s at Mollie." +msgstr "Ein Zahlungsbetrag mit dem Status %1$s bei Mollie kann nicht rückerstattet werden." -#: build/inc/settings/mollie_paypal_button_enabler.php:80 -#: inc/settings/mollie_paypal_button_enabler.php:80 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill white" -msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, weiß" +#. translators: Placeholder 1: Currency. Placeholder 2: Refund amount. Placeholder 3: Reason. Placeholder 4: Refund id. +#: ../src/Payment/MollieOrder.php:845 +msgid "Amount refund of %1$s%2$s refunded in WooCommerce and at Mollie.%3$s Refund ID: %4$s." +msgstr "Erstattungsbetrag von %1$s erstatteten %2$s bei WooCommerce und Mollie.%3$s Erstattungs-ID: %4$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:81 -#: inc/settings/mollie_paypal_button_enabler.php:81 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded white" -msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, weiß" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:936 +msgid "%1$s order (%2$s) expired ." +msgstr "%1$s-Bestellung (%2$s) abgelaufen." -#: build/inc/settings/mollie_paypal_button_enabler.php:82 -#: inc/settings/mollie_paypal_button_enabler.php:82 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill black" -msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, schwarz" +#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID +#: ../src/Payment/MollieOrderService.php:162 +msgid "%1$s payment %2$s (%3$s), not processed." +msgstr "%1$s-Zahlung %2$s (%3$s), nicht verarbeitet." -#: build/inc/settings/mollie_paypal_button_enabler.php:83 -#: inc/settings/mollie_paypal_button_enabler.php:83 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded black" -msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, schwarz" +#: ../src/Payment/MollieOrderService.php:391 +msgid "New chargeback %s processed! Order note and order status updated." +msgstr "Neue Rückbuchung %s erfasst. Bestellungsnotiz und Status aktualisiert." -#: build/inc/settings/mollie_paypal_button_enabler.php:84 -#: inc/settings/mollie_paypal_button_enabler.php:84 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill blue" -msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, blau" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:423 +msgid "%1$s payment charged back via Mollie (%2$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s-Zahlung über Mollie zurückgebucht (%2$s). Du musst die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen." -#: build/inc/settings/mollie_paypal_button_enabler.php:85 -#: inc/settings/mollie_paypal_button_enabler.php:85 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded blue" -msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, blau" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:485 +msgid "%1$s payment charged back via Mollie (%2$s). Subscription status updated, please review (and adjust product stocks if you use it)." +msgstr "%1$s-Zahlung über Mollie zurückgebucht (%2$s). Abonnementstatus aktualisiert, bitte prüfen (und, falls verwendet, Produktbestände anpassen)." -#: build/inc/settings/mollie_paypal_button_enabler.php:86 -#: inc/settings/mollie_paypal_button_enabler.php:86 +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:692 +msgid "%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s-Zahlung %2$s über Mollie fehlgeschlagen (%3$s %4$s). Du musst die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen." + +#: ../src/Payment/MollieOrderService.php:805 +msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated." +msgstr "Neue Rückerstattung %s im Mollie-Dashboard verarbeitet. Bestellungsnotiz hinzugefügt, Bestellung jedoch nicht aktualisiert." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:308 +msgid "%1$s payment (%2$s) cancelled ." +msgstr "%1$s-Bezahlvorgang (%2$s) abgebrochen." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:377 +msgid "%1$s payment expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s-Zahlung (%2$s) abgelaufen, wegen einer weiteren offenen Zahlung (%3$s) jedoch nicht abgebrochen." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:400 +msgid "%1$s payment expired (%2$s)." +msgstr "%1$s-Zahlung abgelaufen (%2$s)." + +#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID +#: ../src/Payment/MolliePayment.php:476 +msgid "Refunded %1$s%2$s%3$s - Payment: %4$s, Refund: %5$s" +msgstr "Rückerstattung %1$s%2$s%3$s – Zahlung: %4$s, Rückerstattung: %5$s" + +#. translators: Placeholder 1: order number +#: ../src/Payment/MollieSubscription.php:80 +msgctxt "Default payment description for subscription recurring payments" +msgid "Order %1$s" +msgstr "Bestellung %1$s" + +#: ../src/Payment/OrderItemsRefunder.php:121 +msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item." +msgstr "Eine der WooCommerce-Auftragspositionen stimmt nicht mit dem entsprechenden Metawert für die ID des Rückerstattungsartikels der Mollie-Auftragsposition überein." + +#: ../src/Payment/OrderItemsRefunder.php:166 +msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount." +msgstr "Die Auftragspositions-ID zum folgenden Remote-Artikel konnte nicht abgerufen werden: %1$s. Versuche, eine Rückerstattung nach Betrag durchzuführen." + +#: ../src/Payment/OrderItemsRefunder.php:190 +msgid "Empty WooCommerce order items or mollie order lines." +msgstr "Leere WooCommerce-Auftragspositionen oder Mollie-Auftragszeilen." + +#: ../src/Payment/OrderLines.php:509 +msgid "Shipping" +msgstr "Versand" + +#: ../src/Payment/PaymentModule.php:194 +msgid "Unpaid order cancelled - time limit reached." +msgstr "Unbezahlte Bestellung storniert – Zeitlimit erreicht." + +#: ../src/Payment/PaymentModule.php:213 +msgid "%1$s items refunded in WooCommerce and at Mollie." +msgstr "%1$s erstattete Artikel bei WooCommerce und Mollie." + +#: ../src/Payment/PaymentModule.php:231 +msgid "%1$s items cancelled in WooCommerce and at Mollie." +msgstr "%1$s stornierte Artikel bei WooCommerce und Mollie." + +#: ../src/Payment/PaymentModule.php:350 +msgctxt "Order note info" +msgid "Processing a payment, no capture needed" +msgstr "Ein Bezahlvorgang wird bearbeitet, keine Erfassung notwendig" + +#: ../src/Payment/PaymentModule.php:364 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be shipped/captured." +msgstr "Die Bestellung wurde bei Mollie bereits storniert und kann nicht versandt/erfasst werden." + +#: ../src/Payment/PaymentModule.php:372 +msgctxt "Order note info" +msgid "Order already completed at Mollie, can not be shipped/captured." +msgstr "Die Bestellung wurde bei Mollie bereits abgearbeitet und kann nicht versandt/erfasst werden." + +#: ../src/Payment/PaymentModule.php:381 +msgctxt "Order note info" +msgid "Order successfully updated to shipped at Mollie, capture of funds underway." +msgstr "Die Bestellung wurde bei Mollie erfolgreich auf versandt aktualisiert, Erfassung der Geldmittel in Bearbeitung." + +#: ../src/Payment/PaymentModule.php:387 +msgctxt "Order note info" +msgid "Order not paid or authorized at Mollie yet, can not be shipped." +msgstr "Die Bestellung wurde bei Mollie noch nicht bezahlt oder autorisiert und kann nicht versandt werden." + +#: ../src/Payment/PaymentModule.php:421 +msgctxt "Order note info" +msgid "Order contains Mollie payment method, but not a valid Mollie Order ID. Canceling order failed." +msgstr "Die Bestellung enthält eine Mollie-Zahlungsmethode, aber keine gültige Mollie-Bestell-ID. Stornierung der Bestellung fehlgeschlagen." + +#: ../src/Payment/PaymentModule.php:442 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be canceled again." +msgstr "Die Bestellung wurde bei Mollie bereits storniert und kann nicht erneut storniert werden." + +#: ../src/Payment/PaymentModule.php:452 +msgctxt "Order note info" +msgid "Order also cancelled at Mollie." +msgstr "Bestellung auch bei Mollie storniert." + +#: ../src/Payment/PaymentModule.php:458 +msgctxt "Order note info" +msgid "Order could not be canceled at Mollie, because order status is " +msgstr "Bestellung konnte bei Mollie nicht storniert werden, da der Bestellstatus " + +#: ../src/Payment/PaymentService.php:620 +msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription." +msgstr "Abonnement-Umstellung fehlgeschlagen, kein valides Mandat gefunden. Leite einen neuen Bestellvorgang ein, um dein Abonnement zu ändern." + +#: ../src/Payment/PaymentService.php:626 +msgid "Failed switching subscriptions, no valid mandate." +msgstr "Abonnement-Wechsel fehlgeschlagen, kein valides Mandat." + +#: ../src/Payment/PaymentService.php:635 +msgid "Order completed internally because of an existing valid mandate at Mollie." +msgstr "Die Bestellung wurde wegen eines bestehenden, gültigen Mandats bei Mollie intern abgewickelt." + +#. translators: Placeholder 1: Payment method title +#: ../src/Payment/PaymentService.php:708, ../src/Buttons/ApplePayButton/AppleAjaxRequests.php:723, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:113, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:159 +msgid "Could not create %s payment." +msgstr "%s-Zahlung konnte nicht erstellt werden." + +#: ../src/Payment/PaymentService.php:766, ../src/Subscription/MollieSepaRecurringGateway.php:127, ../src/Subscription/MollieSubscriptionGateway.php:461 +msgid "Awaiting payment confirmation." +msgstr "Die Zahlungsbestätigung wird erwartet." + +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Payment/PaymentService.php:786 +msgid "%s payment started (%s)." +msgstr "%s-Bezahlung gestartet (%s)." + +#: ../src/Payment/RefundLineItemsBuilder.php:126 +msgid "Mollie doesn't allow a partial refund of the full amount or quantity of at least one order line. Trying to process this as an amount refund instead." +msgstr "Mollie erlaubt keine teilweise Rückerstattung des vollen Betrags oder der vollen Menge mindestens einer Auftragszeile. Es wird stattdessen versucht, die Eingabe als Erstattungsbetrag zu verarbeiten." + +#: ../src/PaymentMethods/Applepay.php:14 +msgid "To accept payments via Apple Pay" +msgstr "Um Bezahlungen über Apple Pay zu akzeptieren" + +#: ../src/PaymentMethods/Bancontact.php:14 +msgid "Bancontact" +msgstr "Bancontact" + +#: ../src/PaymentMethods/Banktransfer.php:33 +msgid "Bank Transfer" +msgstr "Überweisung" + +#: ../src/PaymentMethods/Banktransfer.php:55, ../src/Settings/General/MollieGeneralSettings.php:235 +msgid "Activate expiry time setting" +msgstr "Einstellung für den Ablaufzeitpunkt übernehmen" + +#: ../src/PaymentMethods/Banktransfer.php:56, ../src/Settings/General/MollieGeneralSettings.php:236 +msgid "Enable expiry time for payments" +msgstr "Ablaufzeitpunkt für Zahlungen aktivieren" + +#: ../src/PaymentMethods/Banktransfer.php:57 +msgid "Enable this option if you want to be able to set the time after which the payment will expire. This will turn all transactions into payments instead of orders" +msgstr "Aktiviere diese Option, um den Zeitpunkt, an dem die Zahlungsfrist abläuft, selbst festzulegen. Hiermit werden alle Transaktionen in Zahlungen anstatt Bestellungen umgewandelt" + +#: ../src/PaymentMethods/Banktransfer.php:62, ../src/Settings/General/MollieGeneralSettings.php:242 +msgid "Expiry time" +msgstr "Ablaufzeitpunkt" + +#. translators: Placeholder 1: Default expiry days. +#: ../src/PaymentMethods/Banktransfer.php:65 +msgid "Number of DAYS after the payment will expire. Default %d days" +msgstr "TAGE nach Ende der Zahlungsfrist. Standard: %d Tage." + +#: ../src/PaymentMethods/Banktransfer.php:74 +msgid "Skip Mollie payment screen" +msgstr "Mollie-Bezahlseite überspringen" + +#: ../src/PaymentMethods/Banktransfer.php:75 +msgid "Skip Mollie payment screen when Bank Transfer is selected" +msgstr "Mollie-Bezahlseite überspringen, wenn Überweisung ausgewählt wurde" + +#: ../src/PaymentMethods/Banktransfer.php:76 +msgid "Enable this option if you want to skip redirecting your user to the Mollie payment screen, instead this will redirect your user directly to the WooCommerce order received page displaying instructions how to complete the Bank Transfer payment." +msgstr "Aktiviere diese Option, um die Weiterleitung des Benutzers auf die Mollie-Bezahlseite zu überspringen. Stattdessen wird der Benutzer direkt zur Bestellbestätigung von WooCommerce weitergeleitet und bekommt eine Schrittanweisung zur Abwicklung der Überweisungszahlung angezeigt." + +#: ../src/PaymentMethods/Belfius.php:13 +msgid "Belfius Direct Net" +msgstr "Belfius Direct Net" + +#: ../src/PaymentMethods/Creditcard.php:16 +msgid "Credit card" +msgstr "Kreditkarte" + +#: ../src/PaymentMethods/Creditcard.php:52 +msgid "Enable Mollie Components" +msgstr "Mollie-Komponenten aktivieren" + +#. translators: Placeholder 1: Mollie Components. +#: ../src/PaymentMethods/Creditcard.php:55 +msgid "Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." +msgstr "Mollie-Komponenten für dieses Portal aktivieren Mollie-Komponenten für dieses Portal verwenden. Erfahre mehr über %s und wie du damit deinen Umsatz steigern kannst." + +#: ../src/PaymentMethods/Creditcard.php:59, ../src/Settings/Page/Components.php:21, ../src/Settings/Page/MollieSettingsPage.php:703 +msgid "Mollie Components" +msgstr "Mollie-Komponenten" + +#: ../src/PaymentMethods/Creditcard.php:92 +msgid "Customize Icons" +msgstr "Symbole personalisieren" + +#: ../src/PaymentMethods/Creditcard.php:99 +msgid "Enable Icons Selector" +msgstr "Symbolauswahl aktivieren" + +#: ../src/PaymentMethods/Creditcard.php:100 +msgid "Show customized creditcard icons on checkout page" +msgstr "Personalisierte Kreditkartensymbole auf der Checkout-Seite anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:108 +msgid "Show American Express Icon" +msgstr "American-Express-Symbol anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:113 +msgid "Show Carta Si Icon" +msgstr "Carta-Si-Symbol anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:118 +msgid "Show Carte Bancaire Icon" +msgstr "Carte-Bancaire-Symbol anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:123 +msgid "Show Maestro Icon" +msgstr "Maestro-Symbol anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:128 +msgid "Show Mastercard Icon" +msgstr "Mastercard-Symbol anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:133 +msgid "Show Visa Icon" +msgstr "Visa-Symbol anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:138 +msgid "Show VPay Icon" +msgstr "VPay-Symbol anzeigen" + +#: ../src/PaymentMethods/Directdebit.php:13 +msgid "SEPA Direct Debit" +msgstr "SEPA-Direktmandat" + +#: ../src/PaymentMethods/Directdebit.php:14 +msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscriptions, and will not be shown in the WooCommerce checkout for regular payments! You also need to enable iDEAL and/or other \"first\" payment methods if you want to use SEPA Direct Debit." +msgstr "Für wiederkehrende Zahlungen mit WooCommerce Subscriptions werden SEPA-Direktmandate verwendet. Diese werden nicht im WooCommerce-Bezahlvorgang für reguläre Zahlungen angezeigt. Du musst außerdem iDEAL und/oder weitere „erste“ Bezahlmethoden aktivieren, wenn du SEPA-Direktmandate verwenden möchtest." + +#: ../src/PaymentMethods/Eps.php:13 +msgid "EPS" +msgstr "EPS" + +#: ../src/PaymentMethods/Giftcard.php:30 +msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency" +msgid "Mollie - Giftcard details: %1$s %2$s %3$s." +msgstr "Details zum Mollie-Gutschein: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:42 +msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency" +msgid " Remainder: %1$s %2$s %3$s." +msgstr " Verbleibend: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:60 +msgid "Gift cards" +msgstr "Geschenkkarten" + +#: ../src/PaymentMethods/Giftcard.php:62, ../src/PaymentMethods/Giftcard.php:105 +msgid "Select your gift card" +msgstr "Wähle deine Geschenkkarte aus" + +#: ../src/PaymentMethods/Giftcard.php:78 +msgid "Show gift cards dropdown" +msgstr "Drop-down-Liste für Geschenkkarten anzeigen" + +#: ../src/PaymentMethods/Giftcard.php:84 +msgid "If you disable this, a dropdown with various gift cards will not be shown in the WooCommerce checkout, so users will select a gift card on the Mollie payment page after checkout." +msgstr "Wenn du die Option deaktivieren, wird die Drop-down-Liste mit verschiedenen Geschenkkarten nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-Bezahlvorgang eine Geschenkkarte aus." + +#: ../src/PaymentMethods/Giftcard.php:93, ../src/PaymentMethods/Ideal.php:46, ../src/PaymentMethods/Kbc.php:48 +msgid "Issuers empty option" +msgstr "Kartenaussteller-Option leer" + +#: ../src/PaymentMethods/Giftcard.php:99 +msgid "This text will be displayed as the first option in the gift card dropdown, but only if the above 'Show gift cards dropdown' is enabled." +msgstr "Dieser Text wird als erste Option in der Drop-down-Liste für Geschenkkarten angezeigt, wenn „Drop-down-Liste für Geschenkkarten anzeigen“ weiter oben aktiviert wurde." + +#: ../src/PaymentMethods/Giropay.php:13 +msgid "Giropay" +msgstr "Giropay" + +#: ../src/PaymentMethods/Ideal.php:15 +msgid "iDEAL" +msgstr "iDEAL" + +#: ../src/PaymentMethods/Ideal.php:17, ../src/PaymentMethods/Ideal.php:55, ../src/PaymentMethods/Kbc.php:16, ../src/PaymentMethods/Kbc.php:60 +msgid "Select your bank" +msgstr "Wähle deine Bank aus" + +#: ../src/PaymentMethods/Ideal.php:34 +msgid "Show iDEAL banks dropdown" +msgstr "Drop-down-Liste für iDEAL-Banken anzeigen" + +#: ../src/PaymentMethods/Ideal.php:37 +msgid "If you disable this, a dropdown with various iDEAL banks will not be shown in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie payment page after checkout." +msgstr "Wenn du die Option deaktivierst, wird die Drop-down-Liste mit verschiedenen iDEAL-Banken nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-Bezahlvorgang eine iDEAL-Bank aus." + +#: ../src/PaymentMethods/Ideal.php:49 +msgid "This text will be displayed as the first option in the iDEAL issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above 'Show iDEAL banks dropdown' is enabled." +msgstr "Dieser Text wird als erste Option in der Drop-down-Liste für iDEAL-Kartenaussteller angezeigt. Erfolgt keine Eingabe, wird „Wähle deine Bank aus“ angezeigt. Nur wenn die obere Option „Drop-down-Liste für iDEAL-Banken anzeigen“ aktiviert wurde." + +#: ../src/PaymentMethods/In3.php:13 +msgid "in3" +msgstr "in3" + +#: ../src/PaymentMethods/In3.php:15 +msgid "Pay in 3 instalments, 0% interest" +msgstr "Zahlung in 3 Raten, 0 % Zinsen" + +#: ../src/PaymentMethods/Kbc.php:14 +msgid "KBC/CBC Payment Button" +msgstr "KBC/CBC-Zahlungsbutton" + +#: ../src/PaymentMethods/Kbc.php:33 +msgid "Show KBC/CBC banks dropdown" +msgstr "Drop-down-Liste für KBC/CBC-Banken anzeigen" + +#: ../src/PaymentMethods/Kbc.php:39 +msgid "If you disable this, a dropdown with various KBC/CBC banks will not be shown in the WooCommerce checkout, so users will select a KBC/CBC bank on the Mollie payment page after checkout." +msgstr "Wenn du die Option deaktivierst, wird die Drop-down-Liste mit verschiedenen KBC/CBC-Banken nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-Bezahlvorgang eine KBC/CBC-Bank aus." + +#: ../src/PaymentMethods/Kbc.php:54 +msgid "This text will be displayed as the first option in the KBC/CBC issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above ''Show KBC/CBC banks dropdown' is enabled." +msgstr "Dieser Text wird als erste Option in der Drop-down-Liste für KBC/CBC-Kartenaussteller angezeigt. Erfolgt keine Eingabe, wird „Wähle deine Bank aus“ angezeigt. Nur wenn die obere Option „Drop-down-Liste für KBC/CBC-Banken anzeigen“ aktiviert wurde." + +#: ../src/PaymentMethods/Klarnapaylater.php:13 +msgid "Klarna Pay later" +msgstr "Klarna Pay later" + +#: ../src/PaymentMethods/Klarnapaylater.php:14, ../src/PaymentMethods/Klarnapaynow.php:14, ../src/PaymentMethods/Klarnasliceit.php:15 +msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required." +msgstr "Um Bezahlungen über Klarna zu akzeptieren, müssen alle standardmäßigen Felder im WooCommerce-Bezahlvorgang aktiviert und verpflichtend sein." + +#: ../src/PaymentMethods/Klarnapaynow.php:13 +msgid "Klarna Pay Now" +msgstr "Klarna Pay Now" + +#: ../src/PaymentMethods/Klarnasliceit.php:14 +msgid "Klarna Slice it" +msgstr "Klarna Slice it" + +#: ../src/PaymentMethods/Mybank.php:14 +msgid "MyBank" +msgstr "MyBank" + +#: ../src/PaymentMethods/Mybank.php:15 +msgid "To accept payments via MyBank" +msgstr "Um Bezahlungen über MyBank zu akzeptieren" + +#: ../src/PaymentMethods/Paypal.php:14 +msgid "PayPal" +msgstr "PayPal" + +#: ../src/PaymentMethods/Paypal.php:34 +msgid "Display on cart page" +msgstr "Im Einkaufswagen anzeigen" + +#: ../src/PaymentMethods/Paypal.php:38 +msgid "Enable the PayPal button to be used in the cart page." +msgstr "Aktiviere die PayPal-Schaltfläche, die im Einkaufswagen verwendet werden soll." + +#: ../src/PaymentMethods/Paypal.php:46 +msgid "Display on product page" +msgstr "Auf der Produktseite anzeigen" + +#: ../src/PaymentMethods/Paypal.php:50 +msgid "Enable the PayPal button to be used in the product page." +msgstr "Aktiviere die PayPal-Schaltfläche, die auf der Produktseite verwendet werden soll." + +#: ../src/PaymentMethods/Paypal.php:59 +msgctxt "Mollie PayPal Button Settings" +msgid "Button text language and color" +msgstr "Sprache und Farbe des Schaltflächentextes" + +#: ../src/PaymentMethods/Paypal.php:60 +msgctxt "Mollie PayPal Button Settings" +msgid "Select the text and the colour of the button." +msgstr "Wähle Text und Farbe der Schaltfläche aus." + +#: ../src/PaymentMethods/Paypal.php:70 +msgid "Minimum amount to display button" +msgstr "Mindestbetrag zur Anzeige der Schaltfläche" + +#: ../src/PaymentMethods/Paypal.php:74 +msgid "If the product or the cart total amount is under this number, then the button will not show up." +msgstr "Wenn der Betrag des Produkts oder des Einkaufswagens unter dieser Zahl liegt, wird die Schaltfläche nicht angezeigt." + +#: ../src/PaymentMethods/Paypal.php:89 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill blue" +msgstr "Englisch -- Kauf über PayPal - Klein und rund, blau" + +#: ../src/PaymentMethods/Paypal.php:90 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded blue" +msgstr "Englisch -- Kauf über PayPal - Abgerundet, blau" + +#: ../src/PaymentMethods/Paypal.php:91 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill golden" +msgstr "Englisch -- Kauf über PayPal - Klein und rund, goldfarben" + +#: ../src/PaymentMethods/Paypal.php:92 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded golden" +msgstr "Englisch -- Kauf über PayPal - Abgerundet, goldfarben" + +#: ../src/PaymentMethods/Paypal.php:93 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill gray" +msgstr "Englisch -- Kauf über PayPal - Klein und rund, grau" + +#: ../src/PaymentMethods/Paypal.php:94 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded gray" +msgstr "Englisch -- Kauf über PayPal - Abgerundet, grau" + +#: ../src/PaymentMethods/Paypal.php:95 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill white" +msgstr "Englisch -- Kauf über PayPal - Klein und rund, weiß" + +#: ../src/PaymentMethods/Paypal.php:96 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded white" +msgstr "Englisch -- Kauf über PayPal - Abgerundet, weiß" + +#: ../src/PaymentMethods/Paypal.php:97 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill black" +msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, schwarz" + +#: ../src/PaymentMethods/Paypal.php:98 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded black" +msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, schwarz" + +#: ../src/PaymentMethods/Paypal.php:99 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill blue" +msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, blau" + +#: ../src/PaymentMethods/Paypal.php:100 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded blue" +msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, blau" + +#: ../src/PaymentMethods/Paypal.php:101 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill golden" +msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, goldfarben" + +#: ../src/PaymentMethods/Paypal.php:102 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded golden" +msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, goldfarben" + +#: ../src/PaymentMethods/Paypal.php:103 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill gray" +msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, grau" + +#: ../src/PaymentMethods/Paypal.php:104 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded gray" +msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, grau" + +#: ../src/PaymentMethods/Paypal.php:105 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill white" +msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, weiß" + +#: ../src/PaymentMethods/Paypal.php:106 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded white" +msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, weiß" + +#: ../src/PaymentMethods/Paypal.php:107 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill black" +msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, schwarz" + +#: ../src/PaymentMethods/Paypal.php:108 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded black" +msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, schwarz" + +#: ../src/PaymentMethods/Paypal.php:109 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill blue" +msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, blau" + +#: ../src/PaymentMethods/Paypal.php:110 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded blue" +msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, blau" + +#: ../src/PaymentMethods/Paypal.php:111 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill golden" +msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, goldfarben" + +#: ../src/PaymentMethods/Paypal.php:112 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded golden" +msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, goldfarben" + +#: ../src/PaymentMethods/Paypal.php:113 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill gray" +msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, grau" + +#: ../src/PaymentMethods/Paypal.php:114 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded gray" +msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, grau" + +#: ../src/PaymentMethods/Paypal.php:115 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill white" +msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, weiß" + +#: ../src/PaymentMethods/Paypal.php:116 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded white" +msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, weiß" + +#: ../src/PaymentMethods/Paypal.php:117 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill black" +msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, schwarz" + +#: ../src/PaymentMethods/Paypal.php:118 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded black" +msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, schwarz" + +#: ../src/PaymentMethods/Paypal.php:119 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill blue" +msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, blau" + +#: ../src/PaymentMethods/Paypal.php:120 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded blue" +msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, blau" + +#: ../src/PaymentMethods/Paypal.php:121 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill golden" msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, goldfarben" -#: build/inc/settings/mollie_paypal_button_enabler.php:87 -#: inc/settings/mollie_paypal_button_enabler.php:87 +#: ../src/PaymentMethods/Paypal.php:122 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded golden" msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, goldfarben" -#: build/inc/settings/mollie_paypal_button_enabler.php:88 -#: inc/settings/mollie_paypal_button_enabler.php:88 +#: ../src/PaymentMethods/Paypal.php:123 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill gray" msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, grau" -#: build/inc/settings/mollie_paypal_button_enabler.php:89 -#: inc/settings/mollie_paypal_button_enabler.php:89 +#: ../src/PaymentMethods/Paypal.php:124 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded gray" msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, grau" -#: build/inc/settings/mollie_paypal_button_enabler.php:90 -#: inc/settings/mollie_paypal_button_enabler.php:90 +#: ../src/PaymentMethods/Paypal.php:125 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill white" msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, weiß" -#: build/inc/settings/mollie_paypal_button_enabler.php:91 -#: inc/settings/mollie_paypal_button_enabler.php:91 +#: ../src/PaymentMethods/Paypal.php:126 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded white" msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, weiß" -#: build/inc/settings/mollie_paypal_button_enabler.php:92 -#: inc/settings/mollie_paypal_button_enabler.php:92 +#: ../src/PaymentMethods/Paypal.php:127 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill black" msgstr "Deutsch -- Kauf über PayPal - Klein und rund, schwarz" -#: build/inc/settings/mollie_paypal_button_enabler.php:93 -#: inc/settings/mollie_paypal_button_enabler.php:93 +#: ../src/PaymentMethods/Paypal.php:128 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded black" msgstr "Deutsch -- Kauf über PayPal - Abgerundet, schwarz" -#: build/inc/settings/mollie_paypal_button_enabler.php:94 -#: inc/settings/mollie_paypal_button_enabler.php:94 +#: ../src/PaymentMethods/Paypal.php:129 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill blue" msgstr "Deutsch -- Kauf über PayPal - Klein und rund, blau" -#: build/inc/settings/mollie_paypal_button_enabler.php:95 -#: inc/settings/mollie_paypal_button_enabler.php:95 +#: ../src/PaymentMethods/Paypal.php:130 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded blue" msgstr "Deutsch -- Kauf über PayPal - Abgerundet, blau" -#: build/inc/settings/mollie_paypal_button_enabler.php:96 -#: inc/settings/mollie_paypal_button_enabler.php:96 +#: ../src/PaymentMethods/Paypal.php:131 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill golden" msgstr "Deutsch -- Kauf über PayPal - Klein und rund, goldfarben" -#: build/inc/settings/mollie_paypal_button_enabler.php:97 -#: inc/settings/mollie_paypal_button_enabler.php:97 +#: ../src/PaymentMethods/Paypal.php:132 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded golden" msgstr "Deutsch -- Kauf über PayPal - Abgerundet, goldfarben" -#: build/inc/settings/mollie_paypal_button_enabler.php:98 -#: inc/settings/mollie_paypal_button_enabler.php:98 +#: ../src/PaymentMethods/Paypal.php:133 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill gray" msgstr "Deutsch -- Kauf über PayPal - Klein und rund, grau" -#: build/inc/settings/mollie_paypal_button_enabler.php:99 -#: inc/settings/mollie_paypal_button_enabler.php:99 +#: ../src/PaymentMethods/Paypal.php:134 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded gray" msgstr "Deutsch -- Kauf über PayPal - Abgerundet, grau" -#: build/inc/settings/mollie_paypal_button_enabler.php:100 -#: inc/settings/mollie_paypal_button_enabler.php:100 +#: ../src/PaymentMethods/Paypal.php:135 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill white" msgstr "Deutsch -- Kauf über PayPal - Klein und rund, weiß" -#: build/inc/settings/mollie_paypal_button_enabler.php:101 -#: inc/settings/mollie_paypal_button_enabler.php:101 +#: ../src/PaymentMethods/Paypal.php:136 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded white" msgstr "Deutsch -- Kauf über PayPal - Abgerundet, weiß" -#: build/inc/settings/mollie_paypal_button_enabler.php:102 -#: inc/settings/mollie_paypal_button_enabler.php:102 +#: ../src/PaymentMethods/Paypal.php:137 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill black" msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, schwarz" -#: build/inc/settings/mollie_paypal_button_enabler.php:103 -#: inc/settings/mollie_paypal_button_enabler.php:103 +#: ../src/PaymentMethods/Paypal.php:138 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded black" msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, schwarz" -#: build/inc/settings/mollie_paypal_button_enabler.php:104 -#: inc/settings/mollie_paypal_button_enabler.php:104 +#: ../src/PaymentMethods/Paypal.php:139 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill blue" msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, blau" -#: build/inc/settings/mollie_paypal_button_enabler.php:105 -#: inc/settings/mollie_paypal_button_enabler.php:105 +#: ../src/PaymentMethods/Paypal.php:140 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded blue" msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, blau" -#: build/inc/settings/mollie_paypal_button_enabler.php:106 -#: inc/settings/mollie_paypal_button_enabler.php:106 +#: ../src/PaymentMethods/Paypal.php:141 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill golden" msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, goldfarben" -#: build/inc/settings/mollie_paypal_button_enabler.php:107 -#: inc/settings/mollie_paypal_button_enabler.php:107 +#: ../src/PaymentMethods/Paypal.php:142 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded golden" msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, goldfarben" -#: build/inc/settings/mollie_paypal_button_enabler.php:108 -#: inc/settings/mollie_paypal_button_enabler.php:108 +#: ../src/PaymentMethods/Paypal.php:143 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill gray" msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, grau" -#: build/inc/settings/mollie_paypal_button_enabler.php:109 -#: inc/settings/mollie_paypal_button_enabler.php:109 +#: ../src/PaymentMethods/Paypal.php:144 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded gray" msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, grau" -#: build/inc/settings/mollie_paypal_button_enabler.php:110 -#: inc/settings/mollie_paypal_button_enabler.php:110 +#: ../src/PaymentMethods/Paypal.php:145 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill white" msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, weiß" -#: build/inc/settings/mollie_paypal_button_enabler.php:111 -#: inc/settings/mollie_paypal_button_enabler.php:111 +#: ../src/PaymentMethods/Paypal.php:146 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded white" msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, weiß" -#: build/inc/settings/mollie_paypal_button_enabler.php:112 -#: inc/settings/mollie_paypal_button_enabler.php:112 +#: ../src/PaymentMethods/Paypal.php:147 msgctxt "Mollie PayPal button Settings" msgid "French -- Buy with PayPal - Gold" msgstr "Französisch -- Kauf über PayPal - Gold" -#: build/inc/settings/mollie_paypal_button_enabler.php:113 -#: inc/settings/mollie_paypal_button_enabler.php:113 +#: ../src/PaymentMethods/Paypal.php:148 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Gold" msgstr "Französisch -- Bezahlung mit PayPal - Gold" -#: build/inc/settings/mollie_paypal_button_enabler.php:114 -#: inc/settings/mollie_paypal_button_enabler.php:114 +#: ../src/PaymentMethods/Paypal.php:149 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Silver" msgstr "Französisch -- Bezahlung mit PayPal - Silber" -#: build/inc/settings/mollie_paypal_button_enabler.php:115 -#: inc/settings/mollie_paypal_button_enabler.php:115 +#: ../src/PaymentMethods/Paypal.php:150 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Buy with PayPal - Gold" msgstr "Polnisch -- Kauf über PayPal - Gold" -#: build/inc/settings/mollie_paypal_button_enabler.php:116 -#: inc/settings/mollie_paypal_button_enabler.php:116 +#: ../src/PaymentMethods/Paypal.php:151 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Checkout with PayPal - Gold" msgstr "Polnisch -- Bezahlung mit PayPal - Gold" -#: build/inc/settings/mollie_paypal_button_enabler.php:117 -#: inc/settings/mollie_paypal_button_enabler.php:117 +#: ../src/PaymentMethods/Paypal.php:152 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Checkout with PayPal - Silver" msgstr "Polnisch -- Bezahlung mit PayPal - Silber" -#: build/inc/settings/mollie_paypal_button_enabler.php:122 -#: inc/settings/mollie_paypal_button_enabler.php:122 -msgid "Minimum amount to display button" -msgstr "Mindestbetrag zur Anzeige der Schaltfläche" - -#: build/inc/settings/mollie_paypal_button_enabler.php:126 -#: inc/settings/mollie_paypal_button_enabler.php:126 -msgid "" -"If the product or the cart total amount is under this number, then the " -"button will not show up." -msgstr "" -"Wenn der Betrag des Produkts oder des Einkaufswagens unter dieser Zahl " -"liegt, wird die Schaltfläche nicht angezeigt." - -#: build/mollie-payments-for-woocommerce.php:90 -#: mollie-payments-for-woocommerce.php:90 -msgid "" -"%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set " -"your API keys here%4$s." -msgstr "" -"%1$sMollie-Zahlungen für WooCommerce Fehlende API-Schlüssel%2$s Bitte%3$s " -"richte deine API-Schlüssel hier ein%4$s." - -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: build/src/Mollie/WC/Gateway/Abstract.php:685 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: src/Mollie/WC/Gateway/Abstract.php:685 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -msgid "Could not create %s payment." -msgstr "%s-Zahlung konnte nicht erstellt werden." - -#: build/src/Mollie/WC/Gateway/Abstract.php:138 -#: src/Mollie/WC/Gateway/Abstract.php:138 -msgid "No custom logo selected" -msgstr "Kein eigenes Logo ausgewählt" - -#: build/src/Mollie/WC/Gateway/Abstract.php:221 -#: src/Mollie/WC/Gateway/Abstract.php:221 -msgid "Gateway Disabled" -msgstr "Gateway deaktiviert" - -#: build/src/Mollie/WC/Gateway/Abstract.php:244 -#: src/Mollie/WC/Gateway/Abstract.php:244 -msgid "Return to payments" -msgstr "Zurück zu den Zahlungen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:260 -#: build/src/Mollie/WC/Helper/Settings.php:114 -#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114 -msgid "Sell to specific countries" -msgstr "In bestimmten Ländern verkaufen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:272 -#: src/Mollie/WC/Gateway/Abstract.php:272 -msgid "Choose countries…" -msgstr "Länder wählen…" - -#: build/src/Mollie/WC/Gateway/Abstract.php:273 -#: src/Mollie/WC/Gateway/Abstract.php:273 -msgid "Country" -msgstr "Land" - -#: build/src/Mollie/WC/Gateway/Abstract.php:282 -#: src/Mollie/WC/Gateway/Abstract.php:282 -msgid "Select all" -msgstr "Alle auswählen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:283 -#: src/Mollie/WC/Gateway/Abstract.php:283 -msgid "Select none" -msgstr "Auswahl aufheben" - -#: build/src/Mollie/WC/Gateway/Abstract.php:337 -#: build/src/Mollie/WC/Helper/Settings.php:558 -#: src/Mollie/WC/Gateway/Abstract.php:337 src/Mollie/WC/Helper/Settings.php:558 -msgid "Test mode enabled." -msgstr "Testmodus aktiviert." - -#. translators: The surrounding %s's Will be replaced by a link to the global setting page -#: build/src/Mollie/WC/Gateway/Abstract.php:339 -#: src/Mollie/WC/Gateway/Abstract.php:339 -msgid "No API key provided. Please %sset you Mollie API key%s first." -msgstr "" -"Kein API-Schlüssel vorgegeben. Bitte %slege deinen Mollie-API-Schlüssel fest" -"%s." - -#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Gateway/Abstract.php:351 -#: src/Mollie/WC/Gateway/Abstract.php:351 -msgid "" -"%s not enabled in your Mollie profile. You can enable it by editing your " -"%sMollie profile%s." -msgstr "" -"%s ist nicht in deinem Mollie-Profil aktiviert. Du kannst es aktivieren, " -"indem du dein %sMollie-Profil%s bearbeitest." - -#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies -#: build/src/Mollie/WC/Gateway/Abstract.php:363 -#: src/Mollie/WC/Gateway/Abstract.php:363 -msgid "" -"Current shop currency %s not supported by Mollie. Read more about " -"%ssupported currencies and payment methods.%s " -msgstr "" -"Die aktuelle Shopwährung %s wird von Mollie nicht unterstützt. Mehr " -"Informationen zu %sunterstützten Währungen und Bezahlungsmethoden.%s " - -#: build/src/Mollie/WC/Gateway/Abstract.php:525 -#: src/Mollie/WC/Gateway/Abstract.php:525 -msgid "Could not load order %s" -msgstr "Bestellung %s konnte nicht geladen werden" - -#: build/src/Mollie/WC/Gateway/Abstract.php:577 -#: src/Mollie/WC/Gateway/Abstract.php:577 -msgid "" -"Order completed internally because of an existing valid mandate at Mollie." -msgstr "" -"Die Bestellung wurde wegen eines bestehenden, gültigen Mandats bei Mollie " -"intern abgewickelt." - -#: build/src/Mollie/WC/Gateway/Abstract.php:588 -#: src/Mollie/WC/Gateway/Abstract.php:588 -msgid "" -"Subscription switch failed, no valid mandate found. Place a completely new " -"order to change your subscription." -msgstr "" -"Abonnement-Umstellung fehlgeschlagen, kein valides Mandat gefunden. Leite " -"einen neuen Bestellvorgang ein, um dein Abonnement zu ändern." - -#: build/src/Mollie/WC/Gateway/Abstract.php:589 -#: src/Mollie/WC/Gateway/Abstract.php:589 -msgid "Failed switching subscriptions, no valid mandate." -msgstr "Abonnement-Wechsel fehlgeschlagen, kein valides Mandat." - -#: build/src/Mollie/WC/Gateway/Abstract.php:658 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:413 -#: src/Mollie/WC/Gateway/Abstract.php:658 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:413 -msgid "Awaiting payment confirmation." -msgstr "Die Zahlungsbestätigung wird erwartet." - -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:668 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:420 -#: src/Mollie/WC/Gateway/Abstract.php:668 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:420 -msgid "%s payment started (%s)." -msgstr "%s-Bezahlung gestartet (%s)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:670 -#: build/src/Mollie/WC/Gateway/Abstract.php:897 -#: build/src/Mollie/WC/Gateway/Abstract.php:1181 -#: build/src/Mollie/WC/Gateway/Abstract.php:1243 -#: build/src/Mollie/WC/Gateway/Abstract.php:1618 -#: build/src/Mollie/WC/Gateway/Abstract.php:2142 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: build/src/Mollie/WC/Payment/Object.php:608 -#: build/src/Mollie/WC/Payment/Object.php:642 -#: build/src/Mollie/WC/Payment/Order.php:264 -#: build/src/Mollie/WC/Payment/Order.php:316 -#: build/src/Mollie/WC/Payment/Order.php:363 -#: build/src/Mollie/WC/Payment/Order.php:446 -#: build/src/Mollie/WC/Payment/Order.php:511 -#: build/src/Mollie/WC/Payment/Order.php:936 -#: build/src/Mollie/WC/Payment/Payment.php:249 -#: build/src/Mollie/WC/Payment/Payment.php:336 -#: build/src/Mollie/WC/Payment/Payment.php:406 -#: build/src/Mollie/WC/Payment/Payment.php:429 -#: src/Mollie/WC/Gateway/Abstract.php:670 -#: src/Mollie/WC/Gateway/Abstract.php:897 -#: src/Mollie/WC/Gateway/Abstract.php:1181 -#: src/Mollie/WC/Gateway/Abstract.php:1243 -#: src/Mollie/WC/Gateway/Abstract.php:1618 -#: src/Mollie/WC/Gateway/Abstract.php:2142 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642 -#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316 -#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446 -#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936 -#: src/Mollie/WC/Payment/Payment.php:249 src/Mollie/WC/Payment/Payment.php:336 -#: src/Mollie/WC/Payment/Payment.php:406 src/Mollie/WC/Payment/Payment.php:429 -msgid "test mode" -msgstr "Testmodus" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:894 -#: src/Mollie/WC/Gateway/Abstract.php:894 -msgid "%s payment %s (%s), not processed." -msgstr "%s-Zahlung %s (%s), nicht verarbeitet." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1008 -#: src/Mollie/WC/Gateway/Abstract.php:1008 -msgid "" -"New refund %s processed in Mollie Dashboard! Order note added, but order not " -"updated." -msgstr "" -"Neue Rückerstattung %s im Mollie-Dashboard verarbeitet. Bestellungsnotiz " -"hinzugefügt, Bestellung jedoch nicht aktualisiert." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1144 -#: src/Mollie/WC/Gateway/Abstract.php:1144 -msgid "New chargeback %s processed! Order note and order status updated." -msgstr "Neue Rückbuchung %s erfasst. Bestellungsnotiz und Status aktualisiert." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1176 -#: src/Mollie/WC/Gateway/Abstract.php:1176 -msgid "" -"%s payment charged back via Mollie (%s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%s-Bezahlung über Mollie zurückgebucht (%s). Du musst die Zahlung händisch " -"überprüfen und, falls verwendet, die Produktbestände anpassen." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1237 -#: src/Mollie/WC/Gateway/Abstract.php:1237 -msgid "" -"%s payment charged back via Mollie (%s). Subscription status updated, please " -"review (and adjust product stocks if you use it)." -msgstr "" -"%s-Bezahlung über Mollie zurückgebucht (%s). Abonnementstatus aktualisiert, " -"bitte prüfen (und, falls verwendet, Produktbestände anpassen)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1314 -#: src/Mollie/WC/Gateway/Abstract.php:1314 -msgid "" -"You have cancelled your payment. Please complete your order with a different " -"payment method." -msgstr "" -"Du hast deine Zahlung storniert. Vervollständige deine Bestellung bitte mit " -"einer anderen Zahlungsmethode." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1328 -#: build/src/Mollie/WC/Gateway/Abstract.php:1337 -#: src/Mollie/WC/Gateway/Abstract.php:1328 -#: src/Mollie/WC/Gateway/Abstract.php:1337 -msgid "" -"Your payment was not successful. Please complete your order with a different " -"payment method." -msgstr "" -"Deine Zahlung war nicht erfolgreich. Vervollständige deine Bestellung bitte " -"mit einer anderen Zahlungsmethode." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1529 -#: src/Mollie/WC/Gateway/Abstract.php:1529 -msgid "We have not received a definite payment status." -msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1534 -#: src/Mollie/WC/Gateway/Abstract.php:1534 -msgid "" -"We have not received a definite payment status. You will receive an email as " -"soon as we receive a confirmation of the bank/merchant." -msgstr "" -"Wir haben keinen endgültigen Zahlungsstatus erhalten. Du erhältst eine E-" -"Mail, sobald wir eine Bestätigung der Bank oder des Händlers erhalten." - -#. translators: Placeholder 1: payment method -#: build/src/Mollie/WC/Gateway/Abstract.php:1541 -#: src/Mollie/WC/Gateway/Abstract.php:1541 -msgid "Payment completed with %s" -msgstr "Zahlung durch %s erfolgt" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1589 -#: src/Mollie/WC/Gateway/Abstract.php:1589 -msgid "Order cancelled" -msgstr "Bestellung storniert" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1616 -#: src/Mollie/WC/Gateway/Abstract.php:1616 -msgid "" -"%s payment still pending (%s) but customer already returned to the store. " -"Status should be updated automatically in the future, if it doesn't this " -"might indicate a communication issue between the site and Mollie." -msgstr "" -"Eine %s-Bezahlung ist noch offen (%s), der Kunde ist aber bereits zum Shop " -"zurückgekehrt. Der Status sollte zukünftig automatisch aktualisiert werden. " -"Falls dies nicht der Fall ist, liegt möglicherweise ein " -"Kommunikationsproblem zwischen der Seite und Mollie vor." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1625 -#: src/Mollie/WC/Gateway/Abstract.php:1625 -msgid ", payment pending." -msgstr ", Zahlung ausstehend" +#: ../src/PaymentMethods/Paysafecard.php:14 +msgid "paysafecard" +msgstr "paysafecard" -#: build/src/Mollie/WC/Gateway/Abstract.php:1652 -#: src/Mollie/WC/Gateway/Abstract.php:1652 -msgid "Your order has been cancelled." -msgstr "Deine Bestellung wurde storniert." +#: ../src/PaymentMethods/Przelewy24.php:14 +msgid "Przelewy24" +msgstr "Przelewy24" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:2129 -#: src/Mollie/WC/Gateway/Abstract.php:2129 -msgid "" -"%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%1$s-Zahlung %2$s über Mollie fehlgeschlagen (%3$s %4$s). Du musst die " -"Zahlung händisch überprüfen und, falls verwendet, die Produktbestände " -"anpassen." - -#: build/src/Mollie/WC/Gateway/Abstract.php:2166 -#: src/Mollie/WC/Gateway/Abstract.php:2166 -msgctxt "" -"Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid "Mollie - Giftcard details: %1$s %2$s %3$s." -msgstr "Details zum Mollie-Gutschein: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Przelewy24.php:15 +msgid "To accept payments via Przelewy24, a customer email is required for every payment." +msgstr "Um Bezahlungen über Przelewy24 zu akzeptieren, wird für jede Bezahlung eine Kunden-E-Mail benötigt." -#: build/src/Mollie/WC/Gateway/Abstract.php:2178 -#: src/Mollie/WC/Gateway/Abstract.php:2178 -msgctxt "" -"Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid " Remainder: %1$s %2$s %3$s." -msgstr " Verbleibend: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Sofort.php:14 +msgid "SOFORT Banking" +msgstr "SOFORT-Banking" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. -#: build/src/Mollie/WC/Gateway/Abstract.php:2580 -#: src/Mollie/WC/Gateway/Abstract.php:2580 -msgid " + %1$s %2$s fee might apply" -msgstr "Möglicherweise fällt eine + %1$s %2$s-Gebühr an" +#: ../src/PaymentMethods/Voucher.php:35 +msgid "Voucher" +msgstr "Gutschein" -#. translators: Placeholder 1: Fee amount tag. -#: build/src/Mollie/WC/Gateway/Abstract.php:2590 -#: src/Mollie/WC/Gateway/Abstract.php:2590 -msgid " + %1$s%% fee might apply" -msgstr "Möglicherweise fällt eine + %1$s%%-Gebühr an" +#: ../src/PaymentMethods/Voucher.php:54, ../src/Gateway/Voucher/VoucherModule.php:220 +msgid "Select the default products category" +msgstr "Wähle die Standard-Produktkategorie" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. -#: build/src/Mollie/WC/Gateway/Abstract.php:2607 -#: src/Mollie/WC/Gateway/Abstract.php:2607 -msgid " + %1$s %2$s + %3$s%% fee might apply" -msgstr "Möglicherweise fällt eine + %1$s %2$s + %3$s%%-Gebühr an" +#: ../src/PaymentMethods/Voucher.php:57 +msgid "No category" +msgstr "Keine Kategorie" -#: build/src/Mollie/WC/Gateway/Abstract.php:2646 -#: src/Mollie/WC/Gateway/Abstract.php:2646 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must " -"be under 500kb." -msgstr "" -"%1$sMollie-Zahlungen für WooCommerce%2$s Datei konnte nicht hochgeladen " -"werden. Die Dateigröße darf nicht mehr als 500 KB betragen." +#: ../src/PaymentMethods/Voucher.php:58, ../src/Gateway/Voucher/VoucherModule.php:113, ../src/Gateway/Voucher/VoucherModule.php:147, ../src/Gateway/Voucher/VoucherModule.php:178, ../src/Gateway/Voucher/VoucherModule.php:233, ../src/Gateway/Voucher/VoucherModule.php:293 +msgid "Meal" +msgstr "Essen" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -msgid "Order completed using %1$s payment (%2$s)." -msgstr "Vorgang über %1$s-Bezahlung (%2$s) erfolgt." +#: ../src/PaymentMethods/Voucher.php:59, ../src/Gateway/Voucher/VoucherModule.php:114, ../src/Gateway/Voucher/VoucherModule.php:148, ../src/Gateway/Voucher/VoucherModule.php:181, ../src/Gateway/Voucher/VoucherModule.php:234, ../src/Gateway/Voucher/VoucherModule.php:294 +msgid "Eco" +msgstr "Öko" -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:165 -msgid "" -"Updated subscription from 'On hold' to 'Active' until payment fails, because " -"a SEPA Direct Debit payment takes some time to process." -msgstr "" -"Das Abonnement wird von ‚ausstehend‘ auf ‚aktiv‘ aktualisiert, bis die " -"Zahlung fehlschlägt, da SEPA-Direktmandate etwas Zeit in Anspruch nehmen." +#: ../src/PaymentMethods/Voucher.php:60, ../src/Gateway/Voucher/VoucherModule.php:115, ../src/Gateway/Voucher/VoucherModule.php:149, ../src/Gateway/Voucher/VoucherModule.php:184, ../src/Gateway/Voucher/VoucherModule.php:235, ../src/Gateway/Voucher/VoucherModule.php:295 +msgid "Gift" +msgstr "Geschenk" -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:313 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:313 -msgid "Could not create %s renewal payment." -msgstr "Erneute %s-Zahlung konnte nicht erstellt werden." +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/PaymentMethods/Voucher.php:64 +msgid "In order to process it, all products in the order must have a category. This selector will assign the default category for the shop products" +msgstr "Um weiterverarbeitet werden zu können, müssen alle Produkte der Bestellung eine Kategorie haben. Dieser Selektor weist den Produkten im Shop die Standardkategorie zu" -#: build/src/Mollie/WC/Gateway/Applepay.php:48 -#: src/Mollie/WC/Gateway/Applepay.php:48 -msgid "Apple Pay" -msgstr "Apple Pay" +#: ../src/SDK/Api.php:49 +msgid "Invalid API key(s). Get them on the %1$sDevelopers page in the Mollie dashboard%2$s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters." +msgstr "Invalide(r) API-Schlüssel. Du erhältst die API-Schlüssel über die %1$s-Entwicklerseite im mobilen Dashboard%2$s. API-Schlüssel müssen mit ‚live_‘ oder ‚test_‘ beginnen, mindestens 30 Zeichen enthalten und dürfen keine Sonderzeichen enthalten." -#: build/src/Mollie/WC/Gateway/Applepay.php:56 -#: src/Mollie/WC/Gateway/Applepay.php:56 -msgid "To accept payments via Apple Pay" -msgstr "Um Bezahlungen über Apple Pay zu akzeptieren" +#: ../src/SDK/Api.php:47 +msgid "No API key provided. Please set your Mollie API keys below." +msgstr "Kein API-Schlüssel vorgegeben. Lege deine Mollie-API-Schlüssel unten fest." -#: build/src/Mollie/WC/Gateway/Bancontact.php:29 -#: src/Mollie/WC/Gateway/Bancontact.php:29 -msgid "Bancontact" -msgstr "Bancontact" +#: ../src/Settings/Settings.php:174 +msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb." +msgstr "%1$sMollie-Zahlungen für WooCommerce%2$s Datei konnte nicht hochgeladen werden. Die Dateigröße darf nicht mehr als 500 KB betragen." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:38 -#: build/src/Mollie/WC/Helper/Settings.php:257 -#: src/Mollie/WC/Gateway/BankTransfer.php:38 -#: src/Mollie/WC/Helper/Settings.php:257 -msgid "Activate expiry date setting" -msgstr "Einstellung für das Ablaufdatum übernehmen" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:39 -#: build/src/Mollie/WC/Helper/Settings.php:258 -#: src/Mollie/WC/Gateway/BankTransfer.php:39 -#: src/Mollie/WC/Helper/Settings.php:258 -msgid "Enable expiry date for payments" -msgstr "Ablaufdatum für Zahlungen aktivieren" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:40 -#: src/Mollie/WC/Gateway/BankTransfer.php:40 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the payment will expire. This will turn all transactions into payments " -"instead of orders" -msgstr "" -"Aktiviere diese Option, um die Anzahl der Tage nach Ende der Zahlungsfrist " -"selbst festlegen zu können. Hiermit werden alle Transaktionen in Zahlungen " -"anstatt Bestellungen umgewandelt" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:45 -#: build/src/Mollie/WC/Helper/Settings.php:264 -#: build/src/Mollie/WC/Plugin.php:927 src/Mollie/WC/Gateway/BankTransfer.php:45 -#: src/Mollie/WC/Helper/Settings.php:264 src/Mollie/WC/Plugin.php:927 -msgid "Expiry date" -msgstr "Ablaufdatum" +#: ../src/Settings/Settings.php:216 +msgid "Gateway Disabled" +msgstr "Gateway deaktiviert" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:47 -#: src/Mollie/WC/Gateway/BankTransfer.php:47 -msgid "" -"Number of DAYS after the payment will expire. Default %d days" -msgstr "TAGE nach Ende der Zahlungsfrist. Standard: %d Tage." +#: ../src/Settings/Settings.php:237 +msgid "Return to payments" +msgstr "Zurück zu den Zahlungen" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:56 -#: src/Mollie/WC/Gateway/BankTransfer.php:56 -msgid "Skip Mollie payment screen" -msgstr "Mollie-Bezahlseite überspringen" +#: ../src/Settings/Settings.php:252, ../src/Settings/General/MollieGeneralSettings.php:86 +msgid "Sell to specific countries" +msgstr "In bestimmten Ländern verkaufen" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:57 -#: src/Mollie/WC/Gateway/BankTransfer.php:57 -msgid "Skip Mollie payment screen when Bank Transfer is selected" -msgstr "Mollie-Bezahlseite überspringen, wenn Überweisung ausgewählt wurde" +#: ../src/Settings/Settings.php:264 +msgid "Choose countries…" +msgstr "Länder wählen…" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:58 -#: src/Mollie/WC/Gateway/BankTransfer.php:58 -msgid "" -"Enable this option if you want to skip redirecting your user to the Mollie " -"payment screen, instead this will redirect your user directly to the " -"WooCommerce order received page displaying instructions how to complete the " -"Bank Transfer payment." -msgstr "" -"Aktiviere diese Option, um die Weiterleitung des Benutzers auf die Mollie-" -"Bezahlseite zu überspringen. Stattdessen wird der Benutzer direkt zur " -"Bestellbestätigung von WooCommerce weitergeleitet und bekommt eine " -"Schrittanweisung zur Abwicklung der Überweisungszahlung angezeigt." +#: ../src/Settings/Settings.php:265 +msgid "Country" +msgstr "Land" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:138 -#: src/Mollie/WC/Gateway/BankTransfer.php:138 -msgid "Bank Transfer" -msgstr "Überweisung" +#: ../src/Settings/Settings.php:274 +msgid "Select all" +msgstr "Alle auswählen" -#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC -#: build/src/Mollie/WC/Gateway/BankTransfer.php:188 -#: build/src/Mollie/WC/Gateway/DirectDebit.php:80 -#: build/src/Mollie/WC/Gateway/Ideal.php:124 -#: build/src/Mollie/WC/Gateway/Sofort.php:64 -#: src/Mollie/WC/Gateway/BankTransfer.php:188 -#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124 -#: src/Mollie/WC/Gateway/Sofort.php:64 -msgid "" -"Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" -msgstr "" -"Zahlung durch %1$s erfolgt (IBAN (letzte 4 Ziffern): %2$s, BIC: %3$s)" +#: ../src/Settings/Settings.php:275 +msgid "Select none" +msgstr "Auswahl aufheben" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:198 -#: src/Mollie/WC/Gateway/BankTransfer.php:198 -msgid "" -"Please complete your payment by transferring the total amount to the " -"following bank account:" -msgstr "" -"Bitte schließe die Zahlung ab, indem du den vollen Betrag auf das folgende " -"Konto überweist:" +#: ../src/Settings/Settings.php:470 +msgid "Error" +msgstr "Fehler" -#. translators: Placeholder 1: 'Stichting Mollie Payments' -#: build/src/Mollie/WC/Gateway/BankTransfer.php:202 -#: src/Mollie/WC/Gateway/BankTransfer.php:202 -msgid "Beneficiary: %s" -msgstr "Begünstigter: %s" +#: ../src/Settings/Settings.php:484 +msgid "Mollie status:" +msgstr "Mollie-Status:" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:203 -#: src/Mollie/WC/Gateway/BankTransfer.php:203 -msgid "IBAN: %s" -msgstr "IBAN: %s" +#: ../src/Settings/Settings.php:485 +msgid "Connected" +msgstr "Verbunden" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:204 -#: src/Mollie/WC/Gateway/BankTransfer.php:204 -msgid "BIC: %s" -msgstr "BIC: %s" +#: ../src/Settings/SettingsModule.php:171 +msgid "Mollie settings" +msgstr "Mollie-Einstellungen" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:209 -#: src/Mollie/WC/Gateway/BankTransfer.php:209 -msgid "Payment reference: %s" -msgstr "Zahlungsreferenz: %s" +#: ../src/Settings/SettingsModule.php:177 +msgid "Logs" +msgstr "Protokolle" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:214 -#: src/Mollie/WC/Gateway/BankTransfer.php:214 -msgid "Please provide the payment reference %s" -msgstr "Gib bitte die Zahlungsreferenz %s an" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/SettingsModule.php:187 +msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production." +msgstr "%1$sMollie-Zahlungen für WooCommerce%2$s Der Testmodus ist aktiv. %3$s Deaktiviere den Testmodus,%4$s bevor du in die Produktionsumgebung wechselst." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:228 -#: src/Mollie/WC/Gateway/BankTransfer.php:228 -msgid "The payment will expire on %s." -msgstr "Die Zahlungsfrist läuft am %s ab." +#: ../src/Shared/Data.php:628 +msgid "Item #%1$s stock incremented from %2$s to %3$s." +msgstr "Artikel #%1$s Bestand von %2$s auf %3$s erhöht." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:235 -#: src/Mollie/WC/Gateway/BankTransfer.php:235 -msgid "" -"The payment will expire on %s. Please make sure you " -"transfer the total amount before this date." -msgstr "" -"Die Zahlungsfrist läuft am %s ab. Bitte überweise bis dahin " -"den vollen Betrag." +#. translators: Placeholder 1: Plugin title. Placeholder 2: Min WooCommerce version. Placeholder 3: WooCommerce version used. +#: ../src/Shared/Status.php:74 +msgid "The %1$s plugin requires at least WooCommerce version %2$s, you are using version %3$s. Please update your WooCommerce plugin." +msgstr "Das %1$s-Plugin benötigt WooCommerce %2$s oder höher, du verwendest Version %3$s. Aktualisiere bitte dein WooCommerce-Plugin." -#: build/src/Mollie/WC/Gateway/Belfius.php:33 -#: src/Mollie/WC/Gateway/Belfius.php:33 -msgid "Belfius Direct Net" -msgstr "Belfius Direct Net" +#: ../src/Shared/Status.php:87 +msgid "Mollie API client not installed. Please make sure the plugin is installed correctly." +msgstr "Mobiler API-Client nicht installiert. Vergewissere dich, dass das Plugin korrekt installiert ist." -#: build/src/Mollie/WC/Gateway/Creditcard.php:84 -#: src/Mollie/WC/Gateway/Creditcard.php:84 -msgid "Credit card" -msgstr "Kreditkarte" +#: ../src/Shared/Status.php:96 +msgid "Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable it in your server or ask your webhoster to enable it for you." +msgstr "Mollie Payments for WooCommerce benötigt die JSON-Erweiterung für PHP. Schalte sie auf deinem Server frei oder bitten deinen Hosting-Anbieter, sie freizuschalten." -#. translators: Placeholder 1: card holder -#: build/src/Mollie/WC/Gateway/Creditcard.php:136 -#: src/Mollie/WC/Gateway/Creditcard.php:136 -msgid "Payment completed by %s" -msgstr "Zahlung durch %s erfolgt" +#. translators: Placeholder 1: Min PHP version. Placeholder 2: PHP version used. Placeholder 3: Opening link tag. placeholder 4: Closing link tag. +#: ../src/Shared/Status.php:111 +msgid "Mollie Payments for WooCommerce require PHP %1$s or higher, you have PHP %2$s. Please upgrade and view %3$sthis FAQ%4$s" +msgstr "Für Mollie-Zahlungen für WooCommerce wird mindestens PHP %1$s benötigt. Du verwendest PHP %2$s. Bitte aktualisiere PHP und beachte %3$sdiese häufig gestellten Fragen%4$s." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:42 -#: src/Mollie/WC/Gateway/DirectDebit.php:42 -msgid "SEPA Direct Debit" -msgstr "SEPA-Direktmandat" +#: ../src/Shared/Status.php:123 +msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration." +msgstr "Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung JSON benötigt. Bitte aktiviere die ‚json‘-Erweiterung in deiner PHP-Konfiguration." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:49 -#: src/Mollie/WC/Gateway/DirectDebit.php:49 -msgid "" -"SEPA Direct Debit is used for recurring payments with WooCommerce " -"Subscriptions, and will not be shown in the WooCommerce checkout for regular " -"payments! You also need to enable iDEAL and/or other \"first\" payment " -"methods if you want to use SEPA Direct Debit." -msgstr "" -"Für wiederkehrende Zahlungen mit WooCommerce Subscriptions werden SEPA-" -"Direktmandate verwendet. Diese werden nicht im WooCommerce-Bezahlvorgang für " -"reguläre Zahlungen angezeigt. Du musst außerdem iDEAL und/oder weitere " -"„erste“ Bezahlmethoden aktivieren, wenn du SEPA-Direktmandate verwenden " -"möchtest." +#: ../src/Shared/Status.php:130 +msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration." +msgstr "Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung cURL benötigt. Bitte aktiviere die ‚curl‘-Erweiterung in deiner PHP-Konfiguration." -#: build/src/Mollie/WC/Gateway/EPS.php:29 src/Mollie/WC/Gateway/EPS.php:29 -msgid "EPS" -msgstr "EPS" +#: ../src/Shared/Status.php:138 +msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available." +msgstr "Für Mollie-Zahlungen für WooCommerce müssen PHP cURL-Funktionen verfügbar sein. Vergewissere dich, dass alle diese Funktionen verfügbar sind." -#: build/src/Mollie/WC/Gateway/Giftcard.php:31 -#: src/Mollie/WC/Gateway/Giftcard.php:31 -msgid "Show gift cards dropdown" -msgstr "Drop-down-Liste für Geschenkkarten anzeigen" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSepaRecurringGateway.php:136, ../src/Subscription/MollieSubscriptionGateway.php:468 +msgid "%1$s payment started (%2$s)." +msgstr "%1$s-Zahlung gestartet (%2$s)." -#: build/src/Mollie/WC/Gateway/Giftcard.php:33 -#: src/Mollie/WC/Gateway/Giftcard.php:33 -msgid "" -"If you disable this, a dropdown with various gift cards will not be shown in " -"the WooCommerce checkout, so users will select a gift card on the Mollie " -"payment page after checkout." -msgstr "" -"Wenn du die Option deaktivieren, wird die Drop-down-Liste mit verschiedenen " -"Geschenkkarten nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die " -"Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-" -"Bezahlvorgang eine Geschenkkarte aus." - -#: build/src/Mollie/WC/Gateway/Giftcard.php:37 -#: build/src/Mollie/WC/Gateway/Ideal.php:39 -#: build/src/Mollie/WC/Gateway/Kbc.php:38 src/Mollie/WC/Gateway/Giftcard.php:37 -#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Kbc.php:38 -msgid "Issuers empty option" -msgstr "Kartenaussteller-Option leer" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSubscriptionGateway.php:199 +msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process." +msgstr "Das Abonnement wird von ‚ausstehend‘ auf ‚aktiv‘ aktualisiert, bis die Zahlung fehlschlägt, da SEPA-Direktmandate etwas Zeit in Anspruch nehmen." -#: build/src/Mollie/WC/Gateway/Giftcard.php:39 -#: src/Mollie/WC/Gateway/Giftcard.php:39 -msgid "" -"This text will be displayed as the first option in the gift card dropdown, " -"but only if the above 'Show gift cards dropdown' is enabled." -msgstr "" -"Dieser Text wird als erste Option in der Drop-down-Liste für Geschenkkarten " -"angezeigt, wenn „Drop-down-Liste für Geschenkkarten anzeigen“ weiter oben " -"aktiviert wurde." +#: ../src/Subscription/MollieSubscriptionGateway.php:299 +msgid "The customer (%s) could not be used or found. " +msgstr "Der Kunde (%s) konnte nicht verwendet oder gefunden werden. " -#: build/src/Mollie/WC/Gateway/Giftcard.php:58 -#: src/Mollie/WC/Gateway/Giftcard.php:58 -msgid "Gift cards" -msgstr "Geschenkkarten" +#: ../src/Subscription/MollieSubscriptionGateway.php:326 +msgid "The customer (%s) does not have a valid mandate." +msgstr "Der Kunde (%s) hat kein gültiges Mandat." -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Giftcard.php:74 -#: src/Mollie/WC/Gateway/Giftcard.php:74 -msgid "Select your gift card" -msgstr "Wähle deine Geschenkkarte aus" +#. translators: Placeholder 1: Payment method title +#: ../src/Subscription/MollieSubscriptionGateway.php:366 +msgid "Could not create %s renewal payment." +msgstr "Erneute %s-Zahlung konnte nicht erstellt werden." -#: build/src/Mollie/WC/Gateway/Giropay.php:29 -#: src/Mollie/WC/Gateway/Giropay.php:29 -msgid "Giropay" -msgstr "Giropay" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Subscription/SubscriptionModule.php:106 +msgid "%1$s payment failed (%2$s)." +msgstr "%1$s-Bezahlung fehlgeschlagen ((%2$s))." -#: build/src/Mollie/WC/Gateway/Ideal.php:33 src/Mollie/WC/Gateway/Ideal.php:33 -msgid "Show iDEAL banks dropdown" -msgstr "Drop-down-Liste für iDEAL-Banken anzeigen" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:42 +msgid "%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sDer Server ist nicht mit Apple Pay kompatibel%2$s Überprüfe %3$sdie Anforderungsseite von Apple Pay,%4$s um den Fehler zu beheben, damit der Kaufbutton von Apple Pay verwendet werden kann" -#: build/src/Mollie/WC/Gateway/Ideal.php:35 src/Mollie/WC/Gateway/Ideal.php:35 -msgid "" -"If you disable this, a dropdown with various iDEAL banks will not be shown " -"in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie " -"payment page after checkout." -msgstr "" -"Wenn du die Option deaktivierst, wird die Drop-down-Liste mit verschiedenen " -"iDEAL-Banken nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die " -"Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-" -"Bezahlvorgang eine iDEAL-Bank aus." +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:58 +msgid "%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sValidierungsfehler von Apple Pay%2$s Überprüfe %3$sdie Anforderungsseite von Apple Pay,%4$s um den Fehler zu beheben, damit der Kaufbutton von Apple Pay verwendet werden kann" -#: build/src/Mollie/WC/Gateway/Ideal.php:41 src/Mollie/WC/Gateway/Ideal.php:41 -msgid "" -"This text will be displayed as the first option in the iDEAL issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above 'Show iDEAL banks dropdown' is enabled." -msgstr "" -"Dieser Text wird als erste Option in der Drop-down-Liste für iDEAL-" -"Kartenaussteller angezeigt. Erfolgt keine Eingabe, wird „Wähle deine Bank " -"aus“ angezeigt. Nur wenn die obere Option „Drop-down-Liste für iDEAL-Banken " -"anzeigen“ aktiviert wurde." +#: ../src/Gateway/Voucher/VoucherModule.php:78, ../src/Settings/Page/MollieSettingsPage.php:49, ../src/Settings/Page/MollieSettingsPage.php:182 +msgid "Mollie Settings" +msgstr "Mollie-Einstellungen" -#: build/src/Mollie/WC/Gateway/Ideal.php:60 src/Mollie/WC/Gateway/Ideal.php:60 -msgid "iDEAL" -msgstr "iDEAL" +#: ../src/Gateway/Voucher/VoucherModule.php:108, ../src/Gateway/Voucher/VoucherModule.php:143, ../src/Gateway/Voucher/VoucherModule.php:166 +msgid "Mollie Voucher Category" +msgstr "Mollie-Gutscheinkategorie" -#. translators: Default iDEAL description, displayed above issuer drop down -#. translators: Default KBC/CBC dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Ideal.php:76 -#: build/src/Mollie/WC/Gateway/Kbc.php:75 src/Mollie/WC/Gateway/Ideal.php:76 -#: src/Mollie/WC/Gateway/Kbc.php:75 -msgid "Select your bank" -msgstr "Wähle deine Bank aus" +#: ../src/Gateway/Voucher/VoucherModule.php:111, ../src/Gateway/Voucher/VoucherModule.php:145, ../src/Gateway/Voucher/VoucherModule.php:170 +msgid "--Please choose an option--" +msgstr "--Bitte eine Option wählen--" -#: src/Mollie/WC/Gateway/In3:29 -msgid "in3" -msgstr "in3" +#: ../src/Gateway/Voucher/VoucherModule.php:112, ../src/Gateway/Voucher/VoucherModule.php:146, ../src/Gateway/Voucher/VoucherModule.php:175, ../src/Gateway/Voucher/VoucherModule.php:232, ../src/Gateway/Voucher/VoucherModule.php:292 +msgid "No Category" +msgstr "Keine Kategorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:32 src/Mollie/WC/Gateway/Kbc.php:32 -msgid "Show KBC/CBC banks dropdown" -msgstr "Drop-down-Liste für KBC/CBC-Banken anzeigen" +#: ../src/Gateway/Voucher/VoucherModule.php:151, ../src/Gateway/Voucher/VoucherModule.php:188 +msgid "Select a voucher category to apply to all products with this category" +msgstr "Wähle eine Gutscheinkategorie aus, die auf alle Produkte dieser Kategorie angewendet werden soll" -#: build/src/Mollie/WC/Gateway/Kbc.php:34 src/Mollie/WC/Gateway/Kbc.php:34 -msgid "" -"If you disable this, a dropdown with various KBC/CBC banks will not be shown " -"in the WooCommerce checkout, so users will select a KBC/CBC bank on the " -"Mollie payment page after checkout." -msgstr "" -"Wenn du die Option deaktivierst, wird die Drop-down-Liste mit verschiedenen " -"KBC/CBC-Banken nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die " -"Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-" -"Bezahlvorgang eine KBC/CBC-Bank aus." +#: ../src/Gateway/Voucher/VoucherModule.php:224 +msgid "Products voucher category" +msgstr "Produktgutschein-Kategorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:40 src/Mollie/WC/Gateway/Kbc.php:40 -msgid "" -"This text will be displayed as the first option in the KBC/CBC issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above ''Show KBC/CBC banks dropdown' is enabled." -msgstr "" -"Dieser Text wird als erste Option in der Drop-down-Liste für KBC/CBC-" -"Kartenaussteller angezeigt. Erfolgt keine Eingabe, wird „Wähle deine Bank " -"aus“ angezeigt. Nur wenn die obere Option „Drop-down-Liste für KBC/CBC-" -"Banken anzeigen“ aktiviert wurde." +#: ../src/Gateway/Voucher/VoucherModule.php:231, ../src/Gateway/Voucher/VoucherModule.php:291 +msgid "Same as default category" +msgstr "Entspricht Standardkategorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:59 src/Mollie/WC/Gateway/Kbc.php:59 -msgid "KBC/CBC Payment Button" -msgstr "KBC/CBC-Zahlungsbutton" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Gateway/Voucher/VoucherModule.php:241 +msgid "In order to process it, all products in the order must have a category. To disable the product from voucher selection select \"No category\" option." +msgstr "Um weiterverarbeitet werden zu können, müssen alle Produkte der Bestellung eine Kategorie haben. Um das Produkt von der Gutscheinauswahl auszuschließen, wähle die Option „Keine Kategorie“." -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -msgid "Klarna Pay later" -msgstr "Klarna Pay later" +#: ../src/Gateway/Voucher/VoucherModule.php:288 +msgid "Mollie Voucher category" +msgstr "Mollie-Gutscheinkategorie" -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -msgid "" -"To accept payments via Klarna, all default WooCommerce checkout fields " -"should be enabled and required." -msgstr "" -"Um Bezahlungen über Klarna zu akzeptieren, müssen alle standardmäßigen " -"Felder im WooCommerce-Bezahlvorgang aktiviert und verpflichtend sein." +#: ../src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (Apple Pay transaction ID: %3$s)" +msgstr "Zahlung durch %1$s - %2$s (Apple Pay Transaktions-ID: %3$s) erfolgt" -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -msgid "Klarna Pay now" -msgstr "Klarna Pay now" +#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:26, ../src/PaymentMethods/InstructionStrategies/DirectdebitInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/IdealInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/SofortInstructionStrategy.php:20 +msgid "Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" +msgstr "Zahlung durch %1$s erfolgt (IBAN (letzte 4 Ziffern): %2$s, BIC: %3$s)" -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -msgid "Klarna Slice it" -msgstr "Klarna Slice it" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:35 +msgid "Please complete your payment by transferring the total amount to the following bank account:" +msgstr "Bitte schließe die Zahlung ab, indem du den vollen Betrag auf das folgende Konto überweist:" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: build/src/Mollie/WC/Plugin.php:508 src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: src/Mollie/WC/Plugin.php:508 -msgid "Select the default products category" -msgstr "Wähle die Standard-Produktkategorie" +#. translators: Placeholder 1: 'Stichting Mollie Payments' +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:39 +msgid "Beneficiary: %s" +msgstr "Begünstigter: %s" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:46 -#: src/Mollie/WC/Gateway/Mealvoucher.php:46 -msgid "" -"In order to process it, all products in the order must have a category. This " -"selector will assign the default category for the shop products" -msgstr "" -"Um weiterverarbeitet werden zu können, müssen alle Produkte der Bestellung " -"eine Kategorie haben. Dieser Selektor weist den Produkten im Shop die " -"Standardkategorie zu" +#. translators: Placeholder 1: Payment details bank account +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:41 +msgid "IBAN: %s" +msgstr "IBAN: %s" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:66 -#: src/Mollie/WC/Gateway/Mealvoucher.php:66 -msgid "Voucher" -msgstr "Gutschein" +#. translators: Placeholder 1: Payment details bic +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:43 +msgid "BIC: %s" +msgstr "BIC: %s" -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:82 -#: src/Mollie/WC/Gateway/Mealvoucher.php:82 -msgid "voucher" -msgstr "Gutschein" +#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:50 +msgid "Please provide the payment reference %s" +msgstr "Gib bitte die Zahlungsreferenz %s an" -#: build/src/Mollie/WC/Gateway/MyBank.php:36 -#: src/Mollie/WC/Gateway/MyBank.php:36 -msgid "MyBank" -msgstr "MyBank" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:47 +msgid "Payment reference: %s" +msgstr "Zahlungsreferenz: %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:44 -#: src/Mollie/WC/Gateway/MyBank.php:44 -msgid "To accept payments via MyBank" -msgstr "Um Bezahlungen über MyBank zu akzeptieren" +#. translators: Placeholder 1: Payment expiry date +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:66 +msgid "The payment will expire on %s. Please make sure you transfer the total amount before this date." +msgstr "Die Zahlungsfrist läuft am %s ab. Bitte überweise bis dahin den vollen Betrag." -#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer Account number -#: build/src/Mollie/WC/Gateway/MyBank.php:73 -#: src/Mollie/WC/Gateway/MyBank.php:73 -msgid "Payment completed by %1$s - %2$s" -msgstr "Zahlung durch %1$s - %2$s erfolgt" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:60 +msgid "The payment will expire on %s." +msgstr "Die Zahlungsfrist läuft am %s ab." -#: build/src/Mollie/WC/Gateway/PayPal.php:43 -#: src/Mollie/WC/Gateway/PayPal.php:43 -msgid "PayPal" -msgstr "PayPal" +#. translators: Placeholder 1: card holder +#: ../src/PaymentMethods/InstructionStrategies/CreditcardInstructionStrategy.php:20 +msgid "Payment completed by %s" +msgstr "Zahlung durch %s erfolgt" -#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID -#: build/src/Mollie/WC/Gateway/PayPal.php:74 -#: build/src/Mollie/WC/Payment/Object.php:695 -#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695 -msgid "" -"Payment completed by %s - %s (PayPal transaction ID: %s)" -msgstr "" -"Zahlung durch %s - %s (PayPal Transaktions-ID: %s) erfolgt" +#. translators: Placeholder 1: payment method +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:34 +msgid "Payment completed with %s" +msgstr "Zahlung durch %s erfolgt" -#: build/src/Mollie/WC/Gateway/Paysafecard.php:20 -#: src/Mollie/WC/Gateway/Paysafecard.php:20 -msgid "paysafecard" -msgstr "paysafecard" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:26 +msgid "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant." +msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten. Sie erhalten eine E-Mail, sobald wir eine Bestätigung der Bank oder des Händlers erhalten." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:33 -#: src/Mollie/WC/Gateway/Przelewy24.php:33 -msgid "Przelewy24" -msgstr "Przelewy24" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:20 +msgid "We have not received a definite payment status." +msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:40 -#: src/Mollie/WC/Gateway/Przelewy24.php:40 -msgid "" -"To accept payments via Przelewy24, a customer email is required for every " -"payment." -msgstr "" -"Um Bezahlungen über Przelewy24 zu akzeptieren, wird für jede Bezahlung eine " -"Kunden-E-Mail benötigt." +#: ../src/PaymentMethods/InstructionStrategies/MybankInstructionStrategy.php:19 +msgid "Payment completed by %1$s - %2$s" +msgstr "Zahlung durch %1$s - %2$s erfolgt" #. translators: Placeholder 1: customer billing email -#: build/src/Mollie/WC/Gateway/Przelewy24.php:64 -#: src/Mollie/WC/Gateway/Przelewy24.php:64 +#: ../src/PaymentMethods/InstructionStrategies/Przelewy24InstructionStrategy.php:20 msgid "Payment completed by %s." msgstr "Zahlung durch %s erfolgt." -#: build/src/Mollie/WC/Gateway/Sofort.php:33 -#: src/Mollie/WC/Gateway/Sofort.php:33 -msgid "SOFORT Banking" -msgstr "SOFORT-Banking" - -#: build/src/Mollie/WC/Helper/Api.php:40 src/Mollie/WC/Helper/Api.php:40 -msgid "No API key provided. Please set your Mollie API keys below." -msgstr "" -"Kein API-Schlüssel vorgegeben. Lege deine Mollie-API-Schlüssel unten fest." - -#: build/src/Mollie/WC/Helper/Api.php:42 src/Mollie/WC/Helper/Api.php:42 -msgid "" -"Invalid API key(s). Get them on the %sDevelopers page in the Mollie dashboard" -"%s. The API key(s) must start with 'live_' or 'test_', be at least 30 " -"characters and must not contain any special characters." -msgstr "" -"Invalide(r) API-Schlüssel. Du erhältst die API-Schlüssel über die %s-" -"Entwicklerseite im mobilen Dashboard%s. API-Schlüssel müssen mit ‚live_‘ " -"oder ‚test_‘ beginnen, mindestens 30 Zeichen enthalten und dürfen keine " -"Sonderzeichen enthalten." - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -msgid "" -"%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server " -"requirements page%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sDer Server ist nicht mit Apple Pay kompatibel%2$s Überprüfe %3$sdie " -"Anforderungsseite von Apple Pay,%4$s um den Fehler zu beheben, damit der " -"Kaufbutton von Apple Pay verwendet werden kann" - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -msgid "" -"%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page" -"%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sValidierungsfehler von Apple Pay%2$s Überprüfe %3$sdie Anforderungsseite " -"von Apple Pay,%4$s um den Fehler zu beheben, damit der Kaufbutton von Apple " -"Pay verwendet werden kann" +#. translators: Placeholder 1: Lock icon. Placeholder 2: Mollie logo. +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:25 +msgid "%1$s Secure payments provided by %2$s" +msgstr "%1$s Sichere Zahlungen bereitgestellt durch %2$s" -#: build/src/Mollie/WC/Helper/OrderLines.php:499 -#: src/Mollie/WC/Helper/OrderLines.php:499 -msgid "Shipping" -msgstr "Versand" +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:41 +msgid "Secure payments provided by" +msgstr "Sichere Zahlungen bereitgestellt durch" -#: build/src/Mollie/WC/Helper/Settings.php:61 -#: src/Mollie/WC/Helper/Settings.php:61 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:34 msgid "%s display settings" msgstr "%s Anzeigeeinstellungen" -#: build/src/Mollie/WC/Helper/Settings.php:99 -#: src/Mollie/WC/Helper/Settings.php:99 +#: ../src/Settings/General/MollieGeneralSettings.php:71 msgid "Display logo on checkout page. Default enabled" msgstr "Logo bei Bezahlvorgang anzeigen. Standard: aktiviert" -#: build/src/Mollie/WC/Helper/Settings.php:107 -#: src/Mollie/WC/Helper/Settings.php:107 +#: ../src/Settings/General/MollieGeneralSettings.php:79 msgid "Sales countries" msgstr "Vertriebsländer" -#: build/src/Mollie/WC/Helper/Settings.php:125 -#: src/Mollie/WC/Helper/Settings.php:125 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:99 msgid "%s custom logo" msgstr "%s Eigenes Logo" -#: build/src/Mollie/WC/Helper/Settings.php:132 -#: src/Mollie/WC/Helper/Settings.php:132 +#: ../src/Settings/General/MollieGeneralSettings.php:103 msgid "Enable custom logo" msgstr "Eigenes Logo aktivieren" -#: build/src/Mollie/WC/Helper/Settings.php:137 -#: src/Mollie/WC/Helper/Settings.php:137 -msgid "" -"Enable the feature to add a custom logo for this gateway. This feature will " -"have precedence over other logo options." -msgstr "" -"Aktiviere die Funktion zum Hinzufügen eines eigenen Logos für dieses " -"Zahlungsportal. Die Funktion hat Vorrang gegenüber anderen Logo-Optionen." +#: ../src/Settings/General/MollieGeneralSettings.php:109 +msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options." +msgstr "Aktiviere die Funktion zum Hinzufügen eines eigenen Logos für dieses Zahlungsportal. Die Funktion hat Vorrang gegenüber anderen Logo-Optionen." -#: build/src/Mollie/WC/Helper/Settings.php:143 -#: src/Mollie/WC/Helper/Settings.php:143 +#: ../src/Settings/General/MollieGeneralSettings.php:115 msgid "Upload custom logo" msgstr "Eigenes Logo hochladen" -#: build/src/Mollie/WC/Helper/Settings.php:150 -#: src/Mollie/WC/Helper/Settings.php:150 +#: ../src/Settings/General/MollieGeneralSettings.php:123 msgid "Upload a custom icon for this gateway. The feature must be enabled." -msgstr "" -"Lade ein eigenes Symbol für dieses Zahlungsportal hoch. Die entsprechende " -"Funktion muss aktiviert sein." +msgstr "Lade ein eigenes Symbol für dieses Zahlungsportal hoch. Die entsprechende Funktion muss aktiviert sein." -#: build/src/Mollie/WC/Helper/Settings.php:159 -#: src/Mollie/WC/Helper/Settings.php:159 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:134 msgid "%s surcharge" msgstr "%s-Zuschlag" -#: build/src/Mollie/WC/Helper/Settings.php:166 -#: src/Mollie/WC/Helper/Settings.php:166 +#: ../src/Settings/General/MollieGeneralSettings.php:139 msgid "Payment Surcharge" msgstr "Zahlungsgebühr" -#: build/src/Mollie/WC/Helper/Settings.php:172 -#: src/Mollie/WC/Helper/Settings.php:172 +#: ../src/Settings/General/MollieGeneralSettings.php:145 msgid "No fee" msgstr "Keine Gebühr" -#: build/src/Mollie/WC/Helper/Settings.php:176 -#: src/Mollie/WC/Helper/Settings.php:176 +#: ../src/Settings/General/MollieGeneralSettings.php:149 msgid "Fixed fee" msgstr "Feste Gebühr" -#: build/src/Mollie/WC/Helper/Settings.php:180 -#: src/Mollie/WC/Helper/Settings.php:180 +#: ../src/Settings/General/MollieGeneralSettings.php:153 msgid "Percentage" msgstr "Prozentsatz" -#: build/src/Mollie/WC/Helper/Settings.php:184 -#: src/Mollie/WC/Helper/Settings.php:184 +#: ../src/Settings/General/MollieGeneralSettings.php:157 msgid "Fixed fee and percentage" msgstr "Feste Gebühr und Prozentsatz" -#: build/src/Mollie/WC/Helper/Settings.php:190 -#: src/Mollie/WC/Helper/Settings.php:190 +#: ../src/Settings/General/MollieGeneralSettings.php:163 msgid "Choose a payment surcharge for this gateway" msgstr "Wähle eine Zahlungsgebühr für dieses Zahlungsportal aus" -#: build/src/Mollie/WC/Helper/Settings.php:197 -#: src/Mollie/WC/Helper/Settings.php:197 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:172 msgid "Payment surcharge fixed amount in %s" msgstr "Fester Betrag der Zahlungsgebühr in %s" -#: build/src/Mollie/WC/Helper/Settings.php:200 -#: src/Mollie/WC/Helper/Settings.php:200 +#: ../src/Settings/General/MollieGeneralSettings.php:176 msgid "Control the fee added on checkout. Default 0.00" -msgstr "" -"Lege die Gebühr fest, die zum Einkaufswagen hinzugefügt wird. Standard: 0,00" +msgstr "Lege die Gebühr fest, die zum Einkaufswagen hinzugefügt wird. Standard: 0,00" -#: build/src/Mollie/WC/Helper/Settings.php:210 -#: src/Mollie/WC/Helper/Settings.php:210 +#: ../src/Settings/General/MollieGeneralSettings.php:186 msgid "Payment surcharge percentage amount %" msgstr "Prozentsatz für die Zahlungsgebühr in %" -#: build/src/Mollie/WC/Helper/Settings.php:213 -#: src/Mollie/WC/Helper/Settings.php:213 -msgid "Control the percentage fee added on checkout. Default 0.00" -msgstr "" -"Lege einen Prozentsatz für die Gebühr fest, die zum Einkaufswagen " -"hinzugefügt wird. Standard: 0,00" - -#: build/src/Mollie/WC/Helper/Settings.php:223 -#: src/Mollie/WC/Helper/Settings.php:223 -msgid "Payment surcharge limit in %s" -msgstr "Grenzwert für die Zahlungsgebühr in %s" - -#: build/src/Mollie/WC/Helper/Settings.php:226 -#: src/Mollie/WC/Helper/Settings.php:226 -msgid "Limit the maximum fee added on checkout. Default 0, means no limit" -msgstr "" -"Setze einen Grenzwert für die Gebühr, die zum Einkaufswagen hinzugefügt " -"wird. Der Standardwert 0 steht für kein Limit" - -#: build/src/Mollie/WC/Helper/Settings.php:236 -#: src/Mollie/WC/Helper/Settings.php:236 -msgid "Surcharge only under this limit, in %s" -msgstr "Nur unterhalb dieses Grenzwerts in %s fallen Gebühren an" - -#: build/src/Mollie/WC/Helper/Settings.php:239 -#: src/Mollie/WC/Helper/Settings.php:239 -msgid "" -"Maximum order amount to apply surcharge. If the order is above this number " -"the surcharge will not apply. Default 0, means no maximum" -msgstr "" -"Maximaler Kaufbetrag, bei dem der Zuschlag fällig wird. Wenn die Bestellung " -"mehr als diese Zahl beträgt, wird der Zuschlag nicht fällig. Der " -"Standardwert 0 steht für kein Maximum" - -#: build/src/Mollie/WC/Helper/Settings.php:250 -#: src/Mollie/WC/Helper/Settings.php:250 -msgid "%s advanced" -msgstr "%s fortgeschritten" - -#: build/src/Mollie/WC/Helper/Settings.php:259 -#: src/Mollie/WC/Helper/Settings.php:259 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the order will expire." -msgstr "" -"Aktiviere diese Option, wenn du eine Anzahl an Tagen festlegen möchtest, " -"nach deren Ablauf eine Bestellung abläuft." - -#: build/src/Mollie/WC/Helper/Settings.php:267 -#: src/Mollie/WC/Helper/Settings.php:267 -msgid "" -"Number of MINUTES after the order will expire and will be canceled at Mollie " -"and WooCommerce. A value of 0 means no expiry date will be considered." -msgstr "" -"Zeit in MINUTEN, nach der die Bestellung abläuft und bei Mollie und " -"WooCommerce storniert wird. Der Wert 0 bedeutet, dass kein Ablaufdatum " -"berücksichtigt wird." - -#: build/src/Mollie/WC/Helper/Settings.php:280 -#: src/Mollie/WC/Helper/Settings.php:280 -msgid "Initial order status" -msgstr "Initialer Bestellstatus" +#: ../src/Settings/General/MollieGeneralSettings.php:189 +msgid "Control the percentage fee added on checkout. Default 0.00" +msgstr "Lege einen Prozentsatz für die Gebühr fest, die zum Einkaufswagen hinzugefügt wird. Standard: 0,00" -#: build/src/Mollie/WC/Helper/Settings.php:299 -#: src/Mollie/WC/Helper/Settings.php:299 -msgid "" -"Some payment methods take longer than a few hours to complete. The initial " -"order state is then set to '%s'. This ensures the order is not cancelled " -"when the setting %s is used." -msgstr "" -"Einige Bezahlmethoden benötigen mehr als ein paar Stunden bis zum Abschluss. " -"Der initiale Bestellstatus wird in diesem Fall auf ‚%s‘ gesetzt. Dadurch " -"wird sichergestellt, dass die Bestellung nicht storniert wird, wenn die " -"Einstellung %s verwendet wird." +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:200 +msgid "Payment surcharge limit in %s" +msgstr "Grenzwert für die Zahlungsgebühr in %s" -#: build/src/Mollie/WC/Helper/Settings.php:494 -#: src/Mollie/WC/Helper/Settings.php:494 -msgid "Error" -msgstr "Fehler" +#: ../src/Settings/General/MollieGeneralSettings.php:203 +msgid "Limit the maximum fee added on checkout. Default 0, means no limit" +msgstr "Setze einen Grenzwert für die Gebühr, die zum Einkaufswagen hinzugefügt wird. Der Standardwert 0 steht für kein Limit" -#: build/src/Mollie/WC/Helper/Settings.php:507 -#: src/Mollie/WC/Helper/Settings.php:507 -msgid "Mollie status:" -msgstr "Mollie-Status:" +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:214 +msgid "Surcharge only under this limit, in %s" +msgstr "Nur unterhalb dieses Grenzwerts in %s fallen Gebühren an" -#: build/src/Mollie/WC/Helper/Settings.php:508 -#: src/Mollie/WC/Helper/Settings.php:508 -msgid "Connected" -msgstr "Verbunden" +#: ../src/Settings/General/MollieGeneralSettings.php:217 +msgid "Maximum order amount to apply surcharge. If the order is above this number the surcharge will not apply. Default 0, means no maximum" +msgstr "Maximaler Kaufbetrag, bei dem der Zuschlag fällig wird. Wenn die Bestellung mehr als diese Zahl beträgt, wird der Zuschlag nicht fällig. Der Standardwert 0 steht für kein Maximum" -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: src/Mollie/WC/Helper/Settings.php:551 -msgid "Gateway enabled" -msgstr "Gateway aktiviert" +#. translators: Placeholder 1: gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:230 +msgid "%s advanced" +msgstr "%s fortgeschritten" -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Gateway disabled" -msgstr "Gateway deaktiviert" +#: ../src/Settings/General/MollieGeneralSettings.php:237 +msgid "Enable this option if you want to be able to set the time after which the order will expire." +msgstr "Aktiviere diese Option, um den Zeitpunkt, an dem die Bestellung abläuft, selbst festzulegen." -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Disabled" -msgstr "Deaktiviert" +#: ../src/Settings/General/MollieGeneralSettings.php:245 +msgid "Number of MINUTES after the order will expire and will be canceled at Mollie and WooCommerce. A value of 0 means no expiry time will be considered." +msgstr "Zeit in MINUTEN, nach der die Bestellung abläuft und bei Mollie und WooCommerce storniert wird. Der Wert 0 bedeutet, dass kein Ablaufzeitpunkt berücksichtigt wird." -#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:563 -#: src/Mollie/WC/Helper/Settings.php:563 -msgid "The following payment methods are activated in your %sMollie profile%s:" -msgstr "" -"Die folgenden Bezahlmethoden sind in deinem %sMollie-Profil%s aktiviert:" +#: ../src/Settings/General/MollieGeneralSettings.php:258 +msgid "Initial order status" +msgstr "Initialer Bestellstatus" -#: build/src/Mollie/WC/Helper/Settings.php:572 -#: src/Mollie/WC/Helper/Settings.php:572 -msgid "Refresh" -msgstr "Aktualisieren" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Settings/General/MollieGeneralSettings.php:277 +msgid "Some payment methods take longer than a few hours to complete. The initial order state is then set to '%1$s'. This ensures the order is not cancelled when the setting %2$s is used." +msgstr "Einige Bezahlmethoden benötigen mehr als ein paar Stunden bis zum Abschluss. Der initiale Bestellstatus wird in diesem Fall auf ‚%1$s‘ gesetzt. Dadurch wird sichergestellt, dass die Bestellung nicht storniert wird, wenn die Einstellung %2$s verwendet wird." -#: build/src/Mollie/WC/Helper/Settings.php:591 -#: src/Mollie/WC/Helper/Settings.php:591 -msgid "Edit" -msgstr "Bearbeiten" +#: ../src/Settings/General/MollieGeneralSettings.php:286 +msgid "Hold Stock (minutes)" +msgstr "Bestand halten (Minuten)" -#: build/src/Mollie/WC/Helper/Settings.php:624 -#: src/Mollie/WC/Helper/Settings.php:624 -msgid "" -"Quickly integrate all major payment methods in WooCommerce, wherever you " -"need them." -msgstr "" -"Integriere schnell alle gängigen Zahlungsmethoden in WooCommerce, wo immer " -"du sie brauchst" +#: ../src/Settings/Page/MollieSettingsPage.php:111 +msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them." +msgstr "Integriere schnell alle gängigen Zahlungsmethoden in WooCommerce, wo immer du sie brauchst" -#: build/src/Mollie/WC/Helper/Settings.php:625 -#: src/Mollie/WC/Helper/Settings.php:625 -msgid "" -" Simply drop them ready-made into your WooCommerce webshop with this " -"powerful plugin by Mollie." -msgstr "" -" Mit dem wirkungsvollen Plugin von Mollie kannst du fertig konfigurierte " -"Zahlungsmethoden einfach in deinen WooCommerce-Onlineshop einfügen." +#: ../src/Settings/Page/MollieSettingsPage.php:115 +msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie." +msgstr " Mit dem wirkungsvollen Plugin von Mollie kannst du fertig konfigurierte Zahlungsmethoden einfach in deinen WooCommerce-Onlineshop einfügen." -#: build/src/Mollie/WC/Helper/Settings.php:626 -#: src/Mollie/WC/Helper/Settings.php:626 +#: ../src/Settings/Page/MollieSettingsPage.php:119 msgid " Mollie is dedicated to making payments better for WooCommerce. " msgstr " Ziel von Mollie ist es, Zahlungen für WooCommerce zu verbessern. " -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:123 msgid "Please go to" msgstr "Bitte gehe zur" -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:126 msgid " the signup page" msgstr " Anmeldeseite," -#: build/src/Mollie/WC/Helper/Settings.php:628 -#: src/Mollie/WC/Helper/Settings.php:628 -msgid "" -" to create a new Mollie account and start receiving payments in a couple of " -"minutes. " -msgstr "" -" um ein neues Mollie-Konto zu eröffnen und in wenigen Minuten Zahlungen zu " -"erhalten. " +#: ../src/Settings/Page/MollieSettingsPage.php:130 +msgid " to create a new Mollie account and start receiving payments in a couple of minutes. " +msgstr " um ein neues Mollie-Konto zu eröffnen und in wenigen Minuten Zahlungen zu erhalten. " -#: build/src/Mollie/WC/Helper/Settings.php:629 -#: src/Mollie/WC/Helper/Settings.php:629 +#: ../src/Settings/Page/MollieSettingsPage.php:134 msgid "Contact " msgstr "Kontaktiere uns, " -#: build/src/Mollie/WC/Helper/Settings.php:630 -#: src/Mollie/WC/Helper/Settings.php:630 +#: ../src/Settings/Page/MollieSettingsPage.php:138 msgid " if you have any questions or comments about this plugin." msgstr " falls du Fragen oder Anmerkungen zu diesem Plugin hast." -#: build/src/Mollie/WC/Helper/Settings.php:631 -#: src/Mollie/WC/Helper/Settings.php:631 -msgid "" -"Our pricing is always per transaction. No startup fees, no monthly fees, and " -"no gateway fees. No hidden fees, period." -msgstr "" -"Unsere Leistungen werden immer per Transaktion abgerechnet. Es gibt keine " -"Startgebühr, monatliche Gebühr oder Gebühren, um bestimmte Funktionen " -"freizuschalten. Keine versteckten Kosten – Punkt." +#: ../src/Settings/Page/MollieSettingsPage.php:142 +msgid "Our pricing is always per transaction. No startup fees, no monthly fees, and no gateway fees. No hidden fees, period." +msgstr "Unsere Leistungen werden immer per Transaktion abgerechnet. Es gibt keine Startgebühr, monatliche Gebühr oder Gebühren, um bestimmte Funktionen freizuschalten. Keine versteckten Kosten – Punkt." -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:148 msgid "Plugin Documentation" msgstr "Plugin-Dokumentation" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:151 msgid "Contact Support" msgstr "Support kontaktieren" -#: build/src/Mollie/WC/Helper/Settings.php:644 -#: src/Mollie/WC/Helper/Settings.php:644 +#: ../src/Settings/Page/MollieSettingsPage.php:163 msgid "Log plugin events." msgstr "Plugin-Vorgänge protokollieren." -#: build/src/Mollie/WC/Helper/Settings.php:650 -#: src/Mollie/WC/Helper/Settings.php:650 +#. translators: Placeholder 1: Location of the log files +#: ../src/Settings/Page/MollieSettingsPage.php:170 msgid "Log files are saved to %s" msgstr "Protokolldateien werden unter %s gespeichert" -#: build/src/Mollie/WC/Helper/Settings.php:663 -#: build/src/Mollie/WC/Plugin.php:379 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:11 -#: src/Mollie/WC/Helper/Settings.php:663 src/Mollie/WC/Plugin.php:379 -#: src/Mollie/WC/Settings/Page/Mollie.php:11 -msgid "Mollie Settings" -msgstr "Mollie-Einstellungen" - -#: build/src/Mollie/WC/Helper/Settings.php:670 -#: src/Mollie/WC/Helper/Settings.php:670 +#: ../src/Settings/Page/MollieSettingsPage.php:192 msgid "Live API key" msgstr "Live-API-Schlüssel" #. translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:675 -#: build/src/Mollie/WC/Helper/Settings.php:697 -#: src/Mollie/WC/Helper/Settings.php:675 src/Mollie/WC/Helper/Settings.php:697 -msgid "" -"The API key is used to connect to Mollie. You can find your %s API key in your %sMollie profile%s" -msgstr "" -"Der API-Schlüssel wird für die Verbindung mit Mollie verwendet. Du findest " -"deinen %s-API-Schlüssel in deinem %sMollie-Profil%s" +#: ../src/Settings/Page/MollieSettingsPage.php:197, ../src/Settings/Page/MollieSettingsPage.php:230 +msgid "The API key is used to connect to Mollie. You can find your %1$s API key in your %2$sMollie account%3$s" +msgstr "Der API-Schlüssel wird für die Verbindung mit Mollie verwendet. Du findest deinen %1$s-API-Schlüssel in deinem %2$sMollie-Konto%3$s" -#: build/src/Mollie/WC/Helper/Settings.php:681 -#: src/Mollie/WC/Helper/Settings.php:681 +#: ../src/Settings/Page/MollieSettingsPage.php:208 msgid "Live API key should start with live_" msgstr "Der Live-API-Schlüssel sollte mit live_ beginnen" -#: build/src/Mollie/WC/Helper/Settings.php:685 -#: src/Mollie/WC/Helper/Settings.php:685 +#: ../src/Settings/Page/MollieSettingsPage.php:215 msgid "Enable test mode" msgstr "Testmodus aktivieren" -#: build/src/Mollie/WC/Helper/Settings.php:688 -#: src/Mollie/WC/Helper/Settings.php:688 -msgid "" -"Enable test mode if you want to test the plugin without using real payments." -msgstr "" -"Aktiviere den Testmodus, wenn du das Plugin ohne echte Bezahlung testen " -"möchtest." +#: ../src/Settings/Page/MollieSettingsPage.php:218 +msgid "Enable test mode if you want to test the plugin without using real payments." +msgstr "Aktiviere den Testmodus, wenn du das Plugin ohne echte Bezahlung testen möchtest." -#: build/src/Mollie/WC/Helper/Settings.php:692 -#: src/Mollie/WC/Helper/Settings.php:692 +#: ../src/Settings/Page/MollieSettingsPage.php:225 msgid "Test API key" msgstr "Test-API-Schlüssel" -#: build/src/Mollie/WC/Helper/Settings.php:703 -#: src/Mollie/WC/Helper/Settings.php:703 +#: ../src/Settings/Page/MollieSettingsPage.php:241 msgid "Test API key should start with test_" msgstr "Der Test-API-Schlüssel sollte mit test_ beginnen" -#: build/src/Mollie/WC/Helper/Settings.php:707 -#: src/Mollie/WC/Helper/Settings.php:707 +#: ../src/Settings/Page/MollieSettingsPage.php:248 msgid "Debug Log" msgstr "Debug-Protokoll" -#: build/src/Mollie/WC/Helper/Settings.php:810 -#: src/Mollie/WC/Helper/Settings.php:810 -msgid "" -"You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. " -"Enable SEPA Direct Debit if you want to allow customers to pay subscriptions " -"with iDEAL and/or other \"first\" payment methods." -msgstr "" -"Du hast WooCommerce Subscriptions aktiviert, SEPA-Direktmandate aber " -"deaktiviert. Aktiviere SEPA-Direktmandate, wenn du möchtest, dass Kunden " -"Abonnements mit iDEAL und/oder anderen „ersten“ Bezahlmethoden bezahlen " -"dürfen." - -#: build/src/Mollie/WC/Helper/Settings.php:834 -#: src/Mollie/WC/Helper/Settings.php:834 -msgid "" -"You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway " -"enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via " -"Mollie and disabling the default WooCommerce BACS payment gateway to prevent " -"possible conflicts." -msgstr "" -"Du hast das Standard-Überweisungsgateway von WooCommerce (BACS) in " -"WooCommerce aktiviert. Mollie empfiehlt ausdrücklich, die Banküberweisung " -"über Mollie zu verwenden und das Standard-Überweisungsgateway von " -"WooCommerce (BACS) zu deaktivieren, um potenzielle Konflikte zu vermeiden." - -#: build/src/Mollie/WC/Helper/Settings.php:855 -#: src/Mollie/WC/Helper/Settings.php:855 -msgid "" -"You have activated Klarna. To accept payments, please make sure all default " -"WooCommerce checkout fields are enabled and required. For more information, " -"go to %1sKlarna Pay Later documentation%2s or %3sKlarna Slice it " -"documentation%4s" -msgstr "" -"Du hast Klarna aktiviert. Um Zahlungen entgegenzunehmen, vergewissere dich " -"bitte, dass alle standardmäßigen WooCommerce-Felder für den Bezahlvorgang " -"aktiviert und verpflichtend sind. Weitere Informationen findest du in der " -"%1sDokumentation zu Klarna Pay Later%2s oder der %3sDokumentation zu Klarna " -"Slice it%4s" - -#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce version, placeholder 3: used WooCommerce version -#: build/src/Mollie/WC/Helper/Status.php:67 src/Mollie/WC/Helper/Status.php:67 -msgid "" -"The %s plugin requires at least WooCommerce version %s, you are using " -"version %s. Please update your WooCommerce plugin." -msgstr "" -"Das %s-Plugin benötigt WooCommerce %s oder höher, du verwendest Version %s. " -"Aktualisiere bitte dein WooCommerce-Plugin." - -#: build/src/Mollie/WC/Helper/Status.php:80 src/Mollie/WC/Helper/Status.php:80 -msgid "" -"Mollie API client not installed. Please make sure the plugin is installed " -"correctly." -msgstr "" -"Mobiler API-Client nicht installiert. Vergewissere dich, dass das Plugin " -"korrekt installiert ist." - -#: build/src/Mollie/WC/Helper/Status.php:89 src/Mollie/WC/Helper/Status.php:89 -msgid "" -"Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable " -"it in your server or ask your webhoster to enable it for you." -msgstr "" -"Mollie Payments for WooCommerce benötigt die JSON-Erweiterung für PHP. " -"Schalte sie auf deinem Server frei oder bitten deinen Hosting-Anbieter, sie " -"freizuschalten." - -#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP version -#: build/src/Mollie/WC/Helper/Status.php:104 -#: src/Mollie/WC/Helper/Status.php:104 -msgid "" -"Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. " -"Please upgrade and view %sthis FAQ%s" -msgstr "" -"Für Mollie-Zahlungen für WooCommerce wird mindestens PHP %s benötigt. Du " -"verwendest PHP %s. Bitte aktualisiere PHP und beachte %sdiese häufig " -"gestellten Fragen%s." - -#: build/src/Mollie/WC/Helper/Status.php:116 -#: src/Mollie/WC/Helper/Status.php:116 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension JSON to be " -"enabled. Please enable the 'json' extension in your PHP configuration." -msgstr "" -"Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung JSON benötigt. " -"Bitte aktiviere die ‚json‘-Erweiterung in deiner PHP-Konfiguration." - -#: build/src/Mollie/WC/Helper/Status.php:123 -#: src/Mollie/WC/Helper/Status.php:123 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension cURL to be " -"enabled. Please enable the 'curl' extension in your PHP configuration." -msgstr "" -"Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung cURL benötigt. " -"Bitte aktiviere die ‚curl‘-Erweiterung in deiner PHP-Konfiguration." - -#: build/src/Mollie/WC/Helper/Status.php:131 -#: src/Mollie/WC/Helper/Status.php:131 -msgid "" -"Mollie Payments for WooCommerce require PHP cURL functions to be available. " -"Please make sure all of these functions are available." -msgstr "" -"Für Mollie-Zahlungen für WooCommerce müssen PHP cURL-Funktionen verfügbar " -"sein. Vergewissere dich, dass alle diese Funktionen verfügbar sind." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:603 -#: src/Mollie/WC/Payment/Object.php:603 -msgid "" -"%s renewal payment failed via Mollie (%s). You will need to manually review " -"the payment and adjust product stocks if you use them." -msgstr "" -"Erneute %s-Zahlung über Mollie fehlgeschlagen (%s). Du musst die Zahlung " -"händisch überprüfen und, falls verwendet, die Produktbestände anpassen." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:637 -#: src/Mollie/WC/Payment/Object.php:637 -msgid "%s payment failed via Mollie (%s)." -msgstr "%s-Bezahlung über Mollie fehlgeschlagen (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:677 -#: src/Mollie/WC/Payment/Object.php:677 -msgid "" -"Mollie webhook called, but payment also started via %s, so the order status " -"is not updated." -msgstr "" -"Der Mollie-WebHook wurde aufgerufen, die Zahlung wurde jedoch gleichzeitig " -"über %s gestartet. Der Bestellstatus wird deshalb nicht aktualisiert." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:262 -#: build/src/Mollie/WC/Payment/Payment.php:247 -#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:247 -msgid "Order completed using %s payment (%s)." -msgstr "Bestellung über %s-Bezahlung %s abgeschlossen." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:314 -#: src/Mollie/WC/Payment/Order.php:314 -msgid "" -"Order authorized using %s payment (%s). Set order to completed in " -"WooCommerce when you have shipped the products, to capture the payment. Do " -"this within 28 days, or the order will expire. To handle individual order " -"lines, process the order via the Mollie Dashboard." -msgstr "" -"Bestellung über %s-Bezahlung (%s) autorisiert. Setze die Bestellung in " -"WooCommerce auf abgeschlossen, wenn du die Produkte versandt hast, um die " -"Bezahlung zu erfassen. Erledige dies innerhalb von 28 Tagen, ansonsten " -"verfällt die Bestellung. Um individuelle Auftragszeilen abzuwickeln, " -"verarbeite die Bestellung über das Mollie-Dashboard." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:361 -#: src/Mollie/WC/Payment/Order.php:361 -msgid "" -"Order completed at Mollie for %s order (%s). At least one order line " -"completed. Remember: Completed status for an order at Mollie is not the same " -"as Completed status in WooCommerce!" -msgstr "" -"Bestellvorgang bei Mollie für %s-Bestellung (%s) abgeschlossen. Mindestens " -"eine Auftragszeile abgeschlossen. Hinweis: Der abgeschlossene Status bei " -"Mollie ist nicht mit dem abgeschlossenen Status bei WooCommerce " -"gleichzusetzen." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:444 -#: src/Mollie/WC/Payment/Order.php:444 -msgid "%s order (%s) cancelled ." -msgstr "%s-Bestellung (%s) abgebrochen." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:509 -#: src/Mollie/WC/Payment/Order.php:509 -msgid "" -"%s order expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s-Bestellung (%s) abgelaufen, wegen einer weiteren offenen Zahlung (%s) " -"jedoch nicht abgebrochen." - -#. translators: Order note error -#: src/Mollie/WC/Payment/Order.php:619 -msgid "" -"The sum of refunds for all order lines is not identical to the refund " -"amount, so this refund will be processed as a payment amount refund, not an " -"order line refund." -msgstr "" -"Die Summe der Rückerstattungen aller Auftragszeilen stimmt nicht mit dem " -"Rückerstattungsbetrag überein, die Rückerstattung wird deshalb als " -"Rückerstattung des Zahlungsbetrags und nicht als Rückerstattung der " -"Auftragszeilen bearbeitet." - -#. translators: Placeholder 1: payment status. -#: src/Mollie/WC/Payment/Order.php:619 -msgid "Can not refund order amount that has status %1$s at Mollie." -msgstr "" -"Ein Zahlungsbetrag mit dem Status %1$s bei Mollie kann nicht rückerstattet " -"werden." - -#: build/src/Mollie/WC/Payment/Order.php:742 -#: src/Mollie/WC/Payment/Order.php:742 -msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie." -msgstr "%sx %s storniert für %s%s bei WooCommerce und Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:758 -#: src/Mollie/WC/Payment/Order.php:758 -msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"%sx %s erstattet für %s%s bei WooCommerce und Mollie.%s Erstattungs-ID: %s." - -#: build/src/Mollie/WC/Payment/Order.php:836 -#: src/Mollie/WC/Payment/Order.php:836 -msgid "" -"Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"Erstattungsbetrag von %s erstatteten %s bei WooCommerce und Mollie.%s " -"Erstattungs-ID: %s." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:931 -#: src/Mollie/WC/Payment/Order.php:931 -msgid "%s order (%s) expired ." -msgstr "%s-Bestellung (%s) abgelaufen." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -msgid "" -"One of the WooCommerce order items does not have the refund item ID meta " -"value associated to Mollie Order item." -msgstr "" -"Eine der WooCommerce-Auftragspositionen stimmt nicht mit dem entsprechenden " -"Metawert für die ID des Rückerstattungsartikels der Mollie-Auftragsposition " -"überein." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -msgid "" -"Impossible to retrieve the order item ID related to the remote item: %1$s. " -"Try to do a refund by amount." -msgstr "" -"Die Auftragspositions-ID zum folgenden Remote-Artikel konnte nicht abgerufen " -"werden: %1$s. Versuche, eine Rückerstattung nach Betrag durchzuführen." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -msgid "Empty WooCommerce order items or mollie order lines." -msgstr "Leere WooCommerce-Auftragspositionen oder Mollie-Auftragszeilen." - -#. translators: Placeholder 1: order number -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: build/src/Mollie/WC/Payment/Payment.php:132 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: src/Mollie/WC/Payment/Payment.php:132 -msgctxt "Payment description for {orderNumber}" -msgid "Order {orderNumber}" -msgstr "Bestellung {orderNumber}" - -#. translators: Placeholder 1: store name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: build/src/Mollie/WC/Payment/Payment.php:143 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: src/Mollie/WC/Payment/Payment.php:143 -msgctxt "Payment description for {storeName}" -msgid "StoreName {storeName}" -msgstr "Name des Shops {storeName}" - -#. translators: Placeholder 1: customer first name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: build/src/Mollie/WC/Payment/Payment.php:154 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: src/Mollie/WC/Payment/Payment.php:154 -msgctxt "Payment description for {customer.firstname}" -msgid "Customer Firstname {customer.firstname}" -msgstr "Vorname des Kunden {customer.firstname}" - -#. translators: Placeholder 1: customer last name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: build/src/Mollie/WC/Payment/Payment.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: src/Mollie/WC/Payment/Payment.php:165 -msgctxt "Payment description for {customer.lastname}" -msgid "Customer Lastname {customer.lastname}" -msgstr "Nachname des Kunden {customer.lastname}" - -#. translators: Placeholder 1: customer company name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: build/src/Mollie/WC/Payment/Payment.php:176 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: src/Mollie/WC/Payment/Payment.php:176 -msgctxt "Payment description for {customer.company}" -msgid "Customer Company {customer.company}" -msgstr "Firma des Kunden {customer.company}" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:334 -#: src/Mollie/WC/Payment/Payment.php:334 -msgid "%s payment (%s) cancelled ." -msgstr "%s-Bezahlvorgang (%s) abgebrochen." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:328 -msgid "Processing a payment, no capture needed" -msgstr "Ein Bezahlvorgang wird bearbeitet, keine Erfassung notwendig" - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:342 -msgid "Order already canceled at Mollie, can not be shipped/captured." -msgstr "" -"Die Bestellung wurde bei Mollie bereits storniert und kann nicht versandt/" -"erfasst werden." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:350 -msgid "Order already completed at Mollie, can not be shipped/captured." -msgstr "" -"Die Bestellung wurde bei Mollie bereits abgearbeitet und kann nicht versandt/" -"erfasst werden." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:359 -msgid "" -"Order successfully updated to shipped at Mollie, capture of funds underway." -msgstr "" -"Die Bestellung wurde bei Mollie erfolgreich auf versandt aktualisiert, " -"Erfassung der Geldmittel in Bearbeitung." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:365 -msgid "Order not paid or authorized at Mollie yet, can not be shipped." -msgstr "" -"Die Bestellung wurde bei Mollie noch nicht bezahlt oder autorisiert und kann " -"nicht versandt werden." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:399 -msgid "" -"Order contains Mollie payment method, but not a valid Mollie Order ID. " -"Canceling order failed." -msgstr "" -"Die Bestellung enthält eine Mollie-Zahlungsmethode, aber keine gültige " -"Mollie-Bestell-ID. Stornierung der Bestellung fehlgeschlagen." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:420 -msgid "Order already canceled at Mollie, can not be canceled again." -msgstr "" -"Die Bestellung wurde bei Mollie bereits storniert und kann nicht erneut " -"storniert werden." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:430 -msgid "Order also cancelled at Mollie." -msgstr "Bestellung auch bei Mollie storniert." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:436 -msgid "Order could not be canceled at Mollie, because order status is " -msgstr "" -"Bestellung konnte bei Mollie nicht storniert werden, da der Bestellstatus " - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:404 -#: src/Mollie/WC/Payment/Payment.php:404 -msgid "" -"%s payment expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s-Zahlung (%s) abgelaufen, wegen einer weiteren offenen Zahlung (%s) jedoch " -"nicht abgebrochen ist." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:427 -#: src/Mollie/WC/Payment/Payment.php:427 -msgid "%s payment expired (%s)." -msgstr "%s-Zahlung abgelaufen (%s)." - -#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID -#: build/src/Mollie/WC/Payment/Payment.php:509 -#: src/Mollie/WC/Payment/Payment.php:509 -msgid "Refunded %s%s%s - Payment: %s, Refund: %s" -msgstr "Rückerstattung %s%s%s – Zahlung: %s, Rückerstattung: %s" - -#: build/src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -msgid "" -"Mollie doesn't allow a partial refund of the full amount or quantity of at " -"least one order line. Trying to process this as an amount refund instead." -msgstr "" -"Mollie erlaubt keine teilweise Rückerstattung des vollen Betrags oder der " -"vollen Menge mindestens einer Auftragszeile. Es wird stattdessen versucht, " -"die Eingabe als Erstattungsbetrag zu verarbeiten." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Plugin.php:128 src/Mollie/WC/Plugin.php:128 -msgid "%s payment failed (%s)." -msgstr "%s-Bezahlung fehlgeschlagen (%s)." - -#: build/src/Mollie/WC/Plugin.php:303 src/Mollie/WC/Plugin.php:303 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s " -"disable it%4$s before deploying into production." -msgstr "" -"%1$sMollie-Zahlungen für WooCommerce%2$s Der Testmodus ist aktiv. %3$s " -"Deaktiviere den Testmodus,%4$s bevor du in die Produktionsumgebung wechselst." - -#: build/src/Mollie/WC/Plugin.php:411 build/src/Mollie/WC/Plugin.php:444 -#: build/src/Mollie/WC/Plugin.php:466 src/Mollie/WC/Plugin.php:411 -#: src/Mollie/WC/Plugin.php:444 src/Mollie/WC/Plugin.php:466 -msgid "Mollie Voucher Category" -msgstr "Mollie-Gutscheinkategorie" - -#: build/src/Mollie/WC/Plugin.php:414 build/src/Mollie/WC/Plugin.php:446 -#: build/src/Mollie/WC/Plugin.php:469 src/Mollie/WC/Plugin.php:414 -#: src/Mollie/WC/Plugin.php:446 src/Mollie/WC/Plugin.php:469 -msgid "--Please choose an option--" -msgstr "--Bitte eine Option wählen--" - -#: build/src/Mollie/WC/Plugin.php:415 build/src/Mollie/WC/Plugin.php:447 -#: build/src/Mollie/WC/Plugin.php:470 build/src/Mollie/WC/Plugin.php:583 -#: src/Mollie/WC/Plugin.php:415 src/Mollie/WC/Plugin.php:447 -#: src/Mollie/WC/Plugin.php:470 src/Mollie/WC/Plugin.php:583 -msgid "No Category" -msgstr "Keine Kategorie" - -#: build/src/Mollie/WC/Plugin.php:416 build/src/Mollie/WC/Plugin.php:448 -#: build/src/Mollie/WC/Plugin.php:471 build/src/Mollie/WC/Plugin.php:584 -#: src/Mollie/WC/Plugin.php:416 src/Mollie/WC/Plugin.php:448 -#: src/Mollie/WC/Plugin.php:471 src/Mollie/WC/Plugin.php:584 -msgid "Meal" -msgstr "Essen" - -#: build/src/Mollie/WC/Plugin.php:417 build/src/Mollie/WC/Plugin.php:449 -#: build/src/Mollie/WC/Plugin.php:472 build/src/Mollie/WC/Plugin.php:585 -#: src/Mollie/WC/Plugin.php:417 src/Mollie/WC/Plugin.php:449 -#: src/Mollie/WC/Plugin.php:472 src/Mollie/WC/Plugin.php:585 -msgid "Eco" -msgstr "Öko" - -#: build/src/Mollie/WC/Plugin.php:418 build/src/Mollie/WC/Plugin.php:450 -#: build/src/Mollie/WC/Plugin.php:473 build/src/Mollie/WC/Plugin.php:586 -#: src/Mollie/WC/Plugin.php:418 src/Mollie/WC/Plugin.php:450 -#: src/Mollie/WC/Plugin.php:473 src/Mollie/WC/Plugin.php:586 -msgid "Gift" -msgstr "Geschenk" - -#: build/src/Mollie/WC/Plugin.php:452 build/src/Mollie/WC/Plugin.php:475 -#: src/Mollie/WC/Plugin.php:452 src/Mollie/WC/Plugin.php:475 -msgid "Select a voucher category to apply to all products with this category" -msgstr "" -"Wähle eine Gutscheinkategorie aus, die auf alle Produkte dieser Kategorie " -"angewendet werden soll" - -#: build/src/Mollie/WC/Plugin.php:512 src/Mollie/WC/Plugin.php:512 -msgid "Products voucher category" -msgstr "Produktgutschein-Kategorie" - -#: build/src/Mollie/WC/Plugin.php:519 build/src/Mollie/WC/Plugin.php:582 -#: src/Mollie/WC/Plugin.php:519 src/Mollie/WC/Plugin.php:582 -msgid "Same as default category" -msgstr "Entspricht Standardkategorie" +#: ../src/Settings/Page/MollieSettingsPage.php:300 +msgid "Gateway enabled" +msgstr "Gateway aktiviert" -#: build/src/Mollie/WC/Plugin.php:529 src/Mollie/WC/Plugin.php:529 -msgid "" -"In order to process it, all products in the order must have a category. To " -"disable the product from voucher selection select \"No category\" option." -msgstr "" -"Um weiterverarbeitet werden zu können, müssen alle Produkte der Bestellung " -"eine Kategorie haben. Um das Produkt von der Gutscheinauswahl " -"auszuschließen, wähle die Option „Keine Kategorie“." +#: ../src/Settings/Page/MollieSettingsPage.php:304 +msgid "Gateway disabled" +msgstr "Gateway deaktiviert" -#: build/src/Mollie/WC/Plugin.php:579 src/Mollie/WC/Plugin.php:579 -msgid "Mollie Voucher category" -msgstr "Mollie-Gutscheinkategorie" +#: ../src/Settings/Page/MollieSettingsPage.php:307 +msgid "Disabled" +msgstr "Deaktiviert" -#: build/src/Mollie/WC/Plugin.php:727 src/Mollie/WC/Plugin.php:727 -msgid "%1$s items refunded in WooCommerce and at Mollie." -msgstr "%1$s erstattete Artikel bei WooCommerce und Mollie." +#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Settings/Page/MollieSettingsPage.php:318 +msgid "The following payment methods are activated in your %1$sMollie profile%2$s:" +msgstr "Die folgenden Bezahlmethoden sind in deinem %1$sMollie-Profil%2$s aktiviert:" -#: build/src/Mollie/WC/Plugin.php:745 src/Mollie/WC/Plugin.php:745 -msgid "%1$s items cancelled in WooCommerce and at Mollie." -msgstr "%1$s stornierte Artikel bei WooCommerce und Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:333 +msgid "Refresh" +msgstr "Aktualisieren" -#: build/src/Mollie/WC/Plugin.php:919 src/Mollie/WC/Plugin.php:919 -msgid "Name on card" -msgstr "Name auf der Karte" +#: ../src/Settings/Page/MollieSettingsPage.php:342 +msgid "No payment methods available" +msgstr "Keine Zahlungsmethoden verfügbar" -#: build/src/Mollie/WC/Plugin.php:923 src/Mollie/WC/Plugin.php:923 -msgid "Card number" -msgstr "Kartennummer" +#: ../src/Settings/Page/MollieSettingsPage.php:357 +msgid "Edit" +msgstr "Bearbeiten" -#: build/src/Mollie/WC/Plugin.php:931 src/Mollie/WC/Plugin.php:931 -msgid "CVC/CVV" -msgstr "CVC/CVV" +#: ../src/Settings/Page/MollieSettingsPage.php:365 +msgid "Activate" +msgstr "Aktivieren" -#: build/src/Mollie/WC/Plugin.php:938 src/Mollie/WC/Plugin.php:938 -msgid "An unknown error occurred, please check the card fields." -msgstr "" -"Ein unbekannter Fehler ist aufgetreten, bitte überprüfe die Kartenfelder." +#: ../src/Settings/Page/MollieSettingsPage.php:411 +msgid "You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. Enable SEPA Direct Debit if you want to allow customers to pay subscriptions with iDEAL and/or other \"first\" payment methods." +msgstr "Du hast WooCommerce Subscriptions aktiviert, SEPA-Direktmandate aber deaktiviert. Aktiviere SEPA-Direktmandate, wenn du möchtest, dass Kunden Abonnements mit iDEAL und/oder anderen „ersten“ Bezahlmethoden bezahlen dürfen." -#: build/src/Mollie/WC/Plugin.php:1295 src/Mollie/WC/Plugin.php:1295 -msgid "Mollie settings" -msgstr "Mollie-Einstellungen" +#: ../src/Settings/Page/MollieSettingsPage.php:437 +msgid "You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via Mollie and disabling the default WooCommerce BACS payment gateway to prevent possible conflicts." +msgstr "Du hast das Standard-Überweisungsgateway von WooCommerce (BACS) in WooCommerce aktiviert. Mollie empfiehlt ausdrücklich, die Banküberweisung über Mollie zu verwenden und das Standard-Überweisungsgateway von WooCommerce (BACS) zu deaktivieren, um potenzielle Konflikte zu vermeiden." -#: build/src/Mollie/WC/Plugin.php:1301 src/Mollie/WC/Plugin.php:1301 -msgid "Logs" -msgstr "Protokolle" +#. translators: Placeholder 1: Opening link tag. Placeholder 2: Closing link tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/Page/MollieSettingsPage.php:461 +msgid "You have activated Klarna. To accept payments, please make sure all default WooCommerce checkout fields are enabled and required. For more information, go to %1$sKlarna Pay Later documentation%2$s or %3$sKlarna Slice it documentation%4$s" +msgstr "Du hast Klarna aktiviert. Um Zahlungen entgegenzunehmen, vergewissere dich bitte, dass alle standardmäßigen WooCommerce-Felder für den Bezahlvorgang aktiviert und verpflichtend sind. Weitere Informationen findest du in der %1$sDokumentation zu Klarna Pay Later%2$s oder der %3$sDokumentation zu Klarna Slice it%4$s" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:138 -#: src/Mollie/WC/Settings/Page/Mollie.php:138 +#: ../src/Settings/Page/MollieSettingsPage.php:702 msgid "General" msgstr "Allgemein" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:143 -#: src/Mollie/WC/Settings/Page/Mollie.php:143 -msgid "Apple Pay Button" -msgstr "Schaltfläche Apple Pay" - -#: build/src/Mollie/WC/Settings/Page/Mollie.php:147 -#: src/Mollie/WC/Settings/Page/Mollie.php:147 +#: ../src/Settings/Page/MollieSettingsPage.php:707 msgid "Advanced" msgstr "Fortgeschritten" -#: src/Mollie/WC/Gateway/Abstract.php:1987 -msgid "%1$s Secure payments provided by %2$s" -msgstr "%1$s Sichere Zahlungen bereitgestellt durch %2$s" +#: ../src/Settings/Page/MollieSettingsPage.php:710 +msgid "Apple Pay Button" +msgstr "Schaltfläche Apple Pay" diff --git a/languages/mollie-payments-for-woocommerce-de_DE_formal.mo b/languages/mollie-payments-for-woocommerce-de_DE_formal.mo index eb270ed0c..6234eb3d3 100644 Binary files a/languages/mollie-payments-for-woocommerce-de_DE_formal.mo and b/languages/mollie-payments-for-woocommerce-de_DE_formal.mo differ diff --git a/languages/mollie-payments-for-woocommerce-de_DE_formal.po b/languages/mollie-payments-for-woocommerce-de_DE_formal.po index 6d5d9dcb6..27f62637b 100644 --- a/languages/mollie-payments-for-woocommerce-de_DE_formal.po +++ b/languages/mollie-payments-for-woocommerce-de_DE_formal.po @@ -1,2895 +1,1975 @@ -# Copyright (C) 2021 Mollie -# This file is distributed under the same license as the Mollie Payments for WooCommerce plugin. +# Copyright (C) 2022 unnamed project +# This file is distributed under the same license as the unnamed project package. msgid "" msgstr "" -"Project-Id-Version: Mollie Payments for WooCommerce 6.7.0\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mollie-payments-" -"for-woocommerce\n" -"POT-Creation-Date: 2021-11-12T07:59:02+00:00\n" -"PO-Revision-Date: 2022-06-20 11:18+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: de_DE@formal\n" +"Project-Id-Version: Mollie Payments for WooCommerce 7.3.3\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: undefined\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.1\n" -"X-Domain: mollie-payments-for-woocommerce\n" -#. Plugin Name of the plugin -msgid "Mollie Payments for WooCommerce" -msgstr "Mollie-Zahlungen für WooCommerce" - -#. Plugin URI of the plugin -#. Author URI of the plugin -msgid "https://www.mollie.com" -msgstr "https://www.mollie.com" - -#. Description of the plugin -msgid "Accept payments in WooCommerce with the official Mollie plugin" -msgstr "WooCommerce-Zahlungen mit dem offiziellen Mollie-Plugin akzeptieren" - -#. Author of the plugin -msgid "Mollie" -msgstr "Mollie" - -#: build/inc/settings/mollie_advanced_settings.php:6 -#: inc/settings/mollie_advanced_settings.php:6 -msgid "Mollie advanced settings" -msgstr "Fortgeschrittene Mollie-Einstellungen" - -#: build/inc/settings/mollie_advanced_settings.php:8 -#: inc/settings/mollie_advanced_settings.php:8 +#: ../inc/settings/mollie_advanced_settings.php:12 msgctxt "Label {orderNumber} description for payment description options" msgid "Order number" msgstr "Bestellnummer" -#: build/inc/settings/mollie_advanced_settings.php:9 -#: inc/settings/mollie_advanced_settings.php:9 +#: ../inc/settings/mollie_advanced_settings.php:13 msgctxt "Label {storeName} description for payment description options" msgid "Site Title" msgstr "Seitentitel" -#: build/inc/settings/mollie_advanced_settings.php:10 -#: inc/settings/mollie_advanced_settings.php:10 -msgctxt "" -"Label {customer.firstname} description for payment description options" +#: ../inc/settings/mollie_advanced_settings.php:14 +msgctxt "Label {customer.firstname} description for payment description options" msgid "Customer's first name" msgstr "Vorname des Kunden" -#: build/inc/settings/mollie_advanced_settings.php:11 -#: inc/settings/mollie_advanced_settings.php:11 +#: ../inc/settings/mollie_advanced_settings.php:15 msgctxt "Label {customer.lastname} description for payment description options" msgid "Customer's last name" msgstr "Nachname des Kunden" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:16 msgctxt "Label {customer.company} description for payment description options" msgid "Customer's company name" msgstr "Firmenname des Kunden" -#: build/inc/settings/mollie_advanced_settings.php:8 -#: build/src/Mollie/WC/Helper/Settings.php:666 -#: inc/settings/mollie_advanced_settings.php:8 -#: src/Mollie/WC/Helper/Settings.php:666 -msgid "" -"The following options are required to use the plugin and are used by all " -"Mollie payment methods" -msgstr "" -"Die folgenden Optionen sind für die Verwendung des Plugins verpflichtend und " -"werden von allen Mollie-Bezahlmethoden verwendet" +#: ../inc/settings/mollie_advanced_settings.php:22 +msgid "Mollie advanced settings" +msgstr "Fortgeschrittene Mollie-Einstellungen" + +#: ../inc/settings/mollie_advanced_settings.php:24, ../src/Settings/Page/MollieSettingsPage.php:185 +msgid "The following options are required to use the plugin and are used by all Mollie payment methods" +msgstr "Die folgenden Optionen sind für die Verwendung des Plugins verpflichtend und werden von allen Mollie-Bezahlmethoden verwendet" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:28 msgid "Order status after cancelled payment" msgstr "Bestellstatus nach stornierter Zahlung" -#: build/inc/settings/mollie_advanced_settings.php:18 -#: inc/settings/mollie_advanced_settings.php:18 -msgid "" -"Status for orders when a payment (not a Mollie order via the Orders API) is " -"cancelled. Default: pending. Orders with status Pending can be paid with " -"another payment method, customers can try again. Cancelled orders are final. " -"Set this to Cancelled if you only have one payment method or don't want " -"customers to re-try paying with a different payment method. This doesn't " -"apply to payments for orders via the new Orders API and Klarna payments." -msgstr "" -"Status für Bestellungen bei stornierter Bezahlung (keine Mollie-Bestellung " -"über die Bestellungs-API). Standard: ausstehend Bestellungen mit " -"ausstehendem Status können über eine andere Bezahlmethode abgewickelt " -"werden, Kunden können die Bezahlung erneut versuchen. Stornierte " -"Bestellungen sind final. Setzen Sie den Status auf storniert, wenn Sie nur " -"eine Bezahlmethode anbieten oder nicht möchten, dass Kunden die Bezahlung " -"mit einer anderen Bezahlmethode erneut versuchen. Dies trifft nicht auf " -"Zahlungen für Bestellungen über die neue Bestellungs-API oder Klarna-" -"Zahlungen zu." - -#: build/inc/settings/mollie_advanced_settings.php:23 -#: inc/settings/mollie_advanced_settings.php:23 +#: ../inc/settings/mollie_advanced_settings.php:31 +msgid "Pending" +msgstr "Offen" + +#: ../inc/settings/mollie_advanced_settings.php:32 +msgid "Cancelled" +msgstr "Storniert" + +#: ../inc/settings/mollie_advanced_settings.php:34 +msgid "Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don't want customers to re-try paying with a different payment method. This doesn't apply to payments for orders via the new Orders API and Klarna payments." +msgstr "Status für Bestellungen bei stornierter Bezahlung (keine Mollie-Bestellung über die Bestellungs-API). Standard: ausstehend Bestellungen mit ausstehendem Status können über eine andere Bezahlmethode abgewickelt werden, Kunden können die Bezahlung erneut versuchen. Stornierte Bestellungen sind final. Setzen Sie den Status auf storniert, wenn Sie nur eine Bezahlmethode anbieten oder nicht möchten, dass Kunden die Bezahlung mit einer anderen Bezahlmethode erneut versuchen. Dies trifft nicht auf Zahlungen für Bestellungen über die neue Bestellungs-API oder Klarna-Zahlungen zu." + +#: ../inc/settings/mollie_advanced_settings.php:39 msgid "Payment screen language" msgstr "Sprache der Bezahlseite" -#: build/inc/settings/mollie_advanced_settings.php:26 -#: inc/settings/mollie_advanced_settings.php:26 +#: ../inc/settings/mollie_advanced_settings.php:42 msgid "Automatically send WordPress language" msgstr "WordPress-Sprache automatisch übermitteln" -#: build/inc/settings/mollie_advanced_settings.php:29 -#: build/inc/settings/mollie_advanced_settings.php:90 -#: build/src/Mollie/WC/Helper/Settings.php:288 -#: inc/settings/mollie_advanced_settings.php:29 -#: inc/settings/mollie_advanced_settings.php:90 -#: src/Mollie/WC/Helper/Settings.php:288 +#: ../inc/settings/mollie_advanced_settings.php:45, ../inc/settings/mollie_advanced_settings.php:105, ../src/Settings/General/MollieGeneralSettings.php:266 msgid "default" msgstr "Standard" -#: build/inc/settings/mollie_advanced_settings.php:30 -#: inc/settings/mollie_advanced_settings.php:30 +#: ../inc/settings/mollie_advanced_settings.php:46 msgid "Detect using browser language" msgstr "Über Browsersprache erkennen" -#: build/inc/settings/mollie_advanced_settings.php:34 -#: inc/settings/mollie_advanced_settings.php:34 +#: ../inc/settings/mollie_advanced_settings.php:50 msgid "English" msgstr "Englisch" -#: build/inc/settings/mollie_advanced_settings.php:35 -#: inc/settings/mollie_advanced_settings.php:35 +#: ../inc/settings/mollie_advanced_settings.php:51 msgid "Dutch" msgstr "Niederländisch" -#: build/inc/settings/mollie_advanced_settings.php:36 -#: inc/settings/mollie_advanced_settings.php:36 +#: ../inc/settings/mollie_advanced_settings.php:52 msgid "Flemish (Belgium)" msgstr "Flämisch (Belgien)" -#: build/inc/settings/mollie_advanced_settings.php:37 -#: inc/settings/mollie_advanced_settings.php:37 +#: ../inc/settings/mollie_advanced_settings.php:53 msgid "French" msgstr "Französisch" -#: build/inc/settings/mollie_advanced_settings.php:38 -#: inc/settings/mollie_advanced_settings.php:38 +#: ../inc/settings/mollie_advanced_settings.php:54 msgid "French (Belgium)" msgstr "Französisch (Belgien)" -#: build/inc/settings/mollie_advanced_settings.php:39 -#: inc/settings/mollie_advanced_settings.php:39 +#: ../inc/settings/mollie_advanced_settings.php:55 msgid "German" msgstr "Deutsch" -#: build/inc/settings/mollie_advanced_settings.php:40 -#: inc/settings/mollie_advanced_settings.php:40 +#: ../inc/settings/mollie_advanced_settings.php:56 msgid "Austrian German" msgstr "Deutsch (Österreich)" -#: build/inc/settings/mollie_advanced_settings.php:41 -#: inc/settings/mollie_advanced_settings.php:41 +#: ../inc/settings/mollie_advanced_settings.php:57 msgid "Swiss German" msgstr "Deutsch (Schweiz)" -#: build/inc/settings/mollie_advanced_settings.php:42 -#: inc/settings/mollie_advanced_settings.php:42 +#: ../inc/settings/mollie_advanced_settings.php:58 msgid "Spanish" msgstr "Spanisch" -#: build/inc/settings/mollie_advanced_settings.php:43 -#: inc/settings/mollie_advanced_settings.php:43 +#: ../inc/settings/mollie_advanced_settings.php:59 msgid "Catalan" msgstr "Katalanisch" -#: build/inc/settings/mollie_advanced_settings.php:44 -#: inc/settings/mollie_advanced_settings.php:44 +#: ../inc/settings/mollie_advanced_settings.php:60 msgid "Portuguese" msgstr "Portugiesisch" -#: build/inc/settings/mollie_advanced_settings.php:45 -#: inc/settings/mollie_advanced_settings.php:45 +#: ../inc/settings/mollie_advanced_settings.php:61 msgid "Italian" msgstr "Italienisch" -#: build/inc/settings/mollie_advanced_settings.php:46 -#: inc/settings/mollie_advanced_settings.php:46 +#: ../inc/settings/mollie_advanced_settings.php:62 msgid "Norwegian" msgstr "Norwegisch" -#: build/inc/settings/mollie_advanced_settings.php:47 -#: inc/settings/mollie_advanced_settings.php:47 +#: ../inc/settings/mollie_advanced_settings.php:63 msgid "Swedish" msgstr "Schwedisch" -#: build/inc/settings/mollie_advanced_settings.php:48 -#: inc/settings/mollie_advanced_settings.php:48 +#: ../inc/settings/mollie_advanced_settings.php:64 msgid "Finnish" msgstr "Finnisch" -#: build/inc/settings/mollie_advanced_settings.php:49 -#: inc/settings/mollie_advanced_settings.php:49 +#: ../inc/settings/mollie_advanced_settings.php:65 msgid "Danish" msgstr "Dänisch" -#: build/inc/settings/mollie_advanced_settings.php:50 -#: inc/settings/mollie_advanced_settings.php:50 +#: ../inc/settings/mollie_advanced_settings.php:66 msgid "Icelandic" msgstr "Isländisch" -#: build/inc/settings/mollie_advanced_settings.php:51 -#: inc/settings/mollie_advanced_settings.php:51 +#: ../inc/settings/mollie_advanced_settings.php:67 msgid "Hungarian" msgstr "Ungarisch" -#: build/inc/settings/mollie_advanced_settings.php:52 -#: inc/settings/mollie_advanced_settings.php:52 +#: ../inc/settings/mollie_advanced_settings.php:68 msgid "Polish" msgstr "Polnisch" -#: build/inc/settings/mollie_advanced_settings.php:53 -#: inc/settings/mollie_advanced_settings.php:53 +#: ../inc/settings/mollie_advanced_settings.php:69 msgid "Latvian" msgstr "Lettisch" -#: build/inc/settings/mollie_advanced_settings.php:54 -#: inc/settings/mollie_advanced_settings.php:54 +#: ../inc/settings/mollie_advanced_settings.php:70 msgid "Lithuanian" msgstr "Litauisch" -#: build/inc/settings/mollie_advanced_settings.php:57 -#: inc/settings/mollie_advanced_settings.php:57 -msgid "" -"Sending a language (or locale) is required. The option 'Automatically send " -"WordPress language' will try to get the customer's language in WordPress " -"(and respects multilanguage plugins) and convert it to a format Mollie " -"understands. If this fails, or if the language is not supported, it will " -"fall back to American English. You can also select one of the locales " -"currently supported by Mollie, that will then be used for all customers." -msgstr "" -"Sie müssen eine Sprache (oder locale) übermitteln. Bei Verwendung der Option " -"‚WordPress-Sprache automatisch übermitteln‘ wird versucht, die " -"Spracheinstellung des Kunden bei WordPress abzurufen (dabei werden " -"mehrsprachige Plug-ins berücksichtigt) und in ein Mollie-kompatibles Format " -"zu übertragen. Scheitert dies, oder wird die Sprache nicht unterstützt, wird " -"auf American English zurückgegriffen. Sie können auch eine momentan von " -"Mollie unterstützte locale verwenden, die dann für alle Kunden angewandt " -"wird." - -#: build/inc/settings/mollie_advanced_settings.php:65 -#: inc/settings/mollie_advanced_settings.php:65 +#: ../inc/settings/mollie_advanced_settings.php:73 +msgid "Sending a language (or locale) is required. The option 'Automatically send WordPress language' will try to get the customer's language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers." +msgstr "Sie müssen eine Sprache (oder locale) übermitteln. Bei Verwendung der Option ‚WordPress-Sprache automatisch übermitteln‘ wird versucht, die Spracheinstellung des Kunden bei WordPress abzurufen (dabei werden mehrsprachige Plug-ins berücksichtigt) und in ein Mollie-kompatibles Format zu übertragen. Scheitert dies, oder wird die Sprache nicht unterstützt, wird auf American English zurückgegriffen. Sie können auch eine momentan von Mollie unterstützte locale verwenden, die dann für alle Kunden angewandt wird." + +#: ../inc/settings/mollie_advanced_settings.php:81 msgid "Store customer details at Mollie" msgstr "Kundendetails des Geschäfts bei Mollie" -#: build/inc/settings/mollie_advanced_settings.php:68 -#: inc/settings/mollie_advanced_settings.php:68 -msgid "" -"Should Mollie store customers name and email address for Single Click " -"Payments? Default %1$s. Required if WooCommerce Subscriptions " -"is being used! Read more about " -"%2$s and how it improves your conversion." -msgstr "" -"Soll Mollie den Namen und die E-Mail-Adresse des Kunden für Single-Click-" -"Bezahlungen speichern? Standard: %1$s. Verpflichtend bei " -"Verwendung von WooCommerce Subscriptions. Mollie-Komponenten für dieses " -"Portal verwenden. Erfahren Sie mehr über %2$s und wie es Ihren Umsatz steigert." - -#: build/inc/settings/mollie_advanced_settings.php:72 -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: inc/settings/mollie_advanced_settings.php:72 -#: src/Mollie/WC/Helper/Settings.php:551 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_advanced_settings.php:84 +msgid "Should Mollie store customers name and email address for Single Click Payments? Default %1$s. Required if WooCommerce Subscriptions is being used! Read more about %2$s and how it improves your conversion." +msgstr "Soll Mollie den Namen und die E-Mail-Adresse des Kunden für Single-Click-Bezahlungen speichern? Standard: %1$s. Verpflichtend bei Verwendung von WooCommerce Subscriptions. Mollie-Komponenten für dieses Portal verwenden. Erfahren Sie mehr über %2$s und wie es Ihren Umsatz steigert." + +#: ../inc/settings/mollie_advanced_settings.php:88, ../src/Settings/Page/MollieSettingsPage.php:303 msgid "Enabled" msgstr "Aktiv" -#: build/inc/settings/mollie_advanced_settings.php:73 -#: inc/settings/mollie_advanced_settings.php:73 +#: ../inc/settings/mollie_advanced_settings.php:89 msgid "Single Click Payments" msgstr "Zahlungen mit einem Klick" -#: build/inc/settings/mollie_advanced_settings.php:82 -#: inc/settings/mollie_advanced_settings.php:82 +#: ../inc/settings/mollie_advanced_settings.php:97 msgid "Select API Method" msgstr "API-Methode auswählen" -#: build/inc/settings/mollie_advanced_settings.php:99 -#: inc/settings/mollie_advanced_settings.php:99 -msgid "" -"Click %shere%s to read more about the differences between the Payments and " -"Orders API" -msgstr "" -"%sHier%s erfahren Sie mehr über die Unterschiede zwischen der Payments API " -"und der Orders API" +#. translators: Placeholder 1: opening link tag, placeholder 2: closing link tag +#: ../inc/settings/mollie_advanced_settings.php:114 +msgid "Click %1$shere%2$s to read more about the differences between the Payments and Orders API" +msgstr "%1$sHier%2$s erfahren Sie mehr über die Unterschiede zwischen der Payments API und der Orders API" -#: build/inc/settings/mollie_advanced_settings.php:109 -#: inc/settings/mollie_advanced_settings.php:109 +#: ../inc/settings/mollie_advanced_settings.php:124 msgid "API Payment Description" msgstr "Beschreibung für Zahlung über API" -#: build/inc/settings/mollie_advanced_settings.php:137 -#: inc/settings/mollie_advanced_settings.php:137 +#: ../inc/settings/mollie_advanced_settings.php:141 msgctxt "Payment description options" msgid "Available variables" msgstr "Verfügbare Variablen" -#: build/inc/settings/mollie_advanced_settings.php:160 -#: inc/settings/mollie_advanced_settings.php:160 -msgid "" -"Select among the available variables the description to be used for this " -"transaction.%s(Note: this only works when the method is set to Payments " -"API)%s" -msgstr "" -"Wählen Sie die Beschreibung, die für diese Transaktion verwendet werden " -"soll, aus den verfügbaren Variablen aus.%s(Hinweis: funktioniert nur, wenn " -"die Methode Payments API ausgewählt wurde)%s" +#. translators: Placeholder 1: Opening paragraph tag, placeholder 2: Closing paragraph tag +#: ../inc/settings/mollie_advanced_settings.php:166 +msgid "Select among the available variables the description to be used for this transaction.%1$s(Note: this only works when the method is set to Payments API)%2$s" +msgstr "Wählen Sie die Beschreibung, die für diese Transaktion verwendet werden soll, aus den verfügbaren Variablen aus.%1$s(Hinweis: funktioniert nur, wenn die Methode Payments API ausgewählt wurde)%2$s" -#: build/inc/settings/mollie_advanced_settings.php:134 -#: inc/settings/mollie_advanced_settings.php:134 +#: ../inc/settings/mollie_advanced_settings.php:177 msgid "Surcharge gateway fee label" msgstr "Label für zusätzliche Gateway-Gebühr" -#: build/inc/settings/mollie_advanced_settings.php:140 -#: inc/settings/mollie_advanced_settings.php:140 +#: ../inc/settings/mollie_advanced_settings.php:183, ../src/Gateway/Surcharge.php:36 msgid "Gateway Fee" msgstr "Gateway-Gebühr" -#: build/inc/settings/mollie_advanced_settings.php:142 -#: inc/settings/mollie_advanced_settings.php:142 +#: ../inc/settings/mollie_advanced_settings.php:185 msgid "This is the label will appear in frontend when the surcharge applies" -msgstr "" -"Dieses Label erscheint auf dem Frontend, wenn die zusätzliche Gebühr anfällt" +msgstr "Dieses Label erscheint auf dem Frontend, wenn die zusätzliche Gebühr anfällt" -#: inc/settings/mollie_advanced_settings.php:194 +#: ../inc/settings/mollie_advanced_settings.php:193 msgid "Remove Mollie data from Database on uninstall" msgstr "Mollie-Daten beim Deinstallieren aus der Datenbank entfernen" -#: inc/settings/mollie_advanced_settings.php:199 -msgid "" -"Remove options and scheduled actions from database when uninstalling the " -"plugin." -msgstr "" -"Optionen und geplante Aktionen bei der Deinstallation des Plugins aus der " -"Datenbank löschen." +#: ../inc/settings/mollie_advanced_settings.php:199 +msgid "Remove options and scheduled actions from database when uninstalling the plugin." +msgstr "Optionen und geplante Aktionen bei der Deinstallation des Plugins aus der Datenbank löschen." + +#: ../inc/settings/mollie_advanced_settings.php:200 +msgid "Clear now" +msgstr "Jetzt entfernen" -#: build/inc/settings/mollie_applepay_settings.php:14 -#: inc/settings/mollie_applepay_settings.php:14 +#: ../inc/settings/mollie_applepay_settings.php:12, ../src/PaymentMethods/Applepay.php:13 +msgid "Apple Pay" +msgstr "Apple Pay" + +#: ../inc/settings/mollie_applepay_settings.php:14 msgid "The following options are required to use the Apple Pay gateway" -msgstr "" -"Die folgenden Optionen sind für die Verwendung des Zahlungsportals Apple Pay " -"verpflichtend" +msgstr "Die folgenden Optionen sind für die Verwendung des Zahlungsportals Apple Pay verpflichtend" -#: build/inc/settings/mollie_applepay_settings.php:19 -#: build/src/Mollie/WC/Helper/Settings.php:48 -#: inc/settings/mollie_applepay_settings.php:19 -#: src/Mollie/WC/Helper/Settings.php:48 +#: ../inc/settings/mollie_applepay_settings.php:19, ../src/Settings/General/MollieGeneralSettings.php:18 msgid "Enable/Disable" msgstr "Aktivieren/deaktivieren" -#. translators: Placeholder 1: enabled or disabled -#: build/inc/settings/mollie_applepay_settings.php:21 -#: build/src/Mollie/WC/Helper/Settings.php:54 -#: inc/settings/mollie_applepay_settings.php:21 -#: src/Mollie/WC/Helper/Settings.php:54 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:21, ../src/Settings/General/MollieGeneralSettings.php:25 msgid "Enable %s" msgstr "%s aktivieren" -#: build/inc/settings/mollie_applepay_settings.php:29 -#: build/src/Mollie/WC/Helper/Settings.php:68 -#: inc/settings/mollie_applepay_settings.php:29 -#: src/Mollie/WC/Helper/Settings.php:68 +#: ../inc/settings/mollie_applepay_settings.php:29, ../src/Settings/General/MollieGeneralSettings.php:38 msgid "Title" msgstr "Titel" -#: build/inc/settings/mollie_applepay_settings.php:32 -#: build/src/Mollie/WC/Helper/Settings.php:71 -#: inc/settings/mollie_applepay_settings.php:32 -#: src/Mollie/WC/Helper/Settings.php:71 -msgid "" -"This controls the title which the user sees during checkout. Default " -"%s" -msgstr "" -"Hierdurch wird der Titel gesteuert, den Benutzer beim Bezahlvorgang sehen. " -"Standard: %s" - -#: build/inc/settings/mollie_applepay_settings.php:45 -#: build/inc/settings/mollie_applepay_settings.php:48 -#: build/src/Mollie/WC/Helper/Settings.php:94 -#: inc/settings/mollie_applepay_settings.php:45 -#: inc/settings/mollie_applepay_settings.php:48 -#: src/Mollie/WC/Helper/Settings.php:94 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:32, ../src/Settings/General/MollieGeneralSettings.php:42 +msgid "This controls the title which the user sees during checkout. Default %s" +msgstr "Hierdurch wird der Titel gesteuert, den Benutzer beim Bezahlvorgang sehen. Standard: %s" + +#: ../inc/settings/mollie_applepay_settings.php:46, ../inc/settings/mollie_applepay_settings.php:48, ../src/Settings/General/MollieGeneralSettings.php:66 msgid "Display logo" msgstr "Logo anzeigen" -#: build/inc/settings/mollie_applepay_settings.php:60 -#: build/src/Mollie/WC/Helper/Settings.php:81 -#: inc/settings/mollie_applepay_settings.php:60 -#: src/Mollie/WC/Helper/Settings.php:81 +#: ../inc/settings/mollie_applepay_settings.php:61, ../src/Settings/General/MollieGeneralSettings.php:52 msgid "Description" msgstr "Beschreibung" -#: build/inc/settings/mollie_applepay_settings.php:63 -#: build/src/Mollie/WC/Helper/Settings.php:84 -#: inc/settings/mollie_applepay_settings.php:63 -#: src/Mollie/WC/Helper/Settings.php:84 -msgid "" -"Payment method description that the customer will see on your checkout. " -"Default %s" -msgstr "" -"Beschreibung der Bezahlmethode, die der Kunde im Bezahlvorgang angezeigt " -"bekommt. Standard: %s" +#. translators: Placeholder 1: Gateway description +#: ../inc/settings/mollie_applepay_settings.php:64, ../src/Settings/General/MollieGeneralSettings.php:56 +msgid "Payment method description that the customer will see on your checkout. Default %s" +msgstr "Beschreibung der Bezahlmethode, die der Kunde im Bezahlvorgang angezeigt bekommt. Standard: %s" -#: build/inc/settings/mollie_applepay_settings.php:79 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:6 -#: inc/settings/mollie_applepay_settings.php:79 -#: inc/settings/mollie_apple_pay_button_enabler.php:6 +#: ../inc/settings/mollie_applepay_settings.php:81 msgid "Apple Pay button settings" msgstr "Einstellungen zur Schaltfläche Apple Pay" -#: build/inc/settings/mollie_applepay_settings.php:84 -#: inc/settings/mollie_applepay_settings.php:84 +#: ../inc/settings/mollie_applepay_settings.php:86 msgid "The following options are required to use the Apple Pay Direct Button" -msgstr "" -"Die folgenden Optionen sind für die Verwendung der Schaltfläche „Direktkauf " -"über Apple Pay“ verpflichtend" +msgstr "Die folgenden Optionen sind für die Verwendung der Schaltfläche „Direktkauf über Apple Pay“ verpflichtend" -#: build/inc/settings/mollie_applepay_settings.php:88 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:18 -#: inc/settings/mollie_applepay_settings.php:88 -#: inc/settings/mollie_apple_pay_button_enabler.php:18 +#: ../inc/settings/mollie_applepay_settings.php:90, ../src/PaymentMethods/Applepay.php:34 msgid "Enable Apple Pay Button on Cart page" msgstr "Schalfläche Apple Pay im Einkaufswagen aktivieren" -#: build/inc/settings/mollie_applepay_settings.php:91 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:21 -#: inc/settings/mollie_applepay_settings.php:91 -#: inc/settings/mollie_apple_pay_button_enabler.php:21 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:93, ../src/PaymentMethods/Applepay.php:36 msgid "Enable the Apple Pay direct buy button on the Cart page" -msgstr "" -"Kaufschaltfläche „Direktkauf über Apple Pay“ im Einkaufswagen aktivieren" +msgstr "Kaufschaltfläche „Direktkauf über Apple Pay“ im Einkaufswagen aktivieren" -#: build/inc/settings/mollie_applepay_settings.php:103 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:29 -#: inc/settings/mollie_applepay_settings.php:103 -#: inc/settings/mollie_apple_pay_button_enabler.php:29 +#: ../inc/settings/mollie_applepay_settings.php:106, ../src/PaymentMethods/Applepay.php:44 msgid "Enable Apple Pay Button on Product page" msgstr "Schalfläche Apple Pay auf Produktseite aktivieren" -#: build/inc/settings/mollie_applepay_settings.php:106 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:32 -#: inc/settings/mollie_applepay_settings.php:106 -#: inc/settings/mollie_apple_pay_button_enabler.php:32 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:109, ../src/PaymentMethods/Applepay.php:46 msgid "Enable the Apple Pay direct buy button on the Product page" -msgstr "" -"Kaufschaltfläche „Direktkauf über Apple Pay“ auf der Produktseite aktivieren" - -#: build/inc/settings/mollie_apple_pay_button_enabler.php:11 -#: inc/settings/mollie_apple_pay_button_enabler.php:11 -msgid "The following options are required to use the Apple Pay button" -msgstr "" -"Die folgenden Optionen sind für die Verwendung der Schaltfläche Apple Pay " -"verpflichtend" +msgstr "Kaufschaltfläche „Direktkauf über Apple Pay“ auf der Produktseite aktivieren" -#: build/inc/settings/mollie_components.php:7 -#: inc/settings/mollie_components.php:7 +#: ../inc/settings/mollie_components.php:9 msgctxt "Mollie Components Settings" msgid "Base Styles" msgstr "Basisformat" -#: build/inc/settings/mollie_components.php:16 -#: build/inc/settings/mollie_components.php:156 -#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156 +#: ../inc/settings/mollie_components.php:18, ../inc/settings/mollie_components.php:158 msgctxt "Mollie Components Settings" msgid "Background Color" msgstr "Hintergrundfarbe" -#: build/inc/settings/mollie_components.php:22 -#: build/inc/settings/mollie_components.php:145 -#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145 +#: ../inc/settings/mollie_components.php:24, ../inc/settings/mollie_components.php:147 msgctxt "Mollie Components Settings" msgid "Text Color" msgstr "Textfarbe" -#: build/inc/settings/mollie_components.php:28 -#: inc/settings/mollie_components.php:28 +#: ../inc/settings/mollie_components.php:30 msgctxt "Mollie Components Settings" msgid "Placeholder Color" msgstr "Platzhalterfarbe" -#: build/inc/settings/mollie_components.php:34 -#: inc/settings/mollie_components.php:34 +#: ../inc/settings/mollie_components.php:36 msgctxt "Mollie Components Settings" msgid "Font Size" msgstr "Schriftgröße" -#: build/inc/settings/mollie_components.php:35 -#: inc/settings/mollie_components.php:35 +#: ../inc/settings/mollie_components.php:37 msgctxt "Mollie Components Settings" msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'." -msgstr "" -"Legt die Schriftgröße der Komponente fest. Erlaubte Einheiten: ‚em‘, ‚px‘, " -"‚rem‘." +msgstr "Legt die Schriftgröße der Komponente fest. Erlaubte Einheiten: ‚em‘, ‚px‘, ‚rem‘." -#: build/inc/settings/mollie_components.php:45 -#: inc/settings/mollie_components.php:45 +#: ../inc/settings/mollie_components.php:47 msgctxt "Mollie Components Settings" msgid "Font Weight" msgstr "Schriftbreite" -#: build/inc/settings/mollie_components.php:48 -#: inc/settings/mollie_components.php:48 +#: ../inc/settings/mollie_components.php:50 msgctxt "Mollie Components Settings" msgid "Lighter" msgstr "Schmaler" -#: build/inc/settings/mollie_components.php:49 -#: inc/settings/mollie_components.php:49 +#: ../inc/settings/mollie_components.php:51 msgctxt "Mollie Components Settings" msgid "Regular" msgstr "Normal" -#: build/inc/settings/mollie_components.php:50 -#: inc/settings/mollie_components.php:50 +#: ../inc/settings/mollie_components.php:52 msgctxt "Mollie Components Settings" msgid "Bold" msgstr "Fett" -#: build/inc/settings/mollie_components.php:56 -#: inc/settings/mollie_components.php:56 +#: ../inc/settings/mollie_components.php:58 msgctxt "Mollie Components Settings" msgid "Letter Spacing" msgstr "Zeichenabstand" -#: build/inc/settings/mollie_components.php:62 -#: inc/settings/mollie_components.php:62 +#: ../inc/settings/mollie_components.php:64 msgctxt "Mollie Components Settings" msgid "Line Height" msgstr "Zeilenhöhe" -#: build/inc/settings/mollie_components.php:71 -#: inc/settings/mollie_components.php:71 +#: ../inc/settings/mollie_components.php:73 msgctxt "Mollie Components Settings" msgid "Padding" msgstr "Abstände" -#: build/inc/settings/mollie_components.php:72 -#: inc/settings/mollie_components.php:72 +#: ../inc/settings/mollie_components.php:74 msgctxt "Mollie Components Settings" -msgid "" -"Add padding to the components. Allowed units include `16px 16px 16px 16px` " -"and `em`, `px`, `rem`." -msgstr "" -"Fügen Sie Abstände zu den Komponenten hinzu. Beispiele für erlaubte " -"Einheiten: ‚16px 16px 16px 16px‘, ‚em‘, ‚px‘, ‚rem‘." +msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`." +msgstr "Fügen Sie Abstände zu den Komponenten hinzu. Beispiele für erlaubte Einheiten: ‚16px 16px 16px 16px‘, ‚em‘, ‚px‘, ‚rem‘." -#: build/inc/settings/mollie_components.php:82 -#: inc/settings/mollie_components.php:82 +#: ../inc/settings/mollie_components.php:84 msgctxt "Mollie Components Settings" msgid "Align Text" msgstr "Text ausrichten" -#: build/inc/settings/mollie_components.php:85 -#: inc/settings/mollie_components.php:85 +#: ../inc/settings/mollie_components.php:87 msgctxt "Mollie Components Settings" msgid "Left" msgstr "Links" -#: build/inc/settings/mollie_components.php:86 -#: inc/settings/mollie_components.php:86 +#: ../inc/settings/mollie_components.php:88 msgctxt "Mollie Components Settings" msgid "Right" msgstr "Rechts" -#: build/inc/settings/mollie_components.php:87 -#: inc/settings/mollie_components.php:87 +#: ../inc/settings/mollie_components.php:89 msgctxt "Mollie Components Settings" msgid "Center" msgstr "Zentrieren" -#: build/inc/settings/mollie_components.php:88 -#: inc/settings/mollie_components.php:88 +#: ../inc/settings/mollie_components.php:90 msgctxt "Mollie Components Settings" msgid "Justify" msgstr "Justieren" -#: build/inc/settings/mollie_components.php:94 -#: inc/settings/mollie_components.php:94 +#: ../inc/settings/mollie_components.php:96 msgctxt "Mollie Components Settings" msgid "Transform Text " msgstr "Text umwandeln " -#: build/inc/settings/mollie_components.php:97 -#: inc/settings/mollie_components.php:97 +#: ../inc/settings/mollie_components.php:99 msgctxt "Mollie Components Settings" msgid "None" msgstr "Keine" -#: build/inc/settings/mollie_components.php:102 -#: inc/settings/mollie_components.php:102 +#: ../inc/settings/mollie_components.php:104 msgctxt "Mollie Components Settings" msgid "Capitalize" msgstr "Großschreibung" -#: build/inc/settings/mollie_components.php:107 -#: inc/settings/mollie_components.php:107 +#: ../inc/settings/mollie_components.php:109 msgctxt "Mollie Components Settings" msgid "Uppercase" msgstr "Großbuchstaben" -#: build/inc/settings/mollie_components.php:112 -#: inc/settings/mollie_components.php:112 +#: ../inc/settings/mollie_components.php:114 msgctxt "Mollie Components Settings" msgid "Lowercase" msgstr "Kleinbuchstaben" -#: build/inc/settings/mollie_components.php:117 -#: inc/settings/mollie_components.php:117 +#: ../inc/settings/mollie_components.php:119 msgctxt "Mollie Components Settings" msgid "Full Width" msgstr "Gesamte Breite" -#: build/inc/settings/mollie_components.php:122 -#: inc/settings/mollie_components.php:122 +#: ../inc/settings/mollie_components.php:124 msgctxt "Mollie Components Settings" msgid "Full Size Kana" msgstr "Gesamte Breite Kana" -#: build/inc/settings/mollie_components.php:136 -#: inc/settings/mollie_components.php:136 +#: ../inc/settings/mollie_components.php:138 msgctxt "Mollie Components Settings" msgid "Invalid Status Styles" msgstr "Format für invalide Status" -#: build/inc/settings/mollie_components.php:146 -#: inc/settings/mollie_components.php:146 +#: ../inc/settings/mollie_components.php:148 msgctxt "Mollie Components Settings" msgid "Text Color for invalid input." msgstr "Textfarbe bei ungültiger Eingabe." -#: build/inc/settings/mollie_components.php:157 -#: inc/settings/mollie_components.php:157 +#: ../inc/settings/mollie_components.php:159 msgctxt "Mollie Components Settings" msgid "Background Color for invalid input." msgstr "Hintergrundfarbe bei ungültiger Eingabe." -#: build/inc/settings/mollie_components_enabler.php:6 -#: inc/settings/mollie_components_enabler.php:6 -msgid "Enable Mollie Components" -msgstr "Mollie-Komponenten aktivieren" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to settings. Placeholder 4: Closing link tag. +#: ../src/Activation/ActivationModule.php:167 +msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s." +msgstr "%1$sMollie-Zahlungen für WooCommerce Fehlende API-Schlüssel%2$s Bitte%3$s richten Sie Ihre API-Schlüssel hier ein%4$s." -#: build/inc/settings/mollie_components_enabler.php:8 -#: inc/settings/mollie_components_enabler.php:8 -msgid "" -"Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." -msgstr "" -"Mollie-Komponenten für dieses Portal aktivieren Mollie-Komponenten für " -"dieses Portal verwenden. Erfahren Sie mehr über %s und " -"wie es Ihren Umsatz steigert." - -#: build/inc/settings/mollie_components_enabler.php:12 -#: build/src/Mollie/WC/Settings/Page/Components.php:10 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:139 -#: inc/settings/mollie_components_enabler.php:12 -#: src/Mollie/WC/Settings/Page/Components.php:10 -#: src/Mollie/WC/Settings/Page/Mollie.php:139 -msgid "Mollie Components" -msgstr "Mollie-Komponenten" +#: ../src/Activation/ConstraintsChecker.php:109 +msgid "%1$sMollie Payments for WooCommerce is inactive:%2$s" +msgstr "%1$sMollie-Zahlungen für WooCommerce ist inaktiv:%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:5 -#: inc/settings/mollie_creditcard_icons_selector.php:5 -msgid "Customize Icons" -msgstr "Symbole personalisieren" +#: ../src/Activation/ConstraintsChecker.php:113 +msgid "%1$sCorrect the above errors to use Mollie Payments for Woocommerce%2$s" +msgstr "%1$sKorrigieren Sie die oben genannten Fehler, um Mollie-Zahlungen für WooCommerce zu nutzen%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:12 -#: inc/settings/mollie_creditcard_icons_selector.php:12 -msgid "Enable Icons Selector" -msgstr "Auswahlwerkzeug für Symbole aktivieren" +#: ../src/Assets/AssetsModule.php:432 +msgid "Name on card" +msgstr "Name auf der Karte" -#: build/inc/settings/mollie_creditcard_icons_selector.php:13 -#: inc/settings/mollie_creditcard_icons_selector.php:13 -msgid "Show customized creditcard icons on checkout page" -msgstr "Benutzerdefinierte Kreditkartensymbole auf der Bezahlseite anzeigen" +#: ../src/Assets/AssetsModule.php:436 +msgid "Card number" +msgstr "Kartennummer" -#: build/inc/settings/mollie_creditcard_icons_selector.php:21 -#: inc/settings/mollie_creditcard_icons_selector.php:21 -msgid "Show American Express Icon" -msgstr "American-Express-Symbol anzeigen" +#: ../src/Assets/AssetsModule.php:440 +msgid "Expiry date" +msgstr "Ablaufdatum" -#: build/inc/settings/mollie_creditcard_icons_selector.php:26 -#: inc/settings/mollie_creditcard_icons_selector.php:26 -msgid "Show Carta Si Icon" -msgstr "Carta-Si-Symbol anzeigen" +#: ../src/Assets/AssetsModule.php:444 +msgid "CVC/CVV" +msgstr "CVC/CVV" -#: build/inc/settings/mollie_creditcard_icons_selector.php:31 -#: inc/settings/mollie_creditcard_icons_selector.php:31 -msgid "Show Carte Bancaire Icon" -msgstr "Carte-Bancaire-Symbol anzeigen" +#: ../src/Assets/AssetsModule.php:451 +msgid "An unknown error occurred, please check the card fields." +msgstr "Ein unbekannter Fehler ist aufgetreten, bitte überprüfen Sie die Kartenfelder." -#: build/inc/settings/mollie_creditcard_icons_selector.php:36 -#: inc/settings/mollie_creditcard_icons_selector.php:36 -msgid "Show Maestro Icon" -msgstr "Maestro-Symbol anzeigen" +#: ../src/Assets/AssetsModule.php:521 +msgid "Please choose a billing country to see the available payment methods" +msgstr "Bitte wählen Sie das Land aus, in dem die Rechnung erstellt wird, um die verfügbaren Zahlungsmethoden anzuzeigen" -#: build/inc/settings/mollie_creditcard_icons_selector.php:41 -#: inc/settings/mollie_creditcard_icons_selector.php:41 -msgid "Show Mastercard Icon" -msgstr "Mastercard-Symbol anzeigen" +#: ../src/Assets/AssetsModule.php:570 +msgid "No custom logo selected" +msgstr "Kein eigenes Logo ausgewählt" -#: build/inc/settings/mollie_creditcard_icons_selector.php:46 -#: inc/settings/mollie_creditcard_icons_selector.php:46 -msgid "Show Visa Icon" -msgstr "Visa-Symbol anzeigen" +#: ../src/Gateway/MolliePaymentGateway.php:271, ../src/Settings/Page/MollieSettingsPage.php:313 +msgid "Test mode enabled." +msgstr "Testmodus aktiviert." -#: build/inc/settings/mollie_creditcard_icons_selector.php:51 -#: inc/settings/mollie_creditcard_icons_selector.php:51 -msgid "Show VPay Icon" -msgstr "VPay-Symbol anzeigen" +#. translators: The surrounding %s's Will be replaced by a link to the global setting page +#: ../src/Gateway/MolliePaymentGateway.php:276 +msgid "No API key provided. Please %1$sset you Mollie API key%2$s first." +msgstr "Kein API-Schlüssel vorgegeben. Bitte %1$slegen Sie Ihren Mollie-API-Schlüssel fest%2$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:7 -#: inc/settings/mollie_paypal_button_enabler.php:7 -msgid "PayPal button display settings" -msgstr "Anzeigeeinstellungen für die PayPal-Schaltfläche" +#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Gateway/MolliePaymentGateway.php:291 +msgid "%1$s not enabled in your Mollie profile. You can enable it by editing your %2$sMollie profile%3$s." +msgstr "%1$s ist nicht in Ihrem Mollie-Profil aktiviert. Sie können es aktivieren, indem Sie Ihr %2$sMollie-Profil%3$s bearbeiten." -#: build/inc/settings/mollie_paypal_button_enabler.php:12 -#: inc/settings/mollie_paypal_button_enabler.php:12 -msgid "" -"%1sThe PayPal button is optimized for digital goods. And will only appear if " -"the product has no shipping. %2sThe customer's address information can only " -"be retrieved if the transaction has been done with the %3sOrders API%4s.%5s" -"%6s" -msgstr "" -"%1sDie PayPal-Schaltfläche ist für digitale Produkte optimiert und erscheint " -"nur, wenn das Produkt nicht versandt werden muss. %2sDie Adressdaten des " -"Kunden können nur abgerufen werden, wenn die Transaktion über die %3sOrders " -"API%4s durchgeführt wurde.%5s%6s" +#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies +#: ../src/Gateway/MolliePaymentGateway.php:306 +msgid "Current shop currency %1$s not supported by Mollie. Read more about %2$ssupported currencies and payment methods.%3$s " +msgstr "Die aktuelle Shopwährung %1$s wird von Mollie nicht unterstützt. Mehr Informationen zu %2$sunterstützten Währungen und Bezahlungsmethoden.%3$s " -#: build/inc/settings/mollie_paypal_button_enabler.php:19 -#: inc/settings/mollie_paypal_button_enabler.php:19 -msgid "Display on cart page" -msgstr "Im Einkaufswagen anzeigen" +#: ../src/Gateway/MolliePaymentGateway.php:577 +msgid "You have cancelled your payment. Please complete your order with a different payment method." +msgstr "Sie haben Ihre Zahlung storniert. Vervollständigen Sie Ihre Bestellung bitte mit einer anderen Zahlungsmethode." -#: build/inc/settings/mollie_paypal_button_enabler.php:23 -#: inc/settings/mollie_paypal_button_enabler.php:23 -msgid "Enable the PayPal button to be used in the cart page." -msgstr "" -"Aktivieren Sie die PayPal-Schaltfläche, die im Einkaufswagen verwendet " -"werden soll." +#: ../src/Gateway/MolliePaymentGateway.php:597, ../src/Gateway/MolliePaymentGateway.php:611 +msgid "Your payment was not successful. Please complete your order with a different payment method." +msgstr "Ihre Zahlung war nicht erfolgreich. Vervollständigen Sie Ihre Bestellung bitte mit einer anderen Zahlungsmethode." -#: build/inc/settings/mollie_paypal_button_enabler.php:31 -#: inc/settings/mollie_paypal_button_enabler.php:31 -msgid "Display on product page" -msgstr "Auf der Produktseite anzeigen" +#: ../src/Gateway/MolliePaymentGateway.php:647 +msgid "Could not load order %s" +msgstr "Bestellung %s konnte nicht geladen werden" -#: build/inc/settings/mollie_paypal_button_enabler.php:35 -#: inc/settings/mollie_paypal_button_enabler.php:35 -msgid "Enable the PayPal button to be used in the product page." -msgstr "" -"Aktivieren Sie die PayPal-Schaltfläche, die auf der Produktseite verwendet " -"werden soll." +#: ../src/Gateway/MolliePaymentGateway.php:906 +msgid "Order cancelled" +msgstr "Bestellung storniert" -#: build/inc/settings/mollie_paypal_button_enabler.php:44 -#: inc/settings/mollie_paypal_button_enabler.php:44 -msgctxt "Mollie PayPal Button Settings" -msgid "Button text language and color" -msgstr "Sprache und Farbe des Schaltflächentextes" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Gateway/MolliePaymentGateway.php:943 +msgid "%1$s payment still pending (%2$s) but customer already returned to the store. Status should be updated automatically in the future, if it doesn't this might indicate a communication issue between the site and Mollie." +msgstr "Eine %1$s-Zahlung ist noch offen (%2$s), der Kunde ist aber bereits zum Shop zurückgekehrt. Der Status sollte zukünftig automatisch aktualisiert werden. Falls dies nicht der Fall ist, liegt möglicherweise ein Kommunikationsproblem zwischen der Seite und Mollie vor." -#: build/inc/settings/mollie_paypal_button_enabler.php:46 -#: inc/settings/mollie_paypal_button_enabler.php:46 -msgctxt "Mollie PayPal Button Settings" -msgid "Select the text and the colour of the button." -msgstr "Wählen Sie Text und Farbe der Schaltfläche aus." +#: ../src/Gateway/MolliePaymentGateway.php:949, ../src/Payment/MollieObject.php:687, ../src/Payment/MollieObject.php:655, ../src/Payment/MollieOrder.php:275, ../src/Payment/MollieOrder.php:332, ../src/Payment/MollieOrder.php:377, ../src/Payment/MollieOrder.php:459, ../src/Payment/MollieOrder.php:522, ../src/Payment/MollieOrder.php:941, ../src/Payment/MollieOrderService.php:165, ../src/Payment/MollieOrderService.php:428, ../src/Payment/MollieOrderService.php:491, ../src/Payment/MollieOrderService.php:705, ../src/Payment/MolliePayment.php:223, ../src/Payment/MolliePayment.php:310, ../src/Payment/MolliePayment.php:379, ../src/Payment/MolliePayment.php:402, ../src/Payment/PaymentService.php:788, ../src/Subscription/MollieSepaRecurringGateway.php:138, ../src/Subscription/MollieSepaRecurringGateway.php:205, ../src/Subscription/MollieSubscriptionGateway.php:470 +msgid "test mode" +msgstr "Testmodus" -#: build/inc/settings/mollie_paypal_button_enabler.php:54 -#: inc/settings/mollie_paypal_button_enabler.php:54 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill blue" -msgstr "Englisch -- Kauf über PayPal - Klein und rund, blau" +#: ../src/Gateway/MolliePaymentGateway.php:964 +msgid ", payment pending." +msgstr ", Zahlung ausstehend" -#: build/inc/settings/mollie_paypal_button_enabler.php:55 -#: inc/settings/mollie_paypal_button_enabler.php:55 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded blue" -msgstr "Englisch -- Kauf über PayPal - Abgerundet, blau" +#: ../src/Gateway/MolliePaymentGateway.php:996 +msgid "Your order has been cancelled." +msgstr "Ihre Bestellung wurde storniert." -#: build/inc/settings/mollie_paypal_button_enabler.php:56 -#: inc/settings/mollie_paypal_button_enabler.php:56 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill golden" -msgstr "Englisch -- Kauf über PayPal - Klein und rund, goldfarben" +#: ../src/Gateway/Surcharge.php:81 +msgid "A surchage fee might apply" +msgstr "Möglicherweise fällt eine zusätzliche Gebühr an" -#: build/inc/settings/mollie_paypal_button_enabler.php:57 -#: inc/settings/mollie_paypal_button_enabler.php:57 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded golden" -msgstr "Englisch -- Kauf über PayPal - Abgerundet, goldfarben" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. +#: ../src/Gateway/Surcharge.php:275 +msgid " + %1$s %2$s fee might apply" +msgstr " Möglicherweise fällt eine + %1$s %2$s-Gebühr an" -#: build/inc/settings/mollie_paypal_button_enabler.php:58 -#: inc/settings/mollie_paypal_button_enabler.php:58 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill gray" -msgstr "Englisch -- Kauf über PayPal - Klein und rund, grau" +#. translators: Placeholder 1: Fee amount tag. +#: ../src/Gateway/Surcharge.php:292 +msgid " + %1$s%% fee might apply" +msgstr " Möglicherweise fällt eine + %1$s%%-Gebühr an" -#: build/inc/settings/mollie_paypal_button_enabler.php:59 -#: inc/settings/mollie_paypal_button_enabler.php:59 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded gray" -msgstr "Englisch -- Kauf über PayPal - Abgerundet, grau" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. +#: ../src/Gateway/Surcharge.php:315 +msgid " + %1$s %2$s + %3$s%% fee might apply" +msgstr " Möglicherweise fällt eine + %1$s %2$s + %3$s%%-Gebühr an" -#: build/inc/settings/mollie_paypal_button_enabler.php:60 -#: inc/settings/mollie_paypal_button_enabler.php:60 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill white" -msgstr "Englisch -- Kauf über PayPal - Klein und rund, weiß" +#: ../src/Gateway/Surcharge.php:348 +msgid " (incl. VAT)" +msgstr " (inkl. Mehrwertsteuer)" -#: build/inc/settings/mollie_paypal_button_enabler.php:61 -#: inc/settings/mollie_paypal_button_enabler.php:61 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded white" -msgstr "Englisch -- Kauf über PayPal - Abgerundet, weiß" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:682 +msgid "%1$s payment failed via Mollie (%2$s)." +msgstr "%1$s-Bezahlung über Mollie fehlgeschlagen (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:62 -#: inc/settings/mollie_paypal_button_enabler.php:62 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill black" -msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, schwarz" +#: ../src/Payment/MollieObject.php:650 +msgid "%1$s renewal payment failed via Mollie (%2$s). You will need to manually review the payment and adjust product stocks if you use them." +msgstr "Erneute %1$s-Zahlung über Mollie fehlgeschlagen (%2$s). Sie müssen die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen." -#: build/inc/settings/mollie_paypal_button_enabler.php:63 -#: inc/settings/mollie_paypal_button_enabler.php:63 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded black" -msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, schwarz" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:721 +msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated." +msgstr "Der Mollie-WebHook wurde aufgerufen, die Zahlung wurde jedoch gleichzeitig über %s gestartet. Der Bestellstatus wird deshalb nicht aktualisiert." -#: build/inc/settings/mollie_paypal_button_enabler.php:64 -#: inc/settings/mollie_paypal_button_enabler.php:64 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill blue" -msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, blau" +#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID +#: ../src/Payment/MollieObject.php:740, ../src/PaymentMethods/InstructionStrategies/PaypalInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (PayPal transaction ID: %3$s)" +msgstr "Zahlung durch %1$s - %2$s (PayPal Transaktions-ID: %3$s) erfolgt" -#: build/inc/settings/mollie_paypal_button_enabler.php:65 -#: inc/settings/mollie_paypal_button_enabler.php:65 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded blue" -msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, blau" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:881 +msgctxt "Payment description for {orderNumber}" +msgid "Order {orderNumber}" +msgstr "Bestellung {orderNumber}" -#: build/inc/settings/mollie_paypal_button_enabler.php:66 -#: inc/settings/mollie_paypal_button_enabler.php:66 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill golden" -msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, goldfarben" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:891 +msgctxt "Payment description for {storeName}" +msgid "StoreName {storeName}" +msgstr "Name des Shops {storeName}" -#: build/inc/settings/mollie_paypal_button_enabler.php:67 -#: inc/settings/mollie_paypal_button_enabler.php:67 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded golden" -msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, goldfarben" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:901 +msgctxt "Payment description for {customer.firstname}" +msgid "Customer Firstname {customer.firstname}" +msgstr "Vorname des Kunden {customer.firstname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:68 -#: inc/settings/mollie_paypal_button_enabler.php:68 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill gray" -msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, grau" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:911 +msgctxt "Payment description for {customer.lastname}" +msgid "Customer Lastname {customer.lastname}" +msgstr "Nachname des Kunden {customer.lastname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:69 -#: inc/settings/mollie_paypal_button_enabler.php:69 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded gray" -msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, grau" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:921 +msgctxt "Payment description for {customer.company}" +msgid "Customer Company {customer.company}" +msgstr "Firma des Kunden {customer.company}" -#: build/inc/settings/mollie_paypal_button_enabler.php:70 -#: inc/settings/mollie_paypal_button_enabler.php:70 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill white" -msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, weiß" +#: ../src/Payment/MollieObject.php:936 +msgid "Order" +msgstr "Bestellung" -#: build/inc/settings/mollie_paypal_button_enabler.php:71 -#: inc/settings/mollie_paypal_button_enabler.php:71 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded white" -msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, weiß" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:271, ../src/Payment/MolliePayment.php:221, ../src/Subscription/MollieSepaRecurringGateway.php:211 +msgid "Order completed using %1$s payment (%2$s)." +msgstr "Vorgang über %1$s-Bezahlung (%2$s) erfolgt." -#: build/inc/settings/mollie_paypal_button_enabler.php:72 -#: inc/settings/mollie_paypal_button_enabler.php:72 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill black" -msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, schwarz" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:330 +msgid "Order authorized using %1$s payment (%2$s). Set order to completed in WooCommerce when you have shipped the products, to capture the payment. Do this within 28 days, or the order will expire. To handle individual order lines, process the order via the Mollie Dashboard." +msgstr "Bestellung über %1$s-Bezahlung (%2$s) autorisiert. Setzen Sie die Bestellung in WooCommerce auf abgeschlossen, wenn Sie die Produkte versandt haben, um die Bezahlung zu erfassen. Erledigen Sie dies innerhalb von 28 Tagen, ansonsten verfällt die Bestellung. Um individuelle Auftragszeilen abzuwickeln, verarbeiten Sie die Bestellung über das Mollie-Dashboard." -#: build/inc/settings/mollie_paypal_button_enabler.php:73 -#: inc/settings/mollie_paypal_button_enabler.php:73 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded black" -msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, schwarz" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:375 +msgid "Order completed at Mollie for %1$s order (%2$s). At least one order line completed. Remember: Completed status for an order at Mollie is not the same as Completed status in WooCommerce!" +msgstr "Bestellvorgang bei Mollie für %1$s-Bestellung (%2$s) abgeschlossen. Mindestens eine Auftragszeile abgeschlossen. Hinweis: Der abgeschlossene Status bei Mollie ist nicht mit dem abgeschlossenen Status bei WooCommerce gleichzusetzen." -#: build/inc/settings/mollie_paypal_button_enabler.php:74 -#: inc/settings/mollie_paypal_button_enabler.php:74 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill blue" -msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, blau" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:457 +msgid "%1$s order (%2$s) cancelled ." +msgstr "%1$s-Bestellung (%2$s) abgebrochen." -#: build/inc/settings/mollie_paypal_button_enabler.php:75 -#: inc/settings/mollie_paypal_button_enabler.php:75 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded blue" -msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, blau" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:520 +msgid "%1$s order expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s-Bestellung (%2$s) abgelaufen, wegen einer weiteren offenen Zahlung (%3$s) jedoch nicht abgebrochen." -#: build/inc/settings/mollie_paypal_button_enabler.php:76 -#: inc/settings/mollie_paypal_button_enabler.php:76 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill golden" -msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, goldfarben" +#: ../src/Payment/MollieOrder.php:616 +msgctxt "Order note error" +msgid "The sum of refunds for all order lines is not identical to the refund amount, so this refund will be processed as a payment amount refund, not an order line refund." +msgstr "Die Summe der Rückerstattungen aller Auftragszeilen stimmt nicht mit dem Rückerstattungsbetrag überein, die Rückerstattung wird deshalb als Rückerstattung des Zahlungsbetrags und nicht als Rückerstattung der Auftragszeilen bearbeitet." -#: build/inc/settings/mollie_paypal_button_enabler.php:77 -#: inc/settings/mollie_paypal_button_enabler.php:77 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded golden" -msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, goldfarben" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. +#: ../src/Payment/MollieOrder.php:747 +msgid "%1$sx %2$s cancelled for %3$s%4$s in WooCommerce and at Mollie." +msgstr "%1$sx %2$s storniert für %3$s%4$s bei WooCommerce und Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:78 -#: inc/settings/mollie_paypal_button_enabler.php:78 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill gray" -msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, grau" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. Placeholder 5: Reason. Placeholder 6: Refund Id. +#: ../src/Payment/MollieOrder.php:763 +msgid "%1$sx %2$s refunded for %3$s%4$s in WooCommerce and at Mollie.%5$s Refund ID: %6$s." +msgstr "%1$sx %2$s erstattet für %3$s%4$s bei WooCommerce und Mollie.%5$s Erstattungs-ID: %6$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:79 -#: inc/settings/mollie_paypal_button_enabler.php:79 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded gray" -msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, grau" +#. translators: Placeholder 1: payment status. +#: ../src/Payment/MollieOrder.php:823 +msgctxt "Order note error" +msgid "Can not refund order amount that has status %1$s at Mollie." +msgstr "Ein Zahlungsbetrag mit dem Status %1$s bei Mollie kann nicht rückerstattet werden." -#: build/inc/settings/mollie_paypal_button_enabler.php:80 -#: inc/settings/mollie_paypal_button_enabler.php:80 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill white" -msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, weiß" +#. translators: Placeholder 1: Currency. Placeholder 2: Refund amount. Placeholder 3: Reason. Placeholder 4: Refund id. +#: ../src/Payment/MollieOrder.php:845 +msgid "Amount refund of %1$s%2$s refunded in WooCommerce and at Mollie.%3$s Refund ID: %4$s." +msgstr "Erstattungsbetrag von %1$s erstatteten %2$s bei WooCommerce und Mollie.%3$s Erstattungs-ID: %4$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:81 -#: inc/settings/mollie_paypal_button_enabler.php:81 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded white" -msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, weiß" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:936 +msgid "%1$s order (%2$s) expired ." +msgstr "%1$s-Bestellung (%2$s) abgelaufen." -#: build/inc/settings/mollie_paypal_button_enabler.php:82 -#: inc/settings/mollie_paypal_button_enabler.php:82 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill black" -msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, schwarz" +#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID +#: ../src/Payment/MollieOrderService.php:162 +msgid "%1$s payment %2$s (%3$s), not processed." +msgstr "%1$s-Zahlung %2$s (%3$s), nicht verarbeitet." -#: build/inc/settings/mollie_paypal_button_enabler.php:83 -#: inc/settings/mollie_paypal_button_enabler.php:83 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded black" -msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, schwarz" +#: ../src/Payment/MollieOrderService.php:391 +msgid "New chargeback %s processed! Order note and order status updated." +msgstr "Neue Rückbuchung %s erfasst. Bestellungsnotiz und Status aktualisiert." -#: build/inc/settings/mollie_paypal_button_enabler.php:84 -#: inc/settings/mollie_paypal_button_enabler.php:84 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill blue" -msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, blau" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:423 +msgid "%1$s payment charged back via Mollie (%2$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s-Zahlung über Mollie zurückgebucht (%2$s). Sie müssen die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen." -#: build/inc/settings/mollie_paypal_button_enabler.php:85 -#: inc/settings/mollie_paypal_button_enabler.php:85 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded blue" -msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, blau" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:485 +msgid "%1$s payment charged back via Mollie (%2$s). Subscription status updated, please review (and adjust product stocks if you use it)." +msgstr "%1$s-Zahlung über Mollie zurückgebucht (%2$s). Abonnementstatus aktualisiert, bitte prüfen (und, falls verwendet, Produktbestände anpassen)." -#: build/inc/settings/mollie_paypal_button_enabler.php:86 -#: inc/settings/mollie_paypal_button_enabler.php:86 +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:692 +msgid "%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s-Bezahlung %2$s über Mollie (%3$s%4$s). Sie müssen die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen." + +#: ../src/Payment/MollieOrderService.php:805 +msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated." +msgstr "Neue Rückerstattung %s im Mollie-Dashboard verarbeitet. Bestellungsnotiz hinzugefügt, Bestellung jedoch nicht aktualisiert." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:308 +msgid "%1$s payment (%2$s) cancelled ." +msgstr "%1$s-Bezahlvorgang (%2$s) abgebrochen." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:377 +msgid "%1$s payment expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s-Zahlung (%2$s) abgelaufen, wegen einer weiteren offenen Zahlung (%3$s) jedoch nicht abgebrochen." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:400 +msgid "%1$s payment expired (%2$s)." +msgstr "%1$s-Zahlung abgelaufen (%2$s)." + +#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID +#: ../src/Payment/MolliePayment.php:476 +msgid "Refunded %1$s%2$s%3$s - Payment: %4$s, Refund: %5$s" +msgstr "Rückerstattung %1$s%2$s%3$s – Zahlung: %4$s, Rückerstattung: %5$s" + +#. translators: Placeholder 1: order number +#: ../src/Payment/MollieSubscription.php:80 +msgctxt "Default payment description for subscription recurring payments" +msgid "Order %1$s" +msgstr "Bestellung %1$s" + +#: ../src/Payment/OrderItemsRefunder.php:121 +msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item." +msgstr "Eine der WooCommerce-Auftragspositionen stimmt nicht mit dem entsprechenden Metawert für die ID des Rückerstattungsartikels der Mollie-Auftragsposition überein." + +#: ../src/Payment/OrderItemsRefunder.php:166 +msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount." +msgstr "Die Auftragspositions-ID zum folgenden Remote-Artikel konnte nicht abgerufen werden: %1$s. Versuchen Sie, eine Rückerstattung nach Betrag durchzuführen." + +#: ../src/Payment/OrderItemsRefunder.php:190 +msgid "Empty WooCommerce order items or mollie order lines." +msgstr "Leere WooCommerce-Auftragspositionen oder Mollie-Auftragszeilen." + +#: ../src/Payment/OrderLines.php:509 +msgid "Shipping" +msgstr "Versand" + +#: ../src/Payment/PaymentModule.php:194 +msgid "Unpaid order cancelled - time limit reached." +msgstr "Unbezahlte Bestellung storniert – Zeitlimit erreicht." + +#: ../src/Payment/PaymentModule.php:213 +msgid "%1$s items refunded in WooCommerce and at Mollie." +msgstr "%1$s erstattete Artikel bei WooCommerce und Mollie." + +#: ../src/Payment/PaymentModule.php:231 +msgid "%1$s items cancelled in WooCommerce and at Mollie." +msgstr "%1$s stornierte Artikel bei WooCommerce und Mollie." + +#: ../src/Payment/PaymentModule.php:350 +msgctxt "Order note info" +msgid "Processing a payment, no capture needed" +msgstr "Ein Bezahlvorgang wird bearbeitet, keine Erfassung notwendig" + +#: ../src/Payment/PaymentModule.php:364 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be shipped/captured." +msgstr "Die Bestellung wurde bei Mollie bereits storniert und kann nicht versandt/erfasst werden." + +#: ../src/Payment/PaymentModule.php:372 +msgctxt "Order note info" +msgid "Order already completed at Mollie, can not be shipped/captured." +msgstr "Die Bestellung wurde bei Mollie bereits abgearbeitet und kann nicht versandt/erfasst werden." + +#: ../src/Payment/PaymentModule.php:381 +msgctxt "Order note info" +msgid "Order successfully updated to shipped at Mollie, capture of funds underway." +msgstr "Die Bestellung wurde bei Mollie erfolgreich auf versandt aktualisiert, Erfassung der Geldmittel in Bearbeitung." + +#: ../src/Payment/PaymentModule.php:387 +msgctxt "Order note info" +msgid "Order not paid or authorized at Mollie yet, can not be shipped." +msgstr "Die Bestellung wurde bei Mollie noch nicht bezahlt oder autorisiert und kann nicht versandt werden." + +#: ../src/Payment/PaymentModule.php:421 +msgctxt "Order note info" +msgid "Order contains Mollie payment method, but not a valid Mollie Order ID. Canceling order failed." +msgstr "Die Bestellung enthält eine Mollie-Zahlungsmethode, aber keine gültige Mollie-Bestell-ID. Stornierung der Bestellung fehlgeschlagen." + +#: ../src/Payment/PaymentModule.php:442 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be canceled again." +msgstr "Die Bestellung wurde bei Mollie bereits storniert und kann nicht erneut storniert werden." + +#: ../src/Payment/PaymentModule.php:452 +msgctxt "Order note info" +msgid "Order also cancelled at Mollie." +msgstr "Bestellung auch bei Mollie storniert." + +#: ../src/Payment/PaymentModule.php:458 +msgctxt "Order note info" +msgid "Order could not be canceled at Mollie, because order status is " +msgstr "Bestellung konnte bei Mollie nicht storniert werden, da der Bestellstatus " + +#: ../src/Payment/PaymentService.php:620 +msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription." +msgstr "Abonnement-Umstellung fehlgeschlagen, kein valides Mandat gefunden. Leiten Sie einen neuen Bestellvorgang ein, um Ihr Abonnement zu ändern." + +#: ../src/Payment/PaymentService.php:626 +msgid "Failed switching subscriptions, no valid mandate." +msgstr "Umstellen des Abonnements wegen Fehlen eines gültigen Mandats fehlgeschlagen." + +#: ../src/Payment/PaymentService.php:635 +msgid "Order completed internally because of an existing valid mandate at Mollie." +msgstr "Die Bestellung wurde wegen eines bestehenden, gültigen Mandats bei Mollie intern abgewickelt." + +#. translators: Placeholder 1: Payment method title +#: ../src/Payment/PaymentService.php:708, ../src/Buttons/ApplePayButton/AppleAjaxRequests.php:723, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:113, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:159 +msgid "Could not create %s payment." +msgstr "%s-Zahlung konnte nicht erstellt werden." + +#: ../src/Payment/PaymentService.php:766, ../src/Subscription/MollieSepaRecurringGateway.php:127, ../src/Subscription/MollieSubscriptionGateway.php:461 +msgid "Awaiting payment confirmation." +msgstr "Die Zahlungsbestätigung wird erwartet." + +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Payment/PaymentService.php:786 +msgid "%s payment started (%s)." +msgstr "%s-Bezahlung gestartet (%s)." + +#: ../src/Payment/RefundLineItemsBuilder.php:126 +msgid "Mollie doesn't allow a partial refund of the full amount or quantity of at least one order line. Trying to process this as an amount refund instead." +msgstr "Mollie erlaubt keine teilweise Rückerstattung des vollen Betrags oder der vollen Menge mindestens einer Auftragszeile. Es wird stattdessen versucht, die Eingabe als Erstattungsbetrag zu verarbeiten." + +#: ../src/PaymentMethods/Applepay.php:14 +msgid "To accept payments via Apple Pay" +msgstr "Um Bezahlungen über Apple Pay zu akzeptieren" + +#: ../src/PaymentMethods/Bancontact.php:14 +msgid "Bancontact" +msgstr "Bancontact" + +#: ../src/PaymentMethods/Banktransfer.php:33 +msgid "Bank Transfer" +msgstr "Überweisung" + +#: ../src/PaymentMethods/Banktransfer.php:55, ../src/Settings/General/MollieGeneralSettings.php:235 +msgid "Activate expiry time setting" +msgstr "Einstellung für den Ablaufzeitpunkt übernehmen" + +#: ../src/PaymentMethods/Banktransfer.php:56, ../src/Settings/General/MollieGeneralSettings.php:236 +msgid "Enable expiry time for payments" +msgstr "Ablaufzeitpunkt für Zahlungen aktivieren" + +#: ../src/PaymentMethods/Banktransfer.php:57 +msgid "Enable this option if you want to be able to set the time after which the payment will expire. This will turn all transactions into payments instead of orders" +msgstr "Aktivieren Sie diese Option, um den Zeitpunkt, an dem die Zahlungsfrist abläuft, selbst festzulegen. Alle Transaktionen werden dadurch in Zahlungen anstatt Bestellungen umgewandelt" + +#: ../src/PaymentMethods/Banktransfer.php:62, ../src/Settings/General/MollieGeneralSettings.php:242 +msgid "Expiry time" +msgstr "Ablaufzeitpunkt" + +#. translators: Placeholder 1: Default expiry days. +#: ../src/PaymentMethods/Banktransfer.php:65 +msgid "Number of DAYS after the payment will expire. Default %d days" +msgstr "TAGE nach Ende der Zahlungsfrist. Standard: %d Tage." + +#: ../src/PaymentMethods/Banktransfer.php:74 +msgid "Skip Mollie payment screen" +msgstr "Mollie-Bezahlseite überspringen" + +#: ../src/PaymentMethods/Banktransfer.php:75 +msgid "Skip Mollie payment screen when Bank Transfer is selected" +msgstr "Mollie-Bezahlseite überspringen, wenn Überweisung ausgewählt wurde" + +#: ../src/PaymentMethods/Banktransfer.php:76 +msgid "Enable this option if you want to skip redirecting your user to the Mollie payment screen, instead this will redirect your user directly to the WooCommerce order received page displaying instructions how to complete the Bank Transfer payment." +msgstr "Aktivieren Sie diese Option, um die Weiterleitung Ihres Benutzers auf die Mollie-Bezahlseite zu überspringen. Stattdessen wird Ihr Benutzer direkt zur Bestellbestätigung von WooCommerce weitergeleitet und bekommt eine Schrittanweisung zur Abwicklung der Überweisungszahlung angezeigt." + +#: ../src/PaymentMethods/Belfius.php:13 +msgid "Belfius Direct Net" +msgstr "Belfius Direct Net" + +#: ../src/PaymentMethods/Creditcard.php:16 +msgid "Credit card" +msgstr "Kreditkarte" + +#: ../src/PaymentMethods/Creditcard.php:52 +msgid "Enable Mollie Components" +msgstr "Mollie-Komponenten aktivieren" + +#. translators: Placeholder 1: Mollie Components. +#: ../src/PaymentMethods/Creditcard.php:55 +msgid "Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." +msgstr "Mollie-Komponenten für dieses Portal aktivieren Mollie-Komponenten für dieses Portal verwenden. Erfahren Sie mehr über %s und wie es Ihren Umsatz steigert." + +#: ../src/PaymentMethods/Creditcard.php:59, ../src/Settings/Page/Components.php:21, ../src/Settings/Page/MollieSettingsPage.php:703 +msgid "Mollie Components" +msgstr "Mollie-Komponenten" + +#: ../src/PaymentMethods/Creditcard.php:92 +msgid "Customize Icons" +msgstr "Symbole personalisieren" + +#: ../src/PaymentMethods/Creditcard.php:99 +msgid "Enable Icons Selector" +msgstr "Auswahlwerkzeug für Symbole aktivieren" + +#: ../src/PaymentMethods/Creditcard.php:100 +msgid "Show customized creditcard icons on checkout page" +msgstr "Benutzerdefinierte Kreditkartensymbole auf der Bezahlseite anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:108 +msgid "Show American Express Icon" +msgstr "American-Express-Symbol anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:113 +msgid "Show Carta Si Icon" +msgstr "Carta-Si-Symbol anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:118 +msgid "Show Carte Bancaire Icon" +msgstr "Carte-Bancaire-Symbol anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:123 +msgid "Show Maestro Icon" +msgstr "Maestro-Symbol anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:128 +msgid "Show Mastercard Icon" +msgstr "Mastercard-Symbol anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:133 +msgid "Show Visa Icon" +msgstr "Visa-Symbol anzeigen" + +#: ../src/PaymentMethods/Creditcard.php:138 +msgid "Show VPay Icon" +msgstr "VPay-Symbol anzeigen" + +#: ../src/PaymentMethods/Directdebit.php:13 +msgid "SEPA Direct Debit" +msgstr "SEPA-Direktmandat" + +#: ../src/PaymentMethods/Directdebit.php:14 +msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscriptions, and will not be shown in the WooCommerce checkout for regular payments! You also need to enable iDEAL and/or other \"first\" payment methods if you want to use SEPA Direct Debit." +msgstr "Für wiederkehrende Zahlungen mit WooCommerce Subscriptions werden SEPA-Direktmandate verwendet. Diese werden nicht im WooCommerce-Bezahlvorgang für reguläre Zahlungen angezeigt. Sie müssen außerdem iDEAL und/oder weitere „erste“ Bezahlmethoden aktivieren, wenn Sie SEPA-Direktmandate verwenden möchten." + +#: ../src/PaymentMethods/Eps.php:13 +msgid "EPS" +msgstr "EPS" + +#: ../src/PaymentMethods/Giftcard.php:30 +msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency" +msgid "Mollie - Giftcard details: %1$s %2$s %3$s." +msgstr "Mollie - Gutscheindetails: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:42 +msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency" +msgid " Remainder: %1$s %2$s %3$s." +msgstr " Verbleibend: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:60 +msgid "Gift cards" +msgstr "Geschenkkarten" + +#: ../src/PaymentMethods/Giftcard.php:62, ../src/PaymentMethods/Giftcard.php:105 +msgid "Select your gift card" +msgstr "Wählen Sie Ihre Geschenkkarte aus" + +#: ../src/PaymentMethods/Giftcard.php:78 +msgid "Show gift cards dropdown" +msgstr "Drop-down-Liste für Geschenkkarten anzeigen" + +#: ../src/PaymentMethods/Giftcard.php:84 +msgid "If you disable this, a dropdown with various gift cards will not be shown in the WooCommerce checkout, so users will select a gift card on the Mollie payment page after checkout." +msgstr "Wenn Sie die Option deaktivieren, wird die Drop-down-Liste mit verschiedenen Geschenkkarten nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-Bezahlvorgang eine Geschenkkarte aus." + +#: ../src/PaymentMethods/Giftcard.php:93, ../src/PaymentMethods/Ideal.php:46, ../src/PaymentMethods/Kbc.php:48 +msgid "Issuers empty option" +msgstr "Kartenaussteller-Option leer" + +#: ../src/PaymentMethods/Giftcard.php:99 +msgid "This text will be displayed as the first option in the gift card dropdown, but only if the above 'Show gift cards dropdown' is enabled." +msgstr "Dieser Text wird als erste Option in der Drop-down-Liste für Geschenkkarten angezeigt, wenn „Drop-down-Liste für Geschenkkarten anzeigen“ weiter oben aktiviert wurde." + +#: ../src/PaymentMethods/Giropay.php:13 +msgid "Giropay" +msgstr "Giropay" + +#: ../src/PaymentMethods/Ideal.php:15 +msgid "iDEAL" +msgstr "iDEAL" + +#: ../src/PaymentMethods/Ideal.php:17, ../src/PaymentMethods/Ideal.php:55, ../src/PaymentMethods/Kbc.php:16, ../src/PaymentMethods/Kbc.php:60 +msgid "Select your bank" +msgstr "Wählen Sie Ihre Bank aus" + +#: ../src/PaymentMethods/Ideal.php:34 +msgid "Show iDEAL banks dropdown" +msgstr "Drop-down-Liste für iDEAL-Banken anzeigen" + +#: ../src/PaymentMethods/Ideal.php:37 +msgid "If you disable this, a dropdown with various iDEAL banks will not be shown in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie payment page after checkout." +msgstr "Wenn Sie die Option deaktivieren, wird die Drop-down-Liste mit verschiedenen iDEAL-Banken nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-Bezahlvorgang eine iDEAL-Bank aus." + +#: ../src/PaymentMethods/Ideal.php:49 +msgid "This text will be displayed as the first option in the iDEAL issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above 'Show iDEAL banks dropdown' is enabled." +msgstr "Dieser Text wird als erste Option in der Drop-down-Liste für iDEAL-Kartenaussteller angezeigt. Erfolgt keine Eingabe, wird „Wählen Sie Ihre Bank aus“ angezeigt. Nur wenn die obere Option „Drop-down-Liste für iDEAL-Banken anzeigen“ aktiviert wurde." + +#: ../src/PaymentMethods/In3.php:13 +msgid "in3" +msgstr "in3" + +#: ../src/PaymentMethods/In3.php:15 +msgid "Pay in 3 instalments, 0% interest" +msgstr "Zahlung in 3 Raten, 0 % Zinsen" + +#: ../src/PaymentMethods/Kbc.php:14 +msgid "KBC/CBC Payment Button" +msgstr "KBC/CBC-Zahlungsbutton" + +#: ../src/PaymentMethods/Kbc.php:33 +msgid "Show KBC/CBC banks dropdown" +msgstr "Drop-down-Liste für KBC/CBC-Banken anzeigen" + +#: ../src/PaymentMethods/Kbc.php:39 +msgid "If you disable this, a dropdown with various KBC/CBC banks will not be shown in the WooCommerce checkout, so users will select a KBC/CBC bank on the Mollie payment page after checkout." +msgstr "Wenn Sie die Option deaktivieren, wird die Drop-down-Liste mit verschiedenen KBC/CBC-Banken nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-Bezahlvorgang eine KBC/CBC-Bank aus." + +#: ../src/PaymentMethods/Kbc.php:54 +msgid "This text will be displayed as the first option in the KBC/CBC issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above ''Show KBC/CBC banks dropdown' is enabled." +msgstr "Dieser Text wird als erste Option in der Drop-down-Liste für KBC/CBC-Kartenaussteller angezeigt. Erfolgt keine Eingabe, wird „Wählen Sie Ihre Bank aus“ angezeigt. Nur wenn die obere Option „Drop-down-Liste für KBC/CBC-Banken anzeigen“ aktiviert wurde." + +#: ../src/PaymentMethods/Klarnapaylater.php:13 +msgid "Klarna Pay later" +msgstr "Klarna Pay later" + +#: ../src/PaymentMethods/Klarnapaylater.php:14, ../src/PaymentMethods/Klarnapaynow.php:14, ../src/PaymentMethods/Klarnasliceit.php:15 +msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required." +msgstr "Um Bezahlungen über Klarna zu akzeptieren, müssen alle standardmäßigen Felder im WooCommerce-Bezahlvorgang aktiviert und verpflichtend sein." + +#: ../src/PaymentMethods/Klarnapaynow.php:13 +msgid "Klarna Pay Now" +msgstr "Klarna Pay Now" + +#: ../src/PaymentMethods/Klarnasliceit.php:14 +msgid "Klarna Slice it" +msgstr "Klarna Slice it" + +#: ../src/PaymentMethods/Mybank.php:14 +msgid "MyBank" +msgstr "MyBank" + +#: ../src/PaymentMethods/Mybank.php:15 +msgid "To accept payments via MyBank" +msgstr "Um Bezahlungen über MyBank zu akzeptieren" + +#: ../src/PaymentMethods/Paypal.php:14 +msgid "PayPal" +msgstr "PayPal" + +#: ../src/PaymentMethods/Paypal.php:34 +msgid "Display on cart page" +msgstr "Im Einkaufswagen anzeigen" + +#: ../src/PaymentMethods/Paypal.php:38 +msgid "Enable the PayPal button to be used in the cart page." +msgstr "Aktivieren Sie die PayPal-Schaltfläche, die im Einkaufswagen verwendet werden soll." + +#: ../src/PaymentMethods/Paypal.php:46 +msgid "Display on product page" +msgstr "Auf der Produktseite anzeigen" + +#: ../src/PaymentMethods/Paypal.php:50 +msgid "Enable the PayPal button to be used in the product page." +msgstr "Aktivieren Sie die PayPal-Schaltfläche, die auf der Produktseite verwendet werden soll." + +#: ../src/PaymentMethods/Paypal.php:59 +msgctxt "Mollie PayPal Button Settings" +msgid "Button text language and color" +msgstr "Sprache und Farbe des Schaltflächentextes" + +#: ../src/PaymentMethods/Paypal.php:60 +msgctxt "Mollie PayPal Button Settings" +msgid "Select the text and the colour of the button." +msgstr "Wählen Sie Text und Farbe der Schaltfläche aus." + +#: ../src/PaymentMethods/Paypal.php:70 +msgid "Minimum amount to display button" +msgstr "Mindestbetrag zur Anzeige der Schaltfläche" + +#: ../src/PaymentMethods/Paypal.php:74 +msgid "If the product or the cart total amount is under this number, then the button will not show up." +msgstr "Wenn der Betrag des Produkts oder des Einkaufswagens unter dieser Zahl liegt, wird die Schaltfläche nicht angezeigt." + +#: ../src/PaymentMethods/Paypal.php:89 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill blue" +msgstr "Englisch -- Kauf über PayPal - Klein und rund, blau" + +#: ../src/PaymentMethods/Paypal.php:90 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded blue" +msgstr "Englisch -- Kauf über PayPal - Abgerundet, blau" + +#: ../src/PaymentMethods/Paypal.php:91 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill golden" +msgstr "Englisch -- Kauf über PayPal - Klein und rund, goldfarben" + +#: ../src/PaymentMethods/Paypal.php:92 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded golden" +msgstr "Englisch -- Kauf über PayPal - Abgerundet, goldfarben" + +#: ../src/PaymentMethods/Paypal.php:93 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill gray" +msgstr "Englisch -- Kauf über PayPal - Klein und rund, grau" + +#: ../src/PaymentMethods/Paypal.php:94 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded gray" +msgstr "Englisch -- Kauf über PayPal - Abgerundet, grau" + +#: ../src/PaymentMethods/Paypal.php:95 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill white" +msgstr "Englisch -- Kauf über PayPal - Klein und rund, weiß" + +#: ../src/PaymentMethods/Paypal.php:96 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded white" +msgstr "Englisch -- Kauf über PayPal - Abgerundet, weiß" + +#: ../src/PaymentMethods/Paypal.php:97 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill black" +msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, schwarz" + +#: ../src/PaymentMethods/Paypal.php:98 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded black" +msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, schwarz" + +#: ../src/PaymentMethods/Paypal.php:99 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill blue" +msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, blau" + +#: ../src/PaymentMethods/Paypal.php:100 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded blue" +msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, blau" + +#: ../src/PaymentMethods/Paypal.php:101 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill golden" +msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, goldfarben" + +#: ../src/PaymentMethods/Paypal.php:102 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded golden" +msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, goldfarben" + +#: ../src/PaymentMethods/Paypal.php:103 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill gray" +msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, grau" + +#: ../src/PaymentMethods/Paypal.php:104 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded gray" +msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, grau" + +#: ../src/PaymentMethods/Paypal.php:105 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill white" +msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, weiß" + +#: ../src/PaymentMethods/Paypal.php:106 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded white" +msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, weiß" + +#: ../src/PaymentMethods/Paypal.php:107 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill black" +msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, schwarz" + +#: ../src/PaymentMethods/Paypal.php:108 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded black" +msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, schwarz" + +#: ../src/PaymentMethods/Paypal.php:109 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill blue" +msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, blau" + +#: ../src/PaymentMethods/Paypal.php:110 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded blue" +msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, blau" + +#: ../src/PaymentMethods/Paypal.php:111 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill golden" +msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, goldfarben" + +#: ../src/PaymentMethods/Paypal.php:112 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded golden" +msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, goldfarben" + +#: ../src/PaymentMethods/Paypal.php:113 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill gray" +msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, grau" + +#: ../src/PaymentMethods/Paypal.php:114 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded gray" +msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, grau" + +#: ../src/PaymentMethods/Paypal.php:115 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill white" +msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, weiß" + +#: ../src/PaymentMethods/Paypal.php:116 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded white" +msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, weiß" + +#: ../src/PaymentMethods/Paypal.php:117 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill black" +msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, schwarz" + +#: ../src/PaymentMethods/Paypal.php:118 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded black" +msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, schwarz" + +#: ../src/PaymentMethods/Paypal.php:119 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill blue" +msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, blau" + +#: ../src/PaymentMethods/Paypal.php:120 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded blue" +msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, blau" + +#: ../src/PaymentMethods/Paypal.php:121 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill golden" msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, goldfarben" -#: build/inc/settings/mollie_paypal_button_enabler.php:87 -#: inc/settings/mollie_paypal_button_enabler.php:87 +#: ../src/PaymentMethods/Paypal.php:122 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded golden" msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, goldfarben" -#: build/inc/settings/mollie_paypal_button_enabler.php:88 -#: inc/settings/mollie_paypal_button_enabler.php:88 +#: ../src/PaymentMethods/Paypal.php:123 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill gray" msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, grau" -#: build/inc/settings/mollie_paypal_button_enabler.php:89 -#: inc/settings/mollie_paypal_button_enabler.php:89 +#: ../src/PaymentMethods/Paypal.php:124 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded gray" msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, grau" -#: build/inc/settings/mollie_paypal_button_enabler.php:90 -#: inc/settings/mollie_paypal_button_enabler.php:90 +#: ../src/PaymentMethods/Paypal.php:125 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill white" msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, weiß" -#: build/inc/settings/mollie_paypal_button_enabler.php:91 -#: inc/settings/mollie_paypal_button_enabler.php:91 +#: ../src/PaymentMethods/Paypal.php:126 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded white" msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, weiß" -#: build/inc/settings/mollie_paypal_button_enabler.php:92 -#: inc/settings/mollie_paypal_button_enabler.php:92 +#: ../src/PaymentMethods/Paypal.php:127 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill black" msgstr "Deutsch -- Kauf über PayPal - Klein und rund, schwarz" -#: build/inc/settings/mollie_paypal_button_enabler.php:93 -#: inc/settings/mollie_paypal_button_enabler.php:93 +#: ../src/PaymentMethods/Paypal.php:128 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded black" msgstr "Deutsch -- Kauf über PayPal - Abgerundet, schwarz" -#: build/inc/settings/mollie_paypal_button_enabler.php:94 -#: inc/settings/mollie_paypal_button_enabler.php:94 +#: ../src/PaymentMethods/Paypal.php:129 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill blue" msgstr "Deutsch -- Kauf über PayPal - Klein und rund, blau" -#: build/inc/settings/mollie_paypal_button_enabler.php:95 -#: inc/settings/mollie_paypal_button_enabler.php:95 +#: ../src/PaymentMethods/Paypal.php:130 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded blue" msgstr "Deutsch -- Kauf über PayPal - Abgerundet, blau" -#: build/inc/settings/mollie_paypal_button_enabler.php:96 -#: inc/settings/mollie_paypal_button_enabler.php:96 +#: ../src/PaymentMethods/Paypal.php:131 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill golden" msgstr "Deutsch -- Kauf über PayPal - Klein und rund, goldfarben" -#: build/inc/settings/mollie_paypal_button_enabler.php:97 -#: inc/settings/mollie_paypal_button_enabler.php:97 +#: ../src/PaymentMethods/Paypal.php:132 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded golden" msgstr "Deutsch -- Kauf über PayPal - Abgerundet, goldfarben" -#: build/inc/settings/mollie_paypal_button_enabler.php:98 -#: inc/settings/mollie_paypal_button_enabler.php:98 +#: ../src/PaymentMethods/Paypal.php:133 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill gray" msgstr "Deutsch -- Kauf über PayPal - Klein und rund, grau" -#: build/inc/settings/mollie_paypal_button_enabler.php:99 -#: inc/settings/mollie_paypal_button_enabler.php:99 +#: ../src/PaymentMethods/Paypal.php:134 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded gray" msgstr "Deutsch -- Kauf über PayPal - Abgerundet, grau" -#: build/inc/settings/mollie_paypal_button_enabler.php:100 -#: inc/settings/mollie_paypal_button_enabler.php:100 +#: ../src/PaymentMethods/Paypal.php:135 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill white" msgstr "Deutsch -- Kauf über PayPal - Klein und rund, weiß" -#: build/inc/settings/mollie_paypal_button_enabler.php:101 -#: inc/settings/mollie_paypal_button_enabler.php:101 +#: ../src/PaymentMethods/Paypal.php:136 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded white" msgstr "Deutsch -- Kauf über PayPal - Abgerundet, weiß" -#: build/inc/settings/mollie_paypal_button_enabler.php:102 -#: inc/settings/mollie_paypal_button_enabler.php:102 +#: ../src/PaymentMethods/Paypal.php:137 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill black" msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, schwarz" -#: build/inc/settings/mollie_paypal_button_enabler.php:103 -#: inc/settings/mollie_paypal_button_enabler.php:103 +#: ../src/PaymentMethods/Paypal.php:138 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded black" msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, schwarz" -#: build/inc/settings/mollie_paypal_button_enabler.php:104 -#: inc/settings/mollie_paypal_button_enabler.php:104 +#: ../src/PaymentMethods/Paypal.php:139 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill blue" msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, blau" -#: build/inc/settings/mollie_paypal_button_enabler.php:105 -#: inc/settings/mollie_paypal_button_enabler.php:105 +#: ../src/PaymentMethods/Paypal.php:140 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded blue" msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, blau" -#: build/inc/settings/mollie_paypal_button_enabler.php:106 -#: inc/settings/mollie_paypal_button_enabler.php:106 +#: ../src/PaymentMethods/Paypal.php:141 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill golden" msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, goldfarben" -#: build/inc/settings/mollie_paypal_button_enabler.php:107 -#: inc/settings/mollie_paypal_button_enabler.php:107 +#: ../src/PaymentMethods/Paypal.php:142 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded golden" msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, goldfarben" -#: build/inc/settings/mollie_paypal_button_enabler.php:108 -#: inc/settings/mollie_paypal_button_enabler.php:108 +#: ../src/PaymentMethods/Paypal.php:143 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill gray" msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, grau" -#: build/inc/settings/mollie_paypal_button_enabler.php:109 -#: inc/settings/mollie_paypal_button_enabler.php:109 +#: ../src/PaymentMethods/Paypal.php:144 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded gray" msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, grau" -#: build/inc/settings/mollie_paypal_button_enabler.php:110 -#: inc/settings/mollie_paypal_button_enabler.php:110 +#: ../src/PaymentMethods/Paypal.php:145 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill white" msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, weiß" -#: build/inc/settings/mollie_paypal_button_enabler.php:111 -#: inc/settings/mollie_paypal_button_enabler.php:111 +#: ../src/PaymentMethods/Paypal.php:146 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded white" msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, weiß" -#: build/inc/settings/mollie_paypal_button_enabler.php:112 -#: inc/settings/mollie_paypal_button_enabler.php:112 +#: ../src/PaymentMethods/Paypal.php:147 msgctxt "Mollie PayPal button Settings" msgid "French -- Buy with PayPal - Gold" msgstr "Französisch -- Kauf über PayPal - Gold" -#: build/inc/settings/mollie_paypal_button_enabler.php:113 -#: inc/settings/mollie_paypal_button_enabler.php:113 +#: ../src/PaymentMethods/Paypal.php:148 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Gold" msgstr "Französisch -- Bezahlung mit PayPal - Gold" -#: build/inc/settings/mollie_paypal_button_enabler.php:114 -#: inc/settings/mollie_paypal_button_enabler.php:114 +#: ../src/PaymentMethods/Paypal.php:149 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Silver" msgstr "Französisch -- Bezahlung mit PayPal - Silber" -#: build/inc/settings/mollie_paypal_button_enabler.php:115 -#: inc/settings/mollie_paypal_button_enabler.php:115 +#: ../src/PaymentMethods/Paypal.php:150 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Buy with PayPal - Gold" msgstr "Polnisch -- Kauf über PayPal - Gold" -#: build/inc/settings/mollie_paypal_button_enabler.php:116 -#: inc/settings/mollie_paypal_button_enabler.php:116 +#: ../src/PaymentMethods/Paypal.php:151 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Checkout with PayPal - Gold" msgstr "Polnisch -- Bezahlung mit PayPal - Gold" -#: build/inc/settings/mollie_paypal_button_enabler.php:117 -#: inc/settings/mollie_paypal_button_enabler.php:117 +#: ../src/PaymentMethods/Paypal.php:152 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Checkout with PayPal - Silver" msgstr "Polnisch -- Bezahlung mit PayPal - Silber" -#: build/inc/settings/mollie_paypal_button_enabler.php:122 -#: inc/settings/mollie_paypal_button_enabler.php:122 -msgid "Minimum amount to display button" -msgstr "Mindestbetrag zur Anzeige der Schaltfläche" - -#: build/inc/settings/mollie_paypal_button_enabler.php:126 -#: inc/settings/mollie_paypal_button_enabler.php:126 -msgid "" -"If the product or the cart total amount is under this number, then the " -"button will not show up." -msgstr "" -"Wenn der Betrag des Produkts oder des Einkaufswagens unter dieser Zahl " -"liegt, wird die Schaltfläche nicht angezeigt." - -#: build/mollie-payments-for-woocommerce.php:90 -#: mollie-payments-for-woocommerce.php:90 -msgid "" -"%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set " -"your API keys here%4$s." -msgstr "" -"%1$sMollie-Zahlungen für WooCommerce Fehlende API-Schlüssel%2$s Bitte%3$s " -"richten Sie Ihre API-Schlüssel hier ein%4$s." - -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: build/src/Mollie/WC/Gateway/Abstract.php:685 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: src/Mollie/WC/Gateway/Abstract.php:685 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -msgid "Could not create %s payment." -msgstr "%s-Zahlung konnte nicht erstellt werden." - -#: build/src/Mollie/WC/Gateway/Abstract.php:138 -#: src/Mollie/WC/Gateway/Abstract.php:138 -msgid "No custom logo selected" -msgstr "Kein eigenes Logo ausgewählt" - -#: build/src/Mollie/WC/Gateway/Abstract.php:221 -#: src/Mollie/WC/Gateway/Abstract.php:221 -msgid "Gateway Disabled" -msgstr "Gateway deaktiviert" - -#: build/src/Mollie/WC/Gateway/Abstract.php:244 -#: src/Mollie/WC/Gateway/Abstract.php:244 -msgid "Return to payments" -msgstr "Zurück zu den Zahlungen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:260 -#: build/src/Mollie/WC/Helper/Settings.php:114 -#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114 -msgid "Sell to specific countries" -msgstr "In bestimmten Ländern verkaufen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:272 -#: src/Mollie/WC/Gateway/Abstract.php:272 -msgid "Choose countries…" -msgstr "Länder wählen…" - -#: build/src/Mollie/WC/Gateway/Abstract.php:273 -#: src/Mollie/WC/Gateway/Abstract.php:273 -msgid "Country" -msgstr "Land" - -#: build/src/Mollie/WC/Gateway/Abstract.php:282 -#: src/Mollie/WC/Gateway/Abstract.php:282 -msgid "Select all" -msgstr "Alle auswählen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:283 -#: src/Mollie/WC/Gateway/Abstract.php:283 -msgid "Select none" -msgstr "Auswahl aufheben" - -#: build/src/Mollie/WC/Gateway/Abstract.php:337 -#: build/src/Mollie/WC/Helper/Settings.php:558 -#: src/Mollie/WC/Gateway/Abstract.php:337 src/Mollie/WC/Helper/Settings.php:558 -msgid "Test mode enabled." -msgstr "Testmodus aktiviert." - -#. translators: The surrounding %s's Will be replaced by a link to the global setting page -#: build/src/Mollie/WC/Gateway/Abstract.php:339 -#: src/Mollie/WC/Gateway/Abstract.php:339 -msgid "No API key provided. Please %sset you Mollie API key%s first." -msgstr "" -"Kein API-Schlüssel vorgegeben. Bitte %slegen Sie Ihren Mollie-API-Schlüssel " -"fest%s." - -#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Gateway/Abstract.php:351 -#: src/Mollie/WC/Gateway/Abstract.php:351 -msgid "" -"%s not enabled in your Mollie profile. You can enable it by editing your " -"%sMollie profile%s." -msgstr "" -"%s ist nicht in Ihrem Mollie-Profil aktiviert. Sie können es aktivieren, " -"indem Sie Ihr %sMollie-Profil%s bearbeiten." - -#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies -#: build/src/Mollie/WC/Gateway/Abstract.php:363 -#: src/Mollie/WC/Gateway/Abstract.php:363 -msgid "" -"Current shop currency %s not supported by Mollie. Read more about " -"%ssupported currencies and payment methods.%s " -msgstr "" -"Die aktuelle Shopwährung %s wird von Mollie nicht unterstützt. Mehr " -"Informationen zu %sunterstützten Währungen und Bezahlungsmethoden.%s " - -#: build/src/Mollie/WC/Gateway/Abstract.php:525 -#: src/Mollie/WC/Gateway/Abstract.php:525 -msgid "Could not load order %s" -msgstr "Bestellung %s konnte nicht geladen werden" - -#: build/src/Mollie/WC/Gateway/Abstract.php:577 -#: src/Mollie/WC/Gateway/Abstract.php:577 -msgid "" -"Order completed internally because of an existing valid mandate at Mollie." -msgstr "" -"Die Bestellung wurde wegen eines bestehenden, gültigen Mandats bei Mollie " -"intern abgewickelt." - -#: build/src/Mollie/WC/Gateway/Abstract.php:588 -#: src/Mollie/WC/Gateway/Abstract.php:588 -msgid "" -"Subscription switch failed, no valid mandate found. Place a completely new " -"order to change your subscription." -msgstr "" -"Abonnement-Umstellung fehlgeschlagen, kein valides Mandat gefunden. Leiten " -"Sie einen neuen Bestellvorgang ein, um Ihr Abonnement zu ändern." - -#: build/src/Mollie/WC/Gateway/Abstract.php:589 -#: src/Mollie/WC/Gateway/Abstract.php:589 -msgid "Failed switching subscriptions, no valid mandate." -msgstr "" -"Umstellen des Abonnements wegen Fehlen eines gültigen Mandats fehlgeschlagen." - -#: build/src/Mollie/WC/Gateway/Abstract.php:658 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:413 -#: src/Mollie/WC/Gateway/Abstract.php:658 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:413 -msgid "Awaiting payment confirmation." -msgstr "Die Zahlungsbestätigung wird erwartet." - -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:668 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:420 -#: src/Mollie/WC/Gateway/Abstract.php:668 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:420 -msgid "%s payment started (%s)." -msgstr "%s-Bezahlung gestartet (%s)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:670 -#: build/src/Mollie/WC/Gateway/Abstract.php:897 -#: build/src/Mollie/WC/Gateway/Abstract.php:1181 -#: build/src/Mollie/WC/Gateway/Abstract.php:1243 -#: build/src/Mollie/WC/Gateway/Abstract.php:1618 -#: build/src/Mollie/WC/Gateway/Abstract.php:2142 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: build/src/Mollie/WC/Payment/Object.php:608 -#: build/src/Mollie/WC/Payment/Object.php:642 -#: build/src/Mollie/WC/Payment/Order.php:264 -#: build/src/Mollie/WC/Payment/Order.php:316 -#: build/src/Mollie/WC/Payment/Order.php:363 -#: build/src/Mollie/WC/Payment/Order.php:446 -#: build/src/Mollie/WC/Payment/Order.php:511 -#: build/src/Mollie/WC/Payment/Order.php:936 -#: build/src/Mollie/WC/Payment/Payment.php:249 -#: build/src/Mollie/WC/Payment/Payment.php:336 -#: build/src/Mollie/WC/Payment/Payment.php:406 -#: build/src/Mollie/WC/Payment/Payment.php:429 -#: src/Mollie/WC/Gateway/Abstract.php:670 -#: src/Mollie/WC/Gateway/Abstract.php:897 -#: src/Mollie/WC/Gateway/Abstract.php:1181 -#: src/Mollie/WC/Gateway/Abstract.php:1243 -#: src/Mollie/WC/Gateway/Abstract.php:1618 -#: src/Mollie/WC/Gateway/Abstract.php:2142 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642 -#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316 -#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446 -#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936 -#: src/Mollie/WC/Payment/Payment.php:249 src/Mollie/WC/Payment/Payment.php:336 -#: src/Mollie/WC/Payment/Payment.php:406 src/Mollie/WC/Payment/Payment.php:429 -msgid "test mode" -msgstr "Testmodus" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:894 -#: src/Mollie/WC/Gateway/Abstract.php:894 -msgid "%s payment %s (%s), not processed." -msgstr "%s-Zahlung %s (%s), nicht verarbeitet." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1008 -#: src/Mollie/WC/Gateway/Abstract.php:1008 -msgid "" -"New refund %s processed in Mollie Dashboard! Order note added, but order not " -"updated." -msgstr "" -"Neue Rückerstattung %s im Mollie-Dashboard verarbeitet. Bestellungsnotiz " -"hinzugefügt, Bestellung jedoch nicht aktualisiert." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1144 -#: src/Mollie/WC/Gateway/Abstract.php:1144 -msgid "New chargeback %s processed! Order note and order status updated." -msgstr "Neue Rückbuchung %s erfasst. Bestellungsnotiz und Status aktualisiert." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1176 -#: src/Mollie/WC/Gateway/Abstract.php:1176 -msgid "" -"%s payment charged back via Mollie (%s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%s-Bezahlung über Mollie zurückgebucht (%s). Sie müssen die Zahlung händisch " -"überprüfen und, falls verwendet, die Produktbestände anpassen." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1237 -#: src/Mollie/WC/Gateway/Abstract.php:1237 -msgid "" -"%s payment charged back via Mollie (%s). Subscription status updated, please " -"review (and adjust product stocks if you use it)." -msgstr "" -"%s-Bezahlung über Mollie zurückgebucht (%s). Abonnementstatus aktualisiert, " -"bitte prüfen (und, falls verwendet, Produktbestände anpassen)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1314 -#: src/Mollie/WC/Gateway/Abstract.php:1314 -msgid "" -"You have cancelled your payment. Please complete your order with a different " -"payment method." -msgstr "" -"Sie haben Ihre Zahlung storniert. Vervollständigen Sie Ihre Bestellung bitte " -"mit einer anderen Zahlungsmethode." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1328 -#: build/src/Mollie/WC/Gateway/Abstract.php:1337 -#: src/Mollie/WC/Gateway/Abstract.php:1328 -#: src/Mollie/WC/Gateway/Abstract.php:1337 -msgid "" -"Your payment was not successful. Please complete your order with a different " -"payment method." -msgstr "" -"Ihre Zahlung war nicht erfolgreich. Vervollständigen Sie Ihre Bestellung " -"bitte mit einer anderen Zahlungsmethode." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1529 -#: src/Mollie/WC/Gateway/Abstract.php:1529 -msgid "We have not received a definite payment status." -msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1534 -#: src/Mollie/WC/Gateway/Abstract.php:1534 -msgid "" -"We have not received a definite payment status. You will receive an email as " -"soon as we receive a confirmation of the bank/merchant." -msgstr "" -"Wir haben keinen endgültigen Zahlungsstatus erhalten. Sie erhalten eine E-" -"Mail, sobald wir eine Bestätigung der Bank oder des Händlers erhalten." - -#. translators: Placeholder 1: payment method -#: build/src/Mollie/WC/Gateway/Abstract.php:1541 -#: src/Mollie/WC/Gateway/Abstract.php:1541 -msgid "Payment completed with %s" -msgstr "Zahlung durch %s erfolgt" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1589 -#: src/Mollie/WC/Gateway/Abstract.php:1589 -msgid "Order cancelled" -msgstr "Bestellung storniert" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1616 -#: src/Mollie/WC/Gateway/Abstract.php:1616 -msgid "" -"%s payment still pending (%s) but customer already returned to the store. " -"Status should be updated automatically in the future, if it doesn't this " -"might indicate a communication issue between the site and Mollie." -msgstr "" -"Eine %s-Bezahlung ist noch offen (%s), der Kunde ist aber bereits zum Shop " -"zurückgekehrt. Der Status sollte zukünftig automatisch aktualisiert werden. " -"Falls dies nicht der Fall ist, liegt möglicherweise ein " -"Kommunikationsproblem zwischen der Seite und Mollie vor." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1625 -#: src/Mollie/WC/Gateway/Abstract.php:1625 -msgid ", payment pending." -msgstr ", Zahlung ausstehend" +#: ../src/PaymentMethods/Paysafecard.php:14 +msgid "paysafecard" +msgstr "paysafecard" -#: build/src/Mollie/WC/Gateway/Abstract.php:1652 -#: src/Mollie/WC/Gateway/Abstract.php:1652 -msgid "Your order has been cancelled." -msgstr "Ihre Bestellung wurde storniert." +#: ../src/PaymentMethods/Przelewy24.php:14 +msgid "Przelewy24" +msgstr "Przelewy24" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:2129 -#: src/Mollie/WC/Gateway/Abstract.php:2129 -msgid "" -"%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%1$s-Bezahlung %2$s über Mollie (%3$s%4$s). Sie müssen die Zahlung händisch " -"überprüfen und, falls verwendet, die Produktbestände anpassen." - -#: build/src/Mollie/WC/Gateway/Abstract.php:2166 -#: src/Mollie/WC/Gateway/Abstract.php:2166 -msgctxt "" -"Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid "Mollie - Giftcard details: %1$s %2$s %3$s." -msgstr "Mollie - Gutscheindetails: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Przelewy24.php:15 +msgid "To accept payments via Przelewy24, a customer email is required for every payment." +msgstr "Um Bezahlungen über Przelewy24 zu akzeptieren, wird für jede Bezahlung eine Kunden-E-Mail benötigt." -#: build/src/Mollie/WC/Gateway/Abstract.php:2178 -#: src/Mollie/WC/Gateway/Abstract.php:2178 -msgctxt "" -"Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid " Remainder: %1$s %2$s %3$s." -msgstr " Verbleibend: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Sofort.php:14 +msgid "SOFORT Banking" +msgstr "SOFORT-Banking" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. -#: build/src/Mollie/WC/Gateway/Abstract.php:2580 -#: src/Mollie/WC/Gateway/Abstract.php:2580 -msgid " + %1$s %2$s fee might apply" -msgstr "Möglicherweise fällt eine + %1$s %2$s-Gebühr an" +#: ../src/PaymentMethods/Voucher.php:35 +msgid "Voucher" +msgstr "Gutschein" -#. translators: Placeholder 1: Fee amount tag. -#: build/src/Mollie/WC/Gateway/Abstract.php:2590 -#: src/Mollie/WC/Gateway/Abstract.php:2590 -msgid " + %1$s%% fee might apply" -msgstr "Möglicherweise fällt eine + %1$s%%-Gebühr an" +#: ../src/PaymentMethods/Voucher.php:54, ../src/Gateway/Voucher/VoucherModule.php:220 +msgid "Select the default products category" +msgstr "Standardkategorie für Produkte wählen" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. -#: build/src/Mollie/WC/Gateway/Abstract.php:2607 -#: src/Mollie/WC/Gateway/Abstract.php:2607 -msgid " + %1$s %2$s + %3$s%% fee might apply" -msgstr "Möglicherweise fällt eine + %1$s %2$s + %3$s%%-Gebühr an" +#: ../src/PaymentMethods/Voucher.php:57 +msgid "No category" +msgstr "Keine Kategorie" -#: build/src/Mollie/WC/Gateway/Abstract.php:2646 -#: src/Mollie/WC/Gateway/Abstract.php:2646 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must " -"be under 500kb." -msgstr "" -"%1$sMollie-Zahlungen für WooCommerce%2$s Datei konnte nicht hochgeladen " -"werden. Die Dateigröße muss weniger als 500 KB betragen." +#: ../src/PaymentMethods/Voucher.php:58, ../src/Gateway/Voucher/VoucherModule.php:113, ../src/Gateway/Voucher/VoucherModule.php:147, ../src/Gateway/Voucher/VoucherModule.php:178, ../src/Gateway/Voucher/VoucherModule.php:233, ../src/Gateway/Voucher/VoucherModule.php:293 +msgid "Meal" +msgstr "Essen" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -msgid "Order completed using %1$s payment (%2$s)." -msgstr "Vorgang über %1$s-Bezahlung (%2$s) erfolgt." +#: ../src/PaymentMethods/Voucher.php:59, ../src/Gateway/Voucher/VoucherModule.php:114, ../src/Gateway/Voucher/VoucherModule.php:148, ../src/Gateway/Voucher/VoucherModule.php:181, ../src/Gateway/Voucher/VoucherModule.php:234, ../src/Gateway/Voucher/VoucherModule.php:294 +msgid "Eco" +msgstr "Öko" -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:165 -msgid "" -"Updated subscription from 'On hold' to 'Active' until payment fails, because " -"a SEPA Direct Debit payment takes some time to process." -msgstr "" -"Das Abonnement wird von ‚ausstehend‘ auf ‚aktiv‘ aktualisiert, bis die " -"Zahlung fehlschlägt, da SEPA-Direktmandate etwas Zeit in Anspruch nehmen." +#: ../src/PaymentMethods/Voucher.php:60, ../src/Gateway/Voucher/VoucherModule.php:115, ../src/Gateway/Voucher/VoucherModule.php:149, ../src/Gateway/Voucher/VoucherModule.php:184, ../src/Gateway/Voucher/VoucherModule.php:235, ../src/Gateway/Voucher/VoucherModule.php:295 +msgid "Gift" +msgstr "Geschenk" -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:313 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:313 -msgid "Could not create %s renewal payment." -msgstr "Erneute %s-Zahlung konnte nicht erstellt werden." +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/PaymentMethods/Voucher.php:64 +msgid "In order to process it, all products in the order must have a category. This selector will assign the default category for the shop products" +msgstr "Um die Verarbeitung zu ermöglichen, müssen alle Produkte der Bestellung eine Kategorie haben. Dieses Auswahlwerkzeug weist den Produkten im Shop die Standardkategorie zu" -#: build/src/Mollie/WC/Gateway/Applepay.php:48 -#: src/Mollie/WC/Gateway/Applepay.php:48 -msgid "Apple Pay" -msgstr "Apple Pay" +#: ../src/SDK/Api.php:49 +msgid "Invalid API key(s). Get them on the %1$sDevelopers page in the Mollie dashboard%2$s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters." +msgstr "Invalide(r) API-Schlüssel. Beziehen Sie API-Schlüssel über die %1$s-Entwicklerseite im mobilen Dashboard%2$s. API-Schlüssel müssen mit ‚live_‘ oder ‚test_‘ beginnen, mindestens 30 Zeichen enthalten und dürfen keine Sonderzeichen enthalten." -#: build/src/Mollie/WC/Gateway/Applepay.php:56 -#: src/Mollie/WC/Gateway/Applepay.php:56 -msgid "To accept payments via Apple Pay" -msgstr "Um Bezahlungen über Apple Pay zu akzeptieren" +#: ../src/SDK/Api.php:47 +msgid "No API key provided. Please set your Mollie API keys below." +msgstr "Kein API-Schlüssel vorgegeben. Legen Sie Ihre Mollie-API-Schlüssel unten fest." -#: build/src/Mollie/WC/Gateway/Bancontact.php:29 -#: src/Mollie/WC/Gateway/Bancontact.php:29 -msgid "Bancontact" -msgstr "Bancontact" +#: ../src/Settings/Settings.php:174 +msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb." +msgstr "%1$sMollie-Zahlungen für WooCommerce%2$s Datei konnte nicht hochgeladen werden. Die Dateigröße muss weniger als 500 KB betragen." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:38 -#: build/src/Mollie/WC/Helper/Settings.php:257 -#: src/Mollie/WC/Gateway/BankTransfer.php:38 -#: src/Mollie/WC/Helper/Settings.php:257 -msgid "Activate expiry date setting" -msgstr "Einstellungen zum Ablaufdatum aktivieren" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:39 -#: build/src/Mollie/WC/Helper/Settings.php:258 -#: src/Mollie/WC/Gateway/BankTransfer.php:39 -#: src/Mollie/WC/Helper/Settings.php:258 -msgid "Enable expiry date for payments" -msgstr "Ablaufdatum für Zahlungen aktivieren" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:40 -#: src/Mollie/WC/Gateway/BankTransfer.php:40 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the payment will expire. This will turn all transactions into payments " -"instead of orders" -msgstr "" -"Aktivieren Sie diese Option, wenn Sie eine Anzahl an Tagen festlegen " -"möchten, nach deren Ablauf eine Bezahlung abläuft. Alle Transaktionen werden " -"dadurch in Zahlungen anstatt Bestellungen umgewandelt" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:45 -#: build/src/Mollie/WC/Helper/Settings.php:264 -#: build/src/Mollie/WC/Plugin.php:927 src/Mollie/WC/Gateway/BankTransfer.php:45 -#: src/Mollie/WC/Helper/Settings.php:264 src/Mollie/WC/Plugin.php:927 -msgid "Expiry date" -msgstr "Ablaufdatum" +#: ../src/Settings/Settings.php:216 +msgid "Gateway Disabled" +msgstr "Gateway deaktiviert" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:47 -#: src/Mollie/WC/Gateway/BankTransfer.php:47 -msgid "" -"Number of DAYS after the payment will expire. Default %d days" -msgstr "TAGE nach Ende der Zahlungsfrist. Standard: %d Tage." +#: ../src/Settings/Settings.php:237 +msgid "Return to payments" +msgstr "Zurück zu den Zahlungen" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:56 -#: src/Mollie/WC/Gateway/BankTransfer.php:56 -msgid "Skip Mollie payment screen" -msgstr "Mollie-Bezahlseite überspringen" +#: ../src/Settings/Settings.php:252, ../src/Settings/General/MollieGeneralSettings.php:86 +msgid "Sell to specific countries" +msgstr "In bestimmten Ländern verkaufen" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:57 -#: src/Mollie/WC/Gateway/BankTransfer.php:57 -msgid "Skip Mollie payment screen when Bank Transfer is selected" -msgstr "Mollie-Bezahlseite überspringen, wenn Überweisung ausgewählt wurde" +#: ../src/Settings/Settings.php:264 +msgid "Choose countries…" +msgstr "Länder wählen…" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:58 -#: src/Mollie/WC/Gateway/BankTransfer.php:58 -msgid "" -"Enable this option if you want to skip redirecting your user to the Mollie " -"payment screen, instead this will redirect your user directly to the " -"WooCommerce order received page displaying instructions how to complete the " -"Bank Transfer payment." -msgstr "" -"Aktivieren Sie diese Option, um die Weiterleitung Ihres Benutzers auf die " -"Mollie-Bezahlseite zu überspringen. Stattdessen wird Ihr Benutzer direkt zur " -"Bestellbestätigung von WooCommerce weitergeleitet und bekommt eine " -"Schrittanweisung zur Abwicklung der Überweisungszahlung angezeigt." +#: ../src/Settings/Settings.php:265 +msgid "Country" +msgstr "Land" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:138 -#: src/Mollie/WC/Gateway/BankTransfer.php:138 -msgid "Bank Transfer" -msgstr "Überweisung" +#: ../src/Settings/Settings.php:274 +msgid "Select all" +msgstr "Alle auswählen" -#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC -#: build/src/Mollie/WC/Gateway/BankTransfer.php:188 -#: build/src/Mollie/WC/Gateway/DirectDebit.php:80 -#: build/src/Mollie/WC/Gateway/Ideal.php:124 -#: build/src/Mollie/WC/Gateway/Sofort.php:64 -#: src/Mollie/WC/Gateway/BankTransfer.php:188 -#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124 -#: src/Mollie/WC/Gateway/Sofort.php:64 -msgid "" -"Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" -msgstr "" -"Zahlung durch %1$s erfolgt (IBAN (letzte 4 Ziffern): %2$s, BIC: %3$s)" +#: ../src/Settings/Settings.php:275 +msgid "Select none" +msgstr "Auswahl aufheben" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:198 -#: src/Mollie/WC/Gateway/BankTransfer.php:198 -msgid "" -"Please complete your payment by transferring the total amount to the " -"following bank account:" -msgstr "" -"Bitte schließen Sie die Zahlung ab, indem Sie den vollen Betrag auf das " -"folgende Konto überweisen:" +#: ../src/Settings/Settings.php:470 +msgid "Error" +msgstr "Fehler" -#. translators: Placeholder 1: 'Stichting Mollie Payments' -#: build/src/Mollie/WC/Gateway/BankTransfer.php:202 -#: src/Mollie/WC/Gateway/BankTransfer.php:202 -msgid "Beneficiary: %s" -msgstr "Begünstigter: %s" +#: ../src/Settings/Settings.php:484 +msgid "Mollie status:" +msgstr "Mollie-Status:" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:203 -#: src/Mollie/WC/Gateway/BankTransfer.php:203 -msgid "IBAN: %s" -msgstr "IBAN: %s" +#: ../src/Settings/Settings.php:485 +msgid "Connected" +msgstr "Verbunden" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:204 -#: src/Mollie/WC/Gateway/BankTransfer.php:204 -msgid "BIC: %s" -msgstr "BIC: %s" +#: ../src/Settings/SettingsModule.php:171 +msgid "Mollie settings" +msgstr "Mollie-Einstellungen" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:209 -#: src/Mollie/WC/Gateway/BankTransfer.php:209 -msgid "Payment reference: %s" -msgstr "Zahlungsreferenz: %s" +#: ../src/Settings/SettingsModule.php:177 +msgid "Logs" +msgstr "Protokolle" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:214 -#: src/Mollie/WC/Gateway/BankTransfer.php:214 -msgid "Please provide the payment reference %s" -msgstr "Geben Sie bitte die Zahlungsreferenz %s an" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/SettingsModule.php:187 +msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production." +msgstr "%1$sMollie-Zahlungen für WooCommerce%2$s Testmodus aktiv. %3$s Deaktivieren Sie den Testmodus,%4$s bevor Sie Änderungen in die Produktivumgebung einbinden." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:228 -#: src/Mollie/WC/Gateway/BankTransfer.php:228 -msgid "The payment will expire on %s." -msgstr "Die Zahlungsfrist läuft am %s ab." +#: ../src/Shared/Data.php:628 +msgid "Item #%1$s stock incremented from %2$s to %3$s." +msgstr "Artikel #%1$s Bestand von %2$s auf %3$s erhöht." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:235 -#: src/Mollie/WC/Gateway/BankTransfer.php:235 -msgid "" -"The payment will expire on %s. Please make sure you " -"transfer the total amount before this date." -msgstr "" -"Die Zahlungsfrist läuft am %s ab. Bitte überweisen Sie bis " -"dahin den vollen Betrag." +#. translators: Placeholder 1: Plugin title. Placeholder 2: Min WooCommerce version. Placeholder 3: WooCommerce version used. +#: ../src/Shared/Status.php:74 +msgid "The %1$s plugin requires at least WooCommerce version %2$s, you are using version %3$s. Please update your WooCommerce plugin." +msgstr "Das %1$s-Plugin benötigt WooCommerce %2$s oder höher, Sie verwenden Version %3$s. Aktualisieren Sie bitte Ihr WooCommerce-Plugin." -#: build/src/Mollie/WC/Gateway/Belfius.php:33 -#: src/Mollie/WC/Gateway/Belfius.php:33 -msgid "Belfius Direct Net" -msgstr "Belfius Direct Net" +#: ../src/Shared/Status.php:87 +msgid "Mollie API client not installed. Please make sure the plugin is installed correctly." +msgstr "Mobiler API-Client nicht installiert. Vergewissern Sie sich, dass das Plugin korrekt installiert ist." -#: build/src/Mollie/WC/Gateway/Creditcard.php:84 -#: src/Mollie/WC/Gateway/Creditcard.php:84 -msgid "Credit card" -msgstr "Kreditkarte" +#: ../src/Shared/Status.php:96 +msgid "Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable it in your server or ask your webhoster to enable it for you." +msgstr "Mollie Payments for WooCommerce benötigt die JSON-Erweiterung für PHP. Schalten Sie sie auf Ihrem Server frei oder bitten Sie Ihren Hosting-Anbieter, sie freizuschalten." -#. translators: Placeholder 1: card holder -#: build/src/Mollie/WC/Gateway/Creditcard.php:136 -#: src/Mollie/WC/Gateway/Creditcard.php:136 -msgid "Payment completed by %s" -msgstr "Zahlung durch %s erfolgt" +#. translators: Placeholder 1: Min PHP version. Placeholder 2: PHP version used. Placeholder 3: Opening link tag. placeholder 4: Closing link tag. +#: ../src/Shared/Status.php:111 +msgid "Mollie Payments for WooCommerce require PHP %1$s or higher, you have PHP %2$s. Please upgrade and view %3$sthis FAQ%4$s" +msgstr "Für Mollie-Zahlungen für WooCommerce wird mindestens PHP %1$s benötigt. Sie verwenden PHP %2$s. Bitte aktualisieren Sie PHP und beachten Sie %3$sdiese häufig gestellten Fragen%4$s." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:42 -#: src/Mollie/WC/Gateway/DirectDebit.php:42 -msgid "SEPA Direct Debit" -msgstr "SEPA-Direktmandat" +#: ../src/Shared/Status.php:123 +msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration." +msgstr "Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung JSON benötigt. Bitte aktivieren Sie die ‚json‘-Erweiterung in Ihrer PHP-Konfiguration." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:49 -#: src/Mollie/WC/Gateway/DirectDebit.php:49 -msgid "" -"SEPA Direct Debit is used for recurring payments with WooCommerce " -"Subscriptions, and will not be shown in the WooCommerce checkout for regular " -"payments! You also need to enable iDEAL and/or other \"first\" payment " -"methods if you want to use SEPA Direct Debit." -msgstr "" -"Für wiederkehrende Zahlungen mit WooCommerce Subscriptions werden SEPA-" -"Direktmandate verwendet. Diese werden nicht im WooCommerce-Bezahlvorgang für " -"reguläre Zahlungen angezeigt. Sie müssen außerdem iDEAL und/oder weitere " -"„erste“ Bezahlmethoden aktivieren, wenn Sie SEPA-Direktmandate verwenden " -"möchten." +#: ../src/Shared/Status.php:130 +msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration." +msgstr "Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung cURL benötigt. Bitte aktivieren Sie die ‚curl‘-Erweiterung in Ihrer PHP-Konfiguration." -#: build/src/Mollie/WC/Gateway/EPS.php:29 src/Mollie/WC/Gateway/EPS.php:29 -msgid "EPS" -msgstr "EPS" +#: ../src/Shared/Status.php:138 +msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available." +msgstr "Für Mollie-Zahlungen für WooCommerce müssen PHP cURL-Funktionen verfügbar sein. Vergewissern Sie sich, dass alle diese Funktionen verfügbar sind." -#: build/src/Mollie/WC/Gateway/Giftcard.php:31 -#: src/Mollie/WC/Gateway/Giftcard.php:31 -msgid "Show gift cards dropdown" -msgstr "Drop-down-Liste für Geschenkkarten anzeigen" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSepaRecurringGateway.php:136, ../src/Subscription/MollieSubscriptionGateway.php:468 +msgid "%1$s payment started (%2$s)." +msgstr "%1$s-Zahlung gestartet (%2$s)." -#: build/src/Mollie/WC/Gateway/Giftcard.php:33 -#: src/Mollie/WC/Gateway/Giftcard.php:33 -msgid "" -"If you disable this, a dropdown with various gift cards will not be shown in " -"the WooCommerce checkout, so users will select a gift card on the Mollie " -"payment page after checkout." -msgstr "" -"Wenn Sie die Option deaktivieren, wird die Drop-down-Liste mit verschiedenen " -"Geschenkkarten nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die " -"Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-" -"Bezahlvorgang eine Geschenkkarte aus." - -#: build/src/Mollie/WC/Gateway/Giftcard.php:37 -#: build/src/Mollie/WC/Gateway/Ideal.php:39 -#: build/src/Mollie/WC/Gateway/Kbc.php:38 src/Mollie/WC/Gateway/Giftcard.php:37 -#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Kbc.php:38 -msgid "Issuers empty option" -msgstr "Kartenaussteller-Option leer" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSubscriptionGateway.php:199 +msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process." +msgstr "Das Abonnement wird von ‚ausstehend‘ auf ‚aktiv‘ aktualisiert, bis die Zahlung fehlschlägt, da SEPA-Direktmandate etwas Zeit in Anspruch nehmen." -#: build/src/Mollie/WC/Gateway/Giftcard.php:39 -#: src/Mollie/WC/Gateway/Giftcard.php:39 -msgid "" -"This text will be displayed as the first option in the gift card dropdown, " -"but only if the above 'Show gift cards dropdown' is enabled." -msgstr "" -"Dieser Text wird als erste Option in der Drop-down-Liste für Geschenkkarten " -"angezeigt, wenn „Drop-down-Liste für Geschenkkarten anzeigen“ weiter oben " -"aktiviert wurde." +#: ../src/Subscription/MollieSubscriptionGateway.php:299 +msgid "The customer (%s) could not be used or found. " +msgstr "Der Kunde (%s) konnte nicht verwendet oder gefunden werden. " -#: build/src/Mollie/WC/Gateway/Giftcard.php:58 -#: src/Mollie/WC/Gateway/Giftcard.php:58 -msgid "Gift cards" -msgstr "Geschenkkarten" +#: ../src/Subscription/MollieSubscriptionGateway.php:326 +msgid "The customer (%s) does not have a valid mandate." +msgstr "Der Kunde (%s) hat kein gültiges Mandat." -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Giftcard.php:74 -#: src/Mollie/WC/Gateway/Giftcard.php:74 -msgid "Select your gift card" -msgstr "Wählen Sie Ihre Geschenkkarte aus" +#. translators: Placeholder 1: Payment method title +#: ../src/Subscription/MollieSubscriptionGateway.php:366 +msgid "Could not create %s renewal payment." +msgstr "Erneute %s-Zahlung konnte nicht erstellt werden." -#: build/src/Mollie/WC/Gateway/Giropay.php:29 -#: src/Mollie/WC/Gateway/Giropay.php:29 -msgid "Giropay" -msgstr "Giropay" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Subscription/SubscriptionModule.php:106 +msgid "%1$s payment failed (%2$s)." +msgstr "%1$s-Bezahlung fehlgeschlagen ((%2$s))." -#: build/src/Mollie/WC/Gateway/Ideal.php:33 src/Mollie/WC/Gateway/Ideal.php:33 -msgid "Show iDEAL banks dropdown" -msgstr "Drop-down-Liste für iDEAL-Banken anzeigen" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:42 +msgid "%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sServer erfüllt die Anforderungen von Apple nicht%2$s Überprüfen Sie die %3$sAnforderungen von Apple an Server%4$s, um den Fehler zu beheben, damit die Schaltfläche Apple Pay korrekt funktioniert" -#: build/src/Mollie/WC/Gateway/Ideal.php:35 src/Mollie/WC/Gateway/Ideal.php:35 -msgid "" -"If you disable this, a dropdown with various iDEAL banks will not be shown " -"in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie " -"payment page after checkout." -msgstr "" -"Wenn Sie die Option deaktivieren, wird die Drop-down-Liste mit verschiedenen " -"iDEAL-Banken nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die " -"Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-" -"Bezahlvorgang eine iDEAL-Bank aus." +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:58 +msgid "%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sValidierungsfehler bei Apple Pay%2$s Überprüfen Sie die %3$sAnforderungen von Apple an Server%4$s, um den Fehler zu beheben, damit die Schaltfläche Apple Pay korrekt funktioniert" -#: build/src/Mollie/WC/Gateway/Ideal.php:41 src/Mollie/WC/Gateway/Ideal.php:41 -msgid "" -"This text will be displayed as the first option in the iDEAL issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above 'Show iDEAL banks dropdown' is enabled." -msgstr "" -"Dieser Text wird als erste Option in der Drop-down-Liste für iDEAL-" -"Kartenaussteller angezeigt. Erfolgt keine Eingabe, wird „Wählen Sie Ihre " -"Bank aus“ angezeigt. Nur wenn die obere Option „Drop-down-Liste für iDEAL-" -"Banken anzeigen“ aktiviert wurde." +#: ../src/Gateway/Voucher/VoucherModule.php:78, ../src/Settings/Page/MollieSettingsPage.php:49, ../src/Settings/Page/MollieSettingsPage.php:182 +msgid "Mollie Settings" +msgstr "Mollie-Einstellungen" -#: build/src/Mollie/WC/Gateway/Ideal.php:60 src/Mollie/WC/Gateway/Ideal.php:60 -msgid "iDEAL" -msgstr "iDEAL" +#: ../src/Gateway/Voucher/VoucherModule.php:108, ../src/Gateway/Voucher/VoucherModule.php:143, ../src/Gateway/Voucher/VoucherModule.php:166 +msgid "Mollie Voucher Category" +msgstr "Mollie-Gutscheinkategorie" -#. translators: Default iDEAL description, displayed above issuer drop down -#. translators: Default KBC/CBC dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Ideal.php:76 -#: build/src/Mollie/WC/Gateway/Kbc.php:75 src/Mollie/WC/Gateway/Ideal.php:76 -#: src/Mollie/WC/Gateway/Kbc.php:75 -msgid "Select your bank" -msgstr "Wählen Sie Ihre Bank aus" +#: ../src/Gateway/Voucher/VoucherModule.php:111, ../src/Gateway/Voucher/VoucherModule.php:145, ../src/Gateway/Voucher/VoucherModule.php:170 +msgid "--Please choose an option--" +msgstr "--Bitte eine Option wählen--" -#: src/Mollie/WC/Gateway/In3:29 -msgid "in3" -msgstr "in3" +#: ../src/Gateway/Voucher/VoucherModule.php:112, ../src/Gateway/Voucher/VoucherModule.php:146, ../src/Gateway/Voucher/VoucherModule.php:175, ../src/Gateway/Voucher/VoucherModule.php:232, ../src/Gateway/Voucher/VoucherModule.php:292 +msgid "No Category" +msgstr "Keine Kategorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:32 src/Mollie/WC/Gateway/Kbc.php:32 -msgid "Show KBC/CBC banks dropdown" -msgstr "Drop-down-Liste für KBC/CBC-Banken anzeigen" +#: ../src/Gateway/Voucher/VoucherModule.php:151, ../src/Gateway/Voucher/VoucherModule.php:188 +msgid "Select a voucher category to apply to all products with this category" +msgstr "Wählen Sie eine Gutscheinkategorie aus, die auf alle Produkte dieser Kategorie angewendet werden soll" -#: build/src/Mollie/WC/Gateway/Kbc.php:34 src/Mollie/WC/Gateway/Kbc.php:34 -msgid "" -"If you disable this, a dropdown with various KBC/CBC banks will not be shown " -"in the WooCommerce checkout, so users will select a KBC/CBC bank on the " -"Mollie payment page after checkout." -msgstr "" -"Wenn Sie die Option deaktivieren, wird die Drop-down-Liste mit verschiedenen " -"KBC/CBC-Banken nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die " -"Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-" -"Bezahlvorgang eine KBC/CBC-Bank aus." +#: ../src/Gateway/Voucher/VoucherModule.php:224 +msgid "Products voucher category" +msgstr "Produktgutscheinkategorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:40 src/Mollie/WC/Gateway/Kbc.php:40 -msgid "" -"This text will be displayed as the first option in the KBC/CBC issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above ''Show KBC/CBC banks dropdown' is enabled." -msgstr "" -"Dieser Text wird als erste Option in der Drop-down-Liste für KBC/CBC-" -"Kartenaussteller angezeigt. Erfolgt keine Eingabe, wird „Wählen Sie Ihre " -"Bank aus“ angezeigt. Nur wenn die obere Option „Drop-down-Liste für KBC/CBC-" -"Banken anzeigen“ aktiviert wurde." +#: ../src/Gateway/Voucher/VoucherModule.php:231, ../src/Gateway/Voucher/VoucherModule.php:291 +msgid "Same as default category" +msgstr "Entspricht Standardkategorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:59 src/Mollie/WC/Gateway/Kbc.php:59 -msgid "KBC/CBC Payment Button" -msgstr "KBC/CBC-Zahlungsbutton" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Gateway/Voucher/VoucherModule.php:241 +msgid "In order to process it, all products in the order must have a category. To disable the product from voucher selection select \"No category\" option." +msgstr "Um die Verarbeitung zu ermöglichen, müssen alle Produkte der Bestellung eine Kategorie haben. Um ein Produkt von der Auswahl von Gutscheinen auszuschließen, wählen Sie die Option „Keine Kategorie“." -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -msgid "Klarna Pay later" -msgstr "Klarna Pay later" +#: ../src/Gateway/Voucher/VoucherModule.php:288 +msgid "Mollie Voucher category" +msgstr "Mollie-Gutscheinkategorie" -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -msgid "" -"To accept payments via Klarna, all default WooCommerce checkout fields " -"should be enabled and required." -msgstr "" -"Um Bezahlungen über Klarna zu akzeptieren, müssen alle standardmäßigen " -"Felder im WooCommerce-Bezahlvorgang aktiviert und verpflichtend sein." +#: ../src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (Apple Pay transaction ID: %3$s)" +msgstr "Zahlung durch %1$s - %2$s (Apple Pay Transaktions-ID: %3$s) erfolgt" -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -msgid "Klarna Pay now" -msgstr "Klarna Pay now" +#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:26, ../src/PaymentMethods/InstructionStrategies/DirectdebitInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/IdealInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/SofortInstructionStrategy.php:20 +msgid "Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" +msgstr "Zahlung durch %1$s erfolgt (IBAN (letzte 4 Ziffern): %2$s, BIC: %3$s)" -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -msgid "Klarna Slice it" -msgstr "Klarna Slice it" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:35 +msgid "Please complete your payment by transferring the total amount to the following bank account:" +msgstr "Bitte schließen Sie die Zahlung ab, indem Sie den vollen Betrag auf das folgende Konto überweisen:" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: build/src/Mollie/WC/Plugin.php:508 src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: src/Mollie/WC/Plugin.php:508 -msgid "Select the default products category" -msgstr "Standardkategorie für Produkte wählen" +#. translators: Placeholder 1: 'Stichting Mollie Payments' +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:39 +msgid "Beneficiary: %s" +msgstr "Begünstigter: %s" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:46 -#: src/Mollie/WC/Gateway/Mealvoucher.php:46 -msgid "" -"In order to process it, all products in the order must have a category. This " -"selector will assign the default category for the shop products" -msgstr "" -"Um die Verarbeitung zu ermöglichen, müssen alle Produkte der Bestellung eine " -"Kategorie haben. Dieses Auswahlwerkzeug weist den Produkten im Shop die " -"Standardkategorie zu" +#. translators: Placeholder 1: Payment details bank account +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:41 +msgid "IBAN: %s" +msgstr "IBAN: %s" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:66 -#: src/Mollie/WC/Gateway/Mealvoucher.php:66 -msgid "Voucher" -msgstr "Gutschein" +#. translators: Placeholder 1: Payment details bic +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:43 +msgid "BIC: %s" +msgstr "BIC: %s" -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:82 -#: src/Mollie/WC/Gateway/Mealvoucher.php:82 -msgid "voucher" -msgstr "Gutschein" +#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:50 +msgid "Please provide the payment reference %s" +msgstr "Geben Sie bitte die Zahlungsreferenz %s an" -#: build/src/Mollie/WC/Gateway/MyBank.php:36 -#: src/Mollie/WC/Gateway/MyBank.php:36 -msgid "MyBank" -msgstr "MyBank" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:47 +msgid "Payment reference: %s" +msgstr "Zahlungsreferenz: %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:44 -#: src/Mollie/WC/Gateway/MyBank.php:44 -msgid "To accept payments via MyBank" -msgstr "Um Bezahlungen über MyBank zu akzeptieren" +#. translators: Placeholder 1: Payment expiry date +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:66 +msgid "The payment will expire on %s. Please make sure you transfer the total amount before this date." +msgstr "Die Zahlungsfrist läuft am %s ab. Bitte überweisen Sie bis dahin den vollen Betrag." -#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer Account number -#: build/src/Mollie/WC/Gateway/MyBank.php:73 -#: src/Mollie/WC/Gateway/MyBank.php:73 -msgid "Payment completed by %1$s - %2$s" -msgstr "Zahlung durch %1$s - %2$s erfolgt" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:60 +msgid "The payment will expire on %s." +msgstr "Die Zahlungsfrist läuft am %s ab." -#: build/src/Mollie/WC/Gateway/PayPal.php:43 -#: src/Mollie/WC/Gateway/PayPal.php:43 -msgid "PayPal" -msgstr "PayPal" +#. translators: Placeholder 1: card holder +#: ../src/PaymentMethods/InstructionStrategies/CreditcardInstructionStrategy.php:20 +msgid "Payment completed by %s" +msgstr "Zahlung durch %s erfolgt" -#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID -#: build/src/Mollie/WC/Gateway/PayPal.php:74 -#: build/src/Mollie/WC/Payment/Object.php:695 -#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695 -msgid "" -"Payment completed by %s - %s (PayPal transaction ID: %s)" -msgstr "" -"Zahlung durch %s - %s (PayPal Transaktions-ID: %s) erfolgt" +#. translators: Placeholder 1: payment method +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:34 +msgid "Payment completed with %s" +msgstr "Zahlung durch %s erfolgt" -#: build/src/Mollie/WC/Gateway/Paysafecard.php:20 -#: src/Mollie/WC/Gateway/Paysafecard.php:20 -msgid "paysafecard" -msgstr "paysafecard" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:26 +msgid "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant." +msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten. Sie erhalten eine E-Mail, sobald wir eine Bestätigung der Bank oder des Händlers erhalten." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:33 -#: src/Mollie/WC/Gateway/Przelewy24.php:33 -msgid "Przelewy24" -msgstr "Przelewy24" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:20 +msgid "We have not received a definite payment status." +msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:40 -#: src/Mollie/WC/Gateway/Przelewy24.php:40 -msgid "" -"To accept payments via Przelewy24, a customer email is required for every " -"payment." -msgstr "" -"Um Bezahlungen über Przelewy24 zu akzeptieren, wird für jede Bezahlung eine " -"Kunden-E-Mail benötigt." +#: ../src/PaymentMethods/InstructionStrategies/MybankInstructionStrategy.php:19 +msgid "Payment completed by %1$s - %2$s" +msgstr "Zahlung durch %1$s - %2$s erfolgt" #. translators: Placeholder 1: customer billing email -#: build/src/Mollie/WC/Gateway/Przelewy24.php:64 -#: src/Mollie/WC/Gateway/Przelewy24.php:64 +#: ../src/PaymentMethods/InstructionStrategies/Przelewy24InstructionStrategy.php:20 msgid "Payment completed by %s." msgstr "Zahlung durch %s erfolgt." -#: build/src/Mollie/WC/Gateway/Sofort.php:33 -#: src/Mollie/WC/Gateway/Sofort.php:33 -msgid "SOFORT Banking" -msgstr "SOFORT-Banking" - -#: build/src/Mollie/WC/Helper/Api.php:40 src/Mollie/WC/Helper/Api.php:40 -msgid "No API key provided. Please set your Mollie API keys below." -msgstr "" -"Kein API-Schlüssel vorgegeben. Legen Sie Ihre Mollie-API-Schlüssel unten " -"fest." - -#: build/src/Mollie/WC/Helper/Api.php:42 src/Mollie/WC/Helper/Api.php:42 -msgid "" -"Invalid API key(s). Get them on the %sDevelopers page in the Mollie dashboard" -"%s. The API key(s) must start with 'live_' or 'test_', be at least 30 " -"characters and must not contain any special characters." -msgstr "" -"Invalide(r) API-Schlüssel. Beziehen Sie API-Schlüssel über die %s-" -"Entwicklerseite im mobilen Dashboard%s. API-Schlüssel müssen mit ‚live_‘ " -"oder ‚test_‘ beginnen, mindestens 30 Zeichen enthalten und dürfen keine " -"Sonderzeichen enthalten." - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -msgid "" -"%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server " -"requirements page%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sServer erfüllt die Anforderungen von Apple nicht%2$s Überprüfen Sie die " -"%3$sAnforderungen von Apple an Server%4$s, um den Fehler zu beheben, damit " -"die Schaltfläche Apple Pay korrekt funktioniert" - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -msgid "" -"%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page" -"%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sValidierungsfehler bei Apple Pay%2$s Überprüfen Sie die " -"%3$sAnforderungen von Apple an Server%4$s, um den Fehler zu beheben, damit " -"die Schaltfläche Apple Pay korrekt funktioniert" +#. translators: Placeholder 1: Lock icon. Placeholder 2: Mollie logo. +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:25 +msgid "%1$s Secure payments provided by %2$s" +msgstr "%1$s Sichere Zahlungen bereitgestellt durch %2$s" -#: build/src/Mollie/WC/Helper/OrderLines.php:499 -#: src/Mollie/WC/Helper/OrderLines.php:499 -msgid "Shipping" -msgstr "Versand" +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:41 +msgid "Secure payments provided by" +msgstr "Sichere Zahlungen bereitgestellt durch" -#: build/src/Mollie/WC/Helper/Settings.php:61 -#: src/Mollie/WC/Helper/Settings.php:61 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:34 msgid "%s display settings" msgstr "%s Anzeigeeinstellungen" -#: build/src/Mollie/WC/Helper/Settings.php:99 -#: src/Mollie/WC/Helper/Settings.php:99 +#: ../src/Settings/General/MollieGeneralSettings.php:71 msgid "Display logo on checkout page. Default enabled" msgstr "Logo bei Bezahlvorgang anzeigen. Standard: aktiviert" -#: build/src/Mollie/WC/Helper/Settings.php:107 -#: src/Mollie/WC/Helper/Settings.php:107 +#: ../src/Settings/General/MollieGeneralSettings.php:79 msgid "Sales countries" msgstr "Vertriebsländer" -#: build/src/Mollie/WC/Helper/Settings.php:125 -#: src/Mollie/WC/Helper/Settings.php:125 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:99 msgid "%s custom logo" msgstr "%s Eigenes Logo" -#: build/src/Mollie/WC/Helper/Settings.php:132 -#: src/Mollie/WC/Helper/Settings.php:132 +#: ../src/Settings/General/MollieGeneralSettings.php:103 msgid "Enable custom logo" msgstr "Eigenes Logo aktivieren" -#: build/src/Mollie/WC/Helper/Settings.php:137 -#: src/Mollie/WC/Helper/Settings.php:137 -msgid "" -"Enable the feature to add a custom logo for this gateway. This feature will " -"have precedence over other logo options." -msgstr "" -"Aktivieren Sie die Funktion zum Hinzufügen eines eigenen Logos für dieses " -"Zahlungsportal. Die Funktion hat Vorrang über andere Logo-Optionen." +#: ../src/Settings/General/MollieGeneralSettings.php:109 +msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options." +msgstr "Aktivieren Sie die Funktion zum Hinzufügen eines eigenen Logos für dieses Zahlungsportal. Die Funktion hat Vorrang über andere Logo-Optionen." -#: build/src/Mollie/WC/Helper/Settings.php:143 -#: src/Mollie/WC/Helper/Settings.php:143 +#: ../src/Settings/General/MollieGeneralSettings.php:115 msgid "Upload custom logo" msgstr "Eigenes Logo hochladen" -#: build/src/Mollie/WC/Helper/Settings.php:150 -#: src/Mollie/WC/Helper/Settings.php:150 +#: ../src/Settings/General/MollieGeneralSettings.php:123 msgid "Upload a custom icon for this gateway. The feature must be enabled." -msgstr "" -"Laden Sie ein eigenes Symbol für dieses Zahlungsportal hoch. Die " -"entsprechende Funktion muss aktiviert sein." +msgstr "Laden Sie ein eigenes Symbol für dieses Zahlungsportal hoch. Die entsprechende Funktion muss aktiviert sein." -#: build/src/Mollie/WC/Helper/Settings.php:159 -#: src/Mollie/WC/Helper/Settings.php:159 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:134 msgid "%s surcharge" msgstr "%s Zuschlag" -#: build/src/Mollie/WC/Helper/Settings.php:166 -#: src/Mollie/WC/Helper/Settings.php:166 +#: ../src/Settings/General/MollieGeneralSettings.php:139 msgid "Payment Surcharge" msgstr "Zahlungsgebühr" -#: build/src/Mollie/WC/Helper/Settings.php:172 -#: src/Mollie/WC/Helper/Settings.php:172 +#: ../src/Settings/General/MollieGeneralSettings.php:145 msgid "No fee" msgstr "Keine Gebühr" -#: build/src/Mollie/WC/Helper/Settings.php:176 -#: src/Mollie/WC/Helper/Settings.php:176 +#: ../src/Settings/General/MollieGeneralSettings.php:149 msgid "Fixed fee" msgstr "Feste Gebühr" -#: build/src/Mollie/WC/Helper/Settings.php:180 -#: src/Mollie/WC/Helper/Settings.php:180 +#: ../src/Settings/General/MollieGeneralSettings.php:153 msgid "Percentage" msgstr "Prozentsatz" -#: build/src/Mollie/WC/Helper/Settings.php:184 -#: src/Mollie/WC/Helper/Settings.php:184 +#: ../src/Settings/General/MollieGeneralSettings.php:157 msgid "Fixed fee and percentage" msgstr "Feste Gebühr und Prozentsatz" -#: build/src/Mollie/WC/Helper/Settings.php:190 -#: src/Mollie/WC/Helper/Settings.php:190 +#: ../src/Settings/General/MollieGeneralSettings.php:163 msgid "Choose a payment surcharge for this gateway" msgstr "Wählen Sie eine Zahlungsgebühr für dieses Zahlungsportal aus" -#: build/src/Mollie/WC/Helper/Settings.php:197 -#: src/Mollie/WC/Helper/Settings.php:197 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:172 msgid "Payment surcharge fixed amount in %s" msgstr "Fester Betrag des Zuschlags in %s" -#: build/src/Mollie/WC/Helper/Settings.php:200 -#: src/Mollie/WC/Helper/Settings.php:200 +#: ../src/Settings/General/MollieGeneralSettings.php:176 msgid "Control the fee added on checkout. Default 0.00" -msgstr "" -"Legen Sie die Gebühr fest, die zum Einkaufswagen hinzugefügt wird. Standard: " -"0,00" +msgstr "Legen Sie die Gebühr fest, die zum Einkaufswagen hinzugefügt wird. Standard: 0,00" -#: build/src/Mollie/WC/Helper/Settings.php:210 -#: src/Mollie/WC/Helper/Settings.php:210 +#: ../src/Settings/General/MollieGeneralSettings.php:186 msgid "Payment surcharge percentage amount %" msgstr "Prozentsatz für den Zuschlag in %" -#: build/src/Mollie/WC/Helper/Settings.php:213 -#: src/Mollie/WC/Helper/Settings.php:213 -msgid "Control the percentage fee added on checkout. Default 0.00" -msgstr "" -"Legen Sie einen Prozentsatz für die Gebühr fest, die zum Einkaufswagen " -"hinzugefügt wird. Standard: 0,00" - -#: build/src/Mollie/WC/Helper/Settings.php:223 -#: src/Mollie/WC/Helper/Settings.php:223 -msgid "Payment surcharge limit in %s" -msgstr "Grenzwert für den Zuschlag in %s" - -#: build/src/Mollie/WC/Helper/Settings.php:226 -#: src/Mollie/WC/Helper/Settings.php:226 -msgid "Limit the maximum fee added on checkout. Default 0, means no limit" -msgstr "" -"Setzen Sie einen Grenzwert für die Gebühr, die zum Einkaufswagen hinzugefügt " -"wird. Der Standardwert 0 steht für keinen Grenzwert" - -#: build/src/Mollie/WC/Helper/Settings.php:236 -#: src/Mollie/WC/Helper/Settings.php:236 -msgid "Surcharge only under this limit, in %s" -msgstr "Nur unterhalb dieses Grenzwerts in %s fallen Gebühren an" - -#: build/src/Mollie/WC/Helper/Settings.php:239 -#: src/Mollie/WC/Helper/Settings.php:239 -msgid "" -"Maximum order amount to apply surcharge. If the order is above this number " -"the surcharge will not apply. Default 0, means no maximum" -msgstr "" -"Maximaler Kaufbetrag, bei dem der Zuschlag fällig wird. Wenn die Bestellung " -"mehr als diese Zahl beträgt, wird der Zuschlag nicht fällig. Der " -"Standardwert 0 steht für kein Maximum" - -#: build/src/Mollie/WC/Helper/Settings.php:250 -#: src/Mollie/WC/Helper/Settings.php:250 -msgid "%s advanced" -msgstr "%s fortgeschritten" - -#: build/src/Mollie/WC/Helper/Settings.php:259 -#: src/Mollie/WC/Helper/Settings.php:259 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the order will expire." -msgstr "" -"Aktivieren Sie diese Option, wenn Sie eine Anzahl an Tagen festlegen " -"möchten, nach deren Ablauf eine Bestellung abläuft." - -#: build/src/Mollie/WC/Helper/Settings.php:267 -#: src/Mollie/WC/Helper/Settings.php:267 -msgid "" -"Number of MINUTES after the order will expire and will be canceled at Mollie " -"and WooCommerce. A value of 0 means no expiry date will be considered." -msgstr "" -"Zeit in MINUTEN, nach der die Bestellung abläuft und bei Mollie und " -"WooCommerce storniert wird. Der Wert 0 bedeutet, dass kein Ablaufdatum " -"berücksichtigt wird." - -#: build/src/Mollie/WC/Helper/Settings.php:280 -#: src/Mollie/WC/Helper/Settings.php:280 -msgid "Initial order status" -msgstr "Initialer Bestellstatus" +#: ../src/Settings/General/MollieGeneralSettings.php:189 +msgid "Control the percentage fee added on checkout. Default 0.00" +msgstr "Legen Sie einen Prozentsatz für die Gebühr fest, die zum Einkaufswagen hinzugefügt wird. Standard: 0,00" -#: build/src/Mollie/WC/Helper/Settings.php:299 -#: src/Mollie/WC/Helper/Settings.php:299 -msgid "" -"Some payment methods take longer than a few hours to complete. The initial " -"order state is then set to '%s'. This ensures the order is not cancelled " -"when the setting %s is used." -msgstr "" -"Einige Bezahlmethoden benötigen mehr als ein paar Stunden bis zum Abschluss. " -"Der initiale Bestellstatus wird in diesem Fall auf ‚%s‘ gesetzt. Dadurch " -"wird sichergestellt, dass die Bestellung nicht storniert wird, wenn die " -"Einstellung %s verwendet wird." +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:200 +msgid "Payment surcharge limit in %s" +msgstr "Grenzwert für den Zuschlag in %s" -#: build/src/Mollie/WC/Helper/Settings.php:494 -#: src/Mollie/WC/Helper/Settings.php:494 -msgid "Error" -msgstr "Fehler" +#: ../src/Settings/General/MollieGeneralSettings.php:203 +msgid "Limit the maximum fee added on checkout. Default 0, means no limit" +msgstr "Setzen Sie einen Grenzwert für die Gebühr, die zum Einkaufswagen hinzugefügt wird. Der Standardwert 0 steht für keinen Grenzwert" -#: build/src/Mollie/WC/Helper/Settings.php:507 -#: src/Mollie/WC/Helper/Settings.php:507 -msgid "Mollie status:" -msgstr "Mollie-Status:" +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:214 +msgid "Surcharge only under this limit, in %s" +msgstr "Nur unterhalb dieses Grenzwerts in %s fallen Gebühren an" -#: build/src/Mollie/WC/Helper/Settings.php:508 -#: src/Mollie/WC/Helper/Settings.php:508 -msgid "Connected" -msgstr "Verbunden" +#: ../src/Settings/General/MollieGeneralSettings.php:217 +msgid "Maximum order amount to apply surcharge. If the order is above this number the surcharge will not apply. Default 0, means no maximum" +msgstr "Maximaler Kaufbetrag, bei dem der Zuschlag fällig wird. Wenn die Bestellung mehr als diese Zahl beträgt, wird der Zuschlag nicht fällig. Der Standardwert 0 steht für kein Maximum" -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: src/Mollie/WC/Helper/Settings.php:551 -msgid "Gateway enabled" -msgstr "Gateway aktiviert" +#. translators: Placeholder 1: gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:230 +msgid "%s advanced" +msgstr "%s fortgeschritten" -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Gateway disabled" -msgstr "Gateway deaktiviert" +#: ../src/Settings/General/MollieGeneralSettings.php:237 +msgid "Enable this option if you want to be able to set the time after which the order will expire." +msgstr "Aktivieren Sie diese Option, um den Zeitpunkt, an dem die Bestellung abläuft, selbst festzulegen." -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Disabled" -msgstr "Deaktiviert" +#: ../src/Settings/General/MollieGeneralSettings.php:245 +msgid "Number of MINUTES after the order will expire and will be canceled at Mollie and WooCommerce. A value of 0 means no expiry time will be considered." +msgstr "Zeit in MINUTEN, nach der die Bestellung abläuft und bei Mollie und WooCommerce storniert wird. Der Wert 0 bedeutet, dass kein Ablaufzeitpunkt berücksichtigt wird." -#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:563 -#: src/Mollie/WC/Helper/Settings.php:563 -msgid "The following payment methods are activated in your %sMollie profile%s:" -msgstr "" -"Die folgenden Bezahlmethoden sind in Ihrem %sMollie-Profil%s aktiviert:" +#: ../src/Settings/General/MollieGeneralSettings.php:258 +msgid "Initial order status" +msgstr "Initialer Bestellstatus" -#: build/src/Mollie/WC/Helper/Settings.php:572 -#: src/Mollie/WC/Helper/Settings.php:572 -msgid "Refresh" -msgstr "Aktualisieren" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Settings/General/MollieGeneralSettings.php:277 +msgid "Some payment methods take longer than a few hours to complete. The initial order state is then set to '%1$s'. This ensures the order is not cancelled when the setting %2$s is used." +msgstr "Einige Bezahlmethoden benötigen mehr als ein paar Stunden bis zum Abschluss. Der initiale Bestellstatus wird in diesem Fall auf ‚%1$s‘ gesetzt. Dadurch wird sichergestellt, dass die Bestellung nicht storniert wird, wenn die Einstellung %2$s verwendet wird." -#: build/src/Mollie/WC/Helper/Settings.php:591 -#: src/Mollie/WC/Helper/Settings.php:591 -msgid "Edit" -msgstr "Bearbeiten" +#: ../src/Settings/General/MollieGeneralSettings.php:286 +msgid "Hold Stock (minutes)" +msgstr "Bestand halten (Minuten)" -#: build/src/Mollie/WC/Helper/Settings.php:624 -#: src/Mollie/WC/Helper/Settings.php:624 -msgid "" -"Quickly integrate all major payment methods in WooCommerce, wherever you " -"need them." -msgstr "" -"Integrieren Sie schnell alle gängigen Zahlungsmethoden in WooCommerce, wo " -"immer Sie sie brauchen" +#: ../src/Settings/Page/MollieSettingsPage.php:111 +msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them." +msgstr "Integrieren Sie schnell alle gängigen Zahlungsmethoden in WooCommerce, wo immer Sie sie brauchen" -#: build/src/Mollie/WC/Helper/Settings.php:625 -#: src/Mollie/WC/Helper/Settings.php:625 -msgid "" -" Simply drop them ready-made into your WooCommerce webshop with this " -"powerful plugin by Mollie." -msgstr "" -" Mit dem wirkungsvollen Plugin von Mollie können Sie fertig konfigurierte " -"Zahlungsmethoden einfach in Ihren WooCommerce-Onlineshop einfügen." +#: ../src/Settings/Page/MollieSettingsPage.php:115 +msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie." +msgstr " Mit dem wirkungsvollen Plugin von Mollie können Sie fertig konfigurierte Zahlungsmethoden einfach in Ihren WooCommerce-Onlineshop einfügen." -#: build/src/Mollie/WC/Helper/Settings.php:626 -#: src/Mollie/WC/Helper/Settings.php:626 +#: ../src/Settings/Page/MollieSettingsPage.php:119 msgid " Mollie is dedicated to making payments better for WooCommerce. " msgstr " Ziel von Mollie ist es, Zahlungen für WooCommerce zu verbessern. " -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:123 msgid "Please go to" msgstr "Bitte gehen Sie zur" -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:126 msgid " the signup page" msgstr " Anmeldeseite," -#: build/src/Mollie/WC/Helper/Settings.php:628 -#: src/Mollie/WC/Helper/Settings.php:628 -msgid "" -" to create a new Mollie account and start receiving payments in a couple of " -"minutes. " -msgstr "" -" um ein neues Mollie-Konto zu eröffnen und in wenigen Minuten Zahlungen zu " -"erhalten. " +#: ../src/Settings/Page/MollieSettingsPage.php:130 +msgid " to create a new Mollie account and start receiving payments in a couple of minutes. " +msgstr " um ein neues Mollie-Konto zu eröffnen und in wenigen Minuten Zahlungen zu erhalten. " -#: build/src/Mollie/WC/Helper/Settings.php:629 -#: src/Mollie/WC/Helper/Settings.php:629 +#: ../src/Settings/Page/MollieSettingsPage.php:134 msgid "Contact " msgstr "Kontaktieren Sie uns, " -#: build/src/Mollie/WC/Helper/Settings.php:630 -#: src/Mollie/WC/Helper/Settings.php:630 +#: ../src/Settings/Page/MollieSettingsPage.php:138 msgid " if you have any questions or comments about this plugin." msgstr " falls Sie Fragen oder Anmerkungen zu diesem Plugin haben." -#: build/src/Mollie/WC/Helper/Settings.php:631 -#: src/Mollie/WC/Helper/Settings.php:631 -msgid "" -"Our pricing is always per transaction. No startup fees, no monthly fees, and " -"no gateway fees. No hidden fees, period." -msgstr "" -"Unsere Leistungen werden immer per Transaktion abgerechnet. Es gibt keine " -"Startgebühr, monatliche Gebühr oder Gebühren, um bestimmte Funktionen " -"freizuschalten. Keine versteckten Kosten – Punkt." +#: ../src/Settings/Page/MollieSettingsPage.php:142 +msgid "Our pricing is always per transaction. No startup fees, no monthly fees, and no gateway fees. No hidden fees, period." +msgstr "Unsere Leistungen werden immer per Transaktion abgerechnet. Es gibt keine Startgebühr, monatliche Gebühr oder Gebühren, um bestimmte Funktionen freizuschalten. Keine versteckten Kosten – Punkt." -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:148 msgid "Plugin Documentation" msgstr "Plugin-Dokumentation" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:151 msgid "Contact Support" msgstr "Support kontaktieren" -#: build/src/Mollie/WC/Helper/Settings.php:644 -#: src/Mollie/WC/Helper/Settings.php:644 +#: ../src/Settings/Page/MollieSettingsPage.php:163 msgid "Log plugin events." msgstr "Plugin-Vorgänge protokollieren." -#: build/src/Mollie/WC/Helper/Settings.php:650 -#: src/Mollie/WC/Helper/Settings.php:650 +#. translators: Placeholder 1: Location of the log files +#: ../src/Settings/Page/MollieSettingsPage.php:170 msgid "Log files are saved to %s" msgstr "Protokolldateien werden unter %s gespeichert" -#: build/src/Mollie/WC/Helper/Settings.php:663 -#: build/src/Mollie/WC/Plugin.php:379 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:11 -#: src/Mollie/WC/Helper/Settings.php:663 src/Mollie/WC/Plugin.php:379 -#: src/Mollie/WC/Settings/Page/Mollie.php:11 -msgid "Mollie Settings" -msgstr "Mollie-Einstellungen" - -#: build/src/Mollie/WC/Helper/Settings.php:670 -#: src/Mollie/WC/Helper/Settings.php:670 +#: ../src/Settings/Page/MollieSettingsPage.php:192 msgid "Live API key" msgstr "Live-API-Schlüssel" #. translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:675 -#: build/src/Mollie/WC/Helper/Settings.php:697 -#: src/Mollie/WC/Helper/Settings.php:675 src/Mollie/WC/Helper/Settings.php:697 -msgid "" -"The API key is used to connect to Mollie. You can find your %s API key in your %sMollie profile%s" -msgstr "" -"Der API-Schlüssel wird für die Verbindung mit Mollie verwendet. Sie finden " -"Ihren %s-API-Schlüssel in Ihrem %sMollie-Profil%s" +#: ../src/Settings/Page/MollieSettingsPage.php:197, ../src/Settings/Page/MollieSettingsPage.php:230 +msgid "The API key is used to connect to Mollie. You can find your %1$s API key in your %2$sMollie account%3$s" +msgstr "Der API-Schlüssel wird für die Verbindung mit Mollie verwendet. Sie finden Ihren %1$s-API-Schlüssel in Ihrem %2$sMollie-Konto%3$s" -#: build/src/Mollie/WC/Helper/Settings.php:681 -#: src/Mollie/WC/Helper/Settings.php:681 +#: ../src/Settings/Page/MollieSettingsPage.php:208 msgid "Live API key should start with live_" msgstr "Der Live-API-Schlüssel sollte mit live_ beginnen" -#: build/src/Mollie/WC/Helper/Settings.php:685 -#: src/Mollie/WC/Helper/Settings.php:685 +#: ../src/Settings/Page/MollieSettingsPage.php:215 msgid "Enable test mode" msgstr "Testmodus aktivieren" -#: build/src/Mollie/WC/Helper/Settings.php:688 -#: src/Mollie/WC/Helper/Settings.php:688 -msgid "" -"Enable test mode if you want to test the plugin without using real payments." -msgstr "" -"Aktivieren Sie den Testmodus, wenn Sie das Plugin ohne echte Bezahlung " -"testen möchten." +#: ../src/Settings/Page/MollieSettingsPage.php:218 +msgid "Enable test mode if you want to test the plugin without using real payments." +msgstr "Aktivieren Sie den Testmodus, wenn Sie das Plugin ohne echte Bezahlung testen möchten." -#: build/src/Mollie/WC/Helper/Settings.php:692 -#: src/Mollie/WC/Helper/Settings.php:692 +#: ../src/Settings/Page/MollieSettingsPage.php:225 msgid "Test API key" msgstr "Test-API-Schlüssel" -#: build/src/Mollie/WC/Helper/Settings.php:703 -#: src/Mollie/WC/Helper/Settings.php:703 +#: ../src/Settings/Page/MollieSettingsPage.php:241 msgid "Test API key should start with test_" msgstr "Der Test-API-Schlüssel sollte mit test_ beginnen" -#: build/src/Mollie/WC/Helper/Settings.php:707 -#: src/Mollie/WC/Helper/Settings.php:707 +#: ../src/Settings/Page/MollieSettingsPage.php:248 msgid "Debug Log" msgstr "Debug-Protokoll" -#: build/src/Mollie/WC/Helper/Settings.php:810 -#: src/Mollie/WC/Helper/Settings.php:810 -msgid "" -"You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. " -"Enable SEPA Direct Debit if you want to allow customers to pay subscriptions " -"with iDEAL and/or other \"first\" payment methods." -msgstr "" -"Sie haben WooCommerce Subscriptions aktiviert, SEPA-Direktmandate aber " -"deaktiviert. Aktivieren Sie SEPA-Direktmandate, wenn Sie möchten, dass " -"Kunden Abonnements mit iDEAL und/oder anderen „ersten“ Bezahlmethoden " -"bezahlen dürfen." - -#: build/src/Mollie/WC/Helper/Settings.php:834 -#: src/Mollie/WC/Helper/Settings.php:834 -msgid "" -"You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway " -"enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via " -"Mollie and disabling the default WooCommerce BACS payment gateway to prevent " -"possible conflicts." -msgstr "" -"Sie haben das Standard-Überweisungsgateway von WooCommerce (BACS) in " -"WooCommerce aktiviert. Mollie empfiehlt ausdrücklich, die Banküberweisung " -"über Mollie zu verwenden und das Standard-Überweisungsgateway von " -"WooCommerce (BACS) zu deaktivieren, um potenzielle Konflikte zu vermeiden." - -#: build/src/Mollie/WC/Helper/Settings.php:855 -#: src/Mollie/WC/Helper/Settings.php:855 -msgid "" -"You have activated Klarna. To accept payments, please make sure all default " -"WooCommerce checkout fields are enabled and required. For more information, " -"go to %1sKlarna Pay Later documentation%2s or %3sKlarna Slice it " -"documentation%4s" -msgstr "" -"Sie haben Klarna aktiviert. Um Zahlungen entgegenzunehmen, vergewissern Sie " -"sich bitte, dass alle standardmäßigen WooCommerce-Felder für den " -"Bezahlvorgang aktiviert und verpflichtend sind. Weitere Informationen finden " -"Sie in der %1sDokumentation zu Klarna Pay later%2s oder der %3sDokumentation " -"zu Klarna Slice it%4s" - -#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce version, placeholder 3: used WooCommerce version -#: build/src/Mollie/WC/Helper/Status.php:67 src/Mollie/WC/Helper/Status.php:67 -msgid "" -"The %s plugin requires at least WooCommerce version %s, you are using " -"version %s. Please update your WooCommerce plugin." -msgstr "" -"Das %s-Plugin benötigt WooCommerce %s oder höher, Sie verwenden Version %s. " -"Aktualisieren Sie bitte Ihr WooCommerce-Plugin." - -#: build/src/Mollie/WC/Helper/Status.php:80 src/Mollie/WC/Helper/Status.php:80 -msgid "" -"Mollie API client not installed. Please make sure the plugin is installed " -"correctly." -msgstr "" -"Mobiler API-Client nicht installiert. Vergewissern Sie sich, dass das Plugin " -"korrekt installiert ist." - -#: build/src/Mollie/WC/Helper/Status.php:89 src/Mollie/WC/Helper/Status.php:89 -msgid "" -"Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable " -"it in your server or ask your webhoster to enable it for you." -msgstr "" -"Mollie Payments for WooCommerce benötigt die JSON-Erweiterung für PHP. " -"Schalten Sie sie auf Ihrem Server frei oder bitten Sie Ihren Hosting-" -"Anbieter, sie freizuschalten." - -#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP version -#: build/src/Mollie/WC/Helper/Status.php:104 -#: src/Mollie/WC/Helper/Status.php:104 -msgid "" -"Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. " -"Please upgrade and view %sthis FAQ%s" -msgstr "" -"Für Mollie-Zahlungen für WooCommerce wird mindestens PHP %s benötigt. Sie " -"verwenden PHP %s. Bitte aktualisieren Sie PHP und beachten Sie %sdiese " -"häufig gestellten Fragen%s." - -#: build/src/Mollie/WC/Helper/Status.php:116 -#: src/Mollie/WC/Helper/Status.php:116 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension JSON to be " -"enabled. Please enable the 'json' extension in your PHP configuration." -msgstr "" -"Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung JSON benötigt. " -"Bitte aktivieren Sie die ‚json‘-Erweiterung in Ihrer PHP-Konfiguration." - -#: build/src/Mollie/WC/Helper/Status.php:123 -#: src/Mollie/WC/Helper/Status.php:123 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension cURL to be " -"enabled. Please enable the 'curl' extension in your PHP configuration." -msgstr "" -"Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung cURL benötigt. " -"Bitte aktivieren Sie die ‚curl‘-Erweiterung in Ihrer PHP-Konfiguration." - -#: build/src/Mollie/WC/Helper/Status.php:131 -#: src/Mollie/WC/Helper/Status.php:131 -msgid "" -"Mollie Payments for WooCommerce require PHP cURL functions to be available. " -"Please make sure all of these functions are available." -msgstr "" -"Für Mollie-Zahlungen für WooCommerce müssen PHP cURL-Funktionen verfügbar " -"sein. Vergewissern Sie sich, dass alle diese Funktionen verfügbar sind." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:603 -#: src/Mollie/WC/Payment/Object.php:603 -msgid "" -"%s renewal payment failed via Mollie (%s). You will need to manually review " -"the payment and adjust product stocks if you use them." -msgstr "" -"Erneute %s-Zahlung über Mollie fehlgeschlagen (%s). Sie müssen die Zahlung " -"händisch überprüfen und, falls verwendet, die Produktbestände anpassen." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:637 -#: src/Mollie/WC/Payment/Object.php:637 -msgid "%s payment failed via Mollie (%s)." -msgstr "%s-Bezahlung über Mollie fehlgeschlagen (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:677 -#: src/Mollie/WC/Payment/Object.php:677 -msgid "" -"Mollie webhook called, but payment also started via %s, so the order status " -"is not updated." -msgstr "" -"Der Mollie-WebHook wurde aufgerufen, die Zahlung wurde jedoch gleichzeitig " -"über %s gestartet. Der Bestellstatus wird deshalb nicht aktualisiert." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:262 -#: build/src/Mollie/WC/Payment/Payment.php:247 -#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:247 -msgid "Order completed using %s payment (%s)." -msgstr "Bestellung über %s-Bezahlung (%s) abgeschlossen." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:314 -#: src/Mollie/WC/Payment/Order.php:314 -msgid "" -"Order authorized using %s payment (%s). Set order to completed in " -"WooCommerce when you have shipped the products, to capture the payment. Do " -"this within 28 days, or the order will expire. To handle individual order " -"lines, process the order via the Mollie Dashboard." -msgstr "" -"Bestellung über %s-Bezahlung (%s) autorisiert. Setzen Sie die Bestellung in " -"WooCommerce auf abgeschlossen, wenn Sie die Produkte versandt haben, um die " -"Bezahlung zu erfassen. Erledigen Sie dies innerhalb von 28 Tagen, ansonsten " -"verfällt die Bestellung. Um individuelle Auftragszeilen abzuwickeln, " -"verarbeiten Sie die Bestellung über das Mollie-Dashboard." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:361 -#: src/Mollie/WC/Payment/Order.php:361 -msgid "" -"Order completed at Mollie for %s order (%s). At least one order line " -"completed. Remember: Completed status for an order at Mollie is not the same " -"as Completed status in WooCommerce!" -msgstr "" -"Bestellvorgang bei Mollie für %s-Bestellung (%s) abgeschlossen. Mindestens " -"eine Auftragszeile abgeschlossen. Hinweis: Der abgeschlossene Status bei " -"Mollie ist nicht mit dem abgeschlossenen Status bei WooCommerce " -"gleichzusetzen." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:444 -#: src/Mollie/WC/Payment/Order.php:444 -msgid "%s order (%s) cancelled ." -msgstr "%s-Bestellung (%s) abgebrochen." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:509 -#: src/Mollie/WC/Payment/Order.php:509 -msgid "" -"%s order expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s-Bestellung (%s) abgelaufen, wegen einer weiteren offenen Zahlung (%s) " -"jedoch nicht abgebrochen." - -#. translators: Order note error -#: src/Mollie/WC/Payment/Order.php:619 -msgid "" -"The sum of refunds for all order lines is not identical to the refund " -"amount, so this refund will be processed as a payment amount refund, not an " -"order line refund." -msgstr "" -"Die Summe der Rückerstattungen aller Auftragszeilen stimmt nicht mit dem " -"Rückerstattungsbetrag überein, die Rückerstattung wird deshalb als " -"Rückerstattung des Zahlungsbetrags und nicht als Rückerstattung der " -"Auftragszeilen bearbeitet." - -#. translators: Placeholder 1: payment status. -#: src/Mollie/WC/Payment/Order.php:619 -msgid "Can not refund order amount that has status %1$s at Mollie." -msgstr "" -"Ein Zahlungsbetrag mit dem Status %1$s bei Mollie kann nicht rückerstattet " -"werden." - -#: build/src/Mollie/WC/Payment/Order.php:742 -#: src/Mollie/WC/Payment/Order.php:742 -msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie." -msgstr "%sx %s storniert für %s%s bei WooCommerce und Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:758 -#: src/Mollie/WC/Payment/Order.php:758 -msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"%sx %s erstattet für %s%s bei WooCommerce und Mollie.%s Erstattungs-ID: %s." - -#: build/src/Mollie/WC/Payment/Order.php:836 -#: src/Mollie/WC/Payment/Order.php:836 -msgid "" -"Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"Erstattungsbetrag von %s erstatteten %s bei WooCommerce und Mollie.%s " -"Erstattungs-ID: %s." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:931 -#: src/Mollie/WC/Payment/Order.php:931 -msgid "%s order (%s) expired ." -msgstr "%s-Bestellung (%s) abgelaufen." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -msgid "" -"One of the WooCommerce order items does not have the refund item ID meta " -"value associated to Mollie Order item." -msgstr "" -"Eine der WooCommerce-Auftragspositionen stimmt nicht mit dem entsprechenden " -"Metawert für die ID des Rückerstattungsartikels der Mollie-Auftragsposition " -"überein." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -msgid "" -"Impossible to retrieve the order item ID related to the remote item: %1$s. " -"Try to do a refund by amount." -msgstr "" -"Die Auftragspositions-ID zum folgenden Remote-Artikel konnte nicht abgerufen " -"werden: %1$s. Versuchen Sie, eine Rückerstattung nach Betrag durchzuführen." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -msgid "Empty WooCommerce order items or mollie order lines." -msgstr "Leere WooCommerce-Auftragspositionen oder Mollie-Auftragszeilen." - -#. translators: Placeholder 1: order number -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: build/src/Mollie/WC/Payment/Payment.php:132 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: src/Mollie/WC/Payment/Payment.php:132 -msgctxt "Payment description for {orderNumber}" -msgid "Order {orderNumber}" -msgstr "Bestellung {orderNumber}" - -#. translators: Placeholder 1: store name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: build/src/Mollie/WC/Payment/Payment.php:143 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: src/Mollie/WC/Payment/Payment.php:143 -msgctxt "Payment description for {storeName}" -msgid "StoreName {storeName}" -msgstr "Name des Shops {storeName}" - -#. translators: Placeholder 1: customer first name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: build/src/Mollie/WC/Payment/Payment.php:154 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: src/Mollie/WC/Payment/Payment.php:154 -msgctxt "Payment description for {customer.firstname}" -msgid "Customer Firstname {customer.firstname}" -msgstr "Vorname des Kunden {customer.firstname}" - -#. translators: Placeholder 1: customer last name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: build/src/Mollie/WC/Payment/Payment.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: src/Mollie/WC/Payment/Payment.php:165 -msgctxt "Payment description for {customer.lastname}" -msgid "Customer Lastname {customer.lastname}" -msgstr "Nachname des Kunden {customer.lastname}" - -#. translators: Placeholder 1: customer company name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: build/src/Mollie/WC/Payment/Payment.php:176 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: src/Mollie/WC/Payment/Payment.php:176 -msgctxt "Payment description for {customer.company}" -msgid "Customer Company {customer.company}" -msgstr "Firma des Kunden {customer.company}" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:334 -#: src/Mollie/WC/Payment/Payment.php:334 -msgid "%s payment (%s) cancelled ." -msgstr "%s-Bezahlvorgang (%s) abgebrochen." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:328 -msgid "Processing a payment, no capture needed" -msgstr "Ein Bezahlvorgang wird bearbeitet, keine Erfassung notwendig" - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:342 -msgid "Order already canceled at Mollie, can not be shipped/captured." -msgstr "" -"Die Bestellung wurde bei Mollie bereits storniert und kann nicht versandt/" -"erfasst werden." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:350 -msgid "Order already completed at Mollie, can not be shipped/captured." -msgstr "" -"Die Bestellung wurde bei Mollie bereits abgearbeitet und kann nicht versandt/" -"erfasst werden." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:359 -msgid "" -"Order successfully updated to shipped at Mollie, capture of funds underway." -msgstr "" -"Die Bestellung wurde bei Mollie erfolgreich auf versandt aktualisiert, " -"Erfassung der Geldmittel in Bearbeitung." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:365 -msgid "Order not paid or authorized at Mollie yet, can not be shipped." -msgstr "" -"Die Bestellung wurde bei Mollie noch nicht bezahlt oder autorisiert und kann " -"nicht versandt werden." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:399 -msgid "" -"Order contains Mollie payment method, but not a valid Mollie Order ID. " -"Canceling order failed." -msgstr "" -"Die Bestellung enthält eine Mollie-Zahlungsmethode, aber keine gültige " -"Mollie-Bestell-ID. Stornierung der Bestellung fehlgeschlagen." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:420 -msgid "Order already canceled at Mollie, can not be canceled again." -msgstr "" -"Die Bestellung wurde bei Mollie bereits storniert und kann nicht erneut " -"storniert werden." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:430 -msgid "Order also cancelled at Mollie." -msgstr "Bestellung auch bei Mollie storniert." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:436 -msgid "Order could not be canceled at Mollie, because order status is " -msgstr "" -"Bestellung konnte bei Mollie nicht storniert werden, da der Bestellstatus " - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:404 -#: src/Mollie/WC/Payment/Payment.php:404 -msgid "" -"%s payment expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s-Bestellung abgelaufen (%s), wegen einer weiteren offenen Zahlung (%s) " -"jedoch nicht abgebrochen." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:427 -#: src/Mollie/WC/Payment/Payment.php:427 -msgid "%s payment expired (%s)." -msgstr "%s-Zahlung abgelaufen (%s)." - -#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID -#: build/src/Mollie/WC/Payment/Payment.php:509 -#: src/Mollie/WC/Payment/Payment.php:509 -msgid "Refunded %s%s%s - Payment: %s, Refund: %s" -msgstr "Rückerstattung %s%s%s – Zahlung: %s, Rückerstattung: %s" - -#: build/src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -msgid "" -"Mollie doesn't allow a partial refund of the full amount or quantity of at " -"least one order line. Trying to process this as an amount refund instead." -msgstr "" -"Mollie erlaubt keine teilweise Rückerstattung des vollen Betrags oder der " -"vollen Menge mindestens einer Auftragszeile. Es wird stattdessen versucht, " -"die Eingabe als Erstattungsbetrag zu verarbeiten." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Plugin.php:128 src/Mollie/WC/Plugin.php:128 -msgid "%s payment failed (%s)." -msgstr "%s-Bezahlung fehlgeschlagen (%s)." - -#: build/src/Mollie/WC/Plugin.php:303 src/Mollie/WC/Plugin.php:303 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s " -"disable it%4$s before deploying into production." -msgstr "" -"%1$sMollie-Zahlungen für WooCommerce%2$s Testmodus aktiv. %3$s Deaktivieren " -"Sie den Testmodus,%4$s bevor Sie Änderungen in die Produktivumgebung " -"einbinden." - -#: build/src/Mollie/WC/Plugin.php:411 build/src/Mollie/WC/Plugin.php:444 -#: build/src/Mollie/WC/Plugin.php:466 src/Mollie/WC/Plugin.php:411 -#: src/Mollie/WC/Plugin.php:444 src/Mollie/WC/Plugin.php:466 -msgid "Mollie Voucher Category" -msgstr "Mollie-Gutscheinkategorie" - -#: build/src/Mollie/WC/Plugin.php:414 build/src/Mollie/WC/Plugin.php:446 -#: build/src/Mollie/WC/Plugin.php:469 src/Mollie/WC/Plugin.php:414 -#: src/Mollie/WC/Plugin.php:446 src/Mollie/WC/Plugin.php:469 -msgid "--Please choose an option--" -msgstr "--Bitte eine Option wählen--" - -#: build/src/Mollie/WC/Plugin.php:415 build/src/Mollie/WC/Plugin.php:447 -#: build/src/Mollie/WC/Plugin.php:470 build/src/Mollie/WC/Plugin.php:583 -#: src/Mollie/WC/Plugin.php:415 src/Mollie/WC/Plugin.php:447 -#: src/Mollie/WC/Plugin.php:470 src/Mollie/WC/Plugin.php:583 -msgid "No Category" -msgstr "Keine Kategorie" - -#: build/src/Mollie/WC/Plugin.php:416 build/src/Mollie/WC/Plugin.php:448 -#: build/src/Mollie/WC/Plugin.php:471 build/src/Mollie/WC/Plugin.php:584 -#: src/Mollie/WC/Plugin.php:416 src/Mollie/WC/Plugin.php:448 -#: src/Mollie/WC/Plugin.php:471 src/Mollie/WC/Plugin.php:584 -msgid "Meal" -msgstr "Essen" - -#: build/src/Mollie/WC/Plugin.php:417 build/src/Mollie/WC/Plugin.php:449 -#: build/src/Mollie/WC/Plugin.php:472 build/src/Mollie/WC/Plugin.php:585 -#: src/Mollie/WC/Plugin.php:417 src/Mollie/WC/Plugin.php:449 -#: src/Mollie/WC/Plugin.php:472 src/Mollie/WC/Plugin.php:585 -msgid "Eco" -msgstr "Öko" - -#: build/src/Mollie/WC/Plugin.php:418 build/src/Mollie/WC/Plugin.php:450 -#: build/src/Mollie/WC/Plugin.php:473 build/src/Mollie/WC/Plugin.php:586 -#: src/Mollie/WC/Plugin.php:418 src/Mollie/WC/Plugin.php:450 -#: src/Mollie/WC/Plugin.php:473 src/Mollie/WC/Plugin.php:586 -msgid "Gift" -msgstr "Geschenk" - -#: build/src/Mollie/WC/Plugin.php:452 build/src/Mollie/WC/Plugin.php:475 -#: src/Mollie/WC/Plugin.php:452 src/Mollie/WC/Plugin.php:475 -msgid "Select a voucher category to apply to all products with this category" -msgstr "" -"Wählen Sie eine Gutscheinkategorie aus, die auf alle Produkte dieser " -"Kategorie angewendet werden soll" - -#: build/src/Mollie/WC/Plugin.php:512 src/Mollie/WC/Plugin.php:512 -msgid "Products voucher category" -msgstr "Produktgutscheinkategorie" - -#: build/src/Mollie/WC/Plugin.php:519 build/src/Mollie/WC/Plugin.php:582 -#: src/Mollie/WC/Plugin.php:519 src/Mollie/WC/Plugin.php:582 -msgid "Same as default category" -msgstr "Entspricht Standardkategorie" +#: ../src/Settings/Page/MollieSettingsPage.php:300 +msgid "Gateway enabled" +msgstr "Gateway aktiviert" -#: build/src/Mollie/WC/Plugin.php:529 src/Mollie/WC/Plugin.php:529 -msgid "" -"In order to process it, all products in the order must have a category. To " -"disable the product from voucher selection select \"No category\" option." -msgstr "" -"Um die Verarbeitung zu ermöglichen, müssen alle Produkte der Bestellung eine " -"Kategorie haben. Um ein Produkt von der Auswahl von Gutscheinen " -"auszuschließen, wählen Sie die Option „Keine Kategorie“." +#: ../src/Settings/Page/MollieSettingsPage.php:304 +msgid "Gateway disabled" +msgstr "Gateway deaktiviert" -#: build/src/Mollie/WC/Plugin.php:579 src/Mollie/WC/Plugin.php:579 -msgid "Mollie Voucher category" -msgstr "Mollie-Gutscheinkategorie" +#: ../src/Settings/Page/MollieSettingsPage.php:307 +msgid "Disabled" +msgstr "Deaktiviert" -#: build/src/Mollie/WC/Plugin.php:727 src/Mollie/WC/Plugin.php:727 -msgid "%1$s items refunded in WooCommerce and at Mollie." -msgstr "%1$s erstattete Artikel bei WooCommerce und Mollie." +#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Settings/Page/MollieSettingsPage.php:318 +msgid "The following payment methods are activated in your %1$sMollie profile%2$s:" +msgstr "Die folgenden Bezahlmethoden sind in Ihrem %1$sMollie-Profil%2$s aktiviert:" -#: build/src/Mollie/WC/Plugin.php:745 src/Mollie/WC/Plugin.php:745 -msgid "%1$s items cancelled in WooCommerce and at Mollie." -msgstr "%1$s stornierte Artikel bei WooCommerce und Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:333 +msgid "Refresh" +msgstr "Aktualisieren" -#: build/src/Mollie/WC/Plugin.php:919 src/Mollie/WC/Plugin.php:919 -msgid "Name on card" -msgstr "Name auf der Karte" +#: ../src/Settings/Page/MollieSettingsPage.php:342 +msgid "No payment methods available" +msgstr "Keine Zahlungsmethoden verfügbar" -#: build/src/Mollie/WC/Plugin.php:923 src/Mollie/WC/Plugin.php:923 -msgid "Card number" -msgstr "Kartennummer" +#: ../src/Settings/Page/MollieSettingsPage.php:357 +msgid "Edit" +msgstr "Bearbeiten" -#: build/src/Mollie/WC/Plugin.php:931 src/Mollie/WC/Plugin.php:931 -msgid "CVC/CVV" -msgstr "CVC/CVV" +#: ../src/Settings/Page/MollieSettingsPage.php:365 +msgid "Activate" +msgstr "Aktivieren" -#: build/src/Mollie/WC/Plugin.php:938 src/Mollie/WC/Plugin.php:938 -msgid "An unknown error occurred, please check the card fields." -msgstr "" -"Ein unbekannter Fehler ist aufgetreten, bitte überprüfen Sie die " -"Kartenfelder." +#: ../src/Settings/Page/MollieSettingsPage.php:411 +msgid "You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. Enable SEPA Direct Debit if you want to allow customers to pay subscriptions with iDEAL and/or other \"first\" payment methods." +msgstr "Sie haben WooCommerce Subscriptions aktiviert, SEPA-Direktmandate aber deaktiviert. Aktivieren Sie SEPA-Direktmandate, wenn Sie möchten, dass Kunden Abonnements mit iDEAL und/oder anderen „ersten“ Bezahlmethoden bezahlen dürfen." -#: build/src/Mollie/WC/Plugin.php:1295 src/Mollie/WC/Plugin.php:1295 -msgid "Mollie settings" -msgstr "Mollie-Einstellungen" +#: ../src/Settings/Page/MollieSettingsPage.php:437 +msgid "You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via Mollie and disabling the default WooCommerce BACS payment gateway to prevent possible conflicts." +msgstr "Sie haben das Standard-Überweisungsgateway von WooCommerce (BACS) in WooCommerce aktiviert. Mollie empfiehlt ausdrücklich, die Banküberweisung über Mollie zu verwenden und das Standard-Überweisungsgateway von WooCommerce (BACS) zu deaktivieren, um potenzielle Konflikte zu vermeiden." -#: build/src/Mollie/WC/Plugin.php:1301 src/Mollie/WC/Plugin.php:1301 -msgid "Logs" -msgstr "Protokolle" +#. translators: Placeholder 1: Opening link tag. Placeholder 2: Closing link tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/Page/MollieSettingsPage.php:461 +msgid "You have activated Klarna. To accept payments, please make sure all default WooCommerce checkout fields are enabled and required. For more information, go to %1$sKlarna Pay Later documentation%2$s or %3$sKlarna Slice it documentation%4$s" +msgstr "Sie haben Klarna aktiviert. Um Zahlungen entgegenzunehmen, vergewissern Sie sich bitte, dass alle standardmäßigen WooCommerce-Felder für den Bezahlvorgang aktiviert und verpflichtend sind. Weitere Informationen finden Sie in der %1$sDokumentation zu Klarna Pay later%2$s oder der %3$sDokumentation zu Klarna Slice it%4$s" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:138 -#: src/Mollie/WC/Settings/Page/Mollie.php:138 +#: ../src/Settings/Page/MollieSettingsPage.php:702 msgid "General" msgstr "Allgemein" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:143 -#: src/Mollie/WC/Settings/Page/Mollie.php:143 -msgid "Apple Pay Button" -msgstr "Schaltfläche Apple Pay" - -#: build/src/Mollie/WC/Settings/Page/Mollie.php:147 -#: src/Mollie/WC/Settings/Page/Mollie.php:147 +#: ../src/Settings/Page/MollieSettingsPage.php:707 msgid "Advanced" msgstr "Fortgeschritten" -#: src/Mollie/WC/Gateway/Abstract.php:1987 -msgid "%1$s Secure payments provided by %2$s" -msgstr "%1$s Sichere Zahlungen bereitgestellt durch %2$s" +#: ../src/Settings/Page/MollieSettingsPage.php:710 +msgid "Apple Pay Button" +msgstr "Schaltfläche Apple Pay" diff --git a/languages/mollie-payments-for-woocommerce-en_GB.mo b/languages/mollie-payments-for-woocommerce-en_GB.mo index 9a144a466..75ff29841 100644 Binary files a/languages/mollie-payments-for-woocommerce-en_GB.mo and b/languages/mollie-payments-for-woocommerce-en_GB.mo differ diff --git a/languages/mollie-payments-for-woocommerce-es_ES.mo b/languages/mollie-payments-for-woocommerce-es_ES.mo index 43056898f..e6da23ab8 100644 Binary files a/languages/mollie-payments-for-woocommerce-es_ES.mo and b/languages/mollie-payments-for-woocommerce-es_ES.mo differ diff --git a/languages/mollie-payments-for-woocommerce-es_ES.po b/languages/mollie-payments-for-woocommerce-es_ES.po index 40d8e84ab..6270ab266 100644 --- a/languages/mollie-payments-for-woocommerce-es_ES.po +++ b/languages/mollie-payments-for-woocommerce-es_ES.po @@ -1,2870 +1,1975 @@ -# Copyright (C) 2021 Mollie -# This file is distributed under the same license as the Mollie Payments for WooCommerce plugin. +# Copyright (C) 2022 unnamed project +# This file is distributed under the same license as the unnamed project package. msgid "" msgstr "" -"Project-Id-Version: Mollie Payments for WooCommerce 6.7.0\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mollie-payments-" -"for-woocommerce\n" -"POT-Creation-Date: 2021-11-12T07:59:02+00:00\n" -"PO-Revision-Date: 2022-06-21 08:33+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: es_ES\n" +"Project-Id-Version: Mollie Payments for WooCommerce 7.3.3\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: undefined\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.1\n" -"X-Domain: mollie-payments-for-woocommerce\n" -#. Plugin Name of the plugin -msgid "Mollie Payments for WooCommerce" -msgstr "Mollie Payments for WooCommerce" - -#. Plugin URI of the plugin -#. Author URI of the plugin -msgid "https://www.mollie.com" -msgstr "https://www.mollie.com" - -#. Description of the plugin -msgid "Accept payments in WooCommerce with the official Mollie plugin" -msgstr "Aceptar pagos en WooCommerce con el plugin oficial de Mollie" - -#. Author of the plugin -msgid "Mollie" -msgstr "Mollie" - -#: build/inc/settings/mollie_advanced_settings.php:6 -#: inc/settings/mollie_advanced_settings.php:6 -msgid "Mollie advanced settings" -msgstr "Ajustes avanzados Mollie" - -#: build/inc/settings/mollie_advanced_settings.php:8 -#: inc/settings/mollie_advanced_settings.php:8 +#: ../inc/settings/mollie_advanced_settings.php:12 msgctxt "Label {orderNumber} description for payment description options" msgid "Order number" msgstr "Número de pedido" -#: build/inc/settings/mollie_advanced_settings.php:9 -#: inc/settings/mollie_advanced_settings.php:9 +#: ../inc/settings/mollie_advanced_settings.php:13 msgctxt "Label {storeName} description for payment description options" msgid "Site Title" msgstr "Título del sitio" -#: build/inc/settings/mollie_advanced_settings.php:10 -#: inc/settings/mollie_advanced_settings.php:10 -msgctxt "" -"Label {customer.firstname} description for payment description options" +#: ../inc/settings/mollie_advanced_settings.php:14 +msgctxt "Label {customer.firstname} description for payment description options" msgid "Customer's first name" msgstr "Nombre del cliente" -#: build/inc/settings/mollie_advanced_settings.php:11 -#: inc/settings/mollie_advanced_settings.php:11 +#: ../inc/settings/mollie_advanced_settings.php:15 msgctxt "Label {customer.lastname} description for payment description options" msgid "Customer's last name" msgstr "Apellido del cliente" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:16 msgctxt "Label {customer.company} description for payment description options" msgid "Customer's company name" msgstr "Nombre de empresa del cliente" -#: build/inc/settings/mollie_advanced_settings.php:8 -#: build/src/Mollie/WC/Helper/Settings.php:666 -#: inc/settings/mollie_advanced_settings.php:8 -#: src/Mollie/WC/Helper/Settings.php:666 -msgid "" -"The following options are required to use the plugin and are used by all " -"Mollie payment methods" -msgstr "" -"Se requieren las siguientes opciones para usar el plugin y son usadas por " -"todos los métodos de pago en Mollie" +#: ../inc/settings/mollie_advanced_settings.php:22 +msgid "Mollie advanced settings" +msgstr "Ajustes avanzados Mollie" + +#: ../inc/settings/mollie_advanced_settings.php:24, ../src/Settings/Page/MollieSettingsPage.php:185 +msgid "The following options are required to use the plugin and are used by all Mollie payment methods" +msgstr "Se requieren las siguientes opciones para usar el plugin y son usadas por todos los métodos de pago en Mollie" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:28 msgid "Order status after cancelled payment" msgstr "Estado del pedido después de la cancelación del pago" -#: build/inc/settings/mollie_advanced_settings.php:18 -#: inc/settings/mollie_advanced_settings.php:18 -msgid "" -"Status for orders when a payment (not a Mollie order via the Orders API) is " -"cancelled. Default: pending. Orders with status Pending can be paid with " -"another payment method, customers can try again. Cancelled orders are final. " -"Set this to Cancelled if you only have one payment method or don't want " -"customers to re-try paying with a different payment method. This doesn't " -"apply to payments for orders via the new Orders API and Klarna payments." -msgstr "" -"Estado para pedidos cuando un pago (no un pedido de Mollie vía Orders API) " -"es cancelado. Por defecto: pendiente. Los pedidos con el estado «pendiente» " -"se pueden pagar mediante otro método de pago, los clientes pueden intentarlo " -"de nuevo. Los pedidos cancelados son definitivos. Ajústalo a «Cancelado» si " -"solo tienes un método de pago o no quieres que los clientes vuelvan a " -"intentar realizar el pago mediante otro método. Esto no se aplica a los " -"pagos para pedidos mediante el nuevo Orders API y los pagos Klarna." - -#: build/inc/settings/mollie_advanced_settings.php:23 -#: inc/settings/mollie_advanced_settings.php:23 +#: ../inc/settings/mollie_advanced_settings.php:31 +msgid "Pending" +msgstr "Pendiente" + +#: ../inc/settings/mollie_advanced_settings.php:32 +msgid "Cancelled" +msgstr "Cancelado" + +#: ../inc/settings/mollie_advanced_settings.php:34 +msgid "Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don't want customers to re-try paying with a different payment method. This doesn't apply to payments for orders via the new Orders API and Klarna payments." +msgstr "Estado para pedidos cuando un pago (no un pedido de Mollie vía Orders API) es cancelado. Por defecto: pendiente. Los pedidos con el estado «pendiente» se pueden pagar mediante otro método de pago, los clientes pueden intentarlo de nuevo. Los pedidos cancelados son definitivos. Ajústalo a «Cancelado» si solo tienes un método de pago o no quieres que los clientes vuelvan a intentar realizar el pago mediante otro método. Esto no se aplica a los pagos para pedidos mediante el nuevo Orders API y los pagos Klarna." + +#: ../inc/settings/mollie_advanced_settings.php:39 msgid "Payment screen language" msgstr "Idioma de la pantalla de pago" -#: build/inc/settings/mollie_advanced_settings.php:26 -#: inc/settings/mollie_advanced_settings.php:26 +#: ../inc/settings/mollie_advanced_settings.php:42 msgid "Automatically send WordPress language" msgstr "Enviar automáticamente idioma de WordPress" -#: build/inc/settings/mollie_advanced_settings.php:29 -#: build/inc/settings/mollie_advanced_settings.php:90 -#: build/src/Mollie/WC/Helper/Settings.php:288 -#: inc/settings/mollie_advanced_settings.php:29 -#: inc/settings/mollie_advanced_settings.php:90 -#: src/Mollie/WC/Helper/Settings.php:288 +#: ../inc/settings/mollie_advanced_settings.php:45, ../inc/settings/mollie_advanced_settings.php:105, ../src/Settings/General/MollieGeneralSettings.php:266 msgid "default" msgstr "por defecto" -#: build/inc/settings/mollie_advanced_settings.php:30 -#: inc/settings/mollie_advanced_settings.php:30 +#: ../inc/settings/mollie_advanced_settings.php:46 msgid "Detect using browser language" msgstr "Detectar utilizando el idioma del navegador" -#: build/inc/settings/mollie_advanced_settings.php:34 -#: inc/settings/mollie_advanced_settings.php:34 +#: ../inc/settings/mollie_advanced_settings.php:50 msgid "English" msgstr "Inglés" -#: build/inc/settings/mollie_advanced_settings.php:35 -#: inc/settings/mollie_advanced_settings.php:35 +#: ../inc/settings/mollie_advanced_settings.php:51 msgid "Dutch" msgstr "Neerlandés" -#: build/inc/settings/mollie_advanced_settings.php:36 -#: inc/settings/mollie_advanced_settings.php:36 +#: ../inc/settings/mollie_advanced_settings.php:52 msgid "Flemish (Belgium)" msgstr "Flamenco (Bélgica)" -#: build/inc/settings/mollie_advanced_settings.php:37 -#: inc/settings/mollie_advanced_settings.php:37 +#: ../inc/settings/mollie_advanced_settings.php:53 msgid "French" msgstr "Francés" -#: build/inc/settings/mollie_advanced_settings.php:38 -#: inc/settings/mollie_advanced_settings.php:38 +#: ../inc/settings/mollie_advanced_settings.php:54 msgid "French (Belgium)" msgstr "Francés (Bélgica)" -#: build/inc/settings/mollie_advanced_settings.php:39 -#: inc/settings/mollie_advanced_settings.php:39 +#: ../inc/settings/mollie_advanced_settings.php:55 msgid "German" msgstr "Alemán" -#: build/inc/settings/mollie_advanced_settings.php:40 -#: inc/settings/mollie_advanced_settings.php:40 +#: ../inc/settings/mollie_advanced_settings.php:56 msgid "Austrian German" msgstr "Alemán austriaco" -#: build/inc/settings/mollie_advanced_settings.php:41 -#: inc/settings/mollie_advanced_settings.php:41 +#: ../inc/settings/mollie_advanced_settings.php:57 msgid "Swiss German" msgstr "Alemán suizo" -#: build/inc/settings/mollie_advanced_settings.php:42 -#: inc/settings/mollie_advanced_settings.php:42 +#: ../inc/settings/mollie_advanced_settings.php:58 msgid "Spanish" msgstr "Español" -#: build/inc/settings/mollie_advanced_settings.php:43 -#: inc/settings/mollie_advanced_settings.php:43 +#: ../inc/settings/mollie_advanced_settings.php:59 msgid "Catalan" msgstr "Catalán" -#: build/inc/settings/mollie_advanced_settings.php:44 -#: inc/settings/mollie_advanced_settings.php:44 +#: ../inc/settings/mollie_advanced_settings.php:60 msgid "Portuguese" msgstr "Portugués" -#: build/inc/settings/mollie_advanced_settings.php:45 -#: inc/settings/mollie_advanced_settings.php:45 +#: ../inc/settings/mollie_advanced_settings.php:61 msgid "Italian" msgstr "Italiano" -#: build/inc/settings/mollie_advanced_settings.php:46 -#: inc/settings/mollie_advanced_settings.php:46 +#: ../inc/settings/mollie_advanced_settings.php:62 msgid "Norwegian" msgstr "Noruego" -#: build/inc/settings/mollie_advanced_settings.php:47 -#: inc/settings/mollie_advanced_settings.php:47 +#: ../inc/settings/mollie_advanced_settings.php:63 msgid "Swedish" msgstr "Sueco" -#: build/inc/settings/mollie_advanced_settings.php:48 -#: inc/settings/mollie_advanced_settings.php:48 +#: ../inc/settings/mollie_advanced_settings.php:64 msgid "Finnish" msgstr "Finlandés" -#: build/inc/settings/mollie_advanced_settings.php:49 -#: inc/settings/mollie_advanced_settings.php:49 +#: ../inc/settings/mollie_advanced_settings.php:65 msgid "Danish" msgstr "Danés" -#: build/inc/settings/mollie_advanced_settings.php:50 -#: inc/settings/mollie_advanced_settings.php:50 +#: ../inc/settings/mollie_advanced_settings.php:66 msgid "Icelandic" msgstr "Islandés" -#: build/inc/settings/mollie_advanced_settings.php:51 -#: inc/settings/mollie_advanced_settings.php:51 +#: ../inc/settings/mollie_advanced_settings.php:67 msgid "Hungarian" msgstr "Húngaro" -#: build/inc/settings/mollie_advanced_settings.php:52 -#: inc/settings/mollie_advanced_settings.php:52 +#: ../inc/settings/mollie_advanced_settings.php:68 msgid "Polish" msgstr "Polaco" -#: build/inc/settings/mollie_advanced_settings.php:53 -#: inc/settings/mollie_advanced_settings.php:53 +#: ../inc/settings/mollie_advanced_settings.php:69 msgid "Latvian" msgstr "Letón" -#: build/inc/settings/mollie_advanced_settings.php:54 -#: inc/settings/mollie_advanced_settings.php:54 +#: ../inc/settings/mollie_advanced_settings.php:70 msgid "Lithuanian" msgstr "Lituano" -#: build/inc/settings/mollie_advanced_settings.php:57 -#: inc/settings/mollie_advanced_settings.php:57 -msgid "" -"Sending a language (or locale) is required. The option 'Automatically send " -"WordPress language' will try to get the customer's language in WordPress " -"(and respects multilanguage plugins) and convert it to a format Mollie " -"understands. If this fails, or if the language is not supported, it will " -"fall back to American English. You can also select one of the locales " -"currently supported by Mollie, that will then be used for all customers." -msgstr "" -"Se requiere enviar un idioma (o lengua regional). La opción «Enviar " -"automáticamente el idioma de WordPress» intentará obtener el idioma del " -"cliente en WordPress (y sus respectivos plugins multilingües) y convertirlo " -"a un formato compatible con Mollie. Si se produce un error o si el idioma no " -"es compatible, se volverá a inglés de Estados Unidos. También puedes " -"seleccionar una de las lenguas regionales compatibles actualmente con " -"Mollie, que entonces se usará para todos los clientes." - -#: build/inc/settings/mollie_advanced_settings.php:65 -#: inc/settings/mollie_advanced_settings.php:65 +#: ../inc/settings/mollie_advanced_settings.php:73 +msgid "Sending a language (or locale) is required. The option 'Automatically send WordPress language' will try to get the customer's language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers." +msgstr "Se requiere enviar un idioma (o lengua regional). La opción «Enviar automáticamente el idioma de WordPress» intentará obtener el idioma del cliente en WordPress (y sus respectivos plugins multilingües) y convertirlo a un formato compatible con Mollie. Si se produce un error o si el idioma no es compatible, se volverá a inglés de Estados Unidos. También puedes seleccionar una de las lenguas regionales compatibles actualmente con Mollie, que entonces se usará para todos los clientes." + +#: ../inc/settings/mollie_advanced_settings.php:81 msgid "Store customer details at Mollie" msgstr "Almacenar los detalles del cliente en Mollie" -#: build/inc/settings/mollie_advanced_settings.php:68 -#: inc/settings/mollie_advanced_settings.php:68 -msgid "" -"Should Mollie store customers name and email address for Single Click " -"Payments? Default %1$s. Required if WooCommerce Subscriptions " -"is being used! Read more about " -"%2$s and how it improves your conversion." -msgstr "" -"¿Debe Mollie almacenar el nombre y la dirección de correo electrónico de los " -"clientes para pagos con un solo clic? Por defecto %1$s. " -"¡Obligatorio si se utiliza WooCommerce Subscriptions! Lee más acerca de %2$s y cómo mejora tu " -"conversión." - -#: build/inc/settings/mollie_advanced_settings.php:72 -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: inc/settings/mollie_advanced_settings.php:72 -#: src/Mollie/WC/Helper/Settings.php:551 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_advanced_settings.php:84 +msgid "Should Mollie store customers name and email address for Single Click Payments? Default %1$s. Required if WooCommerce Subscriptions is being used! Read more about %2$s and how it improves your conversion." +msgstr "¿Debe Mollie almacenar el nombre y la dirección de correo electrónico de los clientes para pagos con un solo clic? Por defecto %1$s. ¡Obligatorio si se utiliza WooCommerce Subscriptions! Lee más acerca de %2$s y cómo mejora tu conversión." + +#: ../inc/settings/mollie_advanced_settings.php:88, ../src/Settings/Page/MollieSettingsPage.php:303 msgid "Enabled" msgstr "Activado" -#: build/inc/settings/mollie_advanced_settings.php:73 -#: inc/settings/mollie_advanced_settings.php:73 +#: ../inc/settings/mollie_advanced_settings.php:89 msgid "Single Click Payments" msgstr "Pagos con un solo clic" -#: build/inc/settings/mollie_advanced_settings.php:82 -#: inc/settings/mollie_advanced_settings.php:82 +#: ../inc/settings/mollie_advanced_settings.php:97 msgid "Select API Method" msgstr "Selecciona el método de API" -#: build/inc/settings/mollie_advanced_settings.php:99 -#: inc/settings/mollie_advanced_settings.php:99 -msgid "" -"Click %shere%s to read more about the differences between the Payments and " -"Orders API" -msgstr "" -"Haz clic %saquí%s para leer más acerca de las diferencias entre las API de " -"pagos y de pedidos" +#. translators: Placeholder 1: opening link tag, placeholder 2: closing link tag +#: ../inc/settings/mollie_advanced_settings.php:114 +msgid "Click %1$shere%2$s to read more about the differences between the Payments and Orders API" +msgstr "Haz clic %1$saquí%2$s para leer más acerca de las diferencias entre las API de pagos y de pedidos" -#: build/inc/settings/mollie_advanced_settings.php:109 -#: inc/settings/mollie_advanced_settings.php:109 +#: ../inc/settings/mollie_advanced_settings.php:124 msgid "API Payment Description" msgstr "Descripción API de pagos" -#: build/inc/settings/mollie_advanced_settings.php:137 -#: inc/settings/mollie_advanced_settings.php:137 +#: ../inc/settings/mollie_advanced_settings.php:141 msgctxt "Payment description options" msgid "Available variables" msgstr "Variables disponibles" -#: build/inc/settings/mollie_advanced_settings.php:160 -#: inc/settings/mollie_advanced_settings.php:160 -msgid "" -"Select among the available variables the description to be used for this " -"transaction.%s(Note: this only works when the method is set to Payments " -"API)%s" -msgstr "" -"Selecciona entre las variables disponibles la descripción que se deberá " -"utilizar para esta transacción.%s(Nota: esto solo funciona si el método está " -"ajustado a API de pagos)%s" +#. translators: Placeholder 1: Opening paragraph tag, placeholder 2: Closing paragraph tag +#: ../inc/settings/mollie_advanced_settings.php:166 +msgid "Select among the available variables the description to be used for this transaction.%1$s(Note: this only works when the method is set to Payments API)%2$s" +msgstr "Selecciona entre las variables disponibles la descripción que se deberá utilizar para esta transacción.%1$s(Nota: esto solo funciona si el método está ajustado a API de pagos)%2$s" -#: build/inc/settings/mollie_advanced_settings.php:134 -#: inc/settings/mollie_advanced_settings.php:134 +#: ../inc/settings/mollie_advanced_settings.php:177 msgid "Surcharge gateway fee label" msgstr "Etiqueta recargo cuota de pasarela" -#: build/inc/settings/mollie_advanced_settings.php:140 -#: inc/settings/mollie_advanced_settings.php:140 +#: ../inc/settings/mollie_advanced_settings.php:183, ../src/Gateway/Surcharge.php:36 msgid "Gateway Fee" msgstr "Cuota de la pasarela" -#: build/inc/settings/mollie_advanced_settings.php:142 -#: inc/settings/mollie_advanced_settings.php:142 +#: ../inc/settings/mollie_advanced_settings.php:185 msgid "This is the label will appear in frontend when the surcharge applies" -msgstr "" -"Esta es la etiqueta que aparecerá en la portada cuando se aplique el recargo" +msgstr "Esta es la etiqueta que aparecerá en la portada cuando se aplique el recargo" -#: inc/settings/mollie_advanced_settings.php:194 +#: ../inc/settings/mollie_advanced_settings.php:193 msgid "Remove Mollie data from Database on uninstall" msgstr "Eliminar datos de Mollie de la base de datos al desinstalar" -#: inc/settings/mollie_advanced_settings.php:199 -msgid "" -"Remove options and scheduled actions from database when uninstalling the " -"plugin." -msgstr "" -"Eliminar opciones y acciones programadas de la base de datos al desinstalar " -"el plugin." +#: ../inc/settings/mollie_advanced_settings.php:199 +msgid "Remove options and scheduled actions from database when uninstalling the plugin." +msgstr "Eliminar opciones y acciones programadas de la base de datos al desinstalar el plugin." + +#: ../inc/settings/mollie_advanced_settings.php:200 +msgid "Clear now" +msgstr "Eliminar ahora" -#: build/inc/settings/mollie_applepay_settings.php:14 -#: inc/settings/mollie_applepay_settings.php:14 +#: ../inc/settings/mollie_applepay_settings.php:12, ../src/PaymentMethods/Applepay.php:13 +msgid "Apple Pay" +msgstr "Apple Pay" + +#: ../inc/settings/mollie_applepay_settings.php:14 msgid "The following options are required to use the Apple Pay gateway" msgstr "Se requieren las siguientes opciones para usar la pasarela Apple Pay" -#: build/inc/settings/mollie_applepay_settings.php:19 -#: build/src/Mollie/WC/Helper/Settings.php:48 -#: inc/settings/mollie_applepay_settings.php:19 -#: src/Mollie/WC/Helper/Settings.php:48 +#: ../inc/settings/mollie_applepay_settings.php:19, ../src/Settings/General/MollieGeneralSettings.php:18 msgid "Enable/Disable" msgstr "Activar/Desactivar" -#. translators: Placeholder 1: enabled or disabled -#: build/inc/settings/mollie_applepay_settings.php:21 -#: build/src/Mollie/WC/Helper/Settings.php:54 -#: inc/settings/mollie_applepay_settings.php:21 -#: src/Mollie/WC/Helper/Settings.php:54 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:21, ../src/Settings/General/MollieGeneralSettings.php:25 msgid "Enable %s" msgstr "Activar %s" -#: build/inc/settings/mollie_applepay_settings.php:29 -#: build/src/Mollie/WC/Helper/Settings.php:68 -#: inc/settings/mollie_applepay_settings.php:29 -#: src/Mollie/WC/Helper/Settings.php:68 +#: ../inc/settings/mollie_applepay_settings.php:29, ../src/Settings/General/MollieGeneralSettings.php:38 msgid "Title" msgstr "Título" -#: build/inc/settings/mollie_applepay_settings.php:32 -#: build/src/Mollie/WC/Helper/Settings.php:71 -#: inc/settings/mollie_applepay_settings.php:32 -#: src/Mollie/WC/Helper/Settings.php:71 -msgid "" -"This controls the title which the user sees during checkout. Default " -"%s" -msgstr "" -"Esto controla el título que el usuario ve durante el pago. Por defecto " -"%s" - -#: build/inc/settings/mollie_applepay_settings.php:45 -#: build/inc/settings/mollie_applepay_settings.php:48 -#: build/src/Mollie/WC/Helper/Settings.php:94 -#: inc/settings/mollie_applepay_settings.php:45 -#: inc/settings/mollie_applepay_settings.php:48 -#: src/Mollie/WC/Helper/Settings.php:94 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:32, ../src/Settings/General/MollieGeneralSettings.php:42 +msgid "This controls the title which the user sees during checkout. Default %s" +msgstr "Esto controla el título que el usuario ve durante el pago. Por defecto %s" + +#: ../inc/settings/mollie_applepay_settings.php:46, ../inc/settings/mollie_applepay_settings.php:48, ../src/Settings/General/MollieGeneralSettings.php:66 msgid "Display logo" msgstr "Mostrar logotipo" -#: build/inc/settings/mollie_applepay_settings.php:60 -#: build/src/Mollie/WC/Helper/Settings.php:81 -#: inc/settings/mollie_applepay_settings.php:60 -#: src/Mollie/WC/Helper/Settings.php:81 +#: ../inc/settings/mollie_applepay_settings.php:61, ../src/Settings/General/MollieGeneralSettings.php:52 msgid "Description" msgstr "Descripción" -#: build/inc/settings/mollie_applepay_settings.php:63 -#: build/src/Mollie/WC/Helper/Settings.php:84 -#: inc/settings/mollie_applepay_settings.php:63 -#: src/Mollie/WC/Helper/Settings.php:84 -msgid "" -"Payment method description that the customer will see on your checkout. " -"Default %s" -msgstr "" -"Descripción del método de pago que el cliente verá en tu proceso de pago. " -"Por defecto %s" +#. translators: Placeholder 1: Gateway description +#: ../inc/settings/mollie_applepay_settings.php:64, ../src/Settings/General/MollieGeneralSettings.php:56 +msgid "Payment method description that the customer will see on your checkout. Default %s" +msgstr "Descripción del método de pago que el cliente verá en tu proceso de pago. Por defecto %s" -#: build/inc/settings/mollie_applepay_settings.php:79 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:6 -#: inc/settings/mollie_applepay_settings.php:79 -#: inc/settings/mollie_apple_pay_button_enabler.php:6 +#: ../inc/settings/mollie_applepay_settings.php:81 msgid "Apple Pay button settings" msgstr "Ajustes botón Apple Pay" -#: build/inc/settings/mollie_applepay_settings.php:84 -#: inc/settings/mollie_applepay_settings.php:84 +#: ../inc/settings/mollie_applepay_settings.php:86 msgid "The following options are required to use the Apple Pay Direct Button" -msgstr "" -"Se requieren las siguientes opciones para usar el botón directo Apple Pay" +msgstr "Se requieren las siguientes opciones para usar el botón directo Apple Pay" -#: build/inc/settings/mollie_applepay_settings.php:88 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:18 -#: inc/settings/mollie_applepay_settings.php:88 -#: inc/settings/mollie_apple_pay_button_enabler.php:18 +#: ../inc/settings/mollie_applepay_settings.php:90, ../src/PaymentMethods/Applepay.php:34 msgid "Enable Apple Pay Button on Cart page" msgstr "Activar botón Apple Pay en la página de la cesta de la compra" -#: build/inc/settings/mollie_applepay_settings.php:91 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:21 -#: inc/settings/mollie_applepay_settings.php:91 -#: inc/settings/mollie_apple_pay_button_enabler.php:21 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:93, ../src/PaymentMethods/Applepay.php:36 msgid "Enable the Apple Pay direct buy button on the Cart page" -msgstr "" -"Activa el botón de compra directa de Apple Pay en la página de la cesta de " -"la compra" +msgstr "Activa el botón de compra directa de Apple Pay en la página de la cesta de la compra" -#: build/inc/settings/mollie_applepay_settings.php:103 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:29 -#: inc/settings/mollie_applepay_settings.php:103 -#: inc/settings/mollie_apple_pay_button_enabler.php:29 +#: ../inc/settings/mollie_applepay_settings.php:106, ../src/PaymentMethods/Applepay.php:44 msgid "Enable Apple Pay Button on Product page" msgstr "Activar botón Apple Pay en la página de productos" -#: build/inc/settings/mollie_applepay_settings.php:106 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:32 -#: inc/settings/mollie_applepay_settings.php:106 -#: inc/settings/mollie_apple_pay_button_enabler.php:32 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:109, ../src/PaymentMethods/Applepay.php:46 msgid "Enable the Apple Pay direct buy button on the Product page" -msgstr "" -"Activa el botón de compra directa de Apple Pay en la página de productos" +msgstr "Activa el botón de compra directa de Apple Pay en la página de productos" -#: build/inc/settings/mollie_apple_pay_button_enabler.php:11 -#: inc/settings/mollie_apple_pay_button_enabler.php:11 -msgid "The following options are required to use the Apple Pay button" -msgstr "Se requieren las siguientes opciones para usar el botón Apple Pay" - -#: build/inc/settings/mollie_components.php:7 -#: inc/settings/mollie_components.php:7 +#: ../inc/settings/mollie_components.php:9 msgctxt "Mollie Components Settings" msgid "Base Styles" msgstr "Estilos base" -#: build/inc/settings/mollie_components.php:16 -#: build/inc/settings/mollie_components.php:156 -#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156 +#: ../inc/settings/mollie_components.php:18, ../inc/settings/mollie_components.php:158 msgctxt "Mollie Components Settings" msgid "Background Color" msgstr "Color de fondo" -#: build/inc/settings/mollie_components.php:22 -#: build/inc/settings/mollie_components.php:145 -#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145 +#: ../inc/settings/mollie_components.php:24, ../inc/settings/mollie_components.php:147 msgctxt "Mollie Components Settings" msgid "Text Color" msgstr "Color del texto" -#: build/inc/settings/mollie_components.php:28 -#: inc/settings/mollie_components.php:28 +#: ../inc/settings/mollie_components.php:30 msgctxt "Mollie Components Settings" msgid "Placeholder Color" msgstr "Color del marcador de posición" -#: build/inc/settings/mollie_components.php:34 -#: inc/settings/mollie_components.php:34 +#: ../inc/settings/mollie_components.php:36 msgctxt "Mollie Components Settings" msgid "Font Size" msgstr "Tamaño de fuente" -#: build/inc/settings/mollie_components.php:35 -#: inc/settings/mollie_components.php:35 +#: ../inc/settings/mollie_components.php:37 msgctxt "Mollie Components Settings" msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'." -msgstr "" -"Define el tamaño de fuente del componente. Unidades permitidas: 'em', 'px', " -"'rem'." +msgstr "Define el tamaño de fuente del componente. Unidades permitidas: 'em', 'px', 'rem'." -#: build/inc/settings/mollie_components.php:45 -#: inc/settings/mollie_components.php:45 +#: ../inc/settings/mollie_components.php:47 msgctxt "Mollie Components Settings" msgid "Font Weight" msgstr "Espesor de la fuente" -#: build/inc/settings/mollie_components.php:48 -#: inc/settings/mollie_components.php:48 +#: ../inc/settings/mollie_components.php:50 msgctxt "Mollie Components Settings" msgid "Lighter" msgstr "Más fino" -#: build/inc/settings/mollie_components.php:49 -#: inc/settings/mollie_components.php:49 +#: ../inc/settings/mollie_components.php:51 msgctxt "Mollie Components Settings" msgid "Regular" msgstr "Normal" -#: build/inc/settings/mollie_components.php:50 -#: inc/settings/mollie_components.php:50 +#: ../inc/settings/mollie_components.php:52 msgctxt "Mollie Components Settings" msgid "Bold" msgstr "Negrita" -#: build/inc/settings/mollie_components.php:56 -#: inc/settings/mollie_components.php:56 +#: ../inc/settings/mollie_components.php:58 msgctxt "Mollie Components Settings" msgid "Letter Spacing" msgstr "Espaciado entre caracteres" -#: build/inc/settings/mollie_components.php:62 -#: inc/settings/mollie_components.php:62 +#: ../inc/settings/mollie_components.php:64 msgctxt "Mollie Components Settings" msgid "Line Height" msgstr "Alto de línea" -#: build/inc/settings/mollie_components.php:71 -#: inc/settings/mollie_components.php:71 +#: ../inc/settings/mollie_components.php:73 msgctxt "Mollie Components Settings" msgid "Padding" msgstr "Relleno" -#: build/inc/settings/mollie_components.php:72 -#: inc/settings/mollie_components.php:72 +#: ../inc/settings/mollie_components.php:74 msgctxt "Mollie Components Settings" -msgid "" -"Add padding to the components. Allowed units include `16px 16px 16px 16px` " -"and `em`, `px`, `rem`." -msgstr "" -"Añadir relleno a los componentes. Las unidades permitidas incluyen `16px " -"16px 16px 16px` y `em`, `px`, `rem`." +msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`." +msgstr "Añadir relleno a los componentes. Las unidades permitidas incluyen `16px 16px 16px 16px` y `em`, `px`, `rem`." -#: build/inc/settings/mollie_components.php:82 -#: inc/settings/mollie_components.php:82 +#: ../inc/settings/mollie_components.php:84 msgctxt "Mollie Components Settings" msgid "Align Text" msgstr "Alinear texto" -#: build/inc/settings/mollie_components.php:85 -#: inc/settings/mollie_components.php:85 +#: ../inc/settings/mollie_components.php:87 msgctxt "Mollie Components Settings" msgid "Left" msgstr "Izquierda" -#: build/inc/settings/mollie_components.php:86 -#: inc/settings/mollie_components.php:86 +#: ../inc/settings/mollie_components.php:88 msgctxt "Mollie Components Settings" msgid "Right" msgstr "Derecha" -#: build/inc/settings/mollie_components.php:87 -#: inc/settings/mollie_components.php:87 +#: ../inc/settings/mollie_components.php:89 msgctxt "Mollie Components Settings" msgid "Center" msgstr "Centrar" -#: build/inc/settings/mollie_components.php:88 -#: inc/settings/mollie_components.php:88 +#: ../inc/settings/mollie_components.php:90 msgctxt "Mollie Components Settings" msgid "Justify" msgstr "Justificar" -#: build/inc/settings/mollie_components.php:94 -#: inc/settings/mollie_components.php:94 +#: ../inc/settings/mollie_components.php:96 msgctxt "Mollie Components Settings" msgid "Transform Text " msgstr "Transformar texto " -#: build/inc/settings/mollie_components.php:97 -#: inc/settings/mollie_components.php:97 +#: ../inc/settings/mollie_components.php:99 msgctxt "Mollie Components Settings" msgid "None" msgstr "Ninguno" -#: build/inc/settings/mollie_components.php:102 -#: inc/settings/mollie_components.php:102 +#: ../inc/settings/mollie_components.php:104 msgctxt "Mollie Components Settings" msgid "Capitalize" msgstr "Mayúscula inicial" -#: build/inc/settings/mollie_components.php:107 -#: inc/settings/mollie_components.php:107 +#: ../inc/settings/mollie_components.php:109 msgctxt "Mollie Components Settings" msgid "Uppercase" msgstr "Mayúsculas" -#: build/inc/settings/mollie_components.php:112 -#: inc/settings/mollie_components.php:112 +#: ../inc/settings/mollie_components.php:114 msgctxt "Mollie Components Settings" msgid "Lowercase" msgstr "Minúsculas" -#: build/inc/settings/mollie_components.php:117 -#: inc/settings/mollie_components.php:117 +#: ../inc/settings/mollie_components.php:119 msgctxt "Mollie Components Settings" msgid "Full Width" msgstr "Ancho completo" -#: build/inc/settings/mollie_components.php:122 -#: inc/settings/mollie_components.php:122 +#: ../inc/settings/mollie_components.php:124 msgctxt "Mollie Components Settings" msgid "Full Size Kana" msgstr "Kana tamaño completo" -#: build/inc/settings/mollie_components.php:136 -#: inc/settings/mollie_components.php:136 +#: ../inc/settings/mollie_components.php:138 msgctxt "Mollie Components Settings" msgid "Invalid Status Styles" msgstr "Estilos de estado no válido" -#: build/inc/settings/mollie_components.php:146 -#: inc/settings/mollie_components.php:146 +#: ../inc/settings/mollie_components.php:148 msgctxt "Mollie Components Settings" msgid "Text Color for invalid input." msgstr "Color del texto para entrada no válida." -#: build/inc/settings/mollie_components.php:157 -#: inc/settings/mollie_components.php:157 +#: ../inc/settings/mollie_components.php:159 msgctxt "Mollie Components Settings" msgid "Background Color for invalid input." msgstr "Color de fondo para entrada no válida." -#: build/inc/settings/mollie_components_enabler.php:6 -#: inc/settings/mollie_components_enabler.php:6 -msgid "Enable Mollie Components" -msgstr "Habilitar componentes de Mollie" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to settings. Placeholder 4: Closing link tag. +#: ../src/Activation/ActivationModule.php:167 +msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s." +msgstr "%1$sMollie Payments for WooCommerce: faltan claves de API%2$s Por favor,%3$s ajusta tus claves API aquí%4$s." -#: build/inc/settings/mollie_components_enabler.php:8 -#: inc/settings/mollie_components_enabler.php:8 -msgid "" -"Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." -msgstr "" -"Usar componentes de Mollie para esta pasarela. Lee más acerca de %s y cómo mejora tu conversión." - -#: build/inc/settings/mollie_components_enabler.php:12 -#: build/src/Mollie/WC/Settings/Page/Components.php:10 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:139 -#: inc/settings/mollie_components_enabler.php:12 -#: src/Mollie/WC/Settings/Page/Components.php:10 -#: src/Mollie/WC/Settings/Page/Mollie.php:139 -msgid "Mollie Components" -msgstr "Componentes de Mollie" +#: ../src/Activation/ConstraintsChecker.php:109 +msgid "%1$sMollie Payments for WooCommerce is inactive:%2$s" +msgstr "%1$sMollie Payments for WooCommerce está inactivo:%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:5 -#: inc/settings/mollie_creditcard_icons_selector.php:5 -msgid "Customize Icons" -msgstr "Personalizar iconos" +#: ../src/Activation/ConstraintsChecker.php:113 +msgid "%1$sCorrect the above errors to use Mollie Payments for Woocommerce%2$s" +msgstr "%1$sCorrige los errores anteriormente indicados para utilizar Mollie Payments for WooCommerce:%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:12 -#: inc/settings/mollie_creditcard_icons_selector.php:12 -msgid "Enable Icons Selector" -msgstr "Activar selector de iconos" +#: ../src/Assets/AssetsModule.php:432 +msgid "Name on card" +msgstr "Nombre en la tarjeta" -#: build/inc/settings/mollie_creditcard_icons_selector.php:13 -#: inc/settings/mollie_creditcard_icons_selector.php:13 -msgid "Show customized creditcard icons on checkout page" -msgstr "" -"Mostrar iconos de tarjeta de crédito personalizados en la página del proceso " -"de pago" +#: ../src/Assets/AssetsModule.php:436 +msgid "Card number" +msgstr "Número de tarjeta" -#: build/inc/settings/mollie_creditcard_icons_selector.php:21 -#: inc/settings/mollie_creditcard_icons_selector.php:21 -msgid "Show American Express Icon" -msgstr "Mostrar icono American Express" +#: ../src/Assets/AssetsModule.php:440 +msgid "Expiry date" +msgstr "Fecha de caducidad" -#: build/inc/settings/mollie_creditcard_icons_selector.php:26 -#: inc/settings/mollie_creditcard_icons_selector.php:26 -msgid "Show Carta Si Icon" -msgstr "Mostrar icono Carta Si" +#: ../src/Assets/AssetsModule.php:444 +msgid "CVC/CVV" +msgstr "CVC/CVV" -#: build/inc/settings/mollie_creditcard_icons_selector.php:31 -#: inc/settings/mollie_creditcard_icons_selector.php:31 -msgid "Show Carte Bancaire Icon" -msgstr "Mostrar icono Carte Bancaire" +#: ../src/Assets/AssetsModule.php:451 +msgid "An unknown error occurred, please check the card fields." +msgstr "Se ha producido un error desconocido, comprueba los campos de la tarjeta." -#: build/inc/settings/mollie_creditcard_icons_selector.php:36 -#: inc/settings/mollie_creditcard_icons_selector.php:36 -msgid "Show Maestro Icon" -msgstr "Mostrar icono Maestro" +#: ../src/Assets/AssetsModule.php:521 +msgid "Please choose a billing country to see the available payment methods" +msgstr "Elige un país de facturación para ver los métodos de pago disponibles" -#: build/inc/settings/mollie_creditcard_icons_selector.php:41 -#: inc/settings/mollie_creditcard_icons_selector.php:41 -msgid "Show Mastercard Icon" -msgstr "Mostrar icono Mastercard" +#: ../src/Assets/AssetsModule.php:570 +msgid "No custom logo selected" +msgstr "Ningún logotipo personalizado seleccionado" -#: build/inc/settings/mollie_creditcard_icons_selector.php:46 -#: inc/settings/mollie_creditcard_icons_selector.php:46 -msgid "Show Visa Icon" -msgstr "Mostrar icono Visa" +#: ../src/Gateway/MolliePaymentGateway.php:271, ../src/Settings/Page/MollieSettingsPage.php:313 +msgid "Test mode enabled." +msgstr "Modo de prueba activado." -#: build/inc/settings/mollie_creditcard_icons_selector.php:51 -#: inc/settings/mollie_creditcard_icons_selector.php:51 -msgid "Show VPay Icon" -msgstr "Mostrar icono VPay" +#. translators: The surrounding %s's Will be replaced by a link to the global setting page +#: ../src/Gateway/MolliePaymentGateway.php:276 +msgid "No API key provided. Please %1$sset you Mollie API key%2$s first." +msgstr "Ninguna clave de API proporcionada. Configura primero %1$stu clave de API de Mollie.%2$s" -#: build/inc/settings/mollie_paypal_button_enabler.php:7 -#: inc/settings/mollie_paypal_button_enabler.php:7 -msgid "PayPal button display settings" -msgstr "Ajustes de visualización del botón PayPal" +#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Gateway/MolliePaymentGateway.php:291 +msgid "%1$s not enabled in your Mollie profile. You can enable it by editing your %2$sMollie profile%3$s." +msgstr "%1$s no activado en tu perfil de Mollie. Puedes activarlo editando tu %2$sperfil de Mollie%3$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:12 -#: inc/settings/mollie_paypal_button_enabler.php:12 -msgid "" -"%1sThe PayPal button is optimized for digital goods. And will only appear if " -"the product has no shipping. %2sThe customer's address information can only " -"be retrieved if the transaction has been done with the %3sOrders API%4s.%5s" -"%6s" -msgstr "" -"%1sEl botón PayPal está optimizado para mercancías digitales. Solo aparece " -"si el producto no tiene envío. %2sLos datos de dirección del cliente solo se " -"pueden recuperar si la transacción ha sido ejecutada con la %3sAPI de pedidos" -"%4s.%5s%6s" +#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies +#: ../src/Gateway/MolliePaymentGateway.php:306 +msgid "Current shop currency %1$s not supported by Mollie. Read more about %2$ssupported currencies and payment methods.%3$s " +msgstr "Moneda actual de la tienda %1$s no compatible con Mollie. Obtén más información sobre las monedas %2$sy los métodos de pago compatibles.%3$s " -#: build/inc/settings/mollie_paypal_button_enabler.php:19 -#: inc/settings/mollie_paypal_button_enabler.php:19 -msgid "Display on cart page" -msgstr "Mostrar en la página de la cesta de la compra" +#: ../src/Gateway/MolliePaymentGateway.php:577 +msgid "You have cancelled your payment. Please complete your order with a different payment method." +msgstr "Has cancelado el pago. Por favor, realiza tu pedido con otro método de pago." -#: build/inc/settings/mollie_paypal_button_enabler.php:23 -#: inc/settings/mollie_paypal_button_enabler.php:23 -msgid "Enable the PayPal button to be used in the cart page." -msgstr "" -"Activa el botón PayPal que se deberá utilizar en la página de la cesta de la " -"compra." +#: ../src/Gateway/MolliePaymentGateway.php:597, ../src/Gateway/MolliePaymentGateway.php:611 +msgid "Your payment was not successful. Please complete your order with a different payment method." +msgstr "Tu pago no se ha procesado correctamente. Por favor, realiza tu pedido con otro método de pago." -#: build/inc/settings/mollie_paypal_button_enabler.php:31 -#: inc/settings/mollie_paypal_button_enabler.php:31 -msgid "Display on product page" -msgstr "Mostrar en la página de productos" +#: ../src/Gateway/MolliePaymentGateway.php:647 +msgid "Could not load order %s" +msgstr "No se ha podido cargar el pedido %s" -#: build/inc/settings/mollie_paypal_button_enabler.php:35 -#: inc/settings/mollie_paypal_button_enabler.php:35 -msgid "Enable the PayPal button to be used in the product page." -msgstr "" -"Activa el botón PayPal que se deberá utilizar en la página de productos." +#: ../src/Gateway/MolliePaymentGateway.php:906 +msgid "Order cancelled" +msgstr "Pedido cancelado" -#: build/inc/settings/mollie_paypal_button_enabler.php:44 -#: inc/settings/mollie_paypal_button_enabler.php:44 -msgctxt "Mollie PayPal Button Settings" -msgid "Button text language and color" -msgstr "Idioma y color del botón" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Gateway/MolliePaymentGateway.php:943 +msgid "%1$s payment still pending (%2$s) but customer already returned to the store. Status should be updated automatically in the future, if it doesn't this might indicate a communication issue between the site and Mollie." +msgstr "El pago %1$s sigue pendiente (%2$s), pero el cliente ya ha regresado a la tienda. El estado debería actualizarse automáticamente en el futuro. Si no lo hace, esto podría indicar un problema de comunicación entre el sitio y Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:46 -#: inc/settings/mollie_paypal_button_enabler.php:46 -msgctxt "Mollie PayPal Button Settings" -msgid "Select the text and the colour of the button." -msgstr "Selecciona el texto y el color del botón." +#: ../src/Gateway/MolliePaymentGateway.php:949, ../src/Payment/MollieObject.php:687, ../src/Payment/MollieObject.php:655, ../src/Payment/MollieOrder.php:275, ../src/Payment/MollieOrder.php:332, ../src/Payment/MollieOrder.php:377, ../src/Payment/MollieOrder.php:459, ../src/Payment/MollieOrder.php:522, ../src/Payment/MollieOrder.php:941, ../src/Payment/MollieOrderService.php:165, ../src/Payment/MollieOrderService.php:428, ../src/Payment/MollieOrderService.php:491, ../src/Payment/MollieOrderService.php:705, ../src/Payment/MolliePayment.php:223, ../src/Payment/MolliePayment.php:310, ../src/Payment/MolliePayment.php:379, ../src/Payment/MolliePayment.php:402, ../src/Payment/PaymentService.php:788, ../src/Subscription/MollieSepaRecurringGateway.php:138, ../src/Subscription/MollieSepaRecurringGateway.php:205, ../src/Subscription/MollieSubscriptionGateway.php:470 +msgid "test mode" +msgstr "modo de prueba" -#: build/inc/settings/mollie_paypal_button_enabler.php:54 -#: inc/settings/mollie_paypal_button_enabler.php:54 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill blue" -msgstr "Inglés -- Comprar con PayPal - Botón alargado azul" +#: ../src/Gateway/MolliePaymentGateway.php:964 +msgid ", payment pending." +msgstr ", pago pendiente." -#: build/inc/settings/mollie_paypal_button_enabler.php:55 -#: inc/settings/mollie_paypal_button_enabler.php:55 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded blue" -msgstr "Inglés -- Comprar con PayPal - Redondeado azul" +#: ../src/Gateway/MolliePaymentGateway.php:996 +msgid "Your order has been cancelled." +msgstr "Tu pedido ha sido cancelado." -#: build/inc/settings/mollie_paypal_button_enabler.php:56 -#: inc/settings/mollie_paypal_button_enabler.php:56 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill golden" -msgstr "Inglés -- Comprar con PayPal - Botón alargado dorado" +#: ../src/Gateway/Surcharge.php:81 +msgid "A surchage fee might apply" +msgstr "Podría aplicarse un recargo" -#: build/inc/settings/mollie_paypal_button_enabler.php:57 -#: inc/settings/mollie_paypal_button_enabler.php:57 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded golden" -msgstr "Inglés -- Comprar con PayPal - Redondeado dorado" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. +#: ../src/Gateway/Surcharge.php:275 +msgid " + %1$s %2$s fee might apply" +msgstr " Podría aplicarse un cargo de + %1$s %2$s" -#: build/inc/settings/mollie_paypal_button_enabler.php:58 -#: inc/settings/mollie_paypal_button_enabler.php:58 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill gray" -msgstr "Inglés -- Comprar con PayPal - Botón alargado gris" +#. translators: Placeholder 1: Fee amount tag. +#: ../src/Gateway/Surcharge.php:292 +msgid " + %1$s%% fee might apply" +msgstr " Podría aplicarse un cargo del + %1$s%%" -#: build/inc/settings/mollie_paypal_button_enabler.php:59 -#: inc/settings/mollie_paypal_button_enabler.php:59 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded gray" -msgstr "Inglés -- Comprar con PayPal - Redondeado gris" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. +#: ../src/Gateway/Surcharge.php:315 +msgid " + %1$s %2$s + %3$s%% fee might apply" +msgstr " Podría aplicarse un cargo de + %1$s %2$s + %3$s%%" -#: build/inc/settings/mollie_paypal_button_enabler.php:60 -#: inc/settings/mollie_paypal_button_enabler.php:60 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill white" -msgstr "Inglés -- Comprar con PayPal - Botón alargado blanco" +#: ../src/Gateway/Surcharge.php:348 +msgid " (incl. VAT)" +msgstr " (IVA incluido)" -#: build/inc/settings/mollie_paypal_button_enabler.php:61 -#: inc/settings/mollie_paypal_button_enabler.php:61 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded white" -msgstr "Inglés -- Comprar con PayPal - Redondeado blanco" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:682 +msgid "%1$s payment failed via Mollie (%2$s)." +msgstr "Pago %1$s fallido vía Mollie (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:62 -#: inc/settings/mollie_paypal_button_enabler.php:62 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill black" -msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado negro" +#: ../src/Payment/MollieObject.php:650 +msgid "%1$s renewal payment failed via Mollie (%2$s). You will need to manually review the payment and adjust product stocks if you use them." +msgstr "Pago de renovación %1$s fallido vía Mollie (%2$s). Deberás revisar manualmente el pago y ajustar las existencias de productos si las usas." -#: build/inc/settings/mollie_paypal_button_enabler.php:63 -#: inc/settings/mollie_paypal_button_enabler.php:63 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded black" -msgstr "Inglés -- Proceso de pago con PayPal - Redondeado negro" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:721 +msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated." +msgstr "Se ha llamado al webhook de Mollie, pero el pago también se ha iniciado vía %s, de modo que el estado de pedido no se ha actualizado." -#: build/inc/settings/mollie_paypal_button_enabler.php:64 -#: inc/settings/mollie_paypal_button_enabler.php:64 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill blue" -msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado azul" +#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID +#: ../src/Payment/MollieObject.php:740, ../src/PaymentMethods/InstructionStrategies/PaypalInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (PayPal transaction ID: %3$s)" +msgstr "Pago completado por %1$s - %2$s (ID de transacción PayPal: %3$s)" -#: build/inc/settings/mollie_paypal_button_enabler.php:65 -#: inc/settings/mollie_paypal_button_enabler.php:65 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded blue" -msgstr "Inglés -- Proceso de pago con PayPal - Redondeado azul" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:881 +msgctxt "Payment description for {orderNumber}" +msgid "Order {orderNumber}" +msgstr "Pedido {orderNumber}" -#: build/inc/settings/mollie_paypal_button_enabler.php:66 -#: inc/settings/mollie_paypal_button_enabler.php:66 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill golden" -msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado dorado" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:891 +msgctxt "Payment description for {storeName}" +msgid "StoreName {storeName}" +msgstr "Nombre de la tienda {storeName}" -#: build/inc/settings/mollie_paypal_button_enabler.php:67 -#: inc/settings/mollie_paypal_button_enabler.php:67 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded golden" -msgstr "Inglés -- Proceso de pago con PayPal - Redondeado dorado" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:901 +msgctxt "Payment description for {customer.firstname}" +msgid "Customer Firstname {customer.firstname}" +msgstr "Nombre del cliente {customer.firstname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:68 -#: inc/settings/mollie_paypal_button_enabler.php:68 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill gray" -msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado gris" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:911 +msgctxt "Payment description for {customer.lastname}" +msgid "Customer Lastname {customer.lastname}" +msgstr "Apellido del cliente {customer.lastname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:69 -#: inc/settings/mollie_paypal_button_enabler.php:69 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded gray" -msgstr "Inglés -- Proceso de pago con PayPal - Redondeado gris" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:921 +msgctxt "Payment description for {customer.company}" +msgid "Customer Company {customer.company}" +msgstr "Empresa del cliente {customer.company}" -#: build/inc/settings/mollie_paypal_button_enabler.php:70 -#: inc/settings/mollie_paypal_button_enabler.php:70 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill white" -msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado blanco" +#: ../src/Payment/MollieObject.php:936 +msgid "Order" +msgstr "Pedido" -#: build/inc/settings/mollie_paypal_button_enabler.php:71 -#: inc/settings/mollie_paypal_button_enabler.php:71 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded white" -msgstr "Inglés -- Proceso de pago con PayPal - Redondeado blanco" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:271, ../src/Payment/MolliePayment.php:221, ../src/Subscription/MollieSepaRecurringGateway.php:211 +msgid "Order completed using %1$s payment (%2$s)." +msgstr "Pedido completado mediante %1$s pago (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:72 -#: inc/settings/mollie_paypal_button_enabler.php:72 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill black" -msgstr "Holandés -- Comprar con PayPal - Botón alargado negro" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:330 +msgid "Order authorized using %1$s payment (%2$s). Set order to completed in WooCommerce when you have shipped the products, to capture the payment. Do this within 28 days, or the order will expire. To handle individual order lines, process the order via the Mollie Dashboard." +msgstr "Pedido autorizado mediante pago %1$s (%2$s). Marca el pedido como completado en WooCommerce cuando hayas enviado los productos para capturar el pago. Debes hacerlo en un plazo de 28 días o el pedido caducará. Para administrar líneas de pedido individuales, procesa el pedido mediante el panel de Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:73 -#: inc/settings/mollie_paypal_button_enabler.php:73 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded black" -msgstr "Holandés -- Comprar con PayPal - Redondeado negro" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:375 +msgid "Order completed at Mollie for %1$s order (%2$s). At least one order line completed. Remember: Completed status for an order at Mollie is not the same as Completed status in WooCommerce!" +msgstr "Pedido completado en Mollie para pedido %1$s (%2$s). Al menos una línea de pedido completada. Recuerda: ¡el estado «Completado» para un pedido en Mollie no significa lo mismo que el estado «Completado» en WooCommerce!" -#: build/inc/settings/mollie_paypal_button_enabler.php:74 -#: inc/settings/mollie_paypal_button_enabler.php:74 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill blue" -msgstr "Holandés -- Comprar con PayPal - Botón alargado azul" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:457 +msgid "%1$s order (%2$s) cancelled ." +msgstr "Pedido %1$s (%2$s) cancelado." -#: build/inc/settings/mollie_paypal_button_enabler.php:75 -#: inc/settings/mollie_paypal_button_enabler.php:75 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded blue" -msgstr "Holandés -- Comprar con PayPal - Redondeado azul" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:520 +msgid "%1$s order expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "Pedido %1$s caducado (%2$s), pero no cancelado a causa de otro pago pendiente (%3$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:76 -#: inc/settings/mollie_paypal_button_enabler.php:76 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill golden" -msgstr "Holandés -- Comprar con PayPal - Botón alargado dorado" +#: ../src/Payment/MollieOrder.php:616 +msgctxt "Order note error" +msgid "The sum of refunds for all order lines is not identical to the refund amount, so this refund will be processed as a payment amount refund, not an order line refund." +msgstr "La suma de los reembolsos para todas las líneas de pedido no es idéntica al importe a reembolsar. Por este motivo, este reembolso se procesará como un reembolso de importe de pago, no un reembolso de línea de pedido." -#: build/inc/settings/mollie_paypal_button_enabler.php:77 -#: inc/settings/mollie_paypal_button_enabler.php:77 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded golden" -msgstr "Holandés -- Comprar con PayPal - Redondeado dorado" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. +#: ../src/Payment/MollieOrder.php:747 +msgid "%1$sx %2$s cancelled for %3$s%4$s in WooCommerce and at Mollie." +msgstr "%1$sx %2$s cancelado para %3$s%4$s en WooCommerce y en Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:78 -#: inc/settings/mollie_paypal_button_enabler.php:78 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill gray" -msgstr "Holandés -- Comprar con PayPal - Botón alargado gris" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. Placeholder 5: Reason. Placeholder 6: Refund Id. +#: ../src/Payment/MollieOrder.php:763 +msgid "%1$sx %2$s refunded for %3$s%4$s in WooCommerce and at Mollie.%5$s Refund ID: %6$s." +msgstr "%1$sx %2$s reembolsado para %3$s%4$s en WooCommerce y en Mollie.%5$s ID del reembolso: %6$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:79 -#: inc/settings/mollie_paypal_button_enabler.php:79 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded gray" -msgstr "Holandés -- Comprar con PayPal - Redondeado gris" +#. translators: Placeholder 1: payment status. +#: ../src/Payment/MollieOrder.php:823 +msgctxt "Order note error" +msgid "Can not refund order amount that has status %1$s at Mollie." +msgstr "No se puede reembolsar el importe del pedido que tiene el estado %1$s en Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:80 -#: inc/settings/mollie_paypal_button_enabler.php:80 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill white" -msgstr "Holandés -- Comprar con PayPal - Botón alargado blanco" +#. translators: Placeholder 1: Currency. Placeholder 2: Refund amount. Placeholder 3: Reason. Placeholder 4: Refund id. +#: ../src/Payment/MollieOrder.php:845 +msgid "Amount refund of %1$s%2$s refunded in WooCommerce and at Mollie.%3$s Refund ID: %4$s." +msgstr "Reembolso de %1$s%2$s reembolsado en WooCommerce y en Mollie.%3$s ID del reembolso: %4$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:81 -#: inc/settings/mollie_paypal_button_enabler.php:81 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded white" -msgstr "Holandés -- Comprar con PayPal - Redondeado blanco" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:936 +msgid "%1$s order (%2$s) expired ." +msgstr "Pedido %1$s (%2$s) caducado." -#: build/inc/settings/mollie_paypal_button_enabler.php:82 -#: inc/settings/mollie_paypal_button_enabler.php:82 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill black" -msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado negro" +#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID +#: ../src/Payment/MollieOrderService.php:162 +msgid "%1$s payment %2$s (%3$s), not processed." +msgstr "Pago %1$s %2$s (%3$s), no procesado." -#: build/inc/settings/mollie_paypal_button_enabler.php:83 -#: inc/settings/mollie_paypal_button_enabler.php:83 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded black" -msgstr "Holandés -- Proceso de pago con PayPal - Redondeado negro" +#: ../src/Payment/MollieOrderService.php:391 +msgid "New chargeback %s processed! Order note and order status updated." +msgstr "¡Nueva anulación %s procesada! Nota de pedido y estado de pedido actualizados." -#: build/inc/settings/mollie_paypal_button_enabler.php:84 -#: inc/settings/mollie_paypal_button_enabler.php:84 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill blue" -msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado azul" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:423 +msgid "%1$s payment charged back via Mollie (%2$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "Pago %1$s devuelto vía Mollie (%2$s). Deberás revisar manualmente el pago (y ajustar las existencias de productos si las usas)." -#: build/inc/settings/mollie_paypal_button_enabler.php:85 -#: inc/settings/mollie_paypal_button_enabler.php:85 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded blue" -msgstr "Holandés -- Proceso de pago con PayPal - Redondeado azul" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:485 +msgid "%1$s payment charged back via Mollie (%2$s). Subscription status updated, please review (and adjust product stocks if you use it)." +msgstr "Pago %1$s devuelto vía Mollie (%2$s). Estado de la suscripción actualizado, por favor, revísalo (y ajusta existencias de productos si lo usas)." -#: build/inc/settings/mollie_paypal_button_enabler.php:86 -#: inc/settings/mollie_paypal_button_enabler.php:86 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill golden" -msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado dorado" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:692 +msgid "%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "Pago %1$s %2$s vía Mollie (%3$s %4$s). Deberás revisar manualmente el pago (y ajustar las existencias de productos si las usas)." + +#: ../src/Payment/MollieOrderService.php:805 +msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated." +msgstr "¡Nuevo reembolso %s procesado en el panel de Mollie! Nota de pedido añadida, pero pedido no actualizado." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:308 +msgid "%1$s payment (%2$s) cancelled ." +msgstr "Pago %1$s (%2$s) cancelado." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:377 +msgid "%1$s payment expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "Pago %1$s caducado (%2$s), pero no cancelado a causa de otro pago pendiente (%3$s)." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:400 +msgid "%1$s payment expired (%2$s)." +msgstr "Pago %1$s caducado (%2$s)." + +#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID +#: ../src/Payment/MolliePayment.php:476 +msgid "Refunded %1$s%2$s%3$s - Payment: %4$s, Refund: %5$s" +msgstr "Reembolsado %1$s%2$s%3$s - Pago: %4$s, Reembolso: %5$s" + +#. translators: Placeholder 1: order number +#: ../src/Payment/MollieSubscription.php:80 +msgctxt "Default payment description for subscription recurring payments" +msgid "Order %1$s" +msgstr "Pedido %1$s" + +#: ../src/Payment/OrderItemsRefunder.php:121 +msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item." +msgstr "Uno de los elementos del pedido de WooCommerce no tiene el valor meta ID del elemento de reembolso asociado al elemento del pedido de Mollie." + +#: ../src/Payment/OrderItemsRefunder.php:166 +msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount." +msgstr "Imposible recuperar el ID del elemento del pedido relacionado con el elemento remoto: %1$s. Intenta hacer un reembolso por cantidad." + +#: ../src/Payment/OrderItemsRefunder.php:190 +msgid "Empty WooCommerce order items or mollie order lines." +msgstr "Elementos del pedido WooCommerce o líneas de pedido Mollie vacíos." + +#: ../src/Payment/OrderLines.php:509 +msgid "Shipping" +msgstr "Envío" + +#: ../src/Payment/PaymentModule.php:194 +msgid "Unpaid order cancelled - time limit reached." +msgstr "Pedido no pagado cancelado - límite de tiempo alcanzado." + +#: ../src/Payment/PaymentModule.php:213 +msgid "%1$s items refunded in WooCommerce and at Mollie." +msgstr "%1$s elementos reembolsados en WooCommerce y en Mollie." + +#: ../src/Payment/PaymentModule.php:231 +msgid "%1$s items cancelled in WooCommerce and at Mollie." +msgstr "%1$s elementos cancelados en WooCommerce y en Mollie." + +#: ../src/Payment/PaymentModule.php:350 +msgctxt "Order note info" +msgid "Processing a payment, no capture needed" +msgstr "Procesando un pago, no se requiere ninguna captura" + +#: ../src/Payment/PaymentModule.php:364 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be shipped/captured." +msgstr "Pedido ya cancelado en Mollie, no se puede enviar/capturar." + +#: ../src/Payment/PaymentModule.php:372 +msgctxt "Order note info" +msgid "Order already completed at Mollie, can not be shipped/captured." +msgstr "Pedido ya completado en Mollie, no se puede enviar/capturar." + +#: ../src/Payment/PaymentModule.php:381 +msgctxt "Order note info" +msgid "Order successfully updated to shipped at Mollie, capture of funds underway." +msgstr "Pedido actualizado correctamente a enviado en Mollie, captura de fondos en curso." + +#: ../src/Payment/PaymentModule.php:387 +msgctxt "Order note info" +msgid "Order not paid or authorized at Mollie yet, can not be shipped." +msgstr "Pedido aún no está pagado o autorizado en Mollie, no se puede enviar." + +#: ../src/Payment/PaymentModule.php:421 +msgctxt "Order note info" +msgid "Order contains Mollie payment method, but not a valid Mollie Order ID. Canceling order failed." +msgstr "Pedido contiene el método de pago Mollie, pero ninguna ID de pedido válida de Mollie. Cancelación del pedido fallida." + +#: ../src/Payment/PaymentModule.php:442 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be canceled again." +msgstr "Pedido ya cancelado en Mollie, no se puede volver a cancelar." + +#: ../src/Payment/PaymentModule.php:452 +msgctxt "Order note info" +msgid "Order also cancelled at Mollie." +msgstr "Pedido cancelado también en Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:87 -#: inc/settings/mollie_paypal_button_enabler.php:87 +#: ../src/Payment/PaymentModule.php:458 +msgctxt "Order note info" +msgid "Order could not be canceled at Mollie, because order status is " +msgstr "No se ha podido cancelar el pedido en Mollie, porque el estado del pedido es " + +#: ../src/Payment/PaymentService.php:620 +msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription." +msgstr "El cambio de suscripción ha fallado, no se ha encontrado una orden válida. Realiza una orden nueva para cambiar tu suscripción." + +#: ../src/Payment/PaymentService.php:626 +msgid "Failed switching subscriptions, no valid mandate." +msgstr "Cambio de suscripción fallida, ninguna orden válida." + +#: ../src/Payment/PaymentService.php:635 +msgid "Order completed internally because of an existing valid mandate at Mollie." +msgstr "El pedido se ha completado internamente por una orden válida existente en Mollie." + +#. translators: Placeholder 1: Payment method title +#: ../src/Payment/PaymentService.php:708, ../src/Buttons/ApplePayButton/AppleAjaxRequests.php:723, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:113, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:159 +msgid "Could not create %s payment." +msgstr "No se ha podido crear el pago %s." + +#: ../src/Payment/PaymentService.php:766, ../src/Subscription/MollieSepaRecurringGateway.php:127, ../src/Subscription/MollieSubscriptionGateway.php:461 +msgid "Awaiting payment confirmation." +msgstr "A la espera de la confirmación del pago." + +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Payment/PaymentService.php:786 +msgid "%s payment started (%s)." +msgstr "Pago %s iniciado (%s)." + +#: ../src/Payment/RefundLineItemsBuilder.php:126 +msgid "Mollie doesn't allow a partial refund of the full amount or quantity of at least one order line. Trying to process this as an amount refund instead." +msgstr "Mollie no permite el reembolso parcial de la cantidad o el importe total de como mínimo una línea de pedido. Intentando procesarlo como un reembolso de cantidad en su lugar." + +#: ../src/PaymentMethods/Applepay.php:14 +msgid "To accept payments via Apple Pay" +msgstr "Para aceptar pagos mediante Apple Pay" + +#: ../src/PaymentMethods/Bancontact.php:14 +msgid "Bancontact" +msgstr "Bancontact" + +#: ../src/PaymentMethods/Banktransfer.php:33 +msgid "Bank Transfer" +msgstr "Transferencia bancaria" + +#: ../src/PaymentMethods/Banktransfer.php:55, ../src/Settings/General/MollieGeneralSettings.php:235 +msgid "Activate expiry time setting" +msgstr "Activar ajuste del tiempo de caducidad" + +#: ../src/PaymentMethods/Banktransfer.php:56, ../src/Settings/General/MollieGeneralSettings.php:236 +msgid "Enable expiry time for payments" +msgstr "Activar tiempo de caducidad para pagos" + +#: ../src/PaymentMethods/Banktransfer.php:57 +msgid "Enable this option if you want to be able to set the time after which the payment will expire. This will turn all transactions into payments instead of orders" +msgstr "Activa esta opción si quieres poder ajustar el tiempo al cabo del cual caducará el pago. Esto convertirá todas las transacciones en pagos en lugar de pedidos" + +#: ../src/PaymentMethods/Banktransfer.php:62, ../src/Settings/General/MollieGeneralSettings.php:242 +msgid "Expiry time" +msgstr "Tiempo de caducidad" + +#. translators: Placeholder 1: Default expiry days. +#: ../src/PaymentMethods/Banktransfer.php:65 +msgid "Number of DAYS after the payment will expire. Default %d days" +msgstr "Número de DÍAS después de los cuales el pago caducará. Por defecto %d días" + +#: ../src/PaymentMethods/Banktransfer.php:74 +msgid "Skip Mollie payment screen" +msgstr "Saltar la pantalla de pago de Mollie" + +#: ../src/PaymentMethods/Banktransfer.php:75 +msgid "Skip Mollie payment screen when Bank Transfer is selected" +msgstr "Saltar la pantalla de pago de Mollie cuando la transferencia bancaria está seleccionada" + +#: ../src/PaymentMethods/Banktransfer.php:76 +msgid "Enable this option if you want to skip redirecting your user to the Mollie payment screen, instead this will redirect your user directly to the WooCommerce order received page displaying instructions how to complete the Bank Transfer payment." +msgstr "Activa esta opción si deseas omitir el redireccionamiento de tu usuario a la pantalla de pago de Mollie; en su lugar, esto redireccionará a tu usuario directamente a la página de WooCommerce de pedido recibido, y mostrará instrucciones sobre cómo completar el pago con transferencia bancaria." + +#: ../src/PaymentMethods/Belfius.php:13 +msgid "Belfius Direct Net" +msgstr "Belfius Direct Net" + +#: ../src/PaymentMethods/Creditcard.php:16 +msgid "Credit card" +msgstr "Tarjeta de crédito" + +#: ../src/PaymentMethods/Creditcard.php:52 +msgid "Enable Mollie Components" +msgstr "Habilitar componentes de Mollie" + +#. translators: Placeholder 1: Mollie Components. +#: ../src/PaymentMethods/Creditcard.php:55 +msgid "Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." +msgstr "Usar componentes de Mollie para esta pasarela. Lee más acerca de %s y cómo mejora tu conversión." + +#: ../src/PaymentMethods/Creditcard.php:59, ../src/Settings/Page/Components.php:21, ../src/Settings/Page/MollieSettingsPage.php:703 +msgid "Mollie Components" +msgstr "Componentes de Mollie" + +#: ../src/PaymentMethods/Creditcard.php:92 +msgid "Customize Icons" +msgstr "Personalizar iconos" + +#: ../src/PaymentMethods/Creditcard.php:99 +msgid "Enable Icons Selector" +msgstr "Activar selector de iconos" + +#: ../src/PaymentMethods/Creditcard.php:100 +msgid "Show customized creditcard icons on checkout page" +msgstr "Mostrar iconos de tarjeta de crédito personalizados en la página de pago" + +#: ../src/PaymentMethods/Creditcard.php:108 +msgid "Show American Express Icon" +msgstr "Mostrar icono American Express" + +#: ../src/PaymentMethods/Creditcard.php:113 +msgid "Show Carta Si Icon" +msgstr "Mostrar icono Carta Si" + +#: ../src/PaymentMethods/Creditcard.php:118 +msgid "Show Carte Bancaire Icon" +msgstr "Mostrar icono Carte Bancaire" + +#: ../src/PaymentMethods/Creditcard.php:123 +msgid "Show Maestro Icon" +msgstr "Mostrar icono Maestro" + +#: ../src/PaymentMethods/Creditcard.php:128 +msgid "Show Mastercard Icon" +msgstr "Mostrar icono Mastercard" + +#: ../src/PaymentMethods/Creditcard.php:133 +msgid "Show Visa Icon" +msgstr "Mostrar icono Visa" + +#: ../src/PaymentMethods/Creditcard.php:138 +msgid "Show VPay Icon" +msgstr "Mostrar icono VPay" + +#: ../src/PaymentMethods/Directdebit.php:13 +msgid "SEPA Direct Debit" +msgstr "Adeudo directo SEPA" + +#: ../src/PaymentMethods/Directdebit.php:14 +msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscriptions, and will not be shown in the WooCommerce checkout for regular payments! You also need to enable iDEAL and/or other \"first\" payment methods if you want to use SEPA Direct Debit." +msgstr "El adeudo directo SEPA se utiliza para pagos recurrentes con WooCommerce Subscriptions, y no aparecerá en el proceso de pago en WooCommerce para pagos normales. También necesitas activar iDEAL u otros métodos de pago «primarios» si deseas usar el adeudo directo SEPA." + +#: ../src/PaymentMethods/Eps.php:13 +msgid "EPS" +msgstr "EPS" + +#: ../src/PaymentMethods/Giftcard.php:30 +msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency" +msgid "Mollie - Giftcard details: %1$s %2$s %3$s." +msgstr "Mollie - Detalles de la tarjeta de regalo: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:42 +msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency" +msgid " Remainder: %1$s %2$s %3$s." +msgstr " Recordatorio: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:60 +msgid "Gift cards" +msgstr "Tarjetas de regalo" + +#: ../src/PaymentMethods/Giftcard.php:62, ../src/PaymentMethods/Giftcard.php:105 +msgid "Select your gift card" +msgstr "Selecciona tu tarjeta de regalo" + +#: ../src/PaymentMethods/Giftcard.php:78 +msgid "Show gift cards dropdown" +msgstr "Mostrar el menú desplegable de tarjetas de regalo" + +#: ../src/PaymentMethods/Giftcard.php:84 +msgid "If you disable this, a dropdown with various gift cards will not be shown in the WooCommerce checkout, so users will select a gift card on the Mollie payment page after checkout." +msgstr "Si desactivas esto, no se mostrará el menú desplegable con varias tarjetas de regalo en el proceso de pago de WooCommerce, por lo que los usuarios seleccionarán una tarjeta de regalo en la página de pagos de Mollie después del pago." + +#: ../src/PaymentMethods/Giftcard.php:93, ../src/PaymentMethods/Ideal.php:46, ../src/PaymentMethods/Kbc.php:48 +msgid "Issuers empty option" +msgstr "Entidades emisoras opción vacía" + +#: ../src/PaymentMethods/Giftcard.php:99 +msgid "This text will be displayed as the first option in the gift card dropdown, but only if the above 'Show gift cards dropdown' is enabled." +msgstr "Este texto se mostrará como la primera opción en el menú desplegable de tarjetas de regalo, pero solamente si está activado el menú desplegable anterior «Mostrar menú desplegable de tarjetas de regalo»." + +#: ../src/PaymentMethods/Giropay.php:13 +msgid "Giropay" +msgstr "Giropay" + +#: ../src/PaymentMethods/Ideal.php:15 +msgid "iDEAL" +msgstr "iDEAL" + +#: ../src/PaymentMethods/Ideal.php:17, ../src/PaymentMethods/Ideal.php:55, ../src/PaymentMethods/Kbc.php:16, ../src/PaymentMethods/Kbc.php:60 +msgid "Select your bank" +msgstr "Selecciona tu banco" + +#: ../src/PaymentMethods/Ideal.php:34 +msgid "Show iDEAL banks dropdown" +msgstr "Mostrar menú desplegable de bancos iDEAL" + +#: ../src/PaymentMethods/Ideal.php:37 +msgid "If you disable this, a dropdown with various iDEAL banks will not be shown in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie payment page after checkout." +msgstr "Si desactivas esto, no se mostrará el menú desplegable con varios bancos iDEAL en el proceso de pago de WooCommerce, por lo que los usuarios seleccionarán un banco iDEAL en la página de pagos de Mollie después del pago." + +#: ../src/PaymentMethods/Ideal.php:49 +msgid "This text will be displayed as the first option in the iDEAL issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above 'Show iDEAL banks dropdown' is enabled." +msgstr "Este texto se mostrará como la primera opción en el menú desplegable de entidades emisoras iDEAL; si no se pone nada, se mostrará «Selecciona tu banco». Solamente si está activado el menú desplegable anterior «Mostrar menú desplegable de bancos iDEAL»." + +#: ../src/PaymentMethods/In3.php:13 +msgid "in3" +msgstr "in3" + +#: ../src/PaymentMethods/In3.php:15 +msgid "Pay in 3 instalments, 0% interest" +msgstr "Pago en 3 cuotas, 0 % intereses" + +#: ../src/PaymentMethods/Kbc.php:14 +msgid "KBC/CBC Payment Button" +msgstr "Botón de pago KBC/CBC" + +#: ../src/PaymentMethods/Kbc.php:33 +msgid "Show KBC/CBC banks dropdown" +msgstr "Mostrar menú desplegable de bancos KBC/CBC" + +#: ../src/PaymentMethods/Kbc.php:39 +msgid "If you disable this, a dropdown with various KBC/CBC banks will not be shown in the WooCommerce checkout, so users will select a KBC/CBC bank on the Mollie payment page after checkout." +msgstr "Si desactivas esto, no se mostrará el menú desplegable con varios bancos KBC/CBC en el proceso de pago de WooCommerce, por lo que los usuarios seleccionarán un banco KBC/CBC en la página de pagos de Mollie después del pago." + +#: ../src/PaymentMethods/Kbc.php:54 +msgid "This text will be displayed as the first option in the KBC/CBC issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above ''Show KBC/CBC banks dropdown' is enabled." +msgstr "Este texto se mostrará como la primera opción en el menú desplegable de entidades emisoras KBC/CBC; si no se pone nada, se mostrará «Selecciona tu banco». Solamente si está activado el menú desplegable anterior «Mostrar menú desplegable de bancos KBC/CBC»." + +#: ../src/PaymentMethods/Klarnapaylater.php:13 +msgid "Klarna Pay later" +msgstr "Klarna Pay later" + +#: ../src/PaymentMethods/Klarnapaylater.php:14, ../src/PaymentMethods/Klarnapaynow.php:14, ../src/PaymentMethods/Klarnasliceit.php:15 +msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required." +msgstr "Para aceptar los pagos vía Klarna, todos los campos predeterminados del proceso de pago de WooCommerce deben estar habilitados y ser obligatorios." + +#: ../src/PaymentMethods/Klarnapaynow.php:13 +msgid "Klarna Pay Now" +msgstr "Klarna Pay Now" + +#: ../src/PaymentMethods/Klarnasliceit.php:14 +msgid "Klarna Slice it" +msgstr "Klarna Slice it" + +#: ../src/PaymentMethods/Mybank.php:14 +msgid "MyBank" +msgstr "MyBank" + +#: ../src/PaymentMethods/Mybank.php:15 +msgid "To accept payments via MyBank" +msgstr "Para aceptar pagos mediante MyBank" + +#: ../src/PaymentMethods/Paypal.php:14 +msgid "PayPal" +msgstr "PayPal" + +#: ../src/PaymentMethods/Paypal.php:34 +msgid "Display on cart page" +msgstr "Mostrar en la página de la cesta de la compra" + +#: ../src/PaymentMethods/Paypal.php:38 +msgid "Enable the PayPal button to be used in the cart page." +msgstr "Activa el botón PayPal que se deberá utilizar en la página de la cesta de la compra." + +#: ../src/PaymentMethods/Paypal.php:46 +msgid "Display on product page" +msgstr "Mostrar en la página de productos" + +#: ../src/PaymentMethods/Paypal.php:50 +msgid "Enable the PayPal button to be used in the product page." +msgstr "Activa el botón PayPal que se deberá utilizar en la página de productos." + +#: ../src/PaymentMethods/Paypal.php:59 +msgctxt "Mollie PayPal Button Settings" +msgid "Button text language and color" +msgstr "Idioma y color del botón" + +#: ../src/PaymentMethods/Paypal.php:60 +msgctxt "Mollie PayPal Button Settings" +msgid "Select the text and the colour of the button." +msgstr "Selecciona el texto y el color del botón." + +#: ../src/PaymentMethods/Paypal.php:70 +msgid "Minimum amount to display button" +msgstr "Importe mínimo para mostrar el botón" + +#: ../src/PaymentMethods/Paypal.php:74 +msgid "If the product or the cart total amount is under this number, then the button will not show up." +msgstr "Si el producto o el importe total de la cesta de la compra es inferior a esta cantidad, no se mostrará el botón." + +#: ../src/PaymentMethods/Paypal.php:89 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill blue" +msgstr "Inglés -- Comprar con PayPal - Botón alargado azul" + +#: ../src/PaymentMethods/Paypal.php:90 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded blue" +msgstr "Inglés -- Comprar con PayPal - Redondeado azul" + +#: ../src/PaymentMethods/Paypal.php:91 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill golden" +msgstr "Inglés -- Comprar con PayPal - Botón alargado dorado" + +#: ../src/PaymentMethods/Paypal.php:92 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded golden" +msgstr "Inglés -- Comprar con PayPal - Redondeado dorado" + +#: ../src/PaymentMethods/Paypal.php:93 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill gray" +msgstr "Inglés -- Comprar con PayPal - Botón alargado gris" + +#: ../src/PaymentMethods/Paypal.php:94 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded gray" +msgstr "Inglés -- Comprar con PayPal - Redondeado gris" + +#: ../src/PaymentMethods/Paypal.php:95 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill white" +msgstr "Inglés -- Comprar con PayPal - Botón alargado blanco" + +#: ../src/PaymentMethods/Paypal.php:96 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded white" +msgstr "Inglés -- Comprar con PayPal - Redondeado blanco" + +#: ../src/PaymentMethods/Paypal.php:97 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill black" +msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado negro" + +#: ../src/PaymentMethods/Paypal.php:98 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded black" +msgstr "Inglés -- Proceso de pago con PayPal - Redondeado negro" + +#: ../src/PaymentMethods/Paypal.php:99 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill blue" +msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado azul" + +#: ../src/PaymentMethods/Paypal.php:100 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded blue" +msgstr "Inglés -- Proceso de pago con PayPal - Redondeado azul" + +#: ../src/PaymentMethods/Paypal.php:101 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill golden" +msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado dorado" + +#: ../src/PaymentMethods/Paypal.php:102 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded golden" +msgstr "Inglés -- Proceso de pago con PayPal - Redondeado dorado" + +#: ../src/PaymentMethods/Paypal.php:103 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill gray" +msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado gris" + +#: ../src/PaymentMethods/Paypal.php:104 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded gray" +msgstr "Inglés -- Proceso de pago con PayPal - Redondeado gris" + +#: ../src/PaymentMethods/Paypal.php:105 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill white" +msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado blanco" + +#: ../src/PaymentMethods/Paypal.php:106 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded white" +msgstr "Inglés -- Proceso de pago con PayPal - Redondeado blanco" + +#: ../src/PaymentMethods/Paypal.php:107 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill black" +msgstr "Holandés -- Comprar con PayPal - Botón alargado negro" + +#: ../src/PaymentMethods/Paypal.php:108 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded black" +msgstr "Holandés -- Comprar con PayPal - Redondeado negro" + +#: ../src/PaymentMethods/Paypal.php:109 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill blue" +msgstr "Holandés -- Comprar con PayPal - Botón alargado azul" + +#: ../src/PaymentMethods/Paypal.php:110 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded blue" +msgstr "Holandés -- Comprar con PayPal - Redondeado azul" + +#: ../src/PaymentMethods/Paypal.php:111 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill golden" +msgstr "Holandés -- Comprar con PayPal - Botón alargado dorado" + +#: ../src/PaymentMethods/Paypal.php:112 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded golden" +msgstr "Holandés -- Comprar con PayPal - Redondeado dorado" + +#: ../src/PaymentMethods/Paypal.php:113 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill gray" +msgstr "Holandés -- Comprar con PayPal - Botón alargado gris" + +#: ../src/PaymentMethods/Paypal.php:114 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded gray" +msgstr "Holandés -- Comprar con PayPal - Redondeado gris" + +#: ../src/PaymentMethods/Paypal.php:115 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill white" +msgstr "Holandés -- Comprar con PayPal - Botón alargado blanco" + +#: ../src/PaymentMethods/Paypal.php:116 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded white" +msgstr "Holandés -- Comprar con PayPal - Redondeado blanco" + +#: ../src/PaymentMethods/Paypal.php:117 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill black" +msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado negro" + +#: ../src/PaymentMethods/Paypal.php:118 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded black" +msgstr "Holandés -- Proceso de pago con PayPal - Redondeado negro" + +#: ../src/PaymentMethods/Paypal.php:119 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill blue" +msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado azul" + +#: ../src/PaymentMethods/Paypal.php:120 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded blue" +msgstr "Holandés -- Proceso de pago con PayPal - Redondeado azul" + +#: ../src/PaymentMethods/Paypal.php:121 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill golden" +msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado dorado" + +#: ../src/PaymentMethods/Paypal.php:122 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded golden" msgstr "Holandés -- Proceso de pago con PayPal - Redondeado dorado" -#: build/inc/settings/mollie_paypal_button_enabler.php:88 -#: inc/settings/mollie_paypal_button_enabler.php:88 +#: ../src/PaymentMethods/Paypal.php:123 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill gray" msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado gris" -#: build/inc/settings/mollie_paypal_button_enabler.php:89 -#: inc/settings/mollie_paypal_button_enabler.php:89 +#: ../src/PaymentMethods/Paypal.php:124 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded gray" msgstr "Holandés -- Proceso de pago con PayPal - Redondeado gris" -#: build/inc/settings/mollie_paypal_button_enabler.php:90 -#: inc/settings/mollie_paypal_button_enabler.php:90 +#: ../src/PaymentMethods/Paypal.php:125 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill white" msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado blanco" -#: build/inc/settings/mollie_paypal_button_enabler.php:91 -#: inc/settings/mollie_paypal_button_enabler.php:91 +#: ../src/PaymentMethods/Paypal.php:126 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded white" msgstr "Holandés -- Proceso de pago con PayPal - Redondeado blanco" -#: build/inc/settings/mollie_paypal_button_enabler.php:92 -#: inc/settings/mollie_paypal_button_enabler.php:92 +#: ../src/PaymentMethods/Paypal.php:127 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill black" msgstr "Alemán -- Comprar con PayPal - Botón alargado negro" -#: build/inc/settings/mollie_paypal_button_enabler.php:93 -#: inc/settings/mollie_paypal_button_enabler.php:93 +#: ../src/PaymentMethods/Paypal.php:128 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded black" msgstr "Alemán -- Comprar con PayPal - Redondeado negro" -#: build/inc/settings/mollie_paypal_button_enabler.php:94 -#: inc/settings/mollie_paypal_button_enabler.php:94 +#: ../src/PaymentMethods/Paypal.php:129 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill blue" msgstr "Alemán -- Comprar con PayPal - Botón alargado azul" -#: build/inc/settings/mollie_paypal_button_enabler.php:95 -#: inc/settings/mollie_paypal_button_enabler.php:95 +#: ../src/PaymentMethods/Paypal.php:130 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded blue" msgstr "Alemán -- Comprar con PayPal - Redondeado azul" -#: build/inc/settings/mollie_paypal_button_enabler.php:96 -#: inc/settings/mollie_paypal_button_enabler.php:96 +#: ../src/PaymentMethods/Paypal.php:131 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill golden" msgstr "Alemán -- Comprar con PayPal - Botón alargado dorado" -#: build/inc/settings/mollie_paypal_button_enabler.php:97 -#: inc/settings/mollie_paypal_button_enabler.php:97 +#: ../src/PaymentMethods/Paypal.php:132 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded golden" msgstr "Alemán -- Comprar con PayPal - Redondeado dorado" -#: build/inc/settings/mollie_paypal_button_enabler.php:98 -#: inc/settings/mollie_paypal_button_enabler.php:98 +#: ../src/PaymentMethods/Paypal.php:133 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill gray" msgstr "Alemán -- Comprar con PayPal - Botón alargado gris" -#: build/inc/settings/mollie_paypal_button_enabler.php:99 -#: inc/settings/mollie_paypal_button_enabler.php:99 +#: ../src/PaymentMethods/Paypal.php:134 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded gray" msgstr "Alemán -- Comprar con PayPal - Redondeado gris" -#: build/inc/settings/mollie_paypal_button_enabler.php:100 -#: inc/settings/mollie_paypal_button_enabler.php:100 +#: ../src/PaymentMethods/Paypal.php:135 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill white" msgstr "Alemán -- Comprar con PayPal - Botón alargado blanco" -#: build/inc/settings/mollie_paypal_button_enabler.php:101 -#: inc/settings/mollie_paypal_button_enabler.php:101 +#: ../src/PaymentMethods/Paypal.php:136 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded white" msgstr "Alemán -- Comprar con PayPal - Redondeado blanco" -#: build/inc/settings/mollie_paypal_button_enabler.php:102 -#: inc/settings/mollie_paypal_button_enabler.php:102 +#: ../src/PaymentMethods/Paypal.php:137 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill black" msgstr "Alemán -- Proceso de pago con PayPal - Botón alargado negro" -#: build/inc/settings/mollie_paypal_button_enabler.php:103 -#: inc/settings/mollie_paypal_button_enabler.php:103 +#: ../src/PaymentMethods/Paypal.php:138 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded black" msgstr "Alemán -- Proceso de pago con PayPal - Redondeado negro" -#: build/inc/settings/mollie_paypal_button_enabler.php:104 -#: inc/settings/mollie_paypal_button_enabler.php:104 +#: ../src/PaymentMethods/Paypal.php:139 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill blue" msgstr "Alemán -- Proceso de pago con PayPal - Botón alargado azul" -#: build/inc/settings/mollie_paypal_button_enabler.php:105 -#: inc/settings/mollie_paypal_button_enabler.php:105 +#: ../src/PaymentMethods/Paypal.php:140 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded blue" msgstr "Alemán -- Proceso de pago con PayPal - Redondeado azul" -#: build/inc/settings/mollie_paypal_button_enabler.php:106 -#: inc/settings/mollie_paypal_button_enabler.php:106 +#: ../src/PaymentMethods/Paypal.php:141 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill golden" msgstr "Alemán -- Proceso de pago con PayPal - Botón alargado dorado" -#: build/inc/settings/mollie_paypal_button_enabler.php:107 -#: inc/settings/mollie_paypal_button_enabler.php:107 +#: ../src/PaymentMethods/Paypal.php:142 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded golden" msgstr "Alemán -- Proceso de pago con PayPal - Redondeado dorado" -#: build/inc/settings/mollie_paypal_button_enabler.php:108 -#: inc/settings/mollie_paypal_button_enabler.php:108 +#: ../src/PaymentMethods/Paypal.php:143 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill gray" msgstr "Alemán -- Proceso de pago con PayPal - Botón alargado gris" -#: build/inc/settings/mollie_paypal_button_enabler.php:109 -#: inc/settings/mollie_paypal_button_enabler.php:109 +#: ../src/PaymentMethods/Paypal.php:144 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded gray" msgstr "Alemán -- Proceso de pago con PayPal - Redondeado gris" -#: build/inc/settings/mollie_paypal_button_enabler.php:110 -#: inc/settings/mollie_paypal_button_enabler.php:110 +#: ../src/PaymentMethods/Paypal.php:145 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill white" msgstr "Alemán -- Proceso de pago con PayPal - Botón alargado blanco" -#: build/inc/settings/mollie_paypal_button_enabler.php:111 -#: inc/settings/mollie_paypal_button_enabler.php:111 +#: ../src/PaymentMethods/Paypal.php:146 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded white" msgstr "Alemán -- Proceso de pago con PayPal - Oro" -#: build/inc/settings/mollie_paypal_button_enabler.php:112 -#: inc/settings/mollie_paypal_button_enabler.php:112 +#: ../src/PaymentMethods/Paypal.php:147 msgctxt "Mollie PayPal button Settings" msgid "French -- Buy with PayPal - Gold" msgstr "Francés -- Comprar con PayPal - Oro" -#: build/inc/settings/mollie_paypal_button_enabler.php:113 -#: inc/settings/mollie_paypal_button_enabler.php:113 +#: ../src/PaymentMethods/Paypal.php:148 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Gold" msgstr "Francés -- Proceso de pago con PayPal - Oro" -#: build/inc/settings/mollie_paypal_button_enabler.php:114 -#: inc/settings/mollie_paypal_button_enabler.php:114 +#: ../src/PaymentMethods/Paypal.php:149 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Silver" msgstr "Francés -- Proceso de pago con PayPal - Plata" -#: build/inc/settings/mollie_paypal_button_enabler.php:115 -#: inc/settings/mollie_paypal_button_enabler.php:115 +#: ../src/PaymentMethods/Paypal.php:150 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Buy with PayPal - Gold" msgstr "Polaco -- Comprar con PayPal - Oro" -#: build/inc/settings/mollie_paypal_button_enabler.php:116 -#: inc/settings/mollie_paypal_button_enabler.php:116 +#: ../src/PaymentMethods/Paypal.php:151 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Checkout with PayPal - Gold" msgstr "Polaco -- Proceso de pago con PayPal - Oro" -#: build/inc/settings/mollie_paypal_button_enabler.php:117 -#: inc/settings/mollie_paypal_button_enabler.php:117 +#: ../src/PaymentMethods/Paypal.php:152 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Checkout with PayPal - Silver" msgstr "Polaco -- Proceso de pago con PayPal - Plata" -#: build/inc/settings/mollie_paypal_button_enabler.php:122 -#: inc/settings/mollie_paypal_button_enabler.php:122 -msgid "Minimum amount to display button" -msgstr "Importe mínimo para mostrar el botón" - -#: build/inc/settings/mollie_paypal_button_enabler.php:126 -#: inc/settings/mollie_paypal_button_enabler.php:126 -msgid "" -"If the product or the cart total amount is under this number, then the " -"button will not show up." -msgstr "" -"Si el producto o el importe total de la cesta de la compra es inferior a " -"esta cantidad, no se mostrará el botón." - -#: build/mollie-payments-for-woocommerce.php:90 -#: mollie-payments-for-woocommerce.php:90 -msgid "" -"%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set " -"your API keys here%4$s." -msgstr "" -"%1$sMollie Payments for WooCommerce: faltan claves de API%2$s Por favor,%3$s " -"ajusta tus claves API aquí%4$s." - -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: build/src/Mollie/WC/Gateway/Abstract.php:685 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: src/Mollie/WC/Gateway/Abstract.php:685 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -msgid "Could not create %s payment." -msgstr "No se ha podido crear el pago %s." - -#: build/src/Mollie/WC/Gateway/Abstract.php:138 -#: src/Mollie/WC/Gateway/Abstract.php:138 -msgid "No custom logo selected" -msgstr "Ningún logotipo personalizado seleccionado" - -#: build/src/Mollie/WC/Gateway/Abstract.php:221 -#: src/Mollie/WC/Gateway/Abstract.php:221 -msgid "Gateway Disabled" -msgstr "Pasarela desactivada" - -#: build/src/Mollie/WC/Gateway/Abstract.php:244 -#: src/Mollie/WC/Gateway/Abstract.php:244 -msgid "Return to payments" -msgstr "Volver a los pagos" - -#: build/src/Mollie/WC/Gateway/Abstract.php:260 -#: build/src/Mollie/WC/Helper/Settings.php:114 -#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114 -msgid "Sell to specific countries" -msgstr "Vender a países específicos" - -#: build/src/Mollie/WC/Gateway/Abstract.php:272 -#: src/Mollie/WC/Gateway/Abstract.php:272 -msgid "Choose countries…" -msgstr "Seleccionar países…" - -#: build/src/Mollie/WC/Gateway/Abstract.php:273 -#: src/Mollie/WC/Gateway/Abstract.php:273 -msgid "Country" -msgstr "País" - -#: build/src/Mollie/WC/Gateway/Abstract.php:282 -#: src/Mollie/WC/Gateway/Abstract.php:282 -msgid "Select all" -msgstr "Seleccionar todos" - -#: build/src/Mollie/WC/Gateway/Abstract.php:283 -#: src/Mollie/WC/Gateway/Abstract.php:283 -msgid "Select none" -msgstr "Seleccionar ninguno" - -#: build/src/Mollie/WC/Gateway/Abstract.php:337 -#: build/src/Mollie/WC/Helper/Settings.php:558 -#: src/Mollie/WC/Gateway/Abstract.php:337 src/Mollie/WC/Helper/Settings.php:558 -msgid "Test mode enabled." -msgstr "Modo de prueba activado." - -#. translators: The surrounding %s's Will be replaced by a link to the global setting page -#: build/src/Mollie/WC/Gateway/Abstract.php:339 -#: src/Mollie/WC/Gateway/Abstract.php:339 -msgid "No API key provided. Please %sset you Mollie API key%s first." -msgstr "" -"Ninguna clave de API proporcionada. Configura primero %stu clave de API de " -"Mollie.%s" - -#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Gateway/Abstract.php:351 -#: src/Mollie/WC/Gateway/Abstract.php:351 -msgid "" -"%s not enabled in your Mollie profile. You can enable it by editing your " -"%sMollie profile%s." -msgstr "" -"%s no activado en tu perfil de Mollie. Puedes activarlo editando tu %sperfil " -"de Mollie%s." - -#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies -#: build/src/Mollie/WC/Gateway/Abstract.php:363 -#: src/Mollie/WC/Gateway/Abstract.php:363 -msgid "" -"Current shop currency %s not supported by Mollie. Read more about " -"%ssupported currencies and payment methods.%s " -msgstr "" -"Moneda actual de la tienda %s no compatible con Mollie. Obtén más " -"información sobre las monedas %sy los métodos de pago compatibles.%s " - -#: build/src/Mollie/WC/Gateway/Abstract.php:525 -#: src/Mollie/WC/Gateway/Abstract.php:525 -msgid "Could not load order %s" -msgstr "No se ha podido cargar el pedido %s" - -#: build/src/Mollie/WC/Gateway/Abstract.php:577 -#: src/Mollie/WC/Gateway/Abstract.php:577 -msgid "" -"Order completed internally because of an existing valid mandate at Mollie." -msgstr "" -"El pedido se ha completado internamente por una orden válida existente en " -"Mollie." - -#: build/src/Mollie/WC/Gateway/Abstract.php:588 -#: src/Mollie/WC/Gateway/Abstract.php:588 -msgid "" -"Subscription switch failed, no valid mandate found. Place a completely new " -"order to change your subscription." -msgstr "" -"El cambio de suscripción ha fallado, no se ha encontrado una orden válida. " -"Realiza una orden nueva para cambiar tu suscripción." - -#: build/src/Mollie/WC/Gateway/Abstract.php:589 -#: src/Mollie/WC/Gateway/Abstract.php:589 -msgid "Failed switching subscriptions, no valid mandate." -msgstr "Cambio de suscripciones fallada, ningún mandato válido." - -#: build/src/Mollie/WC/Gateway/Abstract.php:658 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:413 -#: src/Mollie/WC/Gateway/Abstract.php:658 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:413 -msgid "Awaiting payment confirmation." -msgstr "A la espera de la confirmación del pago." - -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:668 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:420 -#: src/Mollie/WC/Gateway/Abstract.php:668 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:420 -msgid "%s payment started (%s)." -msgstr "Pago %s iniciado (%s)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:670 -#: build/src/Mollie/WC/Gateway/Abstract.php:897 -#: build/src/Mollie/WC/Gateway/Abstract.php:1181 -#: build/src/Mollie/WC/Gateway/Abstract.php:1243 -#: build/src/Mollie/WC/Gateway/Abstract.php:1618 -#: build/src/Mollie/WC/Gateway/Abstract.php:2142 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: build/src/Mollie/WC/Payment/Object.php:608 -#: build/src/Mollie/WC/Payment/Object.php:642 -#: build/src/Mollie/WC/Payment/Order.php:264 -#: build/src/Mollie/WC/Payment/Order.php:316 -#: build/src/Mollie/WC/Payment/Order.php:363 -#: build/src/Mollie/WC/Payment/Order.php:446 -#: build/src/Mollie/WC/Payment/Order.php:511 -#: build/src/Mollie/WC/Payment/Order.php:936 -#: build/src/Mollie/WC/Payment/Payment.php:249 -#: build/src/Mollie/WC/Payment/Payment.php:336 -#: build/src/Mollie/WC/Payment/Payment.php:406 -#: build/src/Mollie/WC/Payment/Payment.php:429 -#: src/Mollie/WC/Gateway/Abstract.php:670 -#: src/Mollie/WC/Gateway/Abstract.php:897 -#: src/Mollie/WC/Gateway/Abstract.php:1181 -#: src/Mollie/WC/Gateway/Abstract.php:1243 -#: src/Mollie/WC/Gateway/Abstract.php:1618 -#: src/Mollie/WC/Gateway/Abstract.php:2142 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642 -#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316 -#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446 -#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936 -#: src/Mollie/WC/Payment/Payment.php:249 src/Mollie/WC/Payment/Payment.php:336 -#: src/Mollie/WC/Payment/Payment.php:406 src/Mollie/WC/Payment/Payment.php:429 -msgid "test mode" -msgstr "modo de prueba" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:894 -#: src/Mollie/WC/Gateway/Abstract.php:894 -msgid "%s payment %s (%s), not processed." -msgstr "Pago %s %s (%s), no procesado." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1008 -#: src/Mollie/WC/Gateway/Abstract.php:1008 -msgid "" -"New refund %s processed in Mollie Dashboard! Order note added, but order not " -"updated." -msgstr "" -"¡Nuevo reembolso %s procesado en el panel de Mollie! Nota de pedido añadida, " -"pero pedido no actualizado." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1144 -#: src/Mollie/WC/Gateway/Abstract.php:1144 -msgid "New chargeback %s processed! Order note and order status updated." -msgstr "" -"¡Nueva anulación %s procesada! Nota de pedido y estado de pedido " -"actualizados." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1176 -#: src/Mollie/WC/Gateway/Abstract.php:1176 -msgid "" -"%s payment charged back via Mollie (%s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"Pago %s cancelado vía Mollie (%s). Deberás revisar manualmente el pago (y " -"ajustar las existencias de productos si las usas)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1237 -#: src/Mollie/WC/Gateway/Abstract.php:1237 -msgid "" -"%s payment charged back via Mollie (%s). Subscription status updated, please " -"review (and adjust product stocks if you use it)." -msgstr "" -"Pago %s cancelado vía Mollie (%s). Estado de la suscripción actualizado, por " -"favor, revísalo (y ajusta existencias de productos si lo usas)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1314 -#: src/Mollie/WC/Gateway/Abstract.php:1314 -msgid "" -"You have cancelled your payment. Please complete your order with a different " -"payment method." -msgstr "" -"Has cancelado el pago. Por favor, realiza tu pedido con otro método de pago." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1328 -#: build/src/Mollie/WC/Gateway/Abstract.php:1337 -#: src/Mollie/WC/Gateway/Abstract.php:1328 -#: src/Mollie/WC/Gateway/Abstract.php:1337 -msgid "" -"Your payment was not successful. Please complete your order with a different " -"payment method." -msgstr "" -"Tu pago no se ha procesado correctamente. Por favor, realiza tu pedido con " -"otro método de pago." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1529 -#: src/Mollie/WC/Gateway/Abstract.php:1529 -msgid "We have not received a definite payment status." -msgstr "No hemos recibido un estado de pago definitivo." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1534 -#: src/Mollie/WC/Gateway/Abstract.php:1534 -msgid "" -"We have not received a definite payment status. You will receive an email as " -"soon as we receive a confirmation of the bank/merchant." -msgstr "" -"No hemos recibido un estado de pago definitivo. Recibirás un correo " -"electrónico tan pronto como recibamos una confirmación del banco/comerciante." - -#. translators: Placeholder 1: payment method -#: build/src/Mollie/WC/Gateway/Abstract.php:1541 -#: src/Mollie/WC/Gateway/Abstract.php:1541 -msgid "Payment completed with %s" -msgstr "Pago completado con %s" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1589 -#: src/Mollie/WC/Gateway/Abstract.php:1589 -msgid "Order cancelled" -msgstr "Pedido cancelado" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1616 -#: src/Mollie/WC/Gateway/Abstract.php:1616 -msgid "" -"%s payment still pending (%s) but customer already returned to the store. " -"Status should be updated automatically in the future, if it doesn't this " -"might indicate a communication issue between the site and Mollie." -msgstr "" -"El pago %s sigue pendiente (%s), pero el cliente ya ha regresado a la " -"tienda. El estado debería actualizarse automáticamente en el futuro. Si no " -"lo hace, esto podría indicar un problema de comunicación entre el sitio y " -"Mollie." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1625 -#: src/Mollie/WC/Gateway/Abstract.php:1625 -msgid ", payment pending." -msgstr ", pago pendiente." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1652 -#: src/Mollie/WC/Gateway/Abstract.php:1652 -msgid "Your order has been cancelled." -msgstr "Tu pedido ha sido cancelado." +#: ../src/PaymentMethods/Paysafecard.php:14 +msgid "paysafecard" +msgstr "paysafecard" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:2129 -#: src/Mollie/WC/Gateway/Abstract.php:2129 -msgid "" -"%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"Pago %1$s %2$s vía Mollie (%3$s %4$s). Deberás revisar manualmente el pago " -"(y ajustar las existencias de productos si las usas)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:2166 -#: src/Mollie/WC/Gateway/Abstract.php:2166 -msgctxt "" -"Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid "Mollie - Giftcard details: %1$s %2$s %3$s." -msgstr "Mollie - Detalles de la tarjeta de regalo: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Przelewy24.php:14 +msgid "Przelewy24" +msgstr "Przelewy24" -#: build/src/Mollie/WC/Gateway/Abstract.php:2178 -#: src/Mollie/WC/Gateway/Abstract.php:2178 -msgctxt "" -"Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid " Remainder: %1$s %2$s %3$s." -msgstr " Recordatorio: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Przelewy24.php:15 +msgid "To accept payments via Przelewy24, a customer email is required for every payment." +msgstr "Para aceptar pagos mediante Przelewy24, se requiere un correo electrónico del cliente para cada pago." -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. -#: build/src/Mollie/WC/Gateway/Abstract.php:2580 -#: src/Mollie/WC/Gateway/Abstract.php:2580 -msgid " + %1$s %2$s fee might apply" -msgstr "Podría aplicarse un cargo de + %1$s %2$s" +#: ../src/PaymentMethods/Sofort.php:14 +msgid "SOFORT Banking" +msgstr "SOFORT Banking" -#. translators: Placeholder 1: Fee amount tag. -#: build/src/Mollie/WC/Gateway/Abstract.php:2590 -#: src/Mollie/WC/Gateway/Abstract.php:2590 -msgid " + %1$s%% fee might apply" -msgstr "Podría aplicarse un cargo de + %1$s%%" +#: ../src/PaymentMethods/Voucher.php:35 +msgid "Voucher" +msgstr "Vale" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. -#: build/src/Mollie/WC/Gateway/Abstract.php:2607 -#: src/Mollie/WC/Gateway/Abstract.php:2607 -msgid " + %1$s %2$s + %3$s%% fee might apply" -msgstr "Podría aplicarse un cargo de + %1$s %2$s + %3$s%%" +#: ../src/PaymentMethods/Voucher.php:54, ../src/Gateway/Voucher/VoucherModule.php:220 +msgid "Select the default products category" +msgstr "Selecciona la categoría de productos por defecto" -#: build/src/Mollie/WC/Gateway/Abstract.php:2646 -#: src/Mollie/WC/Gateway/Abstract.php:2646 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must " -"be under 500kb." -msgstr "" -"%1$sMollie Payments for WooCommerce%2$s No se puede cargar el archivo. El " -"tamaño debe ser inferior a 500 KB." +#: ../src/PaymentMethods/Voucher.php:57 +msgid "No category" +msgstr "Sin categoría" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -msgid "Order completed using %1$s payment (%2$s)." -msgstr "Pedido completado mediante %1$s pago (%2$s)." +#: ../src/PaymentMethods/Voucher.php:58, ../src/Gateway/Voucher/VoucherModule.php:113, ../src/Gateway/Voucher/VoucherModule.php:147, ../src/Gateway/Voucher/VoucherModule.php:178, ../src/Gateway/Voucher/VoucherModule.php:233, ../src/Gateway/Voucher/VoucherModule.php:293 +msgid "Meal" +msgstr "Comida" -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:165 -msgid "" -"Updated subscription from 'On hold' to 'Active' until payment fails, because " -"a SEPA Direct Debit payment takes some time to process." -msgstr "" -"Suscripción actualizada de «En espera» a «Activa» hasta que el pago falle, " -"porque un pago de adeudo directo SEPA tarda un tiempo en procesarse." +#: ../src/PaymentMethods/Voucher.php:59, ../src/Gateway/Voucher/VoucherModule.php:114, ../src/Gateway/Voucher/VoucherModule.php:148, ../src/Gateway/Voucher/VoucherModule.php:181, ../src/Gateway/Voucher/VoucherModule.php:234, ../src/Gateway/Voucher/VoucherModule.php:294 +msgid "Eco" +msgstr "Eco" -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:313 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:313 -msgid "Could not create %s renewal payment." -msgstr "No se pudo crear el pago de renovación %s." +#: ../src/PaymentMethods/Voucher.php:60, ../src/Gateway/Voucher/VoucherModule.php:115, ../src/Gateway/Voucher/VoucherModule.php:149, ../src/Gateway/Voucher/VoucherModule.php:184, ../src/Gateway/Voucher/VoucherModule.php:235, ../src/Gateway/Voucher/VoucherModule.php:295 +msgid "Gift" +msgstr "Regalo" -#: build/src/Mollie/WC/Gateway/Applepay.php:48 -#: src/Mollie/WC/Gateway/Applepay.php:48 -msgid "Apple Pay" -msgstr "Apple Pay" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/PaymentMethods/Voucher.php:64 +msgid "In order to process it, all products in the order must have a category. This selector will assign the default category for the shop products" +msgstr "Para poder procesar el pedido, todos los productos deben tener una categoría. Este selector asignará la categoría por defecto para los productos de la tienda" -#: build/src/Mollie/WC/Gateway/Applepay.php:56 -#: src/Mollie/WC/Gateway/Applepay.php:56 -msgid "To accept payments via Apple Pay" -msgstr "Para aceptar pagos mediante Apple Pay" +#: ../src/SDK/Api.php:49 +msgid "Invalid API key(s). Get them on the %1$sDevelopers page in the Mollie dashboard%2$s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters." +msgstr "Clave(s) de API no válida(s). Puedes obtenerlas en la página de desarrolladores %1$sen el panel de Mollie%2$s. La(s) clave(s) de API debe(n) empezar con 'live_' o 'test_', tener como mínimo 30 caracteres y no contener ningún carácter especial." -#: build/src/Mollie/WC/Gateway/Bancontact.php:29 -#: src/Mollie/WC/Gateway/Bancontact.php:29 -msgid "Bancontact" -msgstr "Bancontact" +#: ../src/SDK/Api.php:47 +msgid "No API key provided. Please set your Mollie API keys below." +msgstr "Ninguna clave de API proporcionada. Configura tus claves de API de Mollie abajo." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:38 -#: build/src/Mollie/WC/Helper/Settings.php:257 -#: src/Mollie/WC/Gateway/BankTransfer.php:38 -#: src/Mollie/WC/Helper/Settings.php:257 -msgid "Activate expiry date setting" -msgstr "Activar ajuste de la fecha de caducidad" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:39 -#: build/src/Mollie/WC/Helper/Settings.php:258 -#: src/Mollie/WC/Gateway/BankTransfer.php:39 -#: src/Mollie/WC/Helper/Settings.php:258 -msgid "Enable expiry date for payments" -msgstr "Activar fecha de caducidad para pagos" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:40 -#: src/Mollie/WC/Gateway/BankTransfer.php:40 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the payment will expire. This will turn all transactions into payments " -"instead of orders" -msgstr "" -"Activa esta opción si quieres poder ajustar el número de días al cabo de los " -"cuales caducará el pago. Esto convertirá todas las transacciones en pagos en " -"lugar de pedidos" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:45 -#: build/src/Mollie/WC/Helper/Settings.php:264 -#: build/src/Mollie/WC/Plugin.php:927 src/Mollie/WC/Gateway/BankTransfer.php:45 -#: src/Mollie/WC/Helper/Settings.php:264 src/Mollie/WC/Plugin.php:927 -msgid "Expiry date" -msgstr "Fecha de caducidad" +#: ../src/Settings/Settings.php:174 +msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb." +msgstr "%1$sMollie Payments for WooCommerce%2$s No se puede cargar el archivo. El tamaño debe ser inferior a 500 KB." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:47 -#: src/Mollie/WC/Gateway/BankTransfer.php:47 -msgid "" -"Number of DAYS after the payment will expire. Default %d days" -msgstr "" -"Número de DÍAS después de los cuales el pago caducará. Por defecto %d días" +#: ../src/Settings/Settings.php:216 +msgid "Gateway Disabled" +msgstr "Pasarela desactivada" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:56 -#: src/Mollie/WC/Gateway/BankTransfer.php:56 -msgid "Skip Mollie payment screen" -msgstr "Saltar la pantalla de pago de Mollie" +#: ../src/Settings/Settings.php:237 +msgid "Return to payments" +msgstr "Volver a los pagos" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:57 -#: src/Mollie/WC/Gateway/BankTransfer.php:57 -msgid "Skip Mollie payment screen when Bank Transfer is selected" -msgstr "" -"Saltar la pantalla de pago de Mollie cuando la transferencia bancaria está " -"seleccionada" +#: ../src/Settings/Settings.php:252, ../src/Settings/General/MollieGeneralSettings.php:86 +msgid "Sell to specific countries" +msgstr "Vender a países específicos" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:58 -#: src/Mollie/WC/Gateway/BankTransfer.php:58 -msgid "" -"Enable this option if you want to skip redirecting your user to the Mollie " -"payment screen, instead this will redirect your user directly to the " -"WooCommerce order received page displaying instructions how to complete the " -"Bank Transfer payment." -msgstr "" -"Activa esta opción si deseas omitir el redireccionamiento de tu usuario a la " -"pantalla de pago de Mollie; en su lugar, esto redireccionará a tu usuario " -"directamente a la página de WooCommerce de pedido recibido, y mostrará " -"instrucciones sobre cómo completar el pago con transferencia bancaria." +#: ../src/Settings/Settings.php:264 +msgid "Choose countries…" +msgstr "Seleccionar países…" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:138 -#: src/Mollie/WC/Gateway/BankTransfer.php:138 -msgid "Bank Transfer" -msgstr "Transferencia bancaria" +#: ../src/Settings/Settings.php:265 +msgid "Country" +msgstr "País" -#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC -#: build/src/Mollie/WC/Gateway/BankTransfer.php:188 -#: build/src/Mollie/WC/Gateway/DirectDebit.php:80 -#: build/src/Mollie/WC/Gateway/Ideal.php:124 -#: build/src/Mollie/WC/Gateway/Sofort.php:64 -#: src/Mollie/WC/Gateway/BankTransfer.php:188 -#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124 -#: src/Mollie/WC/Gateway/Sofort.php:64 -msgid "" -"Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" -msgstr "" -"Pago completado por %1$s (IBAN (últimos 4 dígitos): %2$s, BIC: %3$s)." +#: ../src/Settings/Settings.php:274 +msgid "Select all" +msgstr "Seleccionar todos" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:198 -#: src/Mollie/WC/Gateway/BankTransfer.php:198 -msgid "" -"Please complete your payment by transferring the total amount to the " -"following bank account:" -msgstr "" -"Por favor, completa tu pago transfiriendo la cantidad total a la siguiente " -"cuenta bancaria:" +#: ../src/Settings/Settings.php:275 +msgid "Select none" +msgstr "Seleccionar ninguno" -#. translators: Placeholder 1: 'Stichting Mollie Payments' -#: build/src/Mollie/WC/Gateway/BankTransfer.php:202 -#: src/Mollie/WC/Gateway/BankTransfer.php:202 -msgid "Beneficiary: %s" -msgstr "Beneficiario: %s" +#: ../src/Settings/Settings.php:470 +msgid "Error" +msgstr "Error" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:203 -#: src/Mollie/WC/Gateway/BankTransfer.php:203 -msgid "IBAN: %s" -msgstr "IBAN: %s" +#: ../src/Settings/Settings.php:484 +msgid "Mollie status:" +msgstr "Estado de Mollie:" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:204 -#: src/Mollie/WC/Gateway/BankTransfer.php:204 -msgid "BIC: %s" -msgstr "BIC: %s" +#: ../src/Settings/Settings.php:485 +msgid "Connected" +msgstr "Conectado" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:209 -#: src/Mollie/WC/Gateway/BankTransfer.php:209 -msgid "Payment reference: %s" -msgstr "Referencia del pago: %s" +#: ../src/Settings/SettingsModule.php:171 +msgid "Mollie settings" +msgstr "Ajustes de Mollie" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:214 -#: src/Mollie/WC/Gateway/BankTransfer.php:214 -msgid "Please provide the payment reference %s" -msgstr "Por favor, indica la referencia del pago %s" +#: ../src/Settings/SettingsModule.php:177 +msgid "Logs" +msgstr "Registros" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:228 -#: src/Mollie/WC/Gateway/BankTransfer.php:228 -msgid "The payment will expire on %s." -msgstr "El pago caducará el %s." +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/SettingsModule.php:187 +msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production." +msgstr "%1$sMollie Payments for WooCommerce%2$s El modo de prueba está activo; %3$s desactívalo%4$s antes de implementarlo en la producción." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:235 -#: src/Mollie/WC/Gateway/BankTransfer.php:235 -msgid "" -"The payment will expire on %s. Please make sure you " -"transfer the total amount before this date." -msgstr "" -"El pago caducará el %s. Por favor, asegúrate de transferir " -"la cantidad total antes de esta fecha." +#: ../src/Shared/Data.php:628 +msgid "Item #%1$s stock incremented from %2$s to %3$s." +msgstr "Las existencias del elemento #%1$s han aumentado de %2$s a %3$s." -#: build/src/Mollie/WC/Gateway/Belfius.php:33 -#: src/Mollie/WC/Gateway/Belfius.php:33 -msgid "Belfius Direct Net" -msgstr "Belfius Direct Net" +#. translators: Placeholder 1: Plugin title. Placeholder 2: Min WooCommerce version. Placeholder 3: WooCommerce version used. +#: ../src/Shared/Status.php:74 +msgid "The %1$s plugin requires at least WooCommerce version %2$s, you are using version %3$s. Please update your WooCommerce plugin." +msgstr "El plugin %1$s necesita al menos la versión %2$s de WooCommerce, tú estás utilizando la versión %3$s. Por favor, actualiza tu plugin de WooCommerce." -#: build/src/Mollie/WC/Gateway/Creditcard.php:84 -#: src/Mollie/WC/Gateway/Creditcard.php:84 -msgid "Credit card" -msgstr "Tarjeta de crédito" +#: ../src/Shared/Status.php:87 +msgid "Mollie API client not installed. Please make sure the plugin is installed correctly." +msgstr "Cliente de API Mollie no instalado. Por favor, asegúrate de que el plugin está instalado correctamente." -#. translators: Placeholder 1: card holder -#: build/src/Mollie/WC/Gateway/Creditcard.php:136 -#: src/Mollie/WC/Gateway/Creditcard.php:136 -msgid "Payment completed by %s" -msgstr "Pago completado por %s" +#: ../src/Shared/Status.php:96 +msgid "Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable it in your server or ask your webhoster to enable it for you." +msgstr "Mollie Payments for WooCommerce requiere la extensión JSON para PHP. Habilítalo en tu servidor o pide a tu proveedor de alojamiento web que lo habilite por ti." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:42 -#: src/Mollie/WC/Gateway/DirectDebit.php:42 -msgid "SEPA Direct Debit" -msgstr "Adeudo directo SEPA" +#. translators: Placeholder 1: Min PHP version. Placeholder 2: PHP version used. Placeholder 3: Opening link tag. placeholder 4: Closing link tag. +#: ../src/Shared/Status.php:111 +msgid "Mollie Payments for WooCommerce require PHP %1$s or higher, you have PHP %2$s. Please upgrade and view %3$sthis FAQ%4$s" +msgstr "Mollie Payments for WooCommerce requiere PHP %1$s o superior; tú tienes PHP %2$s. Por favor, actualiza la versión y consulta %3$sestas P+F%4$s" -#: build/src/Mollie/WC/Gateway/DirectDebit.php:49 -#: src/Mollie/WC/Gateway/DirectDebit.php:49 -msgid "" -"SEPA Direct Debit is used for recurring payments with WooCommerce " -"Subscriptions, and will not be shown in the WooCommerce checkout for regular " -"payments! You also need to enable iDEAL and/or other \"first\" payment " -"methods if you want to use SEPA Direct Debit." -msgstr "" -"El adeudo directo SEPA se utiliza para pagos recurrentes con WooCommerce " -"Subscriptions, y no aparecerá en el proceso de pago en WooCommerce para " -"pagos normales. También necesitas activar iDEAL u otros métodos de pago " -"«primarios» si deseas usar el adeudo directo SEPA." +#: ../src/Shared/Status.php:123 +msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration." +msgstr "Mollie Payments for WooCommerce necesita que la extensión PHP JSON esté habilitada. Por favor, habilita la extensión «json» en tu configuración de PHP." -#: build/src/Mollie/WC/Gateway/EPS.php:29 src/Mollie/WC/Gateway/EPS.php:29 -msgid "EPS" -msgstr "EPS" +#: ../src/Shared/Status.php:130 +msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration." +msgstr "Mollie Payments for WooCommerce necesita que la extensión cURL esté habilitada. Por favor, habilita la extensión «curl» en tu configuración de PHP." -#: build/src/Mollie/WC/Gateway/Giftcard.php:31 -#: src/Mollie/WC/Gateway/Giftcard.php:31 -msgid "Show gift cards dropdown" -msgstr "Mostrar el menú desplegable de tarjetas de regalo" +#: ../src/Shared/Status.php:138 +msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available." +msgstr "Mollie Payments for WooCommerce requiere que las funciones PHP cURL estén disponibles. Asegúrate de que todas estas funciones estén disponibles." -#: build/src/Mollie/WC/Gateway/Giftcard.php:33 -#: src/Mollie/WC/Gateway/Giftcard.php:33 -msgid "" -"If you disable this, a dropdown with various gift cards will not be shown in " -"the WooCommerce checkout, so users will select a gift card on the Mollie " -"payment page after checkout." -msgstr "" -"Si desactivas esto, no se mostrará el menú desplegable con varias tarjetas " -"de regalo en el proceso de pago de WooCommerce, por lo que los usuarios " -"seleccionarán una tarjeta de regalo en la página de pagos de Mollie después " -"del pago." - -#: build/src/Mollie/WC/Gateway/Giftcard.php:37 -#: build/src/Mollie/WC/Gateway/Ideal.php:39 -#: build/src/Mollie/WC/Gateway/Kbc.php:38 src/Mollie/WC/Gateway/Giftcard.php:37 -#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Kbc.php:38 -msgid "Issuers empty option" -msgstr "Entidades emisoras opción vacía" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSepaRecurringGateway.php:136, ../src/Subscription/MollieSubscriptionGateway.php:468 +msgid "%1$s payment started (%2$s)." +msgstr "Pago %1$s iniciado (%2$s)." -#: build/src/Mollie/WC/Gateway/Giftcard.php:39 -#: src/Mollie/WC/Gateway/Giftcard.php:39 -msgid "" -"This text will be displayed as the first option in the gift card dropdown, " -"but only if the above 'Show gift cards dropdown' is enabled." -msgstr "" -"Este texto se mostrará como la primera opción en el menú desplegable de " -"tarjetas de regalo, pero solamente si está activado el menú desplegable " -"anterior «Mostrar menú desplegable de tarjetas de regalo»." +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSubscriptionGateway.php:199 +msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process." +msgstr "Suscripción actualizada de «En espera» a «Activa» hasta que el pago falle, porque un pago de adeudo directo SEPA tarda un tiempo en procesarse." -#: build/src/Mollie/WC/Gateway/Giftcard.php:58 -#: src/Mollie/WC/Gateway/Giftcard.php:58 -msgid "Gift cards" -msgstr "Tarjetas de regalo" +#: ../src/Subscription/MollieSubscriptionGateway.php:299 +msgid "The customer (%s) could not be used or found. " +msgstr "No se ha podido utilizar o encontrar el cliente (%s). " -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Giftcard.php:74 -#: src/Mollie/WC/Gateway/Giftcard.php:74 -msgid "Select your gift card" -msgstr "Selecciona tu tarjeta de regalo" +#: ../src/Subscription/MollieSubscriptionGateway.php:326 +msgid "The customer (%s) does not have a valid mandate." +msgstr "El cliente (%s) no tiene una orden de domiciliación válida." -#: build/src/Mollie/WC/Gateway/Giropay.php:29 -#: src/Mollie/WC/Gateway/Giropay.php:29 -msgid "Giropay" -msgstr "Giropay" +#. translators: Placeholder 1: Payment method title +#: ../src/Subscription/MollieSubscriptionGateway.php:366 +msgid "Could not create %s renewal payment." +msgstr "No se pudo crear el pago de renovación %s." -#: build/src/Mollie/WC/Gateway/Ideal.php:33 src/Mollie/WC/Gateway/Ideal.php:33 -msgid "Show iDEAL banks dropdown" -msgstr "Mostrar menú desplegable de bancos iDEAL" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Subscription/SubscriptionModule.php:106 +msgid "%1$s payment failed (%2$s)." +msgstr "Pago %1$s fallido (%2$s)." -#: build/src/Mollie/WC/Gateway/Ideal.php:35 src/Mollie/WC/Gateway/Ideal.php:35 -msgid "" -"If you disable this, a dropdown with various iDEAL banks will not be shown " -"in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie " -"payment page after checkout." -msgstr "" -"Si desactivas esto, no se mostrará el menú desplegable con varios bancos " -"iDEAL en el proceso de pago de WooCommerce, por lo que los usuarios " -"seleccionarán un banco iDEAL en la página de pagos de Mollie después del " -"pago." +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:42 +msgid "%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sEl servidor no cumple los requisitos de Apple Pay%2$s Comprueba la %3$spágina de requisitos del Apple Server%4$s para corregirlo para que funcione el botón Apple Pay" -#: build/src/Mollie/WC/Gateway/Ideal.php:41 src/Mollie/WC/Gateway/Ideal.php:41 -msgid "" -"This text will be displayed as the first option in the iDEAL issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above 'Show iDEAL banks dropdown' is enabled." -msgstr "" -"Este texto se mostrará como la primera opción en el menú desplegable de " -"entidades emisoras iDEAL; si no se pone nada, se mostrará «Selecciona tu " -"banco». Solamente si está activado el menú desplegable anterior «Mostrar " -"menú desplegable de bancos iDEAL»." +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:58 +msgid "%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sError de validación Apple Pay%2$s Comprueba la %3$spágina de requisitos del Apple Server%4$s para corregirlo para que funcione el botón Apple Pay" -#: build/src/Mollie/WC/Gateway/Ideal.php:60 src/Mollie/WC/Gateway/Ideal.php:60 -msgid "iDEAL" -msgstr "iDEAL" +#: ../src/Gateway/Voucher/VoucherModule.php:78, ../src/Settings/Page/MollieSettingsPage.php:49, ../src/Settings/Page/MollieSettingsPage.php:182 +msgid "Mollie Settings" +msgstr "Estado de Mollie" -#. translators: Default iDEAL description, displayed above issuer drop down -#. translators: Default KBC/CBC dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Ideal.php:76 -#: build/src/Mollie/WC/Gateway/Kbc.php:75 src/Mollie/WC/Gateway/Ideal.php:76 -#: src/Mollie/WC/Gateway/Kbc.php:75 -msgid "Select your bank" -msgstr "Selecciona tu banco" +#: ../src/Gateway/Voucher/VoucherModule.php:108, ../src/Gateway/Voucher/VoucherModule.php:143, ../src/Gateway/Voucher/VoucherModule.php:166 +msgid "Mollie Voucher Category" +msgstr "Categoría de vale Mollie" -#: src/Mollie/WC/Gateway/In3:29 -msgid "in3" -msgstr "in3" +#: ../src/Gateway/Voucher/VoucherModule.php:111, ../src/Gateway/Voucher/VoucherModule.php:145, ../src/Gateway/Voucher/VoucherModule.php:170 +msgid "--Please choose an option--" +msgstr "--Selecciona una opción--" -#: build/src/Mollie/WC/Gateway/Kbc.php:32 src/Mollie/WC/Gateway/Kbc.php:32 -msgid "Show KBC/CBC banks dropdown" -msgstr "Mostrar menú desplegable de bancos KBC/CBC" +#: ../src/Gateway/Voucher/VoucherModule.php:112, ../src/Gateway/Voucher/VoucherModule.php:146, ../src/Gateway/Voucher/VoucherModule.php:175, ../src/Gateway/Voucher/VoucherModule.php:232, ../src/Gateway/Voucher/VoucherModule.php:292 +msgid "No Category" +msgstr "Sin categoría" -#: build/src/Mollie/WC/Gateway/Kbc.php:34 src/Mollie/WC/Gateway/Kbc.php:34 -msgid "" -"If you disable this, a dropdown with various KBC/CBC banks will not be shown " -"in the WooCommerce checkout, so users will select a KBC/CBC bank on the " -"Mollie payment page after checkout." -msgstr "" -"Si desactivas esto, no se mostrará el menú desplegable con varios bancos KBC/" -"CBC en el proceso de pago de WooCommerce, por lo que los usuarios " -"seleccionarán un banco KBC/CBC en la página de pagos de Mollie después del " -"pago." +#: ../src/Gateway/Voucher/VoucherModule.php:151, ../src/Gateway/Voucher/VoucherModule.php:188 +msgid "Select a voucher category to apply to all products with this category" +msgstr "Selecciona una categoría de vale que será aplicada en todos los productos de esta categoría" -#: build/src/Mollie/WC/Gateway/Kbc.php:40 src/Mollie/WC/Gateway/Kbc.php:40 -msgid "" -"This text will be displayed as the first option in the KBC/CBC issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above ''Show KBC/CBC banks dropdown' is enabled." -msgstr "" -"Este texto se mostrará como la primera opción en el menú desplegable de " -"entidades emisoras KBC/CBC; si no se pone nada, se mostrará «Selecciona tu " -"banco». Solamente si está activado el menú desplegable anterior «Mostrar " -"menú desplegable de bancos KBC/CBC»." +#: ../src/Gateway/Voucher/VoucherModule.php:224 +msgid "Products voucher category" +msgstr "Categoría de vale de productos" -#: build/src/Mollie/WC/Gateway/Kbc.php:59 src/Mollie/WC/Gateway/Kbc.php:59 -msgid "KBC/CBC Payment Button" -msgstr "Botón de pago KBC/CBC" +#: ../src/Gateway/Voucher/VoucherModule.php:231, ../src/Gateway/Voucher/VoucherModule.php:291 +msgid "Same as default category" +msgstr "Igual que la categoría por defecto" -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -msgid "Klarna Pay later" -msgstr "Klarna Pay later" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Gateway/Voucher/VoucherModule.php:241 +msgid "In order to process it, all products in the order must have a category. To disable the product from voucher selection select \"No category\" option." +msgstr "Para poder procesar el pedido, todos los productos deben tener una categoría. Selecciona la opción «Sin categoría» para deshabilitar el producto de la selección del vale." -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -msgid "" -"To accept payments via Klarna, all default WooCommerce checkout fields " -"should be enabled and required." -msgstr "" -"Para aceptar los pagos vía Klarna, todos los campos predeterminados del " -"proceso de pago de WooCommerce deben estar habilitados y ser obligatorios." +#: ../src/Gateway/Voucher/VoucherModule.php:288 +msgid "Mollie Voucher category" +msgstr "Categoría de vale Mollie" -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -msgid "Klarna Pay now" -msgstr "Klarna Pay now" +#: ../src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (Apple Pay transaction ID: %3$s)" +msgstr "Pago completado por %1$s - %2$s (ID de transacción Apple Pay: %3$s)" -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -msgid "Klarna Slice it" -msgstr "Klarna Slice it" +#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:26, ../src/PaymentMethods/InstructionStrategies/DirectdebitInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/IdealInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/SofortInstructionStrategy.php:20 +msgid "Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" +msgstr "Pago completado por %1$s (IBAN (últimos 4 dígitos): %2$s, BIC: %3$s)." -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: build/src/Mollie/WC/Plugin.php:508 src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: src/Mollie/WC/Plugin.php:508 -msgid "Select the default products category" -msgstr "Selecciona la categoría de productos por defecto" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:35 +msgid "Please complete your payment by transferring the total amount to the following bank account:" +msgstr "Por favor, completa tu pago transfiriendo la cantidad total a la siguiente cuenta bancaria:" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:46 -#: src/Mollie/WC/Gateway/Mealvoucher.php:46 -msgid "" -"In order to process it, all products in the order must have a category. This " -"selector will assign the default category for the shop products" -msgstr "" -"Para poder procesar el pedido, todos los productos deben tener una " -"categoría. Este selector asignará la categoría por defecto para los " -"productos de la tienda" +#. translators: Placeholder 1: 'Stichting Mollie Payments' +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:39 +msgid "Beneficiary: %s" +msgstr "Beneficiario: %s" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:66 -#: src/Mollie/WC/Gateway/Mealvoucher.php:66 -msgid "Voucher" -msgstr "Vale" +#. translators: Placeholder 1: Payment details bank account +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:41 +msgid "IBAN: %s" +msgstr "IBAN: %s" -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:82 -#: src/Mollie/WC/Gateway/Mealvoucher.php:82 -msgid "voucher" -msgstr "vale" +#. translators: Placeholder 1: Payment details bic +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:43 +msgid "BIC: %s" +msgstr "BIC: %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:36 -#: src/Mollie/WC/Gateway/MyBank.php:36 -msgid "MyBank" -msgstr "MyBank" +#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:50 +msgid "Please provide the payment reference %s" +msgstr "Por favor, indica la referencia del pago %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:44 -#: src/Mollie/WC/Gateway/MyBank.php:44 -msgid "To accept payments via MyBank" -msgstr "Para aceptar pagos mediante MyBank" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:47 +msgid "Payment reference: %s" +msgstr "Referencia del pago: %s" -#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer Account number -#: build/src/Mollie/WC/Gateway/MyBank.php:73 -#: src/Mollie/WC/Gateway/MyBank.php:73 -msgid "Payment completed by %1$s - %2$s" -msgstr "Pago completado por %1$s - %2$s" +#. translators: Placeholder 1: Payment expiry date +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:66 +msgid "The payment will expire on %s. Please make sure you transfer the total amount before this date." +msgstr "El pago caducará el %s. Por favor, asegúrate de transferir la cantidad total antes de esta fecha." -#: build/src/Mollie/WC/Gateway/PayPal.php:43 -#: src/Mollie/WC/Gateway/PayPal.php:43 -msgid "PayPal" -msgstr "PayPal" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:60 +msgid "The payment will expire on %s." +msgstr "El pago caducará el %s." -#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID -#: build/src/Mollie/WC/Gateway/PayPal.php:74 -#: build/src/Mollie/WC/Payment/Object.php:695 -#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695 -msgid "" -"Payment completed by %s - %s (PayPal transaction ID: %s)" -msgstr "" -"Pago completado por %s - %s (ID de transacción PayPal: %s)" +#. translators: Placeholder 1: card holder +#: ../src/PaymentMethods/InstructionStrategies/CreditcardInstructionStrategy.php:20 +msgid "Payment completed by %s" +msgstr "Pago completado por %s" -#: build/src/Mollie/WC/Gateway/Paysafecard.php:20 -#: src/Mollie/WC/Gateway/Paysafecard.php:20 -msgid "paysafecard" -msgstr "paysafecard" +#. translators: Placeholder 1: payment method +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:34 +msgid "Payment completed with %s" +msgstr "Pago completado con %s" -#: build/src/Mollie/WC/Gateway/Przelewy24.php:33 -#: src/Mollie/WC/Gateway/Przelewy24.php:33 -msgid "Przelewy24" -msgstr "Przelewy24" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:26 +msgid "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant." +msgstr "No hemos recibido un estado de pago definitivo. Recibirás un correo electrónico tan pronto como recibamos una confirmación del banco/comerciante." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:40 -#: src/Mollie/WC/Gateway/Przelewy24.php:40 -msgid "" -"To accept payments via Przelewy24, a customer email is required for every " -"payment." -msgstr "" -"Para aceptar pagos mediante Przelewy24, se requiere un correo electrónico " -"del cliente para cada pago." +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:20 +msgid "We have not received a definite payment status." +msgstr "No hemos recibido un estado de pago definitivo." + +#: ../src/PaymentMethods/InstructionStrategies/MybankInstructionStrategy.php:19 +msgid "Payment completed by %1$s - %2$s" +msgstr "Pago completado por %1$s - %2$s" #. translators: Placeholder 1: customer billing email -#: build/src/Mollie/WC/Gateway/Przelewy24.php:64 -#: src/Mollie/WC/Gateway/Przelewy24.php:64 +#: ../src/PaymentMethods/InstructionStrategies/Przelewy24InstructionStrategy.php:20 msgid "Payment completed by %s." msgstr "Pago completado por %s." -#: build/src/Mollie/WC/Gateway/Sofort.php:33 -#: src/Mollie/WC/Gateway/Sofort.php:33 -msgid "SOFORT Banking" -msgstr "SOFORT Banking" - -#: build/src/Mollie/WC/Helper/Api.php:40 src/Mollie/WC/Helper/Api.php:40 -msgid "No API key provided. Please set your Mollie API keys below." -msgstr "" -"Ninguna clave de API proporcionada. Configura tus claves de API de Mollie " -"abajo." - -#: build/src/Mollie/WC/Helper/Api.php:42 src/Mollie/WC/Helper/Api.php:42 -msgid "" -"Invalid API key(s). Get them on the %sDevelopers page in the Mollie dashboard" -"%s. The API key(s) must start with 'live_' or 'test_', be at least 30 " -"characters and must not contain any special characters." -msgstr "" -"Clave(s) de API no válida(s). Puedes obtenerlas en la página de " -"desarrolladores %sen el panel de Mollie%s. La(s) clave(s) de API debe(n) " -"empezar con 'live_' o 'test_', tener como mínimo 30 caracteres y no contener " -"ningún carácter especial." - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -msgid "" -"%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server " -"requirements page%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sEl servidor no cumple los requisitos de Apple Pay%2$s Comprueba la " -"%3$spágina de requisitos del Apple Server%4$s para corregirlo para que " -"funcione el botón Apple Pay" - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -msgid "" -"%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page" -"%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sError de validación Apple Pay%2$s Comprueba la %3$spágina de requisitos " -"del Apple Server%4$s para corregirlo para que funcione el botón Apple Pay" +#. translators: Placeholder 1: Lock icon. Placeholder 2: Mollie logo. +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:25 +msgid "%1$s Secure payments provided by %2$s" +msgstr "%1$s Pagos seguros ofrecidos por %2$s" -#: build/src/Mollie/WC/Helper/OrderLines.php:499 -#: src/Mollie/WC/Helper/OrderLines.php:499 -msgid "Shipping" -msgstr "Envío" +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:41 +msgid "Secure payments provided by" +msgstr "Pagos seguros ofrecidos por" -#: build/src/Mollie/WC/Helper/Settings.php:61 -#: src/Mollie/WC/Helper/Settings.php:61 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:34 msgid "%s display settings" msgstr "%s ajustes de visualización" -#: build/src/Mollie/WC/Helper/Settings.php:99 -#: src/Mollie/WC/Helper/Settings.php:99 +#: ../src/Settings/General/MollieGeneralSettings.php:71 msgid "Display logo on checkout page. Default enabled" -msgstr "" -"Mostrar logotipo en la página de pago. Por defecto activado" +msgstr "Mostrar logotipo en la página de pago. Por defecto activado" -#: build/src/Mollie/WC/Helper/Settings.php:107 -#: src/Mollie/WC/Helper/Settings.php:107 +#: ../src/Settings/General/MollieGeneralSettings.php:79 msgid "Sales countries" msgstr "Países de venta" -#: build/src/Mollie/WC/Helper/Settings.php:125 -#: src/Mollie/WC/Helper/Settings.php:125 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:99 msgid "%s custom logo" msgstr "%s logotipo personalizado" -#: build/src/Mollie/WC/Helper/Settings.php:132 -#: src/Mollie/WC/Helper/Settings.php:132 +#: ../src/Settings/General/MollieGeneralSettings.php:103 msgid "Enable custom logo" msgstr "Activar logotipo personalizado" -#: build/src/Mollie/WC/Helper/Settings.php:137 -#: src/Mollie/WC/Helper/Settings.php:137 -msgid "" -"Enable the feature to add a custom logo for this gateway. This feature will " -"have precedence over other logo options." -msgstr "" -"Activa la función para añadir un logotipo personalizado para esta pasarela. " -"Esta función tendrá preferencia ante otras opciones de logotipo." +#: ../src/Settings/General/MollieGeneralSettings.php:109 +msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options." +msgstr "Activa la función para añadir un logotipo personalizado para esta pasarela. Esta función tendrá preferencia ante otras opciones de logotipo." -#: build/src/Mollie/WC/Helper/Settings.php:143 -#: src/Mollie/WC/Helper/Settings.php:143 +#: ../src/Settings/General/MollieGeneralSettings.php:115 msgid "Upload custom logo" msgstr "Cargar logotipo personalizado" -#: build/src/Mollie/WC/Helper/Settings.php:150 -#: src/Mollie/WC/Helper/Settings.php:150 +#: ../src/Settings/General/MollieGeneralSettings.php:123 msgid "Upload a custom icon for this gateway. The feature must be enabled." -msgstr "" -"Carga un icono personalizado para esta pasarela. La función debe estar " -"activada." +msgstr "Carga un icono personalizado para esta pasarela. La función debe estar activada." -#: build/src/Mollie/WC/Helper/Settings.php:159 -#: src/Mollie/WC/Helper/Settings.php:159 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:134 msgid "%s surcharge" msgstr "%s recargo" -#: build/src/Mollie/WC/Helper/Settings.php:166 -#: src/Mollie/WC/Helper/Settings.php:166 +#: ../src/Settings/General/MollieGeneralSettings.php:139 msgid "Payment Surcharge" msgstr "Recargo de pago" -#: build/src/Mollie/WC/Helper/Settings.php:172 -#: src/Mollie/WC/Helper/Settings.php:172 +#: ../src/Settings/General/MollieGeneralSettings.php:145 msgid "No fee" msgstr "Sin cuota" -#: build/src/Mollie/WC/Helper/Settings.php:176 -#: src/Mollie/WC/Helper/Settings.php:176 +#: ../src/Settings/General/MollieGeneralSettings.php:149 msgid "Fixed fee" msgstr "Cuota fija" -#: build/src/Mollie/WC/Helper/Settings.php:180 -#: src/Mollie/WC/Helper/Settings.php:180 +#: ../src/Settings/General/MollieGeneralSettings.php:153 msgid "Percentage" msgstr "Porcentaje" -#: build/src/Mollie/WC/Helper/Settings.php:184 -#: src/Mollie/WC/Helper/Settings.php:184 +#: ../src/Settings/General/MollieGeneralSettings.php:157 msgid "Fixed fee and percentage" msgstr "Cuota fija y porcentaje" -#: build/src/Mollie/WC/Helper/Settings.php:190 -#: src/Mollie/WC/Helper/Settings.php:190 +#: ../src/Settings/General/MollieGeneralSettings.php:163 msgid "Choose a payment surcharge for this gateway" msgstr "Selecciona un recargo de pago para esta pasarela" -#: build/src/Mollie/WC/Helper/Settings.php:197 -#: src/Mollie/WC/Helper/Settings.php:197 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:172 msgid "Payment surcharge fixed amount in %s" msgstr "Importe fijo de recargo de pago en %s" -#: build/src/Mollie/WC/Helper/Settings.php:200 -#: src/Mollie/WC/Helper/Settings.php:200 +#: ../src/Settings/General/MollieGeneralSettings.php:176 msgid "Control the fee added on checkout. Default 0.00" msgstr "Controla la cuota que se añade en el proceso de pago. Por defecto 0,00" -#: build/src/Mollie/WC/Helper/Settings.php:210 -#: src/Mollie/WC/Helper/Settings.php:210 +#: ../src/Settings/General/MollieGeneralSettings.php:186 msgid "Payment surcharge percentage amount %" msgstr "Porcentaje recargo de pago %" -#: build/src/Mollie/WC/Helper/Settings.php:213 -#: src/Mollie/WC/Helper/Settings.php:213 -msgid "Control the percentage fee added on checkout. Default 0.00" -msgstr "" -"Controla la cuota porcentual que se añade en el proceso de pago. Por defecto " -"0,00" - -#: build/src/Mollie/WC/Helper/Settings.php:223 -#: src/Mollie/WC/Helper/Settings.php:223 -msgid "Payment surcharge limit in %s" -msgstr "Límite de recargo de pago en %s" - -#: build/src/Mollie/WC/Helper/Settings.php:226 -#: src/Mollie/WC/Helper/Settings.php:226 -msgid "Limit the maximum fee added on checkout. Default 0, means no limit" -msgstr "" -"Limita la cuota máxima que se añade en el proceso de pago. Por defecto 0, es " -"decir, sin límite" - -#: build/src/Mollie/WC/Helper/Settings.php:236 -#: src/Mollie/WC/Helper/Settings.php:236 -msgid "Surcharge only under this limit, in %s" -msgstr "Recargo solo por debajo de este límite, en %s" - -#: build/src/Mollie/WC/Helper/Settings.php:239 -#: src/Mollie/WC/Helper/Settings.php:239 -msgid "" -"Maximum order amount to apply surcharge. If the order is above this number " -"the surcharge will not apply. Default 0, means no maximum" -msgstr "" -"Importe máximo del pedido para aplicar un recargo. Si el pedido supera este " -"importe, no se aplicará el recargo. Por defecto 0, es decir, sin máximo" - -#: build/src/Mollie/WC/Helper/Settings.php:250 -#: src/Mollie/WC/Helper/Settings.php:250 -msgid "%s advanced" -msgstr "%s avanzado" - -#: build/src/Mollie/WC/Helper/Settings.php:259 -#: src/Mollie/WC/Helper/Settings.php:259 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the order will expire." -msgstr "" -"Activa esta opción si quieres poder ajustar el número de días al cabo de los " -"cuales caducará el pedido." - -#: build/src/Mollie/WC/Helper/Settings.php:267 -#: src/Mollie/WC/Helper/Settings.php:267 -msgid "" -"Number of MINUTES after the order will expire and will be canceled at Mollie " -"and WooCommerce. A value of 0 means no expiry date will be considered." -msgstr "" -"Número de MINUTOS al cabo de los cuales el pedido caducará y será cancelado " -"en Mollie y WooCommerce. Un valor de 0 significa que no se tendrá en cuenta " -"ninguna fecha de caducidad." - -#: build/src/Mollie/WC/Helper/Settings.php:280 -#: src/Mollie/WC/Helper/Settings.php:280 -msgid "Initial order status" -msgstr "Estado inicial del pedido" - -#: build/src/Mollie/WC/Helper/Settings.php:299 -#: src/Mollie/WC/Helper/Settings.php:299 -msgid "" -"Some payment methods take longer than a few hours to complete. The initial " -"order state is then set to '%s'. This ensures the order is not cancelled " -"when the setting %s is used." -msgstr "" -"Algunos métodos de pago tardan algunas horas en completarse. El estado " -"inicial del pedido se establece entonces a '%s'. Esto asegura que el pedido " -"no se cancele cuando se usa el ajuste %s." +#: ../src/Settings/General/MollieGeneralSettings.php:189 +msgid "Control the percentage fee added on checkout. Default 0.00" +msgstr "Controla la cuota porcentual que se añade en el proceso de pago. Por defecto 0,00" -#: build/src/Mollie/WC/Helper/Settings.php:494 -#: src/Mollie/WC/Helper/Settings.php:494 -msgid "Error" -msgstr "Error" +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:200 +msgid "Payment surcharge limit in %s" +msgstr "Límite de recargo de pago en %s" -#: build/src/Mollie/WC/Helper/Settings.php:507 -#: src/Mollie/WC/Helper/Settings.php:507 -msgid "Mollie status:" -msgstr "Estado de Mollie:" +#: ../src/Settings/General/MollieGeneralSettings.php:203 +msgid "Limit the maximum fee added on checkout. Default 0, means no limit" +msgstr "Limita la cuota máxima que se añade en el proceso de pago. Por defecto 0, es decir, sin límite" -#: build/src/Mollie/WC/Helper/Settings.php:508 -#: src/Mollie/WC/Helper/Settings.php:508 -msgid "Connected" -msgstr "Conectado" +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:214 +msgid "Surcharge only under this limit, in %s" +msgstr "Recargo solo por debajo de este límite, en %s" -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: src/Mollie/WC/Helper/Settings.php:551 -msgid "Gateway enabled" -msgstr "Pasarela activada" +#: ../src/Settings/General/MollieGeneralSettings.php:217 +msgid "Maximum order amount to apply surcharge. If the order is above this number the surcharge will not apply. Default 0, means no maximum" +msgstr "Importe máximo del pedido para aplicar un recargo. Si el pedido supera este importe, no se aplicará el recargo. Por defecto 0, es decir, sin máximo" -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Gateway disabled" -msgstr "Pasarela desactivada" +#. translators: Placeholder 1: gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:230 +msgid "%s advanced" +msgstr "%s avanzado" -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Disabled" -msgstr "Desactivado" +#: ../src/Settings/General/MollieGeneralSettings.php:237 +msgid "Enable this option if you want to be able to set the time after which the order will expire." +msgstr "Activa esta opción si quieres poder ajustar el tiempo al cabo del cual caducará el pedido." -#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:563 -#: src/Mollie/WC/Helper/Settings.php:563 -msgid "The following payment methods are activated in your %sMollie profile%s:" -msgstr "" -"Los siguientes métodos de pago están activados en tu %sperfil de Mollie%s:" +#: ../src/Settings/General/MollieGeneralSettings.php:245 +msgid "Number of MINUTES after the order will expire and will be canceled at Mollie and WooCommerce. A value of 0 means no expiry time will be considered." +msgstr "Número de MINUTOS al cabo de los cuales el pedido caducará y será cancelado en Mollie y WooCommerce. Un valor de 0 significa que no se tendrá en cuenta ningún tiempo de caducidad." -#: build/src/Mollie/WC/Helper/Settings.php:572 -#: src/Mollie/WC/Helper/Settings.php:572 -msgid "Refresh" -msgstr "Actualizar" +#: ../src/Settings/General/MollieGeneralSettings.php:258 +msgid "Initial order status" +msgstr "Estado inicial del pedido" -#: build/src/Mollie/WC/Helper/Settings.php:591 -#: src/Mollie/WC/Helper/Settings.php:591 -msgid "Edit" -msgstr "Editar" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Settings/General/MollieGeneralSettings.php:277 +msgid "Some payment methods take longer than a few hours to complete. The initial order state is then set to '%1$s'. This ensures the order is not cancelled when the setting %2$s is used." +msgstr "Algunos métodos de pago tardan algunas horas en completarse. El estado inicial del pedido se establece entonces a '%1$s'. Esto asegura que el pedido no se cancele cuando se usa el ajuste %2$s." -#: build/src/Mollie/WC/Helper/Settings.php:624 -#: src/Mollie/WC/Helper/Settings.php:624 -msgid "" -"Quickly integrate all major payment methods in WooCommerce, wherever you " -"need them." -msgstr "" -"Integra rápidamente todos los métodos de pago principales en WooCommerce, " -"donde sea que los necesites." +#: ../src/Settings/General/MollieGeneralSettings.php:286 +msgid "Hold Stock (minutes)" +msgstr "Mantener el stock (en minutos)" -#: build/src/Mollie/WC/Helper/Settings.php:625 -#: src/Mollie/WC/Helper/Settings.php:625 -msgid "" -" Simply drop them ready-made into your WooCommerce webshop with this " -"powerful plugin by Mollie." -msgstr "" -" Con este potente plugin de Mollie simplemente puedes colocarlos listos para " -"usar en tu tienda online WooCommerce." +#: ../src/Settings/Page/MollieSettingsPage.php:111 +msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them." +msgstr "Integra rápidamente todos los métodos de pago principales en WooCommerce, donde sea que los necesites." -#: build/src/Mollie/WC/Helper/Settings.php:626 -#: src/Mollie/WC/Helper/Settings.php:626 +#: ../src/Settings/Page/MollieSettingsPage.php:115 +msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie." +msgstr " Con este potente plugin de Mollie simplemente puedes colocarlos listos para usar en tu tienda online WooCommerce." + +#: ../src/Settings/Page/MollieSettingsPage.php:119 msgid " Mollie is dedicated to making payments better for WooCommerce. " msgstr " Mollie se dedica a mejorar los pagos para WooCommerce. " -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:123 msgid "Please go to" msgstr "Por favor, ve a la" -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:126 msgid " the signup page" msgstr " página de registro" -#: build/src/Mollie/WC/Helper/Settings.php:628 -#: src/Mollie/WC/Helper/Settings.php:628 -msgid "" -" to create a new Mollie account and start receiving payments in a couple of " -"minutes. " -msgstr "" -" para crear una nueva cuenta Mollie y empezar a recibir pagos en unos " -"minutos " +#: ../src/Settings/Page/MollieSettingsPage.php:130 +msgid " to create a new Mollie account and start receiving payments in a couple of minutes. " +msgstr " para crear una nueva cuenta Mollie y empezar a recibir pagos en unos minutos " -#: build/src/Mollie/WC/Helper/Settings.php:629 -#: src/Mollie/WC/Helper/Settings.php:629 +#: ../src/Settings/Page/MollieSettingsPage.php:134 msgid "Contact " msgstr "Contacto " -#: build/src/Mollie/WC/Helper/Settings.php:630 -#: src/Mollie/WC/Helper/Settings.php:630 +#: ../src/Settings/Page/MollieSettingsPage.php:138 msgid " if you have any questions or comments about this plugin." msgstr " si tienes alguna pregunta o comentario acerca de este plugin." -#: build/src/Mollie/WC/Helper/Settings.php:631 -#: src/Mollie/WC/Helper/Settings.php:631 -msgid "" -"Our pricing is always per transaction. No startup fees, no monthly fees, and " -"no gateway fees. No hidden fees, period." -msgstr "" -"Nuestros precios siempre son por transacción. Sin cuotas de inicio, sin " -"cuotas mensuales y sin cuotas de pasarela. Sin cargos ocultos, así de simple." +#: ../src/Settings/Page/MollieSettingsPage.php:142 +msgid "Our pricing is always per transaction. No startup fees, no monthly fees, and no gateway fees. No hidden fees, period." +msgstr "Nuestros precios siempre son por transacción. Sin cuotas de inicio, sin cuotas mensuales y sin cuotas de pasarela. Sin cargos ocultos, así de simple." -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:148 msgid "Plugin Documentation" msgstr "Plugin documentación" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:151 msgid "Contact Support" msgstr "Contactar asistencia técnica" -#: build/src/Mollie/WC/Helper/Settings.php:644 -#: src/Mollie/WC/Helper/Settings.php:644 +#: ../src/Settings/Page/MollieSettingsPage.php:163 msgid "Log plugin events." msgstr "Registro de eventos del plugin." -#: build/src/Mollie/WC/Helper/Settings.php:650 -#: src/Mollie/WC/Helper/Settings.php:650 +#. translators: Placeholder 1: Location of the log files +#: ../src/Settings/Page/MollieSettingsPage.php:170 msgid "Log files are saved to %s" msgstr "Los archivos de registro se guardan en %s" -#: build/src/Mollie/WC/Helper/Settings.php:663 -#: build/src/Mollie/WC/Plugin.php:379 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:11 -#: src/Mollie/WC/Helper/Settings.php:663 src/Mollie/WC/Plugin.php:379 -#: src/Mollie/WC/Settings/Page/Mollie.php:11 -msgid "Mollie Settings" -msgstr "Estado de Mollie" - -#: build/src/Mollie/WC/Helper/Settings.php:670 -#: src/Mollie/WC/Helper/Settings.php:670 +#: ../src/Settings/Page/MollieSettingsPage.php:192 msgid "Live API key" msgstr "Clave de API activa" #. translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:675 -#: build/src/Mollie/WC/Helper/Settings.php:697 -#: src/Mollie/WC/Helper/Settings.php:675 src/Mollie/WC/Helper/Settings.php:697 -msgid "" -"The API key is used to connect to Mollie. You can find your %s API key in your %sMollie profile%s" -msgstr "" -"La clave de API se usa para conectarse a Mollie. Puedes encontrar tu clave " -"de API %s en tu %sperfil de Mollie%s" +#: ../src/Settings/Page/MollieSettingsPage.php:197, ../src/Settings/Page/MollieSettingsPage.php:230 +msgid "The API key is used to connect to Mollie. You can find your %1$s API key in your %2$sMollie account%3$s" +msgstr "La clave de API se usa para conectarse a Mollie. Puedes encontrar tu clave de API %1$s en tu %2$scuenta de Mollie%3$s" -#: build/src/Mollie/WC/Helper/Settings.php:681 -#: src/Mollie/WC/Helper/Settings.php:681 +#: ../src/Settings/Page/MollieSettingsPage.php:208 msgid "Live API key should start with live_" msgstr "La clave de API activa debería comenzar con live_" -#: build/src/Mollie/WC/Helper/Settings.php:685 -#: src/Mollie/WC/Helper/Settings.php:685 +#: ../src/Settings/Page/MollieSettingsPage.php:215 msgid "Enable test mode" msgstr "Activar modo de prueba" -#: build/src/Mollie/WC/Helper/Settings.php:688 -#: src/Mollie/WC/Helper/Settings.php:688 -msgid "" -"Enable test mode if you want to test the plugin without using real payments." -msgstr "" -"Activa el modo de prueba si deseas probar el plugin sin usar pagos reales." +#: ../src/Settings/Page/MollieSettingsPage.php:218 +msgid "Enable test mode if you want to test the plugin without using real payments." +msgstr "Activa el modo de prueba si deseas probar el plugin sin usar pagos reales." -#: build/src/Mollie/WC/Helper/Settings.php:692 -#: src/Mollie/WC/Helper/Settings.php:692 +#: ../src/Settings/Page/MollieSettingsPage.php:225 msgid "Test API key" msgstr "Clave de API de prueba" -#: build/src/Mollie/WC/Helper/Settings.php:703 -#: src/Mollie/WC/Helper/Settings.php:703 +#: ../src/Settings/Page/MollieSettingsPage.php:241 msgid "Test API key should start with test_" msgstr "La clave de API de prueba debe comenzar con test_" -#: build/src/Mollie/WC/Helper/Settings.php:707 -#: src/Mollie/WC/Helper/Settings.php:707 +#: ../src/Settings/Page/MollieSettingsPage.php:248 msgid "Debug Log" msgstr "Registro de depuración" -#: build/src/Mollie/WC/Helper/Settings.php:810 -#: src/Mollie/WC/Helper/Settings.php:810 -msgid "" -"You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. " -"Enable SEPA Direct Debit if you want to allow customers to pay subscriptions " -"with iDEAL and/or other \"first\" payment methods." -msgstr "" -"Tienes WooCommerce Subscriptions activado, pero no el adeudo directo SEPA. " -"Activa el adeudo directo SEPA si quieres permitir a los clientes pagar " -"suscripciones con iDEAL u otro método de pago «primario»." - -#: build/src/Mollie/WC/Helper/Settings.php:834 -#: src/Mollie/WC/Helper/Settings.php:834 -msgid "" -"You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway " -"enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via " -"Mollie and disabling the default WooCommerce BACS payment gateway to prevent " -"possible conflicts." -msgstr "" -"Tienes la pasarela de pago por defecto de WooCommerce Direct Bank Transfer " -"(BACS) habilitada en WooCommerce. Mollie recomienda encarecidamente usar " -"únicamente la transferencia bancaria vía Mollie y deshabilitar la pasarela " -"de pago por defecto WooCommerce BACS para evitar posibles conflictos." - -#: build/src/Mollie/WC/Helper/Settings.php:855 -#: src/Mollie/WC/Helper/Settings.php:855 -msgid "" -"You have activated Klarna. To accept payments, please make sure all default " -"WooCommerce checkout fields are enabled and required. For more information, " -"go to %1sKlarna Pay Later documentation%2s or %3sKlarna Slice it " -"documentation%4s" -msgstr "" -"Has activado Klarna. Para aceptar pagos, asegúrate de que todos los campos " -"predeterminados del proceso de pago de WooCommerce están activados y son " -"obligatorios. Para más información, ve a la %1sdocumentación Klarna Pay Later" -"%2s o la %3sdocumentación Klarna Slice it%4s" - -#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce version, placeholder 3: used WooCommerce version -#: build/src/Mollie/WC/Helper/Status.php:67 src/Mollie/WC/Helper/Status.php:67 -msgid "" -"The %s plugin requires at least WooCommerce version %s, you are using " -"version %s. Please update your WooCommerce plugin." -msgstr "" -"El plugin %s necesita al menos la versión %s de WooCommerce, tú estás " -"utilizando la versión %s. Por favor, actualiza tu plugin de WooCommerce." - -#: build/src/Mollie/WC/Helper/Status.php:80 src/Mollie/WC/Helper/Status.php:80 -msgid "" -"Mollie API client not installed. Please make sure the plugin is installed " -"correctly." -msgstr "" -"Cliente de API Mollie no instalado. Por favor, asegúrate de que el plugin " -"está instalado correctamente." - -#: build/src/Mollie/WC/Helper/Status.php:89 src/Mollie/WC/Helper/Status.php:89 -msgid "" -"Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable " -"it in your server or ask your webhoster to enable it for you." -msgstr "" -"Mollie Payments for WooCommerce requiere la extensión JSON para PHP. " -"Habilítalo en tu servidor o pide a tu proveedor de alojamiento web que lo " -"habilite por ti." - -#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP version -#: build/src/Mollie/WC/Helper/Status.php:104 -#: src/Mollie/WC/Helper/Status.php:104 -msgid "" -"Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. " -"Please upgrade and view %sthis FAQ%s" -msgstr "" -"Mollie Payments for WooCommerce requiere PHP %s o superior; tú tienes PHP " -"%s. Por favor, actualiza la versión y consulta %sestas P+F%s" - -#: build/src/Mollie/WC/Helper/Status.php:116 -#: src/Mollie/WC/Helper/Status.php:116 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension JSON to be " -"enabled. Please enable the 'json' extension in your PHP configuration." -msgstr "" -"Mollie Payments for WooCommerce necesita que la extensión PHP JSON esté " -"habilitada. Por favor, habilita la extensión «json» en tu configuración de " -"PHP." - -#: build/src/Mollie/WC/Helper/Status.php:123 -#: src/Mollie/WC/Helper/Status.php:123 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension cURL to be " -"enabled. Please enable the 'curl' extension in your PHP configuration." -msgstr "" -"Mollie Payments for WooCommerce necesita que la extensión cURL esté " -"habilitada. Por favor, habilita la extensión «curl» en tu configuración de " -"PHP." - -#: build/src/Mollie/WC/Helper/Status.php:131 -#: src/Mollie/WC/Helper/Status.php:131 -msgid "" -"Mollie Payments for WooCommerce require PHP cURL functions to be available. " -"Please make sure all of these functions are available." -msgstr "" -"Mollie Payments for WooCommerce requiere que las funciones PHP cURL estén " -"disponibles. Asegúrate de que todas estas funciones estén disponibles." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:603 -#: src/Mollie/WC/Payment/Object.php:603 -msgid "" -"%s renewal payment failed via Mollie (%s). You will need to manually review " -"the payment and adjust product stocks if you use them." -msgstr "" -"Pago de renovación %s fallido vía Mollie (%s). Deberás revisar manualmente " -"el pago y ajustar las existencias de productos si las usas." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:637 -#: src/Mollie/WC/Payment/Object.php:637 -msgid "%s payment failed via Mollie (%s)." -msgstr "Pago %s fallido vía Mollie (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:677 -#: src/Mollie/WC/Payment/Object.php:677 -msgid "" -"Mollie webhook called, but payment also started via %s, so the order status " -"is not updated." -msgstr "" -"Se ha llamado al webhook de Mollie, pero el pago también se ha iniciado vía " -"%s, de modo que el estado de pedido no se ha actualizado." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:262 -#: build/src/Mollie/WC/Payment/Payment.php:247 -#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:247 -msgid "Order completed using %s payment (%s)." -msgstr "Pedido completado usando el pago %s (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:314 -#: src/Mollie/WC/Payment/Order.php:314 -msgid "" -"Order authorized using %s payment (%s). Set order to completed in " -"WooCommerce when you have shipped the products, to capture the payment. Do " -"this within 28 days, or the order will expire. To handle individual order " -"lines, process the order via the Mollie Dashboard." -msgstr "" -"Pedido autorizado mediante pago %s (%s). Marca el pedido como completado en " -"WooCommerce cuando hayas enviado los productos para capturar el pago. Debes " -"hacerlo en un plazo de 28 días o el pedido caducará. Para administrar líneas " -"de pedido individuales, procesa el pedido mediante el panel de Mollie." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:361 -#: src/Mollie/WC/Payment/Order.php:361 -msgid "" -"Order completed at Mollie for %s order (%s). At least one order line " -"completed. Remember: Completed status for an order at Mollie is not the same " -"as Completed status in WooCommerce!" -msgstr "" -"Pedido completado en Mollie para pedido %s (%s). Al menos una línea de " -"pedido completada. Recuerda: ¡el estado «Completado» para un pedido en " -"Mollie no significa lo mismo que el estado «Completado» en WooCommerce!" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:444 -#: src/Mollie/WC/Payment/Order.php:444 -msgid "%s order (%s) cancelled ." -msgstr "Pedido %s (%s) cancelado." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:509 -#: src/Mollie/WC/Payment/Order.php:509 -msgid "" -"%s order expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"Pedido %s caducado (%s) pero no cancelado a causa de otro pago pendiente " -"(%s)." - -#. translators: Order note error -#: src/Mollie/WC/Payment/Order.php:619 -msgid "" -"The sum of refunds for all order lines is not identical to the refund " -"amount, so this refund will be processed as a payment amount refund, not an " -"order line refund." -msgstr "" -"La suma de los reembolsos para todas las líneas de pedido no es idéntica al " -"importe a reembolsar. Por este motivo, este reembolso se procesará como un " -"reembolso de importe de pago, no un reembolso de línea de pedido." - -#. translators: Placeholder 1: payment status. -#: src/Mollie/WC/Payment/Order.php:619 -msgid "Can not refund order amount that has status %1$s at Mollie." -msgstr "" -"No se puede reembolsar el importe del pedido que tiene el estado %1$s en " -"Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:742 -#: src/Mollie/WC/Payment/Order.php:742 -msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie." -msgstr "%sx %s cancelado para %s%s en WooCommerce y en Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:758 -#: src/Mollie/WC/Payment/Order.php:758 -msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"%sx %s reembolsado para %s%s en WooCommerce y en Mollie.%s ID del reembolso: " -"%s." - -#: build/src/Mollie/WC/Payment/Order.php:836 -#: src/Mollie/WC/Payment/Order.php:836 -msgid "" -"Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"Reembolso de %s%s reembolsado en WooCommerce y en Mollie.%s ID del " -"reembolso: %s." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:931 -#: src/Mollie/WC/Payment/Order.php:931 -msgid "%s order (%s) expired ." -msgstr "Pedido %s (%s) caducado." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -msgid "" -"One of the WooCommerce order items does not have the refund item ID meta " -"value associated to Mollie Order item." -msgstr "" -"Uno de los elementos del pedido de WooCommerce no tiene el valor meta ID del " -"elemento de reembolso asociado al elemento del pedido de Mollie." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -msgid "" -"Impossible to retrieve the order item ID related to the remote item: %1$s. " -"Try to do a refund by amount." -msgstr "" -"Imposible recuperar el ID del elemento del pedido relacionado con el " -"elemento remoto: %1$s. Intenta hacer un reembolso por cantidad." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -msgid "Empty WooCommerce order items or mollie order lines." -msgstr "Elementos del pedido WooCommerce o líneas de pedido Mollie vacíos." - -#. translators: Placeholder 1: order number -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: build/src/Mollie/WC/Payment/Payment.php:132 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: src/Mollie/WC/Payment/Payment.php:132 -msgctxt "Payment description for {orderNumber}" -msgid "Order {orderNumber}" -msgstr "Pedido {orderNumber}" - -#. translators: Placeholder 1: store name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: build/src/Mollie/WC/Payment/Payment.php:143 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: src/Mollie/WC/Payment/Payment.php:143 -msgctxt "Payment description for {storeName}" -msgid "StoreName {storeName}" -msgstr "Nombre de la tienda {storeName}" - -#. translators: Placeholder 1: customer first name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: build/src/Mollie/WC/Payment/Payment.php:154 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: src/Mollie/WC/Payment/Payment.php:154 -msgctxt "Payment description for {customer.firstname}" -msgid "Customer Firstname {customer.firstname}" -msgstr "Nombre del cliente {customer.firstname}" - -#. translators: Placeholder 1: customer last name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: build/src/Mollie/WC/Payment/Payment.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: src/Mollie/WC/Payment/Payment.php:165 -msgctxt "Payment description for {customer.lastname}" -msgid "Customer Lastname {customer.lastname}" -msgstr "Apellido del cliente {customer.lastname}" - -#. translators: Placeholder 1: customer company name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: build/src/Mollie/WC/Payment/Payment.php:176 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: src/Mollie/WC/Payment/Payment.php:176 -msgctxt "Payment description for {customer.company}" -msgid "Customer Company {customer.company}" -msgstr "Empresa del cliente {customer.company}" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:334 -#: src/Mollie/WC/Payment/Payment.php:334 -msgid "%s payment (%s) cancelled ." -msgstr "Pago %s (%s) cancelado." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:328 -msgid "Processing a payment, no capture needed" -msgstr "Procesando un pago, no se requiere ninguna captura" - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:342 -msgid "Order already canceled at Mollie, can not be shipped/captured." -msgstr "Pedido ya cancelado en Mollie, no se puede enviar/capturar." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:350 -msgid "Order already completed at Mollie, can not be shipped/captured." -msgstr "Pedido ya completado en Mollie, no se puede enviar/capturar." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:359 -msgid "" -"Order successfully updated to shipped at Mollie, capture of funds underway." -msgstr "" -"Pedido actualizado correctamente a enviado en Mollie, captura de fondos en " -"curso." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:365 -msgid "Order not paid or authorized at Mollie yet, can not be shipped." -msgstr "Pedido aún no está pagado o autorizado en Mollie, no se puede enviar." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:399 -msgid "" -"Order contains Mollie payment method, but not a valid Mollie Order ID. " -"Canceling order failed." -msgstr "" -"Pedido contiene el método de pago Mollie, pero ninguna ID de pedido válida " -"de Mollie. Cancelación del pedido fallida." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:420 -msgid "Order already canceled at Mollie, can not be canceled again." -msgstr "Pedido ya cancelado en Mollie, no se puede volver a cancelar." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:430 -msgid "Order also cancelled at Mollie." -msgstr "Pedido cancelado también en Mollie." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:436 -msgid "Order could not be canceled at Mollie, because order status is " -msgstr "" -"No se ha podido cancelar el pedido en Mollie, porque el estado del pedido es " - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:404 -#: src/Mollie/WC/Payment/Payment.php:404 -msgid "" -"%s payment expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"Pago %s caducado (%s) pero no cancelado a causa de otro pago pendiente (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:427 -#: src/Mollie/WC/Payment/Payment.php:427 -msgid "%s payment expired (%s)." -msgstr "Pago %s caducado (%s)." - -#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID -#: build/src/Mollie/WC/Payment/Payment.php:509 -#: src/Mollie/WC/Payment/Payment.php:509 -msgid "Refunded %s%s%s - Payment: %s, Refund: %s" -msgstr "Reembolsado %s%s%s - Pago: %s, Reembolso: %s" - -#: build/src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -msgid "" -"Mollie doesn't allow a partial refund of the full amount or quantity of at " -"least one order line. Trying to process this as an amount refund instead." -msgstr "" -"Mollie no permite el reembolso parcial de la cantidad o el importe total de " -"como mínimo una línea de pedido. Intentando procesarlo como un reembolso de " -"cantidad en su lugar." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Plugin.php:128 src/Mollie/WC/Plugin.php:128 -msgid "%s payment failed (%s)." -msgstr "Pago %s fallido (%s)." - -#: build/src/Mollie/WC/Plugin.php:303 src/Mollie/WC/Plugin.php:303 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s " -"disable it%4$s before deploying into production." -msgstr "" -"%1$sMollie Payments for WooCommerce%2$s El modo de prueba está activo; %3$s " -"desactívalo%4$s antes de implementarlo en la producción." - -#: build/src/Mollie/WC/Plugin.php:411 build/src/Mollie/WC/Plugin.php:444 -#: build/src/Mollie/WC/Plugin.php:466 src/Mollie/WC/Plugin.php:411 -#: src/Mollie/WC/Plugin.php:444 src/Mollie/WC/Plugin.php:466 -msgid "Mollie Voucher Category" -msgstr "Categoría de vale Mollie" - -#: build/src/Mollie/WC/Plugin.php:414 build/src/Mollie/WC/Plugin.php:446 -#: build/src/Mollie/WC/Plugin.php:469 src/Mollie/WC/Plugin.php:414 -#: src/Mollie/WC/Plugin.php:446 src/Mollie/WC/Plugin.php:469 -msgid "--Please choose an option--" -msgstr "--Selecciona una opción--" - -#: build/src/Mollie/WC/Plugin.php:415 build/src/Mollie/WC/Plugin.php:447 -#: build/src/Mollie/WC/Plugin.php:470 build/src/Mollie/WC/Plugin.php:583 -#: src/Mollie/WC/Plugin.php:415 src/Mollie/WC/Plugin.php:447 -#: src/Mollie/WC/Plugin.php:470 src/Mollie/WC/Plugin.php:583 -msgid "No Category" -msgstr "Sin categoría" - -#: build/src/Mollie/WC/Plugin.php:416 build/src/Mollie/WC/Plugin.php:448 -#: build/src/Mollie/WC/Plugin.php:471 build/src/Mollie/WC/Plugin.php:584 -#: src/Mollie/WC/Plugin.php:416 src/Mollie/WC/Plugin.php:448 -#: src/Mollie/WC/Plugin.php:471 src/Mollie/WC/Plugin.php:584 -msgid "Meal" -msgstr "Comida" - -#: build/src/Mollie/WC/Plugin.php:417 build/src/Mollie/WC/Plugin.php:449 -#: build/src/Mollie/WC/Plugin.php:472 build/src/Mollie/WC/Plugin.php:585 -#: src/Mollie/WC/Plugin.php:417 src/Mollie/WC/Plugin.php:449 -#: src/Mollie/WC/Plugin.php:472 src/Mollie/WC/Plugin.php:585 -msgid "Eco" -msgstr "Eco" - -#: build/src/Mollie/WC/Plugin.php:418 build/src/Mollie/WC/Plugin.php:450 -#: build/src/Mollie/WC/Plugin.php:473 build/src/Mollie/WC/Plugin.php:586 -#: src/Mollie/WC/Plugin.php:418 src/Mollie/WC/Plugin.php:450 -#: src/Mollie/WC/Plugin.php:473 src/Mollie/WC/Plugin.php:586 -msgid "Gift" -msgstr "Regalo" - -#: build/src/Mollie/WC/Plugin.php:452 build/src/Mollie/WC/Plugin.php:475 -#: src/Mollie/WC/Plugin.php:452 src/Mollie/WC/Plugin.php:475 -msgid "Select a voucher category to apply to all products with this category" -msgstr "" -"Selecciona una categoría de vale que será aplicada en todos los productos de " -"esta categoría" - -#: build/src/Mollie/WC/Plugin.php:512 src/Mollie/WC/Plugin.php:512 -msgid "Products voucher category" -msgstr "Categoría de vale de productos" - -#: build/src/Mollie/WC/Plugin.php:519 build/src/Mollie/WC/Plugin.php:582 -#: src/Mollie/WC/Plugin.php:519 src/Mollie/WC/Plugin.php:582 -msgid "Same as default category" -msgstr "Igual que la categoría por defecto" +#: ../src/Settings/Page/MollieSettingsPage.php:300 +msgid "Gateway enabled" +msgstr "Pasarela activada" -#: build/src/Mollie/WC/Plugin.php:529 src/Mollie/WC/Plugin.php:529 -msgid "" -"In order to process it, all products in the order must have a category. To " -"disable the product from voucher selection select \"No category\" option." -msgstr "" -"Para poder procesar el pedido, todos los productos deben tener una " -"categoría. Selecciona la opción «Sin categoría» para deshabilitar el " -"producto de la selección del vale." +#: ../src/Settings/Page/MollieSettingsPage.php:304 +msgid "Gateway disabled" +msgstr "Pasarela desactivada" -#: build/src/Mollie/WC/Plugin.php:579 src/Mollie/WC/Plugin.php:579 -msgid "Mollie Voucher category" -msgstr "Categoría de vale Mollie" +#: ../src/Settings/Page/MollieSettingsPage.php:307 +msgid "Disabled" +msgstr "Desactivado" -#: build/src/Mollie/WC/Plugin.php:727 src/Mollie/WC/Plugin.php:727 -msgid "%1$s items refunded in WooCommerce and at Mollie." -msgstr "%1$s elementos reembolsados en WooCommerce y en Mollie." +#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Settings/Page/MollieSettingsPage.php:318 +msgid "The following payment methods are activated in your %1$sMollie profile%2$s:" +msgstr "Los siguientes métodos de pago están activados en tu %1$sperfil de Mollie%2$s:" -#: build/src/Mollie/WC/Plugin.php:745 src/Mollie/WC/Plugin.php:745 -msgid "%1$s items cancelled in WooCommerce and at Mollie." -msgstr "%1$s elementos cancelados en WooCommerce y en Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:333 +msgid "Refresh" +msgstr "Actualizar" -#: build/src/Mollie/WC/Plugin.php:919 src/Mollie/WC/Plugin.php:919 -msgid "Name on card" -msgstr "Nombre en la tarjeta" +#: ../src/Settings/Page/MollieSettingsPage.php:342 +msgid "No payment methods available" +msgstr "No hay métodos de pago disponibles" -#: build/src/Mollie/WC/Plugin.php:923 src/Mollie/WC/Plugin.php:923 -msgid "Card number" -msgstr "Número de tarjeta" +#: ../src/Settings/Page/MollieSettingsPage.php:357 +msgid "Edit" +msgstr "Editar" -#: build/src/Mollie/WC/Plugin.php:931 src/Mollie/WC/Plugin.php:931 -msgid "CVC/CVV" -msgstr "CVC/CVV" +#: ../src/Settings/Page/MollieSettingsPage.php:365 +msgid "Activate" +msgstr "Activar" -#: build/src/Mollie/WC/Plugin.php:938 src/Mollie/WC/Plugin.php:938 -msgid "An unknown error occurred, please check the card fields." -msgstr "" -"Se ha producido un error desconocido, comprueba los campos de la tarjeta." +#: ../src/Settings/Page/MollieSettingsPage.php:411 +msgid "You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. Enable SEPA Direct Debit if you want to allow customers to pay subscriptions with iDEAL and/or other \"first\" payment methods." +msgstr "Tienes WooCommerce Subscriptions activado, pero no el adeudo directo SEPA. Activa el adeudo directo SEPA si quieres permitir a los clientes pagar suscripciones con iDEAL u otro método de pago «primario»." -#: build/src/Mollie/WC/Plugin.php:1295 src/Mollie/WC/Plugin.php:1295 -msgid "Mollie settings" -msgstr "Estado de Mollie" +#: ../src/Settings/Page/MollieSettingsPage.php:437 +msgid "You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via Mollie and disabling the default WooCommerce BACS payment gateway to prevent possible conflicts." +msgstr "Tienes la pasarela de pago por defecto de WooCommerce Direct Bank Transfer (BACS) habilitada en WooCommerce. Mollie recomienda encarecidamente usar únicamente la transferencia bancaria vía Mollie y deshabilitar la pasarela de pago por defecto WooCommerce BACS para evitar posibles conflictos." -#: build/src/Mollie/WC/Plugin.php:1301 src/Mollie/WC/Plugin.php:1301 -msgid "Logs" -msgstr "Registros" +#. translators: Placeholder 1: Opening link tag. Placeholder 2: Closing link tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/Page/MollieSettingsPage.php:461 +msgid "You have activated Klarna. To accept payments, please make sure all default WooCommerce checkout fields are enabled and required. For more information, go to %1$sKlarna Pay Later documentation%2$s or %3$sKlarna Slice it documentation%4$s" +msgstr "Has activado Klarna. Para aceptar pagos, asegúrate de que todos los campos predeterminados del proceso de pago de WooCommerce están activados y son obligatorios. Para más información, ve a la %1$sdocumentación Klarna Pay Later%2$s o la %3$sdocumentación Klarna Slice it%4$s" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:138 -#: src/Mollie/WC/Settings/Page/Mollie.php:138 +#: ../src/Settings/Page/MollieSettingsPage.php:702 msgid "General" msgstr "General" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:143 -#: src/Mollie/WC/Settings/Page/Mollie.php:143 -msgid "Apple Pay Button" -msgstr "Botón Apple Pay" - -#: build/src/Mollie/WC/Settings/Page/Mollie.php:147 -#: src/Mollie/WC/Settings/Page/Mollie.php:147 +#: ../src/Settings/Page/MollieSettingsPage.php:707 msgid "Advanced" msgstr "Avanzado" -#: src/Mollie/WC/Gateway/Abstract.php:1987 -msgid "%1$s Secure payments provided by %2$s" -msgstr "%1$s Pagos seguros ofrecidos por %2$s" +#: ../src/Settings/Page/MollieSettingsPage.php:710 +msgid "Apple Pay Button" +msgstr "Botón Apple Pay" diff --git a/languages/mollie-payments-for-woocommerce-fr_FR.mo b/languages/mollie-payments-for-woocommerce-fr_FR.mo index 2d0e6e8ac..e6a37c81e 100644 Binary files a/languages/mollie-payments-for-woocommerce-fr_FR.mo and b/languages/mollie-payments-for-woocommerce-fr_FR.mo differ diff --git a/languages/mollie-payments-for-woocommerce-fr_FR.po b/languages/mollie-payments-for-woocommerce-fr_FR.po index 4db19e163..1aed2ed1e 100644 --- a/languages/mollie-payments-for-woocommerce-fr_FR.po +++ b/languages/mollie-payments-for-woocommerce-fr_FR.po @@ -1,2885 +1,1975 @@ -# Copyright (C) 2021 Mollie -# This file is distributed under the same license as the Mollie Payments for WooCommerce plugin. +# Copyright (C) 2022 unnamed project +# This file is distributed under the same license as the unnamed project package. msgid "" msgstr "" -"Project-Id-Version: Mollie Payments for WooCommerce 6.7.0\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mollie-payments-" -"for-woocommerce\n" -"POT-Creation-Date: 2021-11-12T07:59:02+00:00\n" -"PO-Revision-Date: 2022-06-20 11:20+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: fr\n" +"Project-Id-Version: Mollie Payments for WooCommerce 7.3.3\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.1\n" -"X-Domain: mollie-payments-for-woocommerce\n" - -#. Plugin Name of the plugin -msgid "Mollie Payments for WooCommerce" -msgstr "Mollie Payments pour WooCommerce" - -#. Plugin URI of the plugin -#. Author URI of the plugin -msgid "https://www.mollie.com" -msgstr "https://www.mollie.com" - -#. Description of the plugin -msgid "Accept payments in WooCommerce with the official Mollie plugin" -msgstr "Accepter les paiements dans WooCommerce avec le plugin officiel Mollie" - -#. Author of the plugin -msgid "Mollie" -msgstr "Mollie" - -#: build/inc/settings/mollie_advanced_settings.php:6 -#: inc/settings/mollie_advanced_settings.php:6 -msgid "Mollie advanced settings" -msgstr "Réglages avancés Mollie" - -#: build/inc/settings/mollie_advanced_settings.php:8 -#: inc/settings/mollie_advanced_settings.php:8 +"Project-Id-Version: undefined\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../inc/settings/mollie_advanced_settings.php:12 msgctxt "Label {orderNumber} description for payment description options" msgid "Order number" msgstr "Numéro de commande" -#: build/inc/settings/mollie_advanced_settings.php:9 -#: inc/settings/mollie_advanced_settings.php:9 +#: ../inc/settings/mollie_advanced_settings.php:13 msgctxt "Label {storeName} description for payment description options" msgid "Site Title" msgstr "Titre du site" -#: build/inc/settings/mollie_advanced_settings.php:10 -#: inc/settings/mollie_advanced_settings.php:10 -msgctxt "" -"Label {customer.firstname} description for payment description options" +#: ../inc/settings/mollie_advanced_settings.php:14 +msgctxt "Label {customer.firstname} description for payment description options" msgid "Customer's first name" msgstr "Prénom du client" -#: build/inc/settings/mollie_advanced_settings.php:11 -#: inc/settings/mollie_advanced_settings.php:11 +#: ../inc/settings/mollie_advanced_settings.php:15 msgctxt "Label {customer.lastname} description for payment description options" msgid "Customer's last name" msgstr "Nom du client" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:16 msgctxt "Label {customer.company} description for payment description options" msgid "Customer's company name" msgstr "Nom de la société du client" -#: build/inc/settings/mollie_advanced_settings.php:8 -#: build/src/Mollie/WC/Helper/Settings.php:666 -#: inc/settings/mollie_advanced_settings.php:8 -#: src/Mollie/WC/Helper/Settings.php:666 -msgid "" -"The following options are required to use the plugin and are used by all " -"Mollie payment methods" -msgstr "" -"Les options suivantes sont requises pour utiliser l'extension et sont " -"utilisées par toutes les méthodes paiement de Mollie." +#: ../inc/settings/mollie_advanced_settings.php:22 +msgid "Mollie advanced settings" +msgstr "Réglages avancés Mollie" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:24, ../src/Settings/Page/MollieSettingsPage.php:185 +msgid "The following options are required to use the plugin and are used by all Mollie payment methods" +msgstr "Les options suivantes sont requises pour utiliser l'extension et sont utilisées par toutes les méthodes paiement de Mollie." + +#: ../inc/settings/mollie_advanced_settings.php:28 msgid "Order status after cancelled payment" msgstr "État de commande après annulation de paiement" -#: build/inc/settings/mollie_advanced_settings.php:18 -#: inc/settings/mollie_advanced_settings.php:18 -msgid "" -"Status for orders when a payment (not a Mollie order via the Orders API) is " -"cancelled. Default: pending. Orders with status Pending can be paid with " -"another payment method, customers can try again. Cancelled orders are final. " -"Set this to Cancelled if you only have one payment method or don't want " -"customers to re-try paying with a different payment method. This doesn't " -"apply to payments for orders via the new Orders API and Klarna payments." -msgstr "" -"Statut des commandes lorsqu’un paiement (et non une commande Mollie via " -"l’API Commandes) est annulé. Par défaut : en attente. Les commandes ayant le " -"statut En attente peuvent être payées avec un autre mode de paiement, les " -"clients peuvent réessayer. Les commandes annulées sont définitives. " -"Définissez ce paramètre sur « annulé » si vous ne disposez que d’un seul " -"mode de paiement ou si vous ne souhaitez pas que les clients réessayent de " -"payer avec un autre mode de paiement. Cela ne s’applique pas aux paiements " -"des commandes via la nouvelle API Commandes et aux paiements Klarna." - -#: build/inc/settings/mollie_advanced_settings.php:23 -#: inc/settings/mollie_advanced_settings.php:23 +#: ../inc/settings/mollie_advanced_settings.php:31 +msgid "Pending" +msgstr "En attente" + +#: ../inc/settings/mollie_advanced_settings.php:32 +msgid "Cancelled" +msgstr "Annulé" + +#: ../inc/settings/mollie_advanced_settings.php:34 +msgid "Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don't want customers to re-try paying with a different payment method. This doesn't apply to payments for orders via the new Orders API and Klarna payments." +msgstr "Statut des commandes lorsqu’un paiement (et non une commande Mollie via l’API Commandes) est annulé. Par défaut : en attente. Les commandes ayant le statut En attente peuvent être payées avec un autre mode de paiement, les clients peuvent réessayer. Les commandes annulées sont définitives. Définissez ce paramètre sur « annulé » si vous ne disposez que d’un seul mode de paiement ou si vous ne souhaitez pas que les clients réessayent de payer avec un autre mode de paiement. Cela ne s’applique pas aux paiements des commandes via la nouvelle API Commandes et aux paiements Klarna." + +#: ../inc/settings/mollie_advanced_settings.php:39 msgid "Payment screen language" msgstr "Langue de l'écran paiement" -#: build/inc/settings/mollie_advanced_settings.php:26 -#: inc/settings/mollie_advanced_settings.php:26 +#: ../inc/settings/mollie_advanced_settings.php:42 msgid "Automatically send WordPress language" msgstr "Envoyer langage WordPress automatiquement" -#: build/inc/settings/mollie_advanced_settings.php:29 -#: build/inc/settings/mollie_advanced_settings.php:90 -#: build/src/Mollie/WC/Helper/Settings.php:288 -#: inc/settings/mollie_advanced_settings.php:29 -#: inc/settings/mollie_advanced_settings.php:90 -#: src/Mollie/WC/Helper/Settings.php:288 +#: ../inc/settings/mollie_advanced_settings.php:45, ../inc/settings/mollie_advanced_settings.php:105, ../src/Settings/General/MollieGeneralSettings.php:266 msgid "default" msgstr "Par défaut" -#: build/inc/settings/mollie_advanced_settings.php:30 -#: inc/settings/mollie_advanced_settings.php:30 +#: ../inc/settings/mollie_advanced_settings.php:46 msgid "Detect using browser language" msgstr "Détecter utilisant la langue du navigateur" -#: build/inc/settings/mollie_advanced_settings.php:34 -#: inc/settings/mollie_advanced_settings.php:34 +#: ../inc/settings/mollie_advanced_settings.php:50 msgid "English" msgstr "Anglais" -#: build/inc/settings/mollie_advanced_settings.php:35 -#: inc/settings/mollie_advanced_settings.php:35 +#: ../inc/settings/mollie_advanced_settings.php:51 msgid "Dutch" msgstr "Néerlandais" -#: build/inc/settings/mollie_advanced_settings.php:36 -#: inc/settings/mollie_advanced_settings.php:36 +#: ../inc/settings/mollie_advanced_settings.php:52 msgid "Flemish (Belgium)" msgstr "Français (Belgique)" -#: build/inc/settings/mollie_advanced_settings.php:37 -#: inc/settings/mollie_advanced_settings.php:37 +#: ../inc/settings/mollie_advanced_settings.php:53 msgid "French" msgstr "Français" -#: build/inc/settings/mollie_advanced_settings.php:38 -#: inc/settings/mollie_advanced_settings.php:38 +#: ../inc/settings/mollie_advanced_settings.php:54 msgid "French (Belgium)" msgstr "Français (Belgique)" -#: build/inc/settings/mollie_advanced_settings.php:39 -#: inc/settings/mollie_advanced_settings.php:39 +#: ../inc/settings/mollie_advanced_settings.php:55 msgid "German" msgstr "Suisse allemand" -#: build/inc/settings/mollie_advanced_settings.php:40 -#: inc/settings/mollie_advanced_settings.php:40 +#: ../inc/settings/mollie_advanced_settings.php:56 msgid "Austrian German" msgstr "Autrichien allemand" -#: build/inc/settings/mollie_advanced_settings.php:41 -#: inc/settings/mollie_advanced_settings.php:41 +#: ../inc/settings/mollie_advanced_settings.php:57 msgid "Swiss German" msgstr "Suisse allemand" -#: build/inc/settings/mollie_advanced_settings.php:42 -#: inc/settings/mollie_advanced_settings.php:42 +#: ../inc/settings/mollie_advanced_settings.php:58 msgid "Spanish" msgstr "Espagnol" -#: build/inc/settings/mollie_advanced_settings.php:43 -#: inc/settings/mollie_advanced_settings.php:43 +#: ../inc/settings/mollie_advanced_settings.php:59 msgid "Catalan" msgstr "Catalan" -#: build/inc/settings/mollie_advanced_settings.php:44 -#: inc/settings/mollie_advanced_settings.php:44 +#: ../inc/settings/mollie_advanced_settings.php:60 msgid "Portuguese" msgstr "Portugais" -#: build/inc/settings/mollie_advanced_settings.php:45 -#: inc/settings/mollie_advanced_settings.php:45 +#: ../inc/settings/mollie_advanced_settings.php:61 msgid "Italian" msgstr "Italien" -#: build/inc/settings/mollie_advanced_settings.php:46 -#: inc/settings/mollie_advanced_settings.php:46 +#: ../inc/settings/mollie_advanced_settings.php:62 msgid "Norwegian" msgstr "Norvégien" -#: build/inc/settings/mollie_advanced_settings.php:47 -#: inc/settings/mollie_advanced_settings.php:47 +#: ../inc/settings/mollie_advanced_settings.php:63 msgid "Swedish" msgstr "Suédois" -#: build/inc/settings/mollie_advanced_settings.php:48 -#: inc/settings/mollie_advanced_settings.php:48 +#: ../inc/settings/mollie_advanced_settings.php:64 msgid "Finnish" msgstr "Finlandais" -#: build/inc/settings/mollie_advanced_settings.php:49 -#: inc/settings/mollie_advanced_settings.php:49 +#: ../inc/settings/mollie_advanced_settings.php:65 msgid "Danish" msgstr "Danois" -#: build/inc/settings/mollie_advanced_settings.php:50 -#: inc/settings/mollie_advanced_settings.php:50 +#: ../inc/settings/mollie_advanced_settings.php:66 msgid "Icelandic" msgstr "Islandais" -#: build/inc/settings/mollie_advanced_settings.php:51 -#: inc/settings/mollie_advanced_settings.php:51 +#: ../inc/settings/mollie_advanced_settings.php:67 msgid "Hungarian" msgstr "Hongrois" -#: build/inc/settings/mollie_advanced_settings.php:52 -#: inc/settings/mollie_advanced_settings.php:52 +#: ../inc/settings/mollie_advanced_settings.php:68 msgid "Polish" msgstr "Polonais" -#: build/inc/settings/mollie_advanced_settings.php:53 -#: inc/settings/mollie_advanced_settings.php:53 +#: ../inc/settings/mollie_advanced_settings.php:69 msgid "Latvian" msgstr "Letton" -#: build/inc/settings/mollie_advanced_settings.php:54 -#: inc/settings/mollie_advanced_settings.php:54 +#: ../inc/settings/mollie_advanced_settings.php:70 msgid "Lithuanian" msgstr "Lituanien" -#: build/inc/settings/mollie_advanced_settings.php:57 -#: inc/settings/mollie_advanced_settings.php:57 -msgid "" -"Sending a language (or locale) is required. The option 'Automatically send " -"WordPress language' will try to get the customer's language in WordPress " -"(and respects multilanguage plugins) and convert it to a format Mollie " -"understands. If this fails, or if the language is not supported, it will " -"fall back to American English. You can also select one of the locales " -"currently supported by Mollie, that will then be used for all customers." -msgstr "" -"L’envoi d’une préférence de langage (ou de paramètres régionaux) est " -"nécessaire. L’option « Envoyer automatiquement le langage WordPress » " -"tentera de définir le langage du client dans WordPress (et respecte les " -"plugins multilingues) et de le convertir dans un format que Mollie comprend. " -"Si cela échoue ou si la langue n’est pas prise en charge, l’anglais " -"américain sera utilisé. Vous pouvez également sélectionner l’un des " -"paramètres régionaux actuellement pris en charge par Mollie, qui sera " -"ensuite utilisé pour tous les clients." - -#: build/inc/settings/mollie_advanced_settings.php:65 -#: inc/settings/mollie_advanced_settings.php:65 +#: ../inc/settings/mollie_advanced_settings.php:73 +msgid "Sending a language (or locale) is required. The option 'Automatically send WordPress language' will try to get the customer's language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers." +msgstr "L’envoi d’une préférence de langage (ou de paramètres régionaux) est nécessaire. L’option « Envoyer automatiquement le langage WordPress » tentera de définir le langage du client dans WordPress (et respecte les plugins multilingues) et de le convertir dans un format que Mollie comprend. Si cela échoue ou si la langue n’est pas prise en charge, l’anglais américain sera utilisé. Vous pouvez également sélectionner l’un des paramètres régionaux actuellement pris en charge par Mollie, qui sera ensuite utilisé pour tous les clients." + +#: ../inc/settings/mollie_advanced_settings.php:81 msgid "Store customer details at Mollie" msgstr "Enregistrer les détails du client chez Mollie" -#: build/inc/settings/mollie_advanced_settings.php:68 -#: inc/settings/mollie_advanced_settings.php:68 -msgid "" -"Should Mollie store customers name and email address for Single Click " -"Payments? Default %1$s. Required if WooCommerce Subscriptions " -"is being used! Read more about " -"%2$s and how it improves your conversion." -msgstr "" -"Est-ce que Mollie doit conserver le nom et l’adresse électronique du client " -"pour les paiements par simple clic ? Par défaut %1$s. " -"Obligatoire si les abonnements WooCommerce sont utilisés ! En savoir plus " -"sur %2$s et sur la façon " -"dont il améliore vos conversions." - -#: build/inc/settings/mollie_advanced_settings.php:72 -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: inc/settings/mollie_advanced_settings.php:72 -#: src/Mollie/WC/Helper/Settings.php:551 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_advanced_settings.php:84 +msgid "Should Mollie store customers name and email address for Single Click Payments? Default %1$s. Required if WooCommerce Subscriptions is being used! Read more about %2$s and how it improves your conversion." +msgstr "Est-ce que Mollie doit conserver le nom et l’adresse électronique du client pour les paiements par simple clic ? Par défaut %1$s. Obligatoire si les abonnements WooCommerce sont utilisés ! En savoir plus sur %2$s et sur la façon dont il améliore vos conversions." + +#: ../inc/settings/mollie_advanced_settings.php:88, ../src/Settings/Page/MollieSettingsPage.php:303 msgid "Enabled" msgstr "Activé" -#: build/inc/settings/mollie_advanced_settings.php:73 -#: inc/settings/mollie_advanced_settings.php:73 +#: ../inc/settings/mollie_advanced_settings.php:89 msgid "Single Click Payments" msgstr "Paiements par simple clic" -#: build/inc/settings/mollie_advanced_settings.php:82 -#: inc/settings/mollie_advanced_settings.php:82 +#: ../inc/settings/mollie_advanced_settings.php:97 msgid "Select API Method" msgstr "Sélectionnez la méthode de l’API" -#: build/inc/settings/mollie_advanced_settings.php:99 -#: inc/settings/mollie_advanced_settings.php:99 -msgid "" -"Click %shere%s to read more about the differences between the Payments and " -"Orders API" -msgstr "" -"Cliquez %sici%s pour en savoir plus sur les différences entre les API " -"Payments et Orders" +#. translators: Placeholder 1: opening link tag, placeholder 2: closing link tag +#: ../inc/settings/mollie_advanced_settings.php:114 +msgid "Click %1$shere%2$s to read more about the differences between the Payments and Orders API" +msgstr "Cliquez %1$sici%2$s pour en savoir plus sur les différences entre les API Payments et Orders" -#: build/inc/settings/mollie_advanced_settings.php:109 -#: inc/settings/mollie_advanced_settings.php:109 +#: ../inc/settings/mollie_advanced_settings.php:124 msgid "API Payment Description" msgstr "Description de l’API Payments" -#: build/inc/settings/mollie_advanced_settings.php:137 -#: inc/settings/mollie_advanced_settings.php:137 +#: ../inc/settings/mollie_advanced_settings.php:141 msgctxt "Payment description options" msgid "Available variables" msgstr "Variables disponibles" -#: build/inc/settings/mollie_advanced_settings.php:160 -#: inc/settings/mollie_advanced_settings.php:160 -msgid "" -"Select among the available variables the description to be used for this " -"transaction.%s(Note: this only works when the method is set to Payments " -"API)%s" -msgstr "" -"Sélectionnez parmi les variables disponibles la description à utiliser pour " -"cette transaction.%s(Remarque : cela ne fonctionne que lorsque la méthode " -"est définie sur API Payments).%s" +#. translators: Placeholder 1: Opening paragraph tag, placeholder 2: Closing paragraph tag +#: ../inc/settings/mollie_advanced_settings.php:166 +msgid "Select among the available variables the description to be used for this transaction.%1$s(Note: this only works when the method is set to Payments API)%2$s" +msgstr "Sélectionnez parmi les variables disponibles la description à utiliser pour cette transaction.%1$s(Remarque : cela ne fonctionne que lorsque la méthode est définie sur API Payments).%2$s" -#: build/inc/settings/mollie_advanced_settings.php:134 -#: inc/settings/mollie_advanced_settings.php:134 +#: ../inc/settings/mollie_advanced_settings.php:177 msgid "Surcharge gateway fee label" msgstr "Étiquette de frais de passerelle de surcharge" -#: build/inc/settings/mollie_advanced_settings.php:140 -#: inc/settings/mollie_advanced_settings.php:140 +#: ../inc/settings/mollie_advanced_settings.php:183, ../src/Gateway/Surcharge.php:36 msgid "Gateway Fee" msgstr "Frais de passerelle" -#: build/inc/settings/mollie_advanced_settings.php:142 -#: inc/settings/mollie_advanced_settings.php:142 +#: ../inc/settings/mollie_advanced_settings.php:185 msgid "This is the label will appear in frontend when the surcharge applies" -msgstr "" -"C’est l’étiquette qui apparaîtra dans le frontend lorsque la surcharge " -"s’applique." +msgstr "C’est l’étiquette qui apparaîtra dans le frontend lorsque la surcharge s’applique." -#: inc/settings/mollie_advanced_settings.php:194 +#: ../inc/settings/mollie_advanced_settings.php:193 msgid "Remove Mollie data from Database on uninstall" -msgstr "" -"Suppressions des données de Mollie de la base de données lors de la " -"désinstallation" +msgstr "Suppressions des données de Mollie de la base de données lors de la désinstallation" -#: inc/settings/mollie_advanced_settings.php:199 -msgid "" -"Remove options and scheduled actions from database when uninstalling the " -"plugin." -msgstr "" -"Suppression des options et des actions programmées de la base de données " -"lors de la désinstallation du plugin." +#: ../inc/settings/mollie_advanced_settings.php:199 +msgid "Remove options and scheduled actions from database when uninstalling the plugin." +msgstr "Suppression des options et des actions programmées de la base de données lors de la désinstallation du plugin." + +#: ../inc/settings/mollie_advanced_settings.php:200 +msgid "Clear now" +msgstr "Effacer maintenant" + +#: ../inc/settings/mollie_applepay_settings.php:12, ../src/PaymentMethods/Applepay.php:13 +msgid "Apple Pay" +msgstr "Apple Pay" -#: build/inc/settings/mollie_applepay_settings.php:14 -#: inc/settings/mollie_applepay_settings.php:14 +#: ../inc/settings/mollie_applepay_settings.php:14 msgid "The following options are required to use the Apple Pay gateway" -msgstr "" -"Les options suivantes sont requises pour utiliser la passerelle Apple Pay" +msgstr "Les options suivantes sont requises pour utiliser la passerelle Apple Pay" -#: build/inc/settings/mollie_applepay_settings.php:19 -#: build/src/Mollie/WC/Helper/Settings.php:48 -#: inc/settings/mollie_applepay_settings.php:19 -#: src/Mollie/WC/Helper/Settings.php:48 +#: ../inc/settings/mollie_applepay_settings.php:19, ../src/Settings/General/MollieGeneralSettings.php:18 msgid "Enable/Disable" msgstr "Activer/Désactiver" -#. translators: Placeholder 1: enabled or disabled -#: build/inc/settings/mollie_applepay_settings.php:21 -#: build/src/Mollie/WC/Helper/Settings.php:54 -#: inc/settings/mollie_applepay_settings.php:21 -#: src/Mollie/WC/Helper/Settings.php:54 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:21, ../src/Settings/General/MollieGeneralSettings.php:25 msgid "Enable %s" msgstr "Activer %s" -#: build/inc/settings/mollie_applepay_settings.php:29 -#: build/src/Mollie/WC/Helper/Settings.php:68 -#: inc/settings/mollie_applepay_settings.php:29 -#: src/Mollie/WC/Helper/Settings.php:68 +#: ../inc/settings/mollie_applepay_settings.php:29, ../src/Settings/General/MollieGeneralSettings.php:38 msgid "Title" msgstr "Titre" -#: build/inc/settings/mollie_applepay_settings.php:32 -#: build/src/Mollie/WC/Helper/Settings.php:71 -#: inc/settings/mollie_applepay_settings.php:32 -#: src/Mollie/WC/Helper/Settings.php:71 -msgid "" -"This controls the title which the user sees during checkout. Default " -"%s" -msgstr "" -"Ceci contrôle le titre que l’utilisateur voit lors du paiement. Par " -"défaut%s" - -#: build/inc/settings/mollie_applepay_settings.php:45 -#: build/inc/settings/mollie_applepay_settings.php:48 -#: build/src/Mollie/WC/Helper/Settings.php:94 -#: inc/settings/mollie_applepay_settings.php:45 -#: inc/settings/mollie_applepay_settings.php:48 -#: src/Mollie/WC/Helper/Settings.php:94 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:32, ../src/Settings/General/MollieGeneralSettings.php:42 +msgid "This controls the title which the user sees during checkout. Default %s" +msgstr "Ceci contrôle le titre que l’utilisateur voit lors du paiement. Par défaut%s" + +#: ../inc/settings/mollie_applepay_settings.php:46, ../inc/settings/mollie_applepay_settings.php:48, ../src/Settings/General/MollieGeneralSettings.php:66 msgid "Display logo" msgstr "Afficher le logo" -#: build/inc/settings/mollie_applepay_settings.php:60 -#: build/src/Mollie/WC/Helper/Settings.php:81 -#: inc/settings/mollie_applepay_settings.php:60 -#: src/Mollie/WC/Helper/Settings.php:81 +#: ../inc/settings/mollie_applepay_settings.php:61, ../src/Settings/General/MollieGeneralSettings.php:52 msgid "Description" msgstr "Description" -#: build/inc/settings/mollie_applepay_settings.php:63 -#: build/src/Mollie/WC/Helper/Settings.php:84 -#: inc/settings/mollie_applepay_settings.php:63 -#: src/Mollie/WC/Helper/Settings.php:84 -msgid "" -"Payment method description that the customer will see on your checkout. " -"Default %s" -msgstr "" -"Description de la méthode de paiement que le client verra sur votre caisse. " -" Par défaut%s" +#. translators: Placeholder 1: Gateway description +#: ../inc/settings/mollie_applepay_settings.php:64, ../src/Settings/General/MollieGeneralSettings.php:56 +msgid "Payment method description that the customer will see on your checkout. Default %s" +msgstr "Description de la méthode de paiement que le client verra sur votre caisse. Par défaut%s" -#: build/inc/settings/mollie_applepay_settings.php:79 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:6 -#: inc/settings/mollie_applepay_settings.php:79 -#: inc/settings/mollie_apple_pay_button_enabler.php:6 +#: ../inc/settings/mollie_applepay_settings.php:81 msgid "Apple Pay button settings" msgstr "Réglages du bouton Apple Pay" -#: build/inc/settings/mollie_applepay_settings.php:84 -#: inc/settings/mollie_applepay_settings.php:84 +#: ../inc/settings/mollie_applepay_settings.php:86 msgid "The following options are required to use the Apple Pay Direct Button" -msgstr "" -"Les options suivantes sont requises pour utiliser le bouton direct Apple Pay" +msgstr "Les options suivantes sont requises pour utiliser le bouton direct Apple Pay" -#: build/inc/settings/mollie_applepay_settings.php:88 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:18 -#: inc/settings/mollie_applepay_settings.php:88 -#: inc/settings/mollie_apple_pay_button_enabler.php:18 +#: ../inc/settings/mollie_applepay_settings.php:90, ../src/PaymentMethods/Applepay.php:34 msgid "Enable Apple Pay Button on Cart page" msgstr "Activez le bouton Apple Pay sur la page du panier" -#: build/inc/settings/mollie_applepay_settings.php:91 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:21 -#: inc/settings/mollie_applepay_settings.php:91 -#: inc/settings/mollie_apple_pay_button_enabler.php:21 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:93, ../src/PaymentMethods/Applepay.php:36 msgid "Enable the Apple Pay direct buy button on the Cart page" msgstr "Activez le bouton achat direct Apple Pay sur la page du panier" -#: build/inc/settings/mollie_applepay_settings.php:103 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:29 -#: inc/settings/mollie_applepay_settings.php:103 -#: inc/settings/mollie_apple_pay_button_enabler.php:29 +#: ../inc/settings/mollie_applepay_settings.php:106, ../src/PaymentMethods/Applepay.php:44 msgid "Enable Apple Pay Button on Product page" msgstr "Activez le bouton Apple Pay sur la page du produit" -#: build/inc/settings/mollie_applepay_settings.php:106 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:32 -#: inc/settings/mollie_applepay_settings.php:106 -#: inc/settings/mollie_apple_pay_button_enabler.php:32 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:109, ../src/PaymentMethods/Applepay.php:46 msgid "Enable the Apple Pay direct buy button on the Product page" msgstr "Activez le bouton achat direct Apple Pay sur la page du produit" -#: build/inc/settings/mollie_apple_pay_button_enabler.php:11 -#: inc/settings/mollie_apple_pay_button_enabler.php:11 -msgid "The following options are required to use the Apple Pay button" -msgstr "Les options suivantes sont requises pour utiliser le bouton Apple Pay" - -#: build/inc/settings/mollie_components.php:7 -#: inc/settings/mollie_components.php:7 +#: ../inc/settings/mollie_components.php:9 msgctxt "Mollie Components Settings" msgid "Base Styles" msgstr "Styles de base" -#: build/inc/settings/mollie_components.php:16 -#: build/inc/settings/mollie_components.php:156 -#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156 +#: ../inc/settings/mollie_components.php:18, ../inc/settings/mollie_components.php:158 msgctxt "Mollie Components Settings" msgid "Background Color" msgstr "Couleur d'arrière-plan" -#: build/inc/settings/mollie_components.php:22 -#: build/inc/settings/mollie_components.php:145 -#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145 +#: ../inc/settings/mollie_components.php:24, ../inc/settings/mollie_components.php:147 msgctxt "Mollie Components Settings" msgid "Text Color" msgstr "Couleur de texte" -#: build/inc/settings/mollie_components.php:28 -#: inc/settings/mollie_components.php:28 +#: ../inc/settings/mollie_components.php:30 msgctxt "Mollie Components Settings" msgid "Placeholder Color" msgstr "Couleur du texte indicatif" -#: build/inc/settings/mollie_components.php:34 -#: inc/settings/mollie_components.php:34 +#: ../inc/settings/mollie_components.php:36 msgctxt "Mollie Components Settings" msgid "Font Size" msgstr "Taille des caractères" -#: build/inc/settings/mollie_components.php:35 -#: inc/settings/mollie_components.php:35 +#: ../inc/settings/mollie_components.php:37 msgctxt "Mollie Components Settings" msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'." -msgstr "" -"Définit la taille des caractères du composant. Unités autorisées : ’em’, " -"’px’, ’rem’." +msgstr "Définit la taille des caractères du composant. Unités autorisées : ’em’, ’px’, ’rem’." -#: build/inc/settings/mollie_components.php:45 -#: inc/settings/mollie_components.php:45 +#: ../inc/settings/mollie_components.php:47 msgctxt "Mollie Components Settings" msgid "Font Weight" msgstr "Graisse" -#: build/inc/settings/mollie_components.php:48 -#: inc/settings/mollie_components.php:48 +#: ../inc/settings/mollie_components.php:50 msgctxt "Mollie Components Settings" msgid "Lighter" msgstr "Plus fin" -#: build/inc/settings/mollie_components.php:49 -#: inc/settings/mollie_components.php:49 +#: ../inc/settings/mollie_components.php:51 msgctxt "Mollie Components Settings" msgid "Regular" msgstr "Normal" -#: build/inc/settings/mollie_components.php:50 -#: inc/settings/mollie_components.php:50 +#: ../inc/settings/mollie_components.php:52 msgctxt "Mollie Components Settings" msgid "Bold" msgstr "Gras" -#: build/inc/settings/mollie_components.php:56 -#: inc/settings/mollie_components.php:56 +#: ../inc/settings/mollie_components.php:58 msgctxt "Mollie Components Settings" msgid "Letter Spacing" msgstr "Espacement des lettres" -#: build/inc/settings/mollie_components.php:62 -#: inc/settings/mollie_components.php:62 +#: ../inc/settings/mollie_components.php:64 msgctxt "Mollie Components Settings" msgid "Line Height" msgstr "Hauteur de ligne" -#: build/inc/settings/mollie_components.php:71 -#: inc/settings/mollie_components.php:71 +#: ../inc/settings/mollie_components.php:73 msgctxt "Mollie Components Settings" msgid "Padding" msgstr "Marge intérieure" -#: build/inc/settings/mollie_components.php:72 -#: inc/settings/mollie_components.php:72 +#: ../inc/settings/mollie_components.php:74 msgctxt "Mollie Components Settings" -msgid "" -"Add padding to the components. Allowed units include `16px 16px 16px 16px` " -"and `em`, `px`, `rem`." -msgstr "" -"Ajouter une marge intérieure aux composants. Les unités autorisées incluent " -"`16px 16px 16px 16px` et `em`, `px`, `rem`." +msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`." +msgstr "Ajouter une marge intérieure aux composants. Les unités autorisées incluent `16px 16px 16px 16px` et `em`, `px`, `rem`." -#: build/inc/settings/mollie_components.php:82 -#: inc/settings/mollie_components.php:82 +#: ../inc/settings/mollie_components.php:84 msgctxt "Mollie Components Settings" msgid "Align Text" msgstr "Aligner le texte" -#: build/inc/settings/mollie_components.php:85 -#: inc/settings/mollie_components.php:85 +#: ../inc/settings/mollie_components.php:87 msgctxt "Mollie Components Settings" msgid "Left" msgstr "À gauche" -#: build/inc/settings/mollie_components.php:86 -#: inc/settings/mollie_components.php:86 +#: ../inc/settings/mollie_components.php:88 msgctxt "Mollie Components Settings" msgid "Right" msgstr "À droite" -#: build/inc/settings/mollie_components.php:87 -#: inc/settings/mollie_components.php:87 +#: ../inc/settings/mollie_components.php:89 msgctxt "Mollie Components Settings" msgid "Center" msgstr "Centrer" -#: build/inc/settings/mollie_components.php:88 -#: inc/settings/mollie_components.php:88 +#: ../inc/settings/mollie_components.php:90 msgctxt "Mollie Components Settings" msgid "Justify" msgstr "Justifier" -#: build/inc/settings/mollie_components.php:94 -#: inc/settings/mollie_components.php:94 +#: ../inc/settings/mollie_components.php:96 msgctxt "Mollie Components Settings" msgid "Transform Text " msgstr "Transformer le texte " -#: build/inc/settings/mollie_components.php:97 -#: inc/settings/mollie_components.php:97 +#: ../inc/settings/mollie_components.php:99 msgctxt "Mollie Components Settings" msgid "None" msgstr "Aucun" -#: build/inc/settings/mollie_components.php:102 -#: inc/settings/mollie_components.php:102 +#: ../inc/settings/mollie_components.php:104 msgctxt "Mollie Components Settings" msgid "Capitalize" msgstr "Mettre en majuscule" -#: build/inc/settings/mollie_components.php:107 -#: inc/settings/mollie_components.php:107 +#: ../inc/settings/mollie_components.php:109 msgctxt "Mollie Components Settings" msgid "Uppercase" msgstr "Majuscule" -#: build/inc/settings/mollie_components.php:112 -#: inc/settings/mollie_components.php:112 +#: ../inc/settings/mollie_components.php:114 msgctxt "Mollie Components Settings" msgid "Lowercase" msgstr "Minuscule" -#: build/inc/settings/mollie_components.php:117 -#: inc/settings/mollie_components.php:117 +#: ../inc/settings/mollie_components.php:119 msgctxt "Mollie Components Settings" msgid "Full Width" msgstr "Pleine largeur" -#: build/inc/settings/mollie_components.php:122 -#: inc/settings/mollie_components.php:122 +#: ../inc/settings/mollie_components.php:124 msgctxt "Mollie Components Settings" msgid "Full Size Kana" msgstr "Taille réelle Kana" -#: build/inc/settings/mollie_components.php:136 -#: inc/settings/mollie_components.php:136 +#: ../inc/settings/mollie_components.php:138 msgctxt "Mollie Components Settings" msgid "Invalid Status Styles" msgstr "Styles d'état non valide" -#: build/inc/settings/mollie_components.php:146 -#: inc/settings/mollie_components.php:146 +#: ../inc/settings/mollie_components.php:148 msgctxt "Mollie Components Settings" msgid "Text Color for invalid input." msgstr "Couleur de texte pour saisie non valide." -#: build/inc/settings/mollie_components.php:157 -#: inc/settings/mollie_components.php:157 +#: ../inc/settings/mollie_components.php:159 msgctxt "Mollie Components Settings" msgid "Background Color for invalid input." msgstr "Couleur d'arrière-plan pour saisie non valide." -#: build/inc/settings/mollie_components_enabler.php:6 -#: inc/settings/mollie_components_enabler.php:6 -msgid "Enable Mollie Components" -msgstr "Activer les composants Mollie" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to settings. Placeholder 4: Closing link tag. +#: ../src/Activation/ActivationModule.php:167 +msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s." +msgstr "%1$sMollie Payments pour WooCommerce : Il manque la clé API%2$s Veillez%3$s saisir votre clé API ici%4$s." -#: build/inc/settings/mollie_components_enabler.php:8 -#: inc/settings/mollie_components_enabler.php:8 -msgid "" -"Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." -msgstr "" -"Utiliser les composants Mollie pour cette passerelle En savoir plus sur %s et sur la façon dont il améliore vos conversions." - -#: build/inc/settings/mollie_components_enabler.php:12 -#: build/src/Mollie/WC/Settings/Page/Components.php:10 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:139 -#: inc/settings/mollie_components_enabler.php:12 -#: src/Mollie/WC/Settings/Page/Components.php:10 -#: src/Mollie/WC/Settings/Page/Mollie.php:139 -msgid "Mollie Components" -msgstr "Composants Mollie" +#: ../src/Activation/ConstraintsChecker.php:109 +msgid "%1$sMollie Payments for WooCommerce is inactive:%2$s" +msgstr "%1$sMollie Payments pour WooCommerce est inactif :%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:5 -#: inc/settings/mollie_creditcard_icons_selector.php:5 -msgid "Customize Icons" -msgstr "Icônes personnalisées" +#: ../src/Activation/ConstraintsChecker.php:113 +msgid "%1$sCorrect the above errors to use Mollie Payments for Woocommerce%2$s" +msgstr "%1$sCorrigez les erreurs ci-dessus pour utiliser Mollie Payments pour WooCommerce%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:12 -#: inc/settings/mollie_creditcard_icons_selector.php:12 -msgid "Enable Icons Selector" -msgstr "Activer le sélecteur d’icônes" +#: ../src/Assets/AssetsModule.php:432 +msgid "Name on card" +msgstr "Nom figurant sur la carte de crédit" -#: build/inc/settings/mollie_creditcard_icons_selector.php:13 -#: inc/settings/mollie_creditcard_icons_selector.php:13 -msgid "Show customized creditcard icons on checkout page" -msgstr "" -"Afficher les icônes personnalisées des cartes de crédit sur la page de " -"paiement" +#: ../src/Assets/AssetsModule.php:436 +msgid "Card number" +msgstr "Numéro de la carte" -#: build/inc/settings/mollie_creditcard_icons_selector.php:21 -#: inc/settings/mollie_creditcard_icons_selector.php:21 -msgid "Show American Express Icon" -msgstr "Afficher l’icône American Express" +#: ../src/Assets/AssetsModule.php:440 +msgid "Expiry date" +msgstr "Date d'expiration" -#: build/inc/settings/mollie_creditcard_icons_selector.php:26 -#: inc/settings/mollie_creditcard_icons_selector.php:26 -msgid "Show Carta Si Icon" -msgstr "Afficher l’icône Carta Si" +#: ../src/Assets/AssetsModule.php:444 +msgid "CVC/CVV" +msgstr "CVC/CVV" -#: build/inc/settings/mollie_creditcard_icons_selector.php:31 -#: inc/settings/mollie_creditcard_icons_selector.php:31 -msgid "Show Carte Bancaire Icon" -msgstr "Afficher l’icône Carte Bancaire" +#: ../src/Assets/AssetsModule.php:451 +msgid "An unknown error occurred, please check the card fields." +msgstr "Une erreur inconnue est survenue, veillez vérifier les champs de la carte." -#: build/inc/settings/mollie_creditcard_icons_selector.php:36 -#: inc/settings/mollie_creditcard_icons_selector.php:36 -msgid "Show Maestro Icon" -msgstr "Afficher l’icône Maestro" +#: ../src/Assets/AssetsModule.php:521 +msgid "Please choose a billing country to see the available payment methods" +msgstr "Veuillez choisir un pays de facturation pour voir les méthodes de paiement disponibles." -#: build/inc/settings/mollie_creditcard_icons_selector.php:41 -#: inc/settings/mollie_creditcard_icons_selector.php:41 -msgid "Show Mastercard Icon" -msgstr "Afficher l’icône Mastercard" +#: ../src/Assets/AssetsModule.php:570 +msgid "No custom logo selected" +msgstr "Aucun logo personnalisé sélectionné" -#: build/inc/settings/mollie_creditcard_icons_selector.php:46 -#: inc/settings/mollie_creditcard_icons_selector.php:46 -msgid "Show Visa Icon" -msgstr "Afficher l’icône Visa" +#: ../src/Gateway/MolliePaymentGateway.php:271, ../src/Settings/Page/MollieSettingsPage.php:313 +msgid "Test mode enabled." +msgstr "Mode test activé." -#: build/inc/settings/mollie_creditcard_icons_selector.php:51 -#: inc/settings/mollie_creditcard_icons_selector.php:51 -msgid "Show VPay Icon" -msgstr "Afficher l’icône VPay" +#. translators: The surrounding %s's Will be replaced by a link to the global setting page +#: ../src/Gateway/MolliePaymentGateway.php:276 +msgid "No API key provided. Please %1$sset you Mollie API key%2$s first." +msgstr "Aucune clé API n’a été fournie. Veuillez d’abord %1$sconfigurer votre clé API Mollie%2$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:7 -#: inc/settings/mollie_paypal_button_enabler.php:7 -msgid "PayPal button display settings" -msgstr "Réglages de l’affichage du bouton PayPal" +#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Gateway/MolliePaymentGateway.php:291 +msgid "%1$s not enabled in your Mollie profile. You can enable it by editing your %2$sMollie profile%3$s." +msgstr "%1$s pas activé dans votre profil Mollie. Vous pouvez l’activer en éditant votre %2$sprofil Mollie%3$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:12 -#: inc/settings/mollie_paypal_button_enabler.php:12 -msgid "" -"%1sThe PayPal button is optimized for digital goods. And will only appear if " -"the product has no shipping. %2sThe customer's address information can only " -"be retrieved if the transaction has been done with the %3sOrders API%4s.%5s" -"%6s" -msgstr "" -"%1sLe bouton PayPal est optimisé pour les produits numériques. Et " -"n’apparaîtra que si le produit n’a pas d’expédition. %2sLes informations " -"d’adresse du client ne peuvent être récupérées que si la transaction a été " -"effectuée avec %3sl’API Orders%4s.%5s%6s" +#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies +#: ../src/Gateway/MolliePaymentGateway.php:306 +msgid "Current shop currency %1$s not supported by Mollie. Read more about %2$ssupported currencies and payment methods.%3$s " +msgstr "La devise %1$s prise en charge par la boutique, n’est pas prise en charge par Mollie. En savoir plus sur les devises %2$set méthodes de paiement%3$ssupportés. " -#: build/inc/settings/mollie_paypal_button_enabler.php:19 -#: inc/settings/mollie_paypal_button_enabler.php:19 -msgid "Display on cart page" -msgstr "Affichez sur la page du panier" +#: ../src/Gateway/MolliePaymentGateway.php:577 +msgid "You have cancelled your payment. Please complete your order with a different payment method." +msgstr "Vous avez annulé votre paiement. Veuillez compléter votre commande avec une autre méthode de paiement." -#: build/inc/settings/mollie_paypal_button_enabler.php:23 -#: inc/settings/mollie_paypal_button_enabler.php:23 -msgid "Enable the PayPal button to be used in the cart page." -msgstr "Activez le bouton PayPal à utiliser sur la page du panier." +#: ../src/Gateway/MolliePaymentGateway.php:597, ../src/Gateway/MolliePaymentGateway.php:611 +msgid "Your payment was not successful. Please complete your order with a different payment method." +msgstr "Votre paiement n’a pas abouti. Veuillez compléter votre commande avec une autre méthode de paiement." -#: build/inc/settings/mollie_paypal_button_enabler.php:31 -#: inc/settings/mollie_paypal_button_enabler.php:31 -msgid "Display on product page" -msgstr "Affichez sur la page du produit" +#: ../src/Gateway/MolliePaymentGateway.php:647 +msgid "Could not load order %s" +msgstr "Impossible de télécharger la commande %s." -#: build/inc/settings/mollie_paypal_button_enabler.php:35 -#: inc/settings/mollie_paypal_button_enabler.php:35 -msgid "Enable the PayPal button to be used in the product page." -msgstr "Activez le bouton PayPal à utiliser sur la page du produit." +#: ../src/Gateway/MolliePaymentGateway.php:906 +msgid "Order cancelled" +msgstr "Commande annulée" -#: build/inc/settings/mollie_paypal_button_enabler.php:44 -#: inc/settings/mollie_paypal_button_enabler.php:44 -msgctxt "Mollie PayPal Button Settings" -msgid "Button text language and color" -msgstr "Langue et couleur du texte des boutons" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Gateway/MolliePaymentGateway.php:943 +msgid "%1$s payment still pending (%2$s) but customer already returned to the store. Status should be updated automatically in the future, if it doesn't this might indicate a communication issue between the site and Mollie." +msgstr "Paiement %1$s toujours en attente ((%2$s)) mais le client est déjà retourné au magasin. L’état devrait être mis à jour automatiquement à l’avenir, si ce n’est pas le cas, cela pourrait indiquer un problème de communication entre le site et Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:46 -#: inc/settings/mollie_paypal_button_enabler.php:46 -msgctxt "Mollie PayPal Button Settings" -msgid "Select the text and the colour of the button." -msgstr "Sélectionnez le texte et la couleur du bouton." +#: ../src/Gateway/MolliePaymentGateway.php:949, ../src/Payment/MollieObject.php:687, ../src/Payment/MollieObject.php:655, ../src/Payment/MollieOrder.php:275, ../src/Payment/MollieOrder.php:332, ../src/Payment/MollieOrder.php:377, ../src/Payment/MollieOrder.php:459, ../src/Payment/MollieOrder.php:522, ../src/Payment/MollieOrder.php:941, ../src/Payment/MollieOrderService.php:165, ../src/Payment/MollieOrderService.php:428, ../src/Payment/MollieOrderService.php:491, ../src/Payment/MollieOrderService.php:705, ../src/Payment/MolliePayment.php:223, ../src/Payment/MolliePayment.php:310, ../src/Payment/MolliePayment.php:379, ../src/Payment/MolliePayment.php:402, ../src/Payment/PaymentService.php:788, ../src/Subscription/MollieSepaRecurringGateway.php:138, ../src/Subscription/MollieSepaRecurringGateway.php:205, ../src/Subscription/MollieSubscriptionGateway.php:470 +msgid "test mode" +msgstr "Mode test" -#: build/inc/settings/mollie_paypal_button_enabler.php:54 -#: inc/settings/mollie_paypal_button_enabler.php:54 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill blue" -msgstr "Anglais -- Acheter avec PayPal - Bleu pilule" +#: ../src/Gateway/MolliePaymentGateway.php:964 +msgid ", payment pending." +msgstr "Paiement en attente." -#: build/inc/settings/mollie_paypal_button_enabler.php:55 -#: inc/settings/mollie_paypal_button_enabler.php:55 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded blue" -msgstr "Anglais -- Acheter avec PayPal - Bleu arrondi" +#: ../src/Gateway/MolliePaymentGateway.php:996 +msgid "Your order has been cancelled." +msgstr "Votre commande a été annulée." -#: build/inc/settings/mollie_paypal_button_enabler.php:56 -#: inc/settings/mollie_paypal_button_enabler.php:56 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill golden" -msgstr "Anglais -- Acheter avec PayPal - Doré pilule" +#: ../src/Gateway/Surcharge.php:81 +msgid "A surchage fee might apply" +msgstr "Un supplément de frais peut s’appliquer" -#: build/inc/settings/mollie_paypal_button_enabler.php:57 -#: inc/settings/mollie_paypal_button_enabler.php:57 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded golden" -msgstr "Anglais -- Acheter avec PayPal - Doré arrondi" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. +#: ../src/Gateway/Surcharge.php:275 +msgid " + %1$s %2$s fee might apply" +msgstr " + %1$s %2$s de frais peuvent s’appliquer" -#: build/inc/settings/mollie_paypal_button_enabler.php:58 -#: inc/settings/mollie_paypal_button_enabler.php:58 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill gray" -msgstr "Anglais -- Acheter avec PayPal - Gris pilule" +#. translators: Placeholder 1: Fee amount tag. +#: ../src/Gateway/Surcharge.php:292 +msgid " + %1$s%% fee might apply" +msgstr " + %1$s%% de frais peuvent s’appliquer" -#: build/inc/settings/mollie_paypal_button_enabler.php:59 -#: inc/settings/mollie_paypal_button_enabler.php:59 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded gray" -msgstr "Anglais -- Acheter avec PayPal - Gris arrondi" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. +#: ../src/Gateway/Surcharge.php:315 +msgid " + %1$s %2$s + %3$s%% fee might apply" +msgstr " + %1$s %2$s + %3$s%% de frais peuvent s’appliquer" -#: build/inc/settings/mollie_paypal_button_enabler.php:60 -#: inc/settings/mollie_paypal_button_enabler.php:60 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill white" -msgstr "Anglais -- Acheter avec PayPal - Blanc pilule" +#: ../src/Gateway/Surcharge.php:348 +msgid " (incl. VAT)" +msgstr " (TTC)" -#: build/inc/settings/mollie_paypal_button_enabler.php:61 -#: inc/settings/mollie_paypal_button_enabler.php:61 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded white" -msgstr "Anglais -- Acheter avec PayPal - Blanc arrondi" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:682 +msgid "%1$s payment failed via Mollie (%2$s)." +msgstr "Le paiement %1$s a échoué via Mollie (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:62 -#: inc/settings/mollie_paypal_button_enabler.php:62 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill black" -msgstr "Anglais -- Payer avec PayPal - Noir pilule" +#: ../src/Payment/MollieObject.php:650 +msgid "%1$s renewal payment failed via Mollie (%2$s). You will need to manually review the payment and adjust product stocks if you use them." +msgstr "Le paiement de renouvellement %1$s a échoué via Mollie (%2$s). Vous devrez examiner manuellement le paiement et ajuster les stocks de produits si vous les utilisez." -#: build/inc/settings/mollie_paypal_button_enabler.php:63 -#: inc/settings/mollie_paypal_button_enabler.php:63 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded black" -msgstr "Anglais -- Payer avec PayPal - Noir arrondi" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:721 +msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated." +msgstr "Mollie webhook appelé, mais le paiement a également commencé via %s, le statut de la commande n'a pas pu être mis à jour." -#: build/inc/settings/mollie_paypal_button_enabler.php:64 -#: inc/settings/mollie_paypal_button_enabler.php:64 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill blue" -msgstr "Anglais -- Payer avec PayPal - Bleu pilule" +#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID +#: ../src/Payment/MollieObject.php:740, ../src/PaymentMethods/InstructionStrategies/PaypalInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (PayPal transaction ID: %3$s)" +msgstr "Paiement effectué par %1$s - %2$s (ID transaction PayPal : %3$s)" -#: build/inc/settings/mollie_paypal_button_enabler.php:65 -#: inc/settings/mollie_paypal_button_enabler.php:65 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded blue" -msgstr "Anglais -- Payer avec PayPal - Bleu arrondi" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:881 +msgctxt "Payment description for {orderNumber}" +msgid "Order {orderNumber}" +msgstr "Commande {orderNumber}" -#: build/inc/settings/mollie_paypal_button_enabler.php:66 -#: inc/settings/mollie_paypal_button_enabler.php:66 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill golden" -msgstr "Anglais -- Payer avec PayPal - Doré pilule" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:891 +msgctxt "Payment description for {storeName}" +msgid "StoreName {storeName}" +msgstr "Nom du magasin {storeName}" -#: build/inc/settings/mollie_paypal_button_enabler.php:67 -#: inc/settings/mollie_paypal_button_enabler.php:67 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded golden" -msgstr "Anglais -- Payer avec PayPal - Doré arrondi" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:901 +msgctxt "Payment description for {customer.firstname}" +msgid "Customer Firstname {customer.firstname}" +msgstr "Prénom du client {customer.firstname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:68 -#: inc/settings/mollie_paypal_button_enabler.php:68 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill gray" -msgstr "Anglais -- Payer avec PayPal - Gris pilule" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:911 +msgctxt "Payment description for {customer.lastname}" +msgid "Customer Lastname {customer.lastname}" +msgstr "Nom du client {customer.lastname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:69 -#: inc/settings/mollie_paypal_button_enabler.php:69 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded gray" -msgstr "Anglais -- Payer avec PayPal - Gris arrondi" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:921 +msgctxt "Payment description for {customer.company}" +msgid "Customer Company {customer.company}" +msgstr "Société du client {customer.company}" -#: build/inc/settings/mollie_paypal_button_enabler.php:70 -#: inc/settings/mollie_paypal_button_enabler.php:70 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill white" -msgstr "Anglais -- Payer avec PayPal - Blanc pilule" +#: ../src/Payment/MollieObject.php:936 +msgid "Order" +msgstr "Commande" -#: build/inc/settings/mollie_paypal_button_enabler.php:71 -#: inc/settings/mollie_paypal_button_enabler.php:71 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded white" -msgstr "Anglais -- Payer avec PayPal - Blanc arrondi" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:271, ../src/Payment/MolliePayment.php:221, ../src/Subscription/MollieSepaRecurringGateway.php:211 +msgid "Order completed using %1$s payment (%2$s)." +msgstr "Commande terminée avec le paiement %1$s (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:72 -#: inc/settings/mollie_paypal_button_enabler.php:72 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill black" -msgstr "Néerlandais -- Acheter avec PayPal - Noir pilule" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:330 +msgid "Order authorized using %1$s payment (%2$s). Set order to completed in WooCommerce when you have shipped the products, to capture the payment. Do this within 28 days, or the order will expire. To handle individual order lines, process the order via the Mollie Dashboard." +msgstr "Commande autorisée avec le paiement %1$s (%2$s). Définissez la commande sur « exécuté » dans WooCommerce lorsque vous avez expédié les produits afin d’enregistrer le paiement. Faites-le dans les 28 jours, sinon la commande expirera. Pour traiter des lignes de commande individuelles, traitez la commande via le tableau de bord Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:73 -#: inc/settings/mollie_paypal_button_enabler.php:73 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded black" -msgstr "Néerlandais -- Acheter avec PayPal - Noir arrondi" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:375 +msgid "Order completed at Mollie for %1$s order (%2$s). At least one order line completed. Remember: Completed status for an order at Mollie is not the same as Completed status in WooCommerce!" +msgstr "Commande terminée chez Mollie pour %1$s commande (%2$s). Au moins une ligne de commande complétée. Rappel : L’état « Terminé » pour une commande sur Mollie n’est pas identique à l’état « Terminé » dans WooCommerce !" -#: build/inc/settings/mollie_paypal_button_enabler.php:74 -#: inc/settings/mollie_paypal_button_enabler.php:74 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill blue" -msgstr "Néerlandais -- Acheter avec PayPal - Bleu pilule" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:457 +msgid "%1$s order (%2$s) cancelled ." +msgstr "Commande %1$s (%2$s) annulée." -#: build/inc/settings/mollie_paypal_button_enabler.php:75 -#: inc/settings/mollie_paypal_button_enabler.php:75 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded blue" -msgstr "Néerlandais -- Acheter avec PayPal - Bleu arrondi" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:520 +msgid "%1$s order expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "Commande %1$s expirée (%2$s) mais n’a pas été annulée en raison d’un autre paiement en attente (%3$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:76 -#: inc/settings/mollie_paypal_button_enabler.php:76 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill golden" -msgstr "Néerlandais -- Acheter avec PayPal - Doré pilule" +#: ../src/Payment/MollieOrder.php:616 +msgctxt "Order note error" +msgid "The sum of refunds for all order lines is not identical to the refund amount, so this refund will be processed as a payment amount refund, not an order line refund." +msgstr "La somme des remboursements pour toutes les lignes de commande n’est pas identique au montant du remboursement. Ce remboursement sera donc traité comme un remboursement du montant du paiement, et non comme un remboursement de ligne de commande." -#: build/inc/settings/mollie_paypal_button_enabler.php:77 -#: inc/settings/mollie_paypal_button_enabler.php:77 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded golden" -msgstr "Néerlandais -- Acheter avec PayPal - Doré arrondi" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. +#: ../src/Payment/MollieOrder.php:747 +msgid "%1$sx %2$s cancelled for %3$s%4$s in WooCommerce and at Mollie." +msgstr "%1$sx %2$s annulé pour %3$s%4$s dans WooCommerce et sur Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:78 -#: inc/settings/mollie_paypal_button_enabler.php:78 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill gray" -msgstr "Néerlandais -- Acheter avec PayPal - Gris pilule" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. Placeholder 5: Reason. Placeholder 6: Refund Id. +#: ../src/Payment/MollieOrder.php:763 +msgid "%1$sx %2$s refunded for %3$s%4$s in WooCommerce and at Mollie.%5$s Refund ID: %6$s." +msgstr "%1$sx %2$s remboursé pour %3$s%4$s dans WooCommerce et sur Mollie. ID remboursement%5$s : %6$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:79 -#: inc/settings/mollie_paypal_button_enabler.php:79 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded gray" -msgstr "Néerlandais -- Acheter avec PayPal - Gris arrondi" +#. translators: Placeholder 1: payment status. +#: ../src/Payment/MollieOrder.php:823 +msgctxt "Order note error" +msgid "Can not refund order amount that has status %1$s at Mollie." +msgstr "Impossible de rembourser le montant d’une commande avec statut %1$s chez Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:80 -#: inc/settings/mollie_paypal_button_enabler.php:80 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill white" -msgstr "Néerlandais -- Acheter avec PayPal - Blanc pilule" +#. translators: Placeholder 1: Currency. Placeholder 2: Refund amount. Placeholder 3: Reason. Placeholder 4: Refund id. +#: ../src/Payment/MollieOrder.php:845 +msgid "Amount refund of %1$s%2$s refunded in WooCommerce and at Mollie.%3$s Refund ID: %4$s." +msgstr "Montant remboursé de %1$s%2$s remboursé dans WooCommerce et sur Mollie. ID remboursement%3$s : %4$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:81 -#: inc/settings/mollie_paypal_button_enabler.php:81 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded white" -msgstr "Néerlandais -- Acheter avec PayPal - Blanc arrondi" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:936 +msgid "%1$s order (%2$s) expired ." +msgstr "Commande %1$s (%2$s) expirée." -#: build/inc/settings/mollie_paypal_button_enabler.php:82 -#: inc/settings/mollie_paypal_button_enabler.php:82 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill black" -msgstr "Néerlandais -- Payer avec PayPal - Noir pilule" +#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID +#: ../src/Payment/MollieOrderService.php:162 +msgid "%1$s payment %2$s (%3$s), not processed." +msgstr "Paiement %1$s %2$s (%3$s), non traité." -#: build/inc/settings/mollie_paypal_button_enabler.php:83 -#: inc/settings/mollie_paypal_button_enabler.php:83 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded black" -msgstr "Néerlandais -- Payer avec PayPal - Noir arrondi" +#: ../src/Payment/MollieOrderService.php:391 +msgid "New chargeback %s processed! Order note and order status updated." +msgstr "Nouveau remboursement %s traité ! Note et état de la commande mis à jour." -#: build/inc/settings/mollie_paypal_button_enabler.php:84 -#: inc/settings/mollie_paypal_button_enabler.php:84 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill blue" -msgstr "Néerlandais -- Payer avec PayPal - Bleu pilule" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:423 +msgid "%1$s payment charged back via Mollie (%2$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "Paiement %1$s remboursé via Mollie (%2$s). Vous devrez examiner manuellement le paiement (et ajuster les stocks de produits si vous les utilisez)." -#: build/inc/settings/mollie_paypal_button_enabler.php:85 -#: inc/settings/mollie_paypal_button_enabler.php:85 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded blue" -msgstr "Néerlandais -- Payer avec PayPal - Bleu arrondi" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:485 +msgid "%1$s payment charged back via Mollie (%2$s). Subscription status updated, please review (and adjust product stocks if you use it)." +msgstr "Paiement %1$s remboursé via Mollie (%2$s). L’état de l’abonnement a été mis à jour, veuillez vérifier (et ajuster les stocks de produits si vous l’utilisez)." -#: build/inc/settings/mollie_paypal_button_enabler.php:86 -#: inc/settings/mollie_paypal_button_enabler.php:86 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill golden" -msgstr "Néerlandais -- Payer avec PayPal - Doré pilule" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:692 +msgid "%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s paiement %2$s via Mollie (%3$s %4$s). Vous devrez examiner manuellement le paiement (et ajuster les stocks de produits si vous les utilisez)." -#: build/inc/settings/mollie_paypal_button_enabler.php:87 -#: inc/settings/mollie_paypal_button_enabler.php:87 +#: ../src/Payment/MollieOrderService.php:805 +msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated." +msgstr "Nouveau remboursement %s effectué dans Mollie Dashboard ! Note de commande ajoutée, mais commande non mise à jour." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:308 +msgid "%1$s payment (%2$s) cancelled ." +msgstr "Paiement %1$s (%2$s) annulé." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:377 +msgid "%1$s payment expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "Paiement %1$s expiré (%2$s), mais n’a pas été annulé en raison d’un autre paiement en attente (%3$s)." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:400 +msgid "%1$s payment expired (%2$s)." +msgstr "Le paiement %1$s a échoué (%2$s)." + +#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID +#: ../src/Payment/MolliePayment.php:476 +msgid "Refunded %1$s%2$s%3$s - Payment: %4$s, Refund: %5$s" +msgstr "Remboursé %1$s%2$s%3$s - Paiement : %4$s, Remboursement : %5$s." + +#. translators: Placeholder 1: order number +#: ../src/Payment/MollieSubscription.php:80 +msgctxt "Default payment description for subscription recurring payments" +msgid "Order %1$s" +msgstr "Commande %1$s" + +#: ../src/Payment/OrderItemsRefunder.php:121 +msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item." +msgstr "L'un des éléments de commande WooCommerce n'a pas l'ID d'élément meta value associé à l'élément de commande Mollie." + +#: ../src/Payment/OrderItemsRefunder.php:166 +msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount." +msgstr "Impossible de retrouver l’ID d’élément de commande correspondant à l’élément distant : %1$s. Essayez de rembourser le montant." + +#: ../src/Payment/OrderItemsRefunder.php:190 +msgid "Empty WooCommerce order items or mollie order lines." +msgstr "Videz les éléments de commande WooCommerce ou les lignes de commande Mollie." + +#: ../src/Payment/OrderLines.php:509 +msgid "Shipping" +msgstr "Expédier" + +#: ../src/Payment/PaymentModule.php:194 +msgid "Unpaid order cancelled - time limit reached." +msgstr "Commande non payée annulée - le délai est atteint." + +#: ../src/Payment/PaymentModule.php:213 +msgid "%1$s items refunded in WooCommerce and at Mollie." +msgstr "%1$s articles remboursés dans WooCommerce et sur Mollie." + +#: ../src/Payment/PaymentModule.php:231 +msgid "%1$s items cancelled in WooCommerce and at Mollie." +msgstr "%1$s articles annulés dans WooCommerce et sur Mollie." + +#: ../src/Payment/PaymentModule.php:350 +msgctxt "Order note info" +msgid "Processing a payment, no capture needed" +msgstr "Traitement d’un paiement, aucune capture nécessaire" + +#: ../src/Payment/PaymentModule.php:364 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be shipped/captured." +msgstr "Commande déjà annulée chez Mollie, ne peut être expédiée/capturée." + +#: ../src/Payment/PaymentModule.php:372 +msgctxt "Order note info" +msgid "Order already completed at Mollie, can not be shipped/captured." +msgstr "Commande déjà effectuée chez Mollie, ne peut être expédiée/capturée." + +#: ../src/Payment/PaymentModule.php:381 +msgctxt "Order note info" +msgid "Order successfully updated to shipped at Mollie, capture of funds underway." +msgstr "Commande mise à jour avec succès pour être expédiée à Mollie, capture des fonds en cours." + +#: ../src/Payment/PaymentModule.php:387 +msgctxt "Order note info" +msgid "Order not paid or authorized at Mollie yet, can not be shipped." +msgstr "La commande n’est pas encore payée ou autorisée chez Mollie, elle ne peut pas être expédiée." + +#: ../src/Payment/PaymentModule.php:421 +msgctxt "Order note info" +msgid "Order contains Mollie payment method, but not a valid Mollie Order ID. Canceling order failed." +msgstr "La commande contient un mode de paiement Mollie, mais pas d’ID de commande Mollie valide. L’annulation de la commande a échoué." + +#: ../src/Payment/PaymentModule.php:442 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be canceled again." +msgstr "Commande déjà annulée chez Mollie, ne peut être annulée une seconde fois." + +#: ../src/Payment/PaymentModule.php:452 +msgctxt "Order note info" +msgid "Order also cancelled at Mollie." +msgstr "Commande également annulée chez Mollie." + +#: ../src/Payment/PaymentModule.php:458 +msgctxt "Order note info" +msgid "Order could not be canceled at Mollie, because order status is " +msgstr "La commande n’a pas pu être annulée chez Mollie, parce que le statut de la commande est " + +#: ../src/Payment/PaymentService.php:620 +msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription." +msgstr "La modification d’abonnement a échoué, aucun mandat valide trouvé. Passez une commande entièrement nouvelle pour modifier votre abonnement." + +#: ../src/Payment/PaymentService.php:626 +msgid "Failed switching subscriptions, no valid mandate." +msgstr "Le changement d’abonnement a échoué, pas de mandat valide." + +#: ../src/Payment/PaymentService.php:635 +msgid "Order completed internally because of an existing valid mandate at Mollie." +msgstr "Commande complétée en interne en raison d'un mandat valide existant chez Mollie." + +#. translators: Placeholder 1: Payment method title +#: ../src/Payment/PaymentService.php:708, ../src/Buttons/ApplePayButton/AppleAjaxRequests.php:723, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:113, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:159 +msgid "Could not create %s payment." +msgstr "Impossible de créer un paiement %s." + +#: ../src/Payment/PaymentService.php:766, ../src/Subscription/MollieSepaRecurringGateway.php:127, ../src/Subscription/MollieSubscriptionGateway.php:461 +msgid "Awaiting payment confirmation." +msgstr "En attente de la confirmation de paiement." + +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Payment/PaymentService.php:786 +msgid "%s payment started (%s)." +msgstr "Le paiement %s a commencé (%s)." + +#: ../src/Payment/RefundLineItemsBuilder.php:126 +msgid "Mollie doesn't allow a partial refund of the full amount or quantity of at least one order line. Trying to process this as an amount refund instead." +msgstr "Mollie n'autorise pas le remboursement partiel du montant ou de la quantité totale d'au moins une ligne de commande. Essayer de traiter ceci comme un remboursement de montant." + +#: ../src/PaymentMethods/Applepay.php:14 +msgid "To accept payments via Apple Pay" +msgstr "Pour accepter les paiements via Apple Pay" + +#: ../src/PaymentMethods/Bancontact.php:14 +msgid "Bancontact" +msgstr "Bancontact" + +#: ../src/PaymentMethods/Banktransfer.php:33 +msgid "Bank Transfer" +msgstr "Transfert Bancaire" + +#: ../src/PaymentMethods/Banktransfer.php:55, ../src/Settings/General/MollieGeneralSettings.php:235 +msgid "Activate expiry time setting" +msgstr "Activez les réglages de la date d’expiration" + +#: ../src/PaymentMethods/Banktransfer.php:56, ../src/Settings/General/MollieGeneralSettings.php:236 +msgid "Enable expiry time for payments" +msgstr "Activez date d'expiration pour les paiements" + +#: ../src/PaymentMethods/Banktransfer.php:57 +msgid "Enable this option if you want to be able to set the time after which the payment will expire. This will turn all transactions into payments instead of orders" +msgstr "Activez cette option si vous voulez fixer la date après laquelle le paiement expirera. Toutes les transactions seront traitées comme des paiements, et non comme des commandes" + +#: ../src/PaymentMethods/Banktransfer.php:62, ../src/Settings/General/MollieGeneralSettings.php:242 +msgid "Expiry time" +msgstr "Date d'expiration" + +#. translators: Placeholder 1: Default expiry days. +#: ../src/PaymentMethods/Banktransfer.php:65 +msgid "Number of DAYS after the payment will expire. Default %d days" +msgstr "Nombre de JOURS après lequel le paiement expirera. Par défaut %d jours" + +#: ../src/PaymentMethods/Banktransfer.php:74 +msgid "Skip Mollie payment screen" +msgstr "Sauter l'écran de paiement Mollie" + +#: ../src/PaymentMethods/Banktransfer.php:75 +msgid "Skip Mollie payment screen when Bank Transfer is selected" +msgstr "Sauter l'écran de paiement Mollie lorsque le virement bancaire est sélectionné" + +#: ../src/PaymentMethods/Banktransfer.php:76 +msgid "Enable this option if you want to skip redirecting your user to the Mollie payment screen, instead this will redirect your user directly to the WooCommerce order received page displaying instructions how to complete the Bank Transfer payment." +msgstr "Activez cette option si vous voulez sauter la redirection de votre utilisateur vers l'écran de paiement Mollie, au contraire, cela redirigera votre utilisateur directement vers la page de commande WooCommerce affichant les instructions pour compléter le paiement par virement bancaire." + +#: ../src/PaymentMethods/Belfius.php:13 +msgid "Belfius Direct Net" +msgstr "Belfius Direct Net" + +#: ../src/PaymentMethods/Creditcard.php:16 +msgid "Credit card" +msgstr "Carte de crédit" + +#: ../src/PaymentMethods/Creditcard.php:52 +msgid "Enable Mollie Components" +msgstr "Activer les composants Mollie" + +#. translators: Placeholder 1: Mollie Components. +#: ../src/PaymentMethods/Creditcard.php:55 +msgid "Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." +msgstr "Utiliser les composants Mollie pour cette passerelle En savoir plus sur %s et sur la façon dont il améliore vos conversions." + +#: ../src/PaymentMethods/Creditcard.php:59, ../src/Settings/Page/Components.php:21, ../src/Settings/Page/MollieSettingsPage.php:703 +msgid "Mollie Components" +msgstr "Composants Mollie" + +#: ../src/PaymentMethods/Creditcard.php:92 +msgid "Customize Icons" +msgstr "Personnaliser les icônes" + +#: ../src/PaymentMethods/Creditcard.php:99 +msgid "Enable Icons Selector" +msgstr "Activer le sélecteur d’icônes" + +#: ../src/PaymentMethods/Creditcard.php:100 +msgid "Show customized creditcard icons on checkout page" +msgstr "Afficher les icônes de carte de crédit personnalisés sur la page de paiement" + +#: ../src/PaymentMethods/Creditcard.php:108 +msgid "Show American Express Icon" +msgstr "Afficher l’icône American Express" + +#: ../src/PaymentMethods/Creditcard.php:113 +msgid "Show Carta Si Icon" +msgstr "Afficher l’icône Carta Si" + +#: ../src/PaymentMethods/Creditcard.php:118 +msgid "Show Carte Bancaire Icon" +msgstr "Afficher l’icône Carte Bancaire" + +#: ../src/PaymentMethods/Creditcard.php:123 +msgid "Show Maestro Icon" +msgstr "Afficher l’icône Maestro" + +#: ../src/PaymentMethods/Creditcard.php:128 +msgid "Show Mastercard Icon" +msgstr "Afficher l’icône Mastercard" + +#: ../src/PaymentMethods/Creditcard.php:133 +msgid "Show Visa Icon" +msgstr "Afficher l’icône Visa" + +#: ../src/PaymentMethods/Creditcard.php:138 +msgid "Show VPay Icon" +msgstr "Afficher l’icône VPay" + +#: ../src/PaymentMethods/Directdebit.php:13 +msgid "SEPA Direct Debit" +msgstr "Prélevement SEPA" + +#: ../src/PaymentMethods/Directdebit.php:14 +msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscriptions, and will not be shown in the WooCommerce checkout for regular payments! You also need to enable iDEAL and/or other \"first\" payment methods if you want to use SEPA Direct Debit." +msgstr "Le prélèvement SEPA est utilisé pour les paiements récurrents avec les abonnements WooCommerce, et ne sera pas affiché dans la caisse de WooCommerce pour les paiements normaux ! Vous devez également activer iDEAL et/ou d’autres moyens de paiement « préalables » si vous souhaitez utiliser le prélèvement SEPA." + +#: ../src/PaymentMethods/Eps.php:13 +msgid "EPS" +msgstr "EPS" + +#: ../src/PaymentMethods/Giftcard.php:30 +msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency" +msgid "Mollie - Giftcard details: %1$s %2$s %3$s." +msgstr "Mollie - Détails des cartes cadeaux : %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:42 +msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency" +msgid " Remainder: %1$s %2$s %3$s." +msgstr " Solde : %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:60 +msgid "Gift cards" +msgstr "Cartes cadeaux" + +#: ../src/PaymentMethods/Giftcard.php:62, ../src/PaymentMethods/Giftcard.php:105 +msgid "Select your gift card" +msgstr "Sélectionner votre carte cadeau" + +#: ../src/PaymentMethods/Giftcard.php:78 +msgid "Show gift cards dropdown" +msgstr "Afficher le menu déroulant Cartes-cadeaux" + +#: ../src/PaymentMethods/Giftcard.php:84 +msgid "If you disable this, a dropdown with various gift cards will not be shown in the WooCommerce checkout, so users will select a gift card on the Mollie payment page after checkout." +msgstr "Si vous désactivez cette option, un menu déroulant avec différentes cartes cadeaux ne sera pas affiché dans la caisse de WooCommerce, de sorte que les utilisateurs sélectionneront une carte cadeau sur la page de paiement Mollie après la transaction." + +#: ../src/PaymentMethods/Giftcard.php:93, ../src/PaymentMethods/Ideal.php:46, ../src/PaymentMethods/Kbc.php:48 +msgid "Issuers empty option" +msgstr "Émetteurs option vide" + +#: ../src/PaymentMethods/Giftcard.php:99 +msgid "This text will be displayed as the first option in the gift card dropdown, but only if the above 'Show gift cards dropdown' is enabled." +msgstr "Ce texte sera affiché comme première option dans la liste déroulante des cartes cadeaux, mais uniquement si le menu déroulant « Afficher les cartes cadeaux » ci-dessus est activé." + +#: ../src/PaymentMethods/Giropay.php:13 +msgid "Giropay" +msgstr "Giropay" + +#: ../src/PaymentMethods/Ideal.php:15 +msgid "iDEAL" +msgstr "iDEAL" + +#: ../src/PaymentMethods/Ideal.php:17, ../src/PaymentMethods/Ideal.php:55, ../src/PaymentMethods/Kbc.php:16, ../src/PaymentMethods/Kbc.php:60 +msgid "Select your bank" +msgstr "Sélectionnez votre banque" + +#: ../src/PaymentMethods/Ideal.php:34 +msgid "Show iDEAL banks dropdown" +msgstr "Afficher le menu déroulant des banques iDEAL" + +#: ../src/PaymentMethods/Ideal.php:37 +msgid "If you disable this, a dropdown with various iDEAL banks will not be shown in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie payment page after checkout." +msgstr "Si vous désactivez cette option, un menu déroulant avec différentes banques iDEAL ne sera pas affiché dans la caisse de WooCommerce, de sorte que les utilisateurs sélectionneront une banque iDEAL sur la page de paiement Mollie après la transaction." + +#: ../src/PaymentMethods/Ideal.php:49 +msgid "This text will be displayed as the first option in the iDEAL issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above 'Show iDEAL banks dropdown' is enabled." +msgstr "Ce texte sera affiché comme première option dans la liste déroulante des émetteurs iDEAL, si rien n’est entré, « Sélectionnez votre banque » sera affiché. Seulement si « Afficher le menu déroulant des banques iDEAL » ci-dessus est activé." + +#: ../src/PaymentMethods/In3.php:13 +msgid "in3" +msgstr "in3" + +#: ../src/PaymentMethods/In3.php:15 +msgid "Pay in 3 instalments, 0% interest" +msgstr "Payez en 3 fois, 0 % intérêt" + +#: ../src/PaymentMethods/Kbc.php:14 +msgid "KBC/CBC Payment Button" +msgstr "Bouton de paiement KBC/CBC" + +#: ../src/PaymentMethods/Kbc.php:33 +msgid "Show KBC/CBC banks dropdown" +msgstr "Afficher le menu déroulant des banques KBC/CBC" + +#: ../src/PaymentMethods/Kbc.php:39 +msgid "If you disable this, a dropdown with various KBC/CBC banks will not be shown in the WooCommerce checkout, so users will select a KBC/CBC bank on the Mollie payment page after checkout." +msgstr "Si vous désactivez cette option, un menu déroulant avec différentes banques KBC/CBC ne s'affichera pas dans la caisse de WooCommerce, de sorte que les utilisateurs sélectionneront une banque KBC/CBC sur la page de paiement Mollie après la transaction." + +#: ../src/PaymentMethods/Kbc.php:54 +msgid "This text will be displayed as the first option in the KBC/CBC issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above ''Show KBC/CBC banks dropdown' is enabled." +msgstr "Ce texte sera affiché comme première option dans la liste déroulante des émetteurs KBC/CBC, si rien n’est entré, « Sélectionnez votre banque » sera affiché. Seulement si « Afficher le menu déroulant des banques KBC/CBC » est activé." + +#: ../src/PaymentMethods/Klarnapaylater.php:13 +msgid "Klarna Pay later" +msgstr "Klarna Pay Later" + +#: ../src/PaymentMethods/Klarnapaylater.php:14, ../src/PaymentMethods/Klarnapaynow.php:14, ../src/PaymentMethods/Klarnasliceit.php:15 +msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required." +msgstr "Pour accepter les paiements via Klarna, tous les champs de paiement par défaut de WooCommerce doivent être activés et obligatoires." + +#: ../src/PaymentMethods/Klarnapaynow.php:13 +msgid "Klarna Pay Now" +msgstr "Klarna Pay Now" + +#: ../src/PaymentMethods/Klarnasliceit.php:14 +msgid "Klarna Slice it" +msgstr "Klarna Slice it" + +#: ../src/PaymentMethods/Mybank.php:14 +msgid "MyBank" +msgstr "MyBank" + +#: ../src/PaymentMethods/Mybank.php:15 +msgid "To accept payments via MyBank" +msgstr "Pour accepter les paiements via MyBank" + +#: ../src/PaymentMethods/Paypal.php:14 +msgid "PayPal" +msgstr "PayPal" + +#: ../src/PaymentMethods/Paypal.php:34 +msgid "Display on cart page" +msgstr "Affichez sur la page du panier" + +#: ../src/PaymentMethods/Paypal.php:38 +msgid "Enable the PayPal button to be used in the cart page." +msgstr "Activez le bouton PayPal à utiliser sur la page du panier." + +#: ../src/PaymentMethods/Paypal.php:46 +msgid "Display on product page" +msgstr "Affichez sur la page du produit" + +#: ../src/PaymentMethods/Paypal.php:50 +msgid "Enable the PayPal button to be used in the product page." +msgstr "Activez le bouton PayPal à utiliser sur la page du produit." + +#: ../src/PaymentMethods/Paypal.php:59 +msgctxt "Mollie PayPal Button Settings" +msgid "Button text language and color" +msgstr "Langue et couleur du texte des boutons" + +#: ../src/PaymentMethods/Paypal.php:60 +msgctxt "Mollie PayPal Button Settings" +msgid "Select the text and the colour of the button." +msgstr "Sélectionnez le texte et la couleur du bouton." + +#: ../src/PaymentMethods/Paypal.php:70 +msgid "Minimum amount to display button" +msgstr "Montant minimum entraînant l’affichage du bouton" + +#: ../src/PaymentMethods/Paypal.php:74 +msgid "If the product or the cart total amount is under this number, then the button will not show up." +msgstr "Si le produit ou le montant total du panier est inférieur à ce chiffre, le bouton ne s'affichera pas." + +#: ../src/PaymentMethods/Paypal.php:89 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill blue" +msgstr "Anglais -- Acheter avec PayPal - Bleu pilule" + +#: ../src/PaymentMethods/Paypal.php:90 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded blue" +msgstr "Anglais -- Acheter avec PayPal - Bleu arrondi" + +#: ../src/PaymentMethods/Paypal.php:91 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill golden" +msgstr "Anglais -- Acheter avec PayPal - Doré pilule" + +#: ../src/PaymentMethods/Paypal.php:92 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded golden" +msgstr "Anglais -- Acheter avec PayPal - Doré arrondi" + +#: ../src/PaymentMethods/Paypal.php:93 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill gray" +msgstr "Anglais -- Acheter avec PayPal - Gris pilule" + +#: ../src/PaymentMethods/Paypal.php:94 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded gray" +msgstr "Anglais -- Acheter avec PayPal - Gris arrondi" + +#: ../src/PaymentMethods/Paypal.php:95 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill white" +msgstr "Anglais -- Acheter avec PayPal - Blanc pilule" + +#: ../src/PaymentMethods/Paypal.php:96 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded white" +msgstr "Anglais -- Acheter avec PayPal - Blanc arrondi" + +#: ../src/PaymentMethods/Paypal.php:97 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill black" +msgstr "Anglais -- Payer avec PayPal - Noir pilule" + +#: ../src/PaymentMethods/Paypal.php:98 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded black" +msgstr "Anglais -- Payer avec PayPal - Noir arrondi" + +#: ../src/PaymentMethods/Paypal.php:99 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill blue" +msgstr "Anglais -- Payer avec PayPal - Bleu pilule" + +#: ../src/PaymentMethods/Paypal.php:100 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded blue" +msgstr "Anglais -- Payer avec PayPal - Bleu arrondi" + +#: ../src/PaymentMethods/Paypal.php:101 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill golden" +msgstr "Anglais -- Payer avec PayPal - Doré pilule" + +#: ../src/PaymentMethods/Paypal.php:102 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded golden" +msgstr "Anglais -- Payer avec PayPal - Doré arrondi" + +#: ../src/PaymentMethods/Paypal.php:103 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill gray" +msgstr "Anglais -- Payer avec PayPal - Gris pilule" + +#: ../src/PaymentMethods/Paypal.php:104 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded gray" +msgstr "Anglais -- Payer avec PayPal - Gris arrondi" + +#: ../src/PaymentMethods/Paypal.php:105 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill white" +msgstr "Anglais -- Payer avec PayPal - Blanc pilule" + +#: ../src/PaymentMethods/Paypal.php:106 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded white" +msgstr "Anglais -- Payer avec PayPal - Blanc arrondi" + +#: ../src/PaymentMethods/Paypal.php:107 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill black" +msgstr "Néerlandais -- Acheter avec PayPal - Noir pilule" + +#: ../src/PaymentMethods/Paypal.php:108 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded black" +msgstr "Néerlandais -- Acheter avec PayPal - Noir arrondi" + +#: ../src/PaymentMethods/Paypal.php:109 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill blue" +msgstr "Néerlandais -- Acheter avec PayPal - Bleu pilule" + +#: ../src/PaymentMethods/Paypal.php:110 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded blue" +msgstr "Néerlandais -- Acheter avec PayPal - Bleu arrondi" + +#: ../src/PaymentMethods/Paypal.php:111 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill golden" +msgstr "Néerlandais -- Acheter avec PayPal - Doré pilule" + +#: ../src/PaymentMethods/Paypal.php:112 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded golden" +msgstr "Néerlandais -- Acheter avec PayPal - Doré arrondi" + +#: ../src/PaymentMethods/Paypal.php:113 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill gray" +msgstr "Néerlandais -- Acheter avec PayPal - Gris pilule" + +#: ../src/PaymentMethods/Paypal.php:114 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded gray" +msgstr "Néerlandais -- Acheter avec PayPal - Gris arrondi" + +#: ../src/PaymentMethods/Paypal.php:115 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill white" +msgstr "Néerlandais -- Acheter avec PayPal - Blanc pilule" + +#: ../src/PaymentMethods/Paypal.php:116 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded white" +msgstr "Néerlandais -- Acheter avec PayPal - Blanc arrondi" + +#: ../src/PaymentMethods/Paypal.php:117 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill black" +msgstr "Néerlandais -- Payer avec PayPal - Noir pilule" + +#: ../src/PaymentMethods/Paypal.php:118 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded black" +msgstr "Néerlandais -- Payer avec PayPal - Noir arrondi" + +#: ../src/PaymentMethods/Paypal.php:119 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill blue" +msgstr "Néerlandais -- Payer avec PayPal - Bleu pilule" + +#: ../src/PaymentMethods/Paypal.php:120 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded blue" +msgstr "Néerlandais -- Payer avec PayPal - Bleu arrondi" + +#: ../src/PaymentMethods/Paypal.php:121 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill golden" +msgstr "Néerlandais -- Payer avec PayPal - Doré pilule" + +#: ../src/PaymentMethods/Paypal.php:122 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded golden" msgstr "Néerlandais -- Payer avec PayPal - Doré arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:88 -#: inc/settings/mollie_paypal_button_enabler.php:88 +#: ../src/PaymentMethods/Paypal.php:123 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill gray" msgstr "Néerlandais -- Payer avec PayPal - Gris pilule" -#: build/inc/settings/mollie_paypal_button_enabler.php:89 -#: inc/settings/mollie_paypal_button_enabler.php:89 +#: ../src/PaymentMethods/Paypal.php:124 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded gray" msgstr "Néerlandais -- Payer avec PayPal - Gris arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:90 -#: inc/settings/mollie_paypal_button_enabler.php:90 +#: ../src/PaymentMethods/Paypal.php:125 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill white" msgstr "Néerlandais -- Payer avec PayPal - Blanc pilule" -#: build/inc/settings/mollie_paypal_button_enabler.php:91 -#: inc/settings/mollie_paypal_button_enabler.php:91 +#: ../src/PaymentMethods/Paypal.php:126 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded white" msgstr "Néerlandais -- Payer avec PayPal - Blanc arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:92 -#: inc/settings/mollie_paypal_button_enabler.php:92 +#: ../src/PaymentMethods/Paypal.php:127 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill black" msgstr "Allemand -- Acheter avec PayPal - Noir pilule" -#: build/inc/settings/mollie_paypal_button_enabler.php:93 -#: inc/settings/mollie_paypal_button_enabler.php:93 +#: ../src/PaymentMethods/Paypal.php:128 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded black" msgstr "Allemand -- Acheter avec PayPal - Noir arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:94 -#: inc/settings/mollie_paypal_button_enabler.php:94 +#: ../src/PaymentMethods/Paypal.php:129 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill blue" msgstr "Allemand -- Acheter avec PayPal - Bleu pilule" -#: build/inc/settings/mollie_paypal_button_enabler.php:95 -#: inc/settings/mollie_paypal_button_enabler.php:95 +#: ../src/PaymentMethods/Paypal.php:130 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded blue" msgstr "Allemand -- Acheter avec PayPal - Bleu arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:96 -#: inc/settings/mollie_paypal_button_enabler.php:96 +#: ../src/PaymentMethods/Paypal.php:131 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill golden" msgstr "Allemand -- Acheter avec PayPal - Doré pilule" -#: build/inc/settings/mollie_paypal_button_enabler.php:97 -#: inc/settings/mollie_paypal_button_enabler.php:97 +#: ../src/PaymentMethods/Paypal.php:132 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded golden" msgstr "Allemand -- Acheter avec PayPal - Doré arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:98 -#: inc/settings/mollie_paypal_button_enabler.php:98 +#: ../src/PaymentMethods/Paypal.php:133 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill gray" msgstr "Allemand -- Acheter avec PayPal - Gris pilule" -#: build/inc/settings/mollie_paypal_button_enabler.php:99 -#: inc/settings/mollie_paypal_button_enabler.php:99 +#: ../src/PaymentMethods/Paypal.php:134 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded gray" msgstr "Allemand -- Acheter avec PayPal - Gris arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:100 -#: inc/settings/mollie_paypal_button_enabler.php:100 +#: ../src/PaymentMethods/Paypal.php:135 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill white" msgstr "Allemand -- Acheter avec PayPal - Blanc pilule" -#: build/inc/settings/mollie_paypal_button_enabler.php:101 -#: inc/settings/mollie_paypal_button_enabler.php:101 +#: ../src/PaymentMethods/Paypal.php:136 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded white" msgstr "Allemand -- Acheter avec PayPal - Blanc arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:102 -#: inc/settings/mollie_paypal_button_enabler.php:102 +#: ../src/PaymentMethods/Paypal.php:137 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill black" msgstr "Allemand -- Payer avec PayPal - Noir pilule" -#: build/inc/settings/mollie_paypal_button_enabler.php:103 -#: inc/settings/mollie_paypal_button_enabler.php:103 +#: ../src/PaymentMethods/Paypal.php:138 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded black" msgstr "Allemand -- Payer avec PayPal - Noir arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:104 -#: inc/settings/mollie_paypal_button_enabler.php:104 +#: ../src/PaymentMethods/Paypal.php:139 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill blue" msgstr "Allemand -- Payer avec PayPal - Bleu pilule" -#: build/inc/settings/mollie_paypal_button_enabler.php:105 -#: inc/settings/mollie_paypal_button_enabler.php:105 +#: ../src/PaymentMethods/Paypal.php:140 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded blue" msgstr "Allemand -- Payer avec PayPal - Bleu arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:106 -#: inc/settings/mollie_paypal_button_enabler.php:106 +#: ../src/PaymentMethods/Paypal.php:141 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill golden" msgstr "Allemand -- Payer avec PayPal - Doré pilule" -#: build/inc/settings/mollie_paypal_button_enabler.php:107 -#: inc/settings/mollie_paypal_button_enabler.php:107 +#: ../src/PaymentMethods/Paypal.php:142 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded golden" msgstr "Allemand -- Payer avec PayPal - Doré arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:108 -#: inc/settings/mollie_paypal_button_enabler.php:108 +#: ../src/PaymentMethods/Paypal.php:143 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill gray" msgstr "Allemand -- Payer avec PayPal - Gris pilule" -#: build/inc/settings/mollie_paypal_button_enabler.php:109 -#: inc/settings/mollie_paypal_button_enabler.php:109 +#: ../src/PaymentMethods/Paypal.php:144 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded gray" msgstr "Allemand -- Payer avec PayPal - Gris arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:110 -#: inc/settings/mollie_paypal_button_enabler.php:110 +#: ../src/PaymentMethods/Paypal.php:145 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill white" msgstr "Allemand -- Payer avec PayPal - Blanc pilule" -#: build/inc/settings/mollie_paypal_button_enabler.php:111 -#: inc/settings/mollie_paypal_button_enabler.php:111 +#: ../src/PaymentMethods/Paypal.php:146 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded white" msgstr "Allemand -- Payer avec PayPal - Blanc arrondi" -#: build/inc/settings/mollie_paypal_button_enabler.php:112 -#: inc/settings/mollie_paypal_button_enabler.php:112 +#: ../src/PaymentMethods/Paypal.php:147 msgctxt "Mollie PayPal button Settings" msgid "French -- Buy with PayPal - Gold" msgstr "Français -- Acheter avec PayPal - Or" -#: build/inc/settings/mollie_paypal_button_enabler.php:113 -#: inc/settings/mollie_paypal_button_enabler.php:113 +#: ../src/PaymentMethods/Paypal.php:148 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Gold" msgstr "Français -- Payer avec PayPal - Or" -#: build/inc/settings/mollie_paypal_button_enabler.php:114 -#: inc/settings/mollie_paypal_button_enabler.php:114 +#: ../src/PaymentMethods/Paypal.php:149 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Silver" msgstr "Français -- Payer avec PayPal - Argent" -#: build/inc/settings/mollie_paypal_button_enabler.php:115 -#: inc/settings/mollie_paypal_button_enabler.php:115 +#: ../src/PaymentMethods/Paypal.php:150 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Buy with PayPal - Gold" msgstr "Polonais -- Acheter avec PayPal - Or" -#: build/inc/settings/mollie_paypal_button_enabler.php:116 -#: inc/settings/mollie_paypal_button_enabler.php:116 +#: ../src/PaymentMethods/Paypal.php:151 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Checkout with PayPal - Gold" msgstr "Polonais -- Payer avec PayPal - Or" -#: build/inc/settings/mollie_paypal_button_enabler.php:117 -#: inc/settings/mollie_paypal_button_enabler.php:117 +#: ../src/PaymentMethods/Paypal.php:152 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Checkout with PayPal - Silver" msgstr "Polonais -- Payer avec PayPal - Argent" -#: build/inc/settings/mollie_paypal_button_enabler.php:122 -#: inc/settings/mollie_paypal_button_enabler.php:122 -msgid "Minimum amount to display button" -msgstr "Montant minimum entraînant l’affichage du bouton" - -#: build/inc/settings/mollie_paypal_button_enabler.php:126 -#: inc/settings/mollie_paypal_button_enabler.php:126 -msgid "" -"If the product or the cart total amount is under this number, then the " -"button will not show up." -msgstr "" -"Si le produit ou le montant total du panier est inférieur à ce chiffre, le " -"bouton ne s'affichera pas." - -#: build/mollie-payments-for-woocommerce.php:90 -#: mollie-payments-for-woocommerce.php:90 -msgid "" -"%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set " -"your API keys here%4$s." -msgstr "" -"%1$sMollie Payments pour WooCommerce : Il manque la clé API%2$s Veillez%3$s " -"saisir votre clé API ici%4$s." - -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: build/src/Mollie/WC/Gateway/Abstract.php:685 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: src/Mollie/WC/Gateway/Abstract.php:685 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -msgid "Could not create %s payment." -msgstr "Impossible de créer un paiement %s." - -#: build/src/Mollie/WC/Gateway/Abstract.php:138 -#: src/Mollie/WC/Gateway/Abstract.php:138 -msgid "No custom logo selected" -msgstr "Aucun logo personnalisé sélectionné" - -#: build/src/Mollie/WC/Gateway/Abstract.php:221 -#: src/Mollie/WC/Gateway/Abstract.php:221 -msgid "Gateway Disabled" -msgstr "Passerelle désactivée" - -#: build/src/Mollie/WC/Gateway/Abstract.php:244 -#: src/Mollie/WC/Gateway/Abstract.php:244 -msgid "Return to payments" -msgstr "Revenir aux paiements" - -#: build/src/Mollie/WC/Gateway/Abstract.php:260 -#: build/src/Mollie/WC/Helper/Settings.php:114 -#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114 -msgid "Sell to specific countries" -msgstr "Vendre à des pays spécifiques" - -#: build/src/Mollie/WC/Gateway/Abstract.php:272 -#: src/Mollie/WC/Gateway/Abstract.php:272 -msgid "Choose countries…" -msgstr "Choisir les pays…" - -#: build/src/Mollie/WC/Gateway/Abstract.php:273 -#: src/Mollie/WC/Gateway/Abstract.php:273 -msgid "Country" -msgstr "Pays" - -#: build/src/Mollie/WC/Gateway/Abstract.php:282 -#: src/Mollie/WC/Gateway/Abstract.php:282 -msgid "Select all" -msgstr "Tout sélectionner" - -#: build/src/Mollie/WC/Gateway/Abstract.php:283 -#: src/Mollie/WC/Gateway/Abstract.php:283 -msgid "Select none" -msgstr "Ne rien sélectionner" - -#: build/src/Mollie/WC/Gateway/Abstract.php:337 -#: build/src/Mollie/WC/Helper/Settings.php:558 -#: src/Mollie/WC/Gateway/Abstract.php:337 src/Mollie/WC/Helper/Settings.php:558 -msgid "Test mode enabled." -msgstr "Mode test activé." - -#. translators: The surrounding %s's Will be replaced by a link to the global setting page -#: build/src/Mollie/WC/Gateway/Abstract.php:339 -#: src/Mollie/WC/Gateway/Abstract.php:339 -msgid "No API key provided. Please %sset you Mollie API key%s first." -msgstr "" -"Aucune clé API n’a été fournie. Veuillez d’abord %sconfigurer votre clé API " -"Mollie%s." - -#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Gateway/Abstract.php:351 -#: src/Mollie/WC/Gateway/Abstract.php:351 -msgid "" -"%s not enabled in your Mollie profile. You can enable it by editing your " -"%sMollie profile%s." -msgstr "" -"%s pas activé dans votre profil Mollie. Vous pouvez l’activer en éditant " -"votre %sprofil Mollie%s." - -#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies -#: build/src/Mollie/WC/Gateway/Abstract.php:363 -#: src/Mollie/WC/Gateway/Abstract.php:363 -msgid "" -"Current shop currency %s not supported by Mollie. Read more about " -"%ssupported currencies and payment methods.%s " -msgstr "" -"La devise %s prise en charge par la boutique, n’est pas prise en charge par " -"Mollie. En savoir plus sur les devises %set méthodes de paiement%ssupportés. " - -#: build/src/Mollie/WC/Gateway/Abstract.php:525 -#: src/Mollie/WC/Gateway/Abstract.php:525 -msgid "Could not load order %s" -msgstr "Impossible de télécharger la commande %s." - -#: build/src/Mollie/WC/Gateway/Abstract.php:577 -#: src/Mollie/WC/Gateway/Abstract.php:577 -msgid "" -"Order completed internally because of an existing valid mandate at Mollie." -msgstr "" -"Commande complétée en interne en raison d'un mandat valide existant chez " -"Mollie." - -#: build/src/Mollie/WC/Gateway/Abstract.php:588 -#: src/Mollie/WC/Gateway/Abstract.php:588 -msgid "" -"Subscription switch failed, no valid mandate found. Place a completely new " -"order to change your subscription." -msgstr "" -"La modification d’abonnement a échoué, aucun mandat valide trouvé. Passez " -"une commande entièrement nouvelle pour modifier votre abonnement." - -#: build/src/Mollie/WC/Gateway/Abstract.php:589 -#: src/Mollie/WC/Gateway/Abstract.php:589 -msgid "Failed switching subscriptions, no valid mandate." -msgstr "Échec du changement d'abonnement, aucun mandat valide." - -#: build/src/Mollie/WC/Gateway/Abstract.php:658 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:413 -#: src/Mollie/WC/Gateway/Abstract.php:658 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:413 -msgid "Awaiting payment confirmation." -msgstr "En attente de la confirmation de paiement." - -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:668 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:420 -#: src/Mollie/WC/Gateway/Abstract.php:668 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:420 -msgid "%s payment started (%s)." -msgstr "Le paiement %s a commencé (%s)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:670 -#: build/src/Mollie/WC/Gateway/Abstract.php:897 -#: build/src/Mollie/WC/Gateway/Abstract.php:1181 -#: build/src/Mollie/WC/Gateway/Abstract.php:1243 -#: build/src/Mollie/WC/Gateway/Abstract.php:1618 -#: build/src/Mollie/WC/Gateway/Abstract.php:2142 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: build/src/Mollie/WC/Payment/Object.php:608 -#: build/src/Mollie/WC/Payment/Object.php:642 -#: build/src/Mollie/WC/Payment/Order.php:264 -#: build/src/Mollie/WC/Payment/Order.php:316 -#: build/src/Mollie/WC/Payment/Order.php:363 -#: build/src/Mollie/WC/Payment/Order.php:446 -#: build/src/Mollie/WC/Payment/Order.php:511 -#: build/src/Mollie/WC/Payment/Order.php:936 -#: build/src/Mollie/WC/Payment/Payment.php:249 -#: build/src/Mollie/WC/Payment/Payment.php:336 -#: build/src/Mollie/WC/Payment/Payment.php:406 -#: build/src/Mollie/WC/Payment/Payment.php:429 -#: src/Mollie/WC/Gateway/Abstract.php:670 -#: src/Mollie/WC/Gateway/Abstract.php:897 -#: src/Mollie/WC/Gateway/Abstract.php:1181 -#: src/Mollie/WC/Gateway/Abstract.php:1243 -#: src/Mollie/WC/Gateway/Abstract.php:1618 -#: src/Mollie/WC/Gateway/Abstract.php:2142 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642 -#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316 -#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446 -#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936 -#: src/Mollie/WC/Payment/Payment.php:249 src/Mollie/WC/Payment/Payment.php:336 -#: src/Mollie/WC/Payment/Payment.php:406 src/Mollie/WC/Payment/Payment.php:429 -msgid "test mode" -msgstr "Mode test" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:894 -#: src/Mollie/WC/Gateway/Abstract.php:894 -msgid "%s payment %s (%s), not processed." -msgstr "Paiement %s %s (%s), non traité." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1008 -#: src/Mollie/WC/Gateway/Abstract.php:1008 -msgid "" -"New refund %s processed in Mollie Dashboard! Order note added, but order not " -"updated." -msgstr "" -"Nouveau remboursement %s effectué dans Mollie Dashboard ! Note de commande " -"ajoutée, mais commande non mise à jour." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1144 -#: src/Mollie/WC/Gateway/Abstract.php:1144 -msgid "New chargeback %s processed! Order note and order status updated." -msgstr "" -"Nouveau remboursement %s traité ! Note et état de la commande mis à jour." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1176 -#: src/Mollie/WC/Gateway/Abstract.php:1176 -msgid "" -"%s payment charged back via Mollie (%s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"Paiement %s remboursé via Mollie (%s). Vous devrez examiner manuellement le " -"paiement (et ajuster les stocks de produits si vous les utilisez)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1237 -#: src/Mollie/WC/Gateway/Abstract.php:1237 -msgid "" -"%s payment charged back via Mollie (%s). Subscription status updated, please " -"review (and adjust product stocks if you use it)." -msgstr "" -"Paiement %s remboursé via Mollie (%s). L’état de l’abonnement a été mis à " -"jour, veuillez vérifier (et ajuster les stocks de produits si vous " -"l’utilisez)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1314 -#: src/Mollie/WC/Gateway/Abstract.php:1314 -msgid "" -"You have cancelled your payment. Please complete your order with a different " -"payment method." -msgstr "" -"Vous avez annulé votre paiement. Veuillez compléter votre commande avec une " -"autre méthode de paiement." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1328 -#: build/src/Mollie/WC/Gateway/Abstract.php:1337 -#: src/Mollie/WC/Gateway/Abstract.php:1328 -#: src/Mollie/WC/Gateway/Abstract.php:1337 -msgid "" -"Your payment was not successful. Please complete your order with a different " -"payment method." -msgstr "" -"Votre paiement n’a pas abouti. Veuillez compléter votre commande avec une " -"autre méthode de paiement." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1529 -#: src/Mollie/WC/Gateway/Abstract.php:1529 -msgid "We have not received a definite payment status." -msgstr "Nous n'avons pas reçu un état de paiement définitif." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1534 -#: src/Mollie/WC/Gateway/Abstract.php:1534 -msgid "" -"We have not received a definite payment status. You will receive an email as " -"soon as we receive a confirmation of the bank/merchant." -msgstr "" -"Nous n'avons pas reçu un état de paiement définitif. Vous recevrez un e-mail " -"dès que nous recevrons une confirmation de la banque/vendeur." - -#. translators: Placeholder 1: payment method -#: build/src/Mollie/WC/Gateway/Abstract.php:1541 -#: src/Mollie/WC/Gateway/Abstract.php:1541 -msgid "Payment completed with %s" -msgstr "Paiement complété par %s" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1589 -#: src/Mollie/WC/Gateway/Abstract.php:1589 -msgid "Order cancelled" -msgstr "Commande annulée" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1616 -#: src/Mollie/WC/Gateway/Abstract.php:1616 -msgid "" -"%s payment still pending (%s) but customer already returned to the store. " -"Status should be updated automatically in the future, if it doesn't this " -"might indicate a communication issue between the site and Mollie." -msgstr "" -"Paiement %s toujours en attente (%s) mais le client est déjà retourné au " -"magasin. L’état devrait être mis à jour automatiquement à l’avenir, si ce " -"n’est pas le cas, cela pourrait indiquer un problème de communication entre " -"le site et Mollie." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1625 -#: src/Mollie/WC/Gateway/Abstract.php:1625 -msgid ", payment pending." -msgstr "Paiement en attente." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1652 -#: src/Mollie/WC/Gateway/Abstract.php:1652 -msgid "Your order has been cancelled." -msgstr "Votre commande a été annulée." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:2129 -#: src/Mollie/WC/Gateway/Abstract.php:2129 -msgid "" -"%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%1$s paiement %2$s via Mollie (%3$s %4$s). Vous devrez examiner manuellement " -"le paiement (et ajuster les stocks de produits si vous les utilisez)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:2166 -#: src/Mollie/WC/Gateway/Abstract.php:2166 -msgctxt "" -"Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid "Mollie - Giftcard details: %1$s %2$s %3$s." -msgstr "Mollie - Détails des cartes cadeaux : %1$s %2$s %3$s." +#: ../src/PaymentMethods/Paysafecard.php:14 +msgid "paysafecard" +msgstr "paysafecard" -#: build/src/Mollie/WC/Gateway/Abstract.php:2178 -#: src/Mollie/WC/Gateway/Abstract.php:2178 -msgctxt "" -"Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid " Remainder: %1$s %2$s %3$s." -msgstr " Solde : %1$s %2$s %3$s." +#: ../src/PaymentMethods/Przelewy24.php:14 +msgid "Przelewy24" +msgstr "Przelewy24" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. -#: build/src/Mollie/WC/Gateway/Abstract.php:2580 -#: src/Mollie/WC/Gateway/Abstract.php:2580 -msgid " + %1$s %2$s fee might apply" -msgstr "Un + %1$s %2$s de frais peuvent s’appliquer" +#: ../src/PaymentMethods/Przelewy24.php:15 +msgid "To accept payments via Przelewy24, a customer email is required for every payment." +msgstr "Afin d’accepter les paiements via Przelewy24, un e-mail client est nécessaire pour chaque paiement." -#. translators: Placeholder 1: Fee amount tag. -#: build/src/Mollie/WC/Gateway/Abstract.php:2590 -#: src/Mollie/WC/Gateway/Abstract.php:2590 -msgid " + %1$s%% fee might apply" -msgstr "Un + %1$s%% de frais peuvent s’appliquer" +#: ../src/PaymentMethods/Sofort.php:14 +msgid "SOFORT Banking" +msgstr "SOFORT Banking" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. -#: build/src/Mollie/WC/Gateway/Abstract.php:2607 -#: src/Mollie/WC/Gateway/Abstract.php:2607 -msgid " + %1$s %2$s + %3$s%% fee might apply" -msgstr "Un + %1$s %2$s + %3$s%% de frais peuvent s’appliquer" +#: ../src/PaymentMethods/Voucher.php:35 +msgid "Voucher" +msgstr "Bon" -#: build/src/Mollie/WC/Gateway/Abstract.php:2646 -#: src/Mollie/WC/Gateway/Abstract.php:2646 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must " -"be under 500kb." -msgstr "" -"%1$sPaiements Mollie pour WooCommerce%2$s Impossible de télécharger le " -"fichier. La taille doit être inférieure à 500Ko." +#: ../src/PaymentMethods/Voucher.php:54, ../src/Gateway/Voucher/VoucherModule.php:220 +msgid "Select the default products category" +msgstr "Sélectionnez la catégorie de produits par défaut" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -msgid "Order completed using %1$s payment (%2$s)." -msgstr "Commande terminée avec le paiement %1$s (%2$s)." +#: ../src/PaymentMethods/Voucher.php:57 +msgid "No category" +msgstr "Aucune catégorie" -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:165 -msgid "" -"Updated subscription from 'On hold' to 'Active' until payment fails, because " -"a SEPA Direct Debit payment takes some time to process." -msgstr "" -"Mise à jour de l'abonnement de « En attente » à « Actif » jusqu'à ce que le " -"paiement échoue, car le traitement d'un paiement par prélèvement SEPA prend " -"un certain temps." +#: ../src/PaymentMethods/Voucher.php:58, ../src/Gateway/Voucher/VoucherModule.php:113, ../src/Gateway/Voucher/VoucherModule.php:147, ../src/Gateway/Voucher/VoucherModule.php:178, ../src/Gateway/Voucher/VoucherModule.php:233, ../src/Gateway/Voucher/VoucherModule.php:293 +msgid "Meal" +msgstr "Repas" -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:313 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:313 -msgid "Could not create %s renewal payment." -msgstr "Impossible de créer un paiement de renouvellement %s." +#: ../src/PaymentMethods/Voucher.php:59, ../src/Gateway/Voucher/VoucherModule.php:114, ../src/Gateway/Voucher/VoucherModule.php:148, ../src/Gateway/Voucher/VoucherModule.php:181, ../src/Gateway/Voucher/VoucherModule.php:234, ../src/Gateway/Voucher/VoucherModule.php:294 +msgid "Eco" +msgstr "Éco" -#: build/src/Mollie/WC/Gateway/Applepay.php:48 -#: src/Mollie/WC/Gateway/Applepay.php:48 -msgid "Apple Pay" -msgstr "Apple Pay" +#: ../src/PaymentMethods/Voucher.php:60, ../src/Gateway/Voucher/VoucherModule.php:115, ../src/Gateway/Voucher/VoucherModule.php:149, ../src/Gateway/Voucher/VoucherModule.php:184, ../src/Gateway/Voucher/VoucherModule.php:235, ../src/Gateway/Voucher/VoucherModule.php:295 +msgid "Gift" +msgstr "Cadeau" -#: build/src/Mollie/WC/Gateway/Applepay.php:56 -#: src/Mollie/WC/Gateway/Applepay.php:56 -msgid "To accept payments via Apple Pay" -msgstr "Pour accepter les paiements via Apple Pay" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/PaymentMethods/Voucher.php:64 +msgid "In order to process it, all products in the order must have a category. This selector will assign the default category for the shop products" +msgstr "Afin qu’elle puisse être traitée, tous les produits de la commande doivent appartenir à une catégorie. Le sélecteur assignera la catégorie par défaut aux produits de la boutique" -#: build/src/Mollie/WC/Gateway/Bancontact.php:29 -#: src/Mollie/WC/Gateway/Bancontact.php:29 -msgid "Bancontact" -msgstr "Bancontact" +#: ../src/SDK/Api.php:49 +msgid "Invalid API key(s). Get them on the %1$sDevelopers page in the Mollie dashboard%2$s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters." +msgstr "Clé(s) API non valide(s). Obtenez les sur la page développeurs %1$sdans le tableau de bord Mollie%2$s. Les clés API doivent impérativement commencer par « live » ou « test », comporter au moins 30 caractères et ne pas comporter de caractères spéciaux." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:38 -#: build/src/Mollie/WC/Helper/Settings.php:257 -#: src/Mollie/WC/Gateway/BankTransfer.php:38 -#: src/Mollie/WC/Helper/Settings.php:257 -msgid "Activate expiry date setting" -msgstr "Activez les réglages de la date d’expiration" +#: ../src/SDK/Api.php:47 +msgid "No API key provided. Please set your Mollie API keys below." +msgstr "Aucune clé API n'a été fournie. Veuillez d’abord configurer votre clé API Mollie." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:39 -#: build/src/Mollie/WC/Helper/Settings.php:258 -#: src/Mollie/WC/Gateway/BankTransfer.php:39 -#: src/Mollie/WC/Helper/Settings.php:258 -msgid "Enable expiry date for payments" -msgstr "Activez date d'expiration pour les paiements" +#: ../src/Settings/Settings.php:174 +msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb." +msgstr "%1$sPaiements Mollie pour WooCommerce%2$s Impossible de télécharger le fichier. La taille doit être inférieure à 500Ko." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:40 -#: src/Mollie/WC/Gateway/BankTransfer.php:40 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the payment will expire. This will turn all transactions into payments " -"instead of orders" -msgstr "" -"Activez cette option si vous voulez fixer le nombre de jours après lequel le " -"paiement expirera. Toutes les transactions seront traitées comme des " -"paiements, et non comme des commandes" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:45 -#: build/src/Mollie/WC/Helper/Settings.php:264 -#: build/src/Mollie/WC/Plugin.php:927 src/Mollie/WC/Gateway/BankTransfer.php:45 -#: src/Mollie/WC/Helper/Settings.php:264 src/Mollie/WC/Plugin.php:927 -msgid "Expiry date" -msgstr "Date d'expiration" +#: ../src/Settings/Settings.php:216 +msgid "Gateway Disabled" +msgstr "Passerelle désactivée" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:47 -#: src/Mollie/WC/Gateway/BankTransfer.php:47 -msgid "" -"Number of DAYS after the payment will expire. Default %d days" -msgstr "" -"Nombre de JOURS après lequel le paiement expirera. Par défaut %d jours" +#: ../src/Settings/Settings.php:237 +msgid "Return to payments" +msgstr "Revenir aux paiements" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:56 -#: src/Mollie/WC/Gateway/BankTransfer.php:56 -msgid "Skip Mollie payment screen" -msgstr "Sauter l'écran de paiement Mollie" +#: ../src/Settings/Settings.php:252, ../src/Settings/General/MollieGeneralSettings.php:86 +msgid "Sell to specific countries" +msgstr "Vendre à des pays spécifiques" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:57 -#: src/Mollie/WC/Gateway/BankTransfer.php:57 -msgid "Skip Mollie payment screen when Bank Transfer is selected" -msgstr "" -"Sauter l'écran de paiement Mollie lorsque le virement bancaire est " -"sélectionné" +#: ../src/Settings/Settings.php:264 +msgid "Choose countries…" +msgstr "Choisir les pays&hellip ;" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:58 -#: src/Mollie/WC/Gateway/BankTransfer.php:58 -msgid "" -"Enable this option if you want to skip redirecting your user to the Mollie " -"payment screen, instead this will redirect your user directly to the " -"WooCommerce order received page displaying instructions how to complete the " -"Bank Transfer payment." -msgstr "" -"Activez cette option si vous voulez sauter la redirection de votre " -"utilisateur vers l'écran de paiement Mollie, au contraire, cela redirigera " -"votre utilisateur directement vers la page de commande WooCommerce affichant " -"les instructions pour compléter le paiement par virement bancaire." +#: ../src/Settings/Settings.php:265 +msgid "Country" +msgstr "Pays" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:138 -#: src/Mollie/WC/Gateway/BankTransfer.php:138 -msgid "Bank Transfer" -msgstr "Transfert Bancaire" +#: ../src/Settings/Settings.php:274 +msgid "Select all" +msgstr "Tout sélectionner" -#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC -#: build/src/Mollie/WC/Gateway/BankTransfer.php:188 -#: build/src/Mollie/WC/Gateway/DirectDebit.php:80 -#: build/src/Mollie/WC/Gateway/Ideal.php:124 -#: build/src/Mollie/WC/Gateway/Sofort.php:64 -#: src/Mollie/WC/Gateway/BankTransfer.php:188 -#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124 -#: src/Mollie/WC/Gateway/Sofort.php:64 -msgid "" -"Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" -msgstr "" -"Paiement complété par %1$s (IBAN (4 derniers chiffres): %2$s, BIC: %3$s)" +#: ../src/Settings/Settings.php:275 +msgid "Select none" +msgstr "Ne rien sélectionner" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:198 -#: src/Mollie/WC/Gateway/BankTransfer.php:198 -msgid "" -"Please complete your payment by transferring the total amount to the " -"following bank account:" -msgstr "" -"Veuillez terminer votre paiement en transférant le montant total sur le " -"compte bancaire suivant :" +#: ../src/Settings/Settings.php:470 +msgid "Error" +msgstr "Erreur" -#. translators: Placeholder 1: 'Stichting Mollie Payments' -#: build/src/Mollie/WC/Gateway/BankTransfer.php:202 -#: src/Mollie/WC/Gateway/BankTransfer.php:202 -msgid "Beneficiary: %s" -msgstr "Bénéficiaire : %s" +#: ../src/Settings/Settings.php:484 +msgid "Mollie status:" +msgstr "État Mollie :" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:203 -#: src/Mollie/WC/Gateway/BankTransfer.php:203 -msgid "IBAN: %s" -msgstr "IBAN : %s" +#: ../src/Settings/Settings.php:485 +msgid "Connected" +msgstr "Connecté" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:204 -#: src/Mollie/WC/Gateway/BankTransfer.php:204 -msgid "BIC: %s" -msgstr "BIC : %s" +#: ../src/Settings/SettingsModule.php:171 +msgid "Mollie settings" +msgstr "Réglages Mollie" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:209 -#: src/Mollie/WC/Gateway/BankTransfer.php:209 -msgid "Payment reference: %s" -msgstr "Référence de paiement : %s" +#: ../src/Settings/SettingsModule.php:177 +msgid "Logs" +msgstr "Journaux" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:214 -#: src/Mollie/WC/Gateway/BankTransfer.php:214 -msgid "Please provide the payment reference %s" -msgstr "S'il vous plaît fournir la référence de paiement %s" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/SettingsModule.php:187 +msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production." +msgstr "%1$sPaiements Mollie pour WooCommerce%2$s Le mode test est actif, %3$s désactivez-le%4$s avant de le déployer en production." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:228 -#: src/Mollie/WC/Gateway/BankTransfer.php:228 -msgid "The payment will expire on %s." -msgstr "Le paiement expirera le %s." +#: ../src/Shared/Data.php:628 +msgid "Item #%1$s stock incremented from %2$s to %3$s." +msgstr "Item #%1$s stock incrémenté de %2$s à %3$s." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:235 -#: src/Mollie/WC/Gateway/BankTransfer.php:235 -msgid "" -"The payment will expire on %s. Please make sure you " -"transfer the total amount before this date." -msgstr "" -"Le paiement expirera le %s. Veuillez vous assurez que vous " -"transférez le montant total avant cette date." +#. translators: Placeholder 1: Plugin title. Placeholder 2: Min WooCommerce version. Placeholder 3: WooCommerce version used. +#: ../src/Shared/Status.php:74 +msgid "The %1$s plugin requires at least WooCommerce version %2$s, you are using version %3$s. Please update your WooCommerce plugin." +msgstr "Le plugin %1$s nécessite au moins la version WooCommerce %2$s, vous utilisez la version %3$s. Veuillez mettre à jour votre plugin WooCommerce." -#: build/src/Mollie/WC/Gateway/Belfius.php:33 -#: src/Mollie/WC/Gateway/Belfius.php:33 -msgid "Belfius Direct Net" -msgstr "Belfius Direct Net" +#: ../src/Shared/Status.php:87 +msgid "Mollie API client not installed. Please make sure the plugin is installed correctly." +msgstr "Mollie client API n’est pas installé. Veuillez vous assurer que le plugin est installé correctement." -#: build/src/Mollie/WC/Gateway/Creditcard.php:84 -#: src/Mollie/WC/Gateway/Creditcard.php:84 -msgid "Credit card" -msgstr "Carte de crédit" +#: ../src/Shared/Status.php:96 +msgid "Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable it in your server or ask your webhoster to enable it for you." +msgstr "Mollie Payments for WooCommerce nécessite l’extension JSON pour PHP. Activez-le sur votre serveur ou faites-en la demande auprès de votre hébergeur." -#. translators: Placeholder 1: card holder -#: build/src/Mollie/WC/Gateway/Creditcard.php:136 -#: src/Mollie/WC/Gateway/Creditcard.php:136 -msgid "Payment completed by %s" -msgstr "Paiement effectué par %s" +#. translators: Placeholder 1: Min PHP version. Placeholder 2: PHP version used. Placeholder 3: Opening link tag. placeholder 4: Closing link tag. +#: ../src/Shared/Status.php:111 +msgid "Mollie Payments for WooCommerce require PHP %1$s or higher, you have PHP %2$s. Please upgrade and view %3$sthis FAQ%4$s" +msgstr "Afin d’utiliser Mollie Payments sur WooCommerce, PHP %1$s ou supérieur est requis. Votre PHP est %2$s. Veuillez mettre à jour et consulter les %3$sdans les FAQ %4$s." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:42 -#: src/Mollie/WC/Gateway/DirectDebit.php:42 -msgid "SEPA Direct Debit" -msgstr "Prélevement SEPA" +#: ../src/Shared/Status.php:123 +msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration." +msgstr "Mollie Payments pour WooCommerce nécessite l’activation de l’extension PHP JSON. Veuillez activer l’extension « json » dans votre configuration PHP." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:49 -#: src/Mollie/WC/Gateway/DirectDebit.php:49 -msgid "" -"SEPA Direct Debit is used for recurring payments with WooCommerce " -"Subscriptions, and will not be shown in the WooCommerce checkout for regular " -"payments! You also need to enable iDEAL and/or other \"first\" payment " -"methods if you want to use SEPA Direct Debit." -msgstr "" -"Le prélèvement SEPA est utilisé pour les paiements récurrents avec les " -"abonnements WooCommerce, et ne sera pas affiché dans la caisse de " -"WooCommerce pour les paiements normaux ! Vous devez également activer iDEAL " -"et/ou d’autres moyens de paiement « préalables » si vous souhaitez utiliser " -"le prélèvement SEPA." +#: ../src/Shared/Status.php:130 +msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration." +msgstr "Mollie Payments pour WooCommerce nécessite l’activation de l’extension PHP cURL. Veuillez activer l’extension « curl » dans votre configuration PHP." -#: build/src/Mollie/WC/Gateway/EPS.php:29 src/Mollie/WC/Gateway/EPS.php:29 -msgid "EPS" -msgstr "EPS" +#: ../src/Shared/Status.php:138 +msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available." +msgstr "Afin d’utiliser Mollie Payments sur WooCommerce, il vous faut les fonctions PHP cURL. Assurez-vous que toutes ces fonctions soient disponibles." -#: build/src/Mollie/WC/Gateway/Giftcard.php:31 -#: src/Mollie/WC/Gateway/Giftcard.php:31 -msgid "Show gift cards dropdown" -msgstr "Afficher le menu déroulant Cartes-cadeaux" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSepaRecurringGateway.php:136, ../src/Subscription/MollieSubscriptionGateway.php:468 +msgid "%1$s payment started (%2$s)." +msgstr "Le paiement %1$s a commencé (%2$s)." -#: build/src/Mollie/WC/Gateway/Giftcard.php:33 -#: src/Mollie/WC/Gateway/Giftcard.php:33 -msgid "" -"If you disable this, a dropdown with various gift cards will not be shown in " -"the WooCommerce checkout, so users will select a gift card on the Mollie " -"payment page after checkout." -msgstr "" -"Si vous désactivez cette option, un menu déroulant avec différentes cartes " -"cadeaux ne sera pas affiché dans la caisse de WooCommerce, de sorte que les " -"utilisateurs sélectionneront une carte cadeau sur la page de paiement Mollie " -"après la transaction." - -#: build/src/Mollie/WC/Gateway/Giftcard.php:37 -#: build/src/Mollie/WC/Gateway/Ideal.php:39 -#: build/src/Mollie/WC/Gateway/Kbc.php:38 src/Mollie/WC/Gateway/Giftcard.php:37 -#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Kbc.php:38 -msgid "Issuers empty option" -msgstr "Émetteurs option vide" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSubscriptionGateway.php:199 +msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process." +msgstr "Mise à jour de l'abonnement de « En attente » à « Actif » jusqu'à ce que le paiement échoue, car le traitement d'un paiement par prélèvement SEPA prend un certain temps." -#: build/src/Mollie/WC/Gateway/Giftcard.php:39 -#: src/Mollie/WC/Gateway/Giftcard.php:39 -msgid "" -"This text will be displayed as the first option in the gift card dropdown, " -"but only if the above 'Show gift cards dropdown' is enabled." -msgstr "" -"Ce texte sera affiché comme première option dans la liste déroulante des " -"cartes cadeaux, mais uniquement si le menu déroulant « Afficher les cartes " -"cadeaux » ci-dessus est activé." +#: ../src/Subscription/MollieSubscriptionGateway.php:299 +msgid "The customer (%s) could not be used or found. " +msgstr "Le client (%s) n’a pas pu être utilisé ou trouvé. " -#: build/src/Mollie/WC/Gateway/Giftcard.php:58 -#: src/Mollie/WC/Gateway/Giftcard.php:58 -msgid "Gift cards" -msgstr "Cartes cadeaux" +#: ../src/Subscription/MollieSubscriptionGateway.php:326 +msgid "The customer (%s) does not have a valid mandate." +msgstr "Le client (%s) ne possède pas de mandat valide." -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Giftcard.php:74 -#: src/Mollie/WC/Gateway/Giftcard.php:74 -msgid "Select your gift card" -msgstr "Sélectionner votre carte cadeau" +#. translators: Placeholder 1: Payment method title +#: ../src/Subscription/MollieSubscriptionGateway.php:366 +msgid "Could not create %s renewal payment." +msgstr "Impossible de créer un paiement de renouvellement %s." -#: build/src/Mollie/WC/Gateway/Giropay.php:29 -#: src/Mollie/WC/Gateway/Giropay.php:29 -msgid "Giropay" -msgstr "Giropay" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Subscription/SubscriptionModule.php:106 +msgid "%1$s payment failed (%2$s)." +msgstr "Le paiement %1$s a échoué (%2$s)." -#: build/src/Mollie/WC/Gateway/Ideal.php:33 src/Mollie/WC/Gateway/Ideal.php:33 -msgid "Show iDEAL banks dropdown" -msgstr "Afficher le menu déroulant des banques iDEAL" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:42 +msgid "%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sLe serveur n'est pas conforme à la configuration requise pour Apple%2$s Vérifiez la page %3$sConfiguration requise pour le serveur Apple%4$s pour la corriger afin de faire fonctionner le bouton Apple Pay." -#: build/src/Mollie/WC/Gateway/Ideal.php:35 src/Mollie/WC/Gateway/Ideal.php:35 -msgid "" -"If you disable this, a dropdown with various iDEAL banks will not be shown " -"in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie " -"payment page after checkout." -msgstr "" -"Si vous désactivez cette option, un menu déroulant avec différentes banques " -"iDEAL ne sera pas affiché dans la caisse de WooCommerce, de sorte que les " -"utilisateurs sélectionneront une banque iDEAL sur la page de paiement Mollie " -"après la transaction." +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:58 +msgid "%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sErreur de validation Apple Pay%2$s Vérifiez la page %3$sConfiguration requise pour Apple Server%4$s pour la corriger afin de faire fonctionner le bouton Apple Pay." -#: build/src/Mollie/WC/Gateway/Ideal.php:41 src/Mollie/WC/Gateway/Ideal.php:41 -msgid "" -"This text will be displayed as the first option in the iDEAL issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above 'Show iDEAL banks dropdown' is enabled." -msgstr "" -"Ce texte sera affiché comme première option dans la liste déroulante des " -"émetteurs iDEAL, si rien n’est entré, « Sélectionnez votre banque » sera " -"affiché. Seulement si « Afficher le menu déroulant des banques iDEAL » ci-" -"dessus est activé." +#: ../src/Gateway/Voucher/VoucherModule.php:78, ../src/Settings/Page/MollieSettingsPage.php:49, ../src/Settings/Page/MollieSettingsPage.php:182 +msgid "Mollie Settings" +msgstr "Réglages Mollie" -#: build/src/Mollie/WC/Gateway/Ideal.php:60 src/Mollie/WC/Gateway/Ideal.php:60 -msgid "iDEAL" -msgstr "iDEAL" +#: ../src/Gateway/Voucher/VoucherModule.php:108, ../src/Gateway/Voucher/VoucherModule.php:143, ../src/Gateway/Voucher/VoucherModule.php:166 +msgid "Mollie Voucher Category" +msgstr "Catégorie de bons Mollie" -#. translators: Default iDEAL description, displayed above issuer drop down -#. translators: Default KBC/CBC dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Ideal.php:76 -#: build/src/Mollie/WC/Gateway/Kbc.php:75 src/Mollie/WC/Gateway/Ideal.php:76 -#: src/Mollie/WC/Gateway/Kbc.php:75 -msgid "Select your bank" -msgstr "Sélectionnez votre banque" +#: ../src/Gateway/Voucher/VoucherModule.php:111, ../src/Gateway/Voucher/VoucherModule.php:145, ../src/Gateway/Voucher/VoucherModule.php:170 +msgid "--Please choose an option--" +msgstr "--Veuillez choisir une option--" -#: src/Mollie/WC/Gateway/In3:29 -msgid "in3" -msgstr "in3" +#: ../src/Gateway/Voucher/VoucherModule.php:112, ../src/Gateway/Voucher/VoucherModule.php:146, ../src/Gateway/Voucher/VoucherModule.php:175, ../src/Gateway/Voucher/VoucherModule.php:232, ../src/Gateway/Voucher/VoucherModule.php:292 +msgid "No Category" +msgstr "Aucune catégorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:32 src/Mollie/WC/Gateway/Kbc.php:32 -msgid "Show KBC/CBC banks dropdown" -msgstr "Afficher le menu déroulant des banques KBC/CBC" +#: ../src/Gateway/Voucher/VoucherModule.php:151, ../src/Gateway/Voucher/VoucherModule.php:188 +msgid "Select a voucher category to apply to all products with this category" +msgstr "Sélectionnez une catégorie de bons pour les appliquer à tous les produits de cette catégorie." -#: build/src/Mollie/WC/Gateway/Kbc.php:34 src/Mollie/WC/Gateway/Kbc.php:34 -msgid "" -"If you disable this, a dropdown with various KBC/CBC banks will not be shown " -"in the WooCommerce checkout, so users will select a KBC/CBC bank on the " -"Mollie payment page after checkout." -msgstr "" -"Si vous désactivez cette option, un menu déroulant avec différentes banques " -"KBC/CBC ne s'affichera pas dans la caisse de WooCommerce, de sorte que les " -"utilisateurs sélectionneront une banque KBC/CBC sur la page de paiement " -"Mollie après la transaction." +#: ../src/Gateway/Voucher/VoucherModule.php:224 +msgid "Products voucher category" +msgstr "Catégorie de bons de produits" -#: build/src/Mollie/WC/Gateway/Kbc.php:40 src/Mollie/WC/Gateway/Kbc.php:40 -msgid "" -"This text will be displayed as the first option in the KBC/CBC issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above ''Show KBC/CBC banks dropdown' is enabled." -msgstr "" -"Ce texte sera affiché comme première option dans la liste déroulante des " -"émetteurs KBC/CBC, si rien n’est entré, « Sélectionnez votre banque » sera " -"affiché. Seulement si « Afficher le menu déroulant des banques KBC/CBC » est " -"activé." +#: ../src/Gateway/Voucher/VoucherModule.php:231, ../src/Gateway/Voucher/VoucherModule.php:291 +msgid "Same as default category" +msgstr "La même que la catégorie par défaut" -#: build/src/Mollie/WC/Gateway/Kbc.php:59 src/Mollie/WC/Gateway/Kbc.php:59 -msgid "KBC/CBC Payment Button" -msgstr "Bouton de paiement KBC/CBC" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Gateway/Voucher/VoucherModule.php:241 +msgid "In order to process it, all products in the order must have a category. To disable the product from voucher selection select \"No category\" option." +msgstr "Afin qu’elle puisse être traitée, tous les produits de la commande doivent appartenir à une catégorie. Afin de supprimer le produit de la sélection du bon, sélectionnez l’option « Aucune catégorie »." -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -msgid "Klarna Pay later" -msgstr "Klarna Pay Later" +#: ../src/Gateway/Voucher/VoucherModule.php:288 +msgid "Mollie Voucher category" +msgstr "Catégorie de bons Mollie" -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -msgid "" -"To accept payments via Klarna, all default WooCommerce checkout fields " -"should be enabled and required." -msgstr "" -"Pour accepter les paiements via Klarna, tous les champs de paiement par " -"défaut de WooCommerce doivent être activés et obligatoires." +#: ../src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (Apple Pay transaction ID: %3$s)" +msgstr "Paiement effectué par %1$s - %2$s (ID transaction Apple Pay : %3$s)" -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -msgid "Klarna Pay now" -msgstr "Klarna Pay Now" +#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:26, ../src/PaymentMethods/InstructionStrategies/DirectdebitInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/IdealInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/SofortInstructionStrategy.php:20 +msgid "Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" +msgstr "Paiement complété par %1$s (IBAN (4 derniers chiffres) : %2$s, BIC : %3$s)" -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -msgid "Klarna Slice it" -msgstr "Klarna Slice it" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:35 +msgid "Please complete your payment by transferring the total amount to the following bank account:" +msgstr "Veuillez terminer votre paiement en transférant le montant total sur le compte bancaire suivant :" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: build/src/Mollie/WC/Plugin.php:508 src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: src/Mollie/WC/Plugin.php:508 -msgid "Select the default products category" -msgstr "Sélectionnez la catégorie de produits par défaut" +#. translators: Placeholder 1: 'Stichting Mollie Payments' +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:39 +msgid "Beneficiary: %s" +msgstr "Bénéficiaire : %s" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:46 -#: src/Mollie/WC/Gateway/Mealvoucher.php:46 -msgid "" -"In order to process it, all products in the order must have a category. This " -"selector will assign the default category for the shop products" -msgstr "" -"Afin qu’elle puisse être traitée, tous les produits de la commande doivent " -"appartenir à une catégorie. Le sélecteur assignera la catégorie par défaut " -"aux produits de la boutique" +#. translators: Placeholder 1: Payment details bank account +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:41 +msgid "IBAN: %s" +msgstr "IBAN : %s" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:66 -#: src/Mollie/WC/Gateway/Mealvoucher.php:66 -msgid "Voucher" -msgstr "Bon" +#. translators: Placeholder 1: Payment details bic +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:43 +msgid "BIC: %s" +msgstr "BIC : %s" -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:82 -#: src/Mollie/WC/Gateway/Mealvoucher.php:82 -msgid "voucher" -msgstr "bon" +#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:50 +msgid "Please provide the payment reference %s" +msgstr "S'il vous plaît fournir la référence de paiement %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:36 -#: src/Mollie/WC/Gateway/MyBank.php:36 -msgid "MyBank" -msgstr "MyBank" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:47 +msgid "Payment reference: %s" +msgstr "Référence de paiement : %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:44 -#: src/Mollie/WC/Gateway/MyBank.php:44 -msgid "To accept payments via MyBank" -msgstr "Pour accepter les paiements via MyBank" +#. translators: Placeholder 1: Payment expiry date +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:66 +msgid "The payment will expire on %s. Please make sure you transfer the total amount before this date." +msgstr "Le paiement expirera le %s. Veuillez vous assurez que vous transférez le montant total avant cette date." -#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer Account number -#: build/src/Mollie/WC/Gateway/MyBank.php:73 -#: src/Mollie/WC/Gateway/MyBank.php:73 -msgid "Payment completed by %1$s - %2$s" -msgstr "Paiement effectué par %1$s - %2$s" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:60 +msgid "The payment will expire on %s." +msgstr "Le paiement expirera le %s." -#: build/src/Mollie/WC/Gateway/PayPal.php:43 -#: src/Mollie/WC/Gateway/PayPal.php:43 -msgid "PayPal" -msgstr "PayPal" +#. translators: Placeholder 1: card holder +#: ../src/PaymentMethods/InstructionStrategies/CreditcardInstructionStrategy.php:20 +msgid "Payment completed by %s" +msgstr "Paiement effectué par %s" -#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID -#: build/src/Mollie/WC/Gateway/PayPal.php:74 -#: build/src/Mollie/WC/Payment/Object.php:695 -#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695 -msgid "" -"Payment completed by %s - %s (PayPal transaction ID: %s)" -msgstr "" -"Paiement effectué par %s - %s (ID transaction PayPal : %s)" +#. translators: Placeholder 1: payment method +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:34 +msgid "Payment completed with %s" +msgstr "Paiement complété par %s" -#: build/src/Mollie/WC/Gateway/Paysafecard.php:20 -#: src/Mollie/WC/Gateway/Paysafecard.php:20 -msgid "paysafecard" -msgstr "paysafecard" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:26 +msgid "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant." +msgstr "Nous n'avons pas reçu un état de paiement définitif. Vous recevrez un e-mail dès que nous recevrons une confirmation de la banque/vendeur." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:33 -#: src/Mollie/WC/Gateway/Przelewy24.php:33 -msgid "Przelewy24" -msgstr "Przelewy24" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:20 +msgid "We have not received a definite payment status." +msgstr "Nous n'avons pas reçu un état de paiement définitif." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:40 -#: src/Mollie/WC/Gateway/Przelewy24.php:40 -msgid "" -"To accept payments via Przelewy24, a customer email is required for every " -"payment." -msgstr "" -"Afin d’accepter les paiements via Przelewy24, un e-mail client est " -"nécessaire pour chaque paiement." +#: ../src/PaymentMethods/InstructionStrategies/MybankInstructionStrategy.php:19 +msgid "Payment completed by %1$s - %2$s" +msgstr "Paiement effectué par %1$s - %2$s" #. translators: Placeholder 1: customer billing email -#: build/src/Mollie/WC/Gateway/Przelewy24.php:64 -#: src/Mollie/WC/Gateway/Przelewy24.php:64 +#: ../src/PaymentMethods/InstructionStrategies/Przelewy24InstructionStrategy.php:20 msgid "Payment completed by %s." msgstr "Paiement effectué par %s." -#: build/src/Mollie/WC/Gateway/Sofort.php:33 -#: src/Mollie/WC/Gateway/Sofort.php:33 -msgid "SOFORT Banking" -msgstr "SOFORT Banking" - -#: build/src/Mollie/WC/Helper/Api.php:40 src/Mollie/WC/Helper/Api.php:40 -msgid "No API key provided. Please set your Mollie API keys below." -msgstr "" -"Aucune clé API n’a été fournie. Veuillez d’abord configurer votre clé API " -"Mollie." - -#: build/src/Mollie/WC/Helper/Api.php:42 src/Mollie/WC/Helper/Api.php:42 -msgid "" -"Invalid API key(s). Get them on the %sDevelopers page in the Mollie dashboard" -"%s. The API key(s) must start with 'live_' or 'test_', be at least 30 " -"characters and must not contain any special characters." -msgstr "" -"Clé(s) API non valide(s). Obtenez les sur la page développeurs %sdans le " -"tableau de bord Mollie%s. Les clés API doivent impérativement commencer par " -"« live » ou « test », comporter au moins 30 caractères et ne pas comporter " -"de caractères spéciaux." - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -msgid "" -"%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server " -"requirements page%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sLe serveur n'est pas conforme à la configuration requise pour Apple%2$s " -"Vérifiez la page %3$sConfiguration requise pour le serveur Apple%4$s pour la " -"corriger afin de faire fonctionner le bouton Apple Pay." - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -msgid "" -"%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page" -"%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sErreur de validation Apple Pay%2$s Vérifiez la page %3$sConfiguration " -"requise pour Apple Server%4$s pour la corriger afin de faire fonctionner le " -"bouton Apple Pay." +#. translators: Placeholder 1: Lock icon. Placeholder 2: Mollie logo. +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:25 +msgid "%1$s Secure payments provided by %2$s" +msgstr "Paiements sécurisés %1$s effectués par %2$s" -#: build/src/Mollie/WC/Helper/OrderLines.php:499 -#: src/Mollie/WC/Helper/OrderLines.php:499 -msgid "Shipping" -msgstr "Expédier" +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:41 +msgid "Secure payments provided by" +msgstr "Paiements sécurisés effectués par" -#: build/src/Mollie/WC/Helper/Settings.php:61 -#: src/Mollie/WC/Helper/Settings.php:61 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:34 msgid "%s display settings" msgstr "%s réglage de l’affichage" -#: build/src/Mollie/WC/Helper/Settings.php:99 -#: src/Mollie/WC/Helper/Settings.php:99 +#: ../src/Settings/General/MollieGeneralSettings.php:71 msgid "Display logo on checkout page. Default enabled" msgstr "Affichage logo sur la page de caisse. Par défaut activé" -#: build/src/Mollie/WC/Helper/Settings.php:107 -#: src/Mollie/WC/Helper/Settings.php:107 +#: ../src/Settings/General/MollieGeneralSettings.php:79 msgid "Sales countries" msgstr "Pays de vente" -#: build/src/Mollie/WC/Helper/Settings.php:125 -#: src/Mollie/WC/Helper/Settings.php:125 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:99 msgid "%s custom logo" msgstr "%s logo personnalisé" -#: build/src/Mollie/WC/Helper/Settings.php:132 -#: src/Mollie/WC/Helper/Settings.php:132 +#: ../src/Settings/General/MollieGeneralSettings.php:103 msgid "Enable custom logo" msgstr "Activez le logo personnalisé" -#: build/src/Mollie/WC/Helper/Settings.php:137 -#: src/Mollie/WC/Helper/Settings.php:137 -msgid "" -"Enable the feature to add a custom logo for this gateway. This feature will " -"have precedence over other logo options." -msgstr "" -"Activez la fonction permettant d’ajouter un logo personnalisé pour cette " -"passerelle. Cette fonction aura la priorité sur les autres options de logo." +#: ../src/Settings/General/MollieGeneralSettings.php:109 +msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options." +msgstr "Activez la fonction permettant d’ajouter un logo personnalisé pour cette passerelle. Cette fonction aura la priorité sur les autres options de logo." -#: build/src/Mollie/WC/Helper/Settings.php:143 -#: src/Mollie/WC/Helper/Settings.php:143 +#: ../src/Settings/General/MollieGeneralSettings.php:115 msgid "Upload custom logo" msgstr "Désactivez le logo personnalisé" -#: build/src/Mollie/WC/Helper/Settings.php:150 -#: src/Mollie/WC/Helper/Settings.php:150 +#: ../src/Settings/General/MollieGeneralSettings.php:123 msgid "Upload a custom icon for this gateway. The feature must be enabled." -msgstr "" -"Téléchargez une icône personnalisée pour cette passerelle. La fonction doit " -"être activée." +msgstr "Téléchargez une icône personnalisée pour cette passerelle. La fonction doit être activée." -#: build/src/Mollie/WC/Helper/Settings.php:159 -#: src/Mollie/WC/Helper/Settings.php:159 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:134 msgid "%s surcharge" msgstr "%s supplément" -#: build/src/Mollie/WC/Helper/Settings.php:166 -#: src/Mollie/WC/Helper/Settings.php:166 +#: ../src/Settings/General/MollieGeneralSettings.php:139 msgid "Payment Surcharge" msgstr "Supplément au paiement" -#: build/src/Mollie/WC/Helper/Settings.php:172 -#: src/Mollie/WC/Helper/Settings.php:172 +#: ../src/Settings/General/MollieGeneralSettings.php:145 msgid "No fee" msgstr "Aucun frais" -#: build/src/Mollie/WC/Helper/Settings.php:176 -#: src/Mollie/WC/Helper/Settings.php:176 +#: ../src/Settings/General/MollieGeneralSettings.php:149 msgid "Fixed fee" msgstr "Frais fixes" -#: build/src/Mollie/WC/Helper/Settings.php:180 -#: src/Mollie/WC/Helper/Settings.php:180 +#: ../src/Settings/General/MollieGeneralSettings.php:153 msgid "Percentage" msgstr "Pourcentage" -#: build/src/Mollie/WC/Helper/Settings.php:184 -#: src/Mollie/WC/Helper/Settings.php:184 +#: ../src/Settings/General/MollieGeneralSettings.php:157 msgid "Fixed fee and percentage" msgstr "Frais fixes et pourcentage" -#: build/src/Mollie/WC/Helper/Settings.php:190 -#: src/Mollie/WC/Helper/Settings.php:190 +#: ../src/Settings/General/MollieGeneralSettings.php:163 msgid "Choose a payment surcharge for this gateway" msgstr "Choisissez un supplément au paiement pour cette passerelle" -#: build/src/Mollie/WC/Helper/Settings.php:197 -#: src/Mollie/WC/Helper/Settings.php:197 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:172 msgid "Payment surcharge fixed amount in %s" msgstr "Montant du supplément fixe au paiement en %s" -#: build/src/Mollie/WC/Helper/Settings.php:200 -#: src/Mollie/WC/Helper/Settings.php:200 +#: ../src/Settings/General/MollieGeneralSettings.php:176 msgid "Control the fee added on checkout. Default 0.00" msgstr "Contrôlez les frais ajoutés lors du passage en caisse. Par défaut 0,00" -#: build/src/Mollie/WC/Helper/Settings.php:210 -#: src/Mollie/WC/Helper/Settings.php:210 +#: ../src/Settings/General/MollieGeneralSettings.php:186 msgid "Payment surcharge percentage amount %" msgstr "Montant du supplément au paiement (pourcentage) %" -#: build/src/Mollie/WC/Helper/Settings.php:213 -#: src/Mollie/WC/Helper/Settings.php:213 -msgid "Control the percentage fee added on checkout. Default 0.00" -msgstr "" -"Contrôlez le pourcentage des frais ajoutés lors du passage en caisse. Par " -"défaut 0,00" - -#: build/src/Mollie/WC/Helper/Settings.php:223 -#: src/Mollie/WC/Helper/Settings.php:223 -msgid "Payment surcharge limit in %s" -msgstr "Limite du supplément au paiement en %s" - -#: build/src/Mollie/WC/Helper/Settings.php:226 -#: src/Mollie/WC/Helper/Settings.php:226 -msgid "Limit the maximum fee added on checkout. Default 0, means no limit" -msgstr "" -"Limitez le montant maximal des frais ajoutés lors du passage en caisse. 0 " -"par défaut, signifie pas de limite" - -#: build/src/Mollie/WC/Helper/Settings.php:236 -#: src/Mollie/WC/Helper/Settings.php:236 -msgid "Surcharge only under this limit, in %s" -msgstr "Supplément uniquement sous cette limite, en %s" - -#: build/src/Mollie/WC/Helper/Settings.php:239 -#: src/Mollie/WC/Helper/Settings.php:239 -msgid "" -"Maximum order amount to apply surcharge. If the order is above this number " -"the surcharge will not apply. Default 0, means no maximum" -msgstr "" -"Montant maximal de la commande pour appliquer la majoration. Si la commande " -"est supérieure à ce nombre, la surtaxe ne sera pas appliquée. 0 par défaut, " -"signifie pas de maximum" - -#: build/src/Mollie/WC/Helper/Settings.php:250 -#: src/Mollie/WC/Helper/Settings.php:250 -msgid "%s advanced" -msgstr "%s avancé" - -#: build/src/Mollie/WC/Helper/Settings.php:259 -#: src/Mollie/WC/Helper/Settings.php:259 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the order will expire." -msgstr "" -"Activez cette option si vous souhaitez pouvoir définir le nombre de jours " -"après lesquels la commande expirera." - -#: build/src/Mollie/WC/Helper/Settings.php:267 -#: src/Mollie/WC/Helper/Settings.php:267 -msgid "" -"Number of MINUTES after the order will expire and will be canceled at Mollie " -"and WooCommerce. A value of 0 means no expiry date will be considered." -msgstr "" -"Nombre de MINUTES après lesquelles la commande expirera et sera annulée chez " -"Mollie et WooCommerce. Une valeur de 0 signifie qu’aucune date d’expiration " -"ne sera prise en compte." - -#: build/src/Mollie/WC/Helper/Settings.php:280 -#: src/Mollie/WC/Helper/Settings.php:280 -msgid "Initial order status" -msgstr "État de la commande initiale" +#: ../src/Settings/General/MollieGeneralSettings.php:189 +msgid "Control the percentage fee added on checkout. Default 0.00" +msgstr "Contrôlez le pourcentage des frais ajoutés lors du passage en caisse. Par défaut 0,00" -#: build/src/Mollie/WC/Helper/Settings.php:299 -#: src/Mollie/WC/Helper/Settings.php:299 -msgid "" -"Some payment methods take longer than a few hours to complete. The initial " -"order state is then set to '%s'. This ensures the order is not cancelled " -"when the setting %s is used." -msgstr "" -"Certains modes de paiement prennent plus que quelques heures à se compléter. " -"L’état initial de la commande est alors fixé à « %s ». Ceci permet de " -"s’assurer que la commande n’est pas annulée lorsque le réglage %s est " -"utilisé." +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:200 +msgid "Payment surcharge limit in %s" +msgstr "Limite du supplément au paiement en %s" -#: build/src/Mollie/WC/Helper/Settings.php:494 -#: src/Mollie/WC/Helper/Settings.php:494 -msgid "Error" -msgstr "Erreur" +#: ../src/Settings/General/MollieGeneralSettings.php:203 +msgid "Limit the maximum fee added on checkout. Default 0, means no limit" +msgstr "Limitez le montant maximal des frais ajoutés lors du passage en caisse. 0 par défaut, signifie pas de limite" -#: build/src/Mollie/WC/Helper/Settings.php:507 -#: src/Mollie/WC/Helper/Settings.php:507 -msgid "Mollie status:" -msgstr "État Mollie :" +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:214 +msgid "Surcharge only under this limit, in %s" +msgstr "Supplément uniquement sous cette limite, en %s" -#: build/src/Mollie/WC/Helper/Settings.php:508 -#: src/Mollie/WC/Helper/Settings.php:508 -msgid "Connected" -msgstr "Connecté" +#: ../src/Settings/General/MollieGeneralSettings.php:217 +msgid "Maximum order amount to apply surcharge. If the order is above this number the surcharge will not apply. Default 0, means no maximum" +msgstr "Montant maximal de la commande pour appliquer la majoration. Si la commande est supérieure à ce nombre, la surtaxe ne sera pas appliquée. 0 par défaut, signifie pas de maximum" -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: src/Mollie/WC/Helper/Settings.php:551 -msgid "Gateway enabled" -msgstr "Passerelle désactivée" +#. translators: Placeholder 1: gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:230 +msgid "%s advanced" +msgstr "%s avancé" -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Gateway disabled" -msgstr "Passerelle désactivée" +#: ../src/Settings/General/MollieGeneralSettings.php:237 +msgid "Enable this option if you want to be able to set the time after which the order will expire." +msgstr "Activez cette option si vous voulez fixer la date après laquelle la commande expirera." -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Disabled" -msgstr "Désactivé" +#: ../src/Settings/General/MollieGeneralSettings.php:245 +msgid "Number of MINUTES after the order will expire and will be canceled at Mollie and WooCommerce. A value of 0 means no expiry time will be considered." +msgstr "Nombre de MINUTES après lesquelles la commande expirera et sera annulée chez Mollie et WooCommerce. Une valeur de 0 signifie qu’aucune date d’expiration ne sera prise en compte." -#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:563 -#: src/Mollie/WC/Helper/Settings.php:563 -msgid "The following payment methods are activated in your %sMollie profile%s:" -msgstr "" -"Les méthodes de paiement suivantes sont activées dans votre profil Mollie %s" -"%s:" +#: ../src/Settings/General/MollieGeneralSettings.php:258 +msgid "Initial order status" +msgstr "État de la commande initiale" -#: build/src/Mollie/WC/Helper/Settings.php:572 -#: src/Mollie/WC/Helper/Settings.php:572 -msgid "Refresh" -msgstr "Actualiser" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Settings/General/MollieGeneralSettings.php:277 +msgid "Some payment methods take longer than a few hours to complete. The initial order state is then set to '%1$s'. This ensures the order is not cancelled when the setting %2$s is used." +msgstr "Certains modes de paiement prennent plus que quelques heures à se compléter. L’état initial de la commande est alors fixé à « %1$s ». Ceci permet de s’assurer que la commande n’est pas annulée lorsque le réglage %2$s est utilisé." -#: build/src/Mollie/WC/Helper/Settings.php:591 -#: src/Mollie/WC/Helper/Settings.php:591 -msgid "Edit" -msgstr "Éditer" +#: ../src/Settings/General/MollieGeneralSettings.php:286 +msgid "Hold Stock (minutes)" +msgstr "Stock en attente (minutes)" -#: build/src/Mollie/WC/Helper/Settings.php:624 -#: src/Mollie/WC/Helper/Settings.php:624 -msgid "" -"Quickly integrate all major payment methods in WooCommerce, wherever you " -"need them." -msgstr "" -"Intégrez rapidement les principaux modes de paiement dans WooCommerce, là où " -"vous en avez besoin." +#: ../src/Settings/Page/MollieSettingsPage.php:111 +msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them." +msgstr "Intégrez rapidement les principaux modes de paiement dans WooCommerce, là où vous en avez besoin." -#: build/src/Mollie/WC/Helper/Settings.php:625 -#: src/Mollie/WC/Helper/Settings.php:625 -msgid "" -" Simply drop them ready-made into your WooCommerce webshop with this " -"powerful plugin by Mollie." -msgstr "" -" Il suffit de les déposer tout prêts dans votre boutique en ligne " -"WooCommerce grâce à ce puissant plug-in de Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:115 +msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie." +msgstr " Il suffit de les déposer tout prêts dans votre boutique en ligne WooCommerce grâce à ce puissant plug-in de Mollie." -#: build/src/Mollie/WC/Helper/Settings.php:626 -#: src/Mollie/WC/Helper/Settings.php:626 +#: ../src/Settings/Page/MollieSettingsPage.php:119 msgid " Mollie is dedicated to making payments better for WooCommerce. " msgstr " Mollie est dédiée à l'amélioration des paiements pour WooCommerce. " -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:123 msgid "Please go to" msgstr "Veuillez aller à" -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:126 msgid " the signup page" msgstr " la page d’inscription" -#: build/src/Mollie/WC/Helper/Settings.php:628 -#: src/Mollie/WC/Helper/Settings.php:628 -msgid "" -" to create a new Mollie account and start receiving payments in a couple of " -"minutes. " -msgstr "" -" pour créer un nouveau compte Mollie et commencer à recevoir des paiements " -"en quelques minutes. " +#: ../src/Settings/Page/MollieSettingsPage.php:130 +msgid " to create a new Mollie account and start receiving payments in a couple of minutes. " +msgstr " pour créer un nouveau compte Mollie et commencer à recevoir des paiements en quelques minutes. " -#: build/src/Mollie/WC/Helper/Settings.php:629 -#: src/Mollie/WC/Helper/Settings.php:629 +#: ../src/Settings/Page/MollieSettingsPage.php:134 msgid "Contact " msgstr "Contact " -#: build/src/Mollie/WC/Helper/Settings.php:630 -#: src/Mollie/WC/Helper/Settings.php:630 +#: ../src/Settings/Page/MollieSettingsPage.php:138 msgid " if you have any questions or comments about this plugin." msgstr " si vous avez des questions ou des commentaires sur ce plugin." -#: build/src/Mollie/WC/Helper/Settings.php:631 -#: src/Mollie/WC/Helper/Settings.php:631 -msgid "" -"Our pricing is always per transaction. No startup fees, no monthly fees, and " -"no gateway fees. No hidden fees, period." -msgstr "" -"Nos tarifs s’entendent toujours par transaction. Pas de frais de démarrage, " -"pas de frais mensuels, et pas de frais de passerelle. Pas de frais cachés, " -"point final." +#: ../src/Settings/Page/MollieSettingsPage.php:142 +msgid "Our pricing is always per transaction. No startup fees, no monthly fees, and no gateway fees. No hidden fees, period." +msgstr "Nos tarifs s’entendent toujours par transaction. Pas de frais de démarrage, pas de frais mensuels, et pas de frais de passerelle. Pas de frais cachés, point final." -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:148 msgid "Plugin Documentation" msgstr "Plug-in de documentation" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:151 msgid "Contact Support" msgstr "Contactez l’assistance" -#: build/src/Mollie/WC/Helper/Settings.php:644 -#: src/Mollie/WC/Helper/Settings.php:644 +#: ../src/Settings/Page/MollieSettingsPage.php:163 msgid "Log plugin events." msgstr "Journal extension événements." -#: build/src/Mollie/WC/Helper/Settings.php:650 -#: src/Mollie/WC/Helper/Settings.php:650 +#. translators: Placeholder 1: Location of the log files +#: ../src/Settings/Page/MollieSettingsPage.php:170 msgid "Log files are saved to %s" msgstr "Les fichiers journaux sont enregistrés dans %s" -#: build/src/Mollie/WC/Helper/Settings.php:663 -#: build/src/Mollie/WC/Plugin.php:379 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:11 -#: src/Mollie/WC/Helper/Settings.php:663 src/Mollie/WC/Plugin.php:379 -#: src/Mollie/WC/Settings/Page/Mollie.php:11 -msgid "Mollie Settings" -msgstr "Réglages Mollie" - -#: build/src/Mollie/WC/Helper/Settings.php:670 -#: src/Mollie/WC/Helper/Settings.php:670 +#: ../src/Settings/Page/MollieSettingsPage.php:192 msgid "Live API key" msgstr "Clé Live API" #. translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:675 -#: build/src/Mollie/WC/Helper/Settings.php:697 -#: src/Mollie/WC/Helper/Settings.php:675 src/Mollie/WC/Helper/Settings.php:697 -msgid "" -"The API key is used to connect to Mollie. You can find your %s API key in your %sMollie profile%s" -msgstr "" -"La clé API est utilisée pour se connecter à Mollie. Vous pouvez trouver " -"votre clé %s API dans votre %sprofil Mollie%s" +#: ../src/Settings/Page/MollieSettingsPage.php:197, ../src/Settings/Page/MollieSettingsPage.php:230 +msgid "The API key is used to connect to Mollie. You can find your %1$s API key in your %2$sMollie account%3$s" +msgstr "La clé API est utilisée pour se connecter à Mollie. Vous pouvez trouver votre clé %1$s API dans votre %2$scompte Mollie%3$s" -#: build/src/Mollie/WC/Helper/Settings.php:681 -#: src/Mollie/WC/Helper/Settings.php:681 +#: ../src/Settings/Page/MollieSettingsPage.php:208 msgid "Live API key should start with live_" msgstr "La clé Live API devrait commencer par live_" -#: build/src/Mollie/WC/Helper/Settings.php:685 -#: src/Mollie/WC/Helper/Settings.php:685 +#: ../src/Settings/Page/MollieSettingsPage.php:215 msgid "Enable test mode" msgstr "Activer le mode test" -#: build/src/Mollie/WC/Helper/Settings.php:688 -#: src/Mollie/WC/Helper/Settings.php:688 -msgid "" -"Enable test mode if you want to test the plugin without using real payments." -msgstr "" -"Activer le mode test si vous souhaitez tester le plugin sans utiliser les " -"paiements réels." +#: ../src/Settings/Page/MollieSettingsPage.php:218 +msgid "Enable test mode if you want to test the plugin without using real payments." +msgstr "Activer le mode test si vous souhaitez tester le plugin sans utiliser les paiements réels." -#: build/src/Mollie/WC/Helper/Settings.php:692 -#: src/Mollie/WC/Helper/Settings.php:692 +#: ../src/Settings/Page/MollieSettingsPage.php:225 msgid "Test API key" msgstr "Clé Test API" -#: build/src/Mollie/WC/Helper/Settings.php:703 -#: src/Mollie/WC/Helper/Settings.php:703 +#: ../src/Settings/Page/MollieSettingsPage.php:241 msgid "Test API key should start with test_" msgstr "La clé Test API devrait commencer par test_" -#: build/src/Mollie/WC/Helper/Settings.php:707 -#: src/Mollie/WC/Helper/Settings.php:707 +#: ../src/Settings/Page/MollieSettingsPage.php:248 msgid "Debug Log" msgstr "Journal de débogage" -#: build/src/Mollie/WC/Helper/Settings.php:810 -#: src/Mollie/WC/Helper/Settings.php:810 -msgid "" -"You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. " -"Enable SEPA Direct Debit if you want to allow customers to pay subscriptions " -"with iDEAL and/or other \"first\" payment methods." -msgstr "" -"Votre abonnement WooCommerce est activé, mais pas SEPA direct débit. Activez " -"le prélèvement automatique SEPA si vous souhaitez offrir à vos clients " -"d’autres méthodes de paiement « préalables » tels que iDEAL ou autre." - -#: build/src/Mollie/WC/Helper/Settings.php:834 -#: src/Mollie/WC/Helper/Settings.php:834 -msgid "" -"You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway " -"enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via " -"Mollie and disabling the default WooCommerce BACS payment gateway to prevent " -"possible conflicts." -msgstr "" -"La passerelle de paiement Direct Bank Transfer (BACS) est activée par défaut " -"dans WooCommerce. Mollie conseille fortement d’utiliser le transfert " -"bancaire via Mollie et de désactiver la passerelle de paiement WooCommerce " -"BACS pour éviter d’éventuels conflits." - -#: build/src/Mollie/WC/Helper/Settings.php:855 -#: src/Mollie/WC/Helper/Settings.php:855 -msgid "" -"You have activated Klarna. To accept payments, please make sure all default " -"WooCommerce checkout fields are enabled and required. For more information, " -"go to %1sKlarna Pay Later documentation%2s or %3sKlarna Slice it " -"documentation%4s" -msgstr "" -"Vous avez activé Klarna. Pour accepter les paiements, veuillez vous assurer " -"que tous les champs par défaut de la caisse de WooCommerce sont activés et " -"obligatoires. Pour plus d’informations, consultez la %1sdocumentation de " -"Klarna Pay Later%2s ou %3scelle de Klarna Slice it%4s" - -#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce version, placeholder 3: used WooCommerce version -#: build/src/Mollie/WC/Helper/Status.php:67 src/Mollie/WC/Helper/Status.php:67 -msgid "" -"The %s plugin requires at least WooCommerce version %s, you are using " -"version %s. Please update your WooCommerce plugin." -msgstr "" -"Le plugin %s nécessite au moins la version WooCommerce %s, vous utilisez la " -"version %s. Veuillez mettre à jour votre plugin WooCommerce." - -#: build/src/Mollie/WC/Helper/Status.php:80 src/Mollie/WC/Helper/Status.php:80 -msgid "" -"Mollie API client not installed. Please make sure the plugin is installed " -"correctly." -msgstr "" -"Mollie client API n’est pas installé. Veuillez vous assurer que le plugin " -"est installé correctement." - -#: build/src/Mollie/WC/Helper/Status.php:89 src/Mollie/WC/Helper/Status.php:89 -msgid "" -"Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable " -"it in your server or ask your webhoster to enable it for you." -msgstr "" -"Mollie Payments for WooCommerce nécessite l’extension JSON pour PHP. Activez-" -"le sur votre serveur ou faites-en la demande auprès de votre hébergeur." - -#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP version -#: build/src/Mollie/WC/Helper/Status.php:104 -#: src/Mollie/WC/Helper/Status.php:104 -msgid "" -"Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. " -"Please upgrade and view %sthis FAQ%s" -msgstr "" -"Afin d’utiliser Mollie Payments sur WooCommerce, PHP %s ou supérieur est " -"requis. Votre PHP est %s. Veuillez mettre à jour et consulter les %sdans les " -"FAQ %s." - -#: build/src/Mollie/WC/Helper/Status.php:116 -#: src/Mollie/WC/Helper/Status.php:116 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension JSON to be " -"enabled. Please enable the 'json' extension in your PHP configuration." -msgstr "" -"Mollie Payments pour WooCommerce nécessite l’activation de l’extension PHP " -"JSON. Veuillez activer l’extension « json » dans votre configuration PHP." - -#: build/src/Mollie/WC/Helper/Status.php:123 -#: src/Mollie/WC/Helper/Status.php:123 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension cURL to be " -"enabled. Please enable the 'curl' extension in your PHP configuration." -msgstr "" -"Mollie Payments pour WooCommerce nécessite l’activation de l’extension PHP " -"cURL. Veuillez activer l’extension « curl » dans votre configuration PHP." - -#: build/src/Mollie/WC/Helper/Status.php:131 -#: src/Mollie/WC/Helper/Status.php:131 -msgid "" -"Mollie Payments for WooCommerce require PHP cURL functions to be available. " -"Please make sure all of these functions are available." -msgstr "" -"Afin d’utiliser Mollie Payments sur WooCommerce, il vous faut les fonctions " -"PHP cURL. Assurez-vous que toutes ces fonctions soient disponibles." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:603 -#: src/Mollie/WC/Payment/Object.php:603 -msgid "" -"%s renewal payment failed via Mollie (%s). You will need to manually review " -"the payment and adjust product stocks if you use them." -msgstr "" -"Le paiement de renouvellement %s a échoué via Mollie (%s). Vous devrez " -"examiner manuellement le paiement et ajuster les stocks de produits si vous " -"les utilisez." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:637 -#: src/Mollie/WC/Payment/Object.php:637 -msgid "%s payment failed via Mollie (%s)." -msgstr "Le paiement %s a échoué via Mollie (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:677 -#: src/Mollie/WC/Payment/Object.php:677 -msgid "" -"Mollie webhook called, but payment also started via %s, so the order status " -"is not updated." -msgstr "" -"Mollie webhook appelé, mais le paiement a également commencé via %s, le " -"statut de la commande n'a pas pu être mis à jour." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:262 -#: build/src/Mollie/WC/Payment/Payment.php:247 -#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:247 -msgid "Order completed using %s payment (%s)." -msgstr "Commande terminée avec le paiement %s (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:314 -#: src/Mollie/WC/Payment/Order.php:314 -msgid "" -"Order authorized using %s payment (%s). Set order to completed in " -"WooCommerce when you have shipped the products, to capture the payment. Do " -"this within 28 days, or the order will expire. To handle individual order " -"lines, process the order via the Mollie Dashboard." -msgstr "" -"Commande autorisée avec le paiement %s (%s). Définissez la commande sur " -"« exécuté » dans WooCommerce lorsque vous avez expédié les produits afin " -"d’enregistrer le paiement. Faites-le dans les 28 jours, sinon la commande " -"expirera. Pour traiter des lignes de commande individuelles, traitez la " -"commande via le tableau de bord Mollie." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:361 -#: src/Mollie/WC/Payment/Order.php:361 -msgid "" -"Order completed at Mollie for %s order (%s). At least one order line " -"completed. Remember: Completed status for an order at Mollie is not the same " -"as Completed status in WooCommerce!" -msgstr "" -"Commande terminée chez Mollie pour %s commande (%s). Au moins une ligne de " -"commande complétée. Rappel : L’état « Terminé » pour une commande sur Mollie " -"n’est pas identique à l’état « Terminé » dans WooCommerce !" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:444 -#: src/Mollie/WC/Payment/Order.php:444 -msgid "%s order (%s) cancelled ." -msgstr "Commande %s (%s) annulée." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:509 -#: src/Mollie/WC/Payment/Order.php:509 -msgid "" -"%s order expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s la commande a expiré (%s) mais n’a pas été annulée en raison d’un autre " -"paiement en attente (%s)." - -#. translators: Order note error -#: src/Mollie/WC/Payment/Order.php:619 -msgid "" -"The sum of refunds for all order lines is not identical to the refund " -"amount, so this refund will be processed as a payment amount refund, not an " -"order line refund." -msgstr "" -"La somme des remboursements pour toutes les lignes de commande n’est pas " -"identique au montant du remboursement. Ce remboursement sera donc traité " -"comme un remboursement du montant du paiement, et non comme un remboursement " -"de ligne de commande." - -#. translators: Placeholder 1: payment status. -#: src/Mollie/WC/Payment/Order.php:619 -msgid "Can not refund order amount that has status %1$s at Mollie." -msgstr "" -"Impossible de rembourser le montant d’une commande avec statut %1$s chez " -"Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:742 -#: src/Mollie/WC/Payment/Order.php:742 -msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie." -msgstr "%sx %s annulé pour %s%s dans WooCommerce et sur Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:758 -#: src/Mollie/WC/Payment/Order.php:758 -msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"%sx %s remboursé pour %s%s dans WooCommerce et sur Mollie. ID remboursement" -"%s : %s." - -#: build/src/Mollie/WC/Payment/Order.php:836 -#: src/Mollie/WC/Payment/Order.php:836 -msgid "" -"Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"Montant remboursé de %s%s remboursé dans WooCommerce et sur Mollie. ID " -"remboursement%s : %s." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:931 -#: src/Mollie/WC/Payment/Order.php:931 -msgid "%s order (%s) expired ." -msgstr "Commande %s (%s) expirée." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -msgid "" -"One of the WooCommerce order items does not have the refund item ID meta " -"value associated to Mollie Order item." -msgstr "" -"L'un des éléments de commande WooCommerce n'a pas l'ID d'élément meta value " -"associé à l'élément de commande Mollie." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -msgid "" -"Impossible to retrieve the order item ID related to the remote item: %1$s. " -"Try to do a refund by amount." -msgstr "" -"Impossible de retrouver l’ID d’élément de commande correspondant à l’élément " -"distant : %1$s. Essayez de rembourser le montant." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -msgid "Empty WooCommerce order items or mollie order lines." -msgstr "" -"Videz les éléments de commande WooCommerce ou les lignes de commande Mollie." - -#. translators: Placeholder 1: order number -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: build/src/Mollie/WC/Payment/Payment.php:132 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: src/Mollie/WC/Payment/Payment.php:132 -msgctxt "Payment description for {orderNumber}" -msgid "Order {orderNumber}" -msgstr "Commande {orderNumber}" - -#. translators: Placeholder 1: store name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: build/src/Mollie/WC/Payment/Payment.php:143 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: src/Mollie/WC/Payment/Payment.php:143 -msgctxt "Payment description for {storeName}" -msgid "StoreName {storeName}" -msgstr "Nom du magasin {storeName}" - -#. translators: Placeholder 1: customer first name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: build/src/Mollie/WC/Payment/Payment.php:154 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: src/Mollie/WC/Payment/Payment.php:154 -msgctxt "Payment description for {customer.firstname}" -msgid "Customer Firstname {customer.firstname}" -msgstr "Prénom du client {customer.firstname}" - -#. translators: Placeholder 1: customer last name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: build/src/Mollie/WC/Payment/Payment.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: src/Mollie/WC/Payment/Payment.php:165 -msgctxt "Payment description for {customer.lastname}" -msgid "Customer Lastname {customer.lastname}" -msgstr "Nom du client {customer.lastname}" - -#. translators: Placeholder 1: customer company name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: build/src/Mollie/WC/Payment/Payment.php:176 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: src/Mollie/WC/Payment/Payment.php:176 -msgctxt "Payment description for {customer.company}" -msgid "Customer Company {customer.company}" -msgstr "Nom de la société du client {customer.company}" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:334 -#: src/Mollie/WC/Payment/Payment.php:334 -msgid "%s payment (%s) cancelled ." -msgstr "Paiement %s (%s) annulé." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:328 -msgid "Processing a payment, no capture needed" -msgstr "Traitement d’un paiement, aucune capture nécessaire" - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:342 -msgid "Order already canceled at Mollie, can not be shipped/captured." -msgstr "Commande déjà annulée chez Mollie, ne peut être expédiée/capturée." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:350 -msgid "Order already completed at Mollie, can not be shipped/captured." -msgstr "Commande déjà effectuée chez Mollie, ne peut être expédiée/capturée." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:359 -msgid "" -"Order successfully updated to shipped at Mollie, capture of funds underway." -msgstr "" -"Commande mise à jour avec succès pour être expédiée à Mollie, capture des " -"fonds en cours." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:365 -msgid "Order not paid or authorized at Mollie yet, can not be shipped." -msgstr "" -"La commande n’est pas encore payée ou autorisée chez Mollie, elle ne peut " -"pas être expédiée." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:399 -msgid "" -"Order contains Mollie payment method, but not a valid Mollie Order ID. " -"Canceling order failed." -msgstr "" -"La commande contient un mode de paiement Mollie, mais pas d’ID de commande " -"Mollie valide. L’annulation de la commande a échoué." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:420 -msgid "Order already canceled at Mollie, can not be canceled again." -msgstr "" -"Commande déjà annulée chez Mollie, ne peut être annulée une seconde fois." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:430 -msgid "Order also cancelled at Mollie." -msgstr "Commande également annulée chez Mollie." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:436 -msgid "Order could not be canceled at Mollie, because order status is " -msgstr "" -"La commande n’a pas pu être annulée chez Mollie, parce que le statut de la " -"commande est " - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:404 -#: src/Mollie/WC/Payment/Payment.php:404 -msgid "" -"%s payment expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s le paiement a expiré (%s) mais n’a pas été annulé en raison d’un autre " -"paiement en attente (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:427 -#: src/Mollie/WC/Payment/Payment.php:427 -msgid "%s payment expired (%s)." -msgstr "Paiement %s expiré (%s)." - -#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID -#: build/src/Mollie/WC/Payment/Payment.php:509 -#: src/Mollie/WC/Payment/Payment.php:509 -msgid "Refunded %s%s%s - Payment: %s, Refund: %s" -msgstr "Remboursé %s%s%s - Paiement : %s, Remboursement : %s." - -#: build/src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -msgid "" -"Mollie doesn't allow a partial refund of the full amount or quantity of at " -"least one order line. Trying to process this as an amount refund instead." -msgstr "" -"Mollie n'autorise pas le remboursement partiel du montant ou de la quantité " -"totale d'au moins une ligne de commande. Essayer de traiter ceci comme un " -"remboursement de montant." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Plugin.php:128 src/Mollie/WC/Plugin.php:128 -msgid "%s payment failed (%s)." -msgstr "Le paiement %s a échoué (%s)." - -#: build/src/Mollie/WC/Plugin.php:303 src/Mollie/WC/Plugin.php:303 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s " -"disable it%4$s before deploying into production." -msgstr "" -"%1$sPaiements Mollie pour WooCommerce%2$s Le mode test est actif, %3$s " -"désactivez-le%4$s avant de le déployer en production." - -#: build/src/Mollie/WC/Plugin.php:411 build/src/Mollie/WC/Plugin.php:444 -#: build/src/Mollie/WC/Plugin.php:466 src/Mollie/WC/Plugin.php:411 -#: src/Mollie/WC/Plugin.php:444 src/Mollie/WC/Plugin.php:466 -msgid "Mollie Voucher Category" -msgstr "Catégorie de bons Mollie" - -#: build/src/Mollie/WC/Plugin.php:414 build/src/Mollie/WC/Plugin.php:446 -#: build/src/Mollie/WC/Plugin.php:469 src/Mollie/WC/Plugin.php:414 -#: src/Mollie/WC/Plugin.php:446 src/Mollie/WC/Plugin.php:469 -msgid "--Please choose an option--" -msgstr "--Veuillez choisir une option--" - -#: build/src/Mollie/WC/Plugin.php:415 build/src/Mollie/WC/Plugin.php:447 -#: build/src/Mollie/WC/Plugin.php:470 build/src/Mollie/WC/Plugin.php:583 -#: src/Mollie/WC/Plugin.php:415 src/Mollie/WC/Plugin.php:447 -#: src/Mollie/WC/Plugin.php:470 src/Mollie/WC/Plugin.php:583 -msgid "No Category" -msgstr "Aucune catégorie" - -#: build/src/Mollie/WC/Plugin.php:416 build/src/Mollie/WC/Plugin.php:448 -#: build/src/Mollie/WC/Plugin.php:471 build/src/Mollie/WC/Plugin.php:584 -#: src/Mollie/WC/Plugin.php:416 src/Mollie/WC/Plugin.php:448 -#: src/Mollie/WC/Plugin.php:471 src/Mollie/WC/Plugin.php:584 -msgid "Meal" -msgstr "Repas" - -#: build/src/Mollie/WC/Plugin.php:417 build/src/Mollie/WC/Plugin.php:449 -#: build/src/Mollie/WC/Plugin.php:472 build/src/Mollie/WC/Plugin.php:585 -#: src/Mollie/WC/Plugin.php:417 src/Mollie/WC/Plugin.php:449 -#: src/Mollie/WC/Plugin.php:472 src/Mollie/WC/Plugin.php:585 -msgid "Eco" -msgstr "Éco" - -#: build/src/Mollie/WC/Plugin.php:418 build/src/Mollie/WC/Plugin.php:450 -#: build/src/Mollie/WC/Plugin.php:473 build/src/Mollie/WC/Plugin.php:586 -#: src/Mollie/WC/Plugin.php:418 src/Mollie/WC/Plugin.php:450 -#: src/Mollie/WC/Plugin.php:473 src/Mollie/WC/Plugin.php:586 -msgid "Gift" -msgstr "Cadeau" - -#: build/src/Mollie/WC/Plugin.php:452 build/src/Mollie/WC/Plugin.php:475 -#: src/Mollie/WC/Plugin.php:452 src/Mollie/WC/Plugin.php:475 -msgid "Select a voucher category to apply to all products with this category" -msgstr "" -"Sélectionnez une catégorie de bons pour les appliquer à tous les produits de " -"cette catégorie." - -#: build/src/Mollie/WC/Plugin.php:512 src/Mollie/WC/Plugin.php:512 -msgid "Products voucher category" -msgstr "Catégorie de bons de produits" - -#: build/src/Mollie/WC/Plugin.php:519 build/src/Mollie/WC/Plugin.php:582 -#: src/Mollie/WC/Plugin.php:519 src/Mollie/WC/Plugin.php:582 -msgid "Same as default category" -msgstr "La même que la catégorie par défaut" +#: ../src/Settings/Page/MollieSettingsPage.php:300 +msgid "Gateway enabled" +msgstr "Passerelle désactivée" -#: build/src/Mollie/WC/Plugin.php:529 src/Mollie/WC/Plugin.php:529 -msgid "" -"In order to process it, all products in the order must have a category. To " -"disable the product from voucher selection select \"No category\" option." -msgstr "" -"Afin qu’elle puisse être traitée, tous les produits de la commande doivent " -"appartenir à une catégorie. Afin de supprimer le produit de la sélection du " -"bon, sélectionnez l’option « Aucune catégorie »." +#: ../src/Settings/Page/MollieSettingsPage.php:304 +msgid "Gateway disabled" +msgstr "Passerelle désactivée" -#: build/src/Mollie/WC/Plugin.php:579 src/Mollie/WC/Plugin.php:579 -msgid "Mollie Voucher category" -msgstr "Catégorie de bons Mollie" +#: ../src/Settings/Page/MollieSettingsPage.php:307 +msgid "Disabled" +msgstr "Désactivé" -#: build/src/Mollie/WC/Plugin.php:727 src/Mollie/WC/Plugin.php:727 -msgid "%1$s items refunded in WooCommerce and at Mollie." -msgstr "%1$s articles remboursés dans WooCommerce et sur Mollie." +#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Settings/Page/MollieSettingsPage.php:318 +msgid "The following payment methods are activated in your %1$sMollie profile%2$s:" +msgstr "Les méthodes de paiement suivantes sont activées dans votre profil Mollie %1$s%2$s:" -#: build/src/Mollie/WC/Plugin.php:745 src/Mollie/WC/Plugin.php:745 -msgid "%1$s items cancelled in WooCommerce and at Mollie." -msgstr "%1$s articles annulés dans WooCommerce et sur Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:333 +msgid "Refresh" +msgstr "Actualiser" -#: build/src/Mollie/WC/Plugin.php:919 src/Mollie/WC/Plugin.php:919 -msgid "Name on card" -msgstr "Nom figurant sur la carte de crédit" +#: ../src/Settings/Page/MollieSettingsPage.php:342 +msgid "No payment methods available" +msgstr "Aucune méthode de paiement disponible" -#: build/src/Mollie/WC/Plugin.php:923 src/Mollie/WC/Plugin.php:923 -msgid "Card number" -msgstr "Numéro de la carte" +#: ../src/Settings/Page/MollieSettingsPage.php:357 +msgid "Edit" +msgstr "Éditer" -#: build/src/Mollie/WC/Plugin.php:931 src/Mollie/WC/Plugin.php:931 -msgid "CVC/CVV" -msgstr "CVC/CVV" +#: ../src/Settings/Page/MollieSettingsPage.php:365 +msgid "Activate" +msgstr "Activer" -#: build/src/Mollie/WC/Plugin.php:938 src/Mollie/WC/Plugin.php:938 -msgid "An unknown error occurred, please check the card fields." -msgstr "" -"Une erreur inconnue est survenue, veillez vérifier les champs de la carte." +#: ../src/Settings/Page/MollieSettingsPage.php:411 +msgid "You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. Enable SEPA Direct Debit if you want to allow customers to pay subscriptions with iDEAL and/or other \"first\" payment methods." +msgstr "Votre abonnement WooCommerce est activé, mais pas SEPA direct débit. Activez le prélèvement automatique SEPA si vous souhaitez offrir à vos clients d’autres méthodes de paiement « préalables » tels que iDEAL ou autre." -#: build/src/Mollie/WC/Plugin.php:1295 src/Mollie/WC/Plugin.php:1295 -msgid "Mollie settings" -msgstr "Réglages Mollie" +#: ../src/Settings/Page/MollieSettingsPage.php:437 +msgid "You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via Mollie and disabling the default WooCommerce BACS payment gateway to prevent possible conflicts." +msgstr "La passerelle de paiement Direct Bank Transfer (BACS) est activée par défaut dans WooCommerce. Mollie conseille fortement d’utiliser le transfert bancaire via Mollie et de désactiver la passerelle de paiement WooCommerce BACS pour éviter d’éventuels conflits." -#: build/src/Mollie/WC/Plugin.php:1301 src/Mollie/WC/Plugin.php:1301 -msgid "Logs" -msgstr "Journaux" +#. translators: Placeholder 1: Opening link tag. Placeholder 2: Closing link tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/Page/MollieSettingsPage.php:461 +msgid "You have activated Klarna. To accept payments, please make sure all default WooCommerce checkout fields are enabled and required. For more information, go to %1$sKlarna Pay Later documentation%2$s or %3$sKlarna Slice it documentation%4$s" +msgstr "Vous avez activé Klarna. Pour accepter les paiements, veuillez vous assurer que tous les champs par défaut de la caisse de WooCommerce sont activés et obligatoires. Pour plus d’informations, consultez la %1$sdocumentation de Klarna Pay Later%2$s ou %3$scelle de Klarna Slice it%4$s" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:138 -#: src/Mollie/WC/Settings/Page/Mollie.php:138 +#: ../src/Settings/Page/MollieSettingsPage.php:702 msgid "General" msgstr "Général" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:143 -#: src/Mollie/WC/Settings/Page/Mollie.php:143 -msgid "Apple Pay Button" -msgstr "Bouton Apple Pay" - -#: build/src/Mollie/WC/Settings/Page/Mollie.php:147 -#: src/Mollie/WC/Settings/Page/Mollie.php:147 +#: ../src/Settings/Page/MollieSettingsPage.php:707 msgid "Advanced" msgstr "Avancé" -#: src/Mollie/WC/Gateway/Abstract.php:1987 -msgid "%1$s Secure payments provided by %2$s" -msgstr "Paiements sécurisés %1$s effectués par %2$s" +#: ../src/Settings/Page/MollieSettingsPage.php:710 +msgid "Apple Pay Button" +msgstr "Bouton Apple Pay" diff --git a/languages/mollie-payments-for-woocommerce-it_IT.mo b/languages/mollie-payments-for-woocommerce-it_IT.mo index 2e7a4bd60..b6f9b893b 100644 Binary files a/languages/mollie-payments-for-woocommerce-it_IT.mo and b/languages/mollie-payments-for-woocommerce-it_IT.mo differ diff --git a/languages/mollie-payments-for-woocommerce-it_IT.po b/languages/mollie-payments-for-woocommerce-it_IT.po index 18778fb87..13996ecf3 100644 --- a/languages/mollie-payments-for-woocommerce-it_IT.po +++ b/languages/mollie-payments-for-woocommerce-it_IT.po @@ -1,2872 +1,1975 @@ -# Copyright (C) 2021 Mollie -# This file is distributed under the same license as the Mollie Payments for WooCommerce plugin. +# Copyright (C) 2022 unnamed project +# This file is distributed under the same license as the unnamed project package. msgid "" msgstr "" -"Project-Id-Version: Mollie Payments for WooCommerce 6.7.0\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mollie-payments-" -"for-woocommerce\n" -"POT-Creation-Date: 2021-11-12T07:59:02+00:00\n" -"PO-Revision-Date: 2022-06-20 11:20+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: it\n" +"Project-Id-Version: Mollie Payments for WooCommerce 7.3.3\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: undefined\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.1\n" -"X-Domain: mollie-payments-for-woocommerce\n" -#. Plugin Name of the plugin -msgid "Mollie Payments for WooCommerce" -msgstr "Mollie Payments per WooCommerce" - -#. Plugin URI of the plugin -#. Author URI of the plugin -msgid "https://www.mollie.com" -msgstr "https://www.mollie.com" - -#. Description of the plugin -msgid "Accept payments in WooCommerce with the official Mollie plugin" -msgstr "Accetta pagamenti in WooCommerce con il plugin ufficiale Mollie" - -#. Author of the plugin -msgid "Mollie" -msgstr "Mollie" - -#: build/inc/settings/mollie_advanced_settings.php:6 -#: inc/settings/mollie_advanced_settings.php:6 -msgid "Mollie advanced settings" -msgstr "Impostazioni avanzate Mollie" - -#: build/inc/settings/mollie_advanced_settings.php:8 -#: inc/settings/mollie_advanced_settings.php:8 +#: ../inc/settings/mollie_advanced_settings.php:12 msgctxt "Label {orderNumber} description for payment description options" msgid "Order number" msgstr "Numero ordine" -#: build/inc/settings/mollie_advanced_settings.php:9 -#: inc/settings/mollie_advanced_settings.php:9 +#: ../inc/settings/mollie_advanced_settings.php:13 msgctxt "Label {storeName} description for payment description options" msgid "Site Title" msgstr "Titolo pagina" -#: build/inc/settings/mollie_advanced_settings.php:10 -#: inc/settings/mollie_advanced_settings.php:10 -msgctxt "" -"Label {customer.firstname} description for payment description options" +#: ../inc/settings/mollie_advanced_settings.php:14 +msgctxt "Label {customer.firstname} description for payment description options" msgid "Customer's first name" msgstr "Nome cliente" -#: build/inc/settings/mollie_advanced_settings.php:11 -#: inc/settings/mollie_advanced_settings.php:11 +#: ../inc/settings/mollie_advanced_settings.php:15 msgctxt "Label {customer.lastname} description for payment description options" msgid "Customer's last name" msgstr "Cognome cliente" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:16 msgctxt "Label {customer.company} description for payment description options" msgid "Customer's company name" msgstr "Nome azienda cliente" -#: build/inc/settings/mollie_advanced_settings.php:8 -#: build/src/Mollie/WC/Helper/Settings.php:666 -#: inc/settings/mollie_advanced_settings.php:8 -#: src/Mollie/WC/Helper/Settings.php:666 -msgid "" -"The following options are required to use the plugin and are used by all " -"Mollie payment methods" -msgstr "" -"Le seguenti opzioni sono necessarie per utilizzare il plugin e vengono " -"utilizzate da tutte le modalità di pagamento Mollie" +#: ../inc/settings/mollie_advanced_settings.php:22 +msgid "Mollie advanced settings" +msgstr "Impostazioni avanzate Mollie" + +#: ../inc/settings/mollie_advanced_settings.php:24, ../src/Settings/Page/MollieSettingsPage.php:185 +msgid "The following options are required to use the plugin and are used by all Mollie payment methods" +msgstr "Le seguenti opzioni sono necessarie per utilizzare il plugin e vengono utilizzate da tutte le modalità di pagamento Mollie" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:28 msgid "Order status after cancelled payment" msgstr "Stato dell’ordine dopo l’annullamento del pagamento" -#: build/inc/settings/mollie_advanced_settings.php:18 -#: inc/settings/mollie_advanced_settings.php:18 -msgid "" -"Status for orders when a payment (not a Mollie order via the Orders API) is " -"cancelled. Default: pending. Orders with status Pending can be paid with " -"another payment method, customers can try again. Cancelled orders are final. " -"Set this to Cancelled if you only have one payment method or don't want " -"customers to re-try paying with a different payment method. This doesn't " -"apply to payments for orders via the new Orders API and Klarna payments." -msgstr "" -"Stato degli ordini quando un pagamento (non un ordine Mollie attraverso la " -"Orders API) viene annullato. Predefinito: in sospeso. Gli ordini con stato " -"In Sospeso possono essere pagati con un altra modalità di pagamento, i " -"clienti possono riprovare. Gli ordini annullati sono definitivi. Imposta lo " -"stato su Annullato se hai solo una modalità di pagamento o non vuoi che i " -"clienti riprovino ad effettuare il pagamento con un’altra modalità. Ciò non " -"si applica ai pagamenti di ordini tramite la nuova Orders API e i pagamenti " -"Klarna." - -#: build/inc/settings/mollie_advanced_settings.php:23 -#: inc/settings/mollie_advanced_settings.php:23 +#: ../inc/settings/mollie_advanced_settings.php:31 +msgid "Pending" +msgstr "In sospeso" + +#: ../inc/settings/mollie_advanced_settings.php:32 +msgid "Cancelled" +msgstr "Annullato" + +#: ../inc/settings/mollie_advanced_settings.php:34 +msgid "Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don't want customers to re-try paying with a different payment method. This doesn't apply to payments for orders via the new Orders API and Klarna payments." +msgstr "Stato degli ordini quando un pagamento (non un ordine Mollie attraverso la Orders API) viene annullato. Predefinito: in sospeso. Gli ordini con stato In Sospeso possono essere pagati con un altra modalità di pagamento, i clienti possono riprovare. Gli ordini annullati sono definitivi. Imposta lo stato su Annullato se hai solo una modalità di pagamento o non vuoi che i clienti riprovino ad effettuare il pagamento con un’altra modalità. Ciò non si applica ai pagamenti di ordini tramite la nuova Orders API e i pagamenti Klarna." + +#: ../inc/settings/mollie_advanced_settings.php:39 msgid "Payment screen language" msgstr "Lingua della schermata di pagamento" -#: build/inc/settings/mollie_advanced_settings.php:26 -#: inc/settings/mollie_advanced_settings.php:26 +#: ../inc/settings/mollie_advanced_settings.php:42 msgid "Automatically send WordPress language" msgstr "Invia automaticamente la lingua di WordPress" -#: build/inc/settings/mollie_advanced_settings.php:29 -#: build/inc/settings/mollie_advanced_settings.php:90 -#: build/src/Mollie/WC/Helper/Settings.php:288 -#: inc/settings/mollie_advanced_settings.php:29 -#: inc/settings/mollie_advanced_settings.php:90 -#: src/Mollie/WC/Helper/Settings.php:288 +#: ../inc/settings/mollie_advanced_settings.php:45, ../inc/settings/mollie_advanced_settings.php:105, ../src/Settings/General/MollieGeneralSettings.php:266 msgid "default" msgstr "predefinito" -#: build/inc/settings/mollie_advanced_settings.php:30 -#: inc/settings/mollie_advanced_settings.php:30 +#: ../inc/settings/mollie_advanced_settings.php:46 msgid "Detect using browser language" msgstr "Rileva utilizzando la lingua del browser" -#: build/inc/settings/mollie_advanced_settings.php:34 -#: inc/settings/mollie_advanced_settings.php:34 +#: ../inc/settings/mollie_advanced_settings.php:50 msgid "English" msgstr "Inglese" -#: build/inc/settings/mollie_advanced_settings.php:35 -#: inc/settings/mollie_advanced_settings.php:35 +#: ../inc/settings/mollie_advanced_settings.php:51 msgid "Dutch" msgstr "Olandese" -#: build/inc/settings/mollie_advanced_settings.php:36 -#: inc/settings/mollie_advanced_settings.php:36 +#: ../inc/settings/mollie_advanced_settings.php:52 msgid "Flemish (Belgium)" msgstr "Fiammingo (Belgio)" -#: build/inc/settings/mollie_advanced_settings.php:37 -#: inc/settings/mollie_advanced_settings.php:37 +#: ../inc/settings/mollie_advanced_settings.php:53 msgid "French" msgstr "Francese" -#: build/inc/settings/mollie_advanced_settings.php:38 -#: inc/settings/mollie_advanced_settings.php:38 +#: ../inc/settings/mollie_advanced_settings.php:54 msgid "French (Belgium)" msgstr "Francese (Belgio)" -#: build/inc/settings/mollie_advanced_settings.php:39 -#: inc/settings/mollie_advanced_settings.php:39 +#: ../inc/settings/mollie_advanced_settings.php:55 msgid "German" msgstr "Tedesco" -#: build/inc/settings/mollie_advanced_settings.php:40 -#: inc/settings/mollie_advanced_settings.php:40 +#: ../inc/settings/mollie_advanced_settings.php:56 msgid "Austrian German" msgstr "Tedesco austriaco" -#: build/inc/settings/mollie_advanced_settings.php:41 -#: inc/settings/mollie_advanced_settings.php:41 +#: ../inc/settings/mollie_advanced_settings.php:57 msgid "Swiss German" msgstr "Tedesco svizzero" -#: build/inc/settings/mollie_advanced_settings.php:42 -#: inc/settings/mollie_advanced_settings.php:42 +#: ../inc/settings/mollie_advanced_settings.php:58 msgid "Spanish" msgstr "Spagnolo" -#: build/inc/settings/mollie_advanced_settings.php:43 -#: inc/settings/mollie_advanced_settings.php:43 +#: ../inc/settings/mollie_advanced_settings.php:59 msgid "Catalan" msgstr "Catalano" -#: build/inc/settings/mollie_advanced_settings.php:44 -#: inc/settings/mollie_advanced_settings.php:44 +#: ../inc/settings/mollie_advanced_settings.php:60 msgid "Portuguese" msgstr "Portoghese" -#: build/inc/settings/mollie_advanced_settings.php:45 -#: inc/settings/mollie_advanced_settings.php:45 +#: ../inc/settings/mollie_advanced_settings.php:61 msgid "Italian" msgstr "Italiano" -#: build/inc/settings/mollie_advanced_settings.php:46 -#: inc/settings/mollie_advanced_settings.php:46 +#: ../inc/settings/mollie_advanced_settings.php:62 msgid "Norwegian" msgstr "Norvegese" -#: build/inc/settings/mollie_advanced_settings.php:47 -#: inc/settings/mollie_advanced_settings.php:47 +#: ../inc/settings/mollie_advanced_settings.php:63 msgid "Swedish" msgstr "Svedese" -#: build/inc/settings/mollie_advanced_settings.php:48 -#: inc/settings/mollie_advanced_settings.php:48 +#: ../inc/settings/mollie_advanced_settings.php:64 msgid "Finnish" msgstr "Finlandese" -#: build/inc/settings/mollie_advanced_settings.php:49 -#: inc/settings/mollie_advanced_settings.php:49 +#: ../inc/settings/mollie_advanced_settings.php:65 msgid "Danish" msgstr "Danese" -#: build/inc/settings/mollie_advanced_settings.php:50 -#: inc/settings/mollie_advanced_settings.php:50 +#: ../inc/settings/mollie_advanced_settings.php:66 msgid "Icelandic" msgstr "Islandese" -#: build/inc/settings/mollie_advanced_settings.php:51 -#: inc/settings/mollie_advanced_settings.php:51 +#: ../inc/settings/mollie_advanced_settings.php:67 msgid "Hungarian" msgstr "Ungherese" -#: build/inc/settings/mollie_advanced_settings.php:52 -#: inc/settings/mollie_advanced_settings.php:52 +#: ../inc/settings/mollie_advanced_settings.php:68 msgid "Polish" msgstr "Polacco" -#: build/inc/settings/mollie_advanced_settings.php:53 -#: inc/settings/mollie_advanced_settings.php:53 +#: ../inc/settings/mollie_advanced_settings.php:69 msgid "Latvian" msgstr "Lettone" -#: build/inc/settings/mollie_advanced_settings.php:54 -#: inc/settings/mollie_advanced_settings.php:54 +#: ../inc/settings/mollie_advanced_settings.php:70 msgid "Lithuanian" msgstr "Lituano" -#: build/inc/settings/mollie_advanced_settings.php:57 -#: inc/settings/mollie_advanced_settings.php:57 -msgid "" -"Sending a language (or locale) is required. The option 'Automatically send " -"WordPress language' will try to get the customer's language in WordPress " -"(and respects multilanguage plugins) and convert it to a format Mollie " -"understands. If this fails, or if the language is not supported, it will " -"fall back to American English. You can also select one of the locales " -"currently supported by Mollie, that will then be used for all customers." -msgstr "" -"È richiesto l'invio di una lingua (o impostazioni locali). L'opzione 'Invia " -"automaticamente la lingua di WordPress' cercherà di ottenere la lingua del " -"cliente in WordPress (e rispetta i plugin multilingue) e di convertirla in " -"un formato che Mollie capisce. Se questa operazione fallisce, o se la lingua " -"non è supportata, si passa all’inglese americano. È inoltre possibile " -"selezionare una delle impostazioni locali attualmente supportate da Mollie, " -"che verrà poi utilizzata per tutti i clienti." - -#: build/inc/settings/mollie_advanced_settings.php:65 -#: inc/settings/mollie_advanced_settings.php:65 +#: ../inc/settings/mollie_advanced_settings.php:73 +msgid "Sending a language (or locale) is required. The option 'Automatically send WordPress language' will try to get the customer's language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers." +msgstr "È richiesto l'invio di una lingua (o impostazioni locali). L'opzione 'Invia automaticamente la lingua di WordPress' cercherà di ottenere la lingua del cliente in WordPress (e rispetta i plugin multilingue) e di convertirla in un formato che Mollie capisce. Se questa operazione fallisce, o se la lingua non è supportata, si passa all’inglese americano. È inoltre possibile selezionare una delle impostazioni locali attualmente supportate da Mollie, che verrà poi utilizzata per tutti i clienti." + +#: ../inc/settings/mollie_advanced_settings.php:81 msgid "Store customer details at Mollie" msgstr "Memorizza dettagli cliente su Mollie" -#: build/inc/settings/mollie_advanced_settings.php:68 -#: inc/settings/mollie_advanced_settings.php:68 -msgid "" -"Should Mollie store customers name and email address for Single Click " -"Payments? Default %1$s. Required if WooCommerce Subscriptions " -"is being used! Read more about " -"%2$s and how it improves your conversion." -msgstr "" -"Mollie dovrebbe memorizzare nome e indirizzo email dei clienti per pagamenti " -"con un solo clic? Predefinito %1$s. Richiesto se vengono " -"utilizzati abbonamenti a WooCommerce! Scopri di più su %2$s e su come migliora la tua " -"conversione." - -#: build/inc/settings/mollie_advanced_settings.php:72 -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: inc/settings/mollie_advanced_settings.php:72 -#: src/Mollie/WC/Helper/Settings.php:551 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_advanced_settings.php:84 +msgid "Should Mollie store customers name and email address for Single Click Payments? Default %1$s. Required if WooCommerce Subscriptions is being used! Read more about %2$s and how it improves your conversion." +msgstr "Mollie dovrebbe memorizzare nome e indirizzo email dei clienti per pagamenti con un solo clic? Predefinito %1$s. Richiesto se vengono utilizzati abbonamenti a WooCommerce! Scopri di più su %2$s e su come migliora la tua conversione." + +#: ../inc/settings/mollie_advanced_settings.php:88, ../src/Settings/Page/MollieSettingsPage.php:303 msgid "Enabled" msgstr "Abilitato" -#: build/inc/settings/mollie_advanced_settings.php:73 -#: inc/settings/mollie_advanced_settings.php:73 +#: ../inc/settings/mollie_advanced_settings.php:89 msgid "Single Click Payments" msgstr "Pagamenti con un unico clic" -#: build/inc/settings/mollie_advanced_settings.php:82 -#: inc/settings/mollie_advanced_settings.php:82 +#: ../inc/settings/mollie_advanced_settings.php:97 msgid "Select API Method" msgstr "Seleziona API Method" -#: build/inc/settings/mollie_advanced_settings.php:99 -#: inc/settings/mollie_advanced_settings.php:99 -msgid "" -"Click %shere%s to read more about the differences between the Payments and " -"Orders API" -msgstr "" -"Clicca %squi%s per avere maggiori informazioni sulle differenze tra Payments " -"e Orders API" +#. translators: Placeholder 1: opening link tag, placeholder 2: closing link tag +#: ../inc/settings/mollie_advanced_settings.php:114 +msgid "Click %1$shere%2$s to read more about the differences between the Payments and Orders API" +msgstr "Clicca %1$squi%2$s per avere maggiori informazioni sulle differenze tra Payments e Orders API" -#: build/inc/settings/mollie_advanced_settings.php:109 -#: inc/settings/mollie_advanced_settings.php:109 +#: ../inc/settings/mollie_advanced_settings.php:124 msgid "API Payment Description" msgstr "Descrizione API Payment" -#: build/inc/settings/mollie_advanced_settings.php:137 -#: inc/settings/mollie_advanced_settings.php:137 +#: ../inc/settings/mollie_advanced_settings.php:141 msgctxt "Payment description options" msgid "Available variables" msgstr "Variabili disponibili" -#: build/inc/settings/mollie_advanced_settings.php:160 -#: inc/settings/mollie_advanced_settings.php:160 -msgid "" -"Select among the available variables the description to be used for this " -"transaction.%s(Note: this only works when the method is set to Payments " -"API)%s" -msgstr "" -"Selezionare tra le variabili disponibili la descrizione da usare per questa " -"transazione.%s(Nota: questo funziona solo se questo metodo è impostato su " -"Payments API)%s" +#. translators: Placeholder 1: Opening paragraph tag, placeholder 2: Closing paragraph tag +#: ../inc/settings/mollie_advanced_settings.php:166 +msgid "Select among the available variables the description to be used for this transaction.%1$s(Note: this only works when the method is set to Payments API)%2$s" +msgstr "Selezionare tra le variabili disponibili la descrizione da usare per questa transazione.%1$s(Nota: questo funziona solo se questo metodo è impostato su Payments API)%2$s" -#: build/inc/settings/mollie_advanced_settings.php:134 -#: inc/settings/mollie_advanced_settings.php:134 +#: ../inc/settings/mollie_advanced_settings.php:177 msgid "Surcharge gateway fee label" msgstr "Etichetta tariffa gateway per supplemento" -#: build/inc/settings/mollie_advanced_settings.php:140 -#: inc/settings/mollie_advanced_settings.php:140 +#: ../inc/settings/mollie_advanced_settings.php:183, ../src/Gateway/Surcharge.php:36 msgid "Gateway Fee" msgstr "Tariffa gateway" -#: build/inc/settings/mollie_advanced_settings.php:142 -#: inc/settings/mollie_advanced_settings.php:142 +#: ../inc/settings/mollie_advanced_settings.php:185 msgid "This is the label will appear in frontend when the surcharge applies" -msgstr "" -"Questa è l’etichetta che compare in frontend quando si applica il supplemento" +msgstr "Questa è l’etichetta che compare in frontend quando si applica il supplemento" -#: inc/settings/mollie_advanced_settings.php:194 +#: ../inc/settings/mollie_advanced_settings.php:193 msgid "Remove Mollie data from Database on uninstall" msgstr "Elimina dati Mollie dalla banca dati al momento della disinstallazione" -#: inc/settings/mollie_advanced_settings.php:199 -msgid "" -"Remove options and scheduled actions from database when uninstalling the " -"plugin." -msgstr "" -"Elimina opzioni e azioni programmate dalla banca dati quando si disinstalla " -"il plugin." +#: ../inc/settings/mollie_advanced_settings.php:199 +msgid "Remove options and scheduled actions from database when uninstalling the plugin." +msgstr "Elimina opzioni e azioni programmate dalla banca dati quando si disinstalla il plugin." + +#: ../inc/settings/mollie_advanced_settings.php:200 +msgid "Clear now" +msgstr "Cancella ora" -#: build/inc/settings/mollie_applepay_settings.php:14 -#: inc/settings/mollie_applepay_settings.php:14 +#: ../inc/settings/mollie_applepay_settings.php:12, ../src/PaymentMethods/Applepay.php:13 +msgid "Apple Pay" +msgstr "Apple Pay" + +#: ../inc/settings/mollie_applepay_settings.php:14 msgid "The following options are required to use the Apple Pay gateway" -msgstr "" -"Le seguenti opzioni sono necessarie per utilizzare il gateway Apple Pay" +msgstr "Le seguenti opzioni sono necessarie per utilizzare il gateway Apple Pay" -#: build/inc/settings/mollie_applepay_settings.php:19 -#: build/src/Mollie/WC/Helper/Settings.php:48 -#: inc/settings/mollie_applepay_settings.php:19 -#: src/Mollie/WC/Helper/Settings.php:48 +#: ../inc/settings/mollie_applepay_settings.php:19, ../src/Settings/General/MollieGeneralSettings.php:18 msgid "Enable/Disable" msgstr "Abilita/Disabilita" -#. translators: Placeholder 1: enabled or disabled -#: build/inc/settings/mollie_applepay_settings.php:21 -#: build/src/Mollie/WC/Helper/Settings.php:54 -#: inc/settings/mollie_applepay_settings.php:21 -#: src/Mollie/WC/Helper/Settings.php:54 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:21, ../src/Settings/General/MollieGeneralSettings.php:25 msgid "Enable %s" msgstr "Abilita %s" -#: build/inc/settings/mollie_applepay_settings.php:29 -#: build/src/Mollie/WC/Helper/Settings.php:68 -#: inc/settings/mollie_applepay_settings.php:29 -#: src/Mollie/WC/Helper/Settings.php:68 +#: ../inc/settings/mollie_applepay_settings.php:29, ../src/Settings/General/MollieGeneralSettings.php:38 msgid "Title" msgstr "Titolo" -#: build/inc/settings/mollie_applepay_settings.php:32 -#: build/src/Mollie/WC/Helper/Settings.php:71 -#: inc/settings/mollie_applepay_settings.php:32 -#: src/Mollie/WC/Helper/Settings.php:71 -msgid "" -"This controls the title which the user sees during checkout. Default " -"%s" -msgstr "" -"Questo controlla il titolo che l’utente vede durante al momento " -"dell’acquisto. Predefinito %s" - -#: build/inc/settings/mollie_applepay_settings.php:45 -#: build/inc/settings/mollie_applepay_settings.php:48 -#: build/src/Mollie/WC/Helper/Settings.php:94 -#: inc/settings/mollie_applepay_settings.php:45 -#: inc/settings/mollie_applepay_settings.php:48 -#: src/Mollie/WC/Helper/Settings.php:94 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:32, ../src/Settings/General/MollieGeneralSettings.php:42 +msgid "This controls the title which the user sees during checkout. Default %s" +msgstr "Questo controlla il titolo che l’utente vede durante al momento dell’acquisto. Predefinito %s" + +#: ../inc/settings/mollie_applepay_settings.php:46, ../inc/settings/mollie_applepay_settings.php:48, ../src/Settings/General/MollieGeneralSettings.php:66 msgid "Display logo" msgstr "Mostra logo" -#: build/inc/settings/mollie_applepay_settings.php:60 -#: build/src/Mollie/WC/Helper/Settings.php:81 -#: inc/settings/mollie_applepay_settings.php:60 -#: src/Mollie/WC/Helper/Settings.php:81 +#: ../inc/settings/mollie_applepay_settings.php:61, ../src/Settings/General/MollieGeneralSettings.php:52 msgid "Description" msgstr "Descrizione" -#: build/inc/settings/mollie_applepay_settings.php:63 -#: build/src/Mollie/WC/Helper/Settings.php:84 -#: inc/settings/mollie_applepay_settings.php:63 -#: src/Mollie/WC/Helper/Settings.php:84 -msgid "" -"Payment method description that the customer will see on your checkout. " -"Default %s" -msgstr "" -"Descrizione del metodo di pagamento che il cliente vedrà sul tuo checkout. " -"Predefinito %s" +#. translators: Placeholder 1: Gateway description +#: ../inc/settings/mollie_applepay_settings.php:64, ../src/Settings/General/MollieGeneralSettings.php:56 +msgid "Payment method description that the customer will see on your checkout. Default %s" +msgstr "Descrizione del metodo di pagamento che il cliente vedrà sul tuo checkout. Predefinito %s" -#: build/inc/settings/mollie_applepay_settings.php:79 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:6 -#: inc/settings/mollie_applepay_settings.php:79 -#: inc/settings/mollie_apple_pay_button_enabler.php:6 +#: ../inc/settings/mollie_applepay_settings.php:81 msgid "Apple Pay button settings" msgstr "Impostazioni del pulsante Apple Pay" -#: build/inc/settings/mollie_applepay_settings.php:84 -#: inc/settings/mollie_applepay_settings.php:84 +#: ../inc/settings/mollie_applepay_settings.php:86 msgid "The following options are required to use the Apple Pay Direct Button" -msgstr "" -"Le seguenti opzioni sono necessarie per utilizzare il Pulsante Diretto Apple " -"Pay" +msgstr "Le seguenti opzioni sono necessarie per utilizzare il Pulsante Diretto Apple Pay" -#: build/inc/settings/mollie_applepay_settings.php:88 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:18 -#: inc/settings/mollie_applepay_settings.php:88 -#: inc/settings/mollie_apple_pay_button_enabler.php:18 +#: ../inc/settings/mollie_applepay_settings.php:90, ../src/PaymentMethods/Applepay.php:34 msgid "Enable Apple Pay Button on Cart page" msgstr "Abilita il Pulsante Apple Pay nella pagina del Carrello" -#: build/inc/settings/mollie_applepay_settings.php:91 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:21 -#: inc/settings/mollie_applepay_settings.php:91 -#: inc/settings/mollie_apple_pay_button_enabler.php:21 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:93, ../src/PaymentMethods/Applepay.php:36 msgid "Enable the Apple Pay direct buy button on the Cart page" -msgstr "" -"Abilita il pulsante di acquisto diretto Apple Pay nella pagina del Carrello" +msgstr "Abilita il pulsante di acquisto diretto Apple Pay nella pagina del Carrello" -#: build/inc/settings/mollie_applepay_settings.php:103 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:29 -#: inc/settings/mollie_applepay_settings.php:103 -#: inc/settings/mollie_apple_pay_button_enabler.php:29 +#: ../inc/settings/mollie_applepay_settings.php:106, ../src/PaymentMethods/Applepay.php:44 msgid "Enable Apple Pay Button on Product page" msgstr "Abilita il Pulsante Apple Pay nella pagina del Prodotto" -#: build/inc/settings/mollie_applepay_settings.php:106 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:32 -#: inc/settings/mollie_applepay_settings.php:106 -#: inc/settings/mollie_apple_pay_button_enabler.php:32 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:109, ../src/PaymentMethods/Applepay.php:46 msgid "Enable the Apple Pay direct buy button on the Product page" -msgstr "" -"Abilita il pulsante di acquisto diretto Apple Pay nella pagina del Prodotto" - -#: build/inc/settings/mollie_apple_pay_button_enabler.php:11 -#: inc/settings/mollie_apple_pay_button_enabler.php:11 -msgid "The following options are required to use the Apple Pay button" -msgstr "" -"Le seguenti opzioni sono necessarie per utilizzare il pulsante Apple Pay" +msgstr "Abilita il pulsante di acquisto diretto Apple Pay nella pagina del Prodotto" -#: build/inc/settings/mollie_components.php:7 -#: inc/settings/mollie_components.php:7 +#: ../inc/settings/mollie_components.php:9 msgctxt "Mollie Components Settings" msgid "Base Styles" msgstr "Stili di base" -#: build/inc/settings/mollie_components.php:16 -#: build/inc/settings/mollie_components.php:156 -#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156 +#: ../inc/settings/mollie_components.php:18, ../inc/settings/mollie_components.php:158 msgctxt "Mollie Components Settings" msgid "Background Color" msgstr "Colore dello sfondo" -#: build/inc/settings/mollie_components.php:22 -#: build/inc/settings/mollie_components.php:145 -#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145 +#: ../inc/settings/mollie_components.php:24, ../inc/settings/mollie_components.php:147 msgctxt "Mollie Components Settings" msgid "Text Color" msgstr "Colore del testo" -#: build/inc/settings/mollie_components.php:28 -#: inc/settings/mollie_components.php:28 +#: ../inc/settings/mollie_components.php:30 msgctxt "Mollie Components Settings" msgid "Placeholder Color" msgstr "Colore placeholder" -#: build/inc/settings/mollie_components.php:34 -#: inc/settings/mollie_components.php:34 +#: ../inc/settings/mollie_components.php:36 msgctxt "Mollie Components Settings" msgid "Font Size" msgstr "Font weight" -#: build/inc/settings/mollie_components.php:35 -#: inc/settings/mollie_components.php:35 +#: ../inc/settings/mollie_components.php:37 msgctxt "Mollie Components Settings" msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'." -msgstr "" -"Definisce la dimensione del font del componente. Unità ammesse: 'em', 'px', " -"'rem'." +msgstr "Definisce la dimensione del font del componente. Unità ammesse: 'em', 'px', 'rem'." -#: build/inc/settings/mollie_components.php:45 -#: inc/settings/mollie_components.php:45 +#: ../inc/settings/mollie_components.php:47 msgctxt "Mollie Components Settings" msgid "Font Weight" msgstr "Font weight" -#: build/inc/settings/mollie_components.php:48 -#: inc/settings/mollie_components.php:48 +#: ../inc/settings/mollie_components.php:50 msgctxt "Mollie Components Settings" msgid "Lighter" msgstr "Più chiaro" -#: build/inc/settings/mollie_components.php:49 -#: inc/settings/mollie_components.php:49 +#: ../inc/settings/mollie_components.php:51 msgctxt "Mollie Components Settings" msgid "Regular" msgstr "Normale" -#: build/inc/settings/mollie_components.php:50 -#: inc/settings/mollie_components.php:50 +#: ../inc/settings/mollie_components.php:52 msgctxt "Mollie Components Settings" msgid "Bold" msgstr "Grassetto" -#: build/inc/settings/mollie_components.php:56 -#: inc/settings/mollie_components.php:56 +#: ../inc/settings/mollie_components.php:58 msgctxt "Mollie Components Settings" msgid "Letter Spacing" msgstr "Spaziatura tra i caratteri" -#: build/inc/settings/mollie_components.php:62 -#: inc/settings/mollie_components.php:62 +#: ../inc/settings/mollie_components.php:64 msgctxt "Mollie Components Settings" msgid "Line Height" msgstr "Altezza riga" -#: build/inc/settings/mollie_components.php:71 -#: inc/settings/mollie_components.php:71 +#: ../inc/settings/mollie_components.php:73 msgctxt "Mollie Components Settings" msgid "Padding" msgstr "Spaziatura interna" -#: build/inc/settings/mollie_components.php:72 -#: inc/settings/mollie_components.php:72 +#: ../inc/settings/mollie_components.php:74 msgctxt "Mollie Components Settings" -msgid "" -"Add padding to the components. Allowed units include `16px 16px 16px 16px` " -"and `em`, `px`, `rem`." -msgstr "" -"Aggiungi spaziatura interna ai componenti. Le unità ammesse includono `16px " -"16px 16px 16px` e `em`, `px`, `rem`." +msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`." +msgstr "Aggiungi spaziatura interna ai componenti. Le unità ammesse includono `16px 16px 16px 16px` e `em`, `px`, `rem`." -#: build/inc/settings/mollie_components.php:82 -#: inc/settings/mollie_components.php:82 +#: ../inc/settings/mollie_components.php:84 msgctxt "Mollie Components Settings" msgid "Align Text" msgstr "Allinea testo" -#: build/inc/settings/mollie_components.php:85 -#: inc/settings/mollie_components.php:85 +#: ../inc/settings/mollie_components.php:87 msgctxt "Mollie Components Settings" msgid "Left" msgstr "A sinistra" -#: build/inc/settings/mollie_components.php:86 -#: inc/settings/mollie_components.php:86 +#: ../inc/settings/mollie_components.php:88 msgctxt "Mollie Components Settings" msgid "Right" msgstr "A destra" -#: build/inc/settings/mollie_components.php:87 -#: inc/settings/mollie_components.php:87 +#: ../inc/settings/mollie_components.php:89 msgctxt "Mollie Components Settings" msgid "Center" msgstr "Centra" -#: build/inc/settings/mollie_components.php:88 -#: inc/settings/mollie_components.php:88 +#: ../inc/settings/mollie_components.php:90 msgctxt "Mollie Components Settings" msgid "Justify" msgstr "Giustifica" -#: build/inc/settings/mollie_components.php:94 -#: inc/settings/mollie_components.php:94 +#: ../inc/settings/mollie_components.php:96 msgctxt "Mollie Components Settings" msgid "Transform Text " msgstr "Trasforma testo " -#: build/inc/settings/mollie_components.php:97 -#: inc/settings/mollie_components.php:97 +#: ../inc/settings/mollie_components.php:99 msgctxt "Mollie Components Settings" msgid "None" msgstr "Nessuno" -#: build/inc/settings/mollie_components.php:102 -#: inc/settings/mollie_components.php:102 +#: ../inc/settings/mollie_components.php:104 msgctxt "Mollie Components Settings" msgid "Capitalize" msgstr "In lettere maiuscole" -#: build/inc/settings/mollie_components.php:107 -#: inc/settings/mollie_components.php:107 +#: ../inc/settings/mollie_components.php:109 msgctxt "Mollie Components Settings" msgid "Uppercase" msgstr "Maiuscolo" -#: build/inc/settings/mollie_components.php:112 -#: inc/settings/mollie_components.php:112 +#: ../inc/settings/mollie_components.php:114 msgctxt "Mollie Components Settings" msgid "Lowercase" msgstr "Minuscolo" -#: build/inc/settings/mollie_components.php:117 -#: inc/settings/mollie_components.php:117 +#: ../inc/settings/mollie_components.php:119 msgctxt "Mollie Components Settings" msgid "Full Width" msgstr "Larghezza piena" -#: build/inc/settings/mollie_components.php:122 -#: inc/settings/mollie_components.php:122 +#: ../inc/settings/mollie_components.php:124 msgctxt "Mollie Components Settings" msgid "Full Size Kana" msgstr "Kana a grandezza naturale" -#: build/inc/settings/mollie_components.php:136 -#: inc/settings/mollie_components.php:136 +#: ../inc/settings/mollie_components.php:138 msgctxt "Mollie Components Settings" msgid "Invalid Status Styles" msgstr "Stili stato non validi" -#: build/inc/settings/mollie_components.php:146 -#: inc/settings/mollie_components.php:146 +#: ../inc/settings/mollie_components.php:148 msgctxt "Mollie Components Settings" msgid "Text Color for invalid input." msgstr "Colore del testo per input non valido." -#: build/inc/settings/mollie_components.php:157 -#: inc/settings/mollie_components.php:157 +#: ../inc/settings/mollie_components.php:159 msgctxt "Mollie Components Settings" msgid "Background Color for invalid input." msgstr "Colore dello sfondo per input non valido." -#: build/inc/settings/mollie_components_enabler.php:6 -#: inc/settings/mollie_components_enabler.php:6 -msgid "Enable Mollie Components" -msgstr "Abilita i componenti Mollie" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to settings. Placeholder 4: Closing link tag. +#: ../src/Activation/ActivationModule.php:167 +msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s." +msgstr "%1$sMollie Payments per WooCommerce: chiavi API mancanti%2$s Ti preghiamo di%3$s impostare le tue chiavi API qui%4$s." -#: build/inc/settings/mollie_components_enabler.php:8 -#: inc/settings/mollie_components_enabler.php:8 -msgid "" -"Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." -msgstr "" -"Utilizza i componenti Mollie per questo gateway. Scopri di più su %s e su come migliora la tua conversione." - -#: build/inc/settings/mollie_components_enabler.php:12 -#: build/src/Mollie/WC/Settings/Page/Components.php:10 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:139 -#: inc/settings/mollie_components_enabler.php:12 -#: src/Mollie/WC/Settings/Page/Components.php:10 -#: src/Mollie/WC/Settings/Page/Mollie.php:139 -msgid "Mollie Components" -msgstr "Componenti Mollie" +#: ../src/Activation/ConstraintsChecker.php:109 +msgid "%1$sMollie Payments for WooCommerce is inactive:%2$s" +msgstr "%1$sMollie Payments per WooCommerce non è attivo:%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:5 -#: inc/settings/mollie_creditcard_icons_selector.php:5 -msgid "Customize Icons" -msgstr "Personalizza le icone" +#: ../src/Activation/ConstraintsChecker.php:113 +msgid "%1$sCorrect the above errors to use Mollie Payments for Woocommerce%2$s" +msgstr "%1$sCorreggi gli errori sopra indicati per utilizzare Mollie Payments per Woocommerce%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:12 -#: inc/settings/mollie_creditcard_icons_selector.php:12 -msgid "Enable Icons Selector" -msgstr "Abilita il selezionatore dell’icona" +#: ../src/Assets/AssetsModule.php:432 +msgid "Name on card" +msgstr "Nome sulla carta" -#: build/inc/settings/mollie_creditcard_icons_selector.php:13 -#: inc/settings/mollie_creditcard_icons_selector.php:13 -msgid "Show customized creditcard icons on checkout page" -msgstr "" -"Mostra le icone personalizzate della carta di credito nella pagina di " -"checkout" +#: ../src/Assets/AssetsModule.php:436 +msgid "Card number" +msgstr "Numero carta" -#: build/inc/settings/mollie_creditcard_icons_selector.php:21 -#: inc/settings/mollie_creditcard_icons_selector.php:21 -msgid "Show American Express Icon" -msgstr "Mostra l’icona American Express" +#: ../src/Assets/AssetsModule.php:440 +msgid "Expiry date" +msgstr "Data di scadenza" -#: build/inc/settings/mollie_creditcard_icons_selector.php:26 -#: inc/settings/mollie_creditcard_icons_selector.php:26 -msgid "Show Carta Si Icon" -msgstr "Mostra l’icona Carta Si" +#: ../src/Assets/AssetsModule.php:444 +msgid "CVC/CVV" +msgstr "CVC/CVV" -#: build/inc/settings/mollie_creditcard_icons_selector.php:31 -#: inc/settings/mollie_creditcard_icons_selector.php:31 -msgid "Show Carte Bancaire Icon" -msgstr "Mostra l’icona Carte Bancaire" +#: ../src/Assets/AssetsModule.php:451 +msgid "An unknown error occurred, please check the card fields." +msgstr "Si è verificato un errore sconosciuto, controllare i campi carta di credito." -#: build/inc/settings/mollie_creditcard_icons_selector.php:36 -#: inc/settings/mollie_creditcard_icons_selector.php:36 -msgid "Show Maestro Icon" -msgstr "Mostra l’icona Maestro" +#: ../src/Assets/AssetsModule.php:521 +msgid "Please choose a billing country to see the available payment methods" +msgstr "Scegli un paese di fatturazione per vedere i metodi di pagamento disponibili." -#: build/inc/settings/mollie_creditcard_icons_selector.php:41 -#: inc/settings/mollie_creditcard_icons_selector.php:41 -msgid "Show Mastercard Icon" -msgstr "Mostra l’icona Mastercard" +#: ../src/Assets/AssetsModule.php:570 +msgid "No custom logo selected" +msgstr "Nessun logo personalizzato selezionato" -#: build/inc/settings/mollie_creditcard_icons_selector.php:46 -#: inc/settings/mollie_creditcard_icons_selector.php:46 -msgid "Show Visa Icon" -msgstr "Mostra l’icona Visa" +#: ../src/Gateway/MolliePaymentGateway.php:271, ../src/Settings/Page/MollieSettingsPage.php:313 +msgid "Test mode enabled." +msgstr "Modalità di prova abilitata." -#: build/inc/settings/mollie_creditcard_icons_selector.php:51 -#: inc/settings/mollie_creditcard_icons_selector.php:51 -msgid "Show VPay Icon" -msgstr "Mostra l’icona VPay" +#. translators: The surrounding %s's Will be replaced by a link to the global setting page +#: ../src/Gateway/MolliePaymentGateway.php:276 +msgid "No API key provided. Please %1$sset you Mollie API key%2$s first." +msgstr "Nessuna chiave API fornita. Per prima cosa, ti preghiamo di %1$simpostare la tua chiave API Mollie%2$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:7 -#: inc/settings/mollie_paypal_button_enabler.php:7 -msgid "PayPal button display settings" -msgstr "Impostazioni di visualizzazione del pulsante PayPal" +#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Gateway/MolliePaymentGateway.php:291 +msgid "%1$s not enabled in your Mollie profile. You can enable it by editing your %2$sMollie profile%3$s." +msgstr "%1$s non abilitato nel tuo profilo Mollie. Puoi abilitarlo modificando il tuo %2$sprofilo Mollie%3$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:12 -#: inc/settings/mollie_paypal_button_enabler.php:12 -msgid "" -"%1sThe PayPal button is optimized for digital goods. And will only appear if " -"the product has no shipping. %2sThe customer's address information can only " -"be retrieved if the transaction has been done with the %3sOrders API%4s.%5s" -"%6s" -msgstr "" -"%1sIl pulsante PayPal è ottimizzato per beni digitali. E apparirà solo se il " -"prodotto non ha una spedizione. %2sLe informazioni relative all’indirizzo " -"del cliente possono essere recuperate se la transazione è stata effettuata " -"con la %3sOrders API%4s.%5s%6s" +#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies +#: ../src/Gateway/MolliePaymentGateway.php:306 +msgid "Current shop currency %1$s not supported by Mollie. Read more about %2$ssupported currencies and payment methods.%3$s " +msgstr "Valuta negozio corrente %1$s non supportata da Mollie. Leggi di più sulle %2$svalute supportate e sui metodi di pagamento.%3$s " -#: build/inc/settings/mollie_paypal_button_enabler.php:19 -#: inc/settings/mollie_paypal_button_enabler.php:19 -msgid "Display on cart page" -msgstr "Visualizza nella pagina del carrello" +#: ../src/Gateway/MolliePaymentGateway.php:577 +msgid "You have cancelled your payment. Please complete your order with a different payment method." +msgstr "Hai annullato il tuo pagamento. Completa l’ordine con una modalità di pagamento differente." -#: build/inc/settings/mollie_paypal_button_enabler.php:23 -#: inc/settings/mollie_paypal_button_enabler.php:23 -msgid "Enable the PayPal button to be used in the cart page." -msgstr "Abilita il pulsante PayPal per l’uso nella pagina del carrello." +#: ../src/Gateway/MolliePaymentGateway.php:597, ../src/Gateway/MolliePaymentGateway.php:611 +msgid "Your payment was not successful. Please complete your order with a different payment method." +msgstr "Il tuo pagamento non è riuscito. Completa l’ordine con una modalità di pagamento differente." -#: build/inc/settings/mollie_paypal_button_enabler.php:31 -#: inc/settings/mollie_paypal_button_enabler.php:31 -msgid "Display on product page" -msgstr "Visualizza nella pagina del prodotto" +#: ../src/Gateway/MolliePaymentGateway.php:647 +msgid "Could not load order %s" +msgstr "Non è stato possibile caricare l’ordine %s" -#: build/inc/settings/mollie_paypal_button_enabler.php:35 -#: inc/settings/mollie_paypal_button_enabler.php:35 -msgid "Enable the PayPal button to be used in the product page." -msgstr "Abilita il pulsante PayPal per l’uso nella pagina del prodotto." +#: ../src/Gateway/MolliePaymentGateway.php:906 +msgid "Order cancelled" +msgstr "Ordine annullato" -#: build/inc/settings/mollie_paypal_button_enabler.php:44 -#: inc/settings/mollie_paypal_button_enabler.php:44 -msgctxt "Mollie PayPal Button Settings" -msgid "Button text language and color" -msgstr "Lingua del testo del pulsante e colore" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Gateway/MolliePaymentGateway.php:943 +msgid "%1$s payment still pending (%2$s) but customer already returned to the store. Status should be updated automatically in the future, if it doesn't this might indicate a communication issue between the site and Mollie." +msgstr "%1$s pagamento ancora in sospeso (%2$s) ma il cliente è già ritornato in negozio. Lo stato dovrebbe essere aggiornato automaticamente in futuro, se ciò non avviene può essere ricondotto a un problema di comunicazione tra il sito e Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:46 -#: inc/settings/mollie_paypal_button_enabler.php:46 -msgctxt "Mollie PayPal Button Settings" -msgid "Select the text and the colour of the button." -msgstr "Selezionare il testo e il colore del pulsante." +#: ../src/Gateway/MolliePaymentGateway.php:949, ../src/Payment/MollieObject.php:687, ../src/Payment/MollieObject.php:655, ../src/Payment/MollieOrder.php:275, ../src/Payment/MollieOrder.php:332, ../src/Payment/MollieOrder.php:377, ../src/Payment/MollieOrder.php:459, ../src/Payment/MollieOrder.php:522, ../src/Payment/MollieOrder.php:941, ../src/Payment/MollieOrderService.php:165, ../src/Payment/MollieOrderService.php:428, ../src/Payment/MollieOrderService.php:491, ../src/Payment/MollieOrderService.php:705, ../src/Payment/MolliePayment.php:223, ../src/Payment/MolliePayment.php:310, ../src/Payment/MolliePayment.php:379, ../src/Payment/MolliePayment.php:402, ../src/Payment/PaymentService.php:788, ../src/Subscription/MollieSepaRecurringGateway.php:138, ../src/Subscription/MollieSepaRecurringGateway.php:205, ../src/Subscription/MollieSubscriptionGateway.php:470 +msgid "test mode" +msgstr "modalità di prova" -#: build/inc/settings/mollie_paypal_button_enabler.php:54 -#: inc/settings/mollie_paypal_button_enabler.php:54 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill blue" -msgstr "Inglese -- Acquisto con PayPal - Pillola colore blu" +#: ../src/Gateway/MolliePaymentGateway.php:964 +msgid ", payment pending." +msgstr ", pagamento in sospeso." -#: build/inc/settings/mollie_paypal_button_enabler.php:55 -#: inc/settings/mollie_paypal_button_enabler.php:55 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded blue" -msgstr "Inglese -- Acquisto con PayPal - Blu arrotondato" +#: ../src/Gateway/MolliePaymentGateway.php:996 +msgid "Your order has been cancelled." +msgstr "Il tuo ordine è stato annullato." -#: build/inc/settings/mollie_paypal_button_enabler.php:56 -#: inc/settings/mollie_paypal_button_enabler.php:56 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill golden" -msgstr "Inglese -- Acquisto con PayPal - Pillola color oro" +#: ../src/Gateway/Surcharge.php:81 +msgid "A surchage fee might apply" +msgstr "Una tariffa di supplemento può essere applicata" -#: build/inc/settings/mollie_paypal_button_enabler.php:57 -#: inc/settings/mollie_paypal_button_enabler.php:57 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded golden" -msgstr "Inglese -- Acquisto con PayPal - Oro arrotondato" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. +#: ../src/Gateway/Surcharge.php:275 +msgid " + %1$s %2$s fee might apply" +msgstr " + %1$s %2$s tariffa può essere applicata" -#: build/inc/settings/mollie_paypal_button_enabler.php:58 -#: inc/settings/mollie_paypal_button_enabler.php:58 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill gray" -msgstr "Inglese -- Acquisto con PayPal - Pillola colore grigio" +#. translators: Placeholder 1: Fee amount tag. +#: ../src/Gateway/Surcharge.php:292 +msgid " + %1$s%% fee might apply" +msgstr " + %1$s%% tariffa può essere applicata" -#: build/inc/settings/mollie_paypal_button_enabler.php:59 -#: inc/settings/mollie_paypal_button_enabler.php:59 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded gray" -msgstr "Inglese -- Acquisto con PayPal - Grigio arrotondato" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. +#: ../src/Gateway/Surcharge.php:315 +msgid " + %1$s %2$s + %3$s%% fee might apply" +msgstr " + %1$s %2$s + %3$s%% tariffa può essere applicata" -#: build/inc/settings/mollie_paypal_button_enabler.php:60 -#: inc/settings/mollie_paypal_button_enabler.php:60 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill white" -msgstr "Inglese -- Acquisto con PayPal - Pillola colore bianco" +#: ../src/Gateway/Surcharge.php:348 +msgid " (incl. VAT)" +msgstr " (incl. IVA)" -#: build/inc/settings/mollie_paypal_button_enabler.php:61 -#: inc/settings/mollie_paypal_button_enabler.php:61 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded white" -msgstr "Inglese -- Acquisto con PayPal - Bianco arrotondato" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:682 +msgid "%1$s payment failed via Mollie (%2$s)." +msgstr "%1$s pagamento non riuscito tramite Mollie (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:62 -#: inc/settings/mollie_paypal_button_enabler.php:62 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill black" -msgstr "Inglese -- Checkout con PayPal - Pillola colore nero" +#: ../src/Payment/MollieObject.php:650 +msgid "%1$s renewal payment failed via Mollie (%2$s). You will need to manually review the payment and adjust product stocks if you use them." +msgstr "%1$s pagamento del rinnovo non riuscito tramite Mollie (%2$s). Dovrai rivedere manualmente il pagamento e adattare gli stock di prodotti se li usi." -#: build/inc/settings/mollie_paypal_button_enabler.php:63 -#: inc/settings/mollie_paypal_button_enabler.php:63 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded black" -msgstr "Inglese -- Checkout con PayPal - Nero arrotondato" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:721 +msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated." +msgstr "Il webhook Mollie ha chiamato, ma il pagamento è stato avviato anche tramite %s, quindi lo stato dell’ordine non è aggiornato." -#: build/inc/settings/mollie_paypal_button_enabler.php:64 -#: inc/settings/mollie_paypal_button_enabler.php:64 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill blue" -msgstr "Inglese -- Checkout con PayPal - Pillola colore blu" +#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID +#: ../src/Payment/MollieObject.php:740, ../src/PaymentMethods/InstructionStrategies/PaypalInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (PayPal transaction ID: %3$s)" +msgstr "Pagamento completato da %1$s - %2$s (ID transazione PayPal: %3$s)" -#: build/inc/settings/mollie_paypal_button_enabler.php:65 -#: inc/settings/mollie_paypal_button_enabler.php:65 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded blue" -msgstr "Inglese -- Checkout con PayPal - Blu arrotondato" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:881 +msgctxt "Payment description for {orderNumber}" +msgid "Order {orderNumber}" +msgstr "Ordine {orderNumber}" -#: build/inc/settings/mollie_paypal_button_enabler.php:66 -#: inc/settings/mollie_paypal_button_enabler.php:66 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill golden" -msgstr "Inglese -- Checkout con PayPal - Pillola color oro" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:891 +msgctxt "Payment description for {storeName}" +msgid "StoreName {storeName}" +msgstr "NomeNegozio {storeName}" -#: build/inc/settings/mollie_paypal_button_enabler.php:67 -#: inc/settings/mollie_paypal_button_enabler.php:67 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded golden" -msgstr "Inglese -- Checkout con PayPal - Oro arrotondato" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:901 +msgctxt "Payment description for {customer.firstname}" +msgid "Customer Firstname {customer.firstname}" +msgstr "Nome cliente {customer.firstname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:68 -#: inc/settings/mollie_paypal_button_enabler.php:68 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill gray" -msgstr "Inglese -- Checkout con PayPal - Pillola colore grigio" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:911 +msgctxt "Payment description for {customer.lastname}" +msgid "Customer Lastname {customer.lastname}" +msgstr "Cognome cliente {customer.firstname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:69 -#: inc/settings/mollie_paypal_button_enabler.php:69 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded gray" -msgstr "Inglese -- Checkout con PayPal - Grigio arrotondato" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:921 +msgctxt "Payment description for {customer.company}" +msgid "Customer Company {customer.company}" +msgstr "Azienda cliente {customer.firstname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:70 -#: inc/settings/mollie_paypal_button_enabler.php:70 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill white" -msgstr "Inglese -- Checkout con PayPal - Pillola colore bianco" +#: ../src/Payment/MollieObject.php:936 +msgid "Order" +msgstr "Ordine" -#: build/inc/settings/mollie_paypal_button_enabler.php:71 -#: inc/settings/mollie_paypal_button_enabler.php:71 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded white" -msgstr "Inglese -- Checkout con PayPal - Bianco arrotondato" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:271, ../src/Payment/MolliePayment.php:221, ../src/Subscription/MollieSepaRecurringGateway.php:211 +msgid "Order completed using %1$s payment (%2$s)." +msgstr "Ordine completato utilizzando il %1$s pagamento (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:72 -#: inc/settings/mollie_paypal_button_enabler.php:72 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill black" -msgstr "Olandese -- Acquisto con PayPal - Pillola colore nero" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:330 +msgid "Order authorized using %1$s payment (%2$s). Set order to completed in WooCommerce when you have shipped the products, to capture the payment. Do this within 28 days, or the order will expire. To handle individual order lines, process the order via the Mollie Dashboard." +msgstr "Ordine autorizzato utilizzando il %1$s pagamento ((%2$s)). Imposta l’ordine su completato in WooCommerce quando hai spedito i prodotti per acquisire il pagamento. Effettua questa impostazione entro 28 giorni, altrimenti l’ordine scadrà. Per gestire singole righe d’ordine, elabora l’ordine attraverso la dashboard di Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:73 -#: inc/settings/mollie_paypal_button_enabler.php:73 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded black" -msgstr "Olandese -- Acquisto con PayPal - Nero arrotondato" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:375 +msgid "Order completed at Mollie for %1$s order (%2$s). At least one order line completed. Remember: Completed status for an order at Mollie is not the same as Completed status in WooCommerce!" +msgstr "Ordine completato su Mollie per %1$s ordine ((%2$s)). Almeno una riga d’ordine completata. Ricorda: Lo stato completato per un ordine su Mollie non equivale allo stato Completato su WooCommerce!" -#: build/inc/settings/mollie_paypal_button_enabler.php:74 -#: inc/settings/mollie_paypal_button_enabler.php:74 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill blue" -msgstr "Olandese -- Acquisto con PayPal - Pillola colore blu" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:457 +msgid "%1$s order (%2$s) cancelled ." +msgstr "%1$s ordine (%2$s) annullato." -#: build/inc/settings/mollie_paypal_button_enabler.php:75 -#: inc/settings/mollie_paypal_button_enabler.php:75 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded blue" -msgstr "Olandese -- Acquisto con PayPal - Blu arrotondato" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:520 +msgid "%1$s order expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s ordine scaduto ((%2$s)) ma non annullato perché c’è un altro pagamento in sospeso ((%3$s))." -#: build/inc/settings/mollie_paypal_button_enabler.php:76 -#: inc/settings/mollie_paypal_button_enabler.php:76 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill golden" -msgstr "Olandese -- Acquisto con PayPal - Pillola color oro" +#: ../src/Payment/MollieOrder.php:616 +msgctxt "Order note error" +msgid "The sum of refunds for all order lines is not identical to the refund amount, so this refund will be processed as a payment amount refund, not an order line refund." +msgstr "La somma dei rimborsi per tutte le righe dell’ordine non è identica all’importo del rimborso, quindi questo rimborso verrà elaborato come rimborso dell’importo di pagamento, non come rimborso della riga dell’ordine." -#: build/inc/settings/mollie_paypal_button_enabler.php:77 -#: inc/settings/mollie_paypal_button_enabler.php:77 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded golden" -msgstr "Olandese -- Acquisto con PayPal - Oro arrotondato" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. +#: ../src/Payment/MollieOrder.php:747 +msgid "%1$sx %2$s cancelled for %3$s%4$s in WooCommerce and at Mollie." +msgstr "%1$sx %2$s annullato per %3$s%4$s in WooCommerce e su Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:78 -#: inc/settings/mollie_paypal_button_enabler.php:78 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill gray" -msgstr "Olandese -- Acquisto con PayPal - Pillola colore grigio" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. Placeholder 5: Reason. Placeholder 6: Refund Id. +#: ../src/Payment/MollieOrder.php:763 +msgid "%1$sx %2$s refunded for %3$s%4$s in WooCommerce and at Mollie.%5$s Refund ID: %6$s." +msgstr "%1$sx %2$s rimborsato per %3$s%4$s in WooCommerce e su Mollie.%5$s ID rimborso: %6$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:79 -#: inc/settings/mollie_paypal_button_enabler.php:79 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded gray" -msgstr "Olandese -- Acquisto con PayPal - Grigio arrotondato" +#. translators: Placeholder 1: payment status. +#: ../src/Payment/MollieOrder.php:823 +msgctxt "Order note error" +msgid "Can not refund order amount that has status %1$s at Mollie." +msgstr "Non è possibile rimborsa un importo dell’ordine che ha lo stato %1$s su Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:80 -#: inc/settings/mollie_paypal_button_enabler.php:80 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill white" -msgstr "Olandese -- Acquisto con PayPal - Pillola colore bianco" +#. translators: Placeholder 1: Currency. Placeholder 2: Refund amount. Placeholder 3: Reason. Placeholder 4: Refund id. +#: ../src/Payment/MollieOrder.php:845 +msgid "Amount refund of %1$s%2$s refunded in WooCommerce and at Mollie.%3$s Refund ID: %4$s." +msgstr "Rimborso dell’importo di %1$s%2$s effettuato in WooCommerce e su Mollie.%3$s ID rimborso: %4$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:81 -#: inc/settings/mollie_paypal_button_enabler.php:81 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded white" -msgstr "Olandese -- Acquisto con PayPal - Bianco arrotondato" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:936 +msgid "%1$s order (%2$s) expired ." +msgstr "%1$s ordine ((%2$s)) scaduto." -#: build/inc/settings/mollie_paypal_button_enabler.php:82 -#: inc/settings/mollie_paypal_button_enabler.php:82 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill black" -msgstr "Olandese -- Checkout con PayPal - Pillola colore nero" +#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID +#: ../src/Payment/MollieOrderService.php:162 +msgid "%1$s payment %2$s (%3$s), not processed." +msgstr "%1$s pagamento %2$s ((%3$s)), non elaborato." -#: build/inc/settings/mollie_paypal_button_enabler.php:83 -#: inc/settings/mollie_paypal_button_enabler.php:83 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded black" -msgstr "Olandese -- Checkout con PayPal - Nero arrotondato" +#: ../src/Payment/MollieOrderService.php:391 +msgid "New chargeback %s processed! Order note and order status updated." +msgstr "Nuovo riaccredito %s elaborato! Nota dell’ordine e stato dell’ordine aggiornati." -#: build/inc/settings/mollie_paypal_button_enabler.php:84 -#: inc/settings/mollie_paypal_button_enabler.php:84 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill blue" -msgstr "Olandese -- Checkout con PayPal - Pillola colore blu" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:423 +msgid "%1$s payment charged back via Mollie (%2$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s pagamento riaccreditato tramite Mollie (%2$s). Dovrai rivedere manualmente il pagamento (e adattare lo stock di prodotti se lo usi)." -#: build/inc/settings/mollie_paypal_button_enabler.php:85 -#: inc/settings/mollie_paypal_button_enabler.php:85 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded blue" -msgstr "Olandese -- Checkout con PayPal - Blu arrotondato" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:485 +msgid "%1$s payment charged back via Mollie (%2$s). Subscription status updated, please review (and adjust product stocks if you use it)." +msgstr "%1$s pagamento riaccreditato tramite Mollie (%2$s). Stato dell’abbonamento aggiornato, ti preghiamo di rivederlo (e adattare lo stock di prodotti se lo usi)." -#: build/inc/settings/mollie_paypal_button_enabler.php:86 -#: inc/settings/mollie_paypal_button_enabler.php:86 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill golden" -msgstr "Olandese -- Checkout con PayPal - Pillola color oro" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:692 +msgid "%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s pagamento %2$s tramite Mollie (%3$s %4$s). Dovrai rivedere manualmente il pagamento (e adattare lo stock di prodotti se lo usi)." -#: build/inc/settings/mollie_paypal_button_enabler.php:87 -#: inc/settings/mollie_paypal_button_enabler.php:87 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded golden" -msgstr "Olandese -- Checkout con PayPal - Oro arrotondato" +#: ../src/Payment/MollieOrderService.php:805 +msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated." +msgstr "Nuovo rimborso %s elaborato nella dashboard Mollie! Nota dell’ordine aggiunta, ma ordine aggiornato." -#: build/inc/settings/mollie_paypal_button_enabler.php:88 -#: inc/settings/mollie_paypal_button_enabler.php:88 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill gray" -msgstr "Olandese -- Checkout con PayPal - Pillola colore grigio" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:308 +msgid "%1$s payment (%2$s) cancelled ." +msgstr "%1$s pagamento (%2$s) annullato." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:377 +msgid "%1$s payment expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s pagamento scaduto ((%2$s)) ma non annullato perché c’è un altro pagamento in sospeso ((%3$s))." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:400 +msgid "%1$s payment expired (%2$s)." +msgstr "%1$s pagamento scaduto ((%2$s))." + +#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID +#: ../src/Payment/MolliePayment.php:476 +msgid "Refunded %1$s%2$s%3$s - Payment: %4$s, Refund: %5$s" +msgstr "Rimborsato %1$s%2$s%3$s - Pagamento: %4$s, rimborso: %5$s" + +#. translators: Placeholder 1: order number +#: ../src/Payment/MollieSubscription.php:80 +msgctxt "Default payment description for subscription recurring payments" +msgid "Order %1$s" +msgstr "Ordine %1$s" + +#: ../src/Payment/OrderItemsRefunder.php:121 +msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item." +msgstr "Una delle voci dell’ordine WooCommerce non ha il meta valore della voce di rimborso associato alla voce dell’ordine Mollie." + +#: ../src/Payment/OrderItemsRefunder.php:166 +msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount." +msgstr "Impossibile recuperare l’ID voce dell’ordine relativo alla voce remota: %1$s. Tentativo di rimborso in base all’importo." + +#: ../src/Payment/OrderItemsRefunder.php:190 +msgid "Empty WooCommerce order items or mollie order lines." +msgstr "Voci dell’ordine WooCommerce vuote o righe dell’ordine mollie vuote." + +#: ../src/Payment/OrderLines.php:509 +msgid "Shipping" +msgstr "Spedizione" + +#: ../src/Payment/PaymentModule.php:194 +msgid "Unpaid order cancelled - time limit reached." +msgstr "Ordine non pagato annullato - limite temporale raggiunto." + +#: ../src/Payment/PaymentModule.php:213 +msgid "%1$s items refunded in WooCommerce and at Mollie." +msgstr "%1$s voci rimborsate in WooCommerce e su Mollie." + +#: ../src/Payment/PaymentModule.php:231 +msgid "%1$s items cancelled in WooCommerce and at Mollie." +msgstr "%1$s voci cancellate in WooCommerce e su Mollie." + +#: ../src/Payment/PaymentModule.php:350 +msgctxt "Order note info" +msgid "Processing a payment, no capture needed" +msgstr "Elaborazione del pagamento in corso, non è necessaria l’acquisizione" + +#: ../src/Payment/PaymentModule.php:364 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be shipped/captured." +msgstr "Ordine già annullato su Mollie, non può essere spedito, acquisito." + +#: ../src/Payment/PaymentModule.php:372 +msgctxt "Order note info" +msgid "Order already completed at Mollie, can not be shipped/captured." +msgstr "Ordine già completato su Mollie, non può essere spedito, acquisito." + +#: ../src/Payment/PaymentModule.php:381 +msgctxt "Order note info" +msgid "Order successfully updated to shipped at Mollie, capture of funds underway." +msgstr "Ordine già aggiornato in spedito su Mollie, acquisizione fondi in corso." + +#: ../src/Payment/PaymentModule.php:387 +msgctxt "Order note info" +msgid "Order not paid or authorized at Mollie yet, can not be shipped." +msgstr "Ordine non ancora pagato o autorizzato su Mollie, non può essere spedito." + +#: ../src/Payment/PaymentModule.php:421 +msgctxt "Order note info" +msgid "Order contains Mollie payment method, but not a valid Mollie Order ID. Canceling order failed." +msgstr "L’ordine contiene una modalità di pagamento Mollie, ma non un ID ordine Mollie. Annullamento dell’ordine non riuscito." + +#: ../src/Payment/PaymentModule.php:442 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be canceled again." +msgstr "Ordine già annullato su Mollie, non può essere annullato di nuovo." + +#: ../src/Payment/PaymentModule.php:452 +msgctxt "Order note info" +msgid "Order also cancelled at Mollie." +msgstr "L’ordine quindi è stato annullato su Mollie." + +#: ../src/Payment/PaymentModule.php:458 +msgctxt "Order note info" +msgid "Order could not be canceled at Mollie, because order status is " +msgstr "Non è stato possibile annullare l’ordine su Mollie, perché lo stato è " + +#: ../src/Payment/PaymentService.php:620 +msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription." +msgstr "Il cambio di abbonamento non è riuscito, non è stato trovato un mandato valido. Effettua un ordine completamente nuovo per modificare il tuo abbonamento." + +#: ../src/Payment/PaymentService.php:626 +msgid "Failed switching subscriptions, no valid mandate." +msgstr "Il cambio degli abbonamenti non è riuscito, nessun mandato valido." + +#: ../src/Payment/PaymentService.php:635 +msgid "Order completed internally because of an existing valid mandate at Mollie." +msgstr "Ordine completato internamente sulla base di un mandato valido su Mollie." + +#. translators: Placeholder 1: Payment method title +#: ../src/Payment/PaymentService.php:708, ../src/Buttons/ApplePayButton/AppleAjaxRequests.php:723, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:113, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:159 +msgid "Could not create %s payment." +msgstr "Non è stato possibile creare %s il pagamento." + +#: ../src/Payment/PaymentService.php:766, ../src/Subscription/MollieSepaRecurringGateway.php:127, ../src/Subscription/MollieSubscriptionGateway.php:461 +msgid "Awaiting payment confirmation." +msgstr "In attesa della conferma del pagamento." + +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Payment/PaymentService.php:786 +msgid "%s payment started (%s)." +msgstr "%s pagamento avviato (%s)." + +#: ../src/Payment/RefundLineItemsBuilder.php:126 +msgid "Mollie doesn't allow a partial refund of the full amount or quantity of at least one order line. Trying to process this as an amount refund instead." +msgstr "Mollie non consente il rimborso parziale dell'intero importo o della quantità di almeno una riga d'ordine. Tentativo di elaborazione dello stesso come rimborso dell’importo." + +#: ../src/PaymentMethods/Applepay.php:14 +msgid "To accept payments via Apple Pay" +msgstr "Per accettare pagamenti tramite Apple Pay" + +#: ../src/PaymentMethods/Bancontact.php:14 +msgid "Bancontact" +msgstr "Bancontact" + +#: ../src/PaymentMethods/Banktransfer.php:33 +msgid "Bank Transfer" +msgstr "Bonifico bancario" + +#: ../src/PaymentMethods/Banktransfer.php:55, ../src/Settings/General/MollieGeneralSettings.php:235 +msgid "Activate expiry time setting" +msgstr "Attiva l’impostazione dell’ora di scadenza" + +#: ../src/PaymentMethods/Banktransfer.php:56, ../src/Settings/General/MollieGeneralSettings.php:236 +msgid "Enable expiry time for payments" +msgstr "Abilita ora di scadenza per pagamenti" + +#: ../src/PaymentMethods/Banktransfer.php:57 +msgid "Enable this option if you want to be able to set the time after which the payment will expire. This will turn all transactions into payments instead of orders" +msgstr "Abilita questa opzione se desideri impostare l’ora dopo la quale il pagamento scadrà. Questa opzione trasformerà tutte le transazioni in pagamenti anziché ordini" + +#: ../src/PaymentMethods/Banktransfer.php:62, ../src/Settings/General/MollieGeneralSettings.php:242 +msgid "Expiry time" +msgstr "Ora di scadenza" + +#. translators: Placeholder 1: Default expiry days. +#: ../src/PaymentMethods/Banktransfer.php:65 +msgid "Number of DAYS after the payment will expire. Default %d days" +msgstr "Numero di GIORNI dopo il quale il pagamento scadrà. Giorni %d predefiniti" + +#: ../src/PaymentMethods/Banktransfer.php:74 +msgid "Skip Mollie payment screen" +msgstr "Salta la schermata di pagamento Mollie" + +#: ../src/PaymentMethods/Banktransfer.php:75 +msgid "Skip Mollie payment screen when Bank Transfer is selected" +msgstr "Salta la schermata di pagamento Mollie quando viene selezionato il bonifico bancario" + +#: ../src/PaymentMethods/Banktransfer.php:76 +msgid "Enable this option if you want to skip redirecting your user to the Mollie payment screen, instead this will redirect your user directly to the WooCommerce order received page displaying instructions how to complete the Bank Transfer payment." +msgstr "Attiva questa opzione se vuoi saltare il reindirizzamento dell'utente alla schermata di pagamento Mollie, invece questo reindirizzerà l'utente direttamente alla pagina di ricezione dell'ordine WooCommerce che mostra le istruzioni per completare il pagamento tramite bonifico bancario." + +#: ../src/PaymentMethods/Belfius.php:13 +msgid "Belfius Direct Net" +msgstr "Belfius Direct Net" + +#: ../src/PaymentMethods/Creditcard.php:16 +msgid "Credit card" +msgstr "Carta di credito" + +#: ../src/PaymentMethods/Creditcard.php:52 +msgid "Enable Mollie Components" +msgstr "Abilita i componenti Mollie" + +#. translators: Placeholder 1: Mollie Components. +#: ../src/PaymentMethods/Creditcard.php:55 +msgid "Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." +msgstr "Utilizza i componenti Mollie per questo gateway. Scopri di più su %s e su come migliora la tua conversione." + +#: ../src/PaymentMethods/Creditcard.php:59, ../src/Settings/Page/Components.php:21, ../src/Settings/Page/MollieSettingsPage.php:703 +msgid "Mollie Components" +msgstr "Componenti Mollie" + +#: ../src/PaymentMethods/Creditcard.php:92 +msgid "Customize Icons" +msgstr "Icone personalizzate" + +#: ../src/PaymentMethods/Creditcard.php:99 +msgid "Enable Icons Selector" +msgstr "Abilita selettore icone" + +#: ../src/PaymentMethods/Creditcard.php:100 +msgid "Show customized creditcard icons on checkout page" +msgstr "Mostra icone personalizzate delle carte di credito nella pagina di checkout" + +#: ../src/PaymentMethods/Creditcard.php:108 +msgid "Show American Express Icon" +msgstr "Mostra icona American Express" + +#: ../src/PaymentMethods/Creditcard.php:113 +msgid "Show Carta Si Icon" +msgstr "Mostra icona Carta Si" + +#: ../src/PaymentMethods/Creditcard.php:118 +msgid "Show Carte Bancaire Icon" +msgstr "Mostra icona Carte Bancaire" + +#: ../src/PaymentMethods/Creditcard.php:123 +msgid "Show Maestro Icon" +msgstr "Mostra icona Maestro" + +#: ../src/PaymentMethods/Creditcard.php:128 +msgid "Show Mastercard Icon" +msgstr "Mostra icona Mastercard" + +#: ../src/PaymentMethods/Creditcard.php:133 +msgid "Show Visa Icon" +msgstr "Mostra icona Visa" + +#: ../src/PaymentMethods/Creditcard.php:138 +msgid "Show VPay Icon" +msgstr "Mostra icona VPay" + +#: ../src/PaymentMethods/Directdebit.php:13 +msgid "SEPA Direct Debit" +msgstr "Addebito diretto SEPA" + +#: ../src/PaymentMethods/Directdebit.php:14 +msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscriptions, and will not be shown in the WooCommerce checkout for regular payments! You also need to enable iDEAL and/or other \"first\" payment methods if you want to use SEPA Direct Debit." +msgstr "L'addebito diretto SEPA viene utilizzato per i pagamenti ricorrenti con gli abbonamenti WooCommerce e non verrà mostrato al checkout di WooCommerce per i pagamenti regolari! Devi anche autorizzare iDEAL o altri metodi di pagamento “primari” se vuoi utilizzare l’addebito diretto SEPA." + +#: ../src/PaymentMethods/Eps.php:13 +msgid "EPS" +msgstr "EPS" -#: build/inc/settings/mollie_paypal_button_enabler.php:89 -#: inc/settings/mollie_paypal_button_enabler.php:89 +#: ../src/PaymentMethods/Giftcard.php:30 +msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency" +msgid "Mollie - Giftcard details: %1$s %2$s %3$s." +msgstr "Mollie - Dettagli della giftcard: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:42 +msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency" +msgid " Remainder: %1$s %2$s %3$s." +msgstr " Promemoria: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:60 +msgid "Gift cards" +msgstr "Carte regalo" + +#: ../src/PaymentMethods/Giftcard.php:62, ../src/PaymentMethods/Giftcard.php:105 +msgid "Select your gift card" +msgstr "Seleziona la tua carta regalo" + +#: ../src/PaymentMethods/Giftcard.php:78 +msgid "Show gift cards dropdown" +msgstr "Mostra menu a tendina delle carte regalo" + +#: ../src/PaymentMethods/Giftcard.php:84 +msgid "If you disable this, a dropdown with various gift cards will not be shown in the WooCommerce checkout, so users will select a gift card on the Mollie payment page after checkout." +msgstr "Se si disabilita questo, un menu a tendina con varie carte regalo non verrà mostrato nel checkout di WooCommerce, così gli utenti selezioneranno una carta regalo nella pagina di pagamento di Mollie dopo il checkout." + +#: ../src/PaymentMethods/Giftcard.php:93, ../src/PaymentMethods/Ideal.php:46, ../src/PaymentMethods/Kbc.php:48 +msgid "Issuers empty option" +msgstr "Opzione emittenti vuota" + +#: ../src/PaymentMethods/Giftcard.php:99 +msgid "This text will be displayed as the first option in the gift card dropdown, but only if the above 'Show gift cards dropdown' is enabled." +msgstr "Questo testo verrà visualizzato come prima opzione nel menu a tendina delle carte regalo, ma solo se è abilitato il menu a tendina \"Mostra carte regalo\" di cui sopra." + +#: ../src/PaymentMethods/Giropay.php:13 +msgid "Giropay" +msgstr "Giropay" + +#: ../src/PaymentMethods/Ideal.php:15 +msgid "iDEAL" +msgstr "iDEAL" + +#: ../src/PaymentMethods/Ideal.php:17, ../src/PaymentMethods/Ideal.php:55, ../src/PaymentMethods/Kbc.php:16, ../src/PaymentMethods/Kbc.php:60 +msgid "Select your bank" +msgstr "Seleziona la tua banca" + +#: ../src/PaymentMethods/Ideal.php:34 +msgid "Show iDEAL banks dropdown" +msgstr "Mostra il menu a tendina delle banche iDEAL" + +#: ../src/PaymentMethods/Ideal.php:37 +msgid "If you disable this, a dropdown with various iDEAL banks will not be shown in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie payment page after checkout." +msgstr "Se si disabilita questo, un menu a tendina con varie banche iDEAL non verrà mostrato nel checkout di WooCommerce, così gli utenti selezioneranno una banca iDEAL nella pagina di pagamento di Mollie dopo il checkout." + +#: ../src/PaymentMethods/Ideal.php:49 +msgid "This text will be displayed as the first option in the iDEAL issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above 'Show iDEAL banks dropdown' is enabled." +msgstr "Questo testo verrà visualizzato come prima opzione nel menu a tendina degli emittenti iDEAL, se non viene inserito nulla, verrà mostrato \"Seleziona la tua banca\". Solo se è abilitata l'opzione ''Mostra il menu a tendina delle banche iDEAL'' di cui sopra." + +#: ../src/PaymentMethods/In3.php:13 +msgid "in3" +msgstr "in3" + +#: ../src/PaymentMethods/In3.php:15 +msgid "Pay in 3 instalments, 0% interest" +msgstr "Paga in 3 rate, 0% di interessi" + +#: ../src/PaymentMethods/Kbc.php:14 +msgid "KBC/CBC Payment Button" +msgstr "Pulsante di pagamento KBC/CBC" + +#: ../src/PaymentMethods/Kbc.php:33 +msgid "Show KBC/CBC banks dropdown" +msgstr "Mostra il menu a tendina delle banche KBC/CBC" + +#: ../src/PaymentMethods/Kbc.php:39 +msgid "If you disable this, a dropdown with various KBC/CBC banks will not be shown in the WooCommerce checkout, so users will select a KBC/CBC bank on the Mollie payment page after checkout." +msgstr "Se si disabilita questo, un menu a tendina con varie banche KBC/CBC non verrà mostrato nel checkout di WooCommerce, così gli utenti selezioneranno una banca KBC/CBC nella pagina di pagamento di Mollie dopo il checkout." + +#: ../src/PaymentMethods/Kbc.php:54 +msgid "This text will be displayed as the first option in the KBC/CBC issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above ''Show KBC/CBC banks dropdown' is enabled." +msgstr "Questo testo verrà visualizzato come prima opzione nel menu a tendina degli emittenti KBC/CBC, se non viene inserito nulla, verrà mostrato \"Seleziona la tua banca\". Solo se è abilitata l'opzione ''Mostra il menu a tendina delle banche KBC/CBC'' di cui sopra." + +#: ../src/PaymentMethods/Klarnapaylater.php:13 +msgid "Klarna Pay later" +msgstr "Klarna Pay later" + +#: ../src/PaymentMethods/Klarnapaylater.php:14, ../src/PaymentMethods/Klarnapaynow.php:14, ../src/PaymentMethods/Klarnasliceit.php:15 +msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required." +msgstr "Per accettare pagamenti tramite Klarna, tutti i campi del checkout predefiniti WooCommerce dovrebbero essere abilitati e richiesti." + +#: ../src/PaymentMethods/Klarnapaynow.php:13 +msgid "Klarna Pay Now" +msgstr "Klarna Pay Now" + +#: ../src/PaymentMethods/Klarnasliceit.php:14 +msgid "Klarna Slice it" +msgstr "Klarna Slice it" + +#: ../src/PaymentMethods/Mybank.php:14 +msgid "MyBank" +msgstr "MyBank" + +#: ../src/PaymentMethods/Mybank.php:15 +msgid "To accept payments via MyBank" +msgstr "Per accettare pagamenti tramite MyBank" + +#: ../src/PaymentMethods/Paypal.php:14 +msgid "PayPal" +msgstr "PayPal" + +#: ../src/PaymentMethods/Paypal.php:34 +msgid "Display on cart page" +msgstr "Visualizza nella pagina del carrello" + +#: ../src/PaymentMethods/Paypal.php:38 +msgid "Enable the PayPal button to be used in the cart page." +msgstr "Abilita il pulsante PayPal per l’uso nella pagina del carrello." + +#: ../src/PaymentMethods/Paypal.php:46 +msgid "Display on product page" +msgstr "Visualizza nella pagina del prodotto" + +#: ../src/PaymentMethods/Paypal.php:50 +msgid "Enable the PayPal button to be used in the product page." +msgstr "Abilita il pulsante PayPal per l’uso nella pagina del prodotto." + +#: ../src/PaymentMethods/Paypal.php:59 +msgctxt "Mollie PayPal Button Settings" +msgid "Button text language and color" +msgstr "Lingua del testo del pulsante e colore" + +#: ../src/PaymentMethods/Paypal.php:60 +msgctxt "Mollie PayPal Button Settings" +msgid "Select the text and the colour of the button." +msgstr "Selezionare il testo e il colore del pulsante." + +#: ../src/PaymentMethods/Paypal.php:70 +msgid "Minimum amount to display button" +msgstr "Importo minimo per la visualizzazione del pulsante" + +#: ../src/PaymentMethods/Paypal.php:74 +msgid "If the product or the cart total amount is under this number, then the button will not show up." +msgstr "Se il prodotto o l’importo totale del carrello è inferiore a questo numero, il pulsante non apparirà." + +#: ../src/PaymentMethods/Paypal.php:89 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill blue" +msgstr "Inglese -- Acquisto con PayPal - Pillola colore blu" + +#: ../src/PaymentMethods/Paypal.php:90 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded blue" +msgstr "Inglese -- Acquisto con PayPal - Blu arrotondato" + +#: ../src/PaymentMethods/Paypal.php:91 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill golden" +msgstr "Inglese -- Acquisto con PayPal - Pillola color oro" + +#: ../src/PaymentMethods/Paypal.php:92 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded golden" +msgstr "Inglese -- Acquisto con PayPal - Oro arrotondato" + +#: ../src/PaymentMethods/Paypal.php:93 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill gray" +msgstr "Inglese -- Acquisto con PayPal - Pillola colore grigio" + +#: ../src/PaymentMethods/Paypal.php:94 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded gray" +msgstr "Inglese -- Acquisto con PayPal - Grigio arrotondato" + +#: ../src/PaymentMethods/Paypal.php:95 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill white" +msgstr "Inglese -- Acquisto con PayPal - Pillola colore bianco" + +#: ../src/PaymentMethods/Paypal.php:96 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded white" +msgstr "Inglese -- Acquisto con PayPal - Bianco arrotondato" + +#: ../src/PaymentMethods/Paypal.php:97 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill black" +msgstr "Inglese -- Checkout con PayPal - Pillola colore nero" + +#: ../src/PaymentMethods/Paypal.php:98 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded black" +msgstr "Inglese -- Checkout con PayPal - Nero arrotondato" + +#: ../src/PaymentMethods/Paypal.php:99 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill blue" +msgstr "Inglese -- Checkout con PayPal - Pillola colore blu" + +#: ../src/PaymentMethods/Paypal.php:100 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded blue" +msgstr "Inglese -- Checkout con PayPal - Blu arrotondato" + +#: ../src/PaymentMethods/Paypal.php:101 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill golden" +msgstr "Inglese -- Checkout con PayPal - Pillola color oro" + +#: ../src/PaymentMethods/Paypal.php:102 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded golden" +msgstr "Inglese -- Checkout con PayPal - Oro arrotondato" + +#: ../src/PaymentMethods/Paypal.php:103 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill gray" +msgstr "Inglese -- Checkout con PayPal - Pillola colore grigio" + +#: ../src/PaymentMethods/Paypal.php:104 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded gray" +msgstr "Inglese -- Checkout con PayPal - Grigio arrotondato" + +#: ../src/PaymentMethods/Paypal.php:105 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill white" +msgstr "Inglese -- Checkout con PayPal - Pillola colore bianco" + +#: ../src/PaymentMethods/Paypal.php:106 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded white" +msgstr "Inglese -- Checkout con PayPal - Bianco arrotondato" + +#: ../src/PaymentMethods/Paypal.php:107 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill black" +msgstr "Olandese -- Acquisto con PayPal - Pillola colore nero" + +#: ../src/PaymentMethods/Paypal.php:108 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded black" +msgstr "Olandese -- Acquisto con PayPal - Nero arrotondato" + +#: ../src/PaymentMethods/Paypal.php:109 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill blue" +msgstr "Olandese -- Acquisto con PayPal - Pillola colore blu" + +#: ../src/PaymentMethods/Paypal.php:110 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded blue" +msgstr "Olandese -- Acquisto con PayPal - Blu arrotondato" + +#: ../src/PaymentMethods/Paypal.php:111 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill golden" +msgstr "Olandese -- Acquisto con PayPal - Pillola color oro" + +#: ../src/PaymentMethods/Paypal.php:112 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded golden" +msgstr "Olandese -- Acquisto con PayPal - Oro arrotondato" + +#: ../src/PaymentMethods/Paypal.php:113 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill gray" +msgstr "Olandese -- Acquisto con PayPal - Pillola colore grigio" + +#: ../src/PaymentMethods/Paypal.php:114 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded gray" +msgstr "Olandese -- Acquisto con PayPal - Grigio arrotondato" + +#: ../src/PaymentMethods/Paypal.php:115 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill white" +msgstr "Olandese -- Acquisto con PayPal - Pillola colore bianco" + +#: ../src/PaymentMethods/Paypal.php:116 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded white" +msgstr "Olandese -- Acquisto con PayPal - Bianco arrotondato" + +#: ../src/PaymentMethods/Paypal.php:117 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill black" +msgstr "Olandese -- Checkout con PayPal - Pillola colore nero" + +#: ../src/PaymentMethods/Paypal.php:118 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded black" +msgstr "Olandese -- Checkout con PayPal - Nero arrotondato" + +#: ../src/PaymentMethods/Paypal.php:119 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill blue" +msgstr "Olandese -- Checkout con PayPal - Pillola colore blu" + +#: ../src/PaymentMethods/Paypal.php:120 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded blue" +msgstr "Olandese -- Checkout con PayPal - Blu arrotondato" + +#: ../src/PaymentMethods/Paypal.php:121 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill golden" +msgstr "Olandese -- Checkout con PayPal - Pillola color oro" + +#: ../src/PaymentMethods/Paypal.php:122 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded golden" +msgstr "Olandese -- Checkout con PayPal - Oro arrotondato" + +#: ../src/PaymentMethods/Paypal.php:123 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill gray" +msgstr "Olandese -- Checkout con PayPal - Pillola colore grigio" + +#: ../src/PaymentMethods/Paypal.php:124 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded gray" msgstr "Olandese -- Checkout con PayPal - Grigio arrotondato" -#: build/inc/settings/mollie_paypal_button_enabler.php:90 -#: inc/settings/mollie_paypal_button_enabler.php:90 +#: ../src/PaymentMethods/Paypal.php:125 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill white" msgstr "Olandese -- Checkout con PayPal - Pillola colore bianco" -#: build/inc/settings/mollie_paypal_button_enabler.php:91 -#: inc/settings/mollie_paypal_button_enabler.php:91 +#: ../src/PaymentMethods/Paypal.php:126 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded white" msgstr "Olandese -- Checkout con PayPal - Bianco arrotondato" -#: build/inc/settings/mollie_paypal_button_enabler.php:92 -#: inc/settings/mollie_paypal_button_enabler.php:92 +#: ../src/PaymentMethods/Paypal.php:127 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill black" msgstr "Tedesco -- Acquisto con PayPal - Pillola colore nero" -#: build/inc/settings/mollie_paypal_button_enabler.php:93 -#: inc/settings/mollie_paypal_button_enabler.php:93 +#: ../src/PaymentMethods/Paypal.php:128 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded black" msgstr "Tedesco -- Acquisto con PayPal - Nero arrotondato" -#: build/inc/settings/mollie_paypal_button_enabler.php:94 -#: inc/settings/mollie_paypal_button_enabler.php:94 +#: ../src/PaymentMethods/Paypal.php:129 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill blue" msgstr "Tedesco -- Acquisto con PayPal - Pillola colore blu" -#: build/inc/settings/mollie_paypal_button_enabler.php:95 -#: inc/settings/mollie_paypal_button_enabler.php:95 +#: ../src/PaymentMethods/Paypal.php:130 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded blue" msgstr "Tedesco -- Acquisto con PayPal - Blu arrotondato" -#: build/inc/settings/mollie_paypal_button_enabler.php:96 -#: inc/settings/mollie_paypal_button_enabler.php:96 +#: ../src/PaymentMethods/Paypal.php:131 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill golden" msgstr "Tedesco -- Acquisto con PayPal - Pillola color oro" -#: build/inc/settings/mollie_paypal_button_enabler.php:97 -#: inc/settings/mollie_paypal_button_enabler.php:97 +#: ../src/PaymentMethods/Paypal.php:132 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded golden" msgstr "Tedesco -- Acquisto con PayPal - Arrotondato dorato" -#: build/inc/settings/mollie_paypal_button_enabler.php:98 -#: inc/settings/mollie_paypal_button_enabler.php:98 +#: ../src/PaymentMethods/Paypal.php:133 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill gray" msgstr "Tedesco -- Acquisto con PayPal - Pillola colore grigio" -#: build/inc/settings/mollie_paypal_button_enabler.php:99 -#: inc/settings/mollie_paypal_button_enabler.php:99 +#: ../src/PaymentMethods/Paypal.php:134 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded gray" msgstr "Tedesco -- Acquisto con PayPal - Grigio arrotondato" -#: build/inc/settings/mollie_paypal_button_enabler.php:100 -#: inc/settings/mollie_paypal_button_enabler.php:100 +#: ../src/PaymentMethods/Paypal.php:135 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill white" msgstr "Tedesco -- Acquisto con PayPal - Pillola colore bianco" -#: build/inc/settings/mollie_paypal_button_enabler.php:101 -#: inc/settings/mollie_paypal_button_enabler.php:101 +#: ../src/PaymentMethods/Paypal.php:136 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded white" msgstr "Tedesco -- Acquisto con PayPal - Bianco arrotondato" -#: build/inc/settings/mollie_paypal_button_enabler.php:102 -#: inc/settings/mollie_paypal_button_enabler.php:102 +#: ../src/PaymentMethods/Paypal.php:137 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill black" msgstr "Tedesco -- Checkout con PayPal - Pillola colore nero" -#: build/inc/settings/mollie_paypal_button_enabler.php:103 -#: inc/settings/mollie_paypal_button_enabler.php:103 +#: ../src/PaymentMethods/Paypal.php:138 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded black" msgstr "Tedesco -- Checkout con PayPal - Nero arrotondato" -#: build/inc/settings/mollie_paypal_button_enabler.php:104 -#: inc/settings/mollie_paypal_button_enabler.php:104 +#: ../src/PaymentMethods/Paypal.php:139 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill blue" msgstr "Tedesco -- Checkout con PayPal - Pillola colore blu" -#: build/inc/settings/mollie_paypal_button_enabler.php:105 -#: inc/settings/mollie_paypal_button_enabler.php:105 +#: ../src/PaymentMethods/Paypal.php:140 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded blue" msgstr "Tedesco -- Checkout con PayPal - Blu arrotondato" -#: build/inc/settings/mollie_paypal_button_enabler.php:106 -#: inc/settings/mollie_paypal_button_enabler.php:106 +#: ../src/PaymentMethods/Paypal.php:141 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill golden" msgstr "Tedesco -- Checkout con PayPal - Pillola color oro" -#: build/inc/settings/mollie_paypal_button_enabler.php:107 -#: inc/settings/mollie_paypal_button_enabler.php:107 +#: ../src/PaymentMethods/Paypal.php:142 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded golden" msgstr "Tedesco -- Checkout con PayPal - Oro arrotondato" -#: build/inc/settings/mollie_paypal_button_enabler.php:108 -#: inc/settings/mollie_paypal_button_enabler.php:108 +#: ../src/PaymentMethods/Paypal.php:143 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill gray" msgstr "Tedesco -- Checkout con PayPal - Pillola colore grigio" -#: build/inc/settings/mollie_paypal_button_enabler.php:109 -#: inc/settings/mollie_paypal_button_enabler.php:109 +#: ../src/PaymentMethods/Paypal.php:144 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded gray" msgstr "Tedesco -- Checkout con PayPal - Grigio arrotondato" -#: build/inc/settings/mollie_paypal_button_enabler.php:110 -#: inc/settings/mollie_paypal_button_enabler.php:110 +#: ../src/PaymentMethods/Paypal.php:145 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill white" msgstr "Tedesco -- Checkout con PayPal - Pillola colore bianco" -#: build/inc/settings/mollie_paypal_button_enabler.php:111 -#: inc/settings/mollie_paypal_button_enabler.php:111 +#: ../src/PaymentMethods/Paypal.php:146 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded white" msgstr "Tedesco -- Checkout con PayPal - Bianco arrotondato" -#: build/inc/settings/mollie_paypal_button_enabler.php:112 -#: inc/settings/mollie_paypal_button_enabler.php:112 +#: ../src/PaymentMethods/Paypal.php:147 msgctxt "Mollie PayPal button Settings" msgid "French -- Buy with PayPal - Gold" msgstr "Francese -- Acquisto con PayPal - Oro" -#: build/inc/settings/mollie_paypal_button_enabler.php:113 -#: inc/settings/mollie_paypal_button_enabler.php:113 +#: ../src/PaymentMethods/Paypal.php:148 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Gold" msgstr "Francese -- Checkout con PayPal - Oro" -#: build/inc/settings/mollie_paypal_button_enabler.php:114 -#: inc/settings/mollie_paypal_button_enabler.php:114 +#: ../src/PaymentMethods/Paypal.php:149 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Silver" msgstr "Francese -- Checkout con PayPal - Argento" -#: build/inc/settings/mollie_paypal_button_enabler.php:115 -#: inc/settings/mollie_paypal_button_enabler.php:115 +#: ../src/PaymentMethods/Paypal.php:150 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Buy with PayPal - Gold" msgstr "Polacco -- Acquisto con PayPal - Oro" -#: build/inc/settings/mollie_paypal_button_enabler.php:116 -#: inc/settings/mollie_paypal_button_enabler.php:116 +#: ../src/PaymentMethods/Paypal.php:151 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Checkout with PayPal - Gold" msgstr "Polacco -- Checkout con PayPal - Oro" -#: build/inc/settings/mollie_paypal_button_enabler.php:117 -#: inc/settings/mollie_paypal_button_enabler.php:117 +#: ../src/PaymentMethods/Paypal.php:152 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Checkout with PayPal - Silver" msgstr "Polacco -- Checkout con PayPal - Argento" -#: build/inc/settings/mollie_paypal_button_enabler.php:122 -#: inc/settings/mollie_paypal_button_enabler.php:122 -msgid "Minimum amount to display button" -msgstr "Importo minimo per la visualizzazione del pulsante" - -#: build/inc/settings/mollie_paypal_button_enabler.php:126 -#: inc/settings/mollie_paypal_button_enabler.php:126 -msgid "" -"If the product or the cart total amount is under this number, then the " -"button will not show up." -msgstr "" -"Se il prodotto o l’importo totale del carrello è inferiore a questo numero, " -"il pulsante non apparirà." - -#: build/mollie-payments-for-woocommerce.php:90 -#: mollie-payments-for-woocommerce.php:90 -msgid "" -"%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set " -"your API keys here%4$s." -msgstr "" -"%1$sMollie Payments per WooCommerce: chiavi API mancanti%2$s Ti preghiamo di" -"%3$s impostare le tue chiavi API qui%4$s." - -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: build/src/Mollie/WC/Gateway/Abstract.php:685 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: src/Mollie/WC/Gateway/Abstract.php:685 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -msgid "Could not create %s payment." -msgstr "Non è stato possibile creare %s il pagamento." - -#: build/src/Mollie/WC/Gateway/Abstract.php:138 -#: src/Mollie/WC/Gateway/Abstract.php:138 -msgid "No custom logo selected" -msgstr "Nessun logo personalizzato selezionato" - -#: build/src/Mollie/WC/Gateway/Abstract.php:221 -#: src/Mollie/WC/Gateway/Abstract.php:221 -msgid "Gateway Disabled" -msgstr "Gateway disabilitato" - -#: build/src/Mollie/WC/Gateway/Abstract.php:244 -#: src/Mollie/WC/Gateway/Abstract.php:244 -msgid "Return to payments" -msgstr "Ritorna ai pagamenti" - -#: build/src/Mollie/WC/Gateway/Abstract.php:260 -#: build/src/Mollie/WC/Helper/Settings.php:114 -#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114 -msgid "Sell to specific countries" -msgstr "Effettua la vendita in paesi specifici" - -#: build/src/Mollie/WC/Gateway/Abstract.php:272 -#: src/Mollie/WC/Gateway/Abstract.php:272 -msgid "Choose countries…" -msgstr "Scegli paesi…" - -#: build/src/Mollie/WC/Gateway/Abstract.php:273 -#: src/Mollie/WC/Gateway/Abstract.php:273 -msgid "Country" -msgstr "Paese" - -#: build/src/Mollie/WC/Gateway/Abstract.php:282 -#: src/Mollie/WC/Gateway/Abstract.php:282 -msgid "Select all" -msgstr "Seleziona tutti" - -#: build/src/Mollie/WC/Gateway/Abstract.php:283 -#: src/Mollie/WC/Gateway/Abstract.php:283 -msgid "Select none" -msgstr "Non selezionare nessuno" - -#: build/src/Mollie/WC/Gateway/Abstract.php:337 -#: build/src/Mollie/WC/Helper/Settings.php:558 -#: src/Mollie/WC/Gateway/Abstract.php:337 src/Mollie/WC/Helper/Settings.php:558 -msgid "Test mode enabled." -msgstr "Modalità di prova abilitata." - -#. translators: The surrounding %s's Will be replaced by a link to the global setting page -#: build/src/Mollie/WC/Gateway/Abstract.php:339 -#: src/Mollie/WC/Gateway/Abstract.php:339 -msgid "No API key provided. Please %sset you Mollie API key%s first." -msgstr "" -"Nessuna chiave API fornita. Per prima cosa, ti preghiamo di %simpostare la " -"tua chiave API Mollie%s." - -#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Gateway/Abstract.php:351 -#: src/Mollie/WC/Gateway/Abstract.php:351 -msgid "" -"%s not enabled in your Mollie profile. You can enable it by editing your " -"%sMollie profile%s." -msgstr "" -"%s non abilitato nel tuo profilo Mollie. Puoi abilitarlo modificando il tuo " -"%sprofilo Mollie%s." - -#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies -#: build/src/Mollie/WC/Gateway/Abstract.php:363 -#: src/Mollie/WC/Gateway/Abstract.php:363 -msgid "" -"Current shop currency %s not supported by Mollie. Read more about " -"%ssupported currencies and payment methods.%s " -msgstr "" -"Valuta negozio corrente %s non supportata da Mollie. Leggi di più sulle " -"%svalute supportate e sui metodi di pagamento.%s " - -#: build/src/Mollie/WC/Gateway/Abstract.php:525 -#: src/Mollie/WC/Gateway/Abstract.php:525 -msgid "Could not load order %s" -msgstr "Non è stato possibile caricare l’ordine %s" - -#: build/src/Mollie/WC/Gateway/Abstract.php:577 -#: src/Mollie/WC/Gateway/Abstract.php:577 -msgid "" -"Order completed internally because of an existing valid mandate at Mollie." -msgstr "" -"Ordine completato internamente sulla base di un mandato valido su Mollie." - -#: build/src/Mollie/WC/Gateway/Abstract.php:588 -#: src/Mollie/WC/Gateway/Abstract.php:588 -msgid "" -"Subscription switch failed, no valid mandate found. Place a completely new " -"order to change your subscription." -msgstr "" -"Il cambio di abbonamento non è riuscito, non è stato trovato un mandato " -"valido. Effettua un ordine completamente nuovo per modificare il tuo " -"abbonamento." - -#: build/src/Mollie/WC/Gateway/Abstract.php:589 -#: src/Mollie/WC/Gateway/Abstract.php:589 -msgid "Failed switching subscriptions, no valid mandate." -msgstr "Il cambio di abbonamenti non è riuscito, non c’è un mandato valido." - -#: build/src/Mollie/WC/Gateway/Abstract.php:658 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:413 -#: src/Mollie/WC/Gateway/Abstract.php:658 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:413 -msgid "Awaiting payment confirmation." -msgstr "In attesa della conferma del pagamento." - -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:668 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:420 -#: src/Mollie/WC/Gateway/Abstract.php:668 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:420 -msgid "%s payment started (%s)." -msgstr "%s pagamento avviato (%s)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:670 -#: build/src/Mollie/WC/Gateway/Abstract.php:897 -#: build/src/Mollie/WC/Gateway/Abstract.php:1181 -#: build/src/Mollie/WC/Gateway/Abstract.php:1243 -#: build/src/Mollie/WC/Gateway/Abstract.php:1618 -#: build/src/Mollie/WC/Gateway/Abstract.php:2142 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: build/src/Mollie/WC/Payment/Object.php:608 -#: build/src/Mollie/WC/Payment/Object.php:642 -#: build/src/Mollie/WC/Payment/Order.php:264 -#: build/src/Mollie/WC/Payment/Order.php:316 -#: build/src/Mollie/WC/Payment/Order.php:363 -#: build/src/Mollie/WC/Payment/Order.php:446 -#: build/src/Mollie/WC/Payment/Order.php:511 -#: build/src/Mollie/WC/Payment/Order.php:936 -#: build/src/Mollie/WC/Payment/Payment.php:249 -#: build/src/Mollie/WC/Payment/Payment.php:336 -#: build/src/Mollie/WC/Payment/Payment.php:406 -#: build/src/Mollie/WC/Payment/Payment.php:429 -#: src/Mollie/WC/Gateway/Abstract.php:670 -#: src/Mollie/WC/Gateway/Abstract.php:897 -#: src/Mollie/WC/Gateway/Abstract.php:1181 -#: src/Mollie/WC/Gateway/Abstract.php:1243 -#: src/Mollie/WC/Gateway/Abstract.php:1618 -#: src/Mollie/WC/Gateway/Abstract.php:2142 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642 -#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316 -#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446 -#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936 -#: src/Mollie/WC/Payment/Payment.php:249 src/Mollie/WC/Payment/Payment.php:336 -#: src/Mollie/WC/Payment/Payment.php:406 src/Mollie/WC/Payment/Payment.php:429 -msgid "test mode" -msgstr "modalità di prova" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:894 -#: src/Mollie/WC/Gateway/Abstract.php:894 -msgid "%s payment %s (%s), not processed." -msgstr "%s pagamento %s (%s), non elaborato." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1008 -#: src/Mollie/WC/Gateway/Abstract.php:1008 -msgid "" -"New refund %s processed in Mollie Dashboard! Order note added, but order not " -"updated." -msgstr "" -"Nuovo rimborso %s elaborato nella dashboard Mollie! Nota dell’ordine " -"aggiunta, ma ordine aggiornato." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1144 -#: src/Mollie/WC/Gateway/Abstract.php:1144 -msgid "New chargeback %s processed! Order note and order status updated." -msgstr "" -"Nuovo riaccredito %s elaborato! Nota dell’ordine e stato dell’ordine " -"aggiornati." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1176 -#: src/Mollie/WC/Gateway/Abstract.php:1176 -msgid "" -"%s payment charged back via Mollie (%s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%s pagamento riaccreditato tramite Mollie (%s). Dovrai rivedere manualmente " -"il pagamento (e adattare lo stock di prodotti se lo usi)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1237 -#: src/Mollie/WC/Gateway/Abstract.php:1237 -msgid "" -"%s payment charged back via Mollie (%s). Subscription status updated, please " -"review (and adjust product stocks if you use it)." -msgstr "" -"%s pagamento riaccreditato tramite Mollie (%s). Stato dell’abbonamento " -"aggiornato, ti preghiamo di rivederlo (e adattare lo stock di prodotti se lo " -"usi)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1314 -#: src/Mollie/WC/Gateway/Abstract.php:1314 -msgid "" -"You have cancelled your payment. Please complete your order with a different " -"payment method." -msgstr "" -"Hai annullato il tuo pagamento. Completa l’ordine con una modalità di " -"pagamento differente." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1328 -#: build/src/Mollie/WC/Gateway/Abstract.php:1337 -#: src/Mollie/WC/Gateway/Abstract.php:1328 -#: src/Mollie/WC/Gateway/Abstract.php:1337 -msgid "" -"Your payment was not successful. Please complete your order with a different " -"payment method." -msgstr "" -"Il tuo pagamento non è riuscito. Completa l’ordine con una modalità di " -"pagamento differente." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1529 -#: src/Mollie/WC/Gateway/Abstract.php:1529 -msgid "We have not received a definite payment status." -msgstr "Non abbiamo ricevuto uno stato del pagamento definito." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1534 -#: src/Mollie/WC/Gateway/Abstract.php:1534 -msgid "" -"We have not received a definite payment status. You will receive an email as " -"soon as we receive a confirmation of the bank/merchant." -msgstr "" -"Non abbiamo ricevuto uno stato del pagamento definito. Riceverai un'e-mail " -"non appena riceveremo una conferma della banca/dell’operatore commerciale." - -#. translators: Placeholder 1: payment method -#: build/src/Mollie/WC/Gateway/Abstract.php:1541 -#: src/Mollie/WC/Gateway/Abstract.php:1541 -msgid "Payment completed with %s" -msgstr "Pagamento completato con %s" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1589 -#: src/Mollie/WC/Gateway/Abstract.php:1589 -msgid "Order cancelled" -msgstr "Ordine annullato" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1616 -#: src/Mollie/WC/Gateway/Abstract.php:1616 -msgid "" -"%s payment still pending (%s) but customer already returned to the store. " -"Status should be updated automatically in the future, if it doesn't this " -"might indicate a communication issue between the site and Mollie." -msgstr "" -"%s pagamento ancora in sospeso (%s) ma il cliente è già ritornato in " -"negozio. Lo stato dovrebbe essere aggiornato automaticamente in futuro, se " -"ciò non avviene può essere ricondotto a un problema di comunicazione tra il " -"sito e Mollie." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1625 -#: src/Mollie/WC/Gateway/Abstract.php:1625 -msgid ", payment pending." -msgstr ", pagamento in sospeso." +#: ../src/PaymentMethods/Paysafecard.php:14 +msgid "paysafecard" +msgstr "paysafecard" -#: build/src/Mollie/WC/Gateway/Abstract.php:1652 -#: src/Mollie/WC/Gateway/Abstract.php:1652 -msgid "Your order has been cancelled." -msgstr "Il tuo ordine è stato annullato." +#: ../src/PaymentMethods/Przelewy24.php:14 +msgid "Przelewy24" +msgstr "Przelewy24" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:2129 -#: src/Mollie/WC/Gateway/Abstract.php:2129 -msgid "" -"%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%1$s pagamento %2$s tramite Mollie (%3$s %4$s). Dovrai rivedere manualmente " -"il pagamento (e adattare lo stock di prodotti se lo usi)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:2166 -#: src/Mollie/WC/Gateway/Abstract.php:2166 -msgctxt "" -"Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid "Mollie - Giftcard details: %1$s %2$s %3$s." -msgstr "Mollie - Dettagli della giftcard: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Przelewy24.php:15 +msgid "To accept payments via Przelewy24, a customer email is required for every payment." +msgstr "Per accettare pagamenti tramite Przelewy24, è richiesta un’email del cliente per ciascun pagamento." -#: build/src/Mollie/WC/Gateway/Abstract.php:2178 -#: src/Mollie/WC/Gateway/Abstract.php:2178 -msgctxt "" -"Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid " Remainder: %1$s %2$s %3$s." -msgstr " Promemoria: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Sofort.php:14 +msgid "SOFORT Banking" +msgstr "SOFORT Banking" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. -#: build/src/Mollie/WC/Gateway/Abstract.php:2580 -#: src/Mollie/WC/Gateway/Abstract.php:2580 -msgid " + %1$s %2$s fee might apply" -msgstr "Una tariffa + %1$s %2$s può essere applicata" +#: ../src/PaymentMethods/Voucher.php:35 +msgid "Voucher" +msgstr "Voucher" -#. translators: Placeholder 1: Fee amount tag. -#: build/src/Mollie/WC/Gateway/Abstract.php:2590 -#: src/Mollie/WC/Gateway/Abstract.php:2590 -msgid " + %1$s%% fee might apply" -msgstr "Una tariffa + %1$s%% può essere applicata" +#: ../src/PaymentMethods/Voucher.php:54, ../src/Gateway/Voucher/VoucherModule.php:220 +msgid "Select the default products category" +msgstr "Seleziona la categoria predefinita dei prodotti" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. -#: build/src/Mollie/WC/Gateway/Abstract.php:2607 -#: src/Mollie/WC/Gateway/Abstract.php:2607 -msgid " + %1$s %2$s + %3$s%% fee might apply" -msgstr "Una tariffa + %1$s %2$s + %3$s%% può essere applicata" +#: ../src/PaymentMethods/Voucher.php:57 +msgid "No category" +msgstr "Nessuna categoria" -#: build/src/Mollie/WC/Gateway/Abstract.php:2646 -#: src/Mollie/WC/Gateway/Abstract.php:2646 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must " -"be under 500kb." -msgstr "" -"%1$sMollie Payments per WooCommerce%2$s Impossibile caricare il file. Le " -"dimensioni devono essere inferiori a 500kb." +#: ../src/PaymentMethods/Voucher.php:58, ../src/Gateway/Voucher/VoucherModule.php:113, ../src/Gateway/Voucher/VoucherModule.php:147, ../src/Gateway/Voucher/VoucherModule.php:178, ../src/Gateway/Voucher/VoucherModule.php:233, ../src/Gateway/Voucher/VoucherModule.php:293 +msgid "Meal" +msgstr "Pasto" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -msgid "Order completed using %1$s payment (%2$s)." -msgstr "Ordine completato utilizzando il %1$s pagamento (%2$s)." +#: ../src/PaymentMethods/Voucher.php:59, ../src/Gateway/Voucher/VoucherModule.php:114, ../src/Gateway/Voucher/VoucherModule.php:148, ../src/Gateway/Voucher/VoucherModule.php:181, ../src/Gateway/Voucher/VoucherModule.php:234, ../src/Gateway/Voucher/VoucherModule.php:294 +msgid "Eco" +msgstr "Eco" -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:165 -msgid "" -"Updated subscription from 'On hold' to 'Active' until payment fails, because " -"a SEPA Direct Debit payment takes some time to process." -msgstr "" -"Aggiornamento dell'abbonamento da 'In attesa' to 'Attivo' fino a quando il " -"pagamento non fallisce, perché un pagamento con addebito diretto SEPA " -"richiede un certo tempo per essere elaborato." +#: ../src/PaymentMethods/Voucher.php:60, ../src/Gateway/Voucher/VoucherModule.php:115, ../src/Gateway/Voucher/VoucherModule.php:149, ../src/Gateway/Voucher/VoucherModule.php:184, ../src/Gateway/Voucher/VoucherModule.php:235, ../src/Gateway/Voucher/VoucherModule.php:295 +msgid "Gift" +msgstr "Regalo" -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:313 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:313 -msgid "Could not create %s renewal payment." -msgstr "Non è stato possibile creare %s il pagamento del rinnovo." +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/PaymentMethods/Voucher.php:64 +msgid "In order to process it, all products in the order must have a category. This selector will assign the default category for the shop products" +msgstr "Per procedere all’elaborazione, tutti i prodotti nell’ordine devono avere una categoria. Il selezionatore assegnerà una categoria predefinita per i prodotti del negozio" -#: build/src/Mollie/WC/Gateway/Applepay.php:48 -#: src/Mollie/WC/Gateway/Applepay.php:48 -msgid "Apple Pay" -msgstr "Apple Pay" +#: ../src/SDK/Api.php:49 +msgid "Invalid API key(s). Get them on the %1$sDevelopers page in the Mollie dashboard%2$s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters." +msgstr "Chiave/i API non valida/e. Acquisiscile sulla %1$spagina degli sviluppatori nella dashboard Mollie%2$s. La chiave o le chiavi API devono iniziare con 'live_' o 'test_', essere di almeno 30 caratteri e non devono contenere caratteri speciali." -#: build/src/Mollie/WC/Gateway/Applepay.php:56 -#: src/Mollie/WC/Gateway/Applepay.php:56 -msgid "To accept payments via Apple Pay" -msgstr "Per accettare pagamenti tramite Apple Pay" +#: ../src/SDK/Api.php:47 +msgid "No API key provided. Please set your Mollie API keys below." +msgstr "Nessuna chiave API fornita. Ti preghiamo di impostare le tue chiavi API Mollie di seguito." -#: build/src/Mollie/WC/Gateway/Bancontact.php:29 -#: src/Mollie/WC/Gateway/Bancontact.php:29 -msgid "Bancontact" -msgstr "Bancontact" +#: ../src/Settings/Settings.php:174 +msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb." +msgstr "%1$sMollie Payments per WooCommerce%2$s Impossibile caricare il file. Le dimensioni devono essere inferiori a 500kb." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:38 -#: build/src/Mollie/WC/Helper/Settings.php:257 -#: src/Mollie/WC/Gateway/BankTransfer.php:38 -#: src/Mollie/WC/Helper/Settings.php:257 -msgid "Activate expiry date setting" -msgstr "Attiva l’impostazione per la data di scadenza" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:39 -#: build/src/Mollie/WC/Helper/Settings.php:258 -#: src/Mollie/WC/Gateway/BankTransfer.php:39 -#: src/Mollie/WC/Helper/Settings.php:258 -msgid "Enable expiry date for payments" -msgstr "Abilita data di scadenza per pagamenti" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:40 -#: src/Mollie/WC/Gateway/BankTransfer.php:40 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the payment will expire. This will turn all transactions into payments " -"instead of orders" -msgstr "" -"Abilita questa opzione se desideri impostare il numero di giorni dopo il " -"quale il pagamento scadrà. Questa opzione trasformerà tutte le transazioni " -"in pagamenti anziché ordini" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:45 -#: build/src/Mollie/WC/Helper/Settings.php:264 -#: build/src/Mollie/WC/Plugin.php:927 src/Mollie/WC/Gateway/BankTransfer.php:45 -#: src/Mollie/WC/Helper/Settings.php:264 src/Mollie/WC/Plugin.php:927 -msgid "Expiry date" -msgstr "Data di scadenza" +#: ../src/Settings/Settings.php:216 +msgid "Gateway Disabled" +msgstr "Gateway disabilitato" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:47 -#: src/Mollie/WC/Gateway/BankTransfer.php:47 -msgid "" -"Number of DAYS after the payment will expire. Default %d days" -msgstr "" -"Numero di GIORNI dopo il quale il pagamento scadrà. Giorni %d " -"predefiniti" +#: ../src/Settings/Settings.php:237 +msgid "Return to payments" +msgstr "Ritorna ai pagamenti" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:56 -#: src/Mollie/WC/Gateway/BankTransfer.php:56 -msgid "Skip Mollie payment screen" -msgstr "Salta la schermata di pagamento Mollie" +#: ../src/Settings/Settings.php:252, ../src/Settings/General/MollieGeneralSettings.php:86 +msgid "Sell to specific countries" +msgstr "Effettua la vendita in paesi specifici" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:57 -#: src/Mollie/WC/Gateway/BankTransfer.php:57 -msgid "Skip Mollie payment screen when Bank Transfer is selected" -msgstr "" -"Salta la schermata di pagamento Mollie quando viene selezionato il bonifico " -"bancario" +#: ../src/Settings/Settings.php:264 +msgid "Choose countries…" +msgstr "Scegli paesi…" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:58 -#: src/Mollie/WC/Gateway/BankTransfer.php:58 -msgid "" -"Enable this option if you want to skip redirecting your user to the Mollie " -"payment screen, instead this will redirect your user directly to the " -"WooCommerce order received page displaying instructions how to complete the " -"Bank Transfer payment." -msgstr "" -"Attiva questa opzione se vuoi saltare il reindirizzamento dell'utente alla " -"schermata di pagamento Mollie, invece questo reindirizzerà l'utente " -"direttamente alla pagina di ricezione dell'ordine WooCommerce che mostra le " -"istruzioni per completare il pagamento tramite bonifico bancario." +#: ../src/Settings/Settings.php:265 +msgid "Country" +msgstr "Paese" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:138 -#: src/Mollie/WC/Gateway/BankTransfer.php:138 -msgid "Bank Transfer" -msgstr "Bonifico bancario" +#: ../src/Settings/Settings.php:274 +msgid "Select all" +msgstr "Seleziona tutti" -#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC -#: build/src/Mollie/WC/Gateway/BankTransfer.php:188 -#: build/src/Mollie/WC/Gateway/DirectDebit.php:80 -#: build/src/Mollie/WC/Gateway/Ideal.php:124 -#: build/src/Mollie/WC/Gateway/Sofort.php:64 -#: src/Mollie/WC/Gateway/BankTransfer.php:188 -#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124 -#: src/Mollie/WC/Gateway/Sofort.php:64 -msgid "" -"Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" -msgstr "" -"Pagamento completato da %1$s (IBAN (ultime 4 cifre): %2$s, BIC: %3$s)" +#: ../src/Settings/Settings.php:275 +msgid "Select none" +msgstr "Non selezionare nessuno" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:198 -#: src/Mollie/WC/Gateway/BankTransfer.php:198 -msgid "" -"Please complete your payment by transferring the total amount to the " -"following bank account:" -msgstr "" -"Si prega di completare il pagamento trasferendo l'importo totale sul " -"seguente conto bancario:" +#: ../src/Settings/Settings.php:470 +msgid "Error" +msgstr "Errore" -#. translators: Placeholder 1: 'Stichting Mollie Payments' -#: build/src/Mollie/WC/Gateway/BankTransfer.php:202 -#: src/Mollie/WC/Gateway/BankTransfer.php:202 -msgid "Beneficiary: %s" -msgstr "Beneficiario: %s" +#: ../src/Settings/Settings.php:484 +msgid "Mollie status:" +msgstr "Stato Mollie:" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:203 -#: src/Mollie/WC/Gateway/BankTransfer.php:203 -msgid "IBAN: %s" -msgstr "IBAN: %s" +#: ../src/Settings/Settings.php:485 +msgid "Connected" +msgstr "Collegato" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:204 -#: src/Mollie/WC/Gateway/BankTransfer.php:204 -msgid "BIC: %s" -msgstr "BIC: %s" +#: ../src/Settings/SettingsModule.php:171 +msgid "Mollie settings" +msgstr "Impostazioni Mollie" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:209 -#: src/Mollie/WC/Gateway/BankTransfer.php:209 -msgid "Payment reference: %s" -msgstr "Riferimento del pagamento: %s" +#: ../src/Settings/SettingsModule.php:177 +msgid "Logs" +msgstr "Log" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:214 -#: src/Mollie/WC/Gateway/BankTransfer.php:214 -msgid "Please provide the payment reference %s" -msgstr "" -"Ti preghiamo di fornire il riferimento del pagamento %s" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/SettingsModule.php:187 +msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production." +msgstr "%1$sMollie Payments per WooCommerce%2$s La modalità di prova è attiva, %3$s disabilitala%4$s prima di implementarla nella produzione." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:228 -#: src/Mollie/WC/Gateway/BankTransfer.php:228 -msgid "The payment will expire on %s." -msgstr "Il pagamento scadrà il %s." +#: ../src/Shared/Data.php:628 +msgid "Item #%1$s stock incremented from %2$s to %3$s." +msgstr "Articolo #%1$s giacenza incrementata da %2$s a %3$s." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:235 -#: src/Mollie/WC/Gateway/BankTransfer.php:235 -msgid "" -"The payment will expire on %s. Please make sure you " -"transfer the total amount before this date." -msgstr "" -"Il pagamento scadrà il %s. Assicurati di effettuare il " -"bonifico per l’importo totale prima di questa data." +#. translators: Placeholder 1: Plugin title. Placeholder 2: Min WooCommerce version. Placeholder 3: WooCommerce version used. +#: ../src/Shared/Status.php:74 +msgid "The %1$s plugin requires at least WooCommerce version %2$s, you are using version %3$s. Please update your WooCommerce plugin." +msgstr "Il %1$s plugin richiede almeno la versione WooCommerce %2$s, stai utilizzando la versione %3$s. Ti preghiamo di aggiornare il tuo plugin WooCommerce." -#: build/src/Mollie/WC/Gateway/Belfius.php:33 -#: src/Mollie/WC/Gateway/Belfius.php:33 -msgid "Belfius Direct Net" -msgstr "Belfius Direct Net" +#: ../src/Shared/Status.php:87 +msgid "Mollie API client not installed. Please make sure the plugin is installed correctly." +msgstr "Client dell’API Mollie non installato. Assicurati che il plugin sia installato correttamente." -#: build/src/Mollie/WC/Gateway/Creditcard.php:84 -#: src/Mollie/WC/Gateway/Creditcard.php:84 -msgid "Credit card" -msgstr "Carta di credito" +#: ../src/Shared/Status.php:96 +msgid "Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable it in your server or ask your webhoster to enable it for you." +msgstr "Mollie Payments per WooCommerce richiede l’estensione JSON per PHP. Abilitala nel tuo server o chiedi al tuo webhoster di abilitarla per te." -#. translators: Placeholder 1: card holder -#: build/src/Mollie/WC/Gateway/Creditcard.php:136 -#: src/Mollie/WC/Gateway/Creditcard.php:136 -msgid "Payment completed by %s" -msgstr "Pagamento completato da %s" +#. translators: Placeholder 1: Min PHP version. Placeholder 2: PHP version used. Placeholder 3: Opening link tag. placeholder 4: Closing link tag. +#: ../src/Shared/Status.php:111 +msgid "Mollie Payments for WooCommerce require PHP %1$s or higher, you have PHP %2$s. Please upgrade and view %3$sthis FAQ%4$s" +msgstr "Mollie Payments per WooCommerce richiede PHP %1$s o superiore, tu hai PHP %2$s. Effettua l’aggiornamento e visualizza %3$squeste FAQ%4$s" -#: build/src/Mollie/WC/Gateway/DirectDebit.php:42 -#: src/Mollie/WC/Gateway/DirectDebit.php:42 -msgid "SEPA Direct Debit" -msgstr "Addebito diretto SEPA" +#: ../src/Shared/Status.php:123 +msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration." +msgstr "Mollie Payments per WooCommerce richiede l’abilitazione dell’estensione PHP per JSON. Abilita l’estensione 'json' nella tua configurazione PHP." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:49 -#: src/Mollie/WC/Gateway/DirectDebit.php:49 -msgid "" -"SEPA Direct Debit is used for recurring payments with WooCommerce " -"Subscriptions, and will not be shown in the WooCommerce checkout for regular " -"payments! You also need to enable iDEAL and/or other \"first\" payment " -"methods if you want to use SEPA Direct Debit." -msgstr "" -"L'addebito diretto SEPA viene utilizzato per i pagamenti ricorrenti con gli " -"abbonamenti WooCommerce e non verrà mostrato al checkout di WooCommerce per " -"i pagamenti regolari! Devi anche autorizzare iDEAL o altri metodi di " -"pagamento “primari” se vuoi utilizzare l’addebito diretto SEPA." +#: ../src/Shared/Status.php:130 +msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration." +msgstr "Mollie Payments per WooCommerce richiede l’estensione PHP per cURL. Abilita l’estensione 'curl' nella tua configurazione PHP." -#: build/src/Mollie/WC/Gateway/EPS.php:29 src/Mollie/WC/Gateway/EPS.php:29 -msgid "EPS" -msgstr "EPS" +#: ../src/Shared/Status.php:138 +msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available." +msgstr "Mollie Payments per WooCommerce richiede che le funzioni PHP cURL siano disponibili. Assicurati che queste funzioni siano disponibili." -#: build/src/Mollie/WC/Gateway/Giftcard.php:31 -#: src/Mollie/WC/Gateway/Giftcard.php:31 -msgid "Show gift cards dropdown" -msgstr "Mostra menu a tendina delle carte regalo" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSepaRecurringGateway.php:136, ../src/Subscription/MollieSubscriptionGateway.php:468 +msgid "%1$s payment started (%2$s)." +msgstr "%1$s pagamento avviato (%2$s)." -#: build/src/Mollie/WC/Gateway/Giftcard.php:33 -#: src/Mollie/WC/Gateway/Giftcard.php:33 -msgid "" -"If you disable this, a dropdown with various gift cards will not be shown in " -"the WooCommerce checkout, so users will select a gift card on the Mollie " -"payment page after checkout." -msgstr "" -"Se si disabilita questo, un menu a tendina con varie carte regalo non verrà " -"mostrato nel checkout di WooCommerce, così gli utenti selezioneranno una " -"carta regalo nella pagina di pagamento di Mollie dopo il checkout." - -#: build/src/Mollie/WC/Gateway/Giftcard.php:37 -#: build/src/Mollie/WC/Gateway/Ideal.php:39 -#: build/src/Mollie/WC/Gateway/Kbc.php:38 src/Mollie/WC/Gateway/Giftcard.php:37 -#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Kbc.php:38 -msgid "Issuers empty option" -msgstr "Opzione emittenti vuota" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSubscriptionGateway.php:199 +msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process." +msgstr "Aggiornamento dell'abbonamento da 'In attesa' to 'Attivo' fino a quando il pagamento non fallisce, perché un pagamento con addebito diretto SEPA richiede un certo tempo per essere elaborato." -#: build/src/Mollie/WC/Gateway/Giftcard.php:39 -#: src/Mollie/WC/Gateway/Giftcard.php:39 -msgid "" -"This text will be displayed as the first option in the gift card dropdown, " -"but only if the above 'Show gift cards dropdown' is enabled." -msgstr "" -"Questo testo verrà visualizzato come prima opzione nel menu a tendina delle " -"carte regalo, ma solo se è abilitato il menu a tendina \"Mostra carte regalo" -"\" di cui sopra." +#: ../src/Subscription/MollieSubscriptionGateway.php:299 +msgid "The customer (%s) could not be used or found. " +msgstr "Non è stato possibile trovare o utilizzare il cliente (%s). " -#: build/src/Mollie/WC/Gateway/Giftcard.php:58 -#: src/Mollie/WC/Gateway/Giftcard.php:58 -msgid "Gift cards" -msgstr "Carte regalo" +#: ../src/Subscription/MollieSubscriptionGateway.php:326 +msgid "The customer (%s) does not have a valid mandate." +msgstr "Il cliente (%s) non ha un mandato valido." -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Giftcard.php:74 -#: src/Mollie/WC/Gateway/Giftcard.php:74 -msgid "Select your gift card" -msgstr "Seleziona la tua carta regalo" +#. translators: Placeholder 1: Payment method title +#: ../src/Subscription/MollieSubscriptionGateway.php:366 +msgid "Could not create %s renewal payment." +msgstr "Non è stato possibile creare %s il pagamento del rinnovo." -#: build/src/Mollie/WC/Gateway/Giropay.php:29 -#: src/Mollie/WC/Gateway/Giropay.php:29 -msgid "Giropay" -msgstr "Giropay" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Subscription/SubscriptionModule.php:106 +msgid "%1$s payment failed (%2$s)." +msgstr "%1$s pagamento non riuscito (%2$s)." -#: build/src/Mollie/WC/Gateway/Ideal.php:33 src/Mollie/WC/Gateway/Ideal.php:33 -msgid "Show iDEAL banks dropdown" -msgstr "Mostra il menu a tendina delle banche iDEAL" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:42 +msgid "%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sServer non conforme ai requisiti Apple%2$s Controlla %3$sla pagina dei requisiti del server Apple%4$s per risolverlo e far funzionare il pulsante Apple Pay" -#: build/src/Mollie/WC/Gateway/Ideal.php:35 src/Mollie/WC/Gateway/Ideal.php:35 -msgid "" -"If you disable this, a dropdown with various iDEAL banks will not be shown " -"in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie " -"payment page after checkout." -msgstr "" -"Se si disabilita questo, un menu a tendina con varie banche iDEAL non verrà " -"mostrato nel checkout di WooCommerce, così gli utenti selezioneranno una " -"banca iDEAL nella pagina di pagamento di Mollie dopo il checkout." +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:58 +msgid "%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sErrore di convalida Apple Pay%2$s Controlla %3$sla pagina dei requisiti del server Apple%4$s per risolverlo e far funzionare il pulsante Apple Pay" -#: build/src/Mollie/WC/Gateway/Ideal.php:41 src/Mollie/WC/Gateway/Ideal.php:41 -msgid "" -"This text will be displayed as the first option in the iDEAL issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above 'Show iDEAL banks dropdown' is enabled." -msgstr "" -"Questo testo verrà visualizzato come prima opzione nel menu a tendina degli " -"emittenti iDEAL, se non viene inserito nulla, verrà mostrato \"Seleziona la " -"tua banca\". Solo se è abilitata l'opzione ''Mostra il menu a tendina delle " -"banche iDEAL'' di cui sopra." +#: ../src/Gateway/Voucher/VoucherModule.php:78, ../src/Settings/Page/MollieSettingsPage.php:49, ../src/Settings/Page/MollieSettingsPage.php:182 +msgid "Mollie Settings" +msgstr "Impostazioni Mollie" -#: build/src/Mollie/WC/Gateway/Ideal.php:60 src/Mollie/WC/Gateway/Ideal.php:60 -msgid "iDEAL" -msgstr "iDEAL" +#: ../src/Gateway/Voucher/VoucherModule.php:108, ../src/Gateway/Voucher/VoucherModule.php:143, ../src/Gateway/Voucher/VoucherModule.php:166 +msgid "Mollie Voucher Category" +msgstr "Categoria voucher Mollie" -#. translators: Default iDEAL description, displayed above issuer drop down -#. translators: Default KBC/CBC dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Ideal.php:76 -#: build/src/Mollie/WC/Gateway/Kbc.php:75 src/Mollie/WC/Gateway/Ideal.php:76 -#: src/Mollie/WC/Gateway/Kbc.php:75 -msgid "Select your bank" -msgstr "Seleziona la tua banca" +#: ../src/Gateway/Voucher/VoucherModule.php:111, ../src/Gateway/Voucher/VoucherModule.php:145, ../src/Gateway/Voucher/VoucherModule.php:170 +msgid "--Please choose an option--" +msgstr "--Scegli un’opzione--" -#: src/Mollie/WC/Gateway/In3:29 -msgid "in3" -msgstr "in3" +#: ../src/Gateway/Voucher/VoucherModule.php:112, ../src/Gateway/Voucher/VoucherModule.php:146, ../src/Gateway/Voucher/VoucherModule.php:175, ../src/Gateway/Voucher/VoucherModule.php:232, ../src/Gateway/Voucher/VoucherModule.php:292 +msgid "No Category" +msgstr "Nessuna categoria" -#: build/src/Mollie/WC/Gateway/Kbc.php:32 src/Mollie/WC/Gateway/Kbc.php:32 -msgid "Show KBC/CBC banks dropdown" -msgstr "Mostra il menu a tendina delle banche KBC/CBC" +#: ../src/Gateway/Voucher/VoucherModule.php:151, ../src/Gateway/Voucher/VoucherModule.php:188 +msgid "Select a voucher category to apply to all products with this category" +msgstr "Seleziona una categoria di voucher da applicare a tutti i prodotti con questa categoria" -#: build/src/Mollie/WC/Gateway/Kbc.php:34 src/Mollie/WC/Gateway/Kbc.php:34 -msgid "" -"If you disable this, a dropdown with various KBC/CBC banks will not be shown " -"in the WooCommerce checkout, so users will select a KBC/CBC bank on the " -"Mollie payment page after checkout." -msgstr "" -"Se si disabilita questo, un menu a tendina con varie banche KBC/CBC non " -"verrà mostrato nel checkout di WooCommerce, così gli utenti selezioneranno " -"una banca KBC/CBC nella pagina di pagamento di Mollie dopo il checkout." +#: ../src/Gateway/Voucher/VoucherModule.php:224 +msgid "Products voucher category" +msgstr "Categoria voucher prodotti" -#: build/src/Mollie/WC/Gateway/Kbc.php:40 src/Mollie/WC/Gateway/Kbc.php:40 -msgid "" -"This text will be displayed as the first option in the KBC/CBC issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above ''Show KBC/CBC banks dropdown' is enabled." -msgstr "" -"Questo testo verrà visualizzato come prima opzione nel menu a tendina degli " -"emittenti KBC/CBC, se non viene inserito nulla, verrà mostrato \"Seleziona " -"la tua banca\". Solo se è abilitata l'opzione ''Mostra il menu a tendina " -"delle banche KBC/CBC'' di cui sopra." +#: ../src/Gateway/Voucher/VoucherModule.php:231, ../src/Gateway/Voucher/VoucherModule.php:291 +msgid "Same as default category" +msgstr "Identica alla categoria predefinita" -#: build/src/Mollie/WC/Gateway/Kbc.php:59 src/Mollie/WC/Gateway/Kbc.php:59 -msgid "KBC/CBC Payment Button" -msgstr "Pulsante di pagamento KBC/CBC" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Gateway/Voucher/VoucherModule.php:241 +msgid "In order to process it, all products in the order must have a category. To disable the product from voucher selection select \"No category\" option." +msgstr "Per procedere all’elaborazione, tutti i prodotti nell’ordine devono avere una categoria. Per disabilitare il prodotto dalla selezione del buono selezionare l’opzione “Nessuna categoria”." -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -msgid "Klarna Pay later" -msgstr "Klarna Pay later" +#: ../src/Gateway/Voucher/VoucherModule.php:288 +msgid "Mollie Voucher category" +msgstr "Categoria voucher Mollie" -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -msgid "" -"To accept payments via Klarna, all default WooCommerce checkout fields " -"should be enabled and required." -msgstr "" -"Per accettare pagamenti tramite Klarna, tutti i campi del checkout " -"predefiniti WooCommerce dovrebbero essere abilitati e richiesti." +#: ../src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (Apple Pay transaction ID: %3$s)" +msgstr "Pagamento completato da %1$s - %2$s (ID transazione Apple Pay: %3$s)" -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -msgid "Klarna Pay now" -msgstr "Klarna Pay now" +#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:26, ../src/PaymentMethods/InstructionStrategies/DirectdebitInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/IdealInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/SofortInstructionStrategy.php:20 +msgid "Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" +msgstr "Pagamento completato da %1$s (IBAN (ultime 4 cifre): %2$s, BIC: %3$s)" -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -msgid "Klarna Slice it" -msgstr "Klarna Slice it" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:35 +msgid "Please complete your payment by transferring the total amount to the following bank account:" +msgstr "Si prega di completare il pagamento trasferendo l'importo totale sul seguente conto bancario:" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: build/src/Mollie/WC/Plugin.php:508 src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: src/Mollie/WC/Plugin.php:508 -msgid "Select the default products category" -msgstr "Seleziona la categoria predefinita dei prodotti" +#. translators: Placeholder 1: 'Stichting Mollie Payments' +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:39 +msgid "Beneficiary: %s" +msgstr "Beneficiario: %s" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:46 -#: src/Mollie/WC/Gateway/Mealvoucher.php:46 -msgid "" -"In order to process it, all products in the order must have a category. This " -"selector will assign the default category for the shop products" -msgstr "" -"Per procedere all’elaborazione, tutti i prodotti nell’ordine devono avere " -"una categoria. Il selezionatore assegnerà una categoria predefinita per i " -"prodotti del negozio" +#. translators: Placeholder 1: Payment details bank account +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:41 +msgid "IBAN: %s" +msgstr "IBAN: %s" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:66 -#: src/Mollie/WC/Gateway/Mealvoucher.php:66 -msgid "Voucher" -msgstr "Voucher" +#. translators: Placeholder 1: Payment details bic +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:43 +msgid "BIC: %s" +msgstr "BIC: %s" -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:82 -#: src/Mollie/WC/Gateway/Mealvoucher.php:82 -msgid "voucher" -msgstr "voucher" +#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:50 +msgid "Please provide the payment reference %s" +msgstr "Ti preghiamo di fornire il riferimento del pagamento %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:36 -#: src/Mollie/WC/Gateway/MyBank.php:36 -msgid "MyBank" -msgstr "MyBank" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:47 +msgid "Payment reference: %s" +msgstr "Riferimento del pagamento: %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:44 -#: src/Mollie/WC/Gateway/MyBank.php:44 -msgid "To accept payments via MyBank" -msgstr "Per accettare pagamenti tramite MyBank" +#. translators: Placeholder 1: Payment expiry date +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:66 +msgid "The payment will expire on %s. Please make sure you transfer the total amount before this date." +msgstr "Il pagamento scadrà il %s. Assicurati di effettuare il bonifico per l’importo totale prima di questa data." -#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer Account number -#: build/src/Mollie/WC/Gateway/MyBank.php:73 -#: src/Mollie/WC/Gateway/MyBank.php:73 -msgid "Payment completed by %1$s - %2$s" -msgstr "Pagamento completato da %1$s - %2$s" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:60 +msgid "The payment will expire on %s." +msgstr "Il pagamento scadrà il %s." -#: build/src/Mollie/WC/Gateway/PayPal.php:43 -#: src/Mollie/WC/Gateway/PayPal.php:43 -msgid "PayPal" -msgstr "PayPal" +#. translators: Placeholder 1: card holder +#: ../src/PaymentMethods/InstructionStrategies/CreditcardInstructionStrategy.php:20 +msgid "Payment completed by %s" +msgstr "Pagamento completato da %s" -#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID -#: build/src/Mollie/WC/Gateway/PayPal.php:74 -#: build/src/Mollie/WC/Payment/Object.php:695 -#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695 -msgid "" -"Payment completed by %s - %s (PayPal transaction ID: %s)" -msgstr "" -"Pagamento completato da %s - %s (ID transazione PayPal: %s)" +#. translators: Placeholder 1: payment method +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:34 +msgid "Payment completed with %s" +msgstr "Pagamento completato con %s" -#: build/src/Mollie/WC/Gateway/Paysafecard.php:20 -#: src/Mollie/WC/Gateway/Paysafecard.php:20 -msgid "paysafecard" -msgstr "paysafecard" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:26 +msgid "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant." +msgstr "Non abbiamo ricevuto uno stato del pagamento definito. Riceverai un'e-mail non appena riceveremo una conferma della banca/dell’operatore commerciale." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:33 -#: src/Mollie/WC/Gateway/Przelewy24.php:33 -msgid "Przelewy24" -msgstr "Przelewy24" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:20 +msgid "We have not received a definite payment status." +msgstr "Non abbiamo ricevuto uno stato del pagamento definito." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:40 -#: src/Mollie/WC/Gateway/Przelewy24.php:40 -msgid "" -"To accept payments via Przelewy24, a customer email is required for every " -"payment." -msgstr "" -"Per accettare pagamenti tramite Przelewy24, è richiesta un’email del cliente " -"per ciascun pagamento." +#: ../src/PaymentMethods/InstructionStrategies/MybankInstructionStrategy.php:19 +msgid "Payment completed by %1$s - %2$s" +msgstr "Pagamento completato da %1$s - %2$s" #. translators: Placeholder 1: customer billing email -#: build/src/Mollie/WC/Gateway/Przelewy24.php:64 -#: src/Mollie/WC/Gateway/Przelewy24.php:64 +#: ../src/PaymentMethods/InstructionStrategies/Przelewy24InstructionStrategy.php:20 msgid "Payment completed by %s." msgstr "Pagamento completato da %s." -#: build/src/Mollie/WC/Gateway/Sofort.php:33 -#: src/Mollie/WC/Gateway/Sofort.php:33 -msgid "SOFORT Banking" -msgstr "SOFORT Banking" - -#: build/src/Mollie/WC/Helper/Api.php:40 src/Mollie/WC/Helper/Api.php:40 -msgid "No API key provided. Please set your Mollie API keys below." -msgstr "" -"Nessuna chiave API fornita. Ti preghiamo di impostare le tue chiavi API " -"Mollie di seguito." - -#: build/src/Mollie/WC/Helper/Api.php:42 src/Mollie/WC/Helper/Api.php:42 -msgid "" -"Invalid API key(s). Get them on the %sDevelopers page in the Mollie dashboard" -"%s. The API key(s) must start with 'live_' or 'test_', be at least 30 " -"characters and must not contain any special characters." -msgstr "" -"Chiave/i API non valida/e. Acquisiscile sulla %spagina degli sviluppatori " -"nella dashboard Mollie%s. La chiave o le chiavi API devono iniziare con " -"'live_' o 'test_', essere di almeno 30 caratteri e non devono contenere " -"caratteri speciali." - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -msgid "" -"%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server " -"requirements page%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sServer non conforme ai requisiti Apple%2$s Controlla %3$sla pagina dei " -"requisiti del server Apple%4$s per risolverlo e far funzionare il pulsante " -"Apple Pay" - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -msgid "" -"%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page" -"%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sErrore di convalida Apple Pay%2$s Controlla %3$sla pagina dei requisiti " -"del server Apple%4$s per risolverlo e far funzionare il pulsante Apple Pay" +#. translators: Placeholder 1: Lock icon. Placeholder 2: Mollie logo. +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:25 +msgid "%1$s Secure payments provided by %2$s" +msgstr "%1$s Pagamenti sicuri messi a disposizione da %2$s" -#: build/src/Mollie/WC/Helper/OrderLines.php:499 -#: src/Mollie/WC/Helper/OrderLines.php:499 -msgid "Shipping" -msgstr "Spedizione" +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:41 +msgid "Secure payments provided by" +msgstr "Pagamenti sicuri messi a disposizione da" -#: build/src/Mollie/WC/Helper/Settings.php:61 -#: src/Mollie/WC/Helper/Settings.php:61 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:34 msgid "%s display settings" msgstr "%s dei paesi di vendita" -#: build/src/Mollie/WC/Helper/Settings.php:99 -#: src/Mollie/WC/Helper/Settings.php:99 +#: ../src/Settings/General/MollieGeneralSettings.php:71 msgid "Display logo on checkout page. Default enabled" -msgstr "" -"Mostra logo sulla pagina del checkout. Predefinito abilitato" +msgstr "Mostra logo sulla pagina del checkout. Predefinito abilitato" -#: build/src/Mollie/WC/Helper/Settings.php:107 -#: src/Mollie/WC/Helper/Settings.php:107 +#: ../src/Settings/General/MollieGeneralSettings.php:79 msgid "Sales countries" msgstr "Impostazioni di visualizzazione" -#: build/src/Mollie/WC/Helper/Settings.php:125 -#: src/Mollie/WC/Helper/Settings.php:125 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:99 msgid "%s custom logo" msgstr "%s logo personalizzato" -#: build/src/Mollie/WC/Helper/Settings.php:132 -#: src/Mollie/WC/Helper/Settings.php:132 +#: ../src/Settings/General/MollieGeneralSettings.php:103 msgid "Enable custom logo" msgstr "Abilita logo personalizzato" -#: build/src/Mollie/WC/Helper/Settings.php:137 -#: src/Mollie/WC/Helper/Settings.php:137 -msgid "" -"Enable the feature to add a custom logo for this gateway. This feature will " -"have precedence over other logo options." -msgstr "" -"Abilita questa caratteristica per aggiungere un logo personalizzato per " -"questo gateway. Questa caratteristica avrà precedenza rispetto alle altre " -"opzioni per il logo." +#: ../src/Settings/General/MollieGeneralSettings.php:109 +msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options." +msgstr "Abilita questa caratteristica per aggiungere un logo personalizzato per questo gateway. Questa caratteristica avrà precedenza rispetto alle altre opzioni per il logo." -#: build/src/Mollie/WC/Helper/Settings.php:143 -#: src/Mollie/WC/Helper/Settings.php:143 +#: ../src/Settings/General/MollieGeneralSettings.php:115 msgid "Upload custom logo" msgstr "Carica logo personalizzato" -#: build/src/Mollie/WC/Helper/Settings.php:150 -#: src/Mollie/WC/Helper/Settings.php:150 +#: ../src/Settings/General/MollieGeneralSettings.php:123 msgid "Upload a custom icon for this gateway. The feature must be enabled." -msgstr "" -"Carica un’icona personalizzata per questo gateway. Questa caratteristica " -"deve essere abilitata." +msgstr "Carica un’icona personalizzata per questo gateway. Questa caratteristica deve essere abilitata." -#: build/src/Mollie/WC/Helper/Settings.php:159 -#: src/Mollie/WC/Helper/Settings.php:159 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:134 msgid "%s surcharge" msgstr "%s supplemento" -#: build/src/Mollie/WC/Helper/Settings.php:166 -#: src/Mollie/WC/Helper/Settings.php:166 +#: ../src/Settings/General/MollieGeneralSettings.php:139 msgid "Payment Surcharge" msgstr "Supplemento per il pagamento" -#: build/src/Mollie/WC/Helper/Settings.php:172 -#: src/Mollie/WC/Helper/Settings.php:172 +#: ../src/Settings/General/MollieGeneralSettings.php:145 msgid "No fee" msgstr "Nessuna tariffa" -#: build/src/Mollie/WC/Helper/Settings.php:176 -#: src/Mollie/WC/Helper/Settings.php:176 +#: ../src/Settings/General/MollieGeneralSettings.php:149 msgid "Fixed fee" msgstr "Tariffa fissa" -#: build/src/Mollie/WC/Helper/Settings.php:180 -#: src/Mollie/WC/Helper/Settings.php:180 +#: ../src/Settings/General/MollieGeneralSettings.php:153 msgid "Percentage" msgstr "Percentuale" -#: build/src/Mollie/WC/Helper/Settings.php:184 -#: src/Mollie/WC/Helper/Settings.php:184 +#: ../src/Settings/General/MollieGeneralSettings.php:157 msgid "Fixed fee and percentage" msgstr "Tariffa e percentuale fissa" -#: build/src/Mollie/WC/Helper/Settings.php:190 -#: src/Mollie/WC/Helper/Settings.php:190 +#: ../src/Settings/General/MollieGeneralSettings.php:163 msgid "Choose a payment surcharge for this gateway" msgstr "Scegli un supplemento per il pagamento per questo gateway" -#: build/src/Mollie/WC/Helper/Settings.php:197 -#: src/Mollie/WC/Helper/Settings.php:197 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:172 msgid "Payment surcharge fixed amount in %s" msgstr "Importo fisso del supplemento per il pagamento in %s" -#: build/src/Mollie/WC/Helper/Settings.php:200 -#: src/Mollie/WC/Helper/Settings.php:200 +#: ../src/Settings/General/MollieGeneralSettings.php:176 msgid "Control the fee added on checkout. Default 0.00" msgstr "Controlla la tariffa aggiunta al checkout. Tariffa predefinita 0.00" -#: build/src/Mollie/WC/Helper/Settings.php:210 -#: src/Mollie/WC/Helper/Settings.php:210 +#: ../src/Settings/General/MollieGeneralSettings.php:186 msgid "Payment surcharge percentage amount %" msgstr "Importo percentuale del supplemento per il pagamento %" -#: build/src/Mollie/WC/Helper/Settings.php:213 -#: src/Mollie/WC/Helper/Settings.php:213 -msgid "Control the percentage fee added on checkout. Default 0.00" -msgstr "" -"Controlla la tariffa percentuale aggiunta al checkout. Tariffa predefinita " -"0.00" - -#: build/src/Mollie/WC/Helper/Settings.php:223 -#: src/Mollie/WC/Helper/Settings.php:223 -msgid "Payment surcharge limit in %s" -msgstr "Limite del supplemento per il pagamento in %s" - -#: build/src/Mollie/WC/Helper/Settings.php:226 -#: src/Mollie/WC/Helper/Settings.php:226 -msgid "Limit the maximum fee added on checkout. Default 0, means no limit" -msgstr "" -"Limita la tariffa massima aggiunta al checkout. Tariffa predefinita 0, " -"significa nessun limite" - -#: build/src/Mollie/WC/Helper/Settings.php:236 -#: src/Mollie/WC/Helper/Settings.php:236 -msgid "Surcharge only under this limit, in %s" -msgstr "Supplemento solo al di sotto di questo limite, in %s" - -#: build/src/Mollie/WC/Helper/Settings.php:239 -#: src/Mollie/WC/Helper/Settings.php:239 -msgid "" -"Maximum order amount to apply surcharge. If the order is above this number " -"the surcharge will not apply. Default 0, means no maximum" -msgstr "" -"Importo massimo dell’ordine per applicare il supplemento. Se l’ordine è " -"superiore a questo numero, il supplemento non si applica. Predefinito 0, " -"significa nessun importo massimo" - -#: build/src/Mollie/WC/Helper/Settings.php:250 -#: src/Mollie/WC/Helper/Settings.php:250 -msgid "%s advanced" -msgstr "%s avanzato" - -#: build/src/Mollie/WC/Helper/Settings.php:259 -#: src/Mollie/WC/Helper/Settings.php:259 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the order will expire." -msgstr "" -"Abilita questa opzione se vuoi impostare il numero di giorni dopo i quali " -"l’ordine scadrà." - -#: build/src/Mollie/WC/Helper/Settings.php:267 -#: src/Mollie/WC/Helper/Settings.php:267 -msgid "" -"Number of MINUTES after the order will expire and will be canceled at Mollie " -"and WooCommerce. A value of 0 means no expiry date will be considered." -msgstr "" -"Numero di MINUTI dopo i quali l’ordine scadrà e sarà annullato su Mollie e " -"WooCommerce. Un valore di 0 significa che nessuna data di scadenza verrà " -"considerata." - -#: build/src/Mollie/WC/Helper/Settings.php:280 -#: src/Mollie/WC/Helper/Settings.php:280 -msgid "Initial order status" -msgstr "Stato iniziale dell’ordine" +#: ../src/Settings/General/MollieGeneralSettings.php:189 +msgid "Control the percentage fee added on checkout. Default 0.00" +msgstr "Controlla la tariffa percentuale aggiunta al checkout. Tariffa predefinita 0.00" -#: build/src/Mollie/WC/Helper/Settings.php:299 -#: src/Mollie/WC/Helper/Settings.php:299 -msgid "" -"Some payment methods take longer than a few hours to complete. The initial " -"order state is then set to '%s'. This ensures the order is not cancelled " -"when the setting %s is used." -msgstr "" -"Alcune modalità di pagamento richiedono più di qualche ora per essere " -"completati. Lo stato iniziale dell’ordine è impostato su '%s'. Questo " -"assicura che l’ordine non venga annullato quando è utilizzata l’impostazione " -"%s." +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:200 +msgid "Payment surcharge limit in %s" +msgstr "Limite del supplemento per il pagamento in %s" -#: build/src/Mollie/WC/Helper/Settings.php:494 -#: src/Mollie/WC/Helper/Settings.php:494 -msgid "Error" -msgstr "Errore" +#: ../src/Settings/General/MollieGeneralSettings.php:203 +msgid "Limit the maximum fee added on checkout. Default 0, means no limit" +msgstr "Limita la tariffa massima aggiunta al checkout. Tariffa predefinita 0, significa nessun limite" -#: build/src/Mollie/WC/Helper/Settings.php:507 -#: src/Mollie/WC/Helper/Settings.php:507 -msgid "Mollie status:" -msgstr "Stato Mollie:" +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:214 +msgid "Surcharge only under this limit, in %s" +msgstr "Supplemento solo al di sotto di questo limite, in %s" -#: build/src/Mollie/WC/Helper/Settings.php:508 -#: src/Mollie/WC/Helper/Settings.php:508 -msgid "Connected" -msgstr "Collegato" +#: ../src/Settings/General/MollieGeneralSettings.php:217 +msgid "Maximum order amount to apply surcharge. If the order is above this number the surcharge will not apply. Default 0, means no maximum" +msgstr "Importo massimo dell’ordine per applicare il supplemento. Se l’ordine è superiore a questo numero, il supplemento non si applica. Predefinito 0, significa nessun importo massimo" -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: src/Mollie/WC/Helper/Settings.php:551 -msgid "Gateway enabled" -msgstr "Gateway abilitato" +#. translators: Placeholder 1: gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:230 +msgid "%s advanced" +msgstr "%s avanzato" -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Gateway disabled" -msgstr "Gateway disabilitato" +#: ../src/Settings/General/MollieGeneralSettings.php:237 +msgid "Enable this option if you want to be able to set the time after which the order will expire." +msgstr "Abilita questa opzione se desideri impostare l’ora dopo la quale l’ordine scadrà." -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Disabled" -msgstr "Disabilitato" +#: ../src/Settings/General/MollieGeneralSettings.php:245 +msgid "Number of MINUTES after the order will expire and will be canceled at Mollie and WooCommerce. A value of 0 means no expiry time will be considered." +msgstr "Numero di MINUTI dopo i quali l’ordine scadrà e sarà annullato su Mollie e WooCommerce. Un valore di 0 significa che nessuna ora di scadenza verrà considerata." -#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:563 -#: src/Mollie/WC/Helper/Settings.php:563 -msgid "The following payment methods are activated in your %sMollie profile%s:" -msgstr "" -"Le seguenti modalità di pagamento sono attivate nel tuo %sprofilo Mollie%s:" +#: ../src/Settings/General/MollieGeneralSettings.php:258 +msgid "Initial order status" +msgstr "Stato iniziale dell’ordine" -#: build/src/Mollie/WC/Helper/Settings.php:572 -#: src/Mollie/WC/Helper/Settings.php:572 -msgid "Refresh" -msgstr "Aggiorna" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Settings/General/MollieGeneralSettings.php:277 +msgid "Some payment methods take longer than a few hours to complete. The initial order state is then set to '%1$s'. This ensures the order is not cancelled when the setting %2$s is used." +msgstr "Alcune modalità di pagamento richiedono più di qualche ora per essere completati. Lo stato iniziale dell’ordine è impostato su '%1$s'. Questo assicura che l’ordine non venga annullato quando è utilizzata l’impostazione %2$s." -#: build/src/Mollie/WC/Helper/Settings.php:591 -#: src/Mollie/WC/Helper/Settings.php:591 -msgid "Edit" -msgstr "Modifica" +#: ../src/Settings/General/MollieGeneralSettings.php:286 +msgid "Hold Stock (minutes)" +msgstr "Mantieni la giacenza (minuti)" -#: build/src/Mollie/WC/Helper/Settings.php:624 -#: src/Mollie/WC/Helper/Settings.php:624 -msgid "" -"Quickly integrate all major payment methods in WooCommerce, wherever you " -"need them." -msgstr "" -"Integra velocemente tutti i pagamenti principali in WooCommerce, ovunque ne " -"hai bisogno." +#: ../src/Settings/Page/MollieSettingsPage.php:111 +msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them." +msgstr "Integra velocemente tutti i pagamenti principali in WooCommerce, ovunque ne hai bisogno." -#: build/src/Mollie/WC/Helper/Settings.php:625 -#: src/Mollie/WC/Helper/Settings.php:625 -msgid "" -" Simply drop them ready-made into your WooCommerce webshop with this " -"powerful plugin by Mollie." -msgstr "" -" Semplicemente inseriscili già pronti nel tuo webshop WooCommerce con questo " -"potente plugin sviluppato da Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:115 +msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie." +msgstr " Semplicemente inseriscili già pronti nel tuo webshop WooCommerce con questo potente plugin sviluppato da Mollie." -#: build/src/Mollie/WC/Helper/Settings.php:626 -#: src/Mollie/WC/Helper/Settings.php:626 +#: ../src/Settings/Page/MollieSettingsPage.php:119 msgid " Mollie is dedicated to making payments better for WooCommerce. " msgstr " Mollie è destinata a migliorare i pagamenti per WooCommerce. " -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:123 msgid "Please go to" msgstr "Vai alla" -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:126 msgid " the signup page" msgstr " pagina di registrazione" -#: build/src/Mollie/WC/Helper/Settings.php:628 -#: src/Mollie/WC/Helper/Settings.php:628 -msgid "" -" to create a new Mollie account and start receiving payments in a couple of " -"minutes. " -msgstr "" -" per creare un nuovo account Mollie e iniziare a ricevere i pagamenti tra " -"qualche minuto. " +#: ../src/Settings/Page/MollieSettingsPage.php:130 +msgid " to create a new Mollie account and start receiving payments in a couple of minutes. " +msgstr " per creare un nuovo account Mollie e iniziare a ricevere i pagamenti tra qualche minuto. " -#: build/src/Mollie/WC/Helper/Settings.php:629 -#: src/Mollie/WC/Helper/Settings.php:629 +#: ../src/Settings/Page/MollieSettingsPage.php:134 msgid "Contact " msgstr "Contattaci " -#: build/src/Mollie/WC/Helper/Settings.php:630 -#: src/Mollie/WC/Helper/Settings.php:630 +#: ../src/Settings/Page/MollieSettingsPage.php:138 msgid " if you have any questions or comments about this plugin." msgstr " se hai domande o commenti su questo plugin." -#: build/src/Mollie/WC/Helper/Settings.php:631 -#: src/Mollie/WC/Helper/Settings.php:631 -msgid "" -"Our pricing is always per transaction. No startup fees, no monthly fees, and " -"no gateway fees. No hidden fees, period." -msgstr "" -"I nostri prezzi sono sempre per transazione. Non applichiamo tariffe di " -"avvio, mensili e per gateway. Nessuna tariffa o nessun periodo nascosti." +#: ../src/Settings/Page/MollieSettingsPage.php:142 +msgid "Our pricing is always per transaction. No startup fees, no monthly fees, and no gateway fees. No hidden fees, period." +msgstr "I nostri prezzi sono sempre per transazione. Non applichiamo tariffe di avvio, mensili e per gateway. Nessuna tariffa o nessun periodo nascosti." -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:148 msgid "Plugin Documentation" msgstr "Documentazione plugin" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:151 msgid "Contact Support" msgstr "Contatta l’assistenza" -#: build/src/Mollie/WC/Helper/Settings.php:644 -#: src/Mollie/WC/Helper/Settings.php:644 +#: ../src/Settings/Page/MollieSettingsPage.php:163 msgid "Log plugin events." msgstr "Eventi plugin di log." -#: build/src/Mollie/WC/Helper/Settings.php:650 -#: src/Mollie/WC/Helper/Settings.php:650 +#. translators: Placeholder 1: Location of the log files +#: ../src/Settings/Page/MollieSettingsPage.php:170 msgid "Log files are saved to %s" msgstr "I file di log sono archiviati in %s" -#: build/src/Mollie/WC/Helper/Settings.php:663 -#: build/src/Mollie/WC/Plugin.php:379 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:11 -#: src/Mollie/WC/Helper/Settings.php:663 src/Mollie/WC/Plugin.php:379 -#: src/Mollie/WC/Settings/Page/Mollie.php:11 -msgid "Mollie Settings" -msgstr "Impostazioni Mollie" - -#: build/src/Mollie/WC/Helper/Settings.php:670 -#: src/Mollie/WC/Helper/Settings.php:670 +#: ../src/Settings/Page/MollieSettingsPage.php:192 msgid "Live API key" msgstr "Chiave API live" #. translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:675 -#: build/src/Mollie/WC/Helper/Settings.php:697 -#: src/Mollie/WC/Helper/Settings.php:675 src/Mollie/WC/Helper/Settings.php:697 -msgid "" -"The API key is used to connect to Mollie. You can find your %s API key in your %sMollie profile%s" -msgstr "" -"La chiave API viene utilizzata per il collegamento a Mollie. Puoi trovare la " -"tua %s chiave API nel tuo %sprofilo Mollie%s" +#: ../src/Settings/Page/MollieSettingsPage.php:197, ../src/Settings/Page/MollieSettingsPage.php:230 +msgid "The API key is used to connect to Mollie. You can find your %1$s API key in your %2$sMollie account%3$s" +msgstr "La chiave API viene utilizzata per il collegamento a Mollie. Puoi trovare la tua %1$s chiave API nel tuo %2$saccount Mollie%3$s" -#: build/src/Mollie/WC/Helper/Settings.php:681 -#: src/Mollie/WC/Helper/Settings.php:681 +#: ../src/Settings/Page/MollieSettingsPage.php:208 msgid "Live API key should start with live_" msgstr "La chiave API live dovrebbe iniziare con live_" -#: build/src/Mollie/WC/Helper/Settings.php:685 -#: src/Mollie/WC/Helper/Settings.php:685 +#: ../src/Settings/Page/MollieSettingsPage.php:215 msgid "Enable test mode" msgstr "Abilita modalità di prova" -#: build/src/Mollie/WC/Helper/Settings.php:688 -#: src/Mollie/WC/Helper/Settings.php:688 -msgid "" -"Enable test mode if you want to test the plugin without using real payments." -msgstr "" -"Abilita la modalità di prova se desideri testare il plugin senza utilizzare " -"pagamenti reali." +#: ../src/Settings/Page/MollieSettingsPage.php:218 +msgid "Enable test mode if you want to test the plugin without using real payments." +msgstr "Abilita la modalità di prova se desideri testare il plugin senza utilizzare pagamenti reali." -#: build/src/Mollie/WC/Helper/Settings.php:692 -#: src/Mollie/WC/Helper/Settings.php:692 +#: ../src/Settings/Page/MollieSettingsPage.php:225 msgid "Test API key" msgstr "Chiave API di prova" -#: build/src/Mollie/WC/Helper/Settings.php:703 -#: src/Mollie/WC/Helper/Settings.php:703 +#: ../src/Settings/Page/MollieSettingsPage.php:241 msgid "Test API key should start with test_" msgstr "La chiave API di prova dovrebbe iniziare con test_" -#: build/src/Mollie/WC/Helper/Settings.php:707 -#: src/Mollie/WC/Helper/Settings.php:707 +#: ../src/Settings/Page/MollieSettingsPage.php:248 msgid "Debug Log" msgstr "Log di debug" -#: build/src/Mollie/WC/Helper/Settings.php:810 -#: src/Mollie/WC/Helper/Settings.php:810 -msgid "" -"You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. " -"Enable SEPA Direct Debit if you want to allow customers to pay subscriptions " -"with iDEAL and/or other \"first\" payment methods." -msgstr "" -"Hai abbonamenti WooCommerce attivati, ma non un addebito diretto SEPA. " -"Autorizza l’addebito diretto SEPA se vuoi permettere ai clienti di pagare " -"gli abbonamenti con iDEAL e/o altri metodi di pagamento “primari”." - -#: build/src/Mollie/WC/Helper/Settings.php:834 -#: src/Mollie/WC/Helper/Settings.php:834 -msgid "" -"You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway " -"enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via " -"Mollie and disabling the default WooCommerce BACS payment gateway to prevent " -"possible conflicts." -msgstr "" -"In WooCommerce è abilitato il gateway di pagamento WooCommerce per i " -"bonifici bancari diretti (BACS). Mollie consiglia vivamente di utilizzare " -"solo il bonifico bancario tramite Mollie e di disabilitare il gateway di " -"pagamento predefinito BACS di WooCommerce per prevenire possibili conflitti." - -#: build/src/Mollie/WC/Helper/Settings.php:855 -#: src/Mollie/WC/Helper/Settings.php:855 -msgid "" -"You have activated Klarna. To accept payments, please make sure all default " -"WooCommerce checkout fields are enabled and required. For more information, " -"go to %1sKlarna Pay Later documentation%2s or %3sKlarna Slice it " -"documentation%4s" -msgstr "" -"Hai attivato Klarna. Per accettare i pagamenti, assicurati di aver abilitato " -"e richiesto tutti i campi predefiniti di WooCommerce. Per maggiori " -"informazioni, consulta la documentazione %1sKlarna Pay Later%2s o %3sKlarna " -"Slice it%4s" - -#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce version, placeholder 3: used WooCommerce version -#: build/src/Mollie/WC/Helper/Status.php:67 src/Mollie/WC/Helper/Status.php:67 -msgid "" -"The %s plugin requires at least WooCommerce version %s, you are using " -"version %s. Please update your WooCommerce plugin." -msgstr "" -"Il %s plugin richiede almeno la versione WooCommerce %s, stai utilizzando la " -"versione %s. Ti preghiamo di aggiornare il tuo plugin WooCommerce." - -#: build/src/Mollie/WC/Helper/Status.php:80 src/Mollie/WC/Helper/Status.php:80 -msgid "" -"Mollie API client not installed. Please make sure the plugin is installed " -"correctly." -msgstr "" -"Client dell’API Mollie non installato. Assicurati che il plugin sia " -"installato correttamente." - -#: build/src/Mollie/WC/Helper/Status.php:89 src/Mollie/WC/Helper/Status.php:89 -msgid "" -"Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable " -"it in your server or ask your webhoster to enable it for you." -msgstr "" -"Mollie Payments per WooCommerce richiede l’estensione JSON per PHP. " -"Abilitala nel tuo server o chiedi al tuo webhoster di abilitarla per te." - -#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP version -#: build/src/Mollie/WC/Helper/Status.php:104 -#: src/Mollie/WC/Helper/Status.php:104 -msgid "" -"Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. " -"Please upgrade and view %sthis FAQ%s" -msgstr "" -"Mollie Payments per WooCommerce richiede PHP %s o superiore, tu hai PHP %s. " -"Effettua l’aggiornamento e visualizza %squeste FAQ%s" - -#: build/src/Mollie/WC/Helper/Status.php:116 -#: src/Mollie/WC/Helper/Status.php:116 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension JSON to be " -"enabled. Please enable the 'json' extension in your PHP configuration." -msgstr "" -"Mollie Payments per WooCommerce richiede l’abilitazione dell’estensione PHP " -"per JSON. Abilita l’estensione 'json' nella tua configurazione PHP." - -#: build/src/Mollie/WC/Helper/Status.php:123 -#: src/Mollie/WC/Helper/Status.php:123 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension cURL to be " -"enabled. Please enable the 'curl' extension in your PHP configuration." -msgstr "" -"Mollie Payments per WooCommerce richiede l’estensione PHP per cURL. Abilita " -"l’estensione 'curl' nella tua configurazione PHP." - -#: build/src/Mollie/WC/Helper/Status.php:131 -#: src/Mollie/WC/Helper/Status.php:131 -msgid "" -"Mollie Payments for WooCommerce require PHP cURL functions to be available. " -"Please make sure all of these functions are available." -msgstr "" -"Mollie Payments per WooCommerce richiede che le funzioni PHP cURL siano " -"disponibili. Assicurati che queste funzioni siano disponibili." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:603 -#: src/Mollie/WC/Payment/Object.php:603 -msgid "" -"%s renewal payment failed via Mollie (%s). You will need to manually review " -"the payment and adjust product stocks if you use them." -msgstr "" -"%s pagamento del rinnovo non riuscito tramite Mollie (%s). Dovrai rivedere " -"manualmente il pagamento e adattare gli stock di prodotti se li usi." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:637 -#: src/Mollie/WC/Payment/Object.php:637 -msgid "%s payment failed via Mollie (%s)." -msgstr "%s pagamento non riuscito tramite Mollie (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:677 -#: src/Mollie/WC/Payment/Object.php:677 -msgid "" -"Mollie webhook called, but payment also started via %s, so the order status " -"is not updated." -msgstr "" -"Il webhook Mollie ha chiamato, ma il pagamento è stato avviato anche tramite " -"%s, quindi lo stato dell’ordine non è aggiornato." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:262 -#: build/src/Mollie/WC/Payment/Payment.php:247 -#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:247 -msgid "Order completed using %s payment (%s)." -msgstr "Ordine completato utilizzando il %s pagamento (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:314 -#: src/Mollie/WC/Payment/Order.php:314 -msgid "" -"Order authorized using %s payment (%s). Set order to completed in " -"WooCommerce when you have shipped the products, to capture the payment. Do " -"this within 28 days, or the order will expire. To handle individual order " -"lines, process the order via the Mollie Dashboard." -msgstr "" -"Ordine autorizzato utilizzando il %s pagamento (%s). Imposta l’ordine su " -"completato in WooCommerce quando hai spedito i prodotti per acquisire il " -"pagamento. Effettua questa impostazione entro 28 giorni, altrimenti l’ordine " -"scadrà. Per gestire singole righe d’ordine, elabora l’ordine attraverso la " -"dashboard di Mollie." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:361 -#: src/Mollie/WC/Payment/Order.php:361 -msgid "" -"Order completed at Mollie for %s order (%s). At least one order line " -"completed. Remember: Completed status for an order at Mollie is not the same " -"as Completed status in WooCommerce!" -msgstr "" -"Ordine completato su Mollie per %s ordine (%s). Almeno una riga d’ordine " -"completata. Ricorda: Lo stato completato per un ordine su Mollie non " -"equivale allo stato Completato su WooCommerce!" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:444 -#: src/Mollie/WC/Payment/Order.php:444 -msgid "%s order (%s) cancelled ." -msgstr "%s ordine (%s) annullato." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:509 -#: src/Mollie/WC/Payment/Order.php:509 -msgid "" -"%s order expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s ordine scaduto (%s) ma ordine non annullato perché c’è un altro pagamento " -"in sospeso (%s)." - -#. translators: Order note error -#: src/Mollie/WC/Payment/Order.php:619 -msgid "" -"The sum of refunds for all order lines is not identical to the refund " -"amount, so this refund will be processed as a payment amount refund, not an " -"order line refund." -msgstr "" -"La somma dei rimborsi per tutte le righe dell’ordine non è identica " -"all’importo del rimborso, quindi questo rimborso verrà elaborato come " -"rimborso dell’importo di pagamento, non come rimborso della riga dell’ordine." - -#. translators: Placeholder 1: payment status. -#: src/Mollie/WC/Payment/Order.php:619 -msgid "Can not refund order amount that has status %1$s at Mollie." -msgstr "" -"Non è possibile rimborsa un importo dell’ordine che ha lo stato %1$s su " -"Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:742 -#: src/Mollie/WC/Payment/Order.php:742 -msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie." -msgstr "%sx %s annullato per %s%s in WooCommerce e su Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:758 -#: src/Mollie/WC/Payment/Order.php:758 -msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"%sx %s rimborsato per %s%s in WooCommerce e su Mollie.%s ID rimborso: %s." - -#: build/src/Mollie/WC/Payment/Order.php:836 -#: src/Mollie/WC/Payment/Order.php:836 -msgid "" -"Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"Rimborso dell’importo di %s%s effettuato in WooCommerce e su Mollie.%s ID " -"rimborso: %s." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:931 -#: src/Mollie/WC/Payment/Order.php:931 -msgid "%s order (%s) expired ." -msgstr "%s ordine (%s) scaduto." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -msgid "" -"One of the WooCommerce order items does not have the refund item ID meta " -"value associated to Mollie Order item." -msgstr "" -"Una delle voci dell’ordine WooCommerce non ha il meta valore della voce di " -"rimborso associato alla voce dell’ordine Mollie." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -msgid "" -"Impossible to retrieve the order item ID related to the remote item: %1$s. " -"Try to do a refund by amount." -msgstr "" -"Impossibile recuperare l’ID voce dell’ordine relativo alla voce remota: " -"%1$s. Tentativo di rimborso in base all’importo." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -msgid "Empty WooCommerce order items or mollie order lines." -msgstr "Voci dell’ordine WooCommerce o righe dell’ordine mollie vuote." - -#. translators: Placeholder 1: order number -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: build/src/Mollie/WC/Payment/Payment.php:132 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: src/Mollie/WC/Payment/Payment.php:132 -msgctxt "Payment description for {orderNumber}" -msgid "Order {orderNumber}" -msgstr "Ordine {orderNumber}" - -#. translators: Placeholder 1: store name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: build/src/Mollie/WC/Payment/Payment.php:143 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: src/Mollie/WC/Payment/Payment.php:143 -msgctxt "Payment description for {storeName}" -msgid "StoreName {storeName}" -msgstr "NomeNegozio {storeName}" - -#. translators: Placeholder 1: customer first name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: build/src/Mollie/WC/Payment/Payment.php:154 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: src/Mollie/WC/Payment/Payment.php:154 -msgctxt "Payment description for {customer.firstname}" -msgid "Customer Firstname {customer.firstname}" -msgstr "Nome cliente {customer.firstname}" - -#. translators: Placeholder 1: customer last name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: build/src/Mollie/WC/Payment/Payment.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: src/Mollie/WC/Payment/Payment.php:165 -msgctxt "Payment description for {customer.lastname}" -msgid "Customer Lastname {customer.lastname}" -msgstr "Cognome cliente {customer.firstname}" - -#. translators: Placeholder 1: customer company name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: build/src/Mollie/WC/Payment/Payment.php:176 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: src/Mollie/WC/Payment/Payment.php:176 -msgctxt "Payment description for {customer.company}" -msgid "Customer Company {customer.company}" -msgstr "Azienda cliente {customer.firstname}" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:334 -#: src/Mollie/WC/Payment/Payment.php:334 -msgid "%s payment (%s) cancelled ." -msgstr "%s pagamento (%s) annullato." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:328 -msgid "Processing a payment, no capture needed" -msgstr "Elaborazione del pagamento in corso, non è necessaria l’acquisizione" - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:342 -msgid "Order already canceled at Mollie, can not be shipped/captured." -msgstr "Ordine già annullato su Mollie, non può essere spedito, acquisito." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:350 -msgid "Order already completed at Mollie, can not be shipped/captured." -msgstr "Ordine già completato su Mollie, non può essere spedito, acquisito." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:359 -msgid "" -"Order successfully updated to shipped at Mollie, capture of funds underway." -msgstr "" -"Ordine già aggiornato in spedito su Mollie, acquisizione fondi in corso." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:365 -msgid "Order not paid or authorized at Mollie yet, can not be shipped." -msgstr "" -"Ordine non ancora pagato o autorizzato su Mollie, non può essere spedito." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:399 -msgid "" -"Order contains Mollie payment method, but not a valid Mollie Order ID. " -"Canceling order failed." -msgstr "" -"L’ordine contiene una modalità di pagamento Mollie, ma non un ID ordine " -"Mollie. Annullamento dell’ordine non riuscito." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:420 -msgid "Order already canceled at Mollie, can not be canceled again." -msgstr "Ordine già annullato su Mollie, non può essere annullato di nuovo." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:430 -msgid "Order also cancelled at Mollie." -msgstr "L’ordine quindi è stato annullato su Mollie." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:436 -msgid "Order could not be canceled at Mollie, because order status is " -msgstr "Non è stato possibile annullare l’ordine su Mollie, perché lo stato è " - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:404 -#: src/Mollie/WC/Payment/Payment.php:404 -msgid "" -"%s payment expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s pagamento scaduto (%s) ma ordine non annullato perché c’è un altro " -"pagamento in sospeso (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:427 -#: src/Mollie/WC/Payment/Payment.php:427 -msgid "%s payment expired (%s)." -msgstr "%s pagamento scaduto (%s)." - -#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID -#: build/src/Mollie/WC/Payment/Payment.php:509 -#: src/Mollie/WC/Payment/Payment.php:509 -msgid "Refunded %s%s%s - Payment: %s, Refund: %s" -msgstr "Rimborsato %s%s%s - Pagamento: %s, rimborso: %s" - -#: build/src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -msgid "" -"Mollie doesn't allow a partial refund of the full amount or quantity of at " -"least one order line. Trying to process this as an amount refund instead." -msgstr "" -"Mollie non consente il rimborso parziale dell'intero importo o della " -"quantità di almeno una riga d'ordine. Tentativo di elaborazione dello stesso " -"come rimborso dell’importo." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Plugin.php:128 src/Mollie/WC/Plugin.php:128 -msgid "%s payment failed (%s)." -msgstr "%s pagamento non riuscito (%s)." - -#: build/src/Mollie/WC/Plugin.php:303 src/Mollie/WC/Plugin.php:303 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s " -"disable it%4$s before deploying into production." -msgstr "" -"%1$sMollie Payments per WooCommerce%2$s La modalità di prova è attiva, %3$s " -"disabilitala%4$s prima di implementarla nella produzione." - -#: build/src/Mollie/WC/Plugin.php:411 build/src/Mollie/WC/Plugin.php:444 -#: build/src/Mollie/WC/Plugin.php:466 src/Mollie/WC/Plugin.php:411 -#: src/Mollie/WC/Plugin.php:444 src/Mollie/WC/Plugin.php:466 -msgid "Mollie Voucher Category" -msgstr "Categoria voucher Mollie" - -#: build/src/Mollie/WC/Plugin.php:414 build/src/Mollie/WC/Plugin.php:446 -#: build/src/Mollie/WC/Plugin.php:469 src/Mollie/WC/Plugin.php:414 -#: src/Mollie/WC/Plugin.php:446 src/Mollie/WC/Plugin.php:469 -msgid "--Please choose an option--" -msgstr "--Scegli un’opzione--" - -#: build/src/Mollie/WC/Plugin.php:415 build/src/Mollie/WC/Plugin.php:447 -#: build/src/Mollie/WC/Plugin.php:470 build/src/Mollie/WC/Plugin.php:583 -#: src/Mollie/WC/Plugin.php:415 src/Mollie/WC/Plugin.php:447 -#: src/Mollie/WC/Plugin.php:470 src/Mollie/WC/Plugin.php:583 -msgid "No Category" -msgstr "Nessuna categoria" - -#: build/src/Mollie/WC/Plugin.php:416 build/src/Mollie/WC/Plugin.php:448 -#: build/src/Mollie/WC/Plugin.php:471 build/src/Mollie/WC/Plugin.php:584 -#: src/Mollie/WC/Plugin.php:416 src/Mollie/WC/Plugin.php:448 -#: src/Mollie/WC/Plugin.php:471 src/Mollie/WC/Plugin.php:584 -msgid "Meal" -msgstr "Pasto" - -#: build/src/Mollie/WC/Plugin.php:417 build/src/Mollie/WC/Plugin.php:449 -#: build/src/Mollie/WC/Plugin.php:472 build/src/Mollie/WC/Plugin.php:585 -#: src/Mollie/WC/Plugin.php:417 src/Mollie/WC/Plugin.php:449 -#: src/Mollie/WC/Plugin.php:472 src/Mollie/WC/Plugin.php:585 -msgid "Eco" -msgstr "Eco" - -#: build/src/Mollie/WC/Plugin.php:418 build/src/Mollie/WC/Plugin.php:450 -#: build/src/Mollie/WC/Plugin.php:473 build/src/Mollie/WC/Plugin.php:586 -#: src/Mollie/WC/Plugin.php:418 src/Mollie/WC/Plugin.php:450 -#: src/Mollie/WC/Plugin.php:473 src/Mollie/WC/Plugin.php:586 -msgid "Gift" -msgstr "Regalo" - -#: build/src/Mollie/WC/Plugin.php:452 build/src/Mollie/WC/Plugin.php:475 -#: src/Mollie/WC/Plugin.php:452 src/Mollie/WC/Plugin.php:475 -msgid "Select a voucher category to apply to all products with this category" -msgstr "" -"Seleziona una categoria di voucher da applicare a tutti i prodotti con " -"questa categoria" - -#: build/src/Mollie/WC/Plugin.php:512 src/Mollie/WC/Plugin.php:512 -msgid "Products voucher category" -msgstr "Categoria voucher prodotti" - -#: build/src/Mollie/WC/Plugin.php:519 build/src/Mollie/WC/Plugin.php:582 -#: src/Mollie/WC/Plugin.php:519 src/Mollie/WC/Plugin.php:582 -msgid "Same as default category" -msgstr "Identica alla categoria predefinita" +#: ../src/Settings/Page/MollieSettingsPage.php:300 +msgid "Gateway enabled" +msgstr "Gateway abilitato" -#: build/src/Mollie/WC/Plugin.php:529 src/Mollie/WC/Plugin.php:529 -msgid "" -"In order to process it, all products in the order must have a category. To " -"disable the product from voucher selection select \"No category\" option." -msgstr "" -"Per procedere all’elaborazione, tutti i prodotti nell’ordine devono avere " -"una categoria. Per disabilitare il prodotto dalla selezione del buono " -"selezionare l’opzione “Nessuna categoria”." +#: ../src/Settings/Page/MollieSettingsPage.php:304 +msgid "Gateway disabled" +msgstr "Gateway disabilitato" -#: build/src/Mollie/WC/Plugin.php:579 src/Mollie/WC/Plugin.php:579 -msgid "Mollie Voucher category" -msgstr "Categoria voucher Mollie" +#: ../src/Settings/Page/MollieSettingsPage.php:307 +msgid "Disabled" +msgstr "Disabilitato" -#: build/src/Mollie/WC/Plugin.php:727 src/Mollie/WC/Plugin.php:727 -msgid "%1$s items refunded in WooCommerce and at Mollie." -msgstr "%1$s voci rimborsate in WooCommerce e su Mollie." +#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Settings/Page/MollieSettingsPage.php:318 +msgid "The following payment methods are activated in your %1$sMollie profile%2$s:" +msgstr "Le seguenti modalità di pagamento sono attivate nel tuo %1$sprofilo Mollie%2$s:" -#: build/src/Mollie/WC/Plugin.php:745 src/Mollie/WC/Plugin.php:745 -msgid "%1$s items cancelled in WooCommerce and at Mollie." -msgstr "%1$s voci cancellate in WooCommerce e su Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:333 +msgid "Refresh" +msgstr "Aggiorna" -#: build/src/Mollie/WC/Plugin.php:919 src/Mollie/WC/Plugin.php:919 -msgid "Name on card" -msgstr "Nome sulla carta" +#: ../src/Settings/Page/MollieSettingsPage.php:342 +msgid "No payment methods available" +msgstr "Nessuna modalità di pagamento disponibile" -#: build/src/Mollie/WC/Plugin.php:923 src/Mollie/WC/Plugin.php:923 -msgid "Card number" -msgstr "Numero carta" +#: ../src/Settings/Page/MollieSettingsPage.php:357 +msgid "Edit" +msgstr "Modifica" -#: build/src/Mollie/WC/Plugin.php:931 src/Mollie/WC/Plugin.php:931 -msgid "CVC/CVV" -msgstr "CVC/CVV" +#: ../src/Settings/Page/MollieSettingsPage.php:365 +msgid "Activate" +msgstr "Attiva" -#: build/src/Mollie/WC/Plugin.php:938 src/Mollie/WC/Plugin.php:938 -msgid "An unknown error occurred, please check the card fields." -msgstr "" -"Si è verificato un errore sconosciuto, controllare i campi carta di credito." +#: ../src/Settings/Page/MollieSettingsPage.php:411 +msgid "You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. Enable SEPA Direct Debit if you want to allow customers to pay subscriptions with iDEAL and/or other \"first\" payment methods." +msgstr "Hai abbonamenti WooCommerce attivati, ma non un addebito diretto SEPA. Autorizza l’addebito diretto SEPA se vuoi permettere ai clienti di pagare gli abbonamenti con iDEAL e/o altri metodi di pagamento “primari”." -#: build/src/Mollie/WC/Plugin.php:1295 src/Mollie/WC/Plugin.php:1295 -msgid "Mollie settings" -msgstr "Impostazioni Mollie" +#: ../src/Settings/Page/MollieSettingsPage.php:437 +msgid "You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via Mollie and disabling the default WooCommerce BACS payment gateway to prevent possible conflicts." +msgstr "In WooCommerce è abilitato il gateway di pagamento WooCommerce per i bonifici bancari diretti (BACS). Mollie consiglia vivamente di utilizzare solo il bonifico bancario tramite Mollie e di disabilitare il gateway di pagamento predefinito BACS di WooCommerce per prevenire possibili conflitti." -#: build/src/Mollie/WC/Plugin.php:1301 src/Mollie/WC/Plugin.php:1301 -msgid "Logs" -msgstr "Log" +#. translators: Placeholder 1: Opening link tag. Placeholder 2: Closing link tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/Page/MollieSettingsPage.php:461 +msgid "You have activated Klarna. To accept payments, please make sure all default WooCommerce checkout fields are enabled and required. For more information, go to %1$sKlarna Pay Later documentation%2$s or %3$sKlarna Slice it documentation%4$s" +msgstr "Hai attivato Klarna. Per accettare i pagamenti, assicurati di aver abilitato e richiesto tutti i campi predefiniti di WooCommerce. Per maggiori informazioni, consulta la documentazione %1$sKlarna Pay Later%2$s o %3$sKlarna Slice it%4$s" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:138 -#: src/Mollie/WC/Settings/Page/Mollie.php:138 +#: ../src/Settings/Page/MollieSettingsPage.php:702 msgid "General" msgstr "Generale" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:143 -#: src/Mollie/WC/Settings/Page/Mollie.php:143 -msgid "Apple Pay Button" -msgstr "Pulsante Apple Pay" - -#: build/src/Mollie/WC/Settings/Page/Mollie.php:147 -#: src/Mollie/WC/Settings/Page/Mollie.php:147 +#: ../src/Settings/Page/MollieSettingsPage.php:707 msgid "Advanced" msgstr "Avanzato" -#: src/Mollie/WC/Gateway/Abstract.php:1987 -msgid "%1$s Secure payments provided by %2$s" -msgstr "%1$s Pagamenti sicuri messi a disposizione da %2$s" +#: ../src/Settings/Page/MollieSettingsPage.php:710 +msgid "Apple Pay Button" +msgstr "Pulsante Apple Pay" diff --git a/languages/mollie-payments-for-woocommerce-nl_BE.mo b/languages/mollie-payments-for-woocommerce-nl_BE.mo index ae219ab24..02b8257b1 100644 Binary files a/languages/mollie-payments-for-woocommerce-nl_BE.mo and b/languages/mollie-payments-for-woocommerce-nl_BE.mo differ diff --git a/languages/mollie-payments-for-woocommerce-nl_BE.po b/languages/mollie-payments-for-woocommerce-nl_BE.po index c20349a80..d4bf2d991 100644 --- a/languages/mollie-payments-for-woocommerce-nl_BE.po +++ b/languages/mollie-payments-for-woocommerce-nl_BE.po @@ -1,2860 +1,1976 @@ -# Copyright (C) 2021 Mollie -# This file is distributed under the same license as the Mollie Payments for WooCommerce plugin. +# Copyright (C) 2022 unnamed project +# This file is distributed under the same license as the unnamed project package. msgid "" msgstr "" -"Project-Id-Version: Mollie Payments for WooCommerce 6.7.0\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mollie-payments-" -"for-woocommerce\n" -"POT-Creation-Date: 2021-11-12T07:59:02+00:00\n" -"PO-Revision-Date: 2022-06-20 11:21+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: nl_BE\n" +"Project-Id-Version: Mollie Payments for WooCommerce 7.3.3\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: undefined\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.1\n" -"X-Domain: mollie-payments-for-woocommerce\n" -#. Plugin Name of the plugin -msgid "Mollie Payments for WooCommerce" -msgstr "Mollie-betalingen voor WooCommerce" - -#. Plugin URI of the plugin -#. Author URI of the plugin -msgid "https://www.mollie.com" -msgstr "https://www.mollie.com" - -#. Description of the plugin -msgid "Accept payments in WooCommerce with the official Mollie plugin" -msgstr "Accepteer betalingen in WooCommerce met de officiële Mollie-plugin" - -#. Author of the plugin -msgid "Mollie" -msgstr "Mollie" - -#: build/inc/settings/mollie_advanced_settings.php:6 -#: inc/settings/mollie_advanced_settings.php:6 -msgid "Mollie advanced settings" -msgstr "Geavanceerde Mollie-instellingen" - -#: build/inc/settings/mollie_advanced_settings.php:8 -#: inc/settings/mollie_advanced_settings.php:8 +#: ../inc/settings/mollie_advanced_settings.php:12 msgctxt "Label {orderNumber} description for payment description options" msgid "Order number" msgstr "Bestelnummer" -#: build/inc/settings/mollie_advanced_settings.php:9 -#: inc/settings/mollie_advanced_settings.php:9 +#: ../inc/settings/mollie_advanced_settings.php:13 msgctxt "Label {storeName} description for payment description options" msgid "Site Title" msgstr "Site titel" -#: build/inc/settings/mollie_advanced_settings.php:10 -#: inc/settings/mollie_advanced_settings.php:10 -msgctxt "" -"Label {customer.firstname} description for payment description options" +#: ../inc/settings/mollie_advanced_settings.php:14 +msgctxt "Label {customer.firstname} description for payment description options" msgid "Customer's first name" msgstr "Voornaam van de klant" -#: build/inc/settings/mollie_advanced_settings.php:11 -#: inc/settings/mollie_advanced_settings.php:11 +#: ../inc/settings/mollie_advanced_settings.php:15 msgctxt "Label {customer.lastname} description for payment description options" msgid "Customer's last name" msgstr "Achternaam van de klant" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:16 msgctxt "Label {customer.company} description for payment description options" msgid "Customer's company name" msgstr "Bedrijfsnaam van de klant" -#: build/inc/settings/mollie_advanced_settings.php:8 -#: build/src/Mollie/WC/Helper/Settings.php:666 -#: inc/settings/mollie_advanced_settings.php:8 -#: src/Mollie/WC/Helper/Settings.php:666 -msgid "" -"The following options are required to use the plugin and are used by all " -"Mollie payment methods" -msgstr "" -"De volgende opties zijn vereist om de plugin te gebruiken en worden door " -"alle Mollie-betaalmethoden gebruikt" +#: ../inc/settings/mollie_advanced_settings.php:22 +msgid "Mollie advanced settings" +msgstr "Geavanceerde Mollie-instellingen" + +#: ../inc/settings/mollie_advanced_settings.php:24, ../src/Settings/Page/MollieSettingsPage.php:185 +msgid "The following options are required to use the plugin and are used by all Mollie payment methods" +msgstr "De volgende opties zijn vereist om de plugin te gebruiken en worden door alle Mollie-betaalmethoden gebruikt" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:28 msgid "Order status after cancelled payment" msgstr "Bestelstatus na geannuleerde betaling" -#: build/inc/settings/mollie_advanced_settings.php:18 -#: inc/settings/mollie_advanced_settings.php:18 -msgid "" -"Status for orders when a payment (not a Mollie order via the Orders API) is " -"cancelled. Default: pending. Orders with status Pending can be paid with " -"another payment method, customers can try again. Cancelled orders are final. " -"Set this to Cancelled if you only have one payment method or don't want " -"customers to re-try paying with a different payment method. This doesn't " -"apply to payments for orders via the new Orders API and Klarna payments." -msgstr "" -"Status voor bestellingen wanneer een betaling (niet een Mollie-besteling via " -"de Bestellingen API) wordt geannuleerd. Standaard: hangende. Bestellingen " -"met status Hangende kunnen met een andere betaalmethode worden betaald, " -"klanten kunnen opnieuw proberen. Geannuleerde bestellingen zijn definitief. " -"Stel dit in op Geannuleerd als je maar één betaalmethode hebt of als je niet " -"wilt dat klanten opnieuw proberen te betalen met een andere betaalmethode. " -"Dit is niet van toepassing voor betalingen voor bestellingen via de nieuwe " -"Orders-API en Klarna-betalingen." - -#: build/inc/settings/mollie_advanced_settings.php:23 -#: inc/settings/mollie_advanced_settings.php:23 +#: ../inc/settings/mollie_advanced_settings.php:31 +msgid "Pending" +msgstr "In behandeling" + +#: ../inc/settings/mollie_advanced_settings.php:32 +msgid "Cancelled" +msgstr "Geannuleerd" + +# MS: Tippfehler!! "bestelling" sollte es sein #query +#: ../inc/settings/mollie_advanced_settings.php:34 +msgid "Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don't want customers to re-try paying with a different payment method. This doesn't apply to payments for orders via the new Orders API and Klarna payments." +msgstr "Status voor bestellingen wanneer een betaling (niet een Mollie-besteling via de Bestellingen API) wordt geannuleerd. Standaard: hangende. Bestellingen met status Hangende kunnen met een andere betaalmethode worden betaald, klanten kunnen opnieuw proberen. Geannuleerde bestellingen zijn definitief. Stel dit in op Geannuleerd als je maar één betaalmethode hebt of als je niet wilt dat klanten opnieuw proberen te betalen met een andere betaalmethode. Dit is niet van toepassing voor betalingen voor bestellingen via de nieuwe Orders-API en Klarna-betalingen." + +#: ../inc/settings/mollie_advanced_settings.php:39 msgid "Payment screen language" msgstr "Taal van betaalscherm" -#: build/inc/settings/mollie_advanced_settings.php:26 -#: inc/settings/mollie_advanced_settings.php:26 +#: ../inc/settings/mollie_advanced_settings.php:42 msgid "Automatically send WordPress language" msgstr "Automatisch verzenden van WordPress-taal" -#: build/inc/settings/mollie_advanced_settings.php:29 -#: build/inc/settings/mollie_advanced_settings.php:90 -#: build/src/Mollie/WC/Helper/Settings.php:288 -#: inc/settings/mollie_advanced_settings.php:29 -#: inc/settings/mollie_advanced_settings.php:90 -#: src/Mollie/WC/Helper/Settings.php:288 +#: ../inc/settings/mollie_advanced_settings.php:45, ../inc/settings/mollie_advanced_settings.php:105, ../src/Settings/General/MollieGeneralSettings.php:266 msgid "default" msgstr "standaard" -#: build/inc/settings/mollie_advanced_settings.php:30 -#: inc/settings/mollie_advanced_settings.php:30 +#: ../inc/settings/mollie_advanced_settings.php:46 msgid "Detect using browser language" msgstr "Detecteren met gebruik van browser-taal" -#: build/inc/settings/mollie_advanced_settings.php:34 -#: inc/settings/mollie_advanced_settings.php:34 +#: ../inc/settings/mollie_advanced_settings.php:50 msgid "English" msgstr "Engels" -#: build/inc/settings/mollie_advanced_settings.php:35 -#: inc/settings/mollie_advanced_settings.php:35 +#: ../inc/settings/mollie_advanced_settings.php:51 msgid "Dutch" msgstr "Nederlands" -#: build/inc/settings/mollie_advanced_settings.php:36 -#: inc/settings/mollie_advanced_settings.php:36 +#: ../inc/settings/mollie_advanced_settings.php:52 msgid "Flemish (Belgium)" msgstr "Vlaams (België)" -#: build/inc/settings/mollie_advanced_settings.php:37 -#: inc/settings/mollie_advanced_settings.php:37 +#: ../inc/settings/mollie_advanced_settings.php:53 msgid "French" msgstr "Frans" -#: build/inc/settings/mollie_advanced_settings.php:38 -#: inc/settings/mollie_advanced_settings.php:38 +#: ../inc/settings/mollie_advanced_settings.php:54 msgid "French (Belgium)" msgstr "Frans (België)" -#: build/inc/settings/mollie_advanced_settings.php:39 -#: inc/settings/mollie_advanced_settings.php:39 +#: ../inc/settings/mollie_advanced_settings.php:55 msgid "German" msgstr "Duits" -#: build/inc/settings/mollie_advanced_settings.php:40 -#: inc/settings/mollie_advanced_settings.php:40 +#: ../inc/settings/mollie_advanced_settings.php:56 msgid "Austrian German" msgstr "Oostenrijks-Duits" -#: build/inc/settings/mollie_advanced_settings.php:41 -#: inc/settings/mollie_advanced_settings.php:41 +#: ../inc/settings/mollie_advanced_settings.php:57 msgid "Swiss German" msgstr "Zwitserduits" -#: build/inc/settings/mollie_advanced_settings.php:42 -#: inc/settings/mollie_advanced_settings.php:42 +#: ../inc/settings/mollie_advanced_settings.php:58 msgid "Spanish" msgstr "Spaans" -#: build/inc/settings/mollie_advanced_settings.php:43 -#: inc/settings/mollie_advanced_settings.php:43 +#: ../inc/settings/mollie_advanced_settings.php:59 msgid "Catalan" msgstr "Spaans (Catalaans)" -#: build/inc/settings/mollie_advanced_settings.php:44 -#: inc/settings/mollie_advanced_settings.php:44 +#: ../inc/settings/mollie_advanced_settings.php:60 msgid "Portuguese" msgstr "Portugees" -#: build/inc/settings/mollie_advanced_settings.php:45 -#: inc/settings/mollie_advanced_settings.php:45 +#: ../inc/settings/mollie_advanced_settings.php:61 msgid "Italian" msgstr "Italiaans" -#: build/inc/settings/mollie_advanced_settings.php:46 -#: inc/settings/mollie_advanced_settings.php:46 +#: ../inc/settings/mollie_advanced_settings.php:62 msgid "Norwegian" msgstr "Noors" -#: build/inc/settings/mollie_advanced_settings.php:47 -#: inc/settings/mollie_advanced_settings.php:47 +#: ../inc/settings/mollie_advanced_settings.php:63 msgid "Swedish" msgstr "Zweeds" -#: build/inc/settings/mollie_advanced_settings.php:48 -#: inc/settings/mollie_advanced_settings.php:48 +#: ../inc/settings/mollie_advanced_settings.php:64 msgid "Finnish" msgstr "Fins" -#: build/inc/settings/mollie_advanced_settings.php:49 -#: inc/settings/mollie_advanced_settings.php:49 +#: ../inc/settings/mollie_advanced_settings.php:65 msgid "Danish" msgstr "Deens" -#: build/inc/settings/mollie_advanced_settings.php:50 -#: inc/settings/mollie_advanced_settings.php:50 +#: ../inc/settings/mollie_advanced_settings.php:66 msgid "Icelandic" msgstr "IJslands" -#: build/inc/settings/mollie_advanced_settings.php:51 -#: inc/settings/mollie_advanced_settings.php:51 +#: ../inc/settings/mollie_advanced_settings.php:67 msgid "Hungarian" msgstr "Hongaars" -#: build/inc/settings/mollie_advanced_settings.php:52 -#: inc/settings/mollie_advanced_settings.php:52 +#: ../inc/settings/mollie_advanced_settings.php:68 msgid "Polish" msgstr "Pools" -#: build/inc/settings/mollie_advanced_settings.php:53 -#: inc/settings/mollie_advanced_settings.php:53 +#: ../inc/settings/mollie_advanced_settings.php:69 msgid "Latvian" msgstr "Lets" -#: build/inc/settings/mollie_advanced_settings.php:54 -#: inc/settings/mollie_advanced_settings.php:54 +#: ../inc/settings/mollie_advanced_settings.php:70 msgid "Lithuanian" msgstr "Litouws" -#: build/inc/settings/mollie_advanced_settings.php:57 -#: inc/settings/mollie_advanced_settings.php:57 -msgid "" -"Sending a language (or locale) is required. The option 'Automatically send " -"WordPress language' will try to get the customer's language in WordPress " -"(and respects multilanguage plugins) and convert it to a format Mollie " -"understands. If this fails, or if the language is not supported, it will " -"fall back to American English. You can also select one of the locales " -"currently supported by Mollie, that will then be used for all customers." -msgstr "" -"Het verzenden van een taal (of locatie) is vereist. De optie 'Automatisch " -"verzenden van WordPress-taal' zal proberen de taal van de klant in WordPress " -"te krijgen (en respecteert meertalige plugins) en deze te converteren naar " -"een formaat dat Mollie begrijpt. Als dit niet lukt, of als de taal niet " -"wordt ondersteund, zal teruggegaan worden naar Amerikaans-Engels. Je kunt " -"ook een van de momenteel door Mollie ondersteunde locaties selecteren, die " -"dan voor alle klanten zal worden gebruikt." - -#: build/inc/settings/mollie_advanced_settings.php:65 -#: inc/settings/mollie_advanced_settings.php:65 +#: ../inc/settings/mollie_advanced_settings.php:73 +msgid "Sending a language (or locale) is required. The option 'Automatically send WordPress language' will try to get the customer's language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers." +msgstr "Het verzenden van een taal (of locatie) is vereist. De optie 'Automatisch verzenden van WordPress-taal' zal proberen de taal van de klant in WordPress te krijgen (en respecteert meertalige plugins) en deze te converteren naar een formaat dat Mollie begrijpt. Als dit niet lukt, of als de taal niet wordt ondersteund, zal teruggegaan worden naar Amerikaans-Engels. Je kunt ook een van de momenteel door Mollie ondersteunde locaties selecteren, die dan voor alle klanten zal worden gebruikt." + +#: ../inc/settings/mollie_advanced_settings.php:81 msgid "Store customer details at Mollie" msgstr "Klantgegevens opslaan bij Mollie" -#: build/inc/settings/mollie_advanced_settings.php:68 -#: inc/settings/mollie_advanced_settings.php:68 -msgid "" -"Should Mollie store customers name and email address for Single Click " -"Payments? Default %1$s. Required if WooCommerce Subscriptions " -"is being used! Read more about " -"%2$s and how it improves your conversion." -msgstr "" -"Moet Mollie klantennaam en e-mailadres opslaan voor Single Click Payments? " -"Standaard %1$s. Vereist als WooCommerce Abonnementen worden " -"gebruikt! Lees meer over " -"%2$s en hoe het jouw conversie verbetert." - -#: build/inc/settings/mollie_advanced_settings.php:72 -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: inc/settings/mollie_advanced_settings.php:72 -#: src/Mollie/WC/Helper/Settings.php:551 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_advanced_settings.php:84 +msgid "Should Mollie store customers name and email address for Single Click Payments? Default %1$s. Required if WooCommerce Subscriptions is being used! Read more about %2$s and how it improves your conversion." +msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor Single Click Payments? Standaard %1$s. Vereist als WooCommerce Abonnementen worden gebruikt! Lees meer over %2$s en hoe het jouw conversie verbetert." + +#: ../inc/settings/mollie_advanced_settings.php:88, ../src/Settings/Page/MollieSettingsPage.php:303 msgid "Enabled" msgstr "Geactiveerd" -#: build/inc/settings/mollie_advanced_settings.php:73 -#: inc/settings/mollie_advanced_settings.php:73 +#: ../inc/settings/mollie_advanced_settings.php:89 msgid "Single Click Payments" msgstr "Betalen met één klik" -#: build/inc/settings/mollie_advanced_settings.php:82 -#: inc/settings/mollie_advanced_settings.php:82 +#: ../inc/settings/mollie_advanced_settings.php:97 msgid "Select API Method" msgstr "Selecteer de API-methode" -#: build/inc/settings/mollie_advanced_settings.php:99 -#: inc/settings/mollie_advanced_settings.php:99 -msgid "" -"Click %shere%s to read more about the differences between the Payments and " -"Orders API" -msgstr "" -"Klik %shier%s voor meer informatie over de verschillen tussen de Betalings-" -"API en Orders API" +#. translators: Placeholder 1: opening link tag, placeholder 2: closing link tag +#: ../inc/settings/mollie_advanced_settings.php:114 +msgid "Click %1$shere%2$s to read more about the differences between the Payments and Orders API" +msgstr "Klik %1$shier%2$s voor meer informatie over de verschillen tussen de Betalings-API en Orders API" -#: build/inc/settings/mollie_advanced_settings.php:109 -#: inc/settings/mollie_advanced_settings.php:109 +#: ../inc/settings/mollie_advanced_settings.php:124 msgid "API Payment Description" msgstr "Beschrijving Betalings-API" -#: build/inc/settings/mollie_advanced_settings.php:137 -#: inc/settings/mollie_advanced_settings.php:137 +#: ../inc/settings/mollie_advanced_settings.php:141 msgctxt "Payment description options" msgid "Available variables" msgstr "Beschikbare variabelen" -#: build/inc/settings/mollie_advanced_settings.php:160 -#: inc/settings/mollie_advanced_settings.php:160 -msgid "" -"Select among the available variables the description to be used for this " -"transaction.%s(Note: this only works when the method is set to Payments " -"API)%s" -msgstr "" -"Kies uit de beschikbare variabelen de beschrijving die je voor deze " -"transactie wilt gebruiken.%s(Let op: dit werkt alleen als de methode is " -"ingesteld op Betalings-API)%s" +#. translators: Placeholder 1: Opening paragraph tag, placeholder 2: Closing paragraph tag +#: ../inc/settings/mollie_advanced_settings.php:166 +msgid "Select among the available variables the description to be used for this transaction.%1$s(Note: this only works when the method is set to Payments API)%2$s" +msgstr "Kies uit de beschikbare variabelen de beschrijving die je voor deze transactie wilt gebruiken.%1$s(Let op: dit werkt alleen als de methode is ingesteld op Betalings-API)%2$s" -#: build/inc/settings/mollie_advanced_settings.php:134 -#: inc/settings/mollie_advanced_settings.php:134 +#: ../inc/settings/mollie_advanced_settings.php:177 msgid "Surcharge gateway fee label" msgstr "Prijstoeslag gateway vergoedingslabel" -#: build/inc/settings/mollie_advanced_settings.php:140 -#: inc/settings/mollie_advanced_settings.php:140 +#: ../inc/settings/mollie_advanced_settings.php:183, ../src/Gateway/Surcharge.php:36 msgid "Gateway Fee" msgstr "Gateway vergoeding" -#: build/inc/settings/mollie_advanced_settings.php:142 -#: inc/settings/mollie_advanced_settings.php:142 +#: ../inc/settings/mollie_advanced_settings.php:185 msgid "This is the label will appear in frontend when the surcharge applies" -msgstr "" -"Dit is het label dat verschijnt in de interface wanneer de prijstoeslag van " -"toepassing is" +msgstr "Dit is het label dat verschijnt in de interface wanneer de prijstoeslag van toepassing is" -#: inc/settings/mollie_advanced_settings.php:194 +#: ../inc/settings/mollie_advanced_settings.php:193 msgid "Remove Mollie data from Database on uninstall" msgstr "Verwijder Mollie-gegevens van de database bij de-installatie" -#: inc/settings/mollie_advanced_settings.php:199 -msgid "" -"Remove options and scheduled actions from database when uninstalling the " -"plugin." -msgstr "" -"Verwijder opties en geplande acties van de database bij de-installatie van " -"de plugin." +#: ../inc/settings/mollie_advanced_settings.php:199 +msgid "Remove options and scheduled actions from database when uninstalling the plugin." +msgstr "Verwijder opties en geplande acties van de database bij de-installatie van de plugin." + +#: ../inc/settings/mollie_advanced_settings.php:200 +msgid "Clear now" +msgstr "Nu wissen" -#: build/inc/settings/mollie_applepay_settings.php:14 -#: inc/settings/mollie_applepay_settings.php:14 +#: ../inc/settings/mollie_applepay_settings.php:12, ../src/PaymentMethods/Applepay.php:13 +msgid "Apple Pay" +msgstr "Apple Pay" + +#: ../inc/settings/mollie_applepay_settings.php:14 msgid "The following options are required to use the Apple Pay gateway" -msgstr "" -"De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay " -"gateway" +msgstr "De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay gateway" -#: build/inc/settings/mollie_applepay_settings.php:19 -#: build/src/Mollie/WC/Helper/Settings.php:48 -#: inc/settings/mollie_applepay_settings.php:19 -#: src/Mollie/WC/Helper/Settings.php:48 +#: ../inc/settings/mollie_applepay_settings.php:19, ../src/Settings/General/MollieGeneralSettings.php:18 msgid "Enable/Disable" msgstr "Activeren/Deactiveren" -#. translators: Placeholder 1: enabled or disabled -#: build/inc/settings/mollie_applepay_settings.php:21 -#: build/src/Mollie/WC/Helper/Settings.php:54 -#: inc/settings/mollie_applepay_settings.php:21 -#: src/Mollie/WC/Helper/Settings.php:54 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:21, ../src/Settings/General/MollieGeneralSettings.php:25 msgid "Enable %s" msgstr "Geactiveerd %s" -#: build/inc/settings/mollie_applepay_settings.php:29 -#: build/src/Mollie/WC/Helper/Settings.php:68 -#: inc/settings/mollie_applepay_settings.php:29 -#: src/Mollie/WC/Helper/Settings.php:68 +#: ../inc/settings/mollie_applepay_settings.php:29, ../src/Settings/General/MollieGeneralSettings.php:38 msgid "Title" msgstr "Titel" -#: build/inc/settings/mollie_applepay_settings.php:32 -#: build/src/Mollie/WC/Helper/Settings.php:71 -#: inc/settings/mollie_applepay_settings.php:32 -#: src/Mollie/WC/Helper/Settings.php:71 -msgid "" -"This controls the title which the user sees during checkout. Default " -"%s" -msgstr "" -"Dit controleert de titel die de gebruiker ziet tijdens het betalen. " -"Standaard %s" - -#: build/inc/settings/mollie_applepay_settings.php:45 -#: build/inc/settings/mollie_applepay_settings.php:48 -#: build/src/Mollie/WC/Helper/Settings.php:94 -#: inc/settings/mollie_applepay_settings.php:45 -#: inc/settings/mollie_applepay_settings.php:48 -#: src/Mollie/WC/Helper/Settings.php:94 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:32, ../src/Settings/General/MollieGeneralSettings.php:42 +msgid "This controls the title which the user sees during checkout. Default %s" +msgstr "Dit controleert de titel die de gebruiker ziet tijdens het betalen. Standaard %s" + +#: ../inc/settings/mollie_applepay_settings.php:46, ../inc/settings/mollie_applepay_settings.php:48, ../src/Settings/General/MollieGeneralSettings.php:66 msgid "Display logo" msgstr "Toon logo" -#: build/inc/settings/mollie_applepay_settings.php:60 -#: build/src/Mollie/WC/Helper/Settings.php:81 -#: inc/settings/mollie_applepay_settings.php:60 -#: src/Mollie/WC/Helper/Settings.php:81 +#: ../inc/settings/mollie_applepay_settings.php:61, ../src/Settings/General/MollieGeneralSettings.php:52 msgid "Description" msgstr "Beschrijving" -#: build/inc/settings/mollie_applepay_settings.php:63 -#: build/src/Mollie/WC/Helper/Settings.php:84 -#: inc/settings/mollie_applepay_settings.php:63 -#: src/Mollie/WC/Helper/Settings.php:84 -msgid "" -"Payment method description that the customer will see on your checkout. " -"Default %s" -msgstr "" -"Beschrijving van de betaalmethode die de klant bij je betaalpagina zal zien. " -"Standaard %s" +#. translators: Placeholder 1: Gateway description +#: ../inc/settings/mollie_applepay_settings.php:64, ../src/Settings/General/MollieGeneralSettings.php:56 +msgid "Payment method description that the customer will see on your checkout. Default %s" +msgstr "Beschrijving van de betaalmethode die de klant bij je betaalpagina zal zien. Standaard %s" -#: build/inc/settings/mollie_applepay_settings.php:79 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:6 -#: inc/settings/mollie_applepay_settings.php:79 -#: inc/settings/mollie_apple_pay_button_enabler.php:6 +#: ../inc/settings/mollie_applepay_settings.php:81 msgid "Apple Pay button settings" msgstr "Instellingen van Apple Pay knop" -#: build/inc/settings/mollie_applepay_settings.php:84 -#: inc/settings/mollie_applepay_settings.php:84 +#: ../inc/settings/mollie_applepay_settings.php:86 msgid "The following options are required to use the Apple Pay Direct Button" -msgstr "" -"De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay " -"Direct knop" +msgstr "De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay Direct knop" -#: build/inc/settings/mollie_applepay_settings.php:88 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:18 -#: inc/settings/mollie_applepay_settings.php:88 -#: inc/settings/mollie_apple_pay_button_enabler.php:18 +#: ../inc/settings/mollie_applepay_settings.php:90, ../src/PaymentMethods/Applepay.php:34 msgid "Enable Apple Pay Button on Cart page" msgstr "Activeer de Apple Pay knop op de winkelwagenpagina" -#: build/inc/settings/mollie_applepay_settings.php:91 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:21 -#: inc/settings/mollie_applepay_settings.php:91 -#: inc/settings/mollie_apple_pay_button_enabler.php:21 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:93, ../src/PaymentMethods/Applepay.php:36 msgid "Enable the Apple Pay direct buy button on the Cart page" msgstr "Activeer de Apple Pay Direct betaalknop op de winkelwagenpagina" -#: build/inc/settings/mollie_applepay_settings.php:103 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:29 -#: inc/settings/mollie_applepay_settings.php:103 -#: inc/settings/mollie_apple_pay_button_enabler.php:29 +#: ../inc/settings/mollie_applepay_settings.php:106, ../src/PaymentMethods/Applepay.php:44 msgid "Enable Apple Pay Button on Product page" msgstr "Activeer de Apple Pay knop op de productpagina" -#: build/inc/settings/mollie_applepay_settings.php:106 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:32 -#: inc/settings/mollie_applepay_settings.php:106 -#: inc/settings/mollie_apple_pay_button_enabler.php:32 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:109, ../src/PaymentMethods/Applepay.php:46 msgid "Enable the Apple Pay direct buy button on the Product page" msgstr "Activeer de Apple Pay Direct betaalknop op de productpagina" -#: build/inc/settings/mollie_apple_pay_button_enabler.php:11 -#: inc/settings/mollie_apple_pay_button_enabler.php:11 -msgid "The following options are required to use the Apple Pay button" -msgstr "" -"De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay " -"knop" - -#: build/inc/settings/mollie_components.php:7 -#: inc/settings/mollie_components.php:7 +#: ../inc/settings/mollie_components.php:9 msgctxt "Mollie Components Settings" msgid "Base Styles" msgstr "Basisstijlen" -#: build/inc/settings/mollie_components.php:16 -#: build/inc/settings/mollie_components.php:156 -#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156 +#: ../inc/settings/mollie_components.php:18, ../inc/settings/mollie_components.php:158 msgctxt "Mollie Components Settings" msgid "Background Color" msgstr "Achtergrondkleur" -#: build/inc/settings/mollie_components.php:22 -#: build/inc/settings/mollie_components.php:145 -#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145 +#: ../inc/settings/mollie_components.php:24, ../inc/settings/mollie_components.php:147 msgctxt "Mollie Components Settings" msgid "Text Color" msgstr "Tekstkleur" -#: build/inc/settings/mollie_components.php:28 -#: inc/settings/mollie_components.php:28 +#: ../inc/settings/mollie_components.php:30 msgctxt "Mollie Components Settings" msgid "Placeholder Color" msgstr "Kleur van de plaatshouder" -#: build/inc/settings/mollie_components.php:34 -#: inc/settings/mollie_components.php:34 +#: ../inc/settings/mollie_components.php:36 msgctxt "Mollie Components Settings" msgid "Font Size" msgstr "Lettergrootte" -#: build/inc/settings/mollie_components.php:35 -#: inc/settings/mollie_components.php:35 +#: ../inc/settings/mollie_components.php:37 msgctxt "Mollie Components Settings" msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'." -msgstr "" -"Bepaalt de lettergrootte van het component. Toegestane eenheden: 'em', 'px', " -"'rem'." +msgstr "Bepaalt de lettergrootte van het component. Toegestane eenheden: 'em', 'px', 'rem'." -#: build/inc/settings/mollie_components.php:45 -#: inc/settings/mollie_components.php:45 +#: ../inc/settings/mollie_components.php:47 msgctxt "Mollie Components Settings" msgid "Font Weight" msgstr "Lettergewicht" -#: build/inc/settings/mollie_components.php:48 -#: inc/settings/mollie_components.php:48 +#: ../inc/settings/mollie_components.php:50 msgctxt "Mollie Components Settings" msgid "Lighter" msgstr "Lichter" -#: build/inc/settings/mollie_components.php:49 -#: inc/settings/mollie_components.php:49 +#: ../inc/settings/mollie_components.php:51 msgctxt "Mollie Components Settings" msgid "Regular" msgstr "Standaard" -#: build/inc/settings/mollie_components.php:50 -#: inc/settings/mollie_components.php:50 +#: ../inc/settings/mollie_components.php:52 msgctxt "Mollie Components Settings" msgid "Bold" msgstr "Vet" -#: build/inc/settings/mollie_components.php:56 -#: inc/settings/mollie_components.php:56 +#: ../inc/settings/mollie_components.php:58 msgctxt "Mollie Components Settings" msgid "Letter Spacing" msgstr "Letterafstand" -#: build/inc/settings/mollie_components.php:62 -#: inc/settings/mollie_components.php:62 +#: ../inc/settings/mollie_components.php:64 msgctxt "Mollie Components Settings" msgid "Line Height" msgstr "Regelhoogte" -#: build/inc/settings/mollie_components.php:71 -#: inc/settings/mollie_components.php:71 +#: ../inc/settings/mollie_components.php:73 msgctxt "Mollie Components Settings" msgid "Padding" msgstr "Vulling" -#: build/inc/settings/mollie_components.php:72 -#: inc/settings/mollie_components.php:72 +#: ../inc/settings/mollie_components.php:74 msgctxt "Mollie Components Settings" -msgid "" -"Add padding to the components. Allowed units include `16px 16px 16px 16px` " -"and `em`, `px`, `rem`." -msgstr "" -"Voeg vulling toe aan de componenten. Tot de toegestane eenheden behoren " -"'16px 16px 16px 16px' en 'em', 'px', 'rem'." +msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`." +msgstr "Voeg vulling toe aan de componenten. Tot de toegestane eenheden behoren '16px 16px 16px 16px' en 'em', 'px', 'rem'." -#: build/inc/settings/mollie_components.php:82 -#: inc/settings/mollie_components.php:82 +#: ../inc/settings/mollie_components.php:84 msgctxt "Mollie Components Settings" msgid "Align Text" msgstr "Lijn tekst uit" -#: build/inc/settings/mollie_components.php:85 -#: inc/settings/mollie_components.php:85 +#: ../inc/settings/mollie_components.php:87 msgctxt "Mollie Components Settings" msgid "Left" msgstr "Links" -#: build/inc/settings/mollie_components.php:86 -#: inc/settings/mollie_components.php:86 +#: ../inc/settings/mollie_components.php:88 msgctxt "Mollie Components Settings" msgid "Right" msgstr "Rechts" -#: build/inc/settings/mollie_components.php:87 -#: inc/settings/mollie_components.php:87 +#: ../inc/settings/mollie_components.php:89 msgctxt "Mollie Components Settings" msgid "Center" msgstr "Centreren" -#: build/inc/settings/mollie_components.php:88 -#: inc/settings/mollie_components.php:88 +#: ../inc/settings/mollie_components.php:90 msgctxt "Mollie Components Settings" msgid "Justify" msgstr "Uitvullen" -#: build/inc/settings/mollie_components.php:94 -#: inc/settings/mollie_components.php:94 +#: ../inc/settings/mollie_components.php:96 msgctxt "Mollie Components Settings" msgid "Transform Text " msgstr "Wijzig tekst " -#: build/inc/settings/mollie_components.php:97 -#: inc/settings/mollie_components.php:97 +#: ../inc/settings/mollie_components.php:99 msgctxt "Mollie Components Settings" msgid "None" msgstr "Geen" -#: build/inc/settings/mollie_components.php:102 -#: inc/settings/mollie_components.php:102 +#: ../inc/settings/mollie_components.php:104 msgctxt "Mollie Components Settings" msgid "Capitalize" msgstr "In hoofdletters schrijven" -#: build/inc/settings/mollie_components.php:107 -#: inc/settings/mollie_components.php:107 +#: ../inc/settings/mollie_components.php:109 msgctxt "Mollie Components Settings" msgid "Uppercase" msgstr "Hoofdletters" -#: build/inc/settings/mollie_components.php:112 -#: inc/settings/mollie_components.php:112 +#: ../inc/settings/mollie_components.php:114 msgctxt "Mollie Components Settings" msgid "Lowercase" msgstr "Kleine letters" -#: build/inc/settings/mollie_components.php:117 -#: inc/settings/mollie_components.php:117 +#: ../inc/settings/mollie_components.php:119 msgctxt "Mollie Components Settings" msgid "Full Width" msgstr "Volledige breedte" -#: build/inc/settings/mollie_components.php:122 -#: inc/settings/mollie_components.php:122 +#: ../inc/settings/mollie_components.php:124 msgctxt "Mollie Components Settings" msgid "Full Size Kana" msgstr "Volledige grootte Kana" -#: build/inc/settings/mollie_components.php:136 -#: inc/settings/mollie_components.php:136 +#: ../inc/settings/mollie_components.php:138 msgctxt "Mollie Components Settings" msgid "Invalid Status Styles" msgstr "Ongeldige statusstijlen" -#: build/inc/settings/mollie_components.php:146 -#: inc/settings/mollie_components.php:146 +#: ../inc/settings/mollie_components.php:148 msgctxt "Mollie Components Settings" msgid "Text Color for invalid input." msgstr "Tekstkleur voor ongeldige invoer" -#: build/inc/settings/mollie_components.php:157 -#: inc/settings/mollie_components.php:157 +#: ../inc/settings/mollie_components.php:159 msgctxt "Mollie Components Settings" msgid "Background Color for invalid input." msgstr "Achtergrondkleur voor ongeldige invoer" -#: build/inc/settings/mollie_components_enabler.php:6 -#: inc/settings/mollie_components_enabler.php:6 -msgid "Enable Mollie Components" -msgstr "Activeer Mollie-componenten" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to settings. Placeholder 4: Closing link tag. +#: ../src/Activation/ActivationModule.php:167 +msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s." +msgstr "%1$sMollie-betalingen voor WooCommerce: API-sleutels ontbreken%2$s Gelieve%3$s je API-sleutels hier in te stellen%4$s." -#: build/inc/settings/mollie_components_enabler.php:8 -#: inc/settings/mollie_components_enabler.php:8 -msgid "" -"Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." -msgstr "" -"Gebruik de Mollie-componenten voor deze gateway. Lees meer over %s en hoe het jouw conversie verbetert." - -#: build/inc/settings/mollie_components_enabler.php:12 -#: build/src/Mollie/WC/Settings/Page/Components.php:10 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:139 -#: inc/settings/mollie_components_enabler.php:12 -#: src/Mollie/WC/Settings/Page/Components.php:10 -#: src/Mollie/WC/Settings/Page/Mollie.php:139 -msgid "Mollie Components" -msgstr "Mollie-componenten" +#: ../src/Activation/ConstraintsChecker.php:109 +msgid "%1$sMollie Payments for WooCommerce is inactive:%2$s" +msgstr "%1$sMollie-betalingen voor WooCommerce is inactief:%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:5 -#: inc/settings/mollie_creditcard_icons_selector.php:5 -msgid "Customize Icons" -msgstr "Pas pictogrammen aan" +#: ../src/Activation/ConstraintsChecker.php:113 +msgid "%1$sCorrect the above errors to use Mollie Payments for Woocommerce%2$s" +msgstr "%1$sCorrigeer bovenstaande fouten om Mollie-betalingen te gebruiken voor WooCommerce%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:12 -#: inc/settings/mollie_creditcard_icons_selector.php:12 -msgid "Enable Icons Selector" -msgstr "Activeer pictogram keuzemogelijkheid" +#: ../src/Assets/AssetsModule.php:432 +msgid "Name on card" +msgstr "Naam op de kaart" -#: build/inc/settings/mollie_creditcard_icons_selector.php:13 -#: inc/settings/mollie_creditcard_icons_selector.php:13 -msgid "Show customized creditcard icons on checkout page" -msgstr "Toon aangepaste creditcardpictogrammen op betaalpagina" +#: ../src/Assets/AssetsModule.php:436 +msgid "Card number" +msgstr "Kaartnummer" -#: build/inc/settings/mollie_creditcard_icons_selector.php:21 -#: inc/settings/mollie_creditcard_icons_selector.php:21 -msgid "Show American Express Icon" -msgstr "Toon American Express pictogram" +#: ../src/Assets/AssetsModule.php:440 +msgid "Expiry date" +msgstr "Vervaldatum" -#: build/inc/settings/mollie_creditcard_icons_selector.php:26 -#: inc/settings/mollie_creditcard_icons_selector.php:26 -msgid "Show Carta Si Icon" -msgstr "Toon Carta Si pictogram" +#: ../src/Assets/AssetsModule.php:444 +msgid "CVC/CVV" +msgstr "CVC/CVV" -#: build/inc/settings/mollie_creditcard_icons_selector.php:31 -#: inc/settings/mollie_creditcard_icons_selector.php:31 -msgid "Show Carte Bancaire Icon" -msgstr "Toon Carte Bancaire pictogram" +#: ../src/Assets/AssetsModule.php:451 +msgid "An unknown error occurred, please check the card fields." +msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden." -#: build/inc/settings/mollie_creditcard_icons_selector.php:36 -#: inc/settings/mollie_creditcard_icons_selector.php:36 -msgid "Show Maestro Icon" -msgstr "Toon Maestro pictogram" +#: ../src/Assets/AssetsModule.php:521 +msgid "Please choose a billing country to see the available payment methods" +msgstr "Kies een factureringsland om de beschikbare betaalmethoden te zien" -#: build/inc/settings/mollie_creditcard_icons_selector.php:41 -#: inc/settings/mollie_creditcard_icons_selector.php:41 -msgid "Show Mastercard Icon" -msgstr "Toon Mastercard pictogram" +#: ../src/Assets/AssetsModule.php:570 +msgid "No custom logo selected" +msgstr "Geen aangepast logo gekozen" -#: build/inc/settings/mollie_creditcard_icons_selector.php:46 -#: inc/settings/mollie_creditcard_icons_selector.php:46 -msgid "Show Visa Icon" -msgstr "Toon Visa pictogram" +#: ../src/Gateway/MolliePaymentGateway.php:271, ../src/Settings/Page/MollieSettingsPage.php:313 +msgid "Test mode enabled." +msgstr "Testmodus geactiveerd." -#: build/inc/settings/mollie_creditcard_icons_selector.php:51 -#: inc/settings/mollie_creditcard_icons_selector.php:51 -msgid "Show VPay Icon" -msgstr "Toon Vpay pictogram" +#. translators: The surrounding %s's Will be replaced by a link to the global setting page +#: ../src/Gateway/MolliePaymentGateway.php:276 +msgid "No API key provided. Please %1$sset you Mollie API key%2$s first." +msgstr "Geen API-sleutel verschaft. Plaats %1$sje Mollie API-sleutel%2$s eerst." -#: build/inc/settings/mollie_paypal_button_enabler.php:7 -#: inc/settings/mollie_paypal_button_enabler.php:7 -msgid "PayPal button display settings" -msgstr "PayPal-knop weergave-instellingen" +#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Gateway/MolliePaymentGateway.php:291 +msgid "%1$s not enabled in your Mollie profile. You can enable it by editing your %2$sMollie profile%3$s." +msgstr "%1$s niet geactiveerd in je Mollie-profiel. Je kan het activeren door je %2$sMollie-profiel%3$s te bewerken." -#: build/inc/settings/mollie_paypal_button_enabler.php:12 -#: inc/settings/mollie_paypal_button_enabler.php:12 -msgid "" -"%1sThe PayPal button is optimized for digital goods. And will only appear if " -"the product has no shipping. %2sThe customer's address information can only " -"be retrieved if the transaction has been done with the %3sOrders API%4s.%5s" -"%6s" -msgstr "" -"%1sDe PayPal-knop is geoptimaliseerd voor digitale artikelen. Hij verschijnt " -"alleen als het product niet wordt verzonden. %2sDe adresgegevens van de " -"klant kan je alleen krijgen, als je de transactie hebt uitgevoerd met de " -"%3sOrders API%4s.%5s%6s" +#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies +#: ../src/Gateway/MolliePaymentGateway.php:306 +msgid "Current shop currency %1$s not supported by Mollie. Read more about %2$ssupported currencies and payment methods.%3$s " +msgstr "Huidige shopvaluta %1$s niet ondersteund door Mollie. Lees meer over %2$sondersteunde valuta's en betaalmethoden.%3$s " -#: build/inc/settings/mollie_paypal_button_enabler.php:19 -#: inc/settings/mollie_paypal_button_enabler.php:19 -msgid "Display on cart page" -msgstr "Toon op de winkelwagenpagina" +#: ../src/Gateway/MolliePaymentGateway.php:577 +msgid "You have cancelled your payment. Please complete your order with a different payment method." +msgstr "Je hebt je betaling geannuleerd. Vervolledig je bestelling met een andere betaalmethode." -#: build/inc/settings/mollie_paypal_button_enabler.php:23 -#: inc/settings/mollie_paypal_button_enabler.php:23 -msgid "Enable the PayPal button to be used in the cart page." -msgstr "Activeer de PayPal-knop om te gebruiken op de winkelwagenpagina." +#: ../src/Gateway/MolliePaymentGateway.php:597, ../src/Gateway/MolliePaymentGateway.php:611 +msgid "Your payment was not successful. Please complete your order with a different payment method." +msgstr "Je betaling is niet gelukt. Vervolledig je bestelling met een andere betaalmethode." -#: build/inc/settings/mollie_paypal_button_enabler.php:31 -#: inc/settings/mollie_paypal_button_enabler.php:31 -msgid "Display on product page" -msgstr "Toon op de productpagina" +#: ../src/Gateway/MolliePaymentGateway.php:647 +msgid "Could not load order %s" +msgstr "Kon bestelling %s niet laden" -#: build/inc/settings/mollie_paypal_button_enabler.php:35 -#: inc/settings/mollie_paypal_button_enabler.php:35 -msgid "Enable the PayPal button to be used in the product page." -msgstr "Activeer de PayPal-knop om te gebruiken op de productpagina." +#: ../src/Gateway/MolliePaymentGateway.php:906 +msgid "Order cancelled" +msgstr "Bestelling geannuleerd" -#: build/inc/settings/mollie_paypal_button_enabler.php:44 -#: inc/settings/mollie_paypal_button_enabler.php:44 -msgctxt "Mollie PayPal Button Settings" -msgid "Button text language and color" -msgstr "Knop tekst taal en kleur" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Gateway/MolliePaymentGateway.php:943 +msgid "%1$s payment still pending (%2$s) but customer already returned to the store. Status should be updated automatically in the future, if it doesn't this might indicate a communication issue between the site and Mollie." +msgstr "%1$s betaling nog hangende (%2$s) maar klant is reeds teruggekeerd naar de shop. Status moet in de toekomst automatisch worden bijgewerkt, als dat niet gebeurt, kan dit wijzen op een communicatieprobleem tussen de site en Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:46 -#: inc/settings/mollie_paypal_button_enabler.php:46 -msgctxt "Mollie PayPal Button Settings" -msgid "Select the text and the colour of the button." -msgstr "Kies de tekst en de kleur van de knop." +#: ../src/Gateway/MolliePaymentGateway.php:949, ../src/Payment/MollieObject.php:687, ../src/Payment/MollieObject.php:655, ../src/Payment/MollieOrder.php:275, ../src/Payment/MollieOrder.php:332, ../src/Payment/MollieOrder.php:377, ../src/Payment/MollieOrder.php:459, ../src/Payment/MollieOrder.php:522, ../src/Payment/MollieOrder.php:941, ../src/Payment/MollieOrderService.php:165, ../src/Payment/MollieOrderService.php:428, ../src/Payment/MollieOrderService.php:491, ../src/Payment/MollieOrderService.php:705, ../src/Payment/MolliePayment.php:223, ../src/Payment/MolliePayment.php:310, ../src/Payment/MolliePayment.php:379, ../src/Payment/MolliePayment.php:402, ../src/Payment/PaymentService.php:788, ../src/Subscription/MollieSepaRecurringGateway.php:138, ../src/Subscription/MollieSepaRecurringGateway.php:205, ../src/Subscription/MollieSubscriptionGateway.php:470 +msgid "test mode" +msgstr "testmodus" -#: build/inc/settings/mollie_paypal_button_enabler.php:54 -#: inc/settings/mollie_paypal_button_enabler.php:54 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill blue" -msgstr "Engels -- Kopen met PayPal - Pilvormig blauw" +#: ../src/Gateway/MolliePaymentGateway.php:964 +msgid ", payment pending." +msgstr ", betaling in behandeling." -#: build/inc/settings/mollie_paypal_button_enabler.php:55 -#: inc/settings/mollie_paypal_button_enabler.php:55 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded blue" -msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken blauw" +#: ../src/Gateway/MolliePaymentGateway.php:996 +msgid "Your order has been cancelled." +msgstr "Je bestelling is geannuleerd." -#: build/inc/settings/mollie_paypal_button_enabler.php:56 -#: inc/settings/mollie_paypal_button_enabler.php:56 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill golden" -msgstr "Engels -- Kopen met PayPal - Pilvormig goud" +#: ../src/Gateway/Surcharge.php:81 +msgid "A surchage fee might apply" +msgstr "Een prijstoeslag zou van toepassing kunnen zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:57 -#: inc/settings/mollie_paypal_button_enabler.php:57 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded golden" -msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken goud" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. +#: ../src/Gateway/Surcharge.php:275 +msgid " + %1$s %2$s fee might apply" +msgstr " + %1$s %2$s prijstoeslag zou van toepassing kunnen zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:58 -#: inc/settings/mollie_paypal_button_enabler.php:58 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill gray" -msgstr "Engels -- Kopen met PayPal - Pilvormig grijs" +#. translators: Placeholder 1: Fee amount tag. +#: ../src/Gateway/Surcharge.php:292 +msgid " + %1$s%% fee might apply" +msgstr " + %1$s%% prijstoeslag zou van toepassing kunnen zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:59 -#: inc/settings/mollie_paypal_button_enabler.php:59 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded gray" -msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken grijs" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. +#: ../src/Gateway/Surcharge.php:315 +msgid " + %1$s %2$s + %3$s%% fee might apply" +msgstr " + %1$s %2$s + %3$s%% prijstoeslag zou van toepassing kunnen zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:60 -#: inc/settings/mollie_paypal_button_enabler.php:60 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill white" -msgstr "Engels -- Kopen met PayPal - Pilvormig wit" +#: ../src/Gateway/Surcharge.php:348 +msgid " (incl. VAT)" +msgstr " (incl. btw)" -#: build/inc/settings/mollie_paypal_button_enabler.php:61 -#: inc/settings/mollie_paypal_button_enabler.php:61 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded white" -msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:682 +msgid "%1$s payment failed via Mollie (%2$s)." +msgstr "%1$s betaling mislukt via Mollie (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:62 -#: inc/settings/mollie_paypal_button_enabler.php:62 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill black" -msgstr "Engels -- Betalen met PayPal - Pilvormig zwart" +#: ../src/Payment/MollieObject.php:650 +msgid "%1$s renewal payment failed via Mollie (%2$s). You will need to manually review the payment and adjust product stocks if you use them." +msgstr "%1$s vernieuwing van betaling mislukt via Mollie (%2$s). Je moet de betaling handmatig controleren en productvoorraden aanpassen als je deze gebruikt." -#: build/inc/settings/mollie_paypal_button_enabler.php:63 -#: inc/settings/mollie_paypal_button_enabler.php:63 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded black" -msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:721 +msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated." +msgstr "Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de bestellingsstatus is niet geüpdatet." -#: build/inc/settings/mollie_paypal_button_enabler.php:64 -#: inc/settings/mollie_paypal_button_enabler.php:64 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill blue" -msgstr "Engels -- Betalen met PayPal - Pilvormig blauw" +#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID +#: ../src/Payment/MollieObject.php:740, ../src/PaymentMethods/InstructionStrategies/PaypalInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (PayPal transaction ID: %3$s)" +msgstr "Betaling voltooid met %1$s - %2$s (PayPal transactie-ID: %3$s)" -#: build/inc/settings/mollie_paypal_button_enabler.php:65 -#: inc/settings/mollie_paypal_button_enabler.php:65 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded blue" -msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken blauw" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:881 +msgctxt "Payment description for {orderNumber}" +msgid "Order {orderNumber}" +msgstr "Bestelling {bestelnummer}" -#: build/inc/settings/mollie_paypal_button_enabler.php:66 -#: inc/settings/mollie_paypal_button_enabler.php:66 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill golden" -msgstr "Engels -- Betalen met PayPal - Pilvormig goud" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:891 +msgctxt "Payment description for {storeName}" +msgid "StoreName {storeName}" +msgstr "Winkelnaam {winkelnaam}" -#: build/inc/settings/mollie_paypal_button_enabler.php:67 -#: inc/settings/mollie_paypal_button_enabler.php:67 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded golden" -msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken goud" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:901 +msgctxt "Payment description for {customer.firstname}" +msgid "Customer Firstname {customer.firstname}" +msgstr "Voornaam Klant {voornaam.klant}" -#: build/inc/settings/mollie_paypal_button_enabler.php:68 -#: inc/settings/mollie_paypal_button_enabler.php:68 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill gray" -msgstr "Engels -- Betalen met PayPal - Pilvormig grijs" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:911 +msgctxt "Payment description for {customer.lastname}" +msgid "Customer Lastname {customer.lastname}" +msgstr "Achternaam Klant {achternaam.klant}" -#: build/inc/settings/mollie_paypal_button_enabler.php:69 -#: inc/settings/mollie_paypal_button_enabler.php:69 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded gray" -msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken grijs" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:921 +msgctxt "Payment description for {customer.company}" +msgid "Customer Company {customer.company}" +msgstr "Bedrijf Klant {bedrijf.klant}" -#: build/inc/settings/mollie_paypal_button_enabler.php:70 -#: inc/settings/mollie_paypal_button_enabler.php:70 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill white" -msgstr "Engels -- Betalen met PayPal - Pilvormig wit" +#: ../src/Payment/MollieObject.php:936 +msgid "Order" +msgstr "Bestelling" -#: build/inc/settings/mollie_paypal_button_enabler.php:71 -#: inc/settings/mollie_paypal_button_enabler.php:71 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded white" -msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:271, ../src/Payment/MolliePayment.php:221, ../src/Subscription/MollieSepaRecurringGateway.php:211 +msgid "Order completed using %1$s payment (%2$s)." +msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:72 -#: inc/settings/mollie_paypal_button_enabler.php:72 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill black" -msgstr "Nederlands -- Kopen met PayPal - Pilvormig zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:330 +msgid "Order authorized using %1$s payment (%2$s). Set order to completed in WooCommerce when you have shipped the products, to capture the payment. Do this within 28 days, or the order will expire. To handle individual order lines, process the order via the Mollie Dashboard." +msgstr "Bestelling geautoriseerd met gebruik van %1$s betaling (%2$s). Om de betaling te ontvangen, moet je na het verzenden van de producten de bestelling in WooCommerce als voltooid markeren. Doe dit binnen 28 dagen, anders verloopt de bestelling. Voor het afhandelen van afzonderlijke bestelregels, moet je de bestelling via het Mollie Dashboard verwerken." -#: build/inc/settings/mollie_paypal_button_enabler.php:73 -#: inc/settings/mollie_paypal_button_enabler.php:73 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded black" -msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:375 +msgid "Order completed at Mollie for %1$s order (%2$s). At least one order line completed. Remember: Completed status for an order at Mollie is not the same as Completed status in WooCommerce!" +msgstr "Bestelling voltooid bij Mollie voor %1$s bestelling (%2$s). Ten minste één bestellijn voltooid. Denk eraan: Voltooide status voor een bestelling bij Mollie is niet hetzelfde als Voltooide status in WooCommerce!" -#: build/inc/settings/mollie_paypal_button_enabler.php:74 -#: inc/settings/mollie_paypal_button_enabler.php:74 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill blue" -msgstr "Nederlands -- Kopen met PayPal - Pilvormig blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:457 +msgid "%1$s order (%2$s) cancelled ." +msgstr "%1$s bestelling (%2$s) geannuleerd." -#: build/inc/settings/mollie_paypal_button_enabler.php:75 -#: inc/settings/mollie_paypal_button_enabler.php:75 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded blue" -msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:520 +msgid "%1$s order expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s bestelling verlopen (%2$s) maar niet geannuleerd wegens een andere hangende betaling (%3$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:76 -#: inc/settings/mollie_paypal_button_enabler.php:76 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill golden" -msgstr "Nederlands -- Kopen met PayPal - Pilvormig goud" +#: ../src/Payment/MollieOrder.php:616 +msgctxt "Order note error" +msgid "The sum of refunds for all order lines is not identical to the refund amount, so this refund will be processed as a payment amount refund, not an order line refund." +msgstr "De som van de terugbetalingen voor alle bestelregels is niet identiek aan het terugbetalingsbedrag, dus deze terugbetaling zal worden verwerkt als een terugbetaling van het betalingsbedrag en niet als een terugbetaling van een bestelregel." -#: build/inc/settings/mollie_paypal_button_enabler.php:77 -#: inc/settings/mollie_paypal_button_enabler.php:77 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded golden" -msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken goud" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. +#: ../src/Payment/MollieOrder.php:747 +msgid "%1$sx %2$s cancelled for %3$s%4$s in WooCommerce and at Mollie." +msgstr "%1$sx %2$s geannuleerd voor %3$s%4$s in WooCommerce en bij Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:78 -#: inc/settings/mollie_paypal_button_enabler.php:78 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill gray" -msgstr "Nederlands -- Kopen met PayPal - Pilvormig grijs" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. Placeholder 5: Reason. Placeholder 6: Refund Id. +#: ../src/Payment/MollieOrder.php:763 +msgid "%1$sx %2$s refunded for %3$s%4$s in WooCommerce and at Mollie.%5$s Refund ID: %6$s." +msgstr "%1$sx %2$s terugbetaald voor %3$s%4$s in WooCommerce en bij Mollie.%5$s Terugbetalings-ID: %6$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:79 -#: inc/settings/mollie_paypal_button_enabler.php:79 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded gray" -msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken grijs" +#. translators: Placeholder 1: payment status. +#: ../src/Payment/MollieOrder.php:823 +msgctxt "Order note error" +msgid "Can not refund order amount that has status %1$s at Mollie." +msgstr "Kan het bestelbedrag dat de status %1$s heeft bij Mollie niet terugbetalen." -#: build/inc/settings/mollie_paypal_button_enabler.php:80 -#: inc/settings/mollie_paypal_button_enabler.php:80 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill white" -msgstr "Nederlands -- Kopen met PayPal - Pilvormig wit" +#. translators: Placeholder 1: Currency. Placeholder 2: Refund amount. Placeholder 3: Reason. Placeholder 4: Refund id. +#: ../src/Payment/MollieOrder.php:845 +msgid "Amount refund of %1$s%2$s refunded in WooCommerce and at Mollie.%3$s Refund ID: %4$s." +msgstr "Terugbetaling van %1$s%2$s terugbetaald in WooCommerce en bij Mollie.%3$s Terugbetalings-ID: %4$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:81 -#: inc/settings/mollie_paypal_button_enabler.php:81 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded white" -msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:936 +msgid "%1$s order (%2$s) expired ." +msgstr "%1$s bestelling (%2$s) verlopen." -#: build/inc/settings/mollie_paypal_button_enabler.php:82 -#: inc/settings/mollie_paypal_button_enabler.php:82 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill black" -msgstr "Nederlands -- Betalen met PayPal - Pilvormig zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID +#: ../src/Payment/MollieOrderService.php:162 +msgid "%1$s payment %2$s (%3$s), not processed." +msgstr "%1$s betaling %2$s (%3$s), niet verwerkt." -#: build/inc/settings/mollie_paypal_button_enabler.php:83 -#: inc/settings/mollie_paypal_button_enabler.php:83 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded black" -msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken zwart" +#: ../src/Payment/MollieOrderService.php:391 +msgid "New chargeback %s processed! Order note and order status updated." +msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt." -#: build/inc/settings/mollie_paypal_button_enabler.php:84 -#: inc/settings/mollie_paypal_button_enabler.php:84 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill blue" -msgstr "Nederlands -- Betalen met PayPal - Pilvormig blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:423 +msgid "%1$s payment charged back via Mollie (%2$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s betaling teruggevorderd via Mollie (%2$s). Je moet de betaling handmatig controleren (en productvoorraden aanpassen als je dit gebruikt)." -#: build/inc/settings/mollie_paypal_button_enabler.php:85 -#: inc/settings/mollie_paypal_button_enabler.php:85 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded blue" -msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:485 +msgid "%1$s payment charged back via Mollie (%2$s). Subscription status updated, please review (and adjust product stocks if you use it)." +msgstr "%1$s betaling teruggevorderd via Mollie (%2$s). Abonnementstatus geüpdatet, gelieve te beoordelen (en productvoorraden aan te passen als je dit gebruikt)." -#: build/inc/settings/mollie_paypal_button_enabler.php:86 -#: inc/settings/mollie_paypal_button_enabler.php:86 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill golden" -msgstr "Nederlands -- Betalen met PayPal - Pilvormig goud" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:692 +msgid "%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s betaling %2$s via Mollie (%3$s %4$s). Je moet de betaling handmatig controleren (en productvoorraden aanpassen als je dit gebruikt)." -#: build/inc/settings/mollie_paypal_button_enabler.php:87 -#: inc/settings/mollie_paypal_button_enabler.php:87 +#: ../src/Payment/MollieOrderService.php:805 +msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated." +msgstr "Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, maar bestelling niet geüpdatet." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:308 +msgid "%1$s payment (%2$s) cancelled ." +msgstr "%1$s betaling (%2$s) geannuleerd." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:377 +msgid "%1$s payment expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s betaling verlopen (%2$s) maar niet geannuleerd wegens een andere hangende betaling (%3$s)." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:400 +msgid "%1$s payment expired (%2$s)." +msgstr "%1$s betaling verlopen (%2$s)." + +#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID +#: ../src/Payment/MolliePayment.php:476 +msgid "Refunded %1$s%2$s%3$s - Payment: %4$s, Refund: %5$s" +msgstr "Terugbetaald %1$s%2$s%3$s - Betaling: %4$s, Terugbetaling: %5$s" + +#. translators: Placeholder 1: order number +#: ../src/Payment/MollieSubscription.php:80 +msgctxt "Default payment description for subscription recurring payments" +msgid "Order %1$s" +msgstr "Bestelling %1$s" + +#: ../src/Payment/OrderItemsRefunder.php:121 +msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item." +msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld." + +#: ../src/Payment/OrderItemsRefunder.php:166 +msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount." +msgstr "Onmogelijk om het bestelartikel-id van het afstandsartikel terug te halen: %1$s Probeer een terugbetaling te doen per bedrag." + +#: ../src/Payment/OrderItemsRefunder.php:190 +msgid "Empty WooCommerce order items or mollie order lines." +msgstr "Lege WooCommerce-bestelartikelen of Mollie-bestellijnen." + +#: ../src/Payment/OrderLines.php:509 +msgid "Shipping" +msgstr "Verzending" + +#: ../src/Payment/PaymentModule.php:194 +msgid "Unpaid order cancelled - time limit reached." +msgstr "Onbetaalde bestelling geannuleerd - tijdslimiet bereikt." + +#: ../src/Payment/PaymentModule.php:213 +msgid "%1$s items refunded in WooCommerce and at Mollie." +msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie." + +#: ../src/Payment/PaymentModule.php:231 +msgid "%1$s items cancelled in WooCommerce and at Mollie." +msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie." + +#: ../src/Payment/PaymentModule.php:350 +msgctxt "Order note info" +msgid "Processing a payment, no capture needed" +msgstr "Betaling aan het verwerken, geen vastlegging nodig" + +#: ../src/Payment/PaymentModule.php:364 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be shipped/captured." +msgstr "Bestelling reeds geannuleerd bij Mollie, kan niet worden verzonden/vastgelegd." + +#: ../src/Payment/PaymentModule.php:372 +msgctxt "Order note info" +msgid "Order already completed at Mollie, can not be shipped/captured." +msgstr "Bestelling reeds voltooid bij Mollie, kan niet worden verzonden/vastgelegd." + +#: ../src/Payment/PaymentModule.php:381 +msgctxt "Order note info" +msgid "Order successfully updated to shipped at Mollie, capture of funds underway." +msgstr "Bestelling met succes bijgewerkt om te verzenden bij Mollie, vastlegging van middelen bezig." + +#: ../src/Payment/PaymentModule.php:387 +msgctxt "Order note info" +msgid "Order not paid or authorized at Mollie yet, can not be shipped." +msgstr "Bestelling nog niet betaald of geautoriseerd bij Mollie, kan niet worden verzonden." + +#: ../src/Payment/PaymentModule.php:421 +msgctxt "Order note info" +msgid "Order contains Mollie payment method, but not a valid Mollie Order ID. Canceling order failed." +msgstr "Bestelling bevat Mollie-betaalmethode, maar geen geldig Mollie-bestel-ID. Annulering van bestelling mislukt." + +#: ../src/Payment/PaymentModule.php:442 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be canceled again." +msgstr "Bestelling reeds geannuleerd bij Mollie, kan niet opnieuw worden geannuleerd." + +#: ../src/Payment/PaymentModule.php:452 +msgctxt "Order note info" +msgid "Order also cancelled at Mollie." +msgstr "Bestelling dus geannuleerd bij Mollie." + +#: ../src/Payment/PaymentModule.php:458 +msgctxt "Order note info" +msgid "Order could not be canceled at Mollie, because order status is " +msgstr "Bestelling kon niet worden geannuleerd bij Mollie, omdat bestelstatus is " + +#: ../src/Payment/PaymentService.php:620 +msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription." +msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats een volledig nieuwe bestelling om je abonnement te wijzigen." + +#: ../src/Payment/PaymentService.php:626 +msgid "Failed switching subscriptions, no valid mandate." +msgstr "Wijziging abonnement mislukt, geen geldige opdracht." + +#: ../src/Payment/PaymentService.php:635 +msgid "Order completed internally because of an existing valid mandate at Mollie." +msgstr "Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie." + +#. translators: Placeholder 1: Payment method title +#: ../src/Payment/PaymentService.php:708, ../src/Buttons/ApplePayButton/AppleAjaxRequests.php:723, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:113, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:159 +msgid "Could not create %s payment." +msgstr "Kon geen %s betaling aanmaken." + +#: ../src/Payment/PaymentService.php:766, ../src/Subscription/MollieSepaRecurringGateway.php:127, ../src/Subscription/MollieSubscriptionGateway.php:461 +msgid "Awaiting payment confirmation." +msgstr "In afwachting van betalingsbevestiging" + +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Payment/PaymentService.php:786 +msgid "%s payment started (%s)." +msgstr "%s betaling gestart (%s)." + +#: ../src/Payment/RefundLineItemsBuilder.php:126 +msgid "Mollie doesn't allow a partial refund of the full amount or quantity of at least one order line. Trying to process this as an amount refund instead." +msgstr "Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag of hoeveelheid van ten minste één bestelregel. In plaats daarvan aan het proberen dit te verwerken als een terugbetaling van bedrag." + +#: ../src/PaymentMethods/Applepay.php:14 +msgid "To accept payments via Apple Pay" +msgstr "Om betalingen te accepteren via Apple Pay" + +#: ../src/PaymentMethods/Bancontact.php:14 +msgid "Bancontact" +msgstr "Bancontact" + +#: ../src/PaymentMethods/Banktransfer.php:33 +msgid "Bank Transfer" +msgstr "Bankoverdracht" + +#: ../src/PaymentMethods/Banktransfer.php:55, ../src/Settings/General/MollieGeneralSettings.php:235 +msgid "Activate expiry time setting" +msgstr "Activeer instelling vervaldatum" + +#: ../src/PaymentMethods/Banktransfer.php:56, ../src/Settings/General/MollieGeneralSettings.php:236 +msgid "Enable expiry time for payments" +msgstr "Activeer de vervaldatum voor betalingen" + +#: ../src/PaymentMethods/Banktransfer.php:57 +msgid "Enable this option if you want to be able to set the time after which the payment will expire. This will turn all transactions into payments instead of orders" +msgstr "Activeer deze optie als je de mogelijkheid wilt hebben om het aantal dagen in te stellen waarna de betaling vervalt. Dit zet alle transacties in betalingen om in plaats van ze in bestellingen te wijzigen" + +#: ../src/PaymentMethods/Banktransfer.php:62, ../src/Settings/General/MollieGeneralSettings.php:242 +msgid "Expiry time" +msgstr "Vervaldatum" + +#. translators: Placeholder 1: Default expiry days. +#: ../src/PaymentMethods/Banktransfer.php:65 +msgid "Number of DAYS after the payment will expire. Default %d days" +msgstr "Aantal DAGEN nadat de betaling vervalt. Standaard %d dagen." + +#: ../src/PaymentMethods/Banktransfer.php:74 +msgid "Skip Mollie payment screen" +msgstr "Mollie-betaalscherm overslaan" + +#: ../src/PaymentMethods/Banktransfer.php:75 +msgid "Skip Mollie payment screen when Bank Transfer is selected" +msgstr "Sla Mollie-betaalscherm over wanneer bankoverschrijving is geselecteerd" + +#: ../src/PaymentMethods/Banktransfer.php:76 +msgid "Enable this option if you want to skip redirecting your user to the Mollie payment screen, instead this will redirect your user directly to the WooCommerce order received page displaying instructions how to complete the Bank Transfer payment." +msgstr "Activeer deze optie als je het doorsturen van je gebruiker naar het Mollie-betaalscherm wilt overslaan. In plaats daarvan stuurt dit je gebruiker rechtstreeks naar de WooCommerce-pagina bestelling ontvangen met instructies voor het voltooien van de betaling via bankoverschrijving." + +#: ../src/PaymentMethods/Belfius.php:13 +msgid "Belfius Direct Net" +msgstr "Belfius Direct Net" + +#: ../src/PaymentMethods/Creditcard.php:16 +msgid "Credit card" +msgstr "Creditcard" + +#: ../src/PaymentMethods/Creditcard.php:52 +msgid "Enable Mollie Components" +msgstr "Activeer Mollie-componenten" + +#. translators: Placeholder 1: Mollie Components. +#: ../src/PaymentMethods/Creditcard.php:55 +msgid "Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." +msgstr "Gebruik de Mollie-componenten voor deze gateway. Lees meer over %s en hoe het jouw conversie verbetert." + +#: ../src/PaymentMethods/Creditcard.php:59, ../src/Settings/Page/Components.php:21, ../src/Settings/Page/MollieSettingsPage.php:703 +msgid "Mollie Components" +msgstr "Mollie-componenten" + +#: ../src/PaymentMethods/Creditcard.php:92 +msgid "Customize Icons" +msgstr "Pas pictogrammen aan" + +#: ../src/PaymentMethods/Creditcard.php:99 +msgid "Enable Icons Selector" +msgstr "Activeer pictogram keuzemogelijkheid" + +#: ../src/PaymentMethods/Creditcard.php:100 +msgid "Show customized creditcard icons on checkout page" +msgstr "Toon aangepaste creditcardpictogrammen op betaalpagina" + +#: ../src/PaymentMethods/Creditcard.php:108 +msgid "Show American Express Icon" +msgstr "Toon American Express pictogram" + +#: ../src/PaymentMethods/Creditcard.php:113 +msgid "Show Carta Si Icon" +msgstr "Toon Carta Si pictogram" + +#: ../src/PaymentMethods/Creditcard.php:118 +msgid "Show Carte Bancaire Icon" +msgstr "Toon Carte Bancaire pictogram" + +#: ../src/PaymentMethods/Creditcard.php:123 +msgid "Show Maestro Icon" +msgstr "Toon Maestro pictogram" + +#: ../src/PaymentMethods/Creditcard.php:128 +msgid "Show Mastercard Icon" +msgstr "Toon Mastercard pictogram" + +#: ../src/PaymentMethods/Creditcard.php:133 +msgid "Show Visa Icon" +msgstr "Toon Visa pictogram" + +#: ../src/PaymentMethods/Creditcard.php:138 +msgid "Show VPay Icon" +msgstr "Toon Vpay pictogram" + +#: ../src/PaymentMethods/Directdebit.php:13 +msgid "SEPA Direct Debit" +msgstr "SEPA-incasso" + +#: ../src/PaymentMethods/Directdebit.php:14 +msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscriptions, and will not be shown in the WooCommerce checkout for regular payments! You also need to enable iDEAL and/or other \"first\" payment methods if you want to use SEPA Direct Debit." +msgstr "SEPA-incasso wordt gebruikt voor terugkerende betalingen met WooCommerce-abonnementen, en wordt niet getoond in de WooCommerce kassa voor reguliere betalingen! Je moet ook iDEAL en/of andere \"eerste\" betaalmethoden activeren als je SEPA-incasso wilt gebruiken." + +#: ../src/PaymentMethods/Eps.php:13 +msgid "EPS" +msgstr "EPS" + +#: ../src/PaymentMethods/Giftcard.php:30 +msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency" +msgid "Mollie - Giftcard details: %1$s %2$s %3$s." +msgstr "Mollie - Details cadeaukaart: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:42 +msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency" +msgid " Remainder: %1$s %2$s %3$s." +msgstr " Restant: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:60 +msgid "Gift cards" +msgstr "Cadeaubonnen" + +#: ../src/PaymentMethods/Giftcard.php:62, ../src/PaymentMethods/Giftcard.php:105 +msgid "Select your gift card" +msgstr "Selecteer je cadeaubon" + +#: ../src/PaymentMethods/Giftcard.php:78 +msgid "Show gift cards dropdown" +msgstr "Toon cadeaubonnen-dropdown" + +#: ../src/PaymentMethods/Giftcard.php:84 +msgid "If you disable this, a dropdown with various gift cards will not be shown in the WooCommerce checkout, so users will select a gift card on the Mollie payment page after checkout." +msgstr "Als je dit deactiveert, zal een dropdown met verschillende cadeaubonnen niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een cadeaubon selecteren op de Mollie-betaalpagina na het afrekenen." + +#: ../src/PaymentMethods/Giftcard.php:93, ../src/PaymentMethods/Ideal.php:46, ../src/PaymentMethods/Kbc.php:48 +msgid "Issuers empty option" +msgstr "Optie uitgevers leeg" + +#: ../src/PaymentMethods/Giftcard.php:99 +msgid "This text will be displayed as the first option in the gift card dropdown, but only if the above 'Show gift cards dropdown' is enabled." +msgstr "Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd." + +#: ../src/PaymentMethods/Giropay.php:13 +msgid "Giropay" +msgstr "Giropay" + +#: ../src/PaymentMethods/Ideal.php:15 +msgid "iDEAL" +msgstr "iDEAL" + +#: ../src/PaymentMethods/Ideal.php:17, ../src/PaymentMethods/Ideal.php:55, ../src/PaymentMethods/Kbc.php:16, ../src/PaymentMethods/Kbc.php:60 +msgid "Select your bank" +msgstr "Selecteer je bank" + +#: ../src/PaymentMethods/Ideal.php:34 +msgid "Show iDEAL banks dropdown" +msgstr "Toon iDEAL-banken dropdown" + +#: ../src/PaymentMethods/Ideal.php:37 +msgid "If you disable this, a dropdown with various iDEAL banks will not be shown in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie payment page after checkout." +msgstr "Als je dit deactiveert, zal een dropdown bij verschillende iDEAL-banken niet in de WooCommerce-checkout worden getoond, dus gebruikers zullen een iDEAL-bank selecteren op de Mollie-betaalpagina na het afrekenen." + +#: ../src/PaymentMethods/Ideal.php:49 +msgid "This text will be displayed as the first option in the iDEAL issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above 'Show iDEAL banks dropdown' is enabled." +msgstr "Deze tekst wordt weergegeven als eerste optie in de iDEAL-uitgevers dropdown, als er niets wordt ingevoerd, wordt \"Selecteer je bank\" weergegeven. Alleen als het bovenstaande ''Toon iDEAL-banken dropdown'' is geactiveerd." + +#: ../src/PaymentMethods/In3.php:13 +msgid "in3" +msgstr "in3" + +#: ../src/PaymentMethods/In3.php:15 +msgid "Pay in 3 instalments, 0% interest" +msgstr "Betalen in 3 termijnen, 0% rente" + +#: ../src/PaymentMethods/Kbc.php:14 +msgid "KBC/CBC Payment Button" +msgstr "KBC/CBC Betaalknop" + +#: ../src/PaymentMethods/Kbc.php:33 +msgid "Show KBC/CBC banks dropdown" +msgstr "Toon KBC/CBC-banken dropdown" + +#: ../src/PaymentMethods/Kbc.php:39 +msgid "If you disable this, a dropdown with various KBC/CBC banks will not be shown in the WooCommerce checkout, so users will select a KBC/CBC bank on the Mollie payment page after checkout." +msgstr "Als je dit deactiveert, zal een dropdown bij verschillende KBC/CBC-banken niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een KBC/CBC-bank selecteren op de Mollie-betaalpagina na het afrekenen." + +#: ../src/PaymentMethods/Kbc.php:54 +msgid "This text will be displayed as the first option in the KBC/CBC issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above ''Show KBC/CBC banks dropdown' is enabled." +msgstr "Deze tekst wordt weergegeven als eerste optie in de KBC/CBC-uitgevers drop-down, als er niets wordt ingevoerd, wordt \"Selecteer uw bank\" weergegeven. Alleen als het bovenstaande ''Toon KBC/CBC-banken dropdown'' is geactiveerd." + +#: ../src/PaymentMethods/Klarnapaylater.php:13 +msgid "Klarna Pay later" +msgstr "Klarna betaal later" + +#: ../src/PaymentMethods/Klarnapaylater.php:14, ../src/PaymentMethods/Klarnapaynow.php:14, ../src/PaymentMethods/Klarnasliceit.php:15 +msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required." +msgstr "Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn." + +#: ../src/PaymentMethods/Klarnapaynow.php:13 +msgid "Klarna Pay Now" +msgstr "Klarna betaal nu" + +#: ../src/PaymentMethods/Klarnasliceit.php:14 +msgid "Klarna Slice it" +msgstr "Klarna Betaal in 3 delen" + +#: ../src/PaymentMethods/Mybank.php:14 +msgid "MyBank" +msgstr "MyBank" + +#: ../src/PaymentMethods/Mybank.php:15 +msgid "To accept payments via MyBank" +msgstr "Om betalingen te accepteren via MyBank" + +#: ../src/PaymentMethods/Paypal.php:14 +msgid "PayPal" +msgstr "PayPal" + +#: ../src/PaymentMethods/Paypal.php:34 +msgid "Display on cart page" +msgstr "Toon op de winkelwagenpagina" + +#: ../src/PaymentMethods/Paypal.php:38 +msgid "Enable the PayPal button to be used in the cart page." +msgstr "Activeer de PayPal-knop om te gebruiken op de winkelwagenpagina." + +#: ../src/PaymentMethods/Paypal.php:46 +msgid "Display on product page" +msgstr "Toon op de productpagina" + +#: ../src/PaymentMethods/Paypal.php:50 +msgid "Enable the PayPal button to be used in the product page." +msgstr "Activeer de PayPal-knop om te gebruiken op de productpagina." + +#: ../src/PaymentMethods/Paypal.php:59 +msgctxt "Mollie PayPal Button Settings" +msgid "Button text language and color" +msgstr "Knop tekst taal en kleur" + +#: ../src/PaymentMethods/Paypal.php:60 +msgctxt "Mollie PayPal Button Settings" +msgid "Select the text and the colour of the button." +msgstr "Kies de tekst en de kleur van de knop." + +#: ../src/PaymentMethods/Paypal.php:70 +msgid "Minimum amount to display button" +msgstr "Minimumbedrag voor de weergave van de knop" + +#: ../src/PaymentMethods/Paypal.php:74 +msgid "If the product or the cart total amount is under this number, then the button will not show up." +msgstr "Als het product of het totaalbedrag van de winkelwagen onder dit getal blijft, dan verschijnt de knop niet." + +#: ../src/PaymentMethods/Paypal.php:89 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill blue" +msgstr "Engels -- Kopen met PayPal - Pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:90 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded blue" +msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:91 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill golden" +msgstr "Engels -- Kopen met PayPal - Pilvormig goud" + +#: ../src/PaymentMethods/Paypal.php:92 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded golden" +msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken goud" + +#: ../src/PaymentMethods/Paypal.php:93 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill gray" +msgstr "Engels -- Kopen met PayPal - Pilvormig grijs" + +#: ../src/PaymentMethods/Paypal.php:94 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded gray" +msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken grijs" + +#: ../src/PaymentMethods/Paypal.php:95 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill white" +msgstr "Engels -- Kopen met PayPal - Pilvormig wit" + +#: ../src/PaymentMethods/Paypal.php:96 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded white" +msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken wit" + +#: ../src/PaymentMethods/Paypal.php:97 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill black" +msgstr "Engels -- Betalen met PayPal - Pilvormig zwart" + +#: ../src/PaymentMethods/Paypal.php:98 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded black" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken zwart" + +#: ../src/PaymentMethods/Paypal.php:99 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill blue" +msgstr "Engels -- Betalen met PayPal - Pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:100 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded blue" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:101 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill golden" +msgstr "Engels -- Betalen met PayPal - Pilvormig goud" + +#: ../src/PaymentMethods/Paypal.php:102 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded golden" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken goud" + +#: ../src/PaymentMethods/Paypal.php:103 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill gray" +msgstr "Engels -- Betalen met PayPal - Pilvormig grijs" + +#: ../src/PaymentMethods/Paypal.php:104 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded gray" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken grijs" + +#: ../src/PaymentMethods/Paypal.php:105 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill white" +msgstr "Engels -- Betalen met PayPal - Pilvormig wit" + +#: ../src/PaymentMethods/Paypal.php:106 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded white" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken wit" + +#: ../src/PaymentMethods/Paypal.php:107 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill black" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig zwart" + +#: ../src/PaymentMethods/Paypal.php:108 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded black" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken zwart" + +#: ../src/PaymentMethods/Paypal.php:109 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill blue" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:110 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded blue" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:111 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill golden" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig goud" + +#: ../src/PaymentMethods/Paypal.php:112 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded golden" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken goud" + +#: ../src/PaymentMethods/Paypal.php:113 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill gray" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig grijs" + +#: ../src/PaymentMethods/Paypal.php:114 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded gray" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken grijs" + +#: ../src/PaymentMethods/Paypal.php:115 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill white" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig wit" + +#: ../src/PaymentMethods/Paypal.php:116 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded white" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken wit" + +#: ../src/PaymentMethods/Paypal.php:117 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill black" +msgstr "Nederlands -- Betalen met PayPal - Pilvormig zwart" + +#: ../src/PaymentMethods/Paypal.php:118 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded black" +msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken zwart" + +#: ../src/PaymentMethods/Paypal.php:119 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill blue" +msgstr "Nederlands -- Betalen met PayPal - Pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:120 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded blue" +msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:121 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill golden" +msgstr "Nederlands -- Betalen met PayPal - Pilvormig goud" + +#: ../src/PaymentMethods/Paypal.php:122 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded golden" msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:88 -#: inc/settings/mollie_paypal_button_enabler.php:88 +#: ../src/PaymentMethods/Paypal.php:123 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill gray" msgstr "Nederlands -- Betalen met PayPal - Pilvormig grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:89 -#: inc/settings/mollie_paypal_button_enabler.php:89 +#: ../src/PaymentMethods/Paypal.php:124 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded gray" msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:90 -#: inc/settings/mollie_paypal_button_enabler.php:90 +#: ../src/PaymentMethods/Paypal.php:125 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill white" msgstr "Nederlands -- Betalen met PayPal - Pilvormig wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:91 -#: inc/settings/mollie_paypal_button_enabler.php:91 +#: ../src/PaymentMethods/Paypal.php:126 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded white" msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:92 -#: inc/settings/mollie_paypal_button_enabler.php:92 +#: ../src/PaymentMethods/Paypal.php:127 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill black" msgstr "Duits -- Kopen met PayPal - Pilvormig zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:93 -#: inc/settings/mollie_paypal_button_enabler.php:93 +#: ../src/PaymentMethods/Paypal.php:128 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded black" msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:94 -#: inc/settings/mollie_paypal_button_enabler.php:94 +#: ../src/PaymentMethods/Paypal.php:129 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill blue" msgstr "Duits -- Kopen met PayPal - Pilvormig blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:95 -#: inc/settings/mollie_paypal_button_enabler.php:95 +#: ../src/PaymentMethods/Paypal.php:130 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded blue" msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:96 -#: inc/settings/mollie_paypal_button_enabler.php:96 +#: ../src/PaymentMethods/Paypal.php:131 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill golden" msgstr "Duits -- Kopen met PayPal - Pilvormig goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:97 -#: inc/settings/mollie_paypal_button_enabler.php:97 +#: ../src/PaymentMethods/Paypal.php:132 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded golden" msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:98 -#: inc/settings/mollie_paypal_button_enabler.php:98 +#: ../src/PaymentMethods/Paypal.php:133 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill gray" msgstr "Duits -- Kopen met PayPal - Pilvormig grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:99 -#: inc/settings/mollie_paypal_button_enabler.php:99 +#: ../src/PaymentMethods/Paypal.php:134 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded gray" msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:100 -#: inc/settings/mollie_paypal_button_enabler.php:100 +#: ../src/PaymentMethods/Paypal.php:135 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill white" msgstr "Duits -- Kopen met PayPal - Pilvormig wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:101 -#: inc/settings/mollie_paypal_button_enabler.php:101 +#: ../src/PaymentMethods/Paypal.php:136 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded white" msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:102 -#: inc/settings/mollie_paypal_button_enabler.php:102 +#: ../src/PaymentMethods/Paypal.php:137 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill black" msgstr "Duits -- Betalen met PayPal - Pilvormig zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:103 -#: inc/settings/mollie_paypal_button_enabler.php:103 +#: ../src/PaymentMethods/Paypal.php:138 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded black" msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:104 -#: inc/settings/mollie_paypal_button_enabler.php:104 +#: ../src/PaymentMethods/Paypal.php:139 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill blue" msgstr "Duits -- Betalen met PayPal - Pilvormig blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:105 -#: inc/settings/mollie_paypal_button_enabler.php:105 +#: ../src/PaymentMethods/Paypal.php:140 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded blue" msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:106 -#: inc/settings/mollie_paypal_button_enabler.php:106 +#: ../src/PaymentMethods/Paypal.php:141 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill golden" msgstr "Duits -- Betalen met PayPal - Pilvormig goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:107 -#: inc/settings/mollie_paypal_button_enabler.php:107 +#: ../src/PaymentMethods/Paypal.php:142 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded golden" msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:108 -#: inc/settings/mollie_paypal_button_enabler.php:108 +#: ../src/PaymentMethods/Paypal.php:143 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill gray" msgstr "Duits -- Betalen met PayPal - Pilvormig grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:109 -#: inc/settings/mollie_paypal_button_enabler.php:109 +#: ../src/PaymentMethods/Paypal.php:144 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded gray" msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:110 -#: inc/settings/mollie_paypal_button_enabler.php:110 +#: ../src/PaymentMethods/Paypal.php:145 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill white" msgstr "Duits -- Betalen met PayPal - Pilvormig wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:111 -#: inc/settings/mollie_paypal_button_enabler.php:111 +#: ../src/PaymentMethods/Paypal.php:146 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded white" msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:112 -#: inc/settings/mollie_paypal_button_enabler.php:112 +#: ../src/PaymentMethods/Paypal.php:147 msgctxt "Mollie PayPal button Settings" msgid "French -- Buy with PayPal - Gold" msgstr "Frans -- Kopen met PayPal - Goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:113 -#: inc/settings/mollie_paypal_button_enabler.php:113 +#: ../src/PaymentMethods/Paypal.php:148 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Gold" msgstr "Frans -- Betalen met PayPal - Goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:114 -#: inc/settings/mollie_paypal_button_enabler.php:114 +#: ../src/PaymentMethods/Paypal.php:149 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Silver" msgstr "Frans -- Betalen met PayPal - Zilver" -#: build/inc/settings/mollie_paypal_button_enabler.php:115 -#: inc/settings/mollie_paypal_button_enabler.php:115 -msgctxt "Mollie PayPal button Settings" -msgid "Polish -- Buy with PayPal - Gold" -msgstr "Pools -- Kopen met PayPal - Goud" - -#: build/inc/settings/mollie_paypal_button_enabler.php:116 -#: inc/settings/mollie_paypal_button_enabler.php:116 -msgctxt "Mollie PayPal button Settings" -msgid "Polish -- Checkout with PayPal - Gold" -msgstr "Pools -- Betalen met PayPal - Goud" - -#: build/inc/settings/mollie_paypal_button_enabler.php:117 -#: inc/settings/mollie_paypal_button_enabler.php:117 -msgctxt "Mollie PayPal button Settings" -msgid "Polish -- Checkout with PayPal - Silver" -msgstr "Pools -- Betalen met PayPal - Zilver" - -#: build/inc/settings/mollie_paypal_button_enabler.php:122 -#: inc/settings/mollie_paypal_button_enabler.php:122 -msgid "Minimum amount to display button" -msgstr "Minimumbedrag voor de weergave van de knop" - -#: build/inc/settings/mollie_paypal_button_enabler.php:126 -#: inc/settings/mollie_paypal_button_enabler.php:126 -msgid "" -"If the product or the cart total amount is under this number, then the " -"button will not show up." -msgstr "" -"Als het product of het totaalbedrag van de winkelwagen onder dit getal " -"blijft, dan verschijnt de knop niet." - -#: build/mollie-payments-for-woocommerce.php:90 -#: mollie-payments-for-woocommerce.php:90 -msgid "" -"%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set " -"your API keys here%4$s." -msgstr "" -"%1$sMollie-betalingen voor WooCommerce: API-sleutels ontbreken%2$s Gelieve" -"%3$s je API-sleutels hier in te stellen%4$s." - -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: build/src/Mollie/WC/Gateway/Abstract.php:685 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: src/Mollie/WC/Gateway/Abstract.php:685 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -msgid "Could not create %s payment." -msgstr "Kon geen %s betaling aanmaken." - -#: build/src/Mollie/WC/Gateway/Abstract.php:138 -#: src/Mollie/WC/Gateway/Abstract.php:138 -msgid "No custom logo selected" -msgstr "Geen aangepast logo gekozen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:221 -#: src/Mollie/WC/Gateway/Abstract.php:221 -msgid "Gateway Disabled" -msgstr "Gateway gedeactiveerd" - -#: build/src/Mollie/WC/Gateway/Abstract.php:244 -#: src/Mollie/WC/Gateway/Abstract.php:244 -msgid "Return to payments" -msgstr "Ga terug naar betalingen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:260 -#: build/src/Mollie/WC/Helper/Settings.php:114 -#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114 -msgid "Sell to specific countries" -msgstr "Verkopen aan specifieke landen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:272 -#: src/Mollie/WC/Gateway/Abstract.php:272 -msgid "Choose countries…" -msgstr "Selecteer landen;" - -#: build/src/Mollie/WC/Gateway/Abstract.php:273 -#: src/Mollie/WC/Gateway/Abstract.php:273 -msgid "Country" -msgstr "Land" - -#: build/src/Mollie/WC/Gateway/Abstract.php:282 -#: src/Mollie/WC/Gateway/Abstract.php:282 -msgid "Select all" -msgstr "Selecteer alles" - -#: build/src/Mollie/WC/Gateway/Abstract.php:283 -#: src/Mollie/WC/Gateway/Abstract.php:283 -msgid "Select none" -msgstr "Selecteer niets" - -#: build/src/Mollie/WC/Gateway/Abstract.php:337 -#: build/src/Mollie/WC/Helper/Settings.php:558 -#: src/Mollie/WC/Gateway/Abstract.php:337 src/Mollie/WC/Helper/Settings.php:558 -msgid "Test mode enabled." -msgstr "Testmodus geactiveerd." - -#. translators: The surrounding %s's Will be replaced by a link to the global setting page -#: build/src/Mollie/WC/Gateway/Abstract.php:339 -#: src/Mollie/WC/Gateway/Abstract.php:339 -msgid "No API key provided. Please %sset you Mollie API key%s first." -msgstr "Geen API-sleutel verschaft. Plaats %sje Mollie API-sleutel%s eerst." - -#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Gateway/Abstract.php:351 -#: src/Mollie/WC/Gateway/Abstract.php:351 -msgid "" -"%s not enabled in your Mollie profile. You can enable it by editing your " -"%sMollie profile%s." -msgstr "" -"%s niet geactiveerd in je Mollie-profiel. Je kan het activeren door je " -"%sMollie-profiel%s te bewerken." - -#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies -#: build/src/Mollie/WC/Gateway/Abstract.php:363 -#: src/Mollie/WC/Gateway/Abstract.php:363 -msgid "" -"Current shop currency %s not supported by Mollie. Read more about " -"%ssupported currencies and payment methods.%s " -msgstr "" -"Huidige shopvaluta %s niet ondersteund door Mollie. Lees meer over " -"%sondersteunde valuta's en betaalmethoden.%s " - -#: build/src/Mollie/WC/Gateway/Abstract.php:525 -#: src/Mollie/WC/Gateway/Abstract.php:525 -msgid "Could not load order %s" -msgstr "Kon bestelling %s niet laden" - -#: build/src/Mollie/WC/Gateway/Abstract.php:577 -#: src/Mollie/WC/Gateway/Abstract.php:577 -msgid "" -"Order completed internally because of an existing valid mandate at Mollie." -msgstr "" -"Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie." - -#: build/src/Mollie/WC/Gateway/Abstract.php:588 -#: src/Mollie/WC/Gateway/Abstract.php:588 -msgid "" -"Subscription switch failed, no valid mandate found. Place a completely new " -"order to change your subscription." -msgstr "" -"Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats " -"een volledig nieuwe bestelling om je abonnement te wijzigen." - -#: build/src/Mollie/WC/Gateway/Abstract.php:589 -#: src/Mollie/WC/Gateway/Abstract.php:589 -msgid "Failed switching subscriptions, no valid mandate." -msgstr "Wijziging abonnement mislukt, geen geldige opdracht." - -#: build/src/Mollie/WC/Gateway/Abstract.php:658 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:413 -#: src/Mollie/WC/Gateway/Abstract.php:658 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:413 -msgid "Awaiting payment confirmation." -msgstr "In afwachting van betalingsbevestiging" - -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:668 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:420 -#: src/Mollie/WC/Gateway/Abstract.php:668 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:420 -msgid "%s payment started (%s)." -msgstr "%s betaling gestart (%s)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:670 -#: build/src/Mollie/WC/Gateway/Abstract.php:897 -#: build/src/Mollie/WC/Gateway/Abstract.php:1181 -#: build/src/Mollie/WC/Gateway/Abstract.php:1243 -#: build/src/Mollie/WC/Gateway/Abstract.php:1618 -#: build/src/Mollie/WC/Gateway/Abstract.php:2142 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: build/src/Mollie/WC/Payment/Object.php:608 -#: build/src/Mollie/WC/Payment/Object.php:642 -#: build/src/Mollie/WC/Payment/Order.php:264 -#: build/src/Mollie/WC/Payment/Order.php:316 -#: build/src/Mollie/WC/Payment/Order.php:363 -#: build/src/Mollie/WC/Payment/Order.php:446 -#: build/src/Mollie/WC/Payment/Order.php:511 -#: build/src/Mollie/WC/Payment/Order.php:936 -#: build/src/Mollie/WC/Payment/Payment.php:249 -#: build/src/Mollie/WC/Payment/Payment.php:336 -#: build/src/Mollie/WC/Payment/Payment.php:406 -#: build/src/Mollie/WC/Payment/Payment.php:429 -#: src/Mollie/WC/Gateway/Abstract.php:670 -#: src/Mollie/WC/Gateway/Abstract.php:897 -#: src/Mollie/WC/Gateway/Abstract.php:1181 -#: src/Mollie/WC/Gateway/Abstract.php:1243 -#: src/Mollie/WC/Gateway/Abstract.php:1618 -#: src/Mollie/WC/Gateway/Abstract.php:2142 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642 -#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316 -#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446 -#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936 -#: src/Mollie/WC/Payment/Payment.php:249 src/Mollie/WC/Payment/Payment.php:336 -#: src/Mollie/WC/Payment/Payment.php:406 src/Mollie/WC/Payment/Payment.php:429 -msgid "test mode" -msgstr "testmodus" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:894 -#: src/Mollie/WC/Gateway/Abstract.php:894 -msgid "%s payment %s (%s), not processed." -msgstr "%s betaling %s (%s), niet verwerkt." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1008 -#: src/Mollie/WC/Gateway/Abstract.php:1008 -msgid "" -"New refund %s processed in Mollie Dashboard! Order note added, but order not " -"updated." -msgstr "" -"Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, " -"maar bestelling niet geüpdatet." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1144 -#: src/Mollie/WC/Gateway/Abstract.php:1144 -msgid "New chargeback %s processed! Order note and order status updated." -msgstr "" -"Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1176 -#: src/Mollie/WC/Gateway/Abstract.php:1176 -msgid "" -"%s payment charged back via Mollie (%s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%s betaling teruggevorderd via Mollie (%s). Je moet de betaling handmatig " -"controleren (en productvoorraden aanpassen als je dit gebruikt)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1237 -#: src/Mollie/WC/Gateway/Abstract.php:1237 -msgid "" -"%s payment charged back via Mollie (%s). Subscription status updated, please " -"review (and adjust product stocks if you use it)." -msgstr "" -"%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet, " -"gelieve te beoordelen (en productvoorraden aan te passen als je dit " -"gebruikt)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1314 -#: src/Mollie/WC/Gateway/Abstract.php:1314 -msgid "" -"You have cancelled your payment. Please complete your order with a different " -"payment method." -msgstr "" -"Je hebt je betaling geannuleerd. Vervolledig je bestelling met een andere " -"betaalmethode." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1328 -#: build/src/Mollie/WC/Gateway/Abstract.php:1337 -#: src/Mollie/WC/Gateway/Abstract.php:1328 -#: src/Mollie/WC/Gateway/Abstract.php:1337 -msgid "" -"Your payment was not successful. Please complete your order with a different " -"payment method." -msgstr "" -"Je betaling is niet gelukt. Vervolledig je bestelling met een andere " -"betaalmethode." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1529 -#: src/Mollie/WC/Gateway/Abstract.php:1529 -msgid "We have not received a definite payment status." -msgstr "We hebben geen definitieve betalingsstatus ontvangen." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1534 -#: src/Mollie/WC/Gateway/Abstract.php:1534 -msgid "" -"We have not received a definite payment status. You will receive an email as " -"soon as we receive a confirmation of the bank/merchant." -msgstr "" -"We hebben geen definitieve betalingsstatus ontvangen. Je ontvangt een e-mail " -"zodra we een bevestiging van de bank/handelaar ontvangen." - -#. translators: Placeholder 1: payment method -#: build/src/Mollie/WC/Gateway/Abstract.php:1541 -#: src/Mollie/WC/Gateway/Abstract.php:1541 -msgid "Payment completed with %s" -msgstr "Betaling voltooid met %s" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1589 -#: src/Mollie/WC/Gateway/Abstract.php:1589 -msgid "Order cancelled" -msgstr "Bestelling geannuleerd" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1616 -#: src/Mollie/WC/Gateway/Abstract.php:1616 -msgid "" -"%s payment still pending (%s) but customer already returned to the store. " -"Status should be updated automatically in the future, if it doesn't this " -"might indicate a communication issue between the site and Mollie." -msgstr "" -"%s betaling nog in behandeling (%s) maar klant is reeds teruggekeerd naar de " -"shop. Status moet in de toekomst automatisch worden bijgewerkt, als dat niet " -"gebeurt, kan dit wijzen op een communicatieprobleem tussen de site en Mollie." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1625 -#: src/Mollie/WC/Gateway/Abstract.php:1625 -msgid ", payment pending." -msgstr ", betaling in behandeling." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1652 -#: src/Mollie/WC/Gateway/Abstract.php:1652 -msgid "Your order has been cancelled." -msgstr "Je bestelling is geannuleerd." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:2129 -#: src/Mollie/WC/Gateway/Abstract.php:2129 -msgid "" -"%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%1$s betaling %2$s via Mollie (%3$s %4$s). Je moet de betaling handmatig " -"controleren (en productvoorraden aanpassen als je dit gebruikt)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:2166 -#: src/Mollie/WC/Gateway/Abstract.php:2166 -msgctxt "" -"Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid "Mollie - Giftcard details: %1$s %2$s %3$s." -msgstr "Mollie - Details cadeaukaart: %1$s %2$s %3$s." - -#: build/src/Mollie/WC/Gateway/Abstract.php:2178 -#: src/Mollie/WC/Gateway/Abstract.php:2178 -msgctxt "" -"Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid " Remainder: %1$s %2$s %3$s." -msgstr " Restant: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Paypal.php:150 +msgctxt "Mollie PayPal button Settings" +msgid "Polish -- Buy with PayPal - Gold" +msgstr "Pools -- Kopen met PayPal - Goud" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. -#: build/src/Mollie/WC/Gateway/Abstract.php:2580 -#: src/Mollie/WC/Gateway/Abstract.php:2580 -msgid " + %1$s %2$s fee might apply" -msgstr " + %1$s %2$s prijstoeslag zou van toepassing kunnen zijn" +#: ../src/PaymentMethods/Paypal.php:151 +msgctxt "Mollie PayPal button Settings" +msgid "Polish -- Checkout with PayPal - Gold" +msgstr "Pools -- Betalen met PayPal - Goud" -#. translators: Placeholder 1: Fee amount tag. -#: build/src/Mollie/WC/Gateway/Abstract.php:2590 -#: src/Mollie/WC/Gateway/Abstract.php:2590 -msgid " + %1$s%% fee might apply" -msgstr " + %1$s%% prijstoeslag zou van toepassing kunnen zijn" +#: ../src/PaymentMethods/Paypal.php:152 +msgctxt "Mollie PayPal button Settings" +msgid "Polish -- Checkout with PayPal - Silver" +msgstr "Pools -- Betalen met PayPal - Zilver" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. -#: build/src/Mollie/WC/Gateway/Abstract.php:2607 -#: src/Mollie/WC/Gateway/Abstract.php:2607 -msgid " + %1$s %2$s + %3$s%% fee might apply" -msgstr " + %1$s %2$s + %3$s%% prijstoeslag zou van toepassing kunnen zijn" +#: ../src/PaymentMethods/Paysafecard.php:14 +msgid "paysafecard" +msgstr "paysafecard" -#: build/src/Mollie/WC/Gateway/Abstract.php:2646 -#: src/Mollie/WC/Gateway/Abstract.php:2646 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must " -"be under 500kb." -msgstr "" -"%1$sMollie-betalingen voor WooCommerce%2$s Uploaden bestand niet mogelijk. " -"De grootte mag niet meer bedragen dan 500 kB." +#: ../src/PaymentMethods/Przelewy24.php:14 +msgid "Przelewy24" +msgstr "Przelewy24" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -msgid "Order completed using %1$s payment (%2$s)." -msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)." +#: ../src/PaymentMethods/Przelewy24.php:15 +msgid "To accept payments via Przelewy24, a customer email is required for every payment." +msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail van de klant vereist." -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:165 -msgid "" -"Updated subscription from 'On hold' to 'Active' until payment fails, because " -"a SEPA Direct Debit payment takes some time to process." -msgstr "" -"Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, " -"omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is." +#: ../src/PaymentMethods/Sofort.php:14 +msgid "SOFORT Banking" +msgstr "SOFORT Banking" -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:313 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:313 -msgid "Could not create %s renewal payment." -msgstr "Kon geen %s betalingshernieuwing aanmaken." +#: ../src/PaymentMethods/Voucher.php:35 +msgid "Voucher" +msgstr "Waardebon" -#: build/src/Mollie/WC/Gateway/Applepay.php:48 -#: src/Mollie/WC/Gateway/Applepay.php:48 -msgid "Apple Pay" -msgstr "Apple Pay" +#: ../src/PaymentMethods/Voucher.php:54, ../src/Gateway/Voucher/VoucherModule.php:220 +msgid "Select the default products category" +msgstr "Selecteer de categorie standaard producten" -#: build/src/Mollie/WC/Gateway/Applepay.php:56 -#: src/Mollie/WC/Gateway/Applepay.php:56 -msgid "To accept payments via Apple Pay" -msgstr "Om betalingen te accepteren via Apple Pay" +#: ../src/PaymentMethods/Voucher.php:57 +msgid "No category" +msgstr "Geen categorie" -#: build/src/Mollie/WC/Gateway/Bancontact.php:29 -#: src/Mollie/WC/Gateway/Bancontact.php:29 -msgid "Bancontact" -msgstr "Bancontact" +#: ../src/PaymentMethods/Voucher.php:58, ../src/Gateway/Voucher/VoucherModule.php:113, ../src/Gateway/Voucher/VoucherModule.php:147, ../src/Gateway/Voucher/VoucherModule.php:178, ../src/Gateway/Voucher/VoucherModule.php:233, ../src/Gateway/Voucher/VoucherModule.php:293 +msgid "Meal" +msgstr "Maaltijd" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:38 -#: build/src/Mollie/WC/Helper/Settings.php:257 -#: src/Mollie/WC/Gateway/BankTransfer.php:38 -#: src/Mollie/WC/Helper/Settings.php:257 -msgid "Activate expiry date setting" -msgstr "Activeer instelling vervaldatum" +#: ../src/PaymentMethods/Voucher.php:59, ../src/Gateway/Voucher/VoucherModule.php:114, ../src/Gateway/Voucher/VoucherModule.php:148, ../src/Gateway/Voucher/VoucherModule.php:181, ../src/Gateway/Voucher/VoucherModule.php:234, ../src/Gateway/Voucher/VoucherModule.php:294 +msgid "Eco" +msgstr "Eco" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:39 -#: build/src/Mollie/WC/Helper/Settings.php:258 -#: src/Mollie/WC/Gateway/BankTransfer.php:39 -#: src/Mollie/WC/Helper/Settings.php:258 -msgid "Enable expiry date for payments" -msgstr "Activeer de vervaldatum voor betalingen" +#: ../src/PaymentMethods/Voucher.php:60, ../src/Gateway/Voucher/VoucherModule.php:115, ../src/Gateway/Voucher/VoucherModule.php:149, ../src/Gateway/Voucher/VoucherModule.php:184, ../src/Gateway/Voucher/VoucherModule.php:235, ../src/Gateway/Voucher/VoucherModule.php:295 +msgid "Gift" +msgstr "Cadeau" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:40 -#: src/Mollie/WC/Gateway/BankTransfer.php:40 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the payment will expire. This will turn all transactions into payments " -"instead of orders" -msgstr "" -"Activeer deze optie als je het aantal dagen nadat de betaling vervalt in " -"wilt kunnen stellen. Dit zet alle transacties in betalingen om in plaats van " -"ze in bestellingen te wijzigen" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:45 -#: build/src/Mollie/WC/Helper/Settings.php:264 -#: build/src/Mollie/WC/Plugin.php:927 src/Mollie/WC/Gateway/BankTransfer.php:45 -#: src/Mollie/WC/Helper/Settings.php:264 src/Mollie/WC/Plugin.php:927 -msgid "Expiry date" -msgstr "Vervaldatum" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/PaymentMethods/Voucher.php:64 +msgid "In order to process it, all products in the order must have a category. This selector will assign the default category for the shop products" +msgstr "Daarvoor moeten alle producten uit de bestelling een categorie hebben. Deze keuzemogelijkheid zal de standaard categorie voor de producten uit de shop toewijzen" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:47 -#: src/Mollie/WC/Gateway/BankTransfer.php:47 -msgid "" -"Number of DAYS after the payment will expire. Default %d days" -msgstr "" -"Aantal DAGEN nadat de betaling vervalt. Standaard %d dagen." +#: ../src/SDK/Api.php:49 +msgid "Invalid API key(s). Get them on the %1$sDevelopers page in the Mollie dashboard%2$s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters." +msgstr "Ongeldige API-sleutel(s). Haal deze op van de %1$sDevelopers-pagina in het Mollie-dashboard%2$s. De API-sleutel(s) moeten beginnen met 'live_' of 'test_', ten minste 30 tekens lang zijn en mogen verder geen speciale tekens bevatten." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:56 -#: src/Mollie/WC/Gateway/BankTransfer.php:56 -msgid "Skip Mollie payment screen" -msgstr "Mollie-betaalscherm overslaan" +#: ../src/SDK/Api.php:47 +msgid "No API key provided. Please set your Mollie API keys below." +msgstr "Geen API-sleutel verschaft. Stel je Mollie API-sleutels hieronder in." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:57 -#: src/Mollie/WC/Gateway/BankTransfer.php:57 -msgid "Skip Mollie payment screen when Bank Transfer is selected" -msgstr "" -"Sla Mollie-betaalscherm over wanneer bankoverschrijving is geselecteerd" +#: ../src/Settings/Settings.php:174 +msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb." +msgstr "%1$sMollie-betalingen voor WooCommerce%2$s Uploaden bestand niet mogelijk. De grootte mag niet meer bedragen dan 500 kB." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:58 -#: src/Mollie/WC/Gateway/BankTransfer.php:58 -msgid "" -"Enable this option if you want to skip redirecting your user to the Mollie " -"payment screen, instead this will redirect your user directly to the " -"WooCommerce order received page displaying instructions how to complete the " -"Bank Transfer payment." -msgstr "" -"Activeer deze optie als je het doorsturen van je gebruiker naar het Mollie-" -"betaalscherm wilt overslaan. In plaats daarvan stuurt dit je gebruiker " -"rechtstreeks naar de WooCommerce-pagina bestelling ontvangen met instructies " -"voor het voltooien van de betaling via bankoverschrijving." +#: ../src/Settings/Settings.php:216 +msgid "Gateway Disabled" +msgstr "Gateway gedeactiveerd" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:138 -#: src/Mollie/WC/Gateway/BankTransfer.php:138 -msgid "Bank Transfer" -msgstr "Bankoverdracht" +#: ../src/Settings/Settings.php:237 +msgid "Return to payments" +msgstr "Ga terug naar betalingen" -#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC -#: build/src/Mollie/WC/Gateway/BankTransfer.php:188 -#: build/src/Mollie/WC/Gateway/DirectDebit.php:80 -#: build/src/Mollie/WC/Gateway/Ideal.php:124 -#: build/src/Mollie/WC/Gateway/Sofort.php:64 -#: src/Mollie/WC/Gateway/BankTransfer.php:188 -#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124 -#: src/Mollie/WC/Gateway/Sofort.php:64 -msgid "" -"Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" -msgstr "" -"Betaling voltooid door %1$s (IBAN (ten minste 4 cijfers): %2$s, BIC: %3$s)" +#: ../src/Settings/Settings.php:252, ../src/Settings/General/MollieGeneralSettings.php:86 +msgid "Sell to specific countries" +msgstr "Verkopen aan specifieke landen" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:198 -#: src/Mollie/WC/Gateway/BankTransfer.php:198 -msgid "" -"Please complete your payment by transferring the total amount to the " -"following bank account:" -msgstr "" -"Voltooi je betaling door het totale bedrag over te maken naar de volgende " -"bankrekening:" +#: ../src/Settings/Settings.php:264 +msgid "Choose countries…" +msgstr "Selecteer landen;" -#. translators: Placeholder 1: 'Stichting Mollie Payments' -#: build/src/Mollie/WC/Gateway/BankTransfer.php:202 -#: src/Mollie/WC/Gateway/BankTransfer.php:202 -msgid "Beneficiary: %s" -msgstr "Begunstigde: %s" +#: ../src/Settings/Settings.php:265 +msgid "Country" +msgstr "Land" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:203 -#: src/Mollie/WC/Gateway/BankTransfer.php:203 -msgid "IBAN: %s" -msgstr "IBAN: %s" +#: ../src/Settings/Settings.php:274 +msgid "Select all" +msgstr "Selecteer alles" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:204 -#: src/Mollie/WC/Gateway/BankTransfer.php:204 -msgid "BIC: %s" -msgstr "BIC: %s" +#: ../src/Settings/Settings.php:275 +msgid "Select none" +msgstr "Selecteer niets" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:209 -#: src/Mollie/WC/Gateway/BankTransfer.php:209 -msgid "Payment reference: %s" -msgstr "Betalingsreferentie: %s." +#: ../src/Settings/Settings.php:470 +msgid "Error" +msgstr "Fout" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:214 -#: src/Mollie/WC/Gateway/BankTransfer.php:214 -msgid "Please provide the payment reference %s" -msgstr "Vermeld de betalingsreferentie %s" +#: ../src/Settings/Settings.php:484 +msgid "Mollie status:" +msgstr "Mollie-status:" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:228 -#: src/Mollie/WC/Gateway/BankTransfer.php:228 -msgid "The payment will expire on %s." -msgstr "De betaling vervalt op %s." +#: ../src/Settings/Settings.php:485 +msgid "Connected" +msgstr "Verbonden" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:235 -#: src/Mollie/WC/Gateway/BankTransfer.php:235 -msgid "" -"The payment will expire on %s. Please make sure you " -"transfer the total amount before this date." -msgstr "" -"De betaling vervalt op %s. Zorg ervoor dat je vóór deze " -"datum het totale bedrag overmaakt." +#: ../src/Settings/SettingsModule.php:171 +msgid "Mollie settings" +msgstr "Mollie-instellingen" -#: build/src/Mollie/WC/Gateway/Belfius.php:33 -#: src/Mollie/WC/Gateway/Belfius.php:33 -msgid "Belfius Direct Net" -msgstr "Belfius Direct Net" +#: ../src/Settings/SettingsModule.php:177 +msgid "Logs" +msgstr "Logs" -#: build/src/Mollie/WC/Gateway/Creditcard.php:84 -#: src/Mollie/WC/Gateway/Creditcard.php:84 -msgid "Credit card" -msgstr "Creditcard" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/SettingsModule.php:187 +msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production." +msgstr "%1$sMollie-betalingen voor WooCommerce%2$s De testmodus is actief, %3$s deactiveer deze%4$s voordat je in productie gaat." -#. translators: Placeholder 1: card holder -#: build/src/Mollie/WC/Gateway/Creditcard.php:136 -#: src/Mollie/WC/Gateway/Creditcard.php:136 -msgid "Payment completed by %s" -msgstr "Betaling voltooid door %s." +#: ../src/Shared/Data.php:628 +msgid "Item #%1$s stock incremented from %2$s to %3$s." +msgstr "Item #%1$s voorraad verhoogd van %2$s naar %3$s." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:42 -#: src/Mollie/WC/Gateway/DirectDebit.php:42 -msgid "SEPA Direct Debit" -msgstr "SEPA-incasso" +#. translators: Placeholder 1: Plugin title. Placeholder 2: Min WooCommerce version. Placeholder 3: WooCommerce version used. +#: ../src/Shared/Status.php:74 +msgid "The %1$s plugin requires at least WooCommerce version %2$s, you are using version %3$s. Please update your WooCommerce plugin." +msgstr "De %1$s plugin vereist ten minste WooCommerce versie %2$s, jij gebruikt versie %3$s. Update je WooCommerce plugin." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:49 -#: src/Mollie/WC/Gateway/DirectDebit.php:49 -msgid "" -"SEPA Direct Debit is used for recurring payments with WooCommerce " -"Subscriptions, and will not be shown in the WooCommerce checkout for regular " -"payments! You also need to enable iDEAL and/or other \"first\" payment " -"methods if you want to use SEPA Direct Debit." -msgstr "" -"SEPA-incasso wordt gebruikt voor terugkerende betalingen met WooCommerce-" -"abonnementen, en wordt niet getoond in de WooCommerce kassa voor reguliere " -"betalingen! Je moet ook iDEAL en/of andere \"eerste\" betaalmethoden " -"activeren als je SEPA-incasso wilt gebruiken." +#: ../src/Shared/Status.php:87 +msgid "Mollie API client not installed. Please make sure the plugin is installed correctly." +msgstr "Mollie API client niet geïnstalleerd. Controleer of de plugin correct is geïnstalleerd." -#: build/src/Mollie/WC/Gateway/EPS.php:29 src/Mollie/WC/Gateway/EPS.php:29 -msgid "EPS" -msgstr "EPS" +#: ../src/Shared/Status.php:96 +msgid "Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable it in your server or ask your webhoster to enable it for you." +msgstr "Mollie-betalingen voor WooCommerce vereisen de JSON extensie voor PHP. Activeer dit op je server of vraag je webhoster om het voor jou te activeren." -#: build/src/Mollie/WC/Gateway/Giftcard.php:31 -#: src/Mollie/WC/Gateway/Giftcard.php:31 -msgid "Show gift cards dropdown" -msgstr "Toon cadeaubonnen-dropdown" +#. translators: Placeholder 1: Min PHP version. Placeholder 2: PHP version used. Placeholder 3: Opening link tag. placeholder 4: Closing link tag. +#: ../src/Shared/Status.php:111 +msgid "Mollie Payments for WooCommerce require PHP %1$s or higher, you have PHP %2$s. Please upgrade and view %3$sthis FAQ%4$s" +msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %1$s of hoger, jij hebt PHP %2$s. Installeer de upgrade en bekijk %3$sdeze FAQ%4$s" -#: build/src/Mollie/WC/Gateway/Giftcard.php:33 -#: src/Mollie/WC/Gateway/Giftcard.php:33 -msgid "" -"If you disable this, a dropdown with various gift cards will not be shown in " -"the WooCommerce checkout, so users will select a gift card on the Mollie " -"payment page after checkout." -msgstr "" -"Als je dit deactiveert, zal een dropdown met verschillende cadeaubonnen niet " -"in de WooCommerce- checkout worden getoond, dus gebruikers zullen een " -"cadeaubon selecteren op de Mollie-betaalpagina na het afrekenen." - -#: build/src/Mollie/WC/Gateway/Giftcard.php:37 -#: build/src/Mollie/WC/Gateway/Ideal.php:39 -#: build/src/Mollie/WC/Gateway/Kbc.php:38 src/Mollie/WC/Gateway/Giftcard.php:37 -#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Kbc.php:38 -msgid "Issuers empty option" -msgstr "Optie uitgevers leeg" +#: ../src/Shared/Status.php:123 +msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration." +msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON geactiveerd is. Activeer de 'json' extensie in je PHP-configuratie." -#: build/src/Mollie/WC/Gateway/Giftcard.php:39 -#: src/Mollie/WC/Gateway/Giftcard.php:39 -msgid "" -"This text will be displayed as the first option in the gift card dropdown, " -"but only if the above 'Show gift cards dropdown' is enabled." -msgstr "" -"Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar " -"alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd." +#: ../src/Shared/Status.php:130 +msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration." +msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL geactiveerd is. Activeer de 'curl' extensie in je PHP-configuratie." -#: build/src/Mollie/WC/Gateway/Giftcard.php:58 -#: src/Mollie/WC/Gateway/Giftcard.php:58 -msgid "Gift cards" -msgstr "Cadeaubonnen" +#: ../src/Shared/Status.php:138 +msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available." +msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn." -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Giftcard.php:74 -#: src/Mollie/WC/Gateway/Giftcard.php:74 -msgid "Select your gift card" -msgstr "Selecteer je cadeaubon" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSepaRecurringGateway.php:136, ../src/Subscription/MollieSubscriptionGateway.php:468 +msgid "%1$s payment started (%2$s)." +msgstr "%1$s betaling gestart (%2$s)." -#: build/src/Mollie/WC/Gateway/Giropay.php:29 -#: src/Mollie/WC/Gateway/Giropay.php:29 -msgid "Giropay" -msgstr "Giropay" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSubscriptionGateway.php:199 +msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process." +msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is." -#: build/src/Mollie/WC/Gateway/Ideal.php:33 src/Mollie/WC/Gateway/Ideal.php:33 -msgid "Show iDEAL banks dropdown" -msgstr "Toon iDEAL-banken dropdown" +#: ../src/Subscription/MollieSubscriptionGateway.php:299 +msgid "The customer (%s) could not be used or found. " +msgstr "De klant (%s) kon niet gebruikt of gevonden worden. " -#: build/src/Mollie/WC/Gateway/Ideal.php:35 src/Mollie/WC/Gateway/Ideal.php:35 -msgid "" -"If you disable this, a dropdown with various iDEAL banks will not be shown " -"in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie " -"payment page after checkout." -msgstr "" -"Als je dit deactiveert, zal een dropdown bij verschillende iDEAL-banken niet " -"in de WooCommerce-checkout worden getoond, dus gebruikers zullen een iDEAL-" -"bank selecteren op de Mollie-betaalpagina na het afrekenen." +#: ../src/Subscription/MollieSubscriptionGateway.php:326 +msgid "The customer (%s) does not have a valid mandate." +msgstr "De klant (%s) heeft geen geldig mandaat." -#: build/src/Mollie/WC/Gateway/Ideal.php:41 src/Mollie/WC/Gateway/Ideal.php:41 -msgid "" -"This text will be displayed as the first option in the iDEAL issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above 'Show iDEAL banks dropdown' is enabled." -msgstr "" -"Deze tekst wordt weergegeven als eerste optie in de iDEAL-uitgevers " -"dropdown, als er niets wordt ingevoerd, wordt \"Selecteer uw bank\" " -"weergegeven. Alleen als het bovenstaande ''Toon iDEAL-banken dropdown'' is " -"geactiveerd." +#. translators: Placeholder 1: Payment method title +#: ../src/Subscription/MollieSubscriptionGateway.php:366 +msgid "Could not create %s renewal payment." +msgstr "Kon geen %s betalingshernieuwing aanmaken." -#: build/src/Mollie/WC/Gateway/Ideal.php:60 src/Mollie/WC/Gateway/Ideal.php:60 -msgid "iDEAL" -msgstr "iDEAL" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Subscription/SubscriptionModule.php:106 +msgid "%1$s payment failed (%2$s)." +msgstr "%1$s betaling mislukt (%2$s)." -#. translators: Default iDEAL description, displayed above issuer drop down -#. translators: Default KBC/CBC dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Ideal.php:76 -#: build/src/Mollie/WC/Gateway/Kbc.php:75 src/Mollie/WC/Gateway/Ideal.php:76 -#: src/Mollie/WC/Gateway/Kbc.php:75 -msgid "Select your bank" -msgstr "Selecteer je bank" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:42 +msgid "%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sServer voldoet niet aan Apple vereisten%2$s Controleer %3$sde pagina met Apple serververeisten%4$s om dit op te lossen, zodat de Apple Pay betaalknop werkt" -#: src/Mollie/WC/Gateway/In3:29 -msgid "in3" -msgstr "in3" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:58 +msgid "%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sApple Pay valideringsfout%2$s Controleer %3$sde pagina met Apple serververeisten%4$s om dit op te lossen, zodat de Apple Pay betaalknop werkt" -#: build/src/Mollie/WC/Gateway/Kbc.php:32 src/Mollie/WC/Gateway/Kbc.php:32 -msgid "Show KBC/CBC banks dropdown" -msgstr "Toon KBC/CBC-banken dropdown" +#: ../src/Gateway/Voucher/VoucherModule.php:78, ../src/Settings/Page/MollieSettingsPage.php:49, ../src/Settings/Page/MollieSettingsPage.php:182 +msgid "Mollie Settings" +msgstr "Mollie-instellingen" -#: build/src/Mollie/WC/Gateway/Kbc.php:34 src/Mollie/WC/Gateway/Kbc.php:34 -msgid "" -"If you disable this, a dropdown with various KBC/CBC banks will not be shown " -"in the WooCommerce checkout, so users will select a KBC/CBC bank on the " -"Mollie payment page after checkout." -msgstr "" -"Als je dit deactiveert, zal een dropdown bij verschillende KBC/CBC-banken " -"niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een " -"KBC/CBC-bank selecteren op de Mollie-betaalpagina na het afrekenen." +#: ../src/Gateway/Voucher/VoucherModule.php:108, ../src/Gateway/Voucher/VoucherModule.php:143, ../src/Gateway/Voucher/VoucherModule.php:166 +msgid "Mollie Voucher Category" +msgstr "Mollie-waardeboncategorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:40 src/Mollie/WC/Gateway/Kbc.php:40 -msgid "" -"This text will be displayed as the first option in the KBC/CBC issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above ''Show KBC/CBC banks dropdown' is enabled." -msgstr "" -"Deze tekst wordt weergegeven als eerste optie in de KBC/CBC-uitgevers drop-" -"down, als er niets wordt ingevoerd, wordt \"Selecteer uw bank\" weergegeven. " -"Alleen als het bovenstaande ''Toon KBC/CBC-banken dropdown'' is geactiveerd." +#: ../src/Gateway/Voucher/VoucherModule.php:111, ../src/Gateway/Voucher/VoucherModule.php:145, ../src/Gateway/Voucher/VoucherModule.php:170 +msgid "--Please choose an option--" +msgstr "--Kies een optie--" -#: build/src/Mollie/WC/Gateway/Kbc.php:59 src/Mollie/WC/Gateway/Kbc.php:59 -msgid "KBC/CBC Payment Button" -msgstr "KBC/CBC Betaalknop" +#: ../src/Gateway/Voucher/VoucherModule.php:112, ../src/Gateway/Voucher/VoucherModule.php:146, ../src/Gateway/Voucher/VoucherModule.php:175, ../src/Gateway/Voucher/VoucherModule.php:232, ../src/Gateway/Voucher/VoucherModule.php:292 +msgid "No Category" +msgstr "Geen categorie" -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -msgid "Klarna Pay later" -msgstr "Klarna betaal later" +#: ../src/Gateway/Voucher/VoucherModule.php:151, ../src/Gateway/Voucher/VoucherModule.php:188 +msgid "Select a voucher category to apply to all products with this category" +msgstr "Selecteer een waardeboncategorie om toe te passen op alle producten met deze categorie" -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -msgid "" -"To accept payments via Klarna, all default WooCommerce checkout fields " -"should be enabled and required." -msgstr "" -"Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-" -"afrekenvelden geactiveerd en vereist zijn." +#: ../src/Gateway/Voucher/VoucherModule.php:224 +msgid "Products voucher category" +msgstr "Categorie producten waardebon" -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -msgid "Klarna Pay now" -msgstr "Klarna betaal nu" +#: ../src/Gateway/Voucher/VoucherModule.php:231, ../src/Gateway/Voucher/VoucherModule.php:291 +msgid "Same as default category" +msgstr "Zelfde als standaardcategorie" -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -msgid "Klarna Slice it" -msgstr "Klarna betaal in 3 delen" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Gateway/Voucher/VoucherModule.php:241 +msgid "In order to process it, all products in the order must have a category. To disable the product from voucher selection select \"No category\" option." +msgstr "Daarvoor moeten alle producten uit de bestelling een categorie hebben. Selecteer ''Geen categorie'' om te voorkomen dat het product voor waardebonnen kan worden gekozen." -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: build/src/Mollie/WC/Plugin.php:508 src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: src/Mollie/WC/Plugin.php:508 -msgid "Select the default products category" -msgstr "Selecteer de categorie standaard producten" +#: ../src/Gateway/Voucher/VoucherModule.php:288 +msgid "Mollie Voucher category" +msgstr "Mollie-waardeboncategorie" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:46 -#: src/Mollie/WC/Gateway/Mealvoucher.php:46 -msgid "" -"In order to process it, all products in the order must have a category. This " -"selector will assign the default category for the shop products" -msgstr "" -"Daarvoor moeten alle producten uit de bestelling een categorie hebben. Deze " -"keuzemogelijkheid zal de standaard categorie voor de producten uit de shop " -"toewijzen" +#: ../src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (Apple Pay transaction ID: %3$s)" +msgstr "Betaling voltooid met %1$s - %2$s (Apple Pay transactie-ID: %3$s)" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:66 -#: src/Mollie/WC/Gateway/Mealvoucher.php:66 -msgid "Voucher" -msgstr "Waardebon" +#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:26, ../src/PaymentMethods/InstructionStrategies/DirectdebitInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/IdealInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/SofortInstructionStrategy.php:20 +msgid "Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" +msgstr "Betaling voltooid met %1$s (IBAN (ten minste 4 cijfers): %2$s, BIC: %3$s)" -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:82 -#: src/Mollie/WC/Gateway/Mealvoucher.php:82 -msgid "voucher" -msgstr "waardebon" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:35 +msgid "Please complete your payment by transferring the total amount to the following bank account:" +msgstr "Voltooi je betaling door het totale bedrag over te maken naar de volgende bankrekening:" -#: build/src/Mollie/WC/Gateway/MyBank.php:36 -#: src/Mollie/WC/Gateway/MyBank.php:36 -msgid "MyBank" -msgstr "MyBank" +#. translators: Placeholder 1: 'Stichting Mollie Payments' +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:39 +msgid "Beneficiary: %s" +msgstr "Begunstigde: %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:44 -#: src/Mollie/WC/Gateway/MyBank.php:44 -msgid "To accept payments via MyBank" -msgstr "Om betalingen te accepteren via MyBank" +#. translators: Placeholder 1: Payment details bank account +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:41 +msgid "IBAN: %s" +msgstr "IBAN: %s" -#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer Account number -#: build/src/Mollie/WC/Gateway/MyBank.php:73 -#: src/Mollie/WC/Gateway/MyBank.php:73 -msgid "Payment completed by %1$s - %2$s" -msgstr "Betaling voltooid door%1$s - %2$s" +#. translators: Placeholder 1: Payment details bic +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:43 +msgid "BIC: %s" +msgstr "BIC: %s" -#: build/src/Mollie/WC/Gateway/PayPal.php:43 -#: src/Mollie/WC/Gateway/PayPal.php:43 -msgid "PayPal" -msgstr "PayPal" +#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:50 +msgid "Please provide the payment reference %s" +msgstr "Vermeld de betalingsreferentie %s" -#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID -#: build/src/Mollie/WC/Gateway/PayPal.php:74 -#: build/src/Mollie/WC/Payment/Object.php:695 -#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695 -msgid "" -"Payment completed by %s - %s (PayPal transaction ID: %s)" -msgstr "" -"Betaling voltooid door %s - %s (PayPal transactie-ID: %s)" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:47 +msgid "Payment reference: %s" +msgstr "Betalingsreferentie: %s." -#: build/src/Mollie/WC/Gateway/Paysafecard.php:20 -#: src/Mollie/WC/Gateway/Paysafecard.php:20 -msgid "paysafecard" -msgstr "paysafecard" +#. translators: Placeholder 1: Payment expiry date +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:66 +msgid "The payment will expire on %s. Please make sure you transfer the total amount before this date." +msgstr "De betaling vervalt op %s. Zorg ervoor dat je vóór deze datum het totale bedrag overmaakt." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:33 -#: src/Mollie/WC/Gateway/Przelewy24.php:33 -msgid "Przelewy24" -msgstr "Przelewy24" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:60 +msgid "The payment will expire on %s." +msgstr "De betaling vervalt op %s." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:40 -#: src/Mollie/WC/Gateway/Przelewy24.php:40 -msgid "" -"To accept payments via Przelewy24, a customer email is required for every " -"payment." -msgstr "" -"Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail " -"van de klant vereist." +#. translators: Placeholder 1: card holder +#: ../src/PaymentMethods/InstructionStrategies/CreditcardInstructionStrategy.php:20 +msgid "Payment completed by %s" +msgstr "Betaling voltooid met %s." -#. translators: Placeholder 1: customer billing email -#: build/src/Mollie/WC/Gateway/Przelewy24.php:64 -#: src/Mollie/WC/Gateway/Przelewy24.php:64 -msgid "Payment completed by %s." -msgstr "Betaling voltooid door %s." +#. translators: Placeholder 1: payment method +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:34 +msgid "Payment completed with %s" +msgstr "Betaling voltooid met %s" -#: build/src/Mollie/WC/Gateway/Sofort.php:33 -#: src/Mollie/WC/Gateway/Sofort.php:33 -msgid "SOFORT Banking" -msgstr "SOFORT Banking" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:26 +msgid "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant." +msgstr "We hebben geen definitieve betalingsstatus ontvangen. Je ontvangt een e-mail zodra we een bevestiging van de bank/handelaar ontvangen." -#: build/src/Mollie/WC/Helper/Api.php:40 src/Mollie/WC/Helper/Api.php:40 -msgid "No API key provided. Please set your Mollie API keys below." -msgstr "Geen API-sleutel verschaft. Stel je Mollie API-sleutels hieronder in." +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:20 +msgid "We have not received a definite payment status." +msgstr "We hebben geen definitieve betalingsstatus ontvangen." -#: build/src/Mollie/WC/Helper/Api.php:42 src/Mollie/WC/Helper/Api.php:42 -msgid "" -"Invalid API key(s). Get them on the %sDevelopers page in the Mollie dashboard" -"%s. The API key(s) must start with 'live_' or 'test_', be at least 30 " -"characters and must not contain any special characters." -msgstr "" -"Ongeldige API-sleutel(s). Haal deze op van de %sDevelopers-pagina in het " -"Mollie-dashboard%s. De API-sleutel(s) moeten beginnen met 'live_' of " -"'test_', ten minste 30 tekens lang zijn en mogen verder geen speciale tekens " -"bevatten." +#: ../src/PaymentMethods/InstructionStrategies/MybankInstructionStrategy.php:19 +msgid "Payment completed by %1$s - %2$s" +msgstr "Betaling voltooid met %1$s - %2$s" -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -msgid "" -"%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server " -"requirements page%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sServer voldoet niet aan Apple vereisten%2$s Controleer %3$sde pagina met " -"Apple serververeisten%4$s om dit op te lossen, zodat de Apple Pay betaalknop " -"werkt" +#. translators: Placeholder 1: customer billing email +#: ../src/PaymentMethods/InstructionStrategies/Przelewy24InstructionStrategy.php:20 +msgid "Payment completed by %s." +msgstr "Betaling voltooid met %s." -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -msgid "" -"%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page" -"%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sApple Pay valideringsfout%2$s Controleer %3$sde pagina met Apple " -"serververeisten%4$s om dit op te lossen, zodat de Apple Pay betaalknop werkt" +#. translators: Placeholder 1: Lock icon. Placeholder 2: Mollie logo. +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:25 +msgid "%1$s Secure payments provided by %2$s" +msgstr "%1$s Beveiligde betalingen verschaft door %2$s" -#: build/src/Mollie/WC/Helper/OrderLines.php:499 -#: src/Mollie/WC/Helper/OrderLines.php:499 -msgid "Shipping" -msgstr "Verzending" +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:41 +msgid "Secure payments provided by" +msgstr "Beveiligde betalingen verschaft door" -#: build/src/Mollie/WC/Helper/Settings.php:61 -#: src/Mollie/WC/Helper/Settings.php:61 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:34 msgid "%s display settings" msgstr "%s weergave-instellingen" -#: build/src/Mollie/WC/Helper/Settings.php:99 -#: src/Mollie/WC/Helper/Settings.php:99 +#: ../src/Settings/General/MollieGeneralSettings.php:71 msgid "Display logo on checkout page. Default enabled" msgstr "Toon logo op de betaalpagina. Standaard geactiveerd" -#: build/src/Mollie/WC/Helper/Settings.php:107 -#: src/Mollie/WC/Helper/Settings.php:107 +#: ../src/Settings/General/MollieGeneralSettings.php:79 msgid "Sales countries" msgstr "Verkooplanden" -#: build/src/Mollie/WC/Helper/Settings.php:125 -#: src/Mollie/WC/Helper/Settings.php:125 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:99 msgid "%s custom logo" msgstr "%s aangepast logo" -#: build/src/Mollie/WC/Helper/Settings.php:132 -#: src/Mollie/WC/Helper/Settings.php:132 +#: ../src/Settings/General/MollieGeneralSettings.php:103 msgid "Enable custom logo" msgstr "Activeer aangepast logo" -#: build/src/Mollie/WC/Helper/Settings.php:137 -#: src/Mollie/WC/Helper/Settings.php:137 -msgid "" -"Enable the feature to add a custom logo for this gateway. This feature will " -"have precedence over other logo options." -msgstr "" -"Activeer de functie om een aangepast logo toe te voegen aan deze gateway. " -"Deze functie heeft voorrang op andere opties voor het logo." +#: ../src/Settings/General/MollieGeneralSettings.php:109 +msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options." +msgstr "Activeer de functie om een aangepast logo toe te voegen aan deze gateway. Deze functie heeft voorrang op andere opties voor het logo." -#: build/src/Mollie/WC/Helper/Settings.php:143 -#: src/Mollie/WC/Helper/Settings.php:143 +#: ../src/Settings/General/MollieGeneralSettings.php:115 msgid "Upload custom logo" msgstr "Upload aangepast logo" -#: build/src/Mollie/WC/Helper/Settings.php:150 -#: src/Mollie/WC/Helper/Settings.php:150 +#: ../src/Settings/General/MollieGeneralSettings.php:123 msgid "Upload a custom icon for this gateway. The feature must be enabled." -msgstr "" -"Upload een aangepast pictogram voor deze gateway. De functie moet " -"geactiveerd zijn." +msgstr "Upload een aangepast pictogram voor deze gateway. De functie moet geactiveerd zijn." -#: build/src/Mollie/WC/Helper/Settings.php:159 -#: src/Mollie/WC/Helper/Settings.php:159 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:134 msgid "%s surcharge" msgstr "%s prijstoeslag" -#: build/src/Mollie/WC/Helper/Settings.php:166 -#: src/Mollie/WC/Helper/Settings.php:166 +#: ../src/Settings/General/MollieGeneralSettings.php:139 msgid "Payment Surcharge" msgstr "Betalingstoeslag" -#: build/src/Mollie/WC/Helper/Settings.php:172 -#: src/Mollie/WC/Helper/Settings.php:172 +#: ../src/Settings/General/MollieGeneralSettings.php:145 msgid "No fee" msgstr "Geen vergoeding" -#: build/src/Mollie/WC/Helper/Settings.php:176 -#: src/Mollie/WC/Helper/Settings.php:176 +#: ../src/Settings/General/MollieGeneralSettings.php:149 msgid "Fixed fee" msgstr "Vaste vergoeding" -#: build/src/Mollie/WC/Helper/Settings.php:180 -#: src/Mollie/WC/Helper/Settings.php:180 +#: ../src/Settings/General/MollieGeneralSettings.php:153 msgid "Percentage" msgstr "Percentage" -#: build/src/Mollie/WC/Helper/Settings.php:184 -#: src/Mollie/WC/Helper/Settings.php:184 +#: ../src/Settings/General/MollieGeneralSettings.php:157 msgid "Fixed fee and percentage" msgstr "Vaste vergoeding en percentage" -#: build/src/Mollie/WC/Helper/Settings.php:190 -#: src/Mollie/WC/Helper/Settings.php:190 +#: ../src/Settings/General/MollieGeneralSettings.php:163 msgid "Choose a payment surcharge for this gateway" msgstr "Kies een betalingstoeslag voor deze gateway" -#: build/src/Mollie/WC/Helper/Settings.php:197 -#: src/Mollie/WC/Helper/Settings.php:197 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:172 msgid "Payment surcharge fixed amount in %s" msgstr "Betalingstoeslag vast bedrag in %s" -#: build/src/Mollie/WC/Helper/Settings.php:200 -#: src/Mollie/WC/Helper/Settings.php:200 +#: ../src/Settings/General/MollieGeneralSettings.php:176 msgid "Control the fee added on checkout. Default 0.00" msgstr "Controle van de vergoeding toegevoegd aan de betaling. Standaard 0.00" -#: build/src/Mollie/WC/Helper/Settings.php:210 -#: src/Mollie/WC/Helper/Settings.php:210 +#: ../src/Settings/General/MollieGeneralSettings.php:186 msgid "Payment surcharge percentage amount %" msgstr "Betalingstoeslag aantal percentage %" -#: build/src/Mollie/WC/Helper/Settings.php:213 -#: src/Mollie/WC/Helper/Settings.php:213 +#: ../src/Settings/General/MollieGeneralSettings.php:189 msgid "Control the percentage fee added on checkout. Default 0.00" -msgstr "" -"Controle van de procentuele vergoeding toegevoegd aan de betaling. Standaard " -"0.00" +msgstr "Controle van de procentuele vergoeding toegevoegd aan de betaling. Standaard 0.00" -#: build/src/Mollie/WC/Helper/Settings.php:223 -#: src/Mollie/WC/Helper/Settings.php:223 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:200 msgid "Payment surcharge limit in %s" msgstr "Limiet betalingstoeslag in %s" -#: build/src/Mollie/WC/Helper/Settings.php:226 -#: src/Mollie/WC/Helper/Settings.php:226 +#: ../src/Settings/General/MollieGeneralSettings.php:203 msgid "Limit the maximum fee added on checkout. Default 0, means no limit" -msgstr "" -"Limiet van de maximum vergoeding toegevoegd aan de betaling. Standaard 0, " -"ofwel geen limiet" +msgstr "Limiet van de maximum vergoeding toegevoegd aan de betaling. Standaard 0, ofwel geen limiet" -#: build/src/Mollie/WC/Helper/Settings.php:236 -#: src/Mollie/WC/Helper/Settings.php:236 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:214 msgid "Surcharge only under this limit, in %s" msgstr "Prijstoeslag alleen onder deze limiet, als %s" -#: build/src/Mollie/WC/Helper/Settings.php:239 -#: src/Mollie/WC/Helper/Settings.php:239 -msgid "" -"Maximum order amount to apply surcharge. If the order is above this number " -"the surcharge will not apply. Default 0, means no maximum" -msgstr "" -"Maximaal bestelbedrag voor toepassing prijstoeslag. Als de bestelling boven " -"dit bedrag komt, is de prijstoeslag niet van toepassing. Standaard 0, ofwel " -"geen maximum" +#: ../src/Settings/General/MollieGeneralSettings.php:217 +msgid "Maximum order amount to apply surcharge. If the order is above this number the surcharge will not apply. Default 0, means no maximum" +msgstr "Maximaal bestelbedrag voor toepassing prijstoeslag. Als de bestelling boven dit bedrag komt, is de prijstoeslag niet van toepassing. Standaard 0, ofwel geen maximum" -#: build/src/Mollie/WC/Helper/Settings.php:250 -#: src/Mollie/WC/Helper/Settings.php:250 +#. translators: Placeholder 1: gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:230 msgid "%s advanced" msgstr "%s geavanceerd" -#: build/src/Mollie/WC/Helper/Settings.php:259 -#: src/Mollie/WC/Helper/Settings.php:259 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the order will expire." -msgstr "" -"Activeer deze optie als je de mogelijkheid wilt hebben om een aantal dagen " -"in te stellen waarna de bestelling vervalt." +#: ../src/Settings/General/MollieGeneralSettings.php:237 +msgid "Enable this option if you want to be able to set the time after which the order will expire." +msgstr "Activeer deze optie als je de mogelijkheid wilt hebben om het aantal dagen in te stellen waarna de bestelling vervalt." -#: build/src/Mollie/WC/Helper/Settings.php:267 -#: src/Mollie/WC/Helper/Settings.php:267 -msgid "" -"Number of MINUTES after the order will expire and will be canceled at Mollie " -"and WooCommerce. A value of 0 means no expiry date will be considered." -msgstr "" -"Aantal MINUTEN voordat de bestelling bij Mollie en WooCommerce komt te " -"vervallen en wordt geannuleerd. Een waarde van 0 betekent dat er geen " -"vervaldatum is." +#: ../src/Settings/General/MollieGeneralSettings.php:245 +msgid "Number of MINUTES after the order will expire and will be canceled at Mollie and WooCommerce. A value of 0 means no expiry time will be considered." +msgstr "Aantal MINUTEN voordat de bestelling bij Mollie en WooCommerce komt te vervallen en wordt geannuleerd. Een waarde van 0 betekent dat er geen vervaldatum is." -#: build/src/Mollie/WC/Helper/Settings.php:280 -#: src/Mollie/WC/Helper/Settings.php:280 +#: ../src/Settings/General/MollieGeneralSettings.php:258 msgid "Initial order status" msgstr "Initiële bestelstatus" -#: build/src/Mollie/WC/Helper/Settings.php:299 -#: src/Mollie/WC/Helper/Settings.php:299 -msgid "" -"Some payment methods take longer than a few hours to complete. The initial " -"order state is then set to '%s'. This ensures the order is not cancelled " -"when the setting %s is used." -msgstr "" -"Sommige betaalmethoden duren langer dan een paar uur om te voltooien. De " -"initiële bestelstatus is dan ingesteld op '%s'. Dit zorgt ervoor dat de " -"bestelling niet wordt geannuleerd wanneer de instelling %s wordt gebruikt." - -#: build/src/Mollie/WC/Helper/Settings.php:494 -#: src/Mollie/WC/Helper/Settings.php:494 -msgid "Error" -msgstr "Fout" - -#: build/src/Mollie/WC/Helper/Settings.php:507 -#: src/Mollie/WC/Helper/Settings.php:507 -msgid "Mollie status:" -msgstr "Mollie-status:" - -#: build/src/Mollie/WC/Helper/Settings.php:508 -#: src/Mollie/WC/Helper/Settings.php:508 -msgid "Connected" -msgstr "Verbonden" - -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: src/Mollie/WC/Helper/Settings.php:551 -msgid "Gateway enabled" -msgstr "Gateway geactiveerd" - -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Gateway disabled" -msgstr "Gateway gedeactiveerd" - -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Disabled" -msgstr "Uitgeschakeld" - -#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:563 -#: src/Mollie/WC/Helper/Settings.php:563 -msgid "The following payment methods are activated in your %sMollie profile%s:" -msgstr "De volgende betaalmethoden zijn geactiveerd in je %sMollie-profiel%s:" - -#: build/src/Mollie/WC/Helper/Settings.php:572 -#: src/Mollie/WC/Helper/Settings.php:572 -msgid "Refresh" -msgstr "Vernieuwen" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Settings/General/MollieGeneralSettings.php:277 +msgid "Some payment methods take longer than a few hours to complete. The initial order state is then set to '%1$s'. This ensures the order is not cancelled when the setting %2$s is used." +msgstr "Sommige betaalmethoden duren langer dan een paar uur om te voltooien. De initiële bestelstatus is dan ingesteld op '%1$s'. Dit zorgt ervoor dat de bestelling niet wordt geannuleerd wanneer de instelling %2$s wordt gebruikt." -#: build/src/Mollie/WC/Helper/Settings.php:591 -#: src/Mollie/WC/Helper/Settings.php:591 -msgid "Edit" -msgstr "Bewerken" +#: ../src/Settings/General/MollieGeneralSettings.php:286 +msgid "Hold Stock (minutes)" +msgstr "Houd voorraad aan (minuten)" -#: build/src/Mollie/WC/Helper/Settings.php:624 -#: src/Mollie/WC/Helper/Settings.php:624 -msgid "" -"Quickly integrate all major payment methods in WooCommerce, wherever you " -"need them." -msgstr "" -"Integreer snel en daar waar nodig alle belangrijke betaalmethodes in " -"WooCommerce." +#: ../src/Settings/Page/MollieSettingsPage.php:111 +msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them." +msgstr "Integreer snel en daar waar nodig alle belangrijke betaalmethodes in WooCommerce." -#: build/src/Mollie/WC/Helper/Settings.php:625 -#: src/Mollie/WC/Helper/Settings.php:625 -msgid "" -" Simply drop them ready-made into your WooCommerce webshop with this " -"powerful plugin by Mollie." -msgstr "" -" Plaats ze eenvoudigweg kant-en-klaar in je WooCommerce webshop met deze " -"krachtige plugin van Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:115 +msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie." +msgstr " Plaats ze eenvoudigweg kant-en-klaar in je WooCommerce webshop met deze krachtige plugin van Mollie." -#: build/src/Mollie/WC/Helper/Settings.php:626 -#: src/Mollie/WC/Helper/Settings.php:626 +#: ../src/Settings/Page/MollieSettingsPage.php:119 msgid " Mollie is dedicated to making payments better for WooCommerce. " msgstr " Mollie wil betalingen voor WooCommerce beter maken. " -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:123 msgid "Please go to" msgstr "Ga naar" -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:126 msgid " the signup page" msgstr " de aanmeldpagina" -#: build/src/Mollie/WC/Helper/Settings.php:628 -#: src/Mollie/WC/Helper/Settings.php:628 -msgid "" -" to create a new Mollie account and start receiving payments in a couple of " -"minutes. " -msgstr "" -" om een nieuw Mollie-account aan te maken en betalingen te ontvangen binnen " -"een paar minuten. " +#: ../src/Settings/Page/MollieSettingsPage.php:130 +msgid " to create a new Mollie account and start receiving payments in a couple of minutes. " +msgstr " om een nieuw Mollie-account aan te maken en betalingen te ontvangen binnen een paar minuten. " -#: build/src/Mollie/WC/Helper/Settings.php:629 -#: src/Mollie/WC/Helper/Settings.php:629 +#: ../src/Settings/Page/MollieSettingsPage.php:134 msgid "Contact " msgstr "Neem contact op " -#: build/src/Mollie/WC/Helper/Settings.php:630 -#: src/Mollie/WC/Helper/Settings.php:630 +#: ../src/Settings/Page/MollieSettingsPage.php:138 msgid " if you have any questions or comments about this plugin." msgstr " bij vragen of opmerkingen over deze plugin." -#: build/src/Mollie/WC/Helper/Settings.php:631 -#: src/Mollie/WC/Helper/Settings.php:631 -msgid "" -"Our pricing is always per transaction. No startup fees, no monthly fees, and " -"no gateway fees. No hidden fees, period." -msgstr "" -"Onze prijsstelling geldt altijd per transactie. Geen opstartvergoeding, geen " -"maandelijkse vergoeding, geen gateway vergoeding. Geen verborgen vergoeding!" +#: ../src/Settings/Page/MollieSettingsPage.php:142 +msgid "Our pricing is always per transaction. No startup fees, no monthly fees, and no gateway fees. No hidden fees, period." +msgstr "Onze prijsstelling geldt altijd per transactie. Geen opstartvergoeding, geen maandelijkse vergoeding, geen gateway vergoeding. Geen verborgen vergoeding!" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:148 msgid "Plugin Documentation" msgstr "Plugin-documentatie" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:151 msgid "Contact Support" msgstr "Neem contact op met de supportdienst" -#: build/src/Mollie/WC/Helper/Settings.php:644 -#: src/Mollie/WC/Helper/Settings.php:644 +#: ../src/Settings/Page/MollieSettingsPage.php:163 msgid "Log plugin events." msgstr "Log plugin-gebeurtenissen" -#: build/src/Mollie/WC/Helper/Settings.php:650 -#: src/Mollie/WC/Helper/Settings.php:650 +#. translators: Placeholder 1: Location of the log files +#: ../src/Settings/Page/MollieSettingsPage.php:170 msgid "Log files are saved to %s" msgstr "Logbestanden worden opgeslagen in %s" -#: build/src/Mollie/WC/Helper/Settings.php:663 -#: build/src/Mollie/WC/Plugin.php:379 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:11 -#: src/Mollie/WC/Helper/Settings.php:663 src/Mollie/WC/Plugin.php:379 -#: src/Mollie/WC/Settings/Page/Mollie.php:11 -msgid "Mollie Settings" -msgstr "Mollie-instellingen" - -#: build/src/Mollie/WC/Helper/Settings.php:670 -#: src/Mollie/WC/Helper/Settings.php:670 +#: ../src/Settings/Page/MollieSettingsPage.php:192 msgid "Live API key" msgstr "Live API-sleutel" #. translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:675 -#: build/src/Mollie/WC/Helper/Settings.php:697 -#: src/Mollie/WC/Helper/Settings.php:675 src/Mollie/WC/Helper/Settings.php:697 -msgid "" -"The API key is used to connect to Mollie. You can find your %s API key in your %sMollie profile%s" -msgstr "" -"De API-sleutel wordt gebruikt om verbinding te maken met Mollie. Je vindt je " -"%s API-sleutel in je %sMollie-profiel%s" +#: ../src/Settings/Page/MollieSettingsPage.php:197, ../src/Settings/Page/MollieSettingsPage.php:230 +msgid "The API key is used to connect to Mollie. You can find your %1$s API key in your %2$sMollie account%3$s" +msgstr "De API-sleutel wordt gebruikt om verbinding te maken met Mollie. Je vindt je %1$s API-sleutel in je %2$sMollie-profiel%3$s" -#: build/src/Mollie/WC/Helper/Settings.php:681 -#: src/Mollie/WC/Helper/Settings.php:681 +#: ../src/Settings/Page/MollieSettingsPage.php:208 msgid "Live API key should start with live_" msgstr "Live API-sleutel moet beginnen met live_" -#: build/src/Mollie/WC/Helper/Settings.php:685 -#: src/Mollie/WC/Helper/Settings.php:685 +#: ../src/Settings/Page/MollieSettingsPage.php:215 msgid "Enable test mode" msgstr "Activeer de testmodus" -#: build/src/Mollie/WC/Helper/Settings.php:688 -#: src/Mollie/WC/Helper/Settings.php:688 -msgid "" -"Enable test mode if you want to test the plugin without using real payments." -msgstr "" -"Activeer de testmodus als je de plugin wilt testen zonder echte betalingen " -"te gebruiken." +#: ../src/Settings/Page/MollieSettingsPage.php:218 +msgid "Enable test mode if you want to test the plugin without using real payments." +msgstr "Activeer de testmodus als je de plugin wilt testen zonder echte betalingen te gebruiken." -#: build/src/Mollie/WC/Helper/Settings.php:692 -#: src/Mollie/WC/Helper/Settings.php:692 +#: ../src/Settings/Page/MollieSettingsPage.php:225 msgid "Test API key" msgstr "Test API-sleutel" -#: build/src/Mollie/WC/Helper/Settings.php:703 -#: src/Mollie/WC/Helper/Settings.php:703 +#: ../src/Settings/Page/MollieSettingsPage.php:241 msgid "Test API key should start with test_" msgstr "Test API-sleutel moet beginnen met test_" -#: build/src/Mollie/WC/Helper/Settings.php:707 -#: src/Mollie/WC/Helper/Settings.php:707 +#: ../src/Settings/Page/MollieSettingsPage.php:248 msgid "Debug Log" msgstr "Debug-log" -#: build/src/Mollie/WC/Helper/Settings.php:810 -#: src/Mollie/WC/Helper/Settings.php:810 -msgid "" -"You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. " -"Enable SEPA Direct Debit if you want to allow customers to pay subscriptions " -"with iDEAL and/or other \"first\" payment methods." -msgstr "" -"Je hebt WooCommerce Abonnementen geactiveerd, maar geen SEPA-incasso. " -"Activeer SEPA-incasso als je klanten wilt toestaan om abonnementen met iDEAL " -"en/of andere \"eerste\" betaalmethoden te betalen." - -#: build/src/Mollie/WC/Helper/Settings.php:834 -#: src/Mollie/WC/Helper/Settings.php:834 -msgid "" -"You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway " -"enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via " -"Mollie and disabling the default WooCommerce BACS payment gateway to prevent " -"possible conflicts." -msgstr "" -"Je hebt de WooCommerce standaard Direct Bank Transfer (BACS) " -"betalingsgateway geactiveerd in WooCommerce. Mollie adviseert dringend om " -"alleen Bank Transfer via Mollie te gebruiken en de standaard WooCommerce " -"BACS betalingsgateway uit te schakelen om mogelijke conflicten te voorkomen." - -#: build/src/Mollie/WC/Helper/Settings.php:855 -#: src/Mollie/WC/Helper/Settings.php:855 -msgid "" -"You have activated Klarna. To accept payments, please make sure all default " -"WooCommerce checkout fields are enabled and required. For more information, " -"go to %1sKlarna Pay Later documentation%2s or %3sKlarna Slice it " -"documentation%4s" -msgstr "" -"Je hebt Klarna geactiveerd. Zorg ervoor dat alle standaard WooCommerce-" -"afrekenvelden zijn geactiveerd en verplicht zijn, zodat je betalingen kunt " -"accepteren. Ga voor meer informatie naar %1sKlarna betaal later documentatie" -"%2s of %3sKlarna Betaal in 3 delen documentatie%4s" - -#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce version, placeholder 3: used WooCommerce version -#: build/src/Mollie/WC/Helper/Status.php:67 src/Mollie/WC/Helper/Status.php:67 -msgid "" -"The %s plugin requires at least WooCommerce version %s, you are using " -"version %s. Please update your WooCommerce plugin." -msgstr "" -"De %s plugin vereist ten minste WooCommerce versie %s, jij gebruikt versie " -"%s. Update je WooCommerce plugin." - -#: build/src/Mollie/WC/Helper/Status.php:80 src/Mollie/WC/Helper/Status.php:80 -msgid "" -"Mollie API client not installed. Please make sure the plugin is installed " -"correctly." -msgstr "" -"Mollie API client niet geïnstalleerd. Controleer of de plugin correct is " -"geïnstalleerd." - -#: build/src/Mollie/WC/Helper/Status.php:89 src/Mollie/WC/Helper/Status.php:89 -msgid "" -"Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable " -"it in your server or ask your webhoster to enable it for you." -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen de JSON extensie voor PHP. " -"Activeer dit op je server of vraag je webhoster om het voor jou te activeren." - -#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP version -#: build/src/Mollie/WC/Helper/Status.php:104 -#: src/Mollie/WC/Helper/Status.php:104 -msgid "" -"Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. " -"Please upgrade and view %sthis FAQ%s" -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, jij hebt PHP " -"%s. Installeer de upgrade en bekijk %sdeze FAQ%s" - -#: build/src/Mollie/WC/Helper/Status.php:116 -#: src/Mollie/WC/Helper/Status.php:116 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension JSON to be " -"enabled. Please enable the 'json' extension in your PHP configuration." -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON " -"geactiveerd is. Activeer de 'json' extensie in je PHP-configuratie." - -#: build/src/Mollie/WC/Helper/Status.php:123 -#: src/Mollie/WC/Helper/Status.php:123 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension cURL to be " -"enabled. Please enable the 'curl' extension in your PHP configuration." -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL " -"geactiveerd is. Activeer de 'curl' extensie in je PHP-configuratie." - -#: build/src/Mollie/WC/Helper/Status.php:131 -#: src/Mollie/WC/Helper/Status.php:131 -msgid "" -"Mollie Payments for WooCommerce require PHP cURL functions to be available. " -"Please make sure all of these functions are available." -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies " -"beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:603 -#: src/Mollie/WC/Payment/Object.php:603 -msgid "" -"%s renewal payment failed via Mollie (%s). You will need to manually review " -"the payment and adjust product stocks if you use them." -msgstr "" -"%s vernieuwing van betaling mislukt via Mollie (%s). Je moet de betaling " -"handmatig controleren en productvoorraden aanpassen als je deze gebruikt." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:637 -#: src/Mollie/WC/Payment/Object.php:637 -msgid "%s payment failed via Mollie (%s)." -msgstr "%s betaling mislukt via Mollie (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:677 -#: src/Mollie/WC/Payment/Object.php:677 -msgid "" -"Mollie webhook called, but payment also started via %s, so the order status " -"is not updated." -msgstr "" -"Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de " -"bestellingsstatus is niet geüpdatet." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:262 -#: build/src/Mollie/WC/Payment/Payment.php:247 -#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:247 -msgid "Order completed using %s payment (%s)." -msgstr "Bestelling voltooid met gebruik van %s betaling (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:314 -#: src/Mollie/WC/Payment/Order.php:314 -msgid "" -"Order authorized using %s payment (%s). Set order to completed in " -"WooCommerce when you have shipped the products, to capture the payment. Do " -"this within 28 days, or the order will expire. To handle individual order " -"lines, process the order via the Mollie Dashboard." -msgstr "" -"Bestelling geautoriseerd met gebruik van %s betaling (%s). Om de betaling te " -"ontvangen, moet je na het verzenden van de producten de bestelling in " -"WooCommerce als voltooid markeren. Doe dit binnen 28 dagen, anders verloopt " -"de bestelling. Voor het afhandelen van afzonderlijke bestelregels, moet je " -"de bestelling via het Mollie Dashboard verwerken." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:361 -#: src/Mollie/WC/Payment/Order.php:361 -msgid "" -"Order completed at Mollie for %s order (%s). At least one order line " -"completed. Remember: Completed status for an order at Mollie is not the same " -"as Completed status in WooCommerce!" -msgstr "" -"Bestelling voltooid bij Mollie voor %s bestelling (%s). Ten minste één " -"bestellijn voltooid. Denk eraan: Voltooide status voor een bestelling bij " -"Mollie is niet hetzelfde als Voltooide status in WooCommerce!" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:444 -#: src/Mollie/WC/Payment/Order.php:444 -msgid "%s order (%s) cancelled ." -msgstr "%s bestelling (%s) geannuleerd." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:509 -#: src/Mollie/WC/Payment/Order.php:509 -msgid "" -"%s order expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s bestelling verlopen (%s) maar niet geannuleerd wegens een andere betaling " -"die nog in behandeling is (%s)." - -#. translators: Order note error -#: src/Mollie/WC/Payment/Order.php:619 -msgid "" -"The sum of refunds for all order lines is not identical to the refund " -"amount, so this refund will be processed as a payment amount refund, not an " -"order line refund." -msgstr "" -"De som van de terugbetalingen voor alle bestelregels is niet identiek aan " -"het terugbetalingsbedrag, dus deze terugbetaling zal worden verwerkt als een " -"terugbetaling van het betalingsbedrag en niet als een terugbetaling van een " -"bestelregel." - -#. translators: Placeholder 1: payment status. -#: src/Mollie/WC/Payment/Order.php:619 -msgid "Can not refund order amount that has status %1$s at Mollie." -msgstr "" -"Kan het bestelbedrag dat de status %1$s heeft bij Mollie niet terugbetalen." - -#: build/src/Mollie/WC/Payment/Order.php:742 -#: src/Mollie/WC/Payment/Order.php:742 -msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie." -msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:758 -#: src/Mollie/WC/Payment/Order.php:758 -msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-" -"ID: %s." - -#: build/src/Mollie/WC/Payment/Order.php:836 -#: src/Mollie/WC/Payment/Order.php:836 -msgid "" -"Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s " -"Terugbetalings-ID: %s." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:931 -#: src/Mollie/WC/Payment/Order.php:931 -msgid "%s order (%s) expired ." -msgstr "%s bestelling (%s) verlopen." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -msgid "" -"One of the WooCommerce order items does not have the refund item ID meta " -"value associated to Mollie Order item." -msgstr "" -"Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het " -"terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -msgid "" -"Impossible to retrieve the order item ID related to the remote item: %1$s. " -"Try to do a refund by amount." -msgstr "" -"Onmogelijk om het bestelartikel-id van het afstandsartikel terug te halen: " -"%1$s Probeer een terugbetaling te doen per bedrag." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -msgid "Empty WooCommerce order items or mollie order lines." -msgstr "Lege WooCommerce-bestelartikelen of Mollie-bestellijnen." - -#. translators: Placeholder 1: order number -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: build/src/Mollie/WC/Payment/Payment.php:132 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: src/Mollie/WC/Payment/Payment.php:132 -msgctxt "Payment description for {orderNumber}" -msgid "Order {orderNumber}" -msgstr "Bestelling {orderNumber}" - -#. translators: Placeholder 1: store name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: build/src/Mollie/WC/Payment/Payment.php:143 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: src/Mollie/WC/Payment/Payment.php:143 -msgctxt "Payment description for {storeName}" -msgid "StoreName {storeName}" -msgstr "Winkelnaam {storeName}" - -#. translators: Placeholder 1: customer first name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: build/src/Mollie/WC/Payment/Payment.php:154 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: src/Mollie/WC/Payment/Payment.php:154 -msgctxt "Payment description for {customer.firstname}" -msgid "Customer Firstname {customer.firstname}" -msgstr "Voornaam Klant {customer.firstname}" - -#. translators: Placeholder 1: customer last name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: build/src/Mollie/WC/Payment/Payment.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: src/Mollie/WC/Payment/Payment.php:165 -msgctxt "Payment description for {customer.lastname}" -msgid "Customer Lastname {customer.lastname}" -msgstr "Achternaam Klant {customer.lastname}" - -#. translators: Placeholder 1: customer company name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: build/src/Mollie/WC/Payment/Payment.php:176 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: src/Mollie/WC/Payment/Payment.php:176 -msgctxt "Payment description for {customer.company}" -msgid "Customer Company {customer.company}" -msgstr "Bedrijf Klant {customer.company}" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:334 -#: src/Mollie/WC/Payment/Payment.php:334 -msgid "%s payment (%s) cancelled ." -msgstr "%s betaling (%s) geannuleerd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:328 -msgid "Processing a payment, no capture needed" -msgstr "Betaling aan het verwerken, geen vastlegging nodig" - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:342 -msgid "Order already canceled at Mollie, can not be shipped/captured." -msgstr "" -"Bestelling reeds geannuleerd bij Mollie, kan niet worden verzonden/" -"vastgelegd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:350 -msgid "Order already completed at Mollie, can not be shipped/captured." -msgstr "" -"Bestelling reeds voltooid bij Mollie, kan niet worden verzonden/vastgelegd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:359 -msgid "" -"Order successfully updated to shipped at Mollie, capture of funds underway." -msgstr "" -"Bestelling met succes bijgewerkt om te verzenden bij Mollie, vastlegging van " -"middelen bezig." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:365 -msgid "Order not paid or authorized at Mollie yet, can not be shipped." -msgstr "" -"Bestelling nog niet betaald of geautoriseerd bij Mollie, kan niet worden " -"verzonden." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:399 -msgid "" -"Order contains Mollie payment method, but not a valid Mollie Order ID. " -"Canceling order failed." -msgstr "" -"Bestelling bevat Mollie-betaalmethode, maar geen geldig Mollie-bestel-ID. " -"Annulering van bestelling mislukt." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:420 -msgid "Order already canceled at Mollie, can not be canceled again." -msgstr "" -"Bestelling reeds geannuleerd bij Mollie, kan niet opnieuw worden geannuleerd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:430 -msgid "Order also cancelled at Mollie." -msgstr "Bestelling dus geannuleerd bij Mollie." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:436 -msgid "Order could not be canceled at Mollie, because order status is " -msgstr "" -"Bestelling kon niet worden geannuleerd bij Mollie, omdat bestelstatus is " - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:404 -#: src/Mollie/WC/Payment/Payment.php:404 -msgid "" -"%s payment expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s betaling verlopen (%s) maar niet geannuleerd wegens een andere betaling " -"die nog in behandeling is (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:427 -#: src/Mollie/WC/Payment/Payment.php:427 -msgid "%s payment expired (%s)." -msgstr "%s betaling verlopen (%s)." - -#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID -#: build/src/Mollie/WC/Payment/Payment.php:509 -#: src/Mollie/WC/Payment/Payment.php:509 -msgid "Refunded %s%s%s - Payment: %s, Refund: %s" -msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s" - -#: build/src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -msgid "" -"Mollie doesn't allow a partial refund of the full amount or quantity of at " -"least one order line. Trying to process this as an amount refund instead." -msgstr "" -"Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag " -"of hoeveelheid van ten minste één bestelregel. In plaats daarvan aan het " -"proberen dit te verwerken als een terugbetaling van bedrag." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Plugin.php:128 src/Mollie/WC/Plugin.php:128 -msgid "%s payment failed (%s)." -msgstr "%s betaling mislukt (%s)." - -#: build/src/Mollie/WC/Plugin.php:303 src/Mollie/WC/Plugin.php:303 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s " -"disable it%4$s before deploying into production." -msgstr "" -"%1$sMollie-betalingen voor WooCommerce%2$s De testmodus is actief, %3$s " -"deactiveer deze%4$s voordat je in productie gaat." - -#: build/src/Mollie/WC/Plugin.php:411 build/src/Mollie/WC/Plugin.php:444 -#: build/src/Mollie/WC/Plugin.php:466 src/Mollie/WC/Plugin.php:411 -#: src/Mollie/WC/Plugin.php:444 src/Mollie/WC/Plugin.php:466 -msgid "Mollie Voucher Category" -msgstr "Mollie-waardeboncategorie" - -#: build/src/Mollie/WC/Plugin.php:414 build/src/Mollie/WC/Plugin.php:446 -#: build/src/Mollie/WC/Plugin.php:469 src/Mollie/WC/Plugin.php:414 -#: src/Mollie/WC/Plugin.php:446 src/Mollie/WC/Plugin.php:469 -msgid "--Please choose an option--" -msgstr "--Kies een optie--" - -#: build/src/Mollie/WC/Plugin.php:415 build/src/Mollie/WC/Plugin.php:447 -#: build/src/Mollie/WC/Plugin.php:470 build/src/Mollie/WC/Plugin.php:583 -#: src/Mollie/WC/Plugin.php:415 src/Mollie/WC/Plugin.php:447 -#: src/Mollie/WC/Plugin.php:470 src/Mollie/WC/Plugin.php:583 -msgid "No Category" -msgstr "Geen categorie" - -#: build/src/Mollie/WC/Plugin.php:416 build/src/Mollie/WC/Plugin.php:448 -#: build/src/Mollie/WC/Plugin.php:471 build/src/Mollie/WC/Plugin.php:584 -#: src/Mollie/WC/Plugin.php:416 src/Mollie/WC/Plugin.php:448 -#: src/Mollie/WC/Plugin.php:471 src/Mollie/WC/Plugin.php:584 -msgid "Meal" -msgstr "Maaltijd" - -#: build/src/Mollie/WC/Plugin.php:417 build/src/Mollie/WC/Plugin.php:449 -#: build/src/Mollie/WC/Plugin.php:472 build/src/Mollie/WC/Plugin.php:585 -#: src/Mollie/WC/Plugin.php:417 src/Mollie/WC/Plugin.php:449 -#: src/Mollie/WC/Plugin.php:472 src/Mollie/WC/Plugin.php:585 -msgid "Eco" -msgstr "Eco" - -#: build/src/Mollie/WC/Plugin.php:418 build/src/Mollie/WC/Plugin.php:450 -#: build/src/Mollie/WC/Plugin.php:473 build/src/Mollie/WC/Plugin.php:586 -#: src/Mollie/WC/Plugin.php:418 src/Mollie/WC/Plugin.php:450 -#: src/Mollie/WC/Plugin.php:473 src/Mollie/WC/Plugin.php:586 -msgid "Gift" -msgstr "Cadeau" - -#: build/src/Mollie/WC/Plugin.php:452 build/src/Mollie/WC/Plugin.php:475 -#: src/Mollie/WC/Plugin.php:452 src/Mollie/WC/Plugin.php:475 -msgid "Select a voucher category to apply to all products with this category" -msgstr "" -"Selecteer een waardeboncategorie om toe te passen op alle producten met deze " -"categorie" - -#: build/src/Mollie/WC/Plugin.php:512 src/Mollie/WC/Plugin.php:512 -msgid "Products voucher category" -msgstr "Categorie producten waardebon" - -#: build/src/Mollie/WC/Plugin.php:519 build/src/Mollie/WC/Plugin.php:582 -#: src/Mollie/WC/Plugin.php:519 src/Mollie/WC/Plugin.php:582 -msgid "Same as default category" -msgstr "Zelfde als standaardcategorie" +#: ../src/Settings/Page/MollieSettingsPage.php:300 +msgid "Gateway enabled" +msgstr "Gateway geactiveerd" -#: build/src/Mollie/WC/Plugin.php:529 src/Mollie/WC/Plugin.php:529 -msgid "" -"In order to process it, all products in the order must have a category. To " -"disable the product from voucher selection select \"No category\" option." -msgstr "" -"Daarvoor moeten alle producten uit de bestelling een categorie hebben. " -"Selecteer ''Geen categorie'' om te voorkomen dat het product voor " -"waardebonnen kan worden gekozen." +#: ../src/Settings/Page/MollieSettingsPage.php:304 +msgid "Gateway disabled" +msgstr "Gateway gedeactiveerd" -#: build/src/Mollie/WC/Plugin.php:579 src/Mollie/WC/Plugin.php:579 -msgid "Mollie Voucher category" -msgstr "Mollie-waardeboncategorie" +#: ../src/Settings/Page/MollieSettingsPage.php:307 +msgid "Disabled" +msgstr "Uitgeschakeld" -#: build/src/Mollie/WC/Plugin.php:727 src/Mollie/WC/Plugin.php:727 -msgid "%1$s items refunded in WooCommerce and at Mollie." -msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie." +#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Settings/Page/MollieSettingsPage.php:318 +msgid "The following payment methods are activated in your %1$sMollie profile%2$s:" +msgstr "De volgende betaalmethoden zijn geactiveerd in je %1$sMollie-profiel%2$s:" -#: build/src/Mollie/WC/Plugin.php:745 src/Mollie/WC/Plugin.php:745 -msgid "%1$s items cancelled in WooCommerce and at Mollie." -msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:333 +msgid "Refresh" +msgstr "Vernieuwen" -#: build/src/Mollie/WC/Plugin.php:919 src/Mollie/WC/Plugin.php:919 -msgid "Name on card" -msgstr "Naam op de kaart" +#: ../src/Settings/Page/MollieSettingsPage.php:342 +msgid "No payment methods available" +msgstr "Geen betaalmethoden beschikbaar" -#: build/src/Mollie/WC/Plugin.php:923 src/Mollie/WC/Plugin.php:923 -msgid "Card number" -msgstr "Kaartnummer" +#: ../src/Settings/Page/MollieSettingsPage.php:357 +msgid "Edit" +msgstr "Bewerken" -#: build/src/Mollie/WC/Plugin.php:931 src/Mollie/WC/Plugin.php:931 -msgid "CVC/CVV" -msgstr "CVC/CVV" +#: ../src/Settings/Page/MollieSettingsPage.php:365 +msgid "Activate" +msgstr "Activeren" -#: build/src/Mollie/WC/Plugin.php:938 src/Mollie/WC/Plugin.php:938 -msgid "An unknown error occurred, please check the card fields." -msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden." +#: ../src/Settings/Page/MollieSettingsPage.php:411 +msgid "You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. Enable SEPA Direct Debit if you want to allow customers to pay subscriptions with iDEAL and/or other \"first\" payment methods." +msgstr "Je hebt WooCommerce Abonnementen geactiveerd, maar geen SEPA-incasso. Activeer SEPA-incasso als je klanten wilt toestaan om abonnementen met iDEAL en/of andere \"eerste\" betaalmethoden te betalen." -#: build/src/Mollie/WC/Plugin.php:1295 src/Mollie/WC/Plugin.php:1295 -msgid "Mollie settings" -msgstr "Mollie-instellingen" +#: ../src/Settings/Page/MollieSettingsPage.php:437 +msgid "You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via Mollie and disabling the default WooCommerce BACS payment gateway to prevent possible conflicts." +msgstr "Je hebt de WooCommerce standaard Direct Bank Transfer (BACS) betalingsgateway geactiveerd in WooCommerce. Mollie adviseert dringend om alleen Bank Transfer via Mollie te gebruiken en de standaard WooCommerce BACS betalingsgateway uit te schakelen om mogelijke conflicten te voorkomen." -#: build/src/Mollie/WC/Plugin.php:1301 src/Mollie/WC/Plugin.php:1301 -msgid "Logs" -msgstr "Logs" +#. translators: Placeholder 1: Opening link tag. Placeholder 2: Closing link tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/Page/MollieSettingsPage.php:461 +msgid "You have activated Klarna. To accept payments, please make sure all default WooCommerce checkout fields are enabled and required. For more information, go to %1$sKlarna Pay Later documentation%2$s or %3$sKlarna Slice it documentation%4$s" +msgstr "Je hebt Klarna geactiveerd. Zorg ervoor dat alle standaard WooCommerce-afrekenvelden zijn geactiveerd en verplicht zijn, zodat je betalingen kunt accepteren. Ga voor meer informatie naar %1$sKlarna betaal later documentatie%2$s of %3$sKlarna Betaal in 3 delen documentatie%4$s" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:138 -#: src/Mollie/WC/Settings/Page/Mollie.php:138 +#: ../src/Settings/Page/MollieSettingsPage.php:702 msgid "General" msgstr "Algemeen" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:143 -#: src/Mollie/WC/Settings/Page/Mollie.php:143 -msgid "Apple Pay Button" -msgstr "Apple Pay knop" - -#: build/src/Mollie/WC/Settings/Page/Mollie.php:147 -#: src/Mollie/WC/Settings/Page/Mollie.php:147 +#: ../src/Settings/Page/MollieSettingsPage.php:707 msgid "Advanced" msgstr "Geavanceerd" -#: src/Mollie/WC/Gateway/Abstract.php:1987 -msgid "%1$s Secure payments provided by %2$s" -msgstr "%1$s Beveiligde betalingen verschaft door %2$s" +#: ../src/Settings/Page/MollieSettingsPage.php:710 +msgid "Apple Pay Button" +msgstr "Apple Pay knop" diff --git a/languages/mollie-payments-for-woocommerce-nl_BE_formal.mo b/languages/mollie-payments-for-woocommerce-nl_BE_formal.mo index 7d9c8ad87..0d2952aa0 100644 Binary files a/languages/mollie-payments-for-woocommerce-nl_BE_formal.mo and b/languages/mollie-payments-for-woocommerce-nl_BE_formal.mo differ diff --git a/languages/mollie-payments-for-woocommerce-nl_BE_formal.po b/languages/mollie-payments-for-woocommerce-nl_BE_formal.po index 3176b1ced..d036b2315 100644 --- a/languages/mollie-payments-for-woocommerce-nl_BE_formal.po +++ b/languages/mollie-payments-for-woocommerce-nl_BE_formal.po @@ -1,2857 +1,1977 @@ -# Copyright (C) 2021 Mollie -# This file is distributed under the same license as the Mollie Payments for WooCommerce plugin. +# Copyright (C) 2022 unnamed project +# This file is distributed under the same license as the unnamed project package. msgid "" msgstr "" -"Project-Id-Version: Mollie Payments for WooCommerce 6.7.0\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mollie-payments-" -"for-woocommerce\n" -"POT-Creation-Date: 2021-11-12T07:59:02+00:00\n" -"PO-Revision-Date: 2022-06-20 11:23+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: nl_BE\n" +"Project-Id-Version: Mollie Payments for WooCommerce 7.3.3\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: undefined\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.1\n" -"X-Domain: mollie-payments-for-woocommerce\n" -#. Plugin Name of the plugin -msgid "Mollie Payments for WooCommerce" -msgstr "Mollie-betalingen voor WooCommerce" - -#. Plugin URI of the plugin -#. Author URI of the plugin -msgid "https://www.mollie.com" -msgstr "https://www.mollie.com" - -#. Description of the plugin -msgid "Accept payments in WooCommerce with the official Mollie plugin" -msgstr "Accepteer betalingen in WooCommerce met de officiële Mollie-plugin" - -#. Author of the plugin -msgid "Mollie" -msgstr "Mollie" - -#: build/inc/settings/mollie_advanced_settings.php:6 -#: inc/settings/mollie_advanced_settings.php:6 -msgid "Mollie advanced settings" -msgstr "Geavanceerde Mollie-instellingen" - -#: build/inc/settings/mollie_advanced_settings.php:8 -#: inc/settings/mollie_advanced_settings.php:8 +#: ../inc/settings/mollie_advanced_settings.php:12 msgctxt "Label {orderNumber} description for payment description options" msgid "Order number" msgstr "Bestelnummer" -#: build/inc/settings/mollie_advanced_settings.php:9 -#: inc/settings/mollie_advanced_settings.php:9 +#: ../inc/settings/mollie_advanced_settings.php:13 msgctxt "Label {storeName} description for payment description options" msgid "Site Title" msgstr "Site titel" -#: build/inc/settings/mollie_advanced_settings.php:10 -#: inc/settings/mollie_advanced_settings.php:10 -msgctxt "" -"Label {customer.firstname} description for payment description options" +#: ../inc/settings/mollie_advanced_settings.php:14 +msgctxt "Label {customer.firstname} description for payment description options" msgid "Customer's first name" msgstr "Voornaam van de klant" -#: build/inc/settings/mollie_advanced_settings.php:11 -#: inc/settings/mollie_advanced_settings.php:11 +#: ../inc/settings/mollie_advanced_settings.php:15 msgctxt "Label {customer.lastname} description for payment description options" msgid "Customer's last name" msgstr "Achternaam van de klant" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:16 msgctxt "Label {customer.company} description for payment description options" msgid "Customer's company name" msgstr "Bedrijfsnaam van de klant" -#: build/inc/settings/mollie_advanced_settings.php:8 -#: build/src/Mollie/WC/Helper/Settings.php:666 -#: inc/settings/mollie_advanced_settings.php:8 -#: src/Mollie/WC/Helper/Settings.php:666 -msgid "" -"The following options are required to use the plugin and are used by all " -"Mollie payment methods" -msgstr "" -"De volgende opties zijn vereist om de plugin te gebruiken en worden door " -"alle Mollie-betaalmethodes gebruikt" +#: ../inc/settings/mollie_advanced_settings.php:22 +msgid "Mollie advanced settings" +msgstr "Geavanceerde Mollie-instellingen" + +#: ../inc/settings/mollie_advanced_settings.php:24, ../src/Settings/Page/MollieSettingsPage.php:185 +msgid "The following options are required to use the plugin and are used by all Mollie payment methods" +msgstr "De volgende opties zijn vereist om de plugin te gebruiken en worden door alle Mollie-betaalmethodes gebruikt" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:28 msgid "Order status after cancelled payment" msgstr "Bestelstatus na geannuleerde betaling" -#: build/inc/settings/mollie_advanced_settings.php:18 -#: inc/settings/mollie_advanced_settings.php:18 -msgid "" -"Status for orders when a payment (not a Mollie order via the Orders API) is " -"cancelled. Default: pending. Orders with status Pending can be paid with " -"another payment method, customers can try again. Cancelled orders are final. " -"Set this to Cancelled if you only have one payment method or don't want " -"customers to re-try paying with a different payment method. This doesn't " -"apply to payments for orders via the new Orders API and Klarna payments." -msgstr "" -"Status voor bestellingen als een betaling (niet een Mollie-besteling via de " -"Orders API) wordt geannuleerd. Standaard: in behandeling. Bestellingen met " -"status 'In behandeling' kunnen met een andere betaalmethode worden betaald, " -"klanten kunnen het opnieuw proberen. Geannuleerde bestellingen zijn " -"definitief. Stel dit in op 'Geannuleerd' als u maar één betaalmethode hebt " -"of als u niet wilt dat klanten opnieuw proberen te betalen met een andere " -"betaalmethode. Dit is niet van toepassing voor betalingen voor bestellingen " -"via de nieuwe Orders API en Klarna-betalingen." - -#: build/inc/settings/mollie_advanced_settings.php:23 -#: inc/settings/mollie_advanced_settings.php:23 +#: ../inc/settings/mollie_advanced_settings.php:31 +msgid "Pending" +msgstr "In behandeling" + +#: ../inc/settings/mollie_advanced_settings.php:32 +msgid "Cancelled" +msgstr "Geannuleerd" + +#: ../inc/settings/mollie_advanced_settings.php:34 +msgid "Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don't want customers to re-try paying with a different payment method. This doesn't apply to payments for orders via the new Orders API and Klarna payments." +msgstr "Status voor bestellingen wanneer een betaling (niet een Mollie-bestelling via de Bestellingen API) wordt geannuleerd. Standaard: In behandeling. Bestellingen met status In behandeling kunnen met een andere betaalmethode worden betaald, klanten kunnen het opnieuw proberen. Geannuleerde bestellingen zijn definitief. Stel dit in op Geannuleerd als u maar één betaalmethode heeft of als u niet wilt dat klanten opnieuw proberen te betalen met een andere betaalmethode. Dit is niet van toepassing voor betalingen voor bestellingen via de nieuwe Orders API en Klarna-betalingen." + +#: ../inc/settings/mollie_advanced_settings.php:39 msgid "Payment screen language" msgstr "Taal van betaalscherm" -#: build/inc/settings/mollie_advanced_settings.php:26 -#: inc/settings/mollie_advanced_settings.php:26 +#: ../inc/settings/mollie_advanced_settings.php:42 msgid "Automatically send WordPress language" msgstr "Automatisch verzenden van WordPress-taal" -#: build/inc/settings/mollie_advanced_settings.php:29 -#: build/inc/settings/mollie_advanced_settings.php:90 -#: build/src/Mollie/WC/Helper/Settings.php:288 -#: inc/settings/mollie_advanced_settings.php:29 -#: inc/settings/mollie_advanced_settings.php:90 -#: src/Mollie/WC/Helper/Settings.php:288 +#: ../inc/settings/mollie_advanced_settings.php:45, ../inc/settings/mollie_advanced_settings.php:105, ../src/Settings/General/MollieGeneralSettings.php:266 msgid "default" msgstr "standaard" -#: build/inc/settings/mollie_advanced_settings.php:30 -#: inc/settings/mollie_advanced_settings.php:30 +#: ../inc/settings/mollie_advanced_settings.php:46 msgid "Detect using browser language" msgstr "Detecteren met gebruik van browsertaal" -#: build/inc/settings/mollie_advanced_settings.php:34 -#: inc/settings/mollie_advanced_settings.php:34 +#: ../inc/settings/mollie_advanced_settings.php:50 msgid "English" msgstr "Engels" -#: build/inc/settings/mollie_advanced_settings.php:35 -#: inc/settings/mollie_advanced_settings.php:35 +#: ../inc/settings/mollie_advanced_settings.php:51 msgid "Dutch" msgstr "Nederlands" -#: build/inc/settings/mollie_advanced_settings.php:36 -#: inc/settings/mollie_advanced_settings.php:36 +#: ../inc/settings/mollie_advanced_settings.php:52 msgid "Flemish (Belgium)" msgstr "Vlaams (België)" -#: build/inc/settings/mollie_advanced_settings.php:37 -#: inc/settings/mollie_advanced_settings.php:37 +#: ../inc/settings/mollie_advanced_settings.php:53 msgid "French" msgstr "Frans" -#: build/inc/settings/mollie_advanced_settings.php:38 -#: inc/settings/mollie_advanced_settings.php:38 +#: ../inc/settings/mollie_advanced_settings.php:54 msgid "French (Belgium)" msgstr "Frans (België)" -#: build/inc/settings/mollie_advanced_settings.php:39 -#: inc/settings/mollie_advanced_settings.php:39 +#: ../inc/settings/mollie_advanced_settings.php:55 msgid "German" msgstr "Duits" -#: build/inc/settings/mollie_advanced_settings.php:40 -#: inc/settings/mollie_advanced_settings.php:40 +#: ../inc/settings/mollie_advanced_settings.php:56 msgid "Austrian German" msgstr "Oostenrijks-Duits" -#: build/inc/settings/mollie_advanced_settings.php:41 -#: inc/settings/mollie_advanced_settings.php:41 +#: ../inc/settings/mollie_advanced_settings.php:57 msgid "Swiss German" msgstr "Zwitserduits" -#: build/inc/settings/mollie_advanced_settings.php:42 -#: inc/settings/mollie_advanced_settings.php:42 +#: ../inc/settings/mollie_advanced_settings.php:58 msgid "Spanish" msgstr "Spaans" -#: build/inc/settings/mollie_advanced_settings.php:43 -#: inc/settings/mollie_advanced_settings.php:43 +#: ../inc/settings/mollie_advanced_settings.php:59 msgid "Catalan" msgstr "Spaans (Catalaans)" -#: build/inc/settings/mollie_advanced_settings.php:44 -#: inc/settings/mollie_advanced_settings.php:44 +#: ../inc/settings/mollie_advanced_settings.php:60 msgid "Portuguese" msgstr "Portugees" -#: build/inc/settings/mollie_advanced_settings.php:45 -#: inc/settings/mollie_advanced_settings.php:45 +#: ../inc/settings/mollie_advanced_settings.php:61 msgid "Italian" msgstr "Italiaans" -#: build/inc/settings/mollie_advanced_settings.php:46 -#: inc/settings/mollie_advanced_settings.php:46 +#: ../inc/settings/mollie_advanced_settings.php:62 msgid "Norwegian" msgstr "Noors" -#: build/inc/settings/mollie_advanced_settings.php:47 -#: inc/settings/mollie_advanced_settings.php:47 +#: ../inc/settings/mollie_advanced_settings.php:63 msgid "Swedish" msgstr "Zweeds" -#: build/inc/settings/mollie_advanced_settings.php:48 -#: inc/settings/mollie_advanced_settings.php:48 +#: ../inc/settings/mollie_advanced_settings.php:64 msgid "Finnish" msgstr "Fins" -#: build/inc/settings/mollie_advanced_settings.php:49 -#: inc/settings/mollie_advanced_settings.php:49 +#: ../inc/settings/mollie_advanced_settings.php:65 msgid "Danish" msgstr "Deens" -#: build/inc/settings/mollie_advanced_settings.php:50 -#: inc/settings/mollie_advanced_settings.php:50 +#: ../inc/settings/mollie_advanced_settings.php:66 msgid "Icelandic" msgstr "IJslands" -#: build/inc/settings/mollie_advanced_settings.php:51 -#: inc/settings/mollie_advanced_settings.php:51 +#: ../inc/settings/mollie_advanced_settings.php:67 msgid "Hungarian" msgstr "Hongaars" -#: build/inc/settings/mollie_advanced_settings.php:52 -#: inc/settings/mollie_advanced_settings.php:52 +#: ../inc/settings/mollie_advanced_settings.php:68 msgid "Polish" msgstr "Pools" -#: build/inc/settings/mollie_advanced_settings.php:53 -#: inc/settings/mollie_advanced_settings.php:53 +#: ../inc/settings/mollie_advanced_settings.php:69 msgid "Latvian" msgstr "Lets" -#: build/inc/settings/mollie_advanced_settings.php:54 -#: inc/settings/mollie_advanced_settings.php:54 +#: ../inc/settings/mollie_advanced_settings.php:70 msgid "Lithuanian" msgstr "Litouws" -#: build/inc/settings/mollie_advanced_settings.php:57 -#: inc/settings/mollie_advanced_settings.php:57 -msgid "" -"Sending a language (or locale) is required. The option 'Automatically send " -"WordPress language' will try to get the customer's language in WordPress " -"(and respects multilanguage plugins) and convert it to a format Mollie " -"understands. If this fails, or if the language is not supported, it will " -"fall back to American English. You can also select one of the locales " -"currently supported by Mollie, that will then be used for all customers." -msgstr "" -"Het verzenden van een taal (of locatie) is vereist. De optie 'Automatisch " -"verzenden van WordPress-taal' zal proberen de taal van de klant in WordPress " -"te krijgen (en respecteert meertalige plugins) en deze te converteren naar " -"een formaat dat Mollie begrijpt. Als dit niet lukt of als de taal niet wordt " -"ondersteund, dan zal teruggegaan worden naar Amerikaans-Engels. U kunt ook " -"een van de momenteel door Mollie ondersteunde locaties selecteren, die dan " -"voor alle klanten zal worden gebruikt." - -#: build/inc/settings/mollie_advanced_settings.php:65 -#: inc/settings/mollie_advanced_settings.php:65 +#: ../inc/settings/mollie_advanced_settings.php:73 +msgid "Sending a language (or locale) is required. The option 'Automatically send WordPress language' will try to get the customer's language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers." +msgstr "Het verzenden van een taal (of locatie) is vereist. De optie 'Automatisch verzenden van WordPress-taal' zal proberen de taal van de klant in WordPress te krijgen (en respecteert meertalige plugins) en deze te converteren naar een formaat dat Mollie begrijpt. Als dit niet lukt of als de taal niet wordt ondersteund, dan zal teruggegaan worden naar Amerikaans-Engels. U kunt ook een van de momenteel door Mollie ondersteunde locaties selecteren, die dan voor alle klanten zal worden gebruikt." + +#: ../inc/settings/mollie_advanced_settings.php:81 msgid "Store customer details at Mollie" msgstr "Klantgegevens opslaan bij Mollie" -#: build/inc/settings/mollie_advanced_settings.php:68 -#: inc/settings/mollie_advanced_settings.php:68 -msgid "" -"Should Mollie store customers name and email address for Single Click " -"Payments? Default %1$s. Required if WooCommerce Subscriptions " -"is being used! Read more about " -"%2$s and how it improves your conversion." -msgstr "" -"Moet Mollie klantennaam en e-mailadres opslaan voor Single Click betalingen? " -"Standaard %1$s. Vereist als WooCommerce-abonnementen worden " -"gebruikt! Lees meer over " -"%2$s en hoe het uw conversie verbetert." - -#: build/inc/settings/mollie_advanced_settings.php:72 -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: inc/settings/mollie_advanced_settings.php:72 -#: src/Mollie/WC/Helper/Settings.php:551 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_advanced_settings.php:84 +msgid "Should Mollie store customers name and email address for Single Click Payments? Default %1$s. Required if WooCommerce Subscriptions is being used! Read more about %2$s and how it improves your conversion." +msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor Single Click betalingen? Standaard %1$s. Vereist als WooCommerce-abonnementen worden gebruikt! Lees meer over %2$s en hoe het uw conversie verbetert." + +#: ../inc/settings/mollie_advanced_settings.php:88, ../src/Settings/Page/MollieSettingsPage.php:303 msgid "Enabled" msgstr "Geactiveerd" -#: build/inc/settings/mollie_advanced_settings.php:73 -#: inc/settings/mollie_advanced_settings.php:73 +#: ../inc/settings/mollie_advanced_settings.php:89 msgid "Single Click Payments" msgstr "Betalen met één klik" -#: build/inc/settings/mollie_advanced_settings.php:82 -#: inc/settings/mollie_advanced_settings.php:82 +#: ../inc/settings/mollie_advanced_settings.php:97 msgid "Select API Method" msgstr "Selecteer de API-methode" -#: build/inc/settings/mollie_advanced_settings.php:99 -#: inc/settings/mollie_advanced_settings.php:99 -msgid "" -"Click %shere%s to read more about the differences between the Payments and " -"Orders API" -msgstr "" -"Klik %shier%s voor meer informatie over de verschillen tussen de Betalings-" -"API en Orders API" +#. translators: Placeholder 1: opening link tag, placeholder 2: closing link tag +#: ../inc/settings/mollie_advanced_settings.php:114 +msgid "Click %1$shere%2$s to read more about the differences between the Payments and Orders API" +msgstr "Klik %1$shier%2$s voor meer informatie over de verschillen tussen de Betalings-API en Orders API" -#: build/inc/settings/mollie_advanced_settings.php:109 -#: inc/settings/mollie_advanced_settings.php:109 +#: ../inc/settings/mollie_advanced_settings.php:124 msgid "API Payment Description" msgstr "Beschrijving Betalings-API" -#: build/inc/settings/mollie_advanced_settings.php:137 -#: inc/settings/mollie_advanced_settings.php:137 +#: ../inc/settings/mollie_advanced_settings.php:141 msgctxt "Payment description options" msgid "Available variables" msgstr "Beschikbare variabelen" -#: build/inc/settings/mollie_advanced_settings.php:160 -#: inc/settings/mollie_advanced_settings.php:160 -msgid "" -"Select among the available variables the description to be used for this " -"transaction.%s(Note: this only works when the method is set to Payments " -"API)%s" -msgstr "" -"Kies uit de beschikbare variabelen de beschrijving die u voor deze " -"transactie wilt gebruiken.%s(Let op: dit werkt alleen als de methode is " -"ingesteld op Betalings-API).%s" +#. translators: Placeholder 1: Opening paragraph tag, placeholder 2: Closing paragraph tag +#: ../inc/settings/mollie_advanced_settings.php:166 +msgid "Select among the available variables the description to be used for this transaction.%1$s(Note: this only works when the method is set to Payments API)%2$s" +msgstr "Kies uit de beschikbare variabelen de beschrijving die u voor deze transactie wilt gebruiken.%1$s(Let op: dit werkt alleen als de methode is ingesteld op Betalings-API).%2$s" -#: build/inc/settings/mollie_advanced_settings.php:134 -#: inc/settings/mollie_advanced_settings.php:134 +#: ../inc/settings/mollie_advanced_settings.php:177 msgid "Surcharge gateway fee label" msgstr "Prijstoeslag gateway vergoedingslabel" -#: build/inc/settings/mollie_advanced_settings.php:140 -#: inc/settings/mollie_advanced_settings.php:140 +#: ../inc/settings/mollie_advanced_settings.php:183, ../src/Gateway/Surcharge.php:36 msgid "Gateway Fee" msgstr "Gateway vergoeding" -#: build/inc/settings/mollie_advanced_settings.php:142 -#: inc/settings/mollie_advanced_settings.php:142 +#: ../inc/settings/mollie_advanced_settings.php:185 msgid "This is the label will appear in frontend when the surcharge applies" -msgstr "" -"Dit is het label dat verschijnt in de interface wanneer de prijstoeslag van " -"toepassing is" +msgstr "Dit is het label dat verschijnt in de interface wanneer de prijstoeslag van toepassing is" -#: inc/settings/mollie_advanced_settings.php:194 +#: ../inc/settings/mollie_advanced_settings.php:193 msgid "Remove Mollie data from Database on uninstall" msgstr "Verwijder Mollie-gegevens van de database bij de-installatie" -#: inc/settings/mollie_advanced_settings.php:199 -msgid "" -"Remove options and scheduled actions from database when uninstalling the " -"plugin." -msgstr "" -"Verwijder opties en geplande acties van de database bij de-installatie van " -"de plugin." +#: ../inc/settings/mollie_advanced_settings.php:199 +msgid "Remove options and scheduled actions from database when uninstalling the plugin." +msgstr "Verwijder opties en geplande acties van de database bij de-installatie van de plugin." + +#: ../inc/settings/mollie_advanced_settings.php:200 +msgid "Clear now" +msgstr "Nu wissen" -#: build/inc/settings/mollie_applepay_settings.php:14 -#: inc/settings/mollie_applepay_settings.php:14 +#: ../inc/settings/mollie_applepay_settings.php:12, ../src/PaymentMethods/Applepay.php:13 +msgid "Apple Pay" +msgstr "Apple Pay" + +#: ../inc/settings/mollie_applepay_settings.php:14 msgid "The following options are required to use the Apple Pay gateway" -msgstr "" -"De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay " -"gateway" +msgstr "De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay gateway" -#: build/inc/settings/mollie_applepay_settings.php:19 -#: build/src/Mollie/WC/Helper/Settings.php:48 -#: inc/settings/mollie_applepay_settings.php:19 -#: src/Mollie/WC/Helper/Settings.php:48 +#: ../inc/settings/mollie_applepay_settings.php:19, ../src/Settings/General/MollieGeneralSettings.php:18 msgid "Enable/Disable" msgstr "Activeren/Deactiveren" -#. translators: Placeholder 1: enabled or disabled -#: build/inc/settings/mollie_applepay_settings.php:21 -#: build/src/Mollie/WC/Helper/Settings.php:54 -#: inc/settings/mollie_applepay_settings.php:21 -#: src/Mollie/WC/Helper/Settings.php:54 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:21, ../src/Settings/General/MollieGeneralSettings.php:25 msgid "Enable %s" msgstr "Activeren %s" -#: build/inc/settings/mollie_applepay_settings.php:29 -#: build/src/Mollie/WC/Helper/Settings.php:68 -#: inc/settings/mollie_applepay_settings.php:29 -#: src/Mollie/WC/Helper/Settings.php:68 +#: ../inc/settings/mollie_applepay_settings.php:29, ../src/Settings/General/MollieGeneralSettings.php:38 msgid "Title" msgstr "Titel" -#: build/inc/settings/mollie_applepay_settings.php:32 -#: build/src/Mollie/WC/Helper/Settings.php:71 -#: inc/settings/mollie_applepay_settings.php:32 -#: src/Mollie/WC/Helper/Settings.php:71 -msgid "" -"This controls the title which the user sees during checkout. Default " -"%s" -msgstr "" -"Dit controleert de titel die de gebruiker ziet tijdens het betalen. " -"Standaard %s" - -#: build/inc/settings/mollie_applepay_settings.php:45 -#: build/inc/settings/mollie_applepay_settings.php:48 -#: build/src/Mollie/WC/Helper/Settings.php:94 -#: inc/settings/mollie_applepay_settings.php:45 -#: inc/settings/mollie_applepay_settings.php:48 -#: src/Mollie/WC/Helper/Settings.php:94 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:32, ../src/Settings/General/MollieGeneralSettings.php:42 +msgid "This controls the title which the user sees during checkout. Default %s" +msgstr "Dit controleert de titel die de gebruiker ziet tijdens het betalen. Standaard %s" + +#: ../inc/settings/mollie_applepay_settings.php:46, ../inc/settings/mollie_applepay_settings.php:48, ../src/Settings/General/MollieGeneralSettings.php:66 msgid "Display logo" msgstr "Toon logo" -#: build/inc/settings/mollie_applepay_settings.php:60 -#: build/src/Mollie/WC/Helper/Settings.php:81 -#: inc/settings/mollie_applepay_settings.php:60 -#: src/Mollie/WC/Helper/Settings.php:81 +#: ../inc/settings/mollie_applepay_settings.php:61, ../src/Settings/General/MollieGeneralSettings.php:52 msgid "Description" msgstr "Beschrijving" -#: build/inc/settings/mollie_applepay_settings.php:63 -#: build/src/Mollie/WC/Helper/Settings.php:84 -#: inc/settings/mollie_applepay_settings.php:63 -#: src/Mollie/WC/Helper/Settings.php:84 -msgid "" -"Payment method description that the customer will see on your checkout. " -"Default %s" -msgstr "" -"Beschrijving van de betaalmethode die de klant bij uw betaalpagina zal zien. " -"Standaard %s" +#. translators: Placeholder 1: Gateway description +#: ../inc/settings/mollie_applepay_settings.php:64, ../src/Settings/General/MollieGeneralSettings.php:56 +msgid "Payment method description that the customer will see on your checkout. Default %s" +msgstr "Beschrijving van de betaalmethode die de klant bij uw betaalpagina zal zien. Standaard %s" -#: build/inc/settings/mollie_applepay_settings.php:79 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:6 -#: inc/settings/mollie_applepay_settings.php:79 -#: inc/settings/mollie_apple_pay_button_enabler.php:6 +#: ../inc/settings/mollie_applepay_settings.php:81 msgid "Apple Pay button settings" msgstr "Instellingen van Apple Pay knop" -#: build/inc/settings/mollie_applepay_settings.php:84 -#: inc/settings/mollie_applepay_settings.php:84 +#: ../inc/settings/mollie_applepay_settings.php:86 msgid "The following options are required to use the Apple Pay Direct Button" -msgstr "" -"De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay " -"Direct knop" +msgstr "De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay Direct knop" -#: build/inc/settings/mollie_applepay_settings.php:88 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:18 -#: inc/settings/mollie_applepay_settings.php:88 -#: inc/settings/mollie_apple_pay_button_enabler.php:18 +#: ../inc/settings/mollie_applepay_settings.php:90, ../src/PaymentMethods/Applepay.php:34 msgid "Enable Apple Pay Button on Cart page" msgstr "Activeer de Apple Pay knop op de winkelwagenpagina" -#: build/inc/settings/mollie_applepay_settings.php:91 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:21 -#: inc/settings/mollie_applepay_settings.php:91 -#: inc/settings/mollie_apple_pay_button_enabler.php:21 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:93, ../src/PaymentMethods/Applepay.php:36 msgid "Enable the Apple Pay direct buy button on the Cart page" msgstr "Activeer de Apple Pay Direct betaalknop op de winkelwagenpagina" -#: build/inc/settings/mollie_applepay_settings.php:103 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:29 -#: inc/settings/mollie_applepay_settings.php:103 -#: inc/settings/mollie_apple_pay_button_enabler.php:29 +#: ../inc/settings/mollie_applepay_settings.php:106, ../src/PaymentMethods/Applepay.php:44 msgid "Enable Apple Pay Button on Product page" msgstr "Activeer de Apple Pay knop op de productpagina" -#: build/inc/settings/mollie_applepay_settings.php:106 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:32 -#: inc/settings/mollie_applepay_settings.php:106 -#: inc/settings/mollie_apple_pay_button_enabler.php:32 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:109, ../src/PaymentMethods/Applepay.php:46 msgid "Enable the Apple Pay direct buy button on the Product page" msgstr "Activeer de Apple Pay Direct betaalknop op de productpagina" -#: build/inc/settings/mollie_apple_pay_button_enabler.php:11 -#: inc/settings/mollie_apple_pay_button_enabler.php:11 -msgid "The following options are required to use the Apple Pay button" -msgstr "" -"De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay " -"knop" - -#: build/inc/settings/mollie_components.php:7 -#: inc/settings/mollie_components.php:7 +#: ../inc/settings/mollie_components.php:9 msgctxt "Mollie Components Settings" msgid "Base Styles" msgstr "Basisstijlen" -#: build/inc/settings/mollie_components.php:16 -#: build/inc/settings/mollie_components.php:156 -#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156 +#: ../inc/settings/mollie_components.php:18, ../inc/settings/mollie_components.php:158 msgctxt "Mollie Components Settings" msgid "Background Color" msgstr "Achtergrondkleur" -#: build/inc/settings/mollie_components.php:22 -#: build/inc/settings/mollie_components.php:145 -#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145 +#: ../inc/settings/mollie_components.php:24, ../inc/settings/mollie_components.php:147 msgctxt "Mollie Components Settings" msgid "Text Color" msgstr "Tekstkleur" -#: build/inc/settings/mollie_components.php:28 -#: inc/settings/mollie_components.php:28 +#: ../inc/settings/mollie_components.php:30 msgctxt "Mollie Components Settings" msgid "Placeholder Color" msgstr "Kleur van de plaatshouder" -#: build/inc/settings/mollie_components.php:34 -#: inc/settings/mollie_components.php:34 +#: ../inc/settings/mollie_components.php:36 msgctxt "Mollie Components Settings" msgid "Font Size" msgstr "Lettergrootte" -#: build/inc/settings/mollie_components.php:35 -#: inc/settings/mollie_components.php:35 +#: ../inc/settings/mollie_components.php:37 msgctxt "Mollie Components Settings" msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'." -msgstr "" -"Bepaalt de lettergrootte van het component. Toegestane eenheden: 'em', 'px', " -"'rem'." +msgstr "Bepaalt de lettergrootte van het component. Toegestane eenheden: 'em', 'px', 'rem'." -#: build/inc/settings/mollie_components.php:45 -#: inc/settings/mollie_components.php:45 +#: ../inc/settings/mollie_components.php:47 msgctxt "Mollie Components Settings" msgid "Font Weight" msgstr "Lettergewicht" -#: build/inc/settings/mollie_components.php:48 -#: inc/settings/mollie_components.php:48 +#: ../inc/settings/mollie_components.php:50 msgctxt "Mollie Components Settings" msgid "Lighter" msgstr "Lichter" -#: build/inc/settings/mollie_components.php:49 -#: inc/settings/mollie_components.php:49 +#: ../inc/settings/mollie_components.php:51 msgctxt "Mollie Components Settings" msgid "Regular" msgstr "Standaard" -#: build/inc/settings/mollie_components.php:50 -#: inc/settings/mollie_components.php:50 +#: ../inc/settings/mollie_components.php:52 msgctxt "Mollie Components Settings" msgid "Bold" msgstr "Vet" -#: build/inc/settings/mollie_components.php:56 -#: inc/settings/mollie_components.php:56 +#: ../inc/settings/mollie_components.php:58 msgctxt "Mollie Components Settings" msgid "Letter Spacing" msgstr "Letterafstand" -#: build/inc/settings/mollie_components.php:62 -#: inc/settings/mollie_components.php:62 +#: ../inc/settings/mollie_components.php:64 msgctxt "Mollie Components Settings" msgid "Line Height" msgstr "Regelhoogte" -#: build/inc/settings/mollie_components.php:71 -#: inc/settings/mollie_components.php:71 +#: ../inc/settings/mollie_components.php:73 msgctxt "Mollie Components Settings" msgid "Padding" msgstr "Vulling" -#: build/inc/settings/mollie_components.php:72 -#: inc/settings/mollie_components.php:72 +#: ../inc/settings/mollie_components.php:74 msgctxt "Mollie Components Settings" -msgid "" -"Add padding to the components. Allowed units include `16px 16px 16px 16px` " -"and `em`, `px`, `rem`." -msgstr "" -"Voeg vulling toe aan de componenten. Tot de toegestane eenheden behoren " -"'16px 16px 16px 16px' en 'em', 'px', 'rem'." +msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`." +msgstr "Voeg vulling toe aan de componenten. Tot de toegestane eenheden behoren '16px 16px 16px 16px' en 'em', 'px', 'rem'." -#: build/inc/settings/mollie_components.php:82 -#: inc/settings/mollie_components.php:82 +#: ../inc/settings/mollie_components.php:84 msgctxt "Mollie Components Settings" msgid "Align Text" msgstr "Lijn tekst uit" -#: build/inc/settings/mollie_components.php:85 -#: inc/settings/mollie_components.php:85 +#: ../inc/settings/mollie_components.php:87 msgctxt "Mollie Components Settings" msgid "Left" msgstr "Links" -#: build/inc/settings/mollie_components.php:86 -#: inc/settings/mollie_components.php:86 +#: ../inc/settings/mollie_components.php:88 msgctxt "Mollie Components Settings" msgid "Right" msgstr "Rechts" -#: build/inc/settings/mollie_components.php:87 -#: inc/settings/mollie_components.php:87 +#: ../inc/settings/mollie_components.php:89 msgctxt "Mollie Components Settings" msgid "Center" msgstr "Centreren" -#: build/inc/settings/mollie_components.php:88 -#: inc/settings/mollie_components.php:88 +#: ../inc/settings/mollie_components.php:90 msgctxt "Mollie Components Settings" msgid "Justify" msgstr "Uitvullen" -#: build/inc/settings/mollie_components.php:94 -#: inc/settings/mollie_components.php:94 +#: ../inc/settings/mollie_components.php:96 msgctxt "Mollie Components Settings" msgid "Transform Text " msgstr "Wijzig tekst " -#: build/inc/settings/mollie_components.php:97 -#: inc/settings/mollie_components.php:97 +#: ../inc/settings/mollie_components.php:99 msgctxt "Mollie Components Settings" msgid "None" msgstr "Geen" -#: build/inc/settings/mollie_components.php:102 -#: inc/settings/mollie_components.php:102 +#: ../inc/settings/mollie_components.php:104 msgctxt "Mollie Components Settings" msgid "Capitalize" msgstr "In hoofdletters schrijven" -#: build/inc/settings/mollie_components.php:107 -#: inc/settings/mollie_components.php:107 +#: ../inc/settings/mollie_components.php:109 msgctxt "Mollie Components Settings" msgid "Uppercase" msgstr "Hoofdletters" -#: build/inc/settings/mollie_components.php:112 -#: inc/settings/mollie_components.php:112 +#: ../inc/settings/mollie_components.php:114 msgctxt "Mollie Components Settings" msgid "Lowercase" msgstr "Kleine letters" -#: build/inc/settings/mollie_components.php:117 -#: inc/settings/mollie_components.php:117 +#: ../inc/settings/mollie_components.php:119 msgctxt "Mollie Components Settings" msgid "Full Width" msgstr "Volledige breedte" -#: build/inc/settings/mollie_components.php:122 -#: inc/settings/mollie_components.php:122 +#: ../inc/settings/mollie_components.php:124 msgctxt "Mollie Components Settings" msgid "Full Size Kana" msgstr "Volledige grootte Kana" -#: build/inc/settings/mollie_components.php:136 -#: inc/settings/mollie_components.php:136 +#: ../inc/settings/mollie_components.php:138 msgctxt "Mollie Components Settings" msgid "Invalid Status Styles" msgstr "Ongeldige statusstijlen" -#: build/inc/settings/mollie_components.php:146 -#: inc/settings/mollie_components.php:146 +#: ../inc/settings/mollie_components.php:148 msgctxt "Mollie Components Settings" msgid "Text Color for invalid input." -msgstr "Tekstkleur voor ongeldige invoer." +msgstr "Tekstkleur voor ongeldige invoer" -#: build/inc/settings/mollie_components.php:157 -#: inc/settings/mollie_components.php:157 +#: ../inc/settings/mollie_components.php:159 msgctxt "Mollie Components Settings" msgid "Background Color for invalid input." msgstr "Achtergrondkleur voor ongeldige invoer." -#: build/inc/settings/mollie_components_enabler.php:6 -#: inc/settings/mollie_components_enabler.php:6 -msgid "Enable Mollie Components" -msgstr "Activeer Mollie-componenten" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to settings. Placeholder 4: Closing link tag. +#: ../src/Activation/ActivationModule.php:167 +msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s." +msgstr "%1$sMollie-betalingen voor WooCommerce: API-sleutels ontbreken%2$s Gelieve%3$s uw API-sleutels hier in te stellen%4$s." -#: build/inc/settings/mollie_components_enabler.php:8 -#: inc/settings/mollie_components_enabler.php:8 -msgid "" -"Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." -msgstr "" -"Gebruik de Mollie-componenten voor deze gateway. Lees meer over %s en hoe het uw conversie verbetert." - -#: build/inc/settings/mollie_components_enabler.php:12 -#: build/src/Mollie/WC/Settings/Page/Components.php:10 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:139 -#: inc/settings/mollie_components_enabler.php:12 -#: src/Mollie/WC/Settings/Page/Components.php:10 -#: src/Mollie/WC/Settings/Page/Mollie.php:139 -msgid "Mollie Components" -msgstr "Mollie-componenten" +#: ../src/Activation/ConstraintsChecker.php:109 +msgid "%1$sMollie Payments for WooCommerce is inactive:%2$s" +msgstr "%1$sMollie-betalingen voor WooCommerce is inactief:%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:5 -#: inc/settings/mollie_creditcard_icons_selector.php:5 -msgid "Customize Icons" -msgstr "Pas pictogrammen aan" +#: ../src/Activation/ConstraintsChecker.php:113 +msgid "%1$sCorrect the above errors to use Mollie Payments for Woocommerce%2$s" +msgstr "%1$sCorrigeer bovenstaande fouten om Mollie-betalingen te gebruiken voor WooCommerce%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:12 -#: inc/settings/mollie_creditcard_icons_selector.php:12 -msgid "Enable Icons Selector" -msgstr "Activeer pictogramselectie" +#: ../src/Assets/AssetsModule.php:432 +msgid "Name on card" +msgstr "Naam op de kaart" -#: build/inc/settings/mollie_creditcard_icons_selector.php:13 -#: inc/settings/mollie_creditcard_icons_selector.php:13 -msgid "Show customized creditcard icons on checkout page" -msgstr "Toon aangepaste creditcardpictogrammen op betaalpagina" +#: ../src/Assets/AssetsModule.php:436 +msgid "Card number" +msgstr "Kaartnummer" -#: build/inc/settings/mollie_creditcard_icons_selector.php:21 -#: inc/settings/mollie_creditcard_icons_selector.php:21 -msgid "Show American Express Icon" -msgstr "Toon American Express pictogram" +#: ../src/Assets/AssetsModule.php:440 +msgid "Expiry date" +msgstr "Vervaldatum" -#: build/inc/settings/mollie_creditcard_icons_selector.php:26 -#: inc/settings/mollie_creditcard_icons_selector.php:26 -msgid "Show Carta Si Icon" -msgstr "Toon Carta Si pictogram" +#: ../src/Assets/AssetsModule.php:444 +msgid "CVC/CVV" +msgstr "CVC/CVV" -#: build/inc/settings/mollie_creditcard_icons_selector.php:31 -#: inc/settings/mollie_creditcard_icons_selector.php:31 -msgid "Show Carte Bancaire Icon" -msgstr "Toon Carte Bancaire pictogram" +#: ../src/Assets/AssetsModule.php:451 +msgid "An unknown error occurred, please check the card fields." +msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden." -#: build/inc/settings/mollie_creditcard_icons_selector.php:36 -#: inc/settings/mollie_creditcard_icons_selector.php:36 -msgid "Show Maestro Icon" -msgstr "Toon Maestro pictogram" +#: ../src/Assets/AssetsModule.php:521 +msgid "Please choose a billing country to see the available payment methods" +msgstr "Kies een factureringsland om de beschikbare betaalmethoden te zien" -#: build/inc/settings/mollie_creditcard_icons_selector.php:41 -#: inc/settings/mollie_creditcard_icons_selector.php:41 -msgid "Show Mastercard Icon" -msgstr "Toon Mastercard pictogram" +#: ../src/Assets/AssetsModule.php:570 +msgid "No custom logo selected" +msgstr "Geen aangepast logo gekozen" -#: build/inc/settings/mollie_creditcard_icons_selector.php:46 -#: inc/settings/mollie_creditcard_icons_selector.php:46 -msgid "Show Visa Icon" -msgstr "Toon Visa pictogram" +#: ../src/Gateway/MolliePaymentGateway.php:271, ../src/Settings/Page/MollieSettingsPage.php:313 +msgid "Test mode enabled." +msgstr "Testmodus geactiveerd." -#: build/inc/settings/mollie_creditcard_icons_selector.php:51 -#: inc/settings/mollie_creditcard_icons_selector.php:51 -msgid "Show VPay Icon" -msgstr "Toon Vpay pictogram" +#. translators: The surrounding %s's Will be replaced by a link to the global setting page +#: ../src/Gateway/MolliePaymentGateway.php:276 +msgid "No API key provided. Please %1$sset you Mollie API key%2$s first." +msgstr "Geen API-sleutel geleverd. Stel eerst %1$suw Mollie API-sleutel%2$s in." -#: build/inc/settings/mollie_paypal_button_enabler.php:7 -#: inc/settings/mollie_paypal_button_enabler.php:7 -msgid "PayPal button display settings" -msgstr "PayPal-knop weergave-instellingen" +#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Gateway/MolliePaymentGateway.php:291 +msgid "%1$s not enabled in your Mollie profile. You can enable it by editing your %2$sMollie profile%3$s." +msgstr "%1$s niet geactiveerd in uw Mollie-profiel. U kunt het activeren door uw %2$sMollie-profiel%3$s te bewerken." -#: build/inc/settings/mollie_paypal_button_enabler.php:12 -#: inc/settings/mollie_paypal_button_enabler.php:12 -msgid "" -"%1sThe PayPal button is optimized for digital goods. And will only appear if " -"the product has no shipping. %2sThe customer's address information can only " -"be retrieved if the transaction has been done with the %3sOrders API%4s.%5s" -"%6s" -msgstr "" -"%1sDe PayPal-knop is geoptimaliseerd voor digitale artikelen. Hij verschijnt " -"alleen als het product niet wordt verzonden. %2sDe adresgegevens van de " -"klant kunt u alleen krijgen, als u de transactie hebt uitgevoerd met de " -"%3sOrders API%4s.%5s%6s" +#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies +#: ../src/Gateway/MolliePaymentGateway.php:306 +msgid "Current shop currency %1$s not supported by Mollie. Read more about %2$ssupported currencies and payment methods.%3$s " +msgstr "Huidige shopvaluta %1$s niet ondersteund door Mollie. Lees meer over %2$sondersteunde valuta's en betaalmethoden.%3$s " -#: build/inc/settings/mollie_paypal_button_enabler.php:19 -#: inc/settings/mollie_paypal_button_enabler.php:19 -msgid "Display on cart page" -msgstr "Toon op de winkelwagenpagina" +#: ../src/Gateway/MolliePaymentGateway.php:577 +msgid "You have cancelled your payment. Please complete your order with a different payment method." +msgstr "U hebt uw betaling geannuleerd. Vervolledig uw bestelling met een andere betaalmethode." -#: build/inc/settings/mollie_paypal_button_enabler.php:23 -#: inc/settings/mollie_paypal_button_enabler.php:23 -msgid "Enable the PayPal button to be used in the cart page." -msgstr "Activeer de PayPal-knop om te gebruiken op de winkelwagenpagina." +#: ../src/Gateway/MolliePaymentGateway.php:597, ../src/Gateway/MolliePaymentGateway.php:611 +msgid "Your payment was not successful. Please complete your order with a different payment method." +msgstr "Uw betaling is niet gelukt. Vervolledig uw bestelling met een andere betaalmethode." -#: build/inc/settings/mollie_paypal_button_enabler.php:31 -#: inc/settings/mollie_paypal_button_enabler.php:31 -msgid "Display on product page" -msgstr "Toon op de productpagina" +#: ../src/Gateway/MolliePaymentGateway.php:647 +msgid "Could not load order %s" +msgstr "Kon bestelling niet laden %s" -#: build/inc/settings/mollie_paypal_button_enabler.php:35 -#: inc/settings/mollie_paypal_button_enabler.php:35 -msgid "Enable the PayPal button to be used in the product page." -msgstr "Activeer de PayPal-knop om te gebruiken op de productpagina." +#: ../src/Gateway/MolliePaymentGateway.php:906 +msgid "Order cancelled" +msgstr "Bestelling geannuleerd" -#: build/inc/settings/mollie_paypal_button_enabler.php:44 -#: inc/settings/mollie_paypal_button_enabler.php:44 -msgctxt "Mollie PayPal Button Settings" -msgid "Button text language and color" -msgstr "Knop tekst taal en kleur" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Gateway/MolliePaymentGateway.php:943 +msgid "%1$s payment still pending (%2$s) but customer already returned to the store. Status should be updated automatically in the future, if it doesn't this might indicate a communication issue between the site and Mollie." +msgstr "%1$s betaling nog hangende (%2$s) maar klant is reeds teruggekeerd naar de shop. Status moet in de toekomst automatisch worden bijgewerkt. Als dat niet gebeurt, kan dit wijzen op een communicatieprobleem tussen de site en Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:46 -#: inc/settings/mollie_paypal_button_enabler.php:46 -msgctxt "Mollie PayPal Button Settings" -msgid "Select the text and the colour of the button." -msgstr "Kies de tekst en de kleur van de knop." +#: ../src/Gateway/MolliePaymentGateway.php:949, ../src/Payment/MollieObject.php:687, ../src/Payment/MollieObject.php:655, ../src/Payment/MollieOrder.php:275, ../src/Payment/MollieOrder.php:332, ../src/Payment/MollieOrder.php:377, ../src/Payment/MollieOrder.php:459, ../src/Payment/MollieOrder.php:522, ../src/Payment/MollieOrder.php:941, ../src/Payment/MollieOrderService.php:165, ../src/Payment/MollieOrderService.php:428, ../src/Payment/MollieOrderService.php:491, ../src/Payment/MollieOrderService.php:705, ../src/Payment/MolliePayment.php:223, ../src/Payment/MolliePayment.php:310, ../src/Payment/MolliePayment.php:379, ../src/Payment/MolliePayment.php:402, ../src/Payment/PaymentService.php:788, ../src/Subscription/MollieSepaRecurringGateway.php:138, ../src/Subscription/MollieSepaRecurringGateway.php:205, ../src/Subscription/MollieSubscriptionGateway.php:470 +msgid "test mode" +msgstr "testmodus" -#: build/inc/settings/mollie_paypal_button_enabler.php:54 -#: inc/settings/mollie_paypal_button_enabler.php:54 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill blue" -msgstr "Engels -- Kopen met PayPal - Pilvormig blauw" +#: ../src/Gateway/MolliePaymentGateway.php:964 +msgid ", payment pending." +msgstr ", betaling in behandeling." -#: build/inc/settings/mollie_paypal_button_enabler.php:55 -#: inc/settings/mollie_paypal_button_enabler.php:55 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded blue" -msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken blauw" +#: ../src/Gateway/MolliePaymentGateway.php:996 +msgid "Your order has been cancelled." +msgstr "Uw bestelling is geannuleerd." -#: build/inc/settings/mollie_paypal_button_enabler.php:56 -#: inc/settings/mollie_paypal_button_enabler.php:56 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill golden" -msgstr "Engels -- Kopen met PayPal - Pilvormig goud" +#: ../src/Gateway/Surcharge.php:81 +msgid "A surchage fee might apply" +msgstr "Een prijstoeslag zou van toepassing kunnen zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:57 -#: inc/settings/mollie_paypal_button_enabler.php:57 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded golden" -msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken goud" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. +#: ../src/Gateway/Surcharge.php:275 +msgid " + %1$s %2$s fee might apply" +msgstr " + %1$s %2$s prijstoeslag zou van toepassing kunnen zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:58 -#: inc/settings/mollie_paypal_button_enabler.php:58 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill gray" -msgstr "Engels -- Kopen met PayPal - Pilvormig grijs" +#. translators: Placeholder 1: Fee amount tag. +#: ../src/Gateway/Surcharge.php:292 +msgid " + %1$s%% fee might apply" +msgstr " + %1$s%% prijstoeslag zou van toepassing kunnen zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:59 -#: inc/settings/mollie_paypal_button_enabler.php:59 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded gray" -msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken grijs" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. +#: ../src/Gateway/Surcharge.php:315 +msgid " + %1$s %2$s + %3$s%% fee might apply" +msgstr " + %1$s %2$s + %3$s%% prijstoeslag zou van toepassing kunnen zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:60 -#: inc/settings/mollie_paypal_button_enabler.php:60 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill white" -msgstr "Engels -- Kopen met PayPal - Pilvormig wit" +#: ../src/Gateway/Surcharge.php:348 +msgid " (incl. VAT)" +msgstr " (incl. btw)" -#: build/inc/settings/mollie_paypal_button_enabler.php:61 -#: inc/settings/mollie_paypal_button_enabler.php:61 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded white" -msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:682 +msgid "%1$s payment failed via Mollie (%2$s)." +msgstr "%1$s betaling mislukt via Mollie (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:62 -#: inc/settings/mollie_paypal_button_enabler.php:62 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill black" -msgstr "Engels -- Betalen met PayPal - Pilvormig zwart" +#: ../src/Payment/MollieObject.php:650 +msgid "%1$s renewal payment failed via Mollie (%2$s). You will need to manually review the payment and adjust product stocks if you use them." +msgstr "%1$s vernieuwing van betaling mislukt via Mollie (%2$s). U dient de betaling handmatig te controleren en productvoorraden aan te passen als u dit gebruikt." -#: build/inc/settings/mollie_paypal_button_enabler.php:63 -#: inc/settings/mollie_paypal_button_enabler.php:63 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded black" -msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:721 +msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated." +msgstr "Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de bestellingsstatus is niet bijgewerkt." -#: build/inc/settings/mollie_paypal_button_enabler.php:64 -#: inc/settings/mollie_paypal_button_enabler.php:64 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill blue" -msgstr "Engels -- Betalen met PayPal - Pilvormig blauw" +#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID +#: ../src/Payment/MollieObject.php:740, ../src/PaymentMethods/InstructionStrategies/PaypalInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (PayPal transaction ID: %3$s)" +msgstr "Betaling voltooid met %1$s - %2$s (PayPal transactie-ID: %3$s)" -#: build/inc/settings/mollie_paypal_button_enabler.php:65 -#: inc/settings/mollie_paypal_button_enabler.php:65 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded blue" -msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken blauw" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:881 +msgctxt "Payment description for {orderNumber}" +msgid "Order {orderNumber}" +msgstr "Bestelling {orderNumber}" -#: build/inc/settings/mollie_paypal_button_enabler.php:66 -#: inc/settings/mollie_paypal_button_enabler.php:66 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill golden" -msgstr "Engels -- Betalen met PayPal - Pilvormig goud" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:891 +msgctxt "Payment description for {storeName}" +msgid "StoreName {storeName}" +msgstr "Winkelnaam {storeName}" -#: build/inc/settings/mollie_paypal_button_enabler.php:67 -#: inc/settings/mollie_paypal_button_enabler.php:67 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded golden" -msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken goud" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:901 +msgctxt "Payment description for {customer.firstname}" +msgid "Customer Firstname {customer.firstname}" +msgstr "Voornaam klant {customer.firstname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:68 -#: inc/settings/mollie_paypal_button_enabler.php:68 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill gray" -msgstr "Engels -- Betalen met PayPal - Pilvormig grijs" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:911 +msgctxt "Payment description for {customer.lastname}" +msgid "Customer Lastname {customer.lastname}" +msgstr "Achternaam klant {customer.lastname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:69 -#: inc/settings/mollie_paypal_button_enabler.php:69 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded gray" -msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken grijs" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:921 +msgctxt "Payment description for {customer.company}" +msgid "Customer Company {customer.company}" +msgstr "Bedrijfsnaam klant {customer.company}" -#: build/inc/settings/mollie_paypal_button_enabler.php:70 -#: inc/settings/mollie_paypal_button_enabler.php:70 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill white" -msgstr "Engels -- Betalen met PayPal - Pilvormig wit" +#: ../src/Payment/MollieObject.php:936 +msgid "Order" +msgstr "Bestelling" -#: build/inc/settings/mollie_paypal_button_enabler.php:71 -#: inc/settings/mollie_paypal_button_enabler.php:71 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded white" -msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:271, ../src/Payment/MolliePayment.php:221, ../src/Subscription/MollieSepaRecurringGateway.php:211 +msgid "Order completed using %1$s payment (%2$s)." +msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:72 -#: inc/settings/mollie_paypal_button_enabler.php:72 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill black" -msgstr "Nederlands -- Kopen met PayPal - Pilvormig zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:330 +msgid "Order authorized using %1$s payment (%2$s). Set order to completed in WooCommerce when you have shipped the products, to capture the payment. Do this within 28 days, or the order will expire. To handle individual order lines, process the order via the Mollie Dashboard." +msgstr "Bestelling geautoriseerd met gebruik van %1$s betaling (%2$s). Om de betaling te ontvangen, moet u na het verzenden van de producten de bestelling in WooCommerce als voltooid markeren. Doe dit binnen 28 dagen, anders verloopt de bestelling. Voor het afhandelen van afzonderlijke bestelregels, moet u de bestelling via het Mollie Dashboard verwerken." -#: build/inc/settings/mollie_paypal_button_enabler.php:73 -#: inc/settings/mollie_paypal_button_enabler.php:73 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded black" -msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:375 +msgid "Order completed at Mollie for %1$s order (%2$s). At least one order line completed. Remember: Completed status for an order at Mollie is not the same as Completed status in WooCommerce!" +msgstr "Bestelling voltooid bij Mollie voor %1$s bestelling (%2$s). Ten minste één bestellijn voltooid. Denk eraan: Voltooide status voor een bestelling bij Mollie is niet hetzelfde als Voltooide status in WooCommerce!" -#: build/inc/settings/mollie_paypal_button_enabler.php:74 -#: inc/settings/mollie_paypal_button_enabler.php:74 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill blue" -msgstr "Nederlands -- Kopen met PayPal - Pilvormig blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:457 +msgid "%1$s order (%2$s) cancelled ." +msgstr "%1$s bestelling (%2$s) geannuleerd." -#: build/inc/settings/mollie_paypal_button_enabler.php:75 -#: inc/settings/mollie_paypal_button_enabler.php:75 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded blue" -msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:520 +msgid "%1$s order expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s bestelling verlopen (%2$s) maar niet geannuleerd wegens een andere hangende betaling (%3$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:76 -#: inc/settings/mollie_paypal_button_enabler.php:76 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill golden" -msgstr "Nederlands -- Kopen met PayPal - Pilvormig goud" +#: ../src/Payment/MollieOrder.php:616 +msgctxt "Order note error" +msgid "The sum of refunds for all order lines is not identical to the refund amount, so this refund will be processed as a payment amount refund, not an order line refund." +msgstr "De som van de terugbetalingen voor alle bestelregels is niet identiek aan het terugbetalingsbedrag, dus deze terugbetaling zal worden verwerkt als een terugbetaling van het betalingsbedrag en niet als een terugbetaling van een bestelregel." -#: build/inc/settings/mollie_paypal_button_enabler.php:77 -#: inc/settings/mollie_paypal_button_enabler.php:77 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded golden" -msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken goud" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. +#: ../src/Payment/MollieOrder.php:747 +msgid "%1$sx %2$s cancelled for %3$s%4$s in WooCommerce and at Mollie." +msgstr "%1$sx %2$s geannuleerd voor %3$s%4$s in WooCommerce en bij Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:78 -#: inc/settings/mollie_paypal_button_enabler.php:78 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill gray" -msgstr "Nederlands -- Kopen met PayPal - Pilvormig grijs" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. Placeholder 5: Reason. Placeholder 6: Refund Id. +#: ../src/Payment/MollieOrder.php:763 +msgid "%1$sx %2$s refunded for %3$s%4$s in WooCommerce and at Mollie.%5$s Refund ID: %6$s." +msgstr "%1$sx %2$s terugbetaald voor %3$s%4$s in WooCommerce en bij Mollie.%5$s Terugbetalings-ID: %6$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:79 -#: inc/settings/mollie_paypal_button_enabler.php:79 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded gray" -msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken grijs" +#. translators: Placeholder 1: payment status. +#: ../src/Payment/MollieOrder.php:823 +msgctxt "Order note error" +msgid "Can not refund order amount that has status %1$s at Mollie." +msgstr "Kan het bestelbedrag dat de status %1$s heeft bij Mollie niet terugbetalen." -#: build/inc/settings/mollie_paypal_button_enabler.php:80 -#: inc/settings/mollie_paypal_button_enabler.php:80 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill white" -msgstr "Nederlands -- Kopen met PayPal - Pilvormig wit" +#. translators: Placeholder 1: Currency. Placeholder 2: Refund amount. Placeholder 3: Reason. Placeholder 4: Refund id. +#: ../src/Payment/MollieOrder.php:845 +msgid "Amount refund of %1$s%2$s refunded in WooCommerce and at Mollie.%3$s Refund ID: %4$s." +msgstr "Terugbetaling van %1$s%2$s terugbetaald in WooCommerce en bij Mollie.%3$s Terugbetalings-ID: %4$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:81 -#: inc/settings/mollie_paypal_button_enabler.php:81 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded white" -msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:936 +msgid "%1$s order (%2$s) expired ." +msgstr "%1$s bestelling (%2$s) verlopen." -#: build/inc/settings/mollie_paypal_button_enabler.php:82 -#: inc/settings/mollie_paypal_button_enabler.php:82 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill black" -msgstr "Nederlands -- Betalen met PayPal - Pilvormig zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID +#: ../src/Payment/MollieOrderService.php:162 +msgid "%1$s payment %2$s (%3$s), not processed." +msgstr "%1$s betaling %2$s (%3$s), niet verwerkt." -#: build/inc/settings/mollie_paypal_button_enabler.php:83 -#: inc/settings/mollie_paypal_button_enabler.php:83 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded black" -msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken zwart" +#: ../src/Payment/MollieOrderService.php:391 +msgid "New chargeback %s processed! Order note and order status updated." +msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt." -#: build/inc/settings/mollie_paypal_button_enabler.php:84 -#: inc/settings/mollie_paypal_button_enabler.php:84 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill blue" -msgstr "Nederlands -- Betalen met PayPal - Pilvormig blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:423 +msgid "%1$s payment charged back via Mollie (%2$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s betaling teruggevorderd via Mollie (%2$s). U moet de betaling handmatig controleren (en productvoorraden aanpassen als u dit gebruikt)." -#: build/inc/settings/mollie_paypal_button_enabler.php:85 -#: inc/settings/mollie_paypal_button_enabler.php:85 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded blue" -msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:485 +msgid "%1$s payment charged back via Mollie (%2$s). Subscription status updated, please review (and adjust product stocks if you use it)." +msgstr "%1$s betaling teruggevorderd via Mollie (%2$s). Abonnementstatus geüpdatet, gelieve te beoordelen (en productvoorraden aan te passen als u dit gebruikt)." -#: build/inc/settings/mollie_paypal_button_enabler.php:86 -#: inc/settings/mollie_paypal_button_enabler.php:86 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill golden" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:692 +msgid "%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s betaling %2$s via Mollie (%3$s %4$s). U dient de betaling handmatig te controleren (en productvoorraden aan te passen als u dit gebruikt)." + +#: ../src/Payment/MollieOrderService.php:805 +msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated." +msgstr "Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, maar bestelling niet bijgewerkt." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:308 +msgid "%1$s payment (%2$s) cancelled ." +msgstr "%1$s betaling (%2$s) geannuleerd." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:377 +msgid "%1$s payment expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s betaling verlopen (%2$s) maar niet geannuleerd wegens een andere hangende betaling (%3$s)." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:400 +msgid "%1$s payment expired (%2$s)." +msgstr "%1$s betaling verlopen (%2$s)." + +#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID +#: ../src/Payment/MolliePayment.php:476 +msgid "Refunded %1$s%2$s%3$s - Payment: %4$s, Refund: %5$s" +msgstr "Terugbetaald %1$s%2$s%3$s - Betaling: %4$s, Terugbetaling: %5$s" + +#. translators: Placeholder 1: order number +#: ../src/Payment/MollieSubscription.php:80 +msgctxt "Default payment description for subscription recurring payments" +msgid "Order %1$s" +msgstr "Bestelling %1$s" + +#: ../src/Payment/OrderItemsRefunder.php:121 +msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item." +msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld." + +#: ../src/Payment/OrderItemsRefunder.php:166 +msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount." +msgstr "Onmogelijk om het bestelartikel-id van het afstandsartikel terug te halen: %1$s Probeer een terugbetaling te doen per bedrag." + +#: ../src/Payment/OrderItemsRefunder.php:190 +msgid "Empty WooCommerce order items or mollie order lines." +msgstr "Lege WooCommerce-bestelartikelen of Mollie-bestellijnen." + +#: ../src/Payment/OrderLines.php:509 +msgid "Shipping" +msgstr "Verzending" + +#: ../src/Payment/PaymentModule.php:194 +msgid "Unpaid order cancelled - time limit reached." +msgstr "Onbetaalde bestelling geannuleerd - tijdslimiet bereikt." + +#: ../src/Payment/PaymentModule.php:213 +msgid "%1$s items refunded in WooCommerce and at Mollie." +msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie." + +#: ../src/Payment/PaymentModule.php:231 +msgid "%1$s items cancelled in WooCommerce and at Mollie." +msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie." + +#: ../src/Payment/PaymentModule.php:350 +msgctxt "Order note info" +msgid "Processing a payment, no capture needed" +msgstr "Betaling aan het verwerken, geen vastlegging nodig" + +#: ../src/Payment/PaymentModule.php:364 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be shipped/captured." +msgstr "Bestelling reeds geannuleerd bij Mollie, kan niet worden verzonden/vastgelegd." + +#: ../src/Payment/PaymentModule.php:372 +msgctxt "Order note info" +msgid "Order already completed at Mollie, can not be shipped/captured." +msgstr "Bestelling reeds voltooid bij Mollie, kan niet worden verzonden/vastgelegd." + +#: ../src/Payment/PaymentModule.php:381 +msgctxt "Order note info" +msgid "Order successfully updated to shipped at Mollie, capture of funds underway." +msgstr "Bestelling met succes bijgewerkt om te verzenden bij Mollie, vastlegging van middelen bezig." + +#: ../src/Payment/PaymentModule.php:387 +msgctxt "Order note info" +msgid "Order not paid or authorized at Mollie yet, can not be shipped." +msgstr "Bestelling nog niet betaald of geautoriseerd bij Mollie, kan niet worden verzonden." + +#: ../src/Payment/PaymentModule.php:421 +msgctxt "Order note info" +msgid "Order contains Mollie payment method, but not a valid Mollie Order ID. Canceling order failed." +msgstr "Bestelling bevat Mollie-betaalmethode, maar geen geldig Mollie-bestel-ID. Annulering van bestelling mislukt." + +#: ../src/Payment/PaymentModule.php:442 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be canceled again." +msgstr "Bestelling reeds geannuleerd bij Mollie, kan niet opnieuw worden geannuleerd." + +#: ../src/Payment/PaymentModule.php:452 +msgctxt "Order note info" +msgid "Order also cancelled at Mollie." +msgstr "Bestelling dus geannuleerd bij Mollie." + +#: ../src/Payment/PaymentModule.php:458 +msgctxt "Order note info" +msgid "Order could not be canceled at Mollie, because order status is " +msgstr "Bestelling kon niet worden geannuleerd bij Mollie, omdat bestelstatus is " + +#: ../src/Payment/PaymentService.php:620 +msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription." +msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats een volledig nieuwe bestelling om uw abonnement te wijzigen." + +#: ../src/Payment/PaymentService.php:626 +msgid "Failed switching subscriptions, no valid mandate." +msgstr "Abonnementen wijzigen mislukt, geen geldig mandaat." + +#: ../src/Payment/PaymentService.php:635 +msgid "Order completed internally because of an existing valid mandate at Mollie." +msgstr "Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie." + +#. translators: Placeholder 1: Payment method title +#: ../src/Payment/PaymentService.php:708, ../src/Buttons/ApplePayButton/AppleAjaxRequests.php:723, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:113, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:159 +msgid "Could not create %s payment." +msgstr "Kon geen %s betaling aanmaken." + +#: ../src/Payment/PaymentService.php:766, ../src/Subscription/MollieSepaRecurringGateway.php:127, ../src/Subscription/MollieSubscriptionGateway.php:461 +msgid "Awaiting payment confirmation." +msgstr "In afwachting van betalingsbevestiging." + +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Payment/PaymentService.php:786 +msgid "%s payment started (%s)." +msgstr "%s betaling gestart (%s)." + +#: ../src/Payment/RefundLineItemsBuilder.php:126 +msgid "Mollie doesn't allow a partial refund of the full amount or quantity of at least one order line. Trying to process this as an amount refund instead." +msgstr "Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag of hoeveelheid van ten minste één bestelregel. Probeer in plaats daarvan dit te verwerken als een terugbetaling van het bedrag." + +#: ../src/PaymentMethods/Applepay.php:14 +msgid "To accept payments via Apple Pay" +msgstr "Om betalingen te accepteren via Apple Pay" + +#: ../src/PaymentMethods/Bancontact.php:14 +msgid "Bancontact" +msgstr "Bancontact" + +#: ../src/PaymentMethods/Banktransfer.php:33 +msgid "Bank Transfer" +msgstr "Bankoverdracht" + +#: ../src/PaymentMethods/Banktransfer.php:55, ../src/Settings/General/MollieGeneralSettings.php:235 +msgid "Activate expiry time setting" +msgstr "Activeer instelling vervaldatum" + +#: ../src/PaymentMethods/Banktransfer.php:56, ../src/Settings/General/MollieGeneralSettings.php:236 +msgid "Enable expiry time for payments" +msgstr "Activeer de vervaldatum voor betalingen" + +# MS: Shouldn't this be: "after which the pending payment will expire?" Otherwise it sounds like an already fulfilled payment will expire which makes no sense, so in Dutch, I would add "waarna de mogelijkheid tot betaling vervalt", or something similar #query +#: ../src/PaymentMethods/Banktransfer.php:57 +msgid "Enable this option if you want to be able to set the time after which the payment will expire. This will turn all transactions into payments instead of orders" +msgstr "Activeer deze optie als u de mogelijkheid wilt hebben om het aantal dagen in te stellen waarna de betaling vervalt. Dit zet alle transacties in betalingen om in plaats van ze in bestellingen te wijzigen" + +#: ../src/PaymentMethods/Banktransfer.php:62, ../src/Settings/General/MollieGeneralSettings.php:242 +msgid "Expiry time" +msgstr "Vervaldatum" + +#. translators: Placeholder 1: Default expiry days. +#: ../src/PaymentMethods/Banktransfer.php:65 +msgid "Number of DAYS after the payment will expire. Default %d days" +msgstr "Aantal DAGEN nadat de betaling vervalt. Standaard %d dagen." + +#: ../src/PaymentMethods/Banktransfer.php:74 +msgid "Skip Mollie payment screen" +msgstr "Mollie-betaalscherm overslaan" + +#: ../src/PaymentMethods/Banktransfer.php:75 +msgid "Skip Mollie payment screen when Bank Transfer is selected" +msgstr "Sla Mollie-betaalscherm over wanneer bankoverschrijving is geselecteerd" + +#: ../src/PaymentMethods/Banktransfer.php:76 +msgid "Enable this option if you want to skip redirecting your user to the Mollie payment screen, instead this will redirect your user directly to the WooCommerce order received page displaying instructions how to complete the Bank Transfer payment." +msgstr "Activeer deze optie als u het doorsturen van uw gebruiker naar het Mollie-betaalscherm wilt overslaan. In plaats daarvan stuurt dit uw gebruiker rechtstreeks naar de WooCommerce-pagina 'Bestelling ontvangen' met instructies voor het voltooien van de betaling via bankoverschrijving." + +#: ../src/PaymentMethods/Belfius.php:13 +msgid "Belfius Direct Net" +msgstr "Belfius Direct Net" + +#: ../src/PaymentMethods/Creditcard.php:16 +msgid "Credit card" +msgstr "Creditcard" + +#: ../src/PaymentMethods/Creditcard.php:52 +msgid "Enable Mollie Components" +msgstr "Activeer Mollie-componenten" + +#. translators: Placeholder 1: Mollie Components. +#: ../src/PaymentMethods/Creditcard.php:55 +msgid "Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." +msgstr "Gebruik de Mollie-componenten voor deze gateway. Lees meer over %s en hoe het uw conversie verbetert." + +#: ../src/PaymentMethods/Creditcard.php:59, ../src/Settings/Page/Components.php:21, ../src/Settings/Page/MollieSettingsPage.php:703 +msgid "Mollie Components" +msgstr "Mollie-componenten" + +#: ../src/PaymentMethods/Creditcard.php:92 +msgid "Customize Icons" +msgstr "Pas pictogrammen aan" + +#: ../src/PaymentMethods/Creditcard.php:99 +msgid "Enable Icons Selector" +msgstr "Activeer pictogramselectie" + +#: ../src/PaymentMethods/Creditcard.php:100 +msgid "Show customized creditcard icons on checkout page" +msgstr "Toon aangepaste creditcardpictogrammen op betaalpagina" + +#: ../src/PaymentMethods/Creditcard.php:108 +msgid "Show American Express Icon" +msgstr "Toon American Express pictogram" + +#: ../src/PaymentMethods/Creditcard.php:113 +msgid "Show Carta Si Icon" +msgstr "Toon Carta Si pictogram" + +#: ../src/PaymentMethods/Creditcard.php:118 +msgid "Show Carte Bancaire Icon" +msgstr "Toon Carte Bancaire pictogram" + +#: ../src/PaymentMethods/Creditcard.php:123 +msgid "Show Maestro Icon" +msgstr "Toon Maestro pictogram" + +#: ../src/PaymentMethods/Creditcard.php:128 +msgid "Show Mastercard Icon" +msgstr "Toon Mastercard pictogram" + +#: ../src/PaymentMethods/Creditcard.php:133 +msgid "Show Visa Icon" +msgstr "Toon Visa pictogram" + +#: ../src/PaymentMethods/Creditcard.php:138 +msgid "Show VPay Icon" +msgstr "Toon Vpay pictogram" + +#: ../src/PaymentMethods/Directdebit.php:13 +msgid "SEPA Direct Debit" +msgstr "SEPA-incasso" + +#: ../src/PaymentMethods/Directdebit.php:14 +msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscriptions, and will not be shown in the WooCommerce checkout for regular payments! You also need to enable iDEAL and/or other \"first\" payment methods if you want to use SEPA Direct Debit." +msgstr "SEPA-incasso wordt gebruikt voor terugkerende betalingen met WooCommerce-abonnementen, en wordt niet getoond in de WooCommerce kassa voor reguliere betalingen! U moet ook iDEAL en/of andere \"eerste\" betaalmethodes activeren als u SEPA-incasso wilt gebruiken." + +#: ../src/PaymentMethods/Eps.php:13 +msgid "EPS" +msgstr "EPS" + +#: ../src/PaymentMethods/Giftcard.php:30 +msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency" +msgid "Mollie - Giftcard details: %1$s %2$s %3$s." +msgstr "Mollie - Details cadeaukaart: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:42 +msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency" +msgid " Remainder: %1$s %2$s %3$s." +msgstr " Restant: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:60 +msgid "Gift cards" +msgstr "Cadeaubonnen" + +#: ../src/PaymentMethods/Giftcard.php:62, ../src/PaymentMethods/Giftcard.php:105 +msgid "Select your gift card" +msgstr "Selecteer uw cadeaubon" + +#: ../src/PaymentMethods/Giftcard.php:78 +msgid "Show gift cards dropdown" +msgstr "Toon cadeaubonnen-dropdown" + +#: ../src/PaymentMethods/Giftcard.php:84 +msgid "If you disable this, a dropdown with various gift cards will not be shown in the WooCommerce checkout, so users will select a gift card on the Mollie payment page after checkout." +msgstr "Als u dit deactiveert, zal een dropdown met verschillende cadeaubonnen niet in de WooCommerce- checkout worden getoond. Gebruikers zullen dus een cadeaubon selecteren op de Mollie-betaalpagina na het afrekenen." + +#: ../src/PaymentMethods/Giftcard.php:93, ../src/PaymentMethods/Ideal.php:46, ../src/PaymentMethods/Kbc.php:48 +msgid "Issuers empty option" +msgstr "Optie uitgevers leeg" + +#: ../src/PaymentMethods/Giftcard.php:99 +msgid "This text will be displayed as the first option in the gift card dropdown, but only if the above 'Show gift cards dropdown' is enabled." +msgstr "Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd." + +#: ../src/PaymentMethods/Giropay.php:13 +msgid "Giropay" +msgstr "Giropay" + +#: ../src/PaymentMethods/Ideal.php:15 +msgid "iDEAL" +msgstr "iDEAL" + +#: ../src/PaymentMethods/Ideal.php:17, ../src/PaymentMethods/Ideal.php:55, ../src/PaymentMethods/Kbc.php:16, ../src/PaymentMethods/Kbc.php:60 +msgid "Select your bank" +msgstr "Selecteer uw bank" + +#: ../src/PaymentMethods/Ideal.php:34 +msgid "Show iDEAL banks dropdown" +msgstr "Toon iDEAL-banken dropdown" + +#: ../src/PaymentMethods/Ideal.php:37 +msgid "If you disable this, a dropdown with various iDEAL banks will not be shown in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie payment page after checkout." +msgstr "Als je dit deactiveert, zal een dropdown bij verschillende iDEAL-banken niet in de WooCommerce-checkout worden getoond, dus gebruikers zullen een iDEAL-bank selecteren op de Mollie-betaalpagina na het afrekenen." + +#: ../src/PaymentMethods/Ideal.php:49 +msgid "This text will be displayed as the first option in the iDEAL issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above 'Show iDEAL banks dropdown' is enabled." +msgstr "Deze tekst wordt weergegeven als eerste optie in de iDEAL-uitgevers dropdown, als er niets wordt ingevoerd, wordt \"Selecteer je bank\" weergegeven. Alleen als het bovenstaande ''Toon iDEAL-banken dropdown'' is geactiveerd." + +#: ../src/PaymentMethods/In3.php:13 +msgid "in3" +msgstr "in3" + +#: ../src/PaymentMethods/In3.php:15 +msgid "Pay in 3 instalments, 0% interest" +msgstr "Betalen in 3 termijnen, 0% rente" + +#: ../src/PaymentMethods/Kbc.php:14 +msgid "KBC/CBC Payment Button" +msgstr "KBC/CBC Betaalknop" + +#: ../src/PaymentMethods/Kbc.php:33 +msgid "Show KBC/CBC banks dropdown" +msgstr "Toon KBC/CBC-banken dropdown" + +#: ../src/PaymentMethods/Kbc.php:39 +msgid "If you disable this, a dropdown with various KBC/CBC banks will not be shown in the WooCommerce checkout, so users will select a KBC/CBC bank on the Mollie payment page after checkout." +msgstr "Als u dit deactiveert, zal een dropdown bij verschillende KBC/CBC-banken niet in de WooCommerce- checkout worden getoond. Gebruikers zullen dus een KBC/CBC-bank selecteren op de Mollie-betaalpagina na het afrekenen." + +#: ../src/PaymentMethods/Kbc.php:54 +msgid "This text will be displayed as the first option in the KBC/CBC issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above ''Show KBC/CBC banks dropdown' is enabled." +msgstr "Deze tekst wordt weergegeven als eerste optie in de KBC/CBC-uitgevers dropdown. Als er niets wordt ingevoerd, wordt 'Kies uw bank' weergegeven. Alleen als het bovenstaande ''Toon KBC/CBC-banken dropdown'' is geactiveerd." + +#: ../src/PaymentMethods/Klarnapaylater.php:13 +msgid "Klarna Pay later" +msgstr "Klarna betaal later" + +#: ../src/PaymentMethods/Klarnapaylater.php:14, ../src/PaymentMethods/Klarnapaynow.php:14, ../src/PaymentMethods/Klarnasliceit.php:15 +msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required." +msgstr "Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn." + +#: ../src/PaymentMethods/Klarnapaynow.php:13 +msgid "Klarna Pay Now" +msgstr "Klarna betaal nu" + +#: ../src/PaymentMethods/Klarnasliceit.php:14 +msgid "Klarna Slice it" +msgstr "Klarna Betaal in 3 delen" + +#: ../src/PaymentMethods/Mybank.php:14 +msgid "MyBank" +msgstr "MyBank" + +#: ../src/PaymentMethods/Mybank.php:15 +msgid "To accept payments via MyBank" +msgstr "Om betalingen te accepteren via MyBank" + +#: ../src/PaymentMethods/Paypal.php:14 +msgid "PayPal" +msgstr "PayPal" + +#: ../src/PaymentMethods/Paypal.php:34 +msgid "Display on cart page" +msgstr "Toon op de winkelwagenpagina" + +#: ../src/PaymentMethods/Paypal.php:38 +msgid "Enable the PayPal button to be used in the cart page." +msgstr "Activeer de PayPal-knop om te gebruiken op de winkelwagenpagina." + +#: ../src/PaymentMethods/Paypal.php:46 +msgid "Display on product page" +msgstr "Toon op de productpagina" + +#: ../src/PaymentMethods/Paypal.php:50 +msgid "Enable the PayPal button to be used in the product page." +msgstr "Activeer de PayPal-knop om te gebruiken op de productpagina." + +#: ../src/PaymentMethods/Paypal.php:59 +msgctxt "Mollie PayPal Button Settings" +msgid "Button text language and color" +msgstr "Knop tekst taal en kleur" + +#: ../src/PaymentMethods/Paypal.php:60 +msgctxt "Mollie PayPal Button Settings" +msgid "Select the text and the colour of the button." +msgstr "Kies de tekst en de kleur van de knop." + +#: ../src/PaymentMethods/Paypal.php:70 +msgid "Minimum amount to display button" +msgstr "Minimum bedrag voor de weergave van de knop" + +#: ../src/PaymentMethods/Paypal.php:74 +msgid "If the product or the cart total amount is under this number, then the button will not show up." +msgstr "Als het product of het totaalbedrag van de winkelwagen onder dit getal blijft, dan verschijnt de knop niet." + +#: ../src/PaymentMethods/Paypal.php:89 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill blue" +msgstr "Engels -- Kopen met PayPal - Pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:90 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded blue" +msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:91 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill golden" +msgstr "Engels -- Kopen met PayPal - Pilvormig goud" + +#: ../src/PaymentMethods/Paypal.php:92 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded golden" +msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken goud" + +#: ../src/PaymentMethods/Paypal.php:93 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill gray" +msgstr "Engels -- Kopen met PayPal - Pilvormig grijs" + +#: ../src/PaymentMethods/Paypal.php:94 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded gray" +msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken grijs" + +#: ../src/PaymentMethods/Paypal.php:95 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill white" +msgstr "Engels -- Kopen met PayPal - Pilvormig wit" + +#: ../src/PaymentMethods/Paypal.php:96 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded white" +msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken wit" + +#: ../src/PaymentMethods/Paypal.php:97 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill black" +msgstr "Engels -- Betalen met PayPal - Pilvormig zwart" + +#: ../src/PaymentMethods/Paypal.php:98 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded black" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken zwart" + +#: ../src/PaymentMethods/Paypal.php:99 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill blue" +msgstr "Engels -- Betalen met PayPal - Pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:100 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded blue" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:101 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill golden" +msgstr "Engels -- Betalen met PayPal - Pilvormig goud" + +#: ../src/PaymentMethods/Paypal.php:102 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded golden" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken goud" + +#: ../src/PaymentMethods/Paypal.php:103 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill gray" +msgstr "Engels -- Betalen met PayPal - Pilvormig grijs" + +#: ../src/PaymentMethods/Paypal.php:104 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded gray" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken grijs" + +#: ../src/PaymentMethods/Paypal.php:105 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill white" +msgstr "Engels -- Betalen met PayPal - Pilvormig wit" + +#: ../src/PaymentMethods/Paypal.php:106 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded white" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken wit" + +#: ../src/PaymentMethods/Paypal.php:107 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill black" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig zwart" + +#: ../src/PaymentMethods/Paypal.php:108 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded black" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken zwart" + +#: ../src/PaymentMethods/Paypal.php:109 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill blue" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:110 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded blue" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:111 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill golden" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig goud" + +#: ../src/PaymentMethods/Paypal.php:112 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded golden" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken goud" + +#: ../src/PaymentMethods/Paypal.php:113 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill gray" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig grijs" + +#: ../src/PaymentMethods/Paypal.php:114 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded gray" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken grijs" + +#: ../src/PaymentMethods/Paypal.php:115 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill white" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig wit" + +#: ../src/PaymentMethods/Paypal.php:116 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded white" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken wit" + +#: ../src/PaymentMethods/Paypal.php:117 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill black" +msgstr "Nederlands -- Betalen met PayPal - Pilvormig zwart" + +#: ../src/PaymentMethods/Paypal.php:118 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded black" +msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken zwart" + +#: ../src/PaymentMethods/Paypal.php:119 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill blue" +msgstr "Nederlands -- Betalen met PayPal - Pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:120 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded blue" +msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:121 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill golden" msgstr "Nederlands -- Betalen met PayPal - Pilvormig goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:87 -#: inc/settings/mollie_paypal_button_enabler.php:87 +#: ../src/PaymentMethods/Paypal.php:122 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded golden" msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:88 -#: inc/settings/mollie_paypal_button_enabler.php:88 +#: ../src/PaymentMethods/Paypal.php:123 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill gray" msgstr "Nederlands -- Betalen met PayPal - Pilvormig grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:89 -#: inc/settings/mollie_paypal_button_enabler.php:89 +#: ../src/PaymentMethods/Paypal.php:124 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded gray" msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:90 -#: inc/settings/mollie_paypal_button_enabler.php:90 +#: ../src/PaymentMethods/Paypal.php:125 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill white" msgstr "Nederlands -- Betalen met PayPal - Pilvormig wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:91 -#: inc/settings/mollie_paypal_button_enabler.php:91 +#: ../src/PaymentMethods/Paypal.php:126 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded white" msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:92 -#: inc/settings/mollie_paypal_button_enabler.php:92 +#: ../src/PaymentMethods/Paypal.php:127 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill black" msgstr "Duits -- Kopen met PayPal - Pilvormig zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:93 -#: inc/settings/mollie_paypal_button_enabler.php:93 +#: ../src/PaymentMethods/Paypal.php:128 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded black" msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:94 -#: inc/settings/mollie_paypal_button_enabler.php:94 +#: ../src/PaymentMethods/Paypal.php:129 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill blue" msgstr "Duits -- Kopen met PayPal - Pilvormig blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:95 -#: inc/settings/mollie_paypal_button_enabler.php:95 +#: ../src/PaymentMethods/Paypal.php:130 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded blue" msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:96 -#: inc/settings/mollie_paypal_button_enabler.php:96 +#: ../src/PaymentMethods/Paypal.php:131 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill golden" msgstr "Duits -- Kopen met PayPal - Pilvormig goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:97 -#: inc/settings/mollie_paypal_button_enabler.php:97 +#: ../src/PaymentMethods/Paypal.php:132 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded golden" msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:98 -#: inc/settings/mollie_paypal_button_enabler.php:98 +#: ../src/PaymentMethods/Paypal.php:133 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill gray" msgstr "Duits -- Kopen met PayPal - Pilvormig grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:99 -#: inc/settings/mollie_paypal_button_enabler.php:99 +#: ../src/PaymentMethods/Paypal.php:134 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded gray" msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:100 -#: inc/settings/mollie_paypal_button_enabler.php:100 +#: ../src/PaymentMethods/Paypal.php:135 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill white" msgstr "Duits -- Kopen met PayPal - Pilvormig wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:101 -#: inc/settings/mollie_paypal_button_enabler.php:101 +#: ../src/PaymentMethods/Paypal.php:136 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded white" msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:102 -#: inc/settings/mollie_paypal_button_enabler.php:102 +#: ../src/PaymentMethods/Paypal.php:137 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill black" msgstr "Duits -- Betalen met PayPal - Pilvormig zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:103 -#: inc/settings/mollie_paypal_button_enabler.php:103 +#: ../src/PaymentMethods/Paypal.php:138 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded black" msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:104 -#: inc/settings/mollie_paypal_button_enabler.php:104 +#: ../src/PaymentMethods/Paypal.php:139 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill blue" msgstr "Duits -- Betalen met PayPal - Pilvormig blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:105 -#: inc/settings/mollie_paypal_button_enabler.php:105 +#: ../src/PaymentMethods/Paypal.php:140 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded blue" msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:106 -#: inc/settings/mollie_paypal_button_enabler.php:106 +#: ../src/PaymentMethods/Paypal.php:141 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill golden" msgstr "Duits -- Betalen met PayPal - Pilvormig goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:107 -#: inc/settings/mollie_paypal_button_enabler.php:107 +#: ../src/PaymentMethods/Paypal.php:142 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded golden" msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:108 -#: inc/settings/mollie_paypal_button_enabler.php:108 +#: ../src/PaymentMethods/Paypal.php:143 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill gray" msgstr "Duits -- Betalen met PayPal - Pilvormig grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:109 -#: inc/settings/mollie_paypal_button_enabler.php:109 +#: ../src/PaymentMethods/Paypal.php:144 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded gray" msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:110 -#: inc/settings/mollie_paypal_button_enabler.php:110 +#: ../src/PaymentMethods/Paypal.php:145 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill white" msgstr "Duits -- Betalen met PayPal - Pilvormig wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:111 -#: inc/settings/mollie_paypal_button_enabler.php:111 +#: ../src/PaymentMethods/Paypal.php:146 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded white" msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:112 -#: inc/settings/mollie_paypal_button_enabler.php:112 +#: ../src/PaymentMethods/Paypal.php:147 msgctxt "Mollie PayPal button Settings" msgid "French -- Buy with PayPal - Gold" msgstr "Frans -- Kopen met PayPal - Goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:113 -#: inc/settings/mollie_paypal_button_enabler.php:113 +#: ../src/PaymentMethods/Paypal.php:148 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Gold" msgstr "Frans -- Betalen met PayPal - Goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:114 -#: inc/settings/mollie_paypal_button_enabler.php:114 +#: ../src/PaymentMethods/Paypal.php:149 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Silver" msgstr "Frans -- Betalen met PayPal - Zilver" -#: build/inc/settings/mollie_paypal_button_enabler.php:115 -#: inc/settings/mollie_paypal_button_enabler.php:115 -msgctxt "Mollie PayPal button Settings" -msgid "Polish -- Buy with PayPal - Gold" -msgstr "Pools -- Kopen met PayPal - Goud" - -#: build/inc/settings/mollie_paypal_button_enabler.php:116 -#: inc/settings/mollie_paypal_button_enabler.php:116 -msgctxt "Mollie PayPal button Settings" -msgid "Polish -- Checkout with PayPal - Gold" -msgstr "Pools -- Betalen met PayPal - Goud" - -#: build/inc/settings/mollie_paypal_button_enabler.php:117 -#: inc/settings/mollie_paypal_button_enabler.php:117 -msgctxt "Mollie PayPal button Settings" -msgid "Polish -- Checkout with PayPal - Silver" -msgstr "Pools -- Betalen met PayPal - Zilver" - -#: build/inc/settings/mollie_paypal_button_enabler.php:122 -#: inc/settings/mollie_paypal_button_enabler.php:122 -msgid "Minimum amount to display button" -msgstr "Minimum bedrag voor de weergave van de knop" - -#: build/inc/settings/mollie_paypal_button_enabler.php:126 -#: inc/settings/mollie_paypal_button_enabler.php:126 -msgid "" -"If the product or the cart total amount is under this number, then the " -"button will not show up." -msgstr "" -"Als het product of het totaalbedrag van de winkelwagen onder dit getal " -"blijft, dan verschijnt de knop niet." - -#: build/mollie-payments-for-woocommerce.php:90 -#: mollie-payments-for-woocommerce.php:90 -msgid "" -"%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set " -"your API keys here%4$s." -msgstr "" -"%1$sMollie-betalingen voor WooCommerce: API-sleutels ontbreken%2$s Gelieve" -"%3$s uw API-sleutels hier in te stellen%4$s." - -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: build/src/Mollie/WC/Gateway/Abstract.php:685 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: src/Mollie/WC/Gateway/Abstract.php:685 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -msgid "Could not create %s payment." -msgstr "Kon geen %s betaling aanmaken." - -#: build/src/Mollie/WC/Gateway/Abstract.php:138 -#: src/Mollie/WC/Gateway/Abstract.php:138 -msgid "No custom logo selected" -msgstr "Geen aangepast logo gekozen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:221 -#: src/Mollie/WC/Gateway/Abstract.php:221 -msgid "Gateway Disabled" -msgstr "Gateway gedeactiveerd" - -#: build/src/Mollie/WC/Gateway/Abstract.php:244 -#: src/Mollie/WC/Gateway/Abstract.php:244 -msgid "Return to payments" -msgstr "Ga terug naar betalingen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:260 -#: build/src/Mollie/WC/Helper/Settings.php:114 -#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114 -msgid "Sell to specific countries" -msgstr "Verkopen aan specifieke landen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:272 -#: src/Mollie/WC/Gateway/Abstract.php:272 -msgid "Choose countries…" -msgstr "Kies landen…" - -#: build/src/Mollie/WC/Gateway/Abstract.php:273 -#: src/Mollie/WC/Gateway/Abstract.php:273 -msgid "Country" -msgstr "Land" - -#: build/src/Mollie/WC/Gateway/Abstract.php:282 -#: src/Mollie/WC/Gateway/Abstract.php:282 -msgid "Select all" -msgstr "Selecteer alles" - -#: build/src/Mollie/WC/Gateway/Abstract.php:283 -#: src/Mollie/WC/Gateway/Abstract.php:283 -msgid "Select none" -msgstr "Selecteer niets" - -#: build/src/Mollie/WC/Gateway/Abstract.php:337 -#: build/src/Mollie/WC/Helper/Settings.php:558 -#: src/Mollie/WC/Gateway/Abstract.php:337 src/Mollie/WC/Helper/Settings.php:558 -msgid "Test mode enabled." -msgstr "Testmodus geactiveerd." - -#. translators: The surrounding %s's Will be replaced by a link to the global setting page -#: build/src/Mollie/WC/Gateway/Abstract.php:339 -#: src/Mollie/WC/Gateway/Abstract.php:339 -msgid "No API key provided. Please %sset you Mollie API key%s first." -msgstr "Geen API-sleutel geleverd. Stel eerst %suw Mollie API-sleutel%s in." - -#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Gateway/Abstract.php:351 -#: src/Mollie/WC/Gateway/Abstract.php:351 -msgid "" -"%s not enabled in your Mollie profile. You can enable it by editing your " -"%sMollie profile%s." -msgstr "" -"%s niet geactiveerd in uw Mollie-profiel. U kunt het activeren door uw " -"%sMollie-profiel%s te bewerken." - -#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies -#: build/src/Mollie/WC/Gateway/Abstract.php:363 -#: src/Mollie/WC/Gateway/Abstract.php:363 -msgid "" -"Current shop currency %s not supported by Mollie. Read more about " -"%ssupported currencies and payment methods.%s " -msgstr "" -"Huidige shopvaluta %s niet ondersteund door Mollie. Lees meer over " -"%sondersteunde valuta's en betaalmethoden.%s " - -#: build/src/Mollie/WC/Gateway/Abstract.php:525 -#: src/Mollie/WC/Gateway/Abstract.php:525 -msgid "Could not load order %s" -msgstr "Kon bestelling niet laden %s" - -#: build/src/Mollie/WC/Gateway/Abstract.php:577 -#: src/Mollie/WC/Gateway/Abstract.php:577 -msgid "" -"Order completed internally because of an existing valid mandate at Mollie." -msgstr "" -"Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie." - -#: build/src/Mollie/WC/Gateway/Abstract.php:588 -#: src/Mollie/WC/Gateway/Abstract.php:588 -msgid "" -"Subscription switch failed, no valid mandate found. Place a completely new " -"order to change your subscription." -msgstr "" -"Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats " -"een volledig nieuwe bestelling om uw abonnement te wijzigen." - -#: build/src/Mollie/WC/Gateway/Abstract.php:589 -#: src/Mollie/WC/Gateway/Abstract.php:589 -msgid "Failed switching subscriptions, no valid mandate." -msgstr "Abonnementen wijzigen mislukt, geen geldig mandaat." - -#: build/src/Mollie/WC/Gateway/Abstract.php:658 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:413 -#: src/Mollie/WC/Gateway/Abstract.php:658 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:413 -msgid "Awaiting payment confirmation." -msgstr "In afwachting van betalingsbevestiging." - -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:668 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:420 -#: src/Mollie/WC/Gateway/Abstract.php:668 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:420 -msgid "%s payment started (%s)." -msgstr "%s betaling gestart (%s)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:670 -#: build/src/Mollie/WC/Gateway/Abstract.php:897 -#: build/src/Mollie/WC/Gateway/Abstract.php:1181 -#: build/src/Mollie/WC/Gateway/Abstract.php:1243 -#: build/src/Mollie/WC/Gateway/Abstract.php:1618 -#: build/src/Mollie/WC/Gateway/Abstract.php:2142 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: build/src/Mollie/WC/Payment/Object.php:608 -#: build/src/Mollie/WC/Payment/Object.php:642 -#: build/src/Mollie/WC/Payment/Order.php:264 -#: build/src/Mollie/WC/Payment/Order.php:316 -#: build/src/Mollie/WC/Payment/Order.php:363 -#: build/src/Mollie/WC/Payment/Order.php:446 -#: build/src/Mollie/WC/Payment/Order.php:511 -#: build/src/Mollie/WC/Payment/Order.php:936 -#: build/src/Mollie/WC/Payment/Payment.php:249 -#: build/src/Mollie/WC/Payment/Payment.php:336 -#: build/src/Mollie/WC/Payment/Payment.php:406 -#: build/src/Mollie/WC/Payment/Payment.php:429 -#: src/Mollie/WC/Gateway/Abstract.php:670 -#: src/Mollie/WC/Gateway/Abstract.php:897 -#: src/Mollie/WC/Gateway/Abstract.php:1181 -#: src/Mollie/WC/Gateway/Abstract.php:1243 -#: src/Mollie/WC/Gateway/Abstract.php:1618 -#: src/Mollie/WC/Gateway/Abstract.php:2142 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642 -#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316 -#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446 -#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936 -#: src/Mollie/WC/Payment/Payment.php:249 src/Mollie/WC/Payment/Payment.php:336 -#: src/Mollie/WC/Payment/Payment.php:406 src/Mollie/WC/Payment/Payment.php:429 -msgid "test mode" -msgstr "testmodus" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:894 -#: src/Mollie/WC/Gateway/Abstract.php:894 -msgid "%s payment %s (%s), not processed." -msgstr "%s betaling %s (%s), niet verwerkt." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1008 -#: src/Mollie/WC/Gateway/Abstract.php:1008 -msgid "" -"New refund %s processed in Mollie Dashboard! Order note added, but order not " -"updated." -msgstr "" -"Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, " -"maar bestelling niet bijgewerkt." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1144 -#: src/Mollie/WC/Gateway/Abstract.php:1144 -msgid "New chargeback %s processed! Order note and order status updated." -msgstr "" -"Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1176 -#: src/Mollie/WC/Gateway/Abstract.php:1176 -msgid "" -"%s payment charged back via Mollie (%s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%s betaling teruggevorderd via Mollie (%s). U moet de betaling handmatig " -"controleren (en productvoorraden aanpassen als u dit gebruikt)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1237 -#: src/Mollie/WC/Gateway/Abstract.php:1237 -msgid "" -"%s payment charged back via Mollie (%s). Subscription status updated, please " -"review (and adjust product stocks if you use it)." -msgstr "" -"%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet, " -"gelieve te beoordelen (en productvoorraden aan te passen als u dit gebruikt)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1314 -#: src/Mollie/WC/Gateway/Abstract.php:1314 -msgid "" -"You have cancelled your payment. Please complete your order with a different " -"payment method." -msgstr "" -"U hebt uw betaling geannuleerd. Vervolledig uw bestelling met een andere " -"betaalmethode." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1328 -#: build/src/Mollie/WC/Gateway/Abstract.php:1337 -#: src/Mollie/WC/Gateway/Abstract.php:1328 -#: src/Mollie/WC/Gateway/Abstract.php:1337 -msgid "" -"Your payment was not successful. Please complete your order with a different " -"payment method." -msgstr "" -"Uw betaling is niet gelukt. Vervolledig uw bestelling met een andere " -"betaalmethode." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1529 -#: src/Mollie/WC/Gateway/Abstract.php:1529 -msgid "We have not received a definite payment status." -msgstr "We hebben geen definitieve betalingsstatus ontvangen." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1534 -#: src/Mollie/WC/Gateway/Abstract.php:1534 -msgid "" -"We have not received a definite payment status. You will receive an email as " -"soon as we receive a confirmation of the bank/merchant." -msgstr "" -"We hebben geen definitieve betalingsstatus ontvangen. U ontvangt een e-mail " -"zodra we een bevestiging van de bank/handelaar ontvangen." - -#. translators: Placeholder 1: payment method -#: build/src/Mollie/WC/Gateway/Abstract.php:1541 -#: src/Mollie/WC/Gateway/Abstract.php:1541 -msgid "Payment completed with %s" -msgstr "Betaling voltooid met %s" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1589 -#: src/Mollie/WC/Gateway/Abstract.php:1589 -msgid "Order cancelled" -msgstr "Bestelling geannuleerd" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1616 -#: src/Mollie/WC/Gateway/Abstract.php:1616 -msgid "" -"%s payment still pending (%s) but customer already returned to the store. " -"Status should be updated automatically in the future, if it doesn't this " -"might indicate a communication issue between the site and Mollie." -msgstr "" -"%s betaling nog in behandeling (%s) maar klant is reeds teruggekeerd naar de " -"shop. Status moet in de toekomst automatisch worden bijgewerkt. Als dat niet " -"gebeurt, kan dit wijzen op een communicatieprobleem tussen de site en Mollie." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1625 -#: src/Mollie/WC/Gateway/Abstract.php:1625 -msgid ", payment pending." -msgstr ", betaling in behandeling." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1652 -#: src/Mollie/WC/Gateway/Abstract.php:1652 -msgid "Your order has been cancelled." -msgstr "Uw bestelling is geannuleerd." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:2129 -#: src/Mollie/WC/Gateway/Abstract.php:2129 -msgid "" -"%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%1$s betaling %2$s via Mollie (%3$s %4$s). U moet de betaling handmatig " -"controleren (en productvoorraden aanpassen als u dit gebruikt)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:2166 -#: src/Mollie/WC/Gateway/Abstract.php:2166 -msgctxt "" -"Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid "Mollie - Giftcard details: %1$s %2$s %3$s." -msgstr "Mollie - Details cadeaukaart: %1$s %2$s %3$s." - -#: build/src/Mollie/WC/Gateway/Abstract.php:2178 -#: src/Mollie/WC/Gateway/Abstract.php:2178 -msgctxt "" -"Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid " Remainder: %1$s %2$s %3$s." -msgstr " Restant: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Paypal.php:150 +msgctxt "Mollie PayPal button Settings" +msgid "Polish -- Buy with PayPal - Gold" +msgstr "Pools -- Kopen met PayPal - Goud" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. -#: build/src/Mollie/WC/Gateway/Abstract.php:2580 -#: src/Mollie/WC/Gateway/Abstract.php:2580 -msgid " + %1$s %2$s fee might apply" -msgstr " + %1$s %2$s prijstoeslag zou van toepassing kunnen zijn" +#: ../src/PaymentMethods/Paypal.php:151 +msgctxt "Mollie PayPal button Settings" +msgid "Polish -- Checkout with PayPal - Gold" +msgstr "Pools -- Betalen met PayPal - Goud" -#. translators: Placeholder 1: Fee amount tag. -#: build/src/Mollie/WC/Gateway/Abstract.php:2590 -#: src/Mollie/WC/Gateway/Abstract.php:2590 -msgid " + %1$s%% fee might apply" -msgstr " + %1$s%% prijstoeslag zou van toepassing kunnen zijn" +#: ../src/PaymentMethods/Paypal.php:152 +msgctxt "Mollie PayPal button Settings" +msgid "Polish -- Checkout with PayPal - Silver" +msgstr "Pools -- Betalen met PayPal - Zilver" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. -#: build/src/Mollie/WC/Gateway/Abstract.php:2607 -#: src/Mollie/WC/Gateway/Abstract.php:2607 -msgid " + %1$s %2$s + %3$s%% fee might apply" -msgstr " + %1$s %2$s + %3$s%% prijstoeslag zou van toepassing kunnen zijn" +#: ../src/PaymentMethods/Paysafecard.php:14 +msgid "paysafecard" +msgstr "paysafecard" -#: build/src/Mollie/WC/Gateway/Abstract.php:2646 -#: src/Mollie/WC/Gateway/Abstract.php:2646 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must " -"be under 500kb." -msgstr "" -"%1$sMollie-betalingen voor WooCommerce%2$s Bestand uploaden niet mogelijk. " -"De grootte mag niet meer bedragen dan 500 kB." +#: ../src/PaymentMethods/Przelewy24.php:14 +msgid "Przelewy24" +msgstr "Przelewy24" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -msgid "Order completed using %1$s payment (%2$s)." -msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)." +#: ../src/PaymentMethods/Przelewy24.php:15 +msgid "To accept payments via Przelewy24, a customer email is required for every payment." +msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail van de klant vereist." -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:165 -msgid "" -"Updated subscription from 'On hold' to 'Active' until payment fails, because " -"a SEPA Direct Debit payment takes some time to process." -msgstr "" -"Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, " -"omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is." +#: ../src/PaymentMethods/Sofort.php:14 +msgid "SOFORT Banking" +msgstr "SOFORT Banking" -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:313 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:313 -msgid "Could not create %s renewal payment." -msgstr "Kon geen %s betalingshernieuwing aanmaken." +#: ../src/PaymentMethods/Voucher.php:35 +msgid "Voucher" +msgstr "Waardebon" -#: build/src/Mollie/WC/Gateway/Applepay.php:48 -#: src/Mollie/WC/Gateway/Applepay.php:48 -msgid "Apple Pay" -msgstr "Apple Pay" +#: ../src/PaymentMethods/Voucher.php:54, ../src/Gateway/Voucher/VoucherModule.php:220 +msgid "Select the default products category" +msgstr "Selecteer de categorie standaard producten" -#: build/src/Mollie/WC/Gateway/Applepay.php:56 -#: src/Mollie/WC/Gateway/Applepay.php:56 -msgid "To accept payments via Apple Pay" -msgstr "Om betalingen te accepteren via Apple Pay" +#: ../src/PaymentMethods/Voucher.php:57 +msgid "No category" +msgstr "Geen categorie" -#: build/src/Mollie/WC/Gateway/Bancontact.php:29 -#: src/Mollie/WC/Gateway/Bancontact.php:29 -msgid "Bancontact" -msgstr "Bancontact" +#: ../src/PaymentMethods/Voucher.php:58, ../src/Gateway/Voucher/VoucherModule.php:113, ../src/Gateway/Voucher/VoucherModule.php:147, ../src/Gateway/Voucher/VoucherModule.php:178, ../src/Gateway/Voucher/VoucherModule.php:233, ../src/Gateway/Voucher/VoucherModule.php:293 +msgid "Meal" +msgstr "Maaltijd" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:38 -#: build/src/Mollie/WC/Helper/Settings.php:257 -#: src/Mollie/WC/Gateway/BankTransfer.php:38 -#: src/Mollie/WC/Helper/Settings.php:257 -msgid "Activate expiry date setting" -msgstr "Activeer instelling vervaldatum" +#: ../src/PaymentMethods/Voucher.php:59, ../src/Gateway/Voucher/VoucherModule.php:114, ../src/Gateway/Voucher/VoucherModule.php:148, ../src/Gateway/Voucher/VoucherModule.php:181, ../src/Gateway/Voucher/VoucherModule.php:234, ../src/Gateway/Voucher/VoucherModule.php:294 +msgid "Eco" +msgstr "Eco" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:39 -#: build/src/Mollie/WC/Helper/Settings.php:258 -#: src/Mollie/WC/Gateway/BankTransfer.php:39 -#: src/Mollie/WC/Helper/Settings.php:258 -msgid "Enable expiry date for payments" -msgstr "Activeer de vervaldatum voor betalingen" +#: ../src/PaymentMethods/Voucher.php:60, ../src/Gateway/Voucher/VoucherModule.php:115, ../src/Gateway/Voucher/VoucherModule.php:149, ../src/Gateway/Voucher/VoucherModule.php:184, ../src/Gateway/Voucher/VoucherModule.php:235, ../src/Gateway/Voucher/VoucherModule.php:295 +msgid "Gift" +msgstr "Cadeau" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:40 -#: src/Mollie/WC/Gateway/BankTransfer.php:40 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the payment will expire. This will turn all transactions into payments " -"instead of orders" -msgstr "" -"Activeer deze optie als u de mogelijkheid wilt hebben om een aantal dagen in " -"te stellen waarna de bestelling vervalt. Dit zet alle transacties in " -"betalingen om in plaats van ze in bestellingen te wijzigen" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:45 -#: build/src/Mollie/WC/Helper/Settings.php:264 -#: build/src/Mollie/WC/Plugin.php:927 src/Mollie/WC/Gateway/BankTransfer.php:45 -#: src/Mollie/WC/Helper/Settings.php:264 src/Mollie/WC/Plugin.php:927 -msgid "Expiry date" -msgstr "Vervaldatum" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/PaymentMethods/Voucher.php:64 +msgid "In order to process it, all products in the order must have a category. This selector will assign the default category for the shop products" +msgstr "Daarvoor moeten alle producten uit de bestelling een categorie hebben. De keuzeschakelaar zal de standaard categorie toewijzen voor de winkelproducten" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:47 -#: src/Mollie/WC/Gateway/BankTransfer.php:47 -msgid "" -"Number of DAYS after the payment will expire. Default %d days" -msgstr "" -"Aantal DAGEN nadat de betaling vervalt. Standaard %d dagen." +#: ../src/SDK/Api.php:49 +msgid "Invalid API key(s). Get them on the %1$sDevelopers page in the Mollie dashboard%2$s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters." +msgstr "Ongeldige API-sleutel(s). Haal deze op van de %1$sDevelopers-pagina in het Mollie-dashboard%2$s. De API-sleutel(s) moeten beginnen met 'live_' of 'test_', ten minste 30 tekens lang zijn en mogen verder geen speciale tekens bevatten." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:56 -#: src/Mollie/WC/Gateway/BankTransfer.php:56 -msgid "Skip Mollie payment screen" -msgstr "Mollie-betaalscherm overslaan" +#: ../src/SDK/Api.php:47 +msgid "No API key provided. Please set your Mollie API keys below." +msgstr "Geen API-sleutel geleverd. Stel uw Mollie API-sleutels hieronder in." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:57 -#: src/Mollie/WC/Gateway/BankTransfer.php:57 -msgid "Skip Mollie payment screen when Bank Transfer is selected" -msgstr "" -"Sla Mollie-betaalscherm over wanneer bankoverschrijving is geselecteerd" +#: ../src/Settings/Settings.php:174 +msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb." +msgstr "%1$sMollie-betalingen voor WooCommerce%2$s Bestand uploaden niet mogelijk. De grootte mag niet meer bedragen dan 500 kB." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:58 -#: src/Mollie/WC/Gateway/BankTransfer.php:58 -msgid "" -"Enable this option if you want to skip redirecting your user to the Mollie " -"payment screen, instead this will redirect your user directly to the " -"WooCommerce order received page displaying instructions how to complete the " -"Bank Transfer payment." -msgstr "" -"Activeer deze optie als u het doorsturen van uw gebruiker naar het Mollie-" -"betaalscherm wilt overslaan. In plaats daarvan stuurt dit uw gebruiker " -"rechtstreeks naar de WooCommerce-pagina 'Bestelling ontvangen' met " -"instructies voor het voltooien van de betaling via bankoverschrijving." +#: ../src/Settings/Settings.php:216 +msgid "Gateway Disabled" +msgstr "Gateway gedeactiveerd" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:138 -#: src/Mollie/WC/Gateway/BankTransfer.php:138 -msgid "Bank Transfer" -msgstr "Bankoverdracht" +#: ../src/Settings/Settings.php:237 +msgid "Return to payments" +msgstr "Ga terug naar betalingen" -#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC -#: build/src/Mollie/WC/Gateway/BankTransfer.php:188 -#: build/src/Mollie/WC/Gateway/DirectDebit.php:80 -#: build/src/Mollie/WC/Gateway/Ideal.php:124 -#: build/src/Mollie/WC/Gateway/Sofort.php:64 -#: src/Mollie/WC/Gateway/BankTransfer.php:188 -#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124 -#: src/Mollie/WC/Gateway/Sofort.php:64 -msgid "" -"Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" -msgstr "" -"Betaling voltooid door %1$s (IBAN (ten minste 4 cijfers): %2$s, BIC: %3$s)" +#: ../src/Settings/Settings.php:252, ../src/Settings/General/MollieGeneralSettings.php:86 +msgid "Sell to specific countries" +msgstr "Verkopen aan specifieke landen" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:198 -#: src/Mollie/WC/Gateway/BankTransfer.php:198 -msgid "" -"Please complete your payment by transferring the total amount to the " -"following bank account:" -msgstr "" -"Voltooi uw betaling door het totale bedrag over te maken naar de volgende " -"bankrekening:" +#: ../src/Settings/Settings.php:264 +msgid "Choose countries…" +msgstr "Kies landen…" -#. translators: Placeholder 1: 'Stichting Mollie Payments' -#: build/src/Mollie/WC/Gateway/BankTransfer.php:202 -#: src/Mollie/WC/Gateway/BankTransfer.php:202 -msgid "Beneficiary: %s" -msgstr "Begunstigde: %s" +#: ../src/Settings/Settings.php:265 +msgid "Country" +msgstr "Land" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:203 -#: src/Mollie/WC/Gateway/BankTransfer.php:203 -msgid "IBAN: %s" -msgstr "IBAN: %s" +#: ../src/Settings/Settings.php:274 +msgid "Select all" +msgstr "Selecteer alles" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:204 -#: src/Mollie/WC/Gateway/BankTransfer.php:204 -msgid "BIC: %s" -msgstr "BIC: %s" +#: ../src/Settings/Settings.php:275 +msgid "Select none" +msgstr "Selecteer niets" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:209 -#: src/Mollie/WC/Gateway/BankTransfer.php:209 -msgid "Payment reference: %s" -msgstr "Betalingsreferentie: %s." +#: ../src/Settings/Settings.php:470 +msgid "Error" +msgstr "Fout" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:214 -#: src/Mollie/WC/Gateway/BankTransfer.php:214 -msgid "Please provide the payment reference %s" -msgstr "Vermeld de betalingsreferentie %s" +#: ../src/Settings/Settings.php:484 +msgid "Mollie status:" +msgstr "Mollie-status:" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:228 -#: src/Mollie/WC/Gateway/BankTransfer.php:228 -msgid "The payment will expire on %s." -msgstr "De betaling vervalt op %s." +#: ../src/Settings/Settings.php:485 +msgid "Connected" +msgstr "Verbonden" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:235 -#: src/Mollie/WC/Gateway/BankTransfer.php:235 -msgid "" -"The payment will expire on %s. Please make sure you " -"transfer the total amount before this date." -msgstr "" -"De betaling vervalt op %s. Zorg ervoor dat u vóór deze " -"datum het totale bedrag overmaakt." +#: ../src/Settings/SettingsModule.php:171 +msgid "Mollie settings" +msgstr "Mollie-instellingen" -#: build/src/Mollie/WC/Gateway/Belfius.php:33 -#: src/Mollie/WC/Gateway/Belfius.php:33 -msgid "Belfius Direct Net" -msgstr "Belfius Direct Net" +#: ../src/Settings/SettingsModule.php:177 +msgid "Logs" +msgstr "Logs" -#: build/src/Mollie/WC/Gateway/Creditcard.php:84 -#: src/Mollie/WC/Gateway/Creditcard.php:84 -msgid "Credit card" -msgstr "Creditcard" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/SettingsModule.php:187 +msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production." +msgstr "%1$sMollie-betalingen voor WooCommerce%2$s De testmodus is actief, %3$s schakel deze uit%4$s voordat hij wordt geïmplementeerd." -#. translators: Placeholder 1: card holder -#: build/src/Mollie/WC/Gateway/Creditcard.php:136 -#: src/Mollie/WC/Gateway/Creditcard.php:136 -msgid "Payment completed by %s" -msgstr "Betaling voltooid door %s." +#: ../src/Shared/Data.php:628 +msgid "Item #%1$s stock incremented from %2$s to %3$s." +msgstr "Item #%1$s voorraad verhoogd van %2$s naar %3$s." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:42 -#: src/Mollie/WC/Gateway/DirectDebit.php:42 -msgid "SEPA Direct Debit" -msgstr "SEPA-incasso" +#. translators: Placeholder 1: Plugin title. Placeholder 2: Min WooCommerce version. Placeholder 3: WooCommerce version used. +#: ../src/Shared/Status.php:74 +msgid "The %1$s plugin requires at least WooCommerce version %2$s, you are using version %3$s. Please update your WooCommerce plugin." +msgstr "De %1$s plugin vereist ten minste WooCommerce versie %2$s, u gebruikt versie %3$s. Update uw WooCommerce plugin." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:49 -#: src/Mollie/WC/Gateway/DirectDebit.php:49 -msgid "" -"SEPA Direct Debit is used for recurring payments with WooCommerce " -"Subscriptions, and will not be shown in the WooCommerce checkout for regular " -"payments! You also need to enable iDEAL and/or other \"first\" payment " -"methods if you want to use SEPA Direct Debit." -msgstr "" -"SEPA-incasso wordt gebruikt voor terugkerende betalingen met WooCommerce-" -"abonnementen, en wordt niet getoond in de WooCommerce kassa voor reguliere " -"betalingen! U moet ook iDEAL en/of andere \"eerste\" betaalmethodes " -"activeren als u SEPA-incasso wilt gebruiken." +#: ../src/Shared/Status.php:87 +msgid "Mollie API client not installed. Please make sure the plugin is installed correctly." +msgstr "Mollie API client niet geïnstalleerd. Controleer of de plugin correct is geïnstalleerd." -#: build/src/Mollie/WC/Gateway/EPS.php:29 src/Mollie/WC/Gateway/EPS.php:29 -msgid "EPS" -msgstr "EPS" +#: ../src/Shared/Status.php:96 +msgid "Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable it in your server or ask your webhoster to enable it for you." +msgstr "Mollie-betalingen voor WooCommerce vereisen de JSON-extensie voor PHP. Activeer dit op uw server of vraag uw webhoster om het voor u te activeren." -#: build/src/Mollie/WC/Gateway/Giftcard.php:31 -#: src/Mollie/WC/Gateway/Giftcard.php:31 -msgid "Show gift cards dropdown" -msgstr "Toon cadeaubonnen-dropdown" +#. translators: Placeholder 1: Min PHP version. Placeholder 2: PHP version used. Placeholder 3: Opening link tag. placeholder 4: Closing link tag. +#: ../src/Shared/Status.php:111 +msgid "Mollie Payments for WooCommerce require PHP %1$s or higher, you have PHP %2$s. Please upgrade and view %3$sthis FAQ%4$s" +msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %1$s of hoger, u hebt PHP %2$s. Installeer de upgrade en bekijk %3$sdeze FAQ%4$s" -#: build/src/Mollie/WC/Gateway/Giftcard.php:33 -#: src/Mollie/WC/Gateway/Giftcard.php:33 -msgid "" -"If you disable this, a dropdown with various gift cards will not be shown in " -"the WooCommerce checkout, so users will select a gift card on the Mollie " -"payment page after checkout." -msgstr "" -"Als u dit deactiveert, zal een dropdown met verschillende cadeaubonnen niet " -"in de WooCommerce- checkout worden getoond. Gebruikers zullen dus een " -"cadeaubon selecteren op de Mollie-betaalpagina na het afrekenen." - -#: build/src/Mollie/WC/Gateway/Giftcard.php:37 -#: build/src/Mollie/WC/Gateway/Ideal.php:39 -#: build/src/Mollie/WC/Gateway/Kbc.php:38 src/Mollie/WC/Gateway/Giftcard.php:37 -#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Kbc.php:38 -msgid "Issuers empty option" -msgstr "Optie uitgevers leeg" +#: ../src/Shared/Status.php:123 +msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration." +msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON geactiveerd is. Activeer de extensie 'json' in uw PHP-configuratie." -#: build/src/Mollie/WC/Gateway/Giftcard.php:39 -#: src/Mollie/WC/Gateway/Giftcard.php:39 -msgid "" -"This text will be displayed as the first option in the gift card dropdown, " -"but only if the above 'Show gift cards dropdown' is enabled." -msgstr "" -"Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar " -"alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd." +#: ../src/Shared/Status.php:130 +msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration." +msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL geactiveerd is. Activeer de extensie 'curl' in uw PHP-configuratie." -#: build/src/Mollie/WC/Gateway/Giftcard.php:58 -#: src/Mollie/WC/Gateway/Giftcard.php:58 -msgid "Gift cards" -msgstr "Cadeaubonnen" +#: ../src/Shared/Status.php:138 +msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available." +msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn." -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Giftcard.php:74 -#: src/Mollie/WC/Gateway/Giftcard.php:74 -msgid "Select your gift card" -msgstr "Selecteer uw cadeaubon" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSepaRecurringGateway.php:136, ../src/Subscription/MollieSubscriptionGateway.php:468 +msgid "%1$s payment started (%2$s)." +msgstr "%1$s betaling gestart (%2$s)." -#: build/src/Mollie/WC/Gateway/Giropay.php:29 -#: src/Mollie/WC/Gateway/Giropay.php:29 -msgid "Giropay" -msgstr "Giropay" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSubscriptionGateway.php:199 +msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process." +msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is." -#: build/src/Mollie/WC/Gateway/Ideal.php:33 src/Mollie/WC/Gateway/Ideal.php:33 -msgid "Show iDEAL banks dropdown" -msgstr "Toon iDEAL-banken dropdown" +#: ../src/Subscription/MollieSubscriptionGateway.php:299 +msgid "The customer (%s) could not be used or found. " +msgstr "De klant (%s) kon niet gebruikt of gevonden worden. " -#: build/src/Mollie/WC/Gateway/Ideal.php:35 src/Mollie/WC/Gateway/Ideal.php:35 -msgid "" -"If you disable this, a dropdown with various iDEAL banks will not be shown " -"in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie " -"payment page after checkout." -msgstr "" -"Als u dit deactiveert, zal een dropdown bij verschillende iDEAL-banken niet " -"in de WooCommerce- checkout worden getoond. Gebruikers zullen dus een iDEAL-" -"bank selecteren op de Mollie-betaalpagina na het afrekenen." +#: ../src/Subscription/MollieSubscriptionGateway.php:326 +msgid "The customer (%s) does not have a valid mandate." +msgstr "De klant (%s) heeft geen geldig mandaat." -#: build/src/Mollie/WC/Gateway/Ideal.php:41 src/Mollie/WC/Gateway/Ideal.php:41 -msgid "" -"This text will be displayed as the first option in the iDEAL issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above 'Show iDEAL banks dropdown' is enabled." -msgstr "" -"Deze tekst wordt weergegeven als eerste optie in de iDEAL-uitgevers " -"dropdown. Als er niets wordt ingevoerd, wordt \"Selecteer uw bank\" " -"weergegeven. Alleen als het bovenstaande ''Toon iDEAL-banken dropdown'' is " -"geactiveerd." +#. translators: Placeholder 1: Payment method title +#: ../src/Subscription/MollieSubscriptionGateway.php:366 +msgid "Could not create %s renewal payment." +msgstr "Kon geen %s betalingshernieuwing aanmaken." -#: build/src/Mollie/WC/Gateway/Ideal.php:60 src/Mollie/WC/Gateway/Ideal.php:60 -msgid "iDEAL" -msgstr "iDEAL" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Subscription/SubscriptionModule.php:106 +msgid "%1$s payment failed (%2$s)." +msgstr "%1$s betaling mislukt (%2$s)." -#. translators: Default iDEAL description, displayed above issuer drop down -#. translators: Default KBC/CBC dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Ideal.php:76 -#: build/src/Mollie/WC/Gateway/Kbc.php:75 src/Mollie/WC/Gateway/Ideal.php:76 -#: src/Mollie/WC/Gateway/Kbc.php:75 -msgid "Select your bank" -msgstr "Selecteer uw bank" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:42 +msgid "%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sServer voldoet niet aan Apple vereisten%2$s Controleer %3$sde pagina met Apple serververeisten%4$s om dit op te lossen, zodat de Apple Pay knop werkt" -#: src/Mollie/WC/Gateway/In3:29 -msgid "in3" -msgstr "in3" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:58 +msgid "%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sApple Pay valideringsfout%2$s Controleer %3$sde pagina met Apple serververeisten%4$s om dit op te lossen, zodat de Apple Pay betaalknop werkt" -#: build/src/Mollie/WC/Gateway/Kbc.php:32 src/Mollie/WC/Gateway/Kbc.php:32 -msgid "Show KBC/CBC banks dropdown" -msgstr "Toon KBC/CBC-banken dropdown" +#: ../src/Gateway/Voucher/VoucherModule.php:78, ../src/Settings/Page/MollieSettingsPage.php:49, ../src/Settings/Page/MollieSettingsPage.php:182 +msgid "Mollie Settings" +msgstr "Mollie-instellingen" -#: build/src/Mollie/WC/Gateway/Kbc.php:34 src/Mollie/WC/Gateway/Kbc.php:34 -msgid "" -"If you disable this, a dropdown with various KBC/CBC banks will not be shown " -"in the WooCommerce checkout, so users will select a KBC/CBC bank on the " -"Mollie payment page after checkout." -msgstr "" -"Als u dit deactiveert, zal een dropdown bij verschillende KBC/CBC-banken " -"niet in de WooCommerce- checkout worden getoond. Gebruikers zullen dus een " -"KBC/CBC-bank selecteren op de Mollie-betaalpagina na het afrekenen." +#: ../src/Gateway/Voucher/VoucherModule.php:108, ../src/Gateway/Voucher/VoucherModule.php:143, ../src/Gateway/Voucher/VoucherModule.php:166 +msgid "Mollie Voucher Category" +msgstr "Mollie-waardeboncategorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:40 src/Mollie/WC/Gateway/Kbc.php:40 -msgid "" -"This text will be displayed as the first option in the KBC/CBC issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above ''Show KBC/CBC banks dropdown' is enabled." -msgstr "" -"Deze tekst wordt weergegeven als eerste optie in de KBC/CBC-uitgevers " -"dropdown. Als er niets wordt ingevoerd, wordt 'Kies uw bank' weergegeven. " -"Alleen als het bovenstaande ''Toon KBC/CBC-banken dropdown'' is geactiveerd." +#: ../src/Gateway/Voucher/VoucherModule.php:111, ../src/Gateway/Voucher/VoucherModule.php:145, ../src/Gateway/Voucher/VoucherModule.php:170 +msgid "--Please choose an option--" +msgstr "--Kies een optie--" -#: build/src/Mollie/WC/Gateway/Kbc.php:59 src/Mollie/WC/Gateway/Kbc.php:59 -msgid "KBC/CBC Payment Button" -msgstr "KBC/CBC betaalknop" +#: ../src/Gateway/Voucher/VoucherModule.php:112, ../src/Gateway/Voucher/VoucherModule.php:146, ../src/Gateway/Voucher/VoucherModule.php:175, ../src/Gateway/Voucher/VoucherModule.php:232, ../src/Gateway/Voucher/VoucherModule.php:292 +msgid "No Category" +msgstr "Geen categorie" -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -msgid "Klarna Pay later" -msgstr "Klarna betaal later" +#: ../src/Gateway/Voucher/VoucherModule.php:151, ../src/Gateway/Voucher/VoucherModule.php:188 +msgid "Select a voucher category to apply to all products with this category" +msgstr "Selecteer een waardeboncategorie om toe te passen op alle producten met deze categorie" -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -msgid "" -"To accept payments via Klarna, all default WooCommerce checkout fields " -"should be enabled and required." -msgstr "" -"Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-" -"afrekenvelden geactiveerd en vereist zijn." +#: ../src/Gateway/Voucher/VoucherModule.php:224 +msgid "Products voucher category" +msgstr "Categorie producten waardebon" -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -msgid "Klarna Pay now" -msgstr "Klarna betaal nu" +#: ../src/Gateway/Voucher/VoucherModule.php:231, ../src/Gateway/Voucher/VoucherModule.php:291 +msgid "Same as default category" +msgstr "Zelfde als standaardcategorie" -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -msgid "Klarna Slice it" -msgstr "Klarna betaal in 3 delen" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Gateway/Voucher/VoucherModule.php:241 +msgid "In order to process it, all products in the order must have a category. To disable the product from voucher selection select \"No category\" option." +msgstr "Daarvoor moeten alle producten uit de bestelling een categorie hebben. Selecteer ''Geen categorie'' om te voorkomen dat het product voor waardebonnen kan worden gekozen." -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: build/src/Mollie/WC/Plugin.php:508 src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: src/Mollie/WC/Plugin.php:508 -msgid "Select the default products category" -msgstr "Selecteer de categorie standaard producten" +#: ../src/Gateway/Voucher/VoucherModule.php:288 +msgid "Mollie Voucher category" +msgstr "Mollie-waardeboncategorie" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:46 -#: src/Mollie/WC/Gateway/Mealvoucher.php:46 -msgid "" -"In order to process it, all products in the order must have a category. This " -"selector will assign the default category for the shop products" -msgstr "" -"Daarvoor moeten alle producten uit de bestelling een categorie hebben. De " -"keuzeschakelaar zal de standaard categorie toewijzen voor de winkelproducten" +#: ../src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (Apple Pay transaction ID: %3$s)" +msgstr "Betaling voltooid met %1$s - %2$s (Apple Pay transactie-ID: %3$s)" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:66 -#: src/Mollie/WC/Gateway/Mealvoucher.php:66 -msgid "Voucher" -msgstr "Waardebon" +#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:26, ../src/PaymentMethods/InstructionStrategies/DirectdebitInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/IdealInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/SofortInstructionStrategy.php:20 +msgid "Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" +msgstr "Betaling voltooid met %1$s (IBAN (ten minste 4 cijfers): %2$s, BIC: %3$s)" -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:82 -#: src/Mollie/WC/Gateway/Mealvoucher.php:82 -msgid "voucher" -msgstr "waardebon" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:35 +msgid "Please complete your payment by transferring the total amount to the following bank account:" +msgstr "Voltooi uw betaling door het totale bedrag over te maken naar de volgende bankrekening:" -#: build/src/Mollie/WC/Gateway/MyBank.php:36 -#: src/Mollie/WC/Gateway/MyBank.php:36 -msgid "MyBank" -msgstr "MyBank" +#. translators: Placeholder 1: 'Stichting Mollie Payments' +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:39 +msgid "Beneficiary: %s" +msgstr "Begunstigde: %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:44 -#: src/Mollie/WC/Gateway/MyBank.php:44 -msgid "To accept payments via MyBank" -msgstr "Om betalingen te accepteren via MyBank" +#. translators: Placeholder 1: Payment details bank account +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:41 +msgid "IBAN: %s" +msgstr "IBAN: %s" -#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer Account number -#: build/src/Mollie/WC/Gateway/MyBank.php:73 -#: src/Mollie/WC/Gateway/MyBank.php:73 -msgid "Payment completed by %1$s - %2$s" -msgstr "Betaling voltooid door %1$s - %2$s" +#. translators: Placeholder 1: Payment details bic +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:43 +msgid "BIC: %s" +msgstr "BIC: %s" -#: build/src/Mollie/WC/Gateway/PayPal.php:43 -#: src/Mollie/WC/Gateway/PayPal.php:43 -msgid "PayPal" -msgstr "PayPal" +#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:50 +msgid "Please provide the payment reference %s" +msgstr "Vermeld de betalingsreferentie %s" -#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID -#: build/src/Mollie/WC/Gateway/PayPal.php:74 -#: build/src/Mollie/WC/Payment/Object.php:695 -#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695 -msgid "" -"Payment completed by %s - %s (PayPal transaction ID: %s)" -msgstr "" -"Betaling voltooid door %s - %s (PayPal transactie-ID: %s)" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:47 +msgid "Payment reference: %s" +msgstr "Betalingsreferentie: %s." -#: build/src/Mollie/WC/Gateway/Paysafecard.php:20 -#: src/Mollie/WC/Gateway/Paysafecard.php:20 -msgid "paysafecard" -msgstr "paysafecard" +#. translators: Placeholder 1: Payment expiry date +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:66 +msgid "The payment will expire on %s. Please make sure you transfer the total amount before this date." +msgstr "De betaling vervalt op %s. Zorg ervoor dat u vóór deze datum het totale bedrag overmaakt." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:33 -#: src/Mollie/WC/Gateway/Przelewy24.php:33 -msgid "Przelewy24" -msgstr "Przelewy24" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:60 +msgid "The payment will expire on %s." +msgstr "De betaling vervalt op %s." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:40 -#: src/Mollie/WC/Gateway/Przelewy24.php:40 -msgid "" -"To accept payments via Przelewy24, a customer email is required for every " -"payment." -msgstr "" -"Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail " -"van de klant vereist." +#. translators: Placeholder 1: card holder +#: ../src/PaymentMethods/InstructionStrategies/CreditcardInstructionStrategy.php:20 +msgid "Payment completed by %s" +msgstr "Betaling voltooid met %s." -#. translators: Placeholder 1: customer billing email -#: build/src/Mollie/WC/Gateway/Przelewy24.php:64 -#: src/Mollie/WC/Gateway/Przelewy24.php:64 -msgid "Payment completed by %s." -msgstr "Betaling voltooid door %s." +#. translators: Placeholder 1: payment method +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:34 +msgid "Payment completed with %s" +msgstr "Betaling voltooid met %s" -#: build/src/Mollie/WC/Gateway/Sofort.php:33 -#: src/Mollie/WC/Gateway/Sofort.php:33 -msgid "SOFORT Banking" -msgstr "SOFORT Banking" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:26 +msgid "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant." +msgstr "We hebben geen definitieve betalingsstatus ontvangen. U ontvangt een e-mail zodra we een bevestiging van de bank/handelaar ontvangen." -#: build/src/Mollie/WC/Helper/Api.php:40 src/Mollie/WC/Helper/Api.php:40 -msgid "No API key provided. Please set your Mollie API keys below." -msgstr "Geen API-sleutel geleverd. Stel uw Mollie API-sleutels hieronder in." +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:20 +msgid "We have not received a definite payment status." +msgstr "We hebben geen definitieve betalingsstatus ontvangen." -#: build/src/Mollie/WC/Helper/Api.php:42 src/Mollie/WC/Helper/Api.php:42 -msgid "" -"Invalid API key(s). Get them on the %sDevelopers page in the Mollie dashboard" -"%s. The API key(s) must start with 'live_' or 'test_', be at least 30 " -"characters and must not contain any special characters." -msgstr "" -"Ongeldige API-sleutel(s). Haal deze op van de %sDevelopers-pagina in het " -"Mollie-dashboard%s. De API-sleutel(s) moeten beginnen met 'live_' of " -"'test_', ten minste 30 tekens lang zijn en mogen verder geen speciale tekens " -"bevatten." +#: ../src/PaymentMethods/InstructionStrategies/MybankInstructionStrategy.php:19 +msgid "Payment completed by %1$s - %2$s" +msgstr "Betaling voltooid met %1$s - %2$s" -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -msgid "" -"%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server " -"requirements page%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sServer voldoet niet aan Apple vereisten%2$s Controleer %3$sde pagina met " -"Apple serververeisten%4$s om dit op te lossen, zodat de Apple Pay knop werkt" +#. translators: Placeholder 1: customer billing email +#: ../src/PaymentMethods/InstructionStrategies/Przelewy24InstructionStrategy.php:20 +msgid "Payment completed by %s." +msgstr "Betaling voltooid met %s." -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -msgid "" -"%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page" -"%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sApple Pay valideringsfout%2$s Controleer %3$sde pagina met Apple " -"serververeisten%4$s om dit op te lossen, zodat de Apple Pay betaalknop werkt" +#. translators: Placeholder 1: Lock icon. Placeholder 2: Mollie logo. +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:25 +msgid "%1$s Secure payments provided by %2$s" +msgstr "%1$s Beveiligde betalingen verschaft door %2$s" -#: build/src/Mollie/WC/Helper/OrderLines.php:499 -#: src/Mollie/WC/Helper/OrderLines.php:499 -msgid "Shipping" -msgstr "Verzending" +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:41 +msgid "Secure payments provided by" +msgstr "Beveiligde betalingen verschaft door" -#: build/src/Mollie/WC/Helper/Settings.php:61 -#: src/Mollie/WC/Helper/Settings.php:61 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:34 msgid "%s display settings" msgstr "%s weergave-instellingen" -#: build/src/Mollie/WC/Helper/Settings.php:99 -#: src/Mollie/WC/Helper/Settings.php:99 +#: ../src/Settings/General/MollieGeneralSettings.php:71 msgid "Display logo on checkout page. Default enabled" msgstr "Toon logo op de betaalpagina. Standaard geactiveerd" -#: build/src/Mollie/WC/Helper/Settings.php:107 -#: src/Mollie/WC/Helper/Settings.php:107 +#: ../src/Settings/General/MollieGeneralSettings.php:79 msgid "Sales countries" msgstr "Verkooplanden" -#: build/src/Mollie/WC/Helper/Settings.php:125 -#: src/Mollie/WC/Helper/Settings.php:125 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:99 msgid "%s custom logo" msgstr "%s aangepast logo" -#: build/src/Mollie/WC/Helper/Settings.php:132 -#: src/Mollie/WC/Helper/Settings.php:132 +#: ../src/Settings/General/MollieGeneralSettings.php:103 msgid "Enable custom logo" msgstr "Activeer aangepast logo" -#: build/src/Mollie/WC/Helper/Settings.php:137 -#: src/Mollie/WC/Helper/Settings.php:137 -msgid "" -"Enable the feature to add a custom logo for this gateway. This feature will " -"have precedence over other logo options." -msgstr "" -"Activeer de functie om een aangepast logo toe te voegen voor deze gateway. " -"Deze functie heeft voorrang op andere opties voor het logo." +#: ../src/Settings/General/MollieGeneralSettings.php:109 +msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options." +msgstr "Activeer de functie om een aangepast logo toe te voegen voor deze gateway. Deze functie heeft voorrang op andere opties voor het logo." -#: build/src/Mollie/WC/Helper/Settings.php:143 -#: src/Mollie/WC/Helper/Settings.php:143 +#: ../src/Settings/General/MollieGeneralSettings.php:115 msgid "Upload custom logo" msgstr "Upload aangepast logo" -#: build/src/Mollie/WC/Helper/Settings.php:150 -#: src/Mollie/WC/Helper/Settings.php:150 +#: ../src/Settings/General/MollieGeneralSettings.php:123 msgid "Upload a custom icon for this gateway. The feature must be enabled." -msgstr "" -"Upload een aangepast pictogram voor deze gateway. De functie moet " -"geactiveerd zijn." +msgstr "Upload een aangepast pictogram voor deze gateway. De functie moet geactiveerd zijn." -#: build/src/Mollie/WC/Helper/Settings.php:159 -#: src/Mollie/WC/Helper/Settings.php:159 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:134 msgid "%s surcharge" msgstr "%s prijstoeslag" -#: build/src/Mollie/WC/Helper/Settings.php:166 -#: src/Mollie/WC/Helper/Settings.php:166 +#: ../src/Settings/General/MollieGeneralSettings.php:139 msgid "Payment Surcharge" msgstr "Betalingstoeslag" -#: build/src/Mollie/WC/Helper/Settings.php:172 -#: src/Mollie/WC/Helper/Settings.php:172 +#: ../src/Settings/General/MollieGeneralSettings.php:145 msgid "No fee" msgstr "Geen vergoeding" -#: build/src/Mollie/WC/Helper/Settings.php:176 -#: src/Mollie/WC/Helper/Settings.php:176 +#: ../src/Settings/General/MollieGeneralSettings.php:149 msgid "Fixed fee" msgstr "Vaste vergoeding" -#: build/src/Mollie/WC/Helper/Settings.php:180 -#: src/Mollie/WC/Helper/Settings.php:180 +#: ../src/Settings/General/MollieGeneralSettings.php:153 msgid "Percentage" msgstr "Percentage" -#: build/src/Mollie/WC/Helper/Settings.php:184 -#: src/Mollie/WC/Helper/Settings.php:184 +#: ../src/Settings/General/MollieGeneralSettings.php:157 msgid "Fixed fee and percentage" msgstr "Vaste vergoeding en percentage" -#: build/src/Mollie/WC/Helper/Settings.php:190 -#: src/Mollie/WC/Helper/Settings.php:190 +#: ../src/Settings/General/MollieGeneralSettings.php:163 msgid "Choose a payment surcharge for this gateway" msgstr "Kies een betalingstoeslag voor deze gateway" -#: build/src/Mollie/WC/Helper/Settings.php:197 -#: src/Mollie/WC/Helper/Settings.php:197 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:172 msgid "Payment surcharge fixed amount in %s" msgstr "Betalingstoeslag vast bedrag in %s" -#: build/src/Mollie/WC/Helper/Settings.php:200 -#: src/Mollie/WC/Helper/Settings.php:200 +#: ../src/Settings/General/MollieGeneralSettings.php:176 msgid "Control the fee added on checkout. Default 0.00" msgstr "Controle van de vergoeding toegevoegd aan de betaling. Standaard 0.00" -#: build/src/Mollie/WC/Helper/Settings.php:210 -#: src/Mollie/WC/Helper/Settings.php:210 +#: ../src/Settings/General/MollieGeneralSettings.php:186 msgid "Payment surcharge percentage amount %" msgstr "Betalingstoeslag aantal percentage %" -#: build/src/Mollie/WC/Helper/Settings.php:213 -#: src/Mollie/WC/Helper/Settings.php:213 +#: ../src/Settings/General/MollieGeneralSettings.php:189 msgid "Control the percentage fee added on checkout. Default 0.00" -msgstr "" -"Controle van de procentuele vergoeding toegevoegd aan de betaling. Standaard " -"0.00" +msgstr "Controle van de procentuele vergoeding toegevoegd aan de betaling. Standaard 0.00" -#: build/src/Mollie/WC/Helper/Settings.php:223 -#: src/Mollie/WC/Helper/Settings.php:223 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:200 msgid "Payment surcharge limit in %s" msgstr "Limiet betalingstoeslag in %s" -#: build/src/Mollie/WC/Helper/Settings.php:226 -#: src/Mollie/WC/Helper/Settings.php:226 +#: ../src/Settings/General/MollieGeneralSettings.php:203 msgid "Limit the maximum fee added on checkout. Default 0, means no limit" -msgstr "" -"Limiet van de maximum vergoeding toegevoegd aan de betaling. Standaard 0, " -"ofwel geen limiet" +msgstr "Limiet van de maximum vergoeding toegevoegd aan de betaling. Standaard 0, ofwel geen limiet" -#: build/src/Mollie/WC/Helper/Settings.php:236 -#: src/Mollie/WC/Helper/Settings.php:236 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:214 msgid "Surcharge only under this limit, in %s" msgstr "Prijstoeslag alleen onder deze limiet, als %s" -#: build/src/Mollie/WC/Helper/Settings.php:239 -#: src/Mollie/WC/Helper/Settings.php:239 -msgid "" -"Maximum order amount to apply surcharge. If the order is above this number " -"the surcharge will not apply. Default 0, means no maximum" -msgstr "" -"Maximaal bestelbedrag voor toepassing prijstoeslag. Als de bestelling boven " -"dit bedrag komt, is de prijstoeslag niet van toepassing. Standaard 0, ofwel " -"geen maximum" +#: ../src/Settings/General/MollieGeneralSettings.php:217 +msgid "Maximum order amount to apply surcharge. If the order is above this number the surcharge will not apply. Default 0, means no maximum" +msgstr "Maximaal bestelbedrag voor toepassing prijstoeslag. Als de bestelling boven dit bedrag komt, is de prijstoeslag niet van toepassing. Standaard 0, ofwel geen maximum" -#: build/src/Mollie/WC/Helper/Settings.php:250 -#: src/Mollie/WC/Helper/Settings.php:250 +#. translators: Placeholder 1: gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:230 msgid "%s advanced" msgstr "%s geavanceerd" -#: build/src/Mollie/WC/Helper/Settings.php:259 -#: src/Mollie/WC/Helper/Settings.php:259 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the order will expire." -msgstr "" -"Activeer deze optie als u de mogelijkheid wilt hebben om een aantal dagen in " -"te stellen waarna de bestelling vervalt." +#: ../src/Settings/General/MollieGeneralSettings.php:237 +msgid "Enable this option if you want to be able to set the time after which the order will expire." +msgstr "Activeer deze optie als u de mogelijkheid wilt hebben om het aantal dagen in te stellen waarna de bestelling vervalt." -#: build/src/Mollie/WC/Helper/Settings.php:267 -#: src/Mollie/WC/Helper/Settings.php:267 -msgid "" -"Number of MINUTES after the order will expire and will be canceled at Mollie " -"and WooCommerce. A value of 0 means no expiry date will be considered." -msgstr "" -"Aantal MINUTEN voordat de bestelling komt te vervallen en wordt geannuleerd " -"bij Mollie en WooCommerce. Een waarde van 0 betekent dat er geen vervaldatum " -"is." +#: ../src/Settings/General/MollieGeneralSettings.php:245 +msgid "Number of MINUTES after the order will expire and will be canceled at Mollie and WooCommerce. A value of 0 means no expiry time will be considered." +msgstr "Aantal MINUTEN voordat de bestelling komt te vervallen en wordt geannuleerd bij Mollie en WooCommerce. Een waarde van 0 betekent dat er geen vervaldatum is." -#: build/src/Mollie/WC/Helper/Settings.php:280 -#: src/Mollie/WC/Helper/Settings.php:280 +#: ../src/Settings/General/MollieGeneralSettings.php:258 msgid "Initial order status" msgstr "Initiële bestelstatus" -#: build/src/Mollie/WC/Helper/Settings.php:299 -#: src/Mollie/WC/Helper/Settings.php:299 -msgid "" -"Some payment methods take longer than a few hours to complete. The initial " -"order state is then set to '%s'. This ensures the order is not cancelled " -"when the setting %s is used." -msgstr "" -"Sommige betaalmethodes duren langer dan een paar uur om te voltooien. De " -"initiële bestelstatus is dan ingesteld op '%s'. Dit zorgt ervoor dat de " -"bestelling niet wordt geannuleerd wanneer de instelling %s wordt gebruikt." - -#: build/src/Mollie/WC/Helper/Settings.php:494 -#: src/Mollie/WC/Helper/Settings.php:494 -msgid "Error" -msgstr "Fout" - -#: build/src/Mollie/WC/Helper/Settings.php:507 -#: src/Mollie/WC/Helper/Settings.php:507 -msgid "Mollie status:" -msgstr "Mollie-status:" - -#: build/src/Mollie/WC/Helper/Settings.php:508 -#: src/Mollie/WC/Helper/Settings.php:508 -msgid "Connected" -msgstr "Verbonden" - -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: src/Mollie/WC/Helper/Settings.php:551 -msgid "Gateway enabled" -msgstr "Gateway geactiveerd" - -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Gateway disabled" -msgstr "Gateway gedeactiveerd" - -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Disabled" -msgstr "Uitgeschakeld" - -#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:563 -#: src/Mollie/WC/Helper/Settings.php:563 -msgid "The following payment methods are activated in your %sMollie profile%s:" -msgstr "De volgende betaalmethodes zijn geactiveerd in uw %sMollie-profiel%s:" - -#: build/src/Mollie/WC/Helper/Settings.php:572 -#: src/Mollie/WC/Helper/Settings.php:572 -msgid "Refresh" -msgstr "Vernieuwen" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Settings/General/MollieGeneralSettings.php:277 +msgid "Some payment methods take longer than a few hours to complete. The initial order state is then set to '%1$s'. This ensures the order is not cancelled when the setting %2$s is used." +msgstr "Sommige betaalmethodes duren langer dan een paar uur om te voltooien. De initiële bestelstatus is dan ingesteld op '%1$s'. Dit zorgt ervoor dat de bestelling niet wordt geannuleerd wanneer de instelling %2$s wordt gebruikt." -#: build/src/Mollie/WC/Helper/Settings.php:591 -#: src/Mollie/WC/Helper/Settings.php:591 -msgid "Edit" -msgstr "Bewerken" +#: ../src/Settings/General/MollieGeneralSettings.php:286 +msgid "Hold Stock (minutes)" +msgstr "Houd voorraad aan (minuten)" -#: build/src/Mollie/WC/Helper/Settings.php:624 -#: src/Mollie/WC/Helper/Settings.php:624 -msgid "" -"Quickly integrate all major payment methods in WooCommerce, wherever you " -"need them." -msgstr "" -"Integreer snel en daar waar nodig alle belangrijke betaalmethodes in " -"WooCommerce." +#: ../src/Settings/Page/MollieSettingsPage.php:111 +msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them." +msgstr "Integreer snel en daar waar nodig alle belangrijke betaalmethodes in WooCommerce." -#: build/src/Mollie/WC/Helper/Settings.php:625 -#: src/Mollie/WC/Helper/Settings.php:625 -msgid "" -" Simply drop them ready-made into your WooCommerce webshop with this " -"powerful plugin by Mollie." -msgstr "" -" Plaats ze eenvoudigweg kant-en-klaar in uw WooCommerce webshop met deze " -"krachtige plugin van Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:115 +msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie." +msgstr " Plaats ze eenvoudigweg kant-en-klaar in uw WooCommerce webshop met deze krachtige plugin van Mollie." -#: build/src/Mollie/WC/Helper/Settings.php:626 -#: src/Mollie/WC/Helper/Settings.php:626 +#: ../src/Settings/Page/MollieSettingsPage.php:119 msgid " Mollie is dedicated to making payments better for WooCommerce. " msgstr " Mollie wil betalingen voor WooCommerce beter maken. " -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:123 msgid "Please go to" msgstr "Ga naar" -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:126 msgid " the signup page" msgstr " de aanmeldpagina" -#: build/src/Mollie/WC/Helper/Settings.php:628 -#: src/Mollie/WC/Helper/Settings.php:628 -msgid "" -" to create a new Mollie account and start receiving payments in a couple of " -"minutes. " -msgstr "" -" om een nieuw Mollie-account aan te maken en betalingen te ontvangen binnen " -"een paar minuten. " +#: ../src/Settings/Page/MollieSettingsPage.php:130 +msgid " to create a new Mollie account and start receiving payments in a couple of minutes. " +msgstr " om een nieuw Mollie-account aan te maken en betalingen te ontvangen binnen een paar minuten. " -#: build/src/Mollie/WC/Helper/Settings.php:629 -#: src/Mollie/WC/Helper/Settings.php:629 +#: ../src/Settings/Page/MollieSettingsPage.php:134 msgid "Contact " msgstr "Neem contact op " -#: build/src/Mollie/WC/Helper/Settings.php:630 -#: src/Mollie/WC/Helper/Settings.php:630 +#: ../src/Settings/Page/MollieSettingsPage.php:138 msgid " if you have any questions or comments about this plugin." msgstr " bij vragen of opmerkingen over deze plugin." -#: build/src/Mollie/WC/Helper/Settings.php:631 -#: src/Mollie/WC/Helper/Settings.php:631 -msgid "" -"Our pricing is always per transaction. No startup fees, no monthly fees, and " -"no gateway fees. No hidden fees, period." -msgstr "" -"Onze prijsstelling geldt altijd per transactie. Geen opstartvergoeding, geen " -"maandelijkse vergoeding, geen gateway vergoeding. Geen verborgen vergoeding!" +#: ../src/Settings/Page/MollieSettingsPage.php:142 +msgid "Our pricing is always per transaction. No startup fees, no monthly fees, and no gateway fees. No hidden fees, period." +msgstr "Onze prijsstelling geldt altijd per transactie. Geen opstartvergoeding, geen maandelijkse vergoeding, geen gateway vergoeding. Geen verborgen vergoeding!" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:148 msgid "Plugin Documentation" msgstr "Plugin-documentatie" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:151 msgid "Contact Support" msgstr "Neem contact op met de supportdienst" -#: build/src/Mollie/WC/Helper/Settings.php:644 -#: src/Mollie/WC/Helper/Settings.php:644 +#: ../src/Settings/Page/MollieSettingsPage.php:163 msgid "Log plugin events." msgstr "Log plugin-gebeurtenissen" -#: build/src/Mollie/WC/Helper/Settings.php:650 -#: src/Mollie/WC/Helper/Settings.php:650 +#. translators: Placeholder 1: Location of the log files +#: ../src/Settings/Page/MollieSettingsPage.php:170 msgid "Log files are saved to %s" msgstr "Logbestanden worden opgeslagen in %s" -#: build/src/Mollie/WC/Helper/Settings.php:663 -#: build/src/Mollie/WC/Plugin.php:379 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:11 -#: src/Mollie/WC/Helper/Settings.php:663 src/Mollie/WC/Plugin.php:379 -#: src/Mollie/WC/Settings/Page/Mollie.php:11 -msgid "Mollie Settings" -msgstr "Mollie-instellingen" - -#: build/src/Mollie/WC/Helper/Settings.php:670 -#: src/Mollie/WC/Helper/Settings.php:670 +#: ../src/Settings/Page/MollieSettingsPage.php:192 msgid "Live API key" msgstr "Live API-sleutel" #. translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:675 -#: build/src/Mollie/WC/Helper/Settings.php:697 -#: src/Mollie/WC/Helper/Settings.php:675 src/Mollie/WC/Helper/Settings.php:697 -msgid "" -"The API key is used to connect to Mollie. You can find your %s API key in your %sMollie profile%s" -msgstr "" -"De API-sleutel wordt gebruikt om verbinding te maken met Mollie. U vindt uw " -"%s API-sleutel in uw %sMollie-profiel%s" +#: ../src/Settings/Page/MollieSettingsPage.php:197, ../src/Settings/Page/MollieSettingsPage.php:230 +msgid "The API key is used to connect to Mollie. You can find your %1$s API key in your %2$sMollie account%3$s" +msgstr "De API-sleutel wordt gebruikt om verbinding te maken met Mollie. U vindt uw %1$s API-sleutel in uw %2$sMollie-profiel%3$s" -#: build/src/Mollie/WC/Helper/Settings.php:681 -#: src/Mollie/WC/Helper/Settings.php:681 +#: ../src/Settings/Page/MollieSettingsPage.php:208 msgid "Live API key should start with live_" msgstr "Live API-sleutel moet beginnen met live_" -#: build/src/Mollie/WC/Helper/Settings.php:685 -#: src/Mollie/WC/Helper/Settings.php:685 +#: ../src/Settings/Page/MollieSettingsPage.php:215 msgid "Enable test mode" msgstr "Activeer de testmodus" -#: build/src/Mollie/WC/Helper/Settings.php:688 -#: src/Mollie/WC/Helper/Settings.php:688 -msgid "" -"Enable test mode if you want to test the plugin without using real payments." -msgstr "" -"Activeer de testmodus als u de plugin wilt testen zonder echte betalingen te " -"gebruiken." +#: ../src/Settings/Page/MollieSettingsPage.php:218 +msgid "Enable test mode if you want to test the plugin without using real payments." +msgstr "Activeer de testmodus als u de plugin wilt testen zonder echte betalingen te gebruiken." -#: build/src/Mollie/WC/Helper/Settings.php:692 -#: src/Mollie/WC/Helper/Settings.php:692 +#: ../src/Settings/Page/MollieSettingsPage.php:225 msgid "Test API key" msgstr "Test API-sleutel" -#: build/src/Mollie/WC/Helper/Settings.php:703 -#: src/Mollie/WC/Helper/Settings.php:703 +#: ../src/Settings/Page/MollieSettingsPage.php:241 msgid "Test API key should start with test_" msgstr "Test API-sleutel moet beginnen met test_" -#: build/src/Mollie/WC/Helper/Settings.php:707 -#: src/Mollie/WC/Helper/Settings.php:707 +#: ../src/Settings/Page/MollieSettingsPage.php:248 msgid "Debug Log" msgstr "Debug-log" -#: build/src/Mollie/WC/Helper/Settings.php:810 -#: src/Mollie/WC/Helper/Settings.php:810 -msgid "" -"You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. " -"Enable SEPA Direct Debit if you want to allow customers to pay subscriptions " -"with iDEAL and/or other \"first\" payment methods." -msgstr "" -"U hebt WooCommerce-abonnementen geactiveerd, maar geen SEPA-incasso. " -"Activeer SEPA-incasso als u klanten wilt toestaan om abonnementen met iDEAL " -"en/of andere \"eerste\" betaalmethodes te betalen." - -#: build/src/Mollie/WC/Helper/Settings.php:834 -#: src/Mollie/WC/Helper/Settings.php:834 -msgid "" -"You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway " -"enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via " -"Mollie and disabling the default WooCommerce BACS payment gateway to prevent " -"possible conflicts." -msgstr "" -"U hebt de WooCommerce standaard Direct Bank Transfer (BACS) betalingsgateway " -"geactiveerd in WooCommerce. Mollie adviseert ten zeerste om alleen Bank " -"Transfer via Mollie te gebruiken en de standaard WooCommerce BACS " -"betalingsgateway uit te schakelen om mogelijke conflicten te voorkomen." - -#: build/src/Mollie/WC/Helper/Settings.php:855 -#: src/Mollie/WC/Helper/Settings.php:855 -msgid "" -"You have activated Klarna. To accept payments, please make sure all default " -"WooCommerce checkout fields are enabled and required. For more information, " -"go to %1sKlarna Pay Later documentation%2s or %3sKlarna Slice it " -"documentation%4s" -msgstr "" -"U hebt Klarna geactiveerd. Zorg ervoor dat alle standaard WooCommerce " -"betaalvelden zijn geactiveerd en verplicht zijn, zodat u betalingen kunt " -"accepteren. Ga voor meer informatie naar %1sKlarna betaal later documentatie" -"%2s of %3sKlarna Betaal in 3 delen documentatie%4s" - -#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce version, placeholder 3: used WooCommerce version -#: build/src/Mollie/WC/Helper/Status.php:67 src/Mollie/WC/Helper/Status.php:67 -msgid "" -"The %s plugin requires at least WooCommerce version %s, you are using " -"version %s. Please update your WooCommerce plugin." -msgstr "" -"De %s plugin vereist ten minste WooCommerce versie %s, u gebruikt versie %s. " -"Update uw WooCommerce plugin." - -#: build/src/Mollie/WC/Helper/Status.php:80 src/Mollie/WC/Helper/Status.php:80 -msgid "" -"Mollie API client not installed. Please make sure the plugin is installed " -"correctly." -msgstr "" -"Mollie API client niet geïnstalleerd. Controleer of de plugin correct is " -"geïnstalleerd." - -#: build/src/Mollie/WC/Helper/Status.php:89 src/Mollie/WC/Helper/Status.php:89 -msgid "" -"Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable " -"it in your server or ask your webhoster to enable it for you." -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen de JSON-extensie voor PHP. " -"Activeer dit op uw server of vraag uw webhoster om het voor u te activeren." - -#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP version -#: build/src/Mollie/WC/Helper/Status.php:104 -#: src/Mollie/WC/Helper/Status.php:104 -msgid "" -"Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. " -"Please upgrade and view %sthis FAQ%s" -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, u hebt PHP %s. " -"Installeer de upgrade en bekijk %sdeze FAQ%s" - -#: build/src/Mollie/WC/Helper/Status.php:116 -#: src/Mollie/WC/Helper/Status.php:116 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension JSON to be " -"enabled. Please enable the 'json' extension in your PHP configuration." -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON " -"geactiveerd is. Activeer de extensie 'json' in uw PHP-configuratie." - -#: build/src/Mollie/WC/Helper/Status.php:123 -#: src/Mollie/WC/Helper/Status.php:123 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension cURL to be " -"enabled. Please enable the 'curl' extension in your PHP configuration." -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL " -"geactiveerd is. Activeer de extensie 'curl' in uw PHP-configuratie." - -#: build/src/Mollie/WC/Helper/Status.php:131 -#: src/Mollie/WC/Helper/Status.php:131 -msgid "" -"Mollie Payments for WooCommerce require PHP cURL functions to be available. " -"Please make sure all of these functions are available." -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies " -"beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:603 -#: src/Mollie/WC/Payment/Object.php:603 -msgid "" -"%s renewal payment failed via Mollie (%s). You will need to manually review " -"the payment and adjust product stocks if you use them." -msgstr "" -"%s vernieuwing van betaling mislukt via Mollie (%s). U moet de betaling " -"handmatig controleren en productvoorraden aanpassen als u deze gebruikt." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:637 -#: src/Mollie/WC/Payment/Object.php:637 -msgid "%s payment failed via Mollie (%s)." -msgstr "%s betaling mislukt via Mollie (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:677 -#: src/Mollie/WC/Payment/Object.php:677 -msgid "" -"Mollie webhook called, but payment also started via %s, so the order status " -"is not updated." -msgstr "" -"Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de " -"bestellingsstatus is niet bijgewerkt." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:262 -#: build/src/Mollie/WC/Payment/Payment.php:247 -#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:247 -msgid "Order completed using %s payment (%s)." -msgstr "Bestelling voltooid met gebruik van %s betaling (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:314 -#: src/Mollie/WC/Payment/Order.php:314 -msgid "" -"Order authorized using %s payment (%s). Set order to completed in " -"WooCommerce when you have shipped the products, to capture the payment. Do " -"this within 28 days, or the order will expire. To handle individual order " -"lines, process the order via the Mollie Dashboard." -msgstr "" -"Bestelling geautoriseerd met gebruik van %s betaling (%s). Om de betaling te " -"ontvangen, moet u na het verzenden van de producten de bestelling in " -"WooCommerce als voltooid markeren. Doe dit binnen 28 dagen, anders vervalt " -"de bestelling. Voor het afhandelen van afzonderlijke bestelregels, moet u de " -"bestelling via het Mollie Dashboard verwerken." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:361 -#: src/Mollie/WC/Payment/Order.php:361 -msgid "" -"Order completed at Mollie for %s order (%s). At least one order line " -"completed. Remember: Completed status for an order at Mollie is not the same " -"as Completed status in WooCommerce!" -msgstr "" -"Bestelling voltooid bij Mollie voor %s bestelling (%s). Ten minste één " -"bestellijn voltooid. Denk eraan: Voltooide status voor een bestelling bij " -"Mollie is niet hetzelfde als Voltooide status in WooCommerce!" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:444 -#: src/Mollie/WC/Payment/Order.php:444 -msgid "%s order (%s) cancelled ." -msgstr "%s bestelling (%s) geannuleerd." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:509 -#: src/Mollie/WC/Payment/Order.php:509 -msgid "" -"%s order expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s bestelling verlopen (%s) maar niet geannuleerd wegens een andere betaling " -"die nog in behandeling is (%s)." - -#. translators: Order note error -#: src/Mollie/WC/Payment/Order.php:619 -msgid "" -"The sum of refunds for all order lines is not identical to the refund " -"amount, so this refund will be processed as a payment amount refund, not an " -"order line refund." -msgstr "" -"De som van de terugbetalingen voor alle bestelregels is niet identiek aan " -"het terugbetalingsbedrag, dus deze terugbetaling zal worden verwerkt als een " -"terugbetaling van het betalingsbedrag en niet als een terugbetaling van een " -"bestelregel." - -#. translators: Placeholder 1: payment status. -#: src/Mollie/WC/Payment/Order.php:619 -msgid "Can not refund order amount that has status %1$s at Mollie." -msgstr "" -"Kan het bestelbedrag dat de status %1$s heeft bij Mollie niet terugbetalen." - -#: build/src/Mollie/WC/Payment/Order.php:742 -#: src/Mollie/WC/Payment/Order.php:742 -msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie." -msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:758 -#: src/Mollie/WC/Payment/Order.php:758 -msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-" -"ID: %s." - -#: build/src/Mollie/WC/Payment/Order.php:836 -#: src/Mollie/WC/Payment/Order.php:836 -msgid "" -"Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s " -"Terugbetalings-ID: %s." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:931 -#: src/Mollie/WC/Payment/Order.php:931 -msgid "%s order (%s) expired ." -msgstr "%s bestelling (%s) verlopen." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -msgid "" -"One of the WooCommerce order items does not have the refund item ID meta " -"value associated to Mollie Order item." -msgstr "" -"Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het " -"terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -msgid "" -"Impossible to retrieve the order item ID related to the remote item: %1$s. " -"Try to do a refund by amount." -msgstr "" -"Onmogelijk om het bestelartikel-id van het afstandsartikel terug te halen: " -"%1$s Probeer een terugbetaling te doen per bedrag." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -msgid "Empty WooCommerce order items or mollie order lines." -msgstr "Lege WooCommerce-bestelartikelen of Mollie-bestelregels." - -#. translators: Placeholder 1: order number -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: build/src/Mollie/WC/Payment/Payment.php:132 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: src/Mollie/WC/Payment/Payment.php:132 -msgctxt "Payment description for {orderNumber}" -msgid "Order {orderNumber}" -msgstr "Bestelling {orderNumber}" - -#. translators: Placeholder 1: store name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: build/src/Mollie/WC/Payment/Payment.php:143 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: src/Mollie/WC/Payment/Payment.php:143 -msgctxt "Payment description for {storeName}" -msgid "StoreName {storeName}" -msgstr "Winkelnaam {storeName}" - -#. translators: Placeholder 1: customer first name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: build/src/Mollie/WC/Payment/Payment.php:154 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: src/Mollie/WC/Payment/Payment.php:154 -msgctxt "Payment description for {customer.firstname}" -msgid "Customer Firstname {customer.firstname}" -msgstr "Voornaam Klant {customer.firstname}" - -#. translators: Placeholder 1: customer last name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: build/src/Mollie/WC/Payment/Payment.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: src/Mollie/WC/Payment/Payment.php:165 -msgctxt "Payment description for {customer.lastname}" -msgid "Customer Lastname {customer.lastname}" -msgstr "Achternaam Klant {customer.lastname}" - -#. translators: Placeholder 1: customer company name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: build/src/Mollie/WC/Payment/Payment.php:176 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: src/Mollie/WC/Payment/Payment.php:176 -msgctxt "Payment description for {customer.company}" -msgid "Customer Company {customer.company}" -msgstr "Bedrijf Klant {customer.company}" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:334 -#: src/Mollie/WC/Payment/Payment.php:334 -msgid "%s payment (%s) cancelled ." -msgstr "%s betaling (%s) geannuleerd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:328 -msgid "Processing a payment, no capture needed" -msgstr "Betaling aan het verwerken, geen vastlegging nodig" - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:342 -msgid "Order already canceled at Mollie, can not be shipped/captured." -msgstr "" -"Bestelling reeds geannuleerd bij Mollie, kan niet worden verzonden/" -"vastgelegd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:350 -msgid "Order already completed at Mollie, can not be shipped/captured." -msgstr "" -"Bestelling reeds voltooid bij Mollie, kan niet worden verzonden/vastgelegd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:359 -msgid "" -"Order successfully updated to shipped at Mollie, capture of funds underway." -msgstr "" -"Bestelling met succes bijgewerkt om te verzenden bij Mollie, vastlegging van " -"middelen bezig." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:365 -msgid "Order not paid or authorized at Mollie yet, can not be shipped." -msgstr "" -"Bestelling nog niet betaald of geautoriseerd bij Mollie, kan niet worden " -"verzonden." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:399 -msgid "" -"Order contains Mollie payment method, but not a valid Mollie Order ID. " -"Canceling order failed." -msgstr "" -"Bestelling bevat Mollie-betaalmethode, maar geen geldig Mollie-bestel-ID. " -"Annulering van bestelling mislukt." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:420 -msgid "Order already canceled at Mollie, can not be canceled again." -msgstr "" -"Bestelling reeds geannuleerd bij Mollie, kan niet opnieuw worden geannuleerd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:430 -msgid "Order also cancelled at Mollie." -msgstr "Bestelling dus geannuleerd bij Mollie." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:436 -msgid "Order could not be canceled at Mollie, because order status is " -msgstr "" -"Bestelling kon niet worden geannuleerd bij Mollie, omdat bestelstatus is " - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:404 -#: src/Mollie/WC/Payment/Payment.php:404 -msgid "" -"%s payment expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s betaling verlopen (%s) maar niet geannuleerd wegens een andere betaling " -"die nog in behandeling is (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:427 -#: src/Mollie/WC/Payment/Payment.php:427 -msgid "%s payment expired (%s)." -msgstr "%s betaling verlopen (%s)." - -#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID -#: build/src/Mollie/WC/Payment/Payment.php:509 -#: src/Mollie/WC/Payment/Payment.php:509 -msgid "Refunded %s%s%s - Payment: %s, Refund: %s" -msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s" - -#: build/src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -msgid "" -"Mollie doesn't allow a partial refund of the full amount or quantity of at " -"least one order line. Trying to process this as an amount refund instead." -msgstr "" -"Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag " -"of hoeveelheid van ten minste één bestelregel. Probeer in plaats daarvan dit " -"te verwerken als een terugbetaling van het bedrag." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Plugin.php:128 src/Mollie/WC/Plugin.php:128 -msgid "%s payment failed (%s)." -msgstr "%s betaling mislukt (%s)." - -#: build/src/Mollie/WC/Plugin.php:303 src/Mollie/WC/Plugin.php:303 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s " -"disable it%4$s before deploying into production." -msgstr "" -"%1$sMollie-betalingen voor WooCommerce%2$s De testmodus is actief, %3$s " -"schakel deze uit%4$s voordat hij wordt geïmplementeerd." - -#: build/src/Mollie/WC/Plugin.php:411 build/src/Mollie/WC/Plugin.php:444 -#: build/src/Mollie/WC/Plugin.php:466 src/Mollie/WC/Plugin.php:411 -#: src/Mollie/WC/Plugin.php:444 src/Mollie/WC/Plugin.php:466 -msgid "Mollie Voucher Category" -msgstr "Mollie-waardeboncategorie" - -#: build/src/Mollie/WC/Plugin.php:414 build/src/Mollie/WC/Plugin.php:446 -#: build/src/Mollie/WC/Plugin.php:469 src/Mollie/WC/Plugin.php:414 -#: src/Mollie/WC/Plugin.php:446 src/Mollie/WC/Plugin.php:469 -msgid "--Please choose an option--" -msgstr "--Kies een optie--" - -#: build/src/Mollie/WC/Plugin.php:415 build/src/Mollie/WC/Plugin.php:447 -#: build/src/Mollie/WC/Plugin.php:470 build/src/Mollie/WC/Plugin.php:583 -#: src/Mollie/WC/Plugin.php:415 src/Mollie/WC/Plugin.php:447 -#: src/Mollie/WC/Plugin.php:470 src/Mollie/WC/Plugin.php:583 -msgid "No Category" -msgstr "Geen categorie" - -#: build/src/Mollie/WC/Plugin.php:416 build/src/Mollie/WC/Plugin.php:448 -#: build/src/Mollie/WC/Plugin.php:471 build/src/Mollie/WC/Plugin.php:584 -#: src/Mollie/WC/Plugin.php:416 src/Mollie/WC/Plugin.php:448 -#: src/Mollie/WC/Plugin.php:471 src/Mollie/WC/Plugin.php:584 -msgid "Meal" -msgstr "Maaltijd" - -#: build/src/Mollie/WC/Plugin.php:417 build/src/Mollie/WC/Plugin.php:449 -#: build/src/Mollie/WC/Plugin.php:472 build/src/Mollie/WC/Plugin.php:585 -#: src/Mollie/WC/Plugin.php:417 src/Mollie/WC/Plugin.php:449 -#: src/Mollie/WC/Plugin.php:472 src/Mollie/WC/Plugin.php:585 -msgid "Eco" -msgstr "Eco" - -#: build/src/Mollie/WC/Plugin.php:418 build/src/Mollie/WC/Plugin.php:450 -#: build/src/Mollie/WC/Plugin.php:473 build/src/Mollie/WC/Plugin.php:586 -#: src/Mollie/WC/Plugin.php:418 src/Mollie/WC/Plugin.php:450 -#: src/Mollie/WC/Plugin.php:473 src/Mollie/WC/Plugin.php:586 -msgid "Gift" -msgstr "Cadeau" - -#: build/src/Mollie/WC/Plugin.php:452 build/src/Mollie/WC/Plugin.php:475 -#: src/Mollie/WC/Plugin.php:452 src/Mollie/WC/Plugin.php:475 -msgid "Select a voucher category to apply to all products with this category" -msgstr "" -"Selecteer een waardeboncategorie om toe te passen op alle producten met deze " -"categorie" - -#: build/src/Mollie/WC/Plugin.php:512 src/Mollie/WC/Plugin.php:512 -msgid "Products voucher category" -msgstr "Categorie producten waardebon" - -#: build/src/Mollie/WC/Plugin.php:519 build/src/Mollie/WC/Plugin.php:582 -#: src/Mollie/WC/Plugin.php:519 src/Mollie/WC/Plugin.php:582 -msgid "Same as default category" -msgstr "Zelfde als standaardcategorie" +#: ../src/Settings/Page/MollieSettingsPage.php:300 +msgid "Gateway enabled" +msgstr "Gateway geactiveerd" -#: build/src/Mollie/WC/Plugin.php:529 src/Mollie/WC/Plugin.php:529 -msgid "" -"In order to process it, all products in the order must have a category. To " -"disable the product from voucher selection select \"No category\" option." -msgstr "" -"Daarvoor moeten alle producten uit de bestelling een categorie hebben. " -"Selecteer ''Geen categorie'' om te voorkomen dat het product voor " -"waardebonnen kan worden gekozen." +#: ../src/Settings/Page/MollieSettingsPage.php:304 +msgid "Gateway disabled" +msgstr "Gateway gedeactiveerd" -#: build/src/Mollie/WC/Plugin.php:579 src/Mollie/WC/Plugin.php:579 -msgid "Mollie Voucher category" -msgstr "Mollie-waardeboncategorie" +#: ../src/Settings/Page/MollieSettingsPage.php:307 +msgid "Disabled" +msgstr "Uitgeschakeld" -#: build/src/Mollie/WC/Plugin.php:727 src/Mollie/WC/Plugin.php:727 -msgid "%1$s items refunded in WooCommerce and at Mollie." -msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie." +#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Settings/Page/MollieSettingsPage.php:318 +msgid "The following payment methods are activated in your %1$sMollie profile%2$s:" +msgstr "De volgende betaalmethodes zijn geactiveerd in uw %1$sMollie-profiel%2$s:" -#: build/src/Mollie/WC/Plugin.php:745 src/Mollie/WC/Plugin.php:745 -msgid "%1$s items cancelled in WooCommerce and at Mollie." -msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:333 +msgid "Refresh" +msgstr "Vernieuwen" -#: build/src/Mollie/WC/Plugin.php:919 src/Mollie/WC/Plugin.php:919 -msgid "Name on card" -msgstr "Naam op de kaart" +#: ../src/Settings/Page/MollieSettingsPage.php:342 +msgid "No payment methods available" +msgstr "Geen betaalmethoden beschikbaar" -#: build/src/Mollie/WC/Plugin.php:923 src/Mollie/WC/Plugin.php:923 -msgid "Card number" -msgstr "Kaartnummer" +#: ../src/Settings/Page/MollieSettingsPage.php:357 +msgid "Edit" +msgstr "Bewerken" -#: build/src/Mollie/WC/Plugin.php:931 src/Mollie/WC/Plugin.php:931 -msgid "CVC/CVV" -msgstr "CVC/CVV" +# MS: Falls es als Imperativ gedacht ist, sollte es "Activeer" heißen, dafür müsste ich allerdings den genauen Kontext bzw. Platz des Begriffes wissen #query +#: ../src/Settings/Page/MollieSettingsPage.php:365 +msgid "Activate" +msgstr "Activeren" -#: build/src/Mollie/WC/Plugin.php:938 src/Mollie/WC/Plugin.php:938 -msgid "An unknown error occurred, please check the card fields." -msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden." +#: ../src/Settings/Page/MollieSettingsPage.php:411 +msgid "You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. Enable SEPA Direct Debit if you want to allow customers to pay subscriptions with iDEAL and/or other \"first\" payment methods." +msgstr "U heeft WooCommerce Abonnementen geactiveerd, maar geen SEPA-incasso. Activeer SEPA-incasso als u klanten wilt toestaan om abonnementen met iDEAL en/of andere \"eerste\" betaalmethodes te betalen." -#: build/src/Mollie/WC/Plugin.php:1295 src/Mollie/WC/Plugin.php:1295 -msgid "Mollie settings" -msgstr "Mollie-instellingen" +#: ../src/Settings/Page/MollieSettingsPage.php:437 +msgid "You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via Mollie and disabling the default WooCommerce BACS payment gateway to prevent possible conflicts." +msgstr "U hebt de WooCommerce standaard Direct Bank Transfer (BACS) betalingsgateway geactiveerd in WooCommerce. Mollie adviseert ten zeerste om alleen Bank Transfer via Mollie te gebruiken en de standaard WooCommerce BACS betalingsgateway uit te schakelen om mogelijke conflicten te voorkomen." -#: build/src/Mollie/WC/Plugin.php:1301 src/Mollie/WC/Plugin.php:1301 -msgid "Logs" -msgstr "Logs" +#. translators: Placeholder 1: Opening link tag. Placeholder 2: Closing link tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/Page/MollieSettingsPage.php:461 +msgid "You have activated Klarna. To accept payments, please make sure all default WooCommerce checkout fields are enabled and required. For more information, go to %1$sKlarna Pay Later documentation%2$s or %3$sKlarna Slice it documentation%4$s" +msgstr "U hebt Klarna geactiveerd. Zorg ervoor dat alle standaard WooCommerce betaalvelden zijn geactiveerd en verplicht zijn, zodat u betalingen kunt accepteren. Ga voor meer informatie naar %1$sKlarna betaal later documentatie%2$s of %3$sKlarna Betaal in 3 delen documentatie%4$s" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:138 -#: src/Mollie/WC/Settings/Page/Mollie.php:138 +#: ../src/Settings/Page/MollieSettingsPage.php:702 msgid "General" msgstr "Algemeen" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:143 -#: src/Mollie/WC/Settings/Page/Mollie.php:143 -msgid "Apple Pay Button" -msgstr "Apple Pay knop" - -#: build/src/Mollie/WC/Settings/Page/Mollie.php:147 -#: src/Mollie/WC/Settings/Page/Mollie.php:147 +#: ../src/Settings/Page/MollieSettingsPage.php:707 msgid "Advanced" msgstr "Geavanceerd" -#: src/Mollie/WC/Gateway/Abstract.php:1987 -msgid "%1$s Secure payments provided by %2$s" -msgstr "%1$s Beveiligde betalingen verschaft door %2$s" +#: ../src/Settings/Page/MollieSettingsPage.php:710 +msgid "Apple Pay Button" +msgstr "Apple Pay knop" diff --git a/languages/mollie-payments-for-woocommerce-nl_NL.mo b/languages/mollie-payments-for-woocommerce-nl_NL.mo index 54dc96491..48ae33af0 100644 Binary files a/languages/mollie-payments-for-woocommerce-nl_NL.mo and b/languages/mollie-payments-for-woocommerce-nl_NL.mo differ diff --git a/languages/mollie-payments-for-woocommerce-nl_NL.po b/languages/mollie-payments-for-woocommerce-nl_NL.po index 27ef31fe4..1d561687e 100644 --- a/languages/mollie-payments-for-woocommerce-nl_NL.po +++ b/languages/mollie-payments-for-woocommerce-nl_NL.po @@ -1,2862 +1,1977 @@ -# Copyright (C) 2021 Mollie -# This file is distributed under the same license as the Mollie Payments for WooCommerce plugin. +# Copyright (C) 2022 unnamed project +# This file is distributed under the same license as the unnamed project package. msgid "" msgstr "" -"Project-Id-Version: Mollie Payments for WooCommerce 6.7.0\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mollie-payments-" -"for-woocommerce\n" -"POT-Creation-Date: 2021-11-12T07:59:02+00:00\n" -"PO-Revision-Date: 2022-06-20 11:19+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: nl\n" +"Project-Id-Version: Mollie Payments for WooCommerce 7.3.3\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: undefined\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.1\n" -"X-Domain: mollie-payments-for-woocommerce\n" -#. Plugin Name of the plugin -msgid "Mollie Payments for WooCommerce" -msgstr "Mollie-betalingen voor WooCommerce" - -#. Plugin URI of the plugin -#. Author URI of the plugin -msgid "https://www.mollie.com" -msgstr "https://www.mollie.com" - -#. Description of the plugin -msgid "Accept payments in WooCommerce with the official Mollie plugin" -msgstr "Accepteer betalingen in WooCommerce met de officiële Mollie-plugin" - -#. Author of the plugin -msgid "Mollie" -msgstr "Mollie" - -#: build/inc/settings/mollie_advanced_settings.php:6 -#: inc/settings/mollie_advanced_settings.php:6 -msgid "Mollie advanced settings" -msgstr "Geavanceerde Mollie-instellingen" - -# MS: Oder 'Bestelling nummer' ? #query -#: build/inc/settings/mollie_advanced_settings.php:8 -#: inc/settings/mollie_advanced_settings.php:8 +#: ../inc/settings/mollie_advanced_settings.php:12 msgctxt "Label {orderNumber} description for payment description options" msgid "Order number" msgstr "Bestelnummer" -# MS: Site wie in 'Website' ? #query -#: build/inc/settings/mollie_advanced_settings.php:9 -#: inc/settings/mollie_advanced_settings.php:9 +#: ../inc/settings/mollie_advanced_settings.php:13 msgctxt "Label {storeName} description for payment description options" msgid "Site Title" msgstr "Site titel" -#: build/inc/settings/mollie_advanced_settings.php:10 -#: inc/settings/mollie_advanced_settings.php:10 -msgctxt "" -"Label {customer.firstname} description for payment description options" +#: ../inc/settings/mollie_advanced_settings.php:14 +msgctxt "Label {customer.firstname} description for payment description options" msgid "Customer's first name" msgstr "Voornaam klant" -#: build/inc/settings/mollie_advanced_settings.php:11 -#: inc/settings/mollie_advanced_settings.php:11 +#: ../inc/settings/mollie_advanced_settings.php:15 msgctxt "Label {customer.lastname} description for payment description options" msgid "Customer's last name" msgstr "Achternaam klant" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:16 msgctxt "Label {customer.company} description for payment description options" msgid "Customer's company name" msgstr "Bedrijfsnaam klant" -#: build/inc/settings/mollie_advanced_settings.php:8 -#: build/src/Mollie/WC/Helper/Settings.php:666 -#: inc/settings/mollie_advanced_settings.php:8 -#: src/Mollie/WC/Helper/Settings.php:666 -msgid "" -"The following options are required to use the plugin and are used by all " -"Mollie payment methods" -msgstr "" -"De volgende opties zijn vereist om de plugin te gebruiken en worden door " -"alle Mollie-betaalmethoden gebruikt" +#: ../inc/settings/mollie_advanced_settings.php:22 +msgid "Mollie advanced settings" +msgstr "Geavanceerde Mollie-instellingen" + +#: ../inc/settings/mollie_advanced_settings.php:24, ../src/Settings/Page/MollieSettingsPage.php:185 +msgid "The following options are required to use the plugin and are used by all Mollie payment methods" +msgstr "De volgende opties zijn vereist om de plugin te gebruiken en worden door alle Mollie-betaalmethoden gebruikt" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:28 msgid "Order status after cancelled payment" msgstr "Bestelstatus na geannuleerde betaling" -#: build/inc/settings/mollie_advanced_settings.php:18 -#: inc/settings/mollie_advanced_settings.php:18 -msgid "" -"Status for orders when a payment (not a Mollie order via the Orders API) is " -"cancelled. Default: pending. Orders with status Pending can be paid with " -"another payment method, customers can try again. Cancelled orders are final. " -"Set this to Cancelled if you only have one payment method or don't want " -"customers to re-try paying with a different payment method. This doesn't " -"apply to payments for orders via the new Orders API and Klarna payments." -msgstr "" -"Status voor bestellingen wanneer een betaling (niet een Mollie-bestelling " -"via de Bestellingen API) wordt geannuleerd. Standaard: hangende. " -"Bestellingen met status Hangende kunnen met een andere betaalmethode worden " -"betaald, klanten kunnen het opnieuw proberen. Geannuleerde bestellingen zijn " -"definitief. Stel dit in op Geannuleerd als je maar één betaalmethode hebt of " -"als je niet wilt dat klanten opnieuw proberen te betalen met een andere " -"betaalmethode. Dit is niet van toepassing voor betalingen voor bestellingen " -"via de nieuwe Orders-API en Klarna-betalingen." - -#: build/inc/settings/mollie_advanced_settings.php:23 -#: inc/settings/mollie_advanced_settings.php:23 +#: ../inc/settings/mollie_advanced_settings.php:31 +msgid "Pending" +msgstr "In behandeling" + +#: ../inc/settings/mollie_advanced_settings.php:32 +msgid "Cancelled" +msgstr "Geannuleerd" + +#: ../inc/settings/mollie_advanced_settings.php:34 +msgid "Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don't want customers to re-try paying with a different payment method. This doesn't apply to payments for orders via the new Orders API and Klarna payments." +msgstr "Status voor bestellingen wanneer een betaling (niet een Mollie-besteling via de Bestellingen API) wordt geannuleerd. Standaard: hangende. Bestellingen met status Hangende kunnen met een andere betaalmethode worden betaald, klanten kunnen opnieuw proberen. Geannuleerde bestellingen zijn definitief. Stel dit in op Geannuleerd als je maar één betaalmethode hebt of als je niet wilt dat klanten opnieuw proberen te betalen met een andere betaalmethode. Dit is niet van toepassing voor betalingen voor bestellingen via de nieuwe Orders-API en Klarna-betalingen." + +#: ../inc/settings/mollie_advanced_settings.php:39 msgid "Payment screen language" msgstr "Taal van betaalscherm" -#: build/inc/settings/mollie_advanced_settings.php:26 -#: inc/settings/mollie_advanced_settings.php:26 +#: ../inc/settings/mollie_advanced_settings.php:42 msgid "Automatically send WordPress language" msgstr "Automatisch verzenden van WordPress-taal" -#: build/inc/settings/mollie_advanced_settings.php:29 -#: build/inc/settings/mollie_advanced_settings.php:90 -#: build/src/Mollie/WC/Helper/Settings.php:288 -#: inc/settings/mollie_advanced_settings.php:29 -#: inc/settings/mollie_advanced_settings.php:90 -#: src/Mollie/WC/Helper/Settings.php:288 +#: ../inc/settings/mollie_advanced_settings.php:45, ../inc/settings/mollie_advanced_settings.php:105, ../src/Settings/General/MollieGeneralSettings.php:266 msgid "default" msgstr "standaard" -#: build/inc/settings/mollie_advanced_settings.php:30 -#: inc/settings/mollie_advanced_settings.php:30 +#: ../inc/settings/mollie_advanced_settings.php:46 msgid "Detect using browser language" msgstr "Detecteren met gebruik van browser-taal" -#: build/inc/settings/mollie_advanced_settings.php:34 -#: inc/settings/mollie_advanced_settings.php:34 +#: ../inc/settings/mollie_advanced_settings.php:50 msgid "English" msgstr "Engels" -#: build/inc/settings/mollie_advanced_settings.php:35 -#: inc/settings/mollie_advanced_settings.php:35 +#: ../inc/settings/mollie_advanced_settings.php:51 msgid "Dutch" msgstr "Nederlands" -#: build/inc/settings/mollie_advanced_settings.php:36 -#: inc/settings/mollie_advanced_settings.php:36 +#: ../inc/settings/mollie_advanced_settings.php:52 msgid "Flemish (Belgium)" msgstr "Vlaams (België)" -#: build/inc/settings/mollie_advanced_settings.php:37 -#: inc/settings/mollie_advanced_settings.php:37 +#: ../inc/settings/mollie_advanced_settings.php:53 msgid "French" msgstr "Frans" -#: build/inc/settings/mollie_advanced_settings.php:38 -#: inc/settings/mollie_advanced_settings.php:38 +#: ../inc/settings/mollie_advanced_settings.php:54 msgid "French (Belgium)" msgstr "Frans (België)" -#: build/inc/settings/mollie_advanced_settings.php:39 -#: inc/settings/mollie_advanced_settings.php:39 +#: ../inc/settings/mollie_advanced_settings.php:55 msgid "German" msgstr "Duits" -#: build/inc/settings/mollie_advanced_settings.php:40 -#: inc/settings/mollie_advanced_settings.php:40 +#: ../inc/settings/mollie_advanced_settings.php:56 msgid "Austrian German" msgstr "Oostenrijks-Duits" -#: build/inc/settings/mollie_advanced_settings.php:41 -#: inc/settings/mollie_advanced_settings.php:41 +#: ../inc/settings/mollie_advanced_settings.php:57 msgid "Swiss German" msgstr "Zwitserduits" -#: build/inc/settings/mollie_advanced_settings.php:42 -#: inc/settings/mollie_advanced_settings.php:42 +#: ../inc/settings/mollie_advanced_settings.php:58 msgid "Spanish" msgstr "Spaans" -#: build/inc/settings/mollie_advanced_settings.php:43 -#: inc/settings/mollie_advanced_settings.php:43 +#: ../inc/settings/mollie_advanced_settings.php:59 msgid "Catalan" msgstr "Spaans (Catalaans)" -#: build/inc/settings/mollie_advanced_settings.php:44 -#: inc/settings/mollie_advanced_settings.php:44 +#: ../inc/settings/mollie_advanced_settings.php:60 msgid "Portuguese" msgstr "Portugees" -#: build/inc/settings/mollie_advanced_settings.php:45 -#: inc/settings/mollie_advanced_settings.php:45 +#: ../inc/settings/mollie_advanced_settings.php:61 msgid "Italian" msgstr "Italiaans" -#: build/inc/settings/mollie_advanced_settings.php:46 -#: inc/settings/mollie_advanced_settings.php:46 +#: ../inc/settings/mollie_advanced_settings.php:62 msgid "Norwegian" msgstr "Noors" -#: build/inc/settings/mollie_advanced_settings.php:47 -#: inc/settings/mollie_advanced_settings.php:47 +#: ../inc/settings/mollie_advanced_settings.php:63 msgid "Swedish" msgstr "Zweeds" -#: build/inc/settings/mollie_advanced_settings.php:48 -#: inc/settings/mollie_advanced_settings.php:48 +#: ../inc/settings/mollie_advanced_settings.php:64 msgid "Finnish" msgstr "Fins" -#: build/inc/settings/mollie_advanced_settings.php:49 -#: inc/settings/mollie_advanced_settings.php:49 +#: ../inc/settings/mollie_advanced_settings.php:65 msgid "Danish" msgstr "Deens" -#: build/inc/settings/mollie_advanced_settings.php:50 -#: inc/settings/mollie_advanced_settings.php:50 +#: ../inc/settings/mollie_advanced_settings.php:66 msgid "Icelandic" -msgstr "Ijslands" +msgstr "IJslands" -#: build/inc/settings/mollie_advanced_settings.php:51 -#: inc/settings/mollie_advanced_settings.php:51 +#: ../inc/settings/mollie_advanced_settings.php:67 msgid "Hungarian" msgstr "Hongaars" -#: build/inc/settings/mollie_advanced_settings.php:52 -#: inc/settings/mollie_advanced_settings.php:52 +#: ../inc/settings/mollie_advanced_settings.php:68 msgid "Polish" msgstr "Pools" -#: build/inc/settings/mollie_advanced_settings.php:53 -#: inc/settings/mollie_advanced_settings.php:53 +#: ../inc/settings/mollie_advanced_settings.php:69 msgid "Latvian" msgstr "Lets" -#: build/inc/settings/mollie_advanced_settings.php:54 -#: inc/settings/mollie_advanced_settings.php:54 +#: ../inc/settings/mollie_advanced_settings.php:70 msgid "Lithuanian" msgstr "Litouws" -#: build/inc/settings/mollie_advanced_settings.php:57 -#: inc/settings/mollie_advanced_settings.php:57 -msgid "" -"Sending a language (or locale) is required. The option 'Automatically send " -"WordPress language' will try to get the customer's language in WordPress " -"(and respects multilanguage plugins) and convert it to a format Mollie " -"understands. If this fails, or if the language is not supported, it will " -"fall back to American English. You can also select one of the locales " -"currently supported by Mollie, that will then be used for all customers." -msgstr "" -"Het verzenden van een taal (of locatie) is verplicht. De optie 'Automatisch " -"verzenden van WordPress-taal' zal proberen de taal van de klant in WordPress " -"te krijgen (meertalige plugins worden geaccepteerd) en deze te converteren " -"naar een formaat dat Mollie begrijpt. Als dit niet lukt, of als de taal niet " -"wordt ondersteund, wordt de taal Amerikaans-Engels. Je kunt ook een van de " -"op dit moment door Mollie ondersteunde locaties kiezen. Deze zal dan voor " -"alle klanten worden gebruikt." - -#: build/inc/settings/mollie_advanced_settings.php:65 -#: inc/settings/mollie_advanced_settings.php:65 +#: ../inc/settings/mollie_advanced_settings.php:73 +msgid "Sending a language (or locale) is required. The option 'Automatically send WordPress language' will try to get the customer's language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers." +msgstr "Het verzenden van een taal (of locatie) is vereist. De optie 'Automatisch verzenden van WordPress-taal' zal proberen de taal van de klant in WordPress te krijgen (en respecteert meertalige plugins) en deze te converteren naar een formaat dat Mollie begrijpt. Als dit niet lukt, of als de taal niet wordt ondersteund, zal teruggegaan worden naar Amerikaans-Engels. Je kunt ook een van de momenteel door Mollie ondersteunde locaties selecteren, die dan voor alle klanten zal worden gebruikt." + +#: ../inc/settings/mollie_advanced_settings.php:81 msgid "Store customer details at Mollie" msgstr "Klantgegevens opslaan bij Mollie" -#: build/inc/settings/mollie_advanced_settings.php:68 -#: inc/settings/mollie_advanced_settings.php:68 -msgid "" -"Should Mollie store customers name and email address for Single Click " -"Payments? Default %1$s. Required if WooCommerce Subscriptions " -"is being used! Read more about " -"%2$s and how it improves your conversion." -msgstr "" -"Moet Mollie klantennaam en e-mailadres opslaan voor Betalen met één klik? " -"Standaard %1$s. Verplicht als WooCommerce-abonnementen worden " -"gebruikt! Lees meer over " -"%2$s en hoe het je conversie verbetert." - -#: build/inc/settings/mollie_advanced_settings.php:72 -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: inc/settings/mollie_advanced_settings.php:72 -#: src/Mollie/WC/Helper/Settings.php:551 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_advanced_settings.php:84 +msgid "Should Mollie store customers name and email address for Single Click Payments? Default %1$s. Required if WooCommerce Subscriptions is being used! Read more about %2$s and how it improves your conversion." +msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor Single Click Payments? Standaard %1$s. Vereist als WooCommerce Abonnementen worden gebruikt! Lees meer over %2$s en hoe het jouw conversie verbetert." + +#: ../inc/settings/mollie_advanced_settings.php:88, ../src/Settings/Page/MollieSettingsPage.php:303 msgid "Enabled" msgstr "Geactiveerd" -#: build/inc/settings/mollie_advanced_settings.php:73 -#: inc/settings/mollie_advanced_settings.php:73 +#: ../inc/settings/mollie_advanced_settings.php:89 msgid "Single Click Payments" msgstr "Betalen met één klik" -#: build/inc/settings/mollie_advanced_settings.php:82 -#: inc/settings/mollie_advanced_settings.php:82 +#: ../inc/settings/mollie_advanced_settings.php:97 msgid "Select API Method" -msgstr "Kies de API methode" +msgstr "Selecteer de API-methode" -#: build/inc/settings/mollie_advanced_settings.php:99 -#: inc/settings/mollie_advanced_settings.php:99 -msgid "" -"Click %shere%s to read more about the differences between the Payments and " -"Orders API" -msgstr "" -"Klik %shier%s voor meer informatie over de verschillen tussen de Betalingen " -"en Bestellingen API" +#. translators: Placeholder 1: opening link tag, placeholder 2: closing link tag +#: ../inc/settings/mollie_advanced_settings.php:114 +msgid "Click %1$shere%2$s to read more about the differences between the Payments and Orders API" +msgstr "Klik %1$shier%2$s voor meer informatie over de verschillen tussen de Betalings-API en Orders API" -#: build/inc/settings/mollie_advanced_settings.php:109 -#: inc/settings/mollie_advanced_settings.php:109 +#: ../inc/settings/mollie_advanced_settings.php:124 msgid "API Payment Description" -msgstr "Beschrijving Betalingen API" +msgstr "Beschrijving Betalings-API" -#: build/inc/settings/mollie_advanced_settings.php:137 -#: inc/settings/mollie_advanced_settings.php:137 +#: ../inc/settings/mollie_advanced_settings.php:141 msgctxt "Payment description options" msgid "Available variables" msgstr "Beschikbare variabelen" -#: build/inc/settings/mollie_advanced_settings.php:160 -#: inc/settings/mollie_advanced_settings.php:160 -msgid "" -"Select among the available variables the description to be used for this " -"transaction.%s(Note: this only works when the method is set to Payments " -"API)%s" -msgstr "" -"Kies uit de beschikbare variabelen de beschrijving die je voor deze " -"transactie wilt gebruiken.%sLet op: dit werkt alleen als de methode is " -"ingesteld op Betalingen API).%s" +#. translators: Placeholder 1: Opening paragraph tag, placeholder 2: Closing paragraph tag +#: ../inc/settings/mollie_advanced_settings.php:166 +msgid "Select among the available variables the description to be used for this transaction.%1$s(Note: this only works when the method is set to Payments API)%2$s" +msgstr "Kies uit de beschikbare variabelen de beschrijving die je voor deze transactie wilt gebruiken.%1$s(Let op: dit werkt alleen als de methode is ingesteld op Betalings-API)%2$s" -#: build/inc/settings/mollie_advanced_settings.php:134 -#: inc/settings/mollie_advanced_settings.php:134 +#: ../inc/settings/mollie_advanced_settings.php:177 msgid "Surcharge gateway fee label" -msgstr "Prijstoeslag gateway kostenlabel" +msgstr "Prijstoeslag gateway vergoedingslabel" -#: build/inc/settings/mollie_advanced_settings.php:140 -#: inc/settings/mollie_advanced_settings.php:140 +#: ../inc/settings/mollie_advanced_settings.php:183, ../src/Gateway/Surcharge.php:36 msgid "Gateway Fee" -msgstr "Gatewaykosten" +msgstr "Gateway vergoeding" -#: build/inc/settings/mollie_advanced_settings.php:142 -#: inc/settings/mollie_advanced_settings.php:142 +#: ../inc/settings/mollie_advanced_settings.php:185 msgid "This is the label will appear in frontend when the surcharge applies" -msgstr "" -"Dit is het label dat in de interface verschijnt wanneer de prijstoeslag van " -"toepassing is" +msgstr "Dit is het label dat verschijnt in de interface wanneer de prijstoeslag van toepassing is" -#: inc/settings/mollie_advanced_settings.php:194 +#: ../inc/settings/mollie_advanced_settings.php:193 msgid "Remove Mollie data from Database on uninstall" msgstr "Verwijder Mollie gegevens uit database bij deïnstallatie" -#: inc/settings/mollie_advanced_settings.php:199 -msgid "" -"Remove options and scheduled actions from database when uninstalling the " -"plugin." -msgstr "" -"Verwijder opties en geplande acties uit de database bij het deïnstalleren " -"van de plugin." +#: ../inc/settings/mollie_advanced_settings.php:199 +msgid "Remove options and scheduled actions from database when uninstalling the plugin." +msgstr "Verwijder opties en geplande acties uit de database bij het deïnstalleren van de plugin." + +#: ../inc/settings/mollie_advanced_settings.php:200 +msgid "Clear now" +msgstr "Nu wissen" -#: build/inc/settings/mollie_applepay_settings.php:14 -#: inc/settings/mollie_applepay_settings.php:14 +#: ../inc/settings/mollie_applepay_settings.php:12, ../src/PaymentMethods/Applepay.php:13 +msgid "Apple Pay" +msgstr "Apple Pay" + +#: ../inc/settings/mollie_applepay_settings.php:14 msgid "The following options are required to use the Apple Pay gateway" -msgstr "" -"De volgende opties zijn verplicht voor het gebruik van de Apple Pay gateway" +msgstr "De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay gateway" -#: build/inc/settings/mollie_applepay_settings.php:19 -#: build/src/Mollie/WC/Helper/Settings.php:48 -#: inc/settings/mollie_applepay_settings.php:19 -#: src/Mollie/WC/Helper/Settings.php:48 +#: ../inc/settings/mollie_applepay_settings.php:19, ../src/Settings/General/MollieGeneralSettings.php:18 msgid "Enable/Disable" msgstr "Activeren/Deactiveren" -#. translators: Placeholder 1: enabled or disabled -#: build/inc/settings/mollie_applepay_settings.php:21 -#: build/src/Mollie/WC/Helper/Settings.php:54 -#: inc/settings/mollie_applepay_settings.php:21 -#: src/Mollie/WC/Helper/Settings.php:54 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:21, ../src/Settings/General/MollieGeneralSettings.php:25 msgid "Enable %s" msgstr "Geactiveerd %s" -#: build/inc/settings/mollie_applepay_settings.php:29 -#: build/src/Mollie/WC/Helper/Settings.php:68 -#: inc/settings/mollie_applepay_settings.php:29 -#: src/Mollie/WC/Helper/Settings.php:68 +#: ../inc/settings/mollie_applepay_settings.php:29, ../src/Settings/General/MollieGeneralSettings.php:38 msgid "Title" msgstr "Titel" -#: build/inc/settings/mollie_applepay_settings.php:32 -#: build/src/Mollie/WC/Helper/Settings.php:71 -#: inc/settings/mollie_applepay_settings.php:32 -#: src/Mollie/WC/Helper/Settings.php:71 -msgid "" -"This controls the title which the user sees during checkout. Default " -"%s" -msgstr "" -"Dit controleert de titel die de gebruiker ziet tijdens het betalen. " -"Standaard %s" - -#: build/inc/settings/mollie_applepay_settings.php:45 -#: build/inc/settings/mollie_applepay_settings.php:48 -#: build/src/Mollie/WC/Helper/Settings.php:94 -#: inc/settings/mollie_applepay_settings.php:45 -#: inc/settings/mollie_applepay_settings.php:48 -#: src/Mollie/WC/Helper/Settings.php:94 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:32, ../src/Settings/General/MollieGeneralSettings.php:42 +msgid "This controls the title which the user sees during checkout. Default %s" +msgstr "Dit controleert de titel die de gebruiker ziet tijdens het betalen. Standaard %s" + +#: ../inc/settings/mollie_applepay_settings.php:46, ../inc/settings/mollie_applepay_settings.php:48, ../src/Settings/General/MollieGeneralSettings.php:66 msgid "Display logo" msgstr "Toon logo" -#: build/inc/settings/mollie_applepay_settings.php:60 -#: build/src/Mollie/WC/Helper/Settings.php:81 -#: inc/settings/mollie_applepay_settings.php:60 -#: src/Mollie/WC/Helper/Settings.php:81 +#: ../inc/settings/mollie_applepay_settings.php:61, ../src/Settings/General/MollieGeneralSettings.php:52 msgid "Description" msgstr "Beschrijving" -#: build/inc/settings/mollie_applepay_settings.php:63 -#: build/src/Mollie/WC/Helper/Settings.php:84 -#: inc/settings/mollie_applepay_settings.php:63 -#: src/Mollie/WC/Helper/Settings.php:84 -msgid "" -"Payment method description that the customer will see on your checkout. " -"Default %s" -msgstr "" -"Beschrijving van de betaalmethode die de klant bij je betaalpagina zal zien. " -"Standaard %s" +#. translators: Placeholder 1: Gateway description +#: ../inc/settings/mollie_applepay_settings.php:64, ../src/Settings/General/MollieGeneralSettings.php:56 +msgid "Payment method description that the customer will see on your checkout. Default %s" +msgstr "Beschrijving van de betaalmethode die de klant bij je betaalpagina zal zien. Standaard %s" -#: build/inc/settings/mollie_applepay_settings.php:79 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:6 -#: inc/settings/mollie_applepay_settings.php:79 -#: inc/settings/mollie_apple_pay_button_enabler.php:6 +#: ../inc/settings/mollie_applepay_settings.php:81 msgid "Apple Pay button settings" -msgstr "Instellingen Apple Pay knop" +msgstr "Instellingen van Apple Pay knop" -#: build/inc/settings/mollie_applepay_settings.php:84 -#: inc/settings/mollie_applepay_settings.php:84 +#: ../inc/settings/mollie_applepay_settings.php:86 msgid "The following options are required to use the Apple Pay Direct Button" -msgstr "" -"De volgende opties zijn verplicht voor het gebruik van de Apple Pay direct-" -"betalen-knop" +msgstr "De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay Direct knop" -#: build/inc/settings/mollie_applepay_settings.php:88 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:18 -#: inc/settings/mollie_applepay_settings.php:88 -#: inc/settings/mollie_apple_pay_button_enabler.php:18 +#: ../inc/settings/mollie_applepay_settings.php:90, ../src/PaymentMethods/Applepay.php:34 msgid "Enable Apple Pay Button on Cart page" msgstr "Activeer de Apple Pay knop op de winkelwagenpagina" -#: build/inc/settings/mollie_applepay_settings.php:91 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:21 -#: inc/settings/mollie_applepay_settings.php:91 -#: inc/settings/mollie_apple_pay_button_enabler.php:21 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:93, ../src/PaymentMethods/Applepay.php:36 msgid "Enable the Apple Pay direct buy button on the Cart page" -msgstr "Activeer de Apple Pay direct-kopen-knop op de winkelwagenpagina" +msgstr "Activeer de Apple Pay Direct betaalknop op de winkelwagenpagina" -#: build/inc/settings/mollie_applepay_settings.php:103 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:29 -#: inc/settings/mollie_applepay_settings.php:103 -#: inc/settings/mollie_apple_pay_button_enabler.php:29 +#: ../inc/settings/mollie_applepay_settings.php:106, ../src/PaymentMethods/Applepay.php:44 msgid "Enable Apple Pay Button on Product page" msgstr "Activeer de Apple Pay knop op de productpagina" -#: build/inc/settings/mollie_applepay_settings.php:106 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:32 -#: inc/settings/mollie_applepay_settings.php:106 -#: inc/settings/mollie_apple_pay_button_enabler.php:32 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:109, ../src/PaymentMethods/Applepay.php:46 msgid "Enable the Apple Pay direct buy button on the Product page" -msgstr "Activeer de Apple Pay direct-kopen-knop op de productpagina" - -#: build/inc/settings/mollie_apple_pay_button_enabler.php:11 -#: inc/settings/mollie_apple_pay_button_enabler.php:11 -msgid "The following options are required to use the Apple Pay button" -msgstr "De volgende opties zijn vereist om de Apple Pay knop te gebruiken" +msgstr "Activeer de Apple Pay Direct betaalknop op de productpagina" -#: build/inc/settings/mollie_components.php:7 -#: inc/settings/mollie_components.php:7 +#: ../inc/settings/mollie_components.php:9 msgctxt "Mollie Components Settings" msgid "Base Styles" msgstr "Basisstijlen" -#: build/inc/settings/mollie_components.php:16 -#: build/inc/settings/mollie_components.php:156 -#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156 +#: ../inc/settings/mollie_components.php:18, ../inc/settings/mollie_components.php:158 msgctxt "Mollie Components Settings" msgid "Background Color" msgstr "Achtergrondkleur" -#: build/inc/settings/mollie_components.php:22 -#: build/inc/settings/mollie_components.php:145 -#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145 +#: ../inc/settings/mollie_components.php:24, ../inc/settings/mollie_components.php:147 msgctxt "Mollie Components Settings" msgid "Text Color" msgstr "Tekstkleur" -#: build/inc/settings/mollie_components.php:28 -#: inc/settings/mollie_components.php:28 +#: ../inc/settings/mollie_components.php:30 msgctxt "Mollie Components Settings" msgid "Placeholder Color" msgstr "Kleur van de plaatshouder" -#: build/inc/settings/mollie_components.php:34 -#: inc/settings/mollie_components.php:34 +#: ../inc/settings/mollie_components.php:36 msgctxt "Mollie Components Settings" msgid "Font Size" msgstr "Lettergrootte" -#: build/inc/settings/mollie_components.php:35 -#: inc/settings/mollie_components.php:35 +#: ../inc/settings/mollie_components.php:37 msgctxt "Mollie Components Settings" msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'." -msgstr "" -"Bepaalt de lettergrootte van het component. Toegestane eenheden: 'em', 'px', " -"'rem'." +msgstr "Bepaalt de lettergrootte van het component. Toegestane eenheden: 'em', 'px', 'rem'." -#: build/inc/settings/mollie_components.php:45 -#: inc/settings/mollie_components.php:45 +#: ../inc/settings/mollie_components.php:47 msgctxt "Mollie Components Settings" msgid "Font Weight" msgstr "Lettergewicht" -#: build/inc/settings/mollie_components.php:48 -#: inc/settings/mollie_components.php:48 +#: ../inc/settings/mollie_components.php:50 msgctxt "Mollie Components Settings" msgid "Lighter" msgstr "Lichter" -#: build/inc/settings/mollie_components.php:49 -#: inc/settings/mollie_components.php:49 +#: ../inc/settings/mollie_components.php:51 msgctxt "Mollie Components Settings" msgid "Regular" msgstr "Standaard" -#: build/inc/settings/mollie_components.php:50 -#: inc/settings/mollie_components.php:50 +#: ../inc/settings/mollie_components.php:52 msgctxt "Mollie Components Settings" msgid "Bold" msgstr "Vet" -#: build/inc/settings/mollie_components.php:56 -#: inc/settings/mollie_components.php:56 +#: ../inc/settings/mollie_components.php:58 msgctxt "Mollie Components Settings" msgid "Letter Spacing" msgstr "Letterafstand" -#: build/inc/settings/mollie_components.php:62 -#: inc/settings/mollie_components.php:62 +#: ../inc/settings/mollie_components.php:64 msgctxt "Mollie Components Settings" msgid "Line Height" msgstr "Regelhoogte" -#: build/inc/settings/mollie_components.php:71 -#: inc/settings/mollie_components.php:71 +#: ../inc/settings/mollie_components.php:73 msgctxt "Mollie Components Settings" msgid "Padding" msgstr "Vulling" -#: build/inc/settings/mollie_components.php:72 -#: inc/settings/mollie_components.php:72 +#: ../inc/settings/mollie_components.php:74 msgctxt "Mollie Components Settings" -msgid "" -"Add padding to the components. Allowed units include `16px 16px 16px 16px` " -"and `em`, `px`, `rem`." -msgstr "" -"Voeg vulling toe aan de componenten. Tot de toegestane eenheden behoren " -"'16px 16px 16px 16px' en 'em', 'px', 'rem'." +msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`." +msgstr "Voeg vulling toe aan de componenten. Tot de toegestane eenheden behoren '16px 16px 16px 16px' en 'em', 'px', 'rem'." -#: build/inc/settings/mollie_components.php:82 -#: inc/settings/mollie_components.php:82 +#: ../inc/settings/mollie_components.php:84 msgctxt "Mollie Components Settings" msgid "Align Text" msgstr "Lijn tekst uit" -#: build/inc/settings/mollie_components.php:85 -#: inc/settings/mollie_components.php:85 +#: ../inc/settings/mollie_components.php:87 msgctxt "Mollie Components Settings" msgid "Left" msgstr "Links" -#: build/inc/settings/mollie_components.php:86 -#: inc/settings/mollie_components.php:86 +#: ../inc/settings/mollie_components.php:88 msgctxt "Mollie Components Settings" msgid "Right" msgstr "Rechts" -#: build/inc/settings/mollie_components.php:87 -#: inc/settings/mollie_components.php:87 +#: ../inc/settings/mollie_components.php:89 msgctxt "Mollie Components Settings" msgid "Center" msgstr "Centreren" -#: build/inc/settings/mollie_components.php:88 -#: inc/settings/mollie_components.php:88 +#: ../inc/settings/mollie_components.php:90 msgctxt "Mollie Components Settings" msgid "Justify" msgstr "Uitvullen" -#: build/inc/settings/mollie_components.php:94 -#: inc/settings/mollie_components.php:94 +#: ../inc/settings/mollie_components.php:96 msgctxt "Mollie Components Settings" msgid "Transform Text " msgstr "Wijzig tekst " -#: build/inc/settings/mollie_components.php:97 -#: inc/settings/mollie_components.php:97 +#: ../inc/settings/mollie_components.php:99 msgctxt "Mollie Components Settings" msgid "None" msgstr "Geen" -#: build/inc/settings/mollie_components.php:102 -#: inc/settings/mollie_components.php:102 +#: ../inc/settings/mollie_components.php:104 msgctxt "Mollie Components Settings" msgid "Capitalize" msgstr "In hoofdletters schrijven" -#: build/inc/settings/mollie_components.php:107 -#: inc/settings/mollie_components.php:107 +#: ../inc/settings/mollie_components.php:109 msgctxt "Mollie Components Settings" msgid "Uppercase" msgstr "Hoofdletters" -#: build/inc/settings/mollie_components.php:112 -#: inc/settings/mollie_components.php:112 +#: ../inc/settings/mollie_components.php:114 msgctxt "Mollie Components Settings" msgid "Lowercase" msgstr "Kleine letters" -#: build/inc/settings/mollie_components.php:117 -#: inc/settings/mollie_components.php:117 +#: ../inc/settings/mollie_components.php:119 msgctxt "Mollie Components Settings" msgid "Full Width" msgstr "Volledige breedte" -#: build/inc/settings/mollie_components.php:122 -#: inc/settings/mollie_components.php:122 +#: ../inc/settings/mollie_components.php:124 msgctxt "Mollie Components Settings" msgid "Full Size Kana" msgstr "Volledige grootte Kana" -#: build/inc/settings/mollie_components.php:136 -#: inc/settings/mollie_components.php:136 +#: ../inc/settings/mollie_components.php:138 msgctxt "Mollie Components Settings" msgid "Invalid Status Styles" msgstr "Ongeldige statusstijlen" -#: build/inc/settings/mollie_components.php:146 -#: inc/settings/mollie_components.php:146 +#: ../inc/settings/mollie_components.php:148 msgctxt "Mollie Components Settings" msgid "Text Color for invalid input." msgstr "Tekstkleur voor ongeldige invoer" -#: build/inc/settings/mollie_components.php:157 -#: inc/settings/mollie_components.php:157 +#: ../inc/settings/mollie_components.php:159 msgctxt "Mollie Components Settings" msgid "Background Color for invalid input." msgstr "Achtergrondkleur voor ongeldige invoer" -#: build/inc/settings/mollie_components_enabler.php:6 -#: inc/settings/mollie_components_enabler.php:6 -msgid "Enable Mollie Components" -msgstr "Activeer Mollie-componenten" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to settings. Placeholder 4: Closing link tag. +#: ../src/Activation/ActivationModule.php:167 +msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s." +msgstr "%1$sMollie-betalingen voor WooCommerce: API-sleutels ontbreken%2$s Gelieve%3$s je API-sleutels hier in te stellen%4$s." -#: build/inc/settings/mollie_components_enabler.php:8 -#: inc/settings/mollie_components_enabler.php:8 -msgid "" -"Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." -msgstr "" -"Gebruik de Mollie-componenten voor deze gateway. Lees meer over %s en hoe het je conversie verbetert." - -#: build/inc/settings/mollie_components_enabler.php:12 -#: build/src/Mollie/WC/Settings/Page/Components.php:10 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:139 -#: inc/settings/mollie_components_enabler.php:12 -#: src/Mollie/WC/Settings/Page/Components.php:10 -#: src/Mollie/WC/Settings/Page/Mollie.php:139 -msgid "Mollie Components" -msgstr "Mollie-componenten" +#: ../src/Activation/ConstraintsChecker.php:109 +msgid "%1$sMollie Payments for WooCommerce is inactive:%2$s" +msgstr "%1$sMollie-betalingen voor WooCommerce is niet actief:%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:5 -#: inc/settings/mollie_creditcard_icons_selector.php:5 -msgid "Customize Icons" -msgstr "Pas pictogrammen aan" +#: ../src/Activation/ConstraintsChecker.php:113 +msgid "%1$sCorrect the above errors to use Mollie Payments for Woocommerce%2$s" +msgstr "%1$sCorrigeer de bovenstaande fouten om Mollie-betalingen voor WooCommerce te gebruiken%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:12 -#: inc/settings/mollie_creditcard_icons_selector.php:12 -msgid "Enable Icons Selector" -msgstr "Activeer pictogram keuzemogelijkheid" +#: ../src/Assets/AssetsModule.php:432 +msgid "Name on card" +msgstr "Naam op de kaart" -#: build/inc/settings/mollie_creditcard_icons_selector.php:13 -#: inc/settings/mollie_creditcard_icons_selector.php:13 -msgid "Show customized creditcard icons on checkout page" -msgstr "Laat aangepaste creditcardpictogrammen op de checkout pagina zien" +#: ../src/Assets/AssetsModule.php:436 +msgid "Card number" +msgstr "Kaartnummer" -#: build/inc/settings/mollie_creditcard_icons_selector.php:21 -#: inc/settings/mollie_creditcard_icons_selector.php:21 -msgid "Show American Express Icon" -msgstr "Laat American Express pictogram zien" +#: ../src/Assets/AssetsModule.php:440 +msgid "Expiry date" +msgstr "Vervaldatum" -#: build/inc/settings/mollie_creditcard_icons_selector.php:26 -#: inc/settings/mollie_creditcard_icons_selector.php:26 -msgid "Show Carta Si Icon" -msgstr "Laat Carta Si pictogram zien" +#: ../src/Assets/AssetsModule.php:444 +msgid "CVC/CVV" +msgstr "CVC/CVV" -#: build/inc/settings/mollie_creditcard_icons_selector.php:31 -#: inc/settings/mollie_creditcard_icons_selector.php:31 -msgid "Show Carte Bancaire Icon" -msgstr "Laat Carte Bancaire pictogram zien" +#: ../src/Assets/AssetsModule.php:451 +msgid "An unknown error occurred, please check the card fields." +msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden." -#: build/inc/settings/mollie_creditcard_icons_selector.php:36 -#: inc/settings/mollie_creditcard_icons_selector.php:36 -msgid "Show Maestro Icon" -msgstr "Laat Maestro pictogram zien" +#: ../src/Assets/AssetsModule.php:521 +msgid "Please choose a billing country to see the available payment methods" +msgstr "Kies een factureringsland om de beschikbare betaalmethoden te zien" -#: build/inc/settings/mollie_creditcard_icons_selector.php:41 -#: inc/settings/mollie_creditcard_icons_selector.php:41 -msgid "Show Mastercard Icon" -msgstr "Laat Mastercard pictogram zien" +#: ../src/Assets/AssetsModule.php:570 +msgid "No custom logo selected" +msgstr "Geen aangepast logo gekozen" -#: build/inc/settings/mollie_creditcard_icons_selector.php:46 -#: inc/settings/mollie_creditcard_icons_selector.php:46 -msgid "Show Visa Icon" -msgstr "Laat Visa pictogram zien" +#: ../src/Gateway/MolliePaymentGateway.php:271, ../src/Settings/Page/MollieSettingsPage.php:313 +msgid "Test mode enabled." +msgstr "Testmodus geactiveerd." -#: build/inc/settings/mollie_creditcard_icons_selector.php:51 -#: inc/settings/mollie_creditcard_icons_selector.php:51 -msgid "Show VPay Icon" -msgstr "Laat VPay pictogram zien" +#. translators: The surrounding %s's Will be replaced by a link to the global setting page +#: ../src/Gateway/MolliePaymentGateway.php:276 +msgid "No API key provided. Please %1$sset you Mollie API key%2$s first." +msgstr "Geen API-sleutel verschaft. Plaats %1$sje Mollie API-sleutel%2$s eerst." -#: build/inc/settings/mollie_paypal_button_enabler.php:7 -#: inc/settings/mollie_paypal_button_enabler.php:7 -msgid "PayPal button display settings" -msgstr "PayPal knop weergave-instellingen" +#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Gateway/MolliePaymentGateway.php:291 +msgid "%1$s not enabled in your Mollie profile. You can enable it by editing your %2$sMollie profile%3$s." +msgstr "%1$s niet geactiveerd in je Mollie-profiel. Je kan het activeren door je %2$sMollie-profiel%3$s te bewerken." -#: build/inc/settings/mollie_paypal_button_enabler.php:12 -#: inc/settings/mollie_paypal_button_enabler.php:12 -msgid "" -"%1sThe PayPal button is optimized for digital goods. And will only appear if " -"the product has no shipping. %2sThe customer's address information can only " -"be retrieved if the transaction has been done with the %3sOrders API%4s.%5s" -"%6s" -msgstr "" -"%1sDe PayPal knop is geoptimaliseerd voor digitale goederen. Hij verschijnt " -"alleen wanneer het product niet wordt verzonden. %2sDe adresgegevens van de " -"klant kunnen alleen worden verkregen wanneer de transactie werd uitgevoerd " -"met de %3sBestellingen API%4s.%5s%6s" +#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies +#: ../src/Gateway/MolliePaymentGateway.php:306 +msgid "Current shop currency %1$s not supported by Mollie. Read more about %2$ssupported currencies and payment methods.%3$s " +msgstr "Huidige shopvaluta %1$s niet ondersteund door Mollie. Lees meer over %2$sondersteunde valuta's en betaalmethoden.%3$s " -#: build/inc/settings/mollie_paypal_button_enabler.php:19 -#: inc/settings/mollie_paypal_button_enabler.php:19 -msgid "Display on cart page" -msgstr "Laat zien op de winkelwagenpagina" +#: ../src/Gateway/MolliePaymentGateway.php:577 +msgid "You have cancelled your payment. Please complete your order with a different payment method." +msgstr "Je hebt je betaling geannuleerd. Vervolledig je bestelling met een andere betaalmethode." -#: build/inc/settings/mollie_paypal_button_enabler.php:23 -#: inc/settings/mollie_paypal_button_enabler.php:23 -msgid "Enable the PayPal button to be used in the cart page." -msgstr "Schakel de PayPal knop in om deze te gebruiken op de productpagina." +#: ../src/Gateway/MolliePaymentGateway.php:597, ../src/Gateway/MolliePaymentGateway.php:611 +msgid "Your payment was not successful. Please complete your order with a different payment method." +msgstr "Je betaling is niet gelukt. Vervolledig je bestelling met een andere betaalmethode." -#: build/inc/settings/mollie_paypal_button_enabler.php:31 -#: inc/settings/mollie_paypal_button_enabler.php:31 -msgid "Display on product page" -msgstr "Laat zien op de productpagina" +#: ../src/Gateway/MolliePaymentGateway.php:647 +msgid "Could not load order %s" +msgstr "Kon bestelling %s niet laden" -#: build/inc/settings/mollie_paypal_button_enabler.php:35 -#: inc/settings/mollie_paypal_button_enabler.php:35 -msgid "Enable the PayPal button to be used in the product page." -msgstr "Schakel de PayPal knop in om te gebruiken op de productpagina." +#: ../src/Gateway/MolliePaymentGateway.php:906 +msgid "Order cancelled" +msgstr "Bestelling geannuleerd" -#: build/inc/settings/mollie_paypal_button_enabler.php:44 -#: inc/settings/mollie_paypal_button_enabler.php:44 -msgctxt "Mollie PayPal Button Settings" -msgid "Button text language and color" -msgstr "Knop tekst taal en kleur" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Gateway/MolliePaymentGateway.php:943 +msgid "%1$s payment still pending (%2$s) but customer already returned to the store. Status should be updated automatically in the future, if it doesn't this might indicate a communication issue between the site and Mollie." +msgstr "%1$s betaling nog hangende (%2$s) maar klant is reeds teruggekeerd naar de shop. Status moet in de toekomst automatisch worden bijgewerkt, als dat niet gebeurt, kan dit wijzen op een communicatieprobleem tussen de site en Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:46 -#: inc/settings/mollie_paypal_button_enabler.php:46 -msgctxt "Mollie PayPal Button Settings" -msgid "Select the text and the colour of the button." -msgstr "Kies de tekst en de kleur van de knop." +#: ../src/Gateway/MolliePaymentGateway.php:949, ../src/Payment/MollieObject.php:687, ../src/Payment/MollieObject.php:655, ../src/Payment/MollieOrder.php:275, ../src/Payment/MollieOrder.php:332, ../src/Payment/MollieOrder.php:377, ../src/Payment/MollieOrder.php:459, ../src/Payment/MollieOrder.php:522, ../src/Payment/MollieOrder.php:941, ../src/Payment/MollieOrderService.php:165, ../src/Payment/MollieOrderService.php:428, ../src/Payment/MollieOrderService.php:491, ../src/Payment/MollieOrderService.php:705, ../src/Payment/MolliePayment.php:223, ../src/Payment/MolliePayment.php:310, ../src/Payment/MolliePayment.php:379, ../src/Payment/MolliePayment.php:402, ../src/Payment/PaymentService.php:788, ../src/Subscription/MollieSepaRecurringGateway.php:138, ../src/Subscription/MollieSepaRecurringGateway.php:205, ../src/Subscription/MollieSubscriptionGateway.php:470 +msgid "test mode" +msgstr "testmodus" -#: build/inc/settings/mollie_paypal_button_enabler.php:54 -#: inc/settings/mollie_paypal_button_enabler.php:54 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill blue" -msgstr "Engels -- Kopen met PayPal - pilvormig blauw" +#: ../src/Gateway/MolliePaymentGateway.php:964 +msgid ", payment pending." +msgstr ", betaling in behandeling." -#: build/inc/settings/mollie_paypal_button_enabler.php:55 -#: inc/settings/mollie_paypal_button_enabler.php:55 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded blue" -msgstr "Engels -- Kopen met PayPal - afgeronde hoeken blauw" +#: ../src/Gateway/MolliePaymentGateway.php:996 +msgid "Your order has been cancelled." +msgstr "Je bestelling is geannuleerd." -#: build/inc/settings/mollie_paypal_button_enabler.php:56 -#: inc/settings/mollie_paypal_button_enabler.php:56 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill golden" -msgstr "Engels -- Kopen met PayPal - pilvormig goud" +#: ../src/Gateway/Surcharge.php:81 +msgid "A surchage fee might apply" +msgstr "Er kan een prijstoeslag van toepassing zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:57 -#: inc/settings/mollie_paypal_button_enabler.php:57 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded golden" -msgstr "Engels -- Kopen met PayPal - afgeronde hoeken goud" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. +#: ../src/Gateway/Surcharge.php:275 +msgid " + %1$s %2$s fee might apply" +msgstr " + %1$s %2$s prijstoeslag kan van toepassing zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:58 -#: inc/settings/mollie_paypal_button_enabler.php:58 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill gray" -msgstr "Engels -- Kopen met PayPal - pilvormig grijs" +#. translators: Placeholder 1: Fee amount tag. +#: ../src/Gateway/Surcharge.php:292 +msgid " + %1$s%% fee might apply" +msgstr " + %1$s%% prijstoeslag kan van toepassing zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:59 -#: inc/settings/mollie_paypal_button_enabler.php:59 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded gray" -msgstr "Engels -- Kopen met PayPal - afgeronde hoeken grijs" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. +#: ../src/Gateway/Surcharge.php:315 +msgid " + %1$s %2$s + %3$s%% fee might apply" +msgstr " + %1$s %2$s + %3$s%% prijstoeslag kan van toepassing zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:60 -#: inc/settings/mollie_paypal_button_enabler.php:60 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill white" -msgstr "Engels -- Kopen met PayPal - pilvormig wit" +#: ../src/Gateway/Surcharge.php:348 +msgid " (incl. VAT)" +msgstr " (incl. btw)" -#: build/inc/settings/mollie_paypal_button_enabler.php:61 -#: inc/settings/mollie_paypal_button_enabler.php:61 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded white" -msgstr "Engels -- Kopen met PayPal - afgeronde hoeken wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:682 +msgid "%1$s payment failed via Mollie (%2$s)." +msgstr "%1$s betaling mislukt via Mollie (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:62 -#: inc/settings/mollie_paypal_button_enabler.php:62 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill black" -msgstr "Engels -- Betalen met PayPal - pilvormig zwart" +#: ../src/Payment/MollieObject.php:650 +msgid "%1$s renewal payment failed via Mollie (%2$s). You will need to manually review the payment and adjust product stocks if you use them." +msgstr "%1$s vernieuwing van betaling mislukt via Mollie (%2$s). Je moet de betaling handmatig controleren en productvoorraden aanpassen als je deze gebruikt." -#: build/inc/settings/mollie_paypal_button_enabler.php:63 -#: inc/settings/mollie_paypal_button_enabler.php:63 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded black" -msgstr "Engels -- Betalen met PayPal - afgeronde hoeken zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:721 +msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated." +msgstr "Mollie-webhook is gebeld, maar betaling is ook gestart via %s, dus de bestelstatus is niet bijgewerkt." -#: build/inc/settings/mollie_paypal_button_enabler.php:64 -#: inc/settings/mollie_paypal_button_enabler.php:64 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill blue" -msgstr "Engels -- Betalen met PayPal - pilvormig blauw" +#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID +#: ../src/Payment/MollieObject.php:740, ../src/PaymentMethods/InstructionStrategies/PaypalInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (PayPal transaction ID: %3$s)" +msgstr "Betaling voltooid door %1$s - %2$s (PayPal transactie-ID: %3$s)" -#: build/inc/settings/mollie_paypal_button_enabler.php:65 -#: inc/settings/mollie_paypal_button_enabler.php:65 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded blue" -msgstr "Engels -- Betalen met PayPal - afgeronde hoeken blauw" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:881 +msgctxt "Payment description for {orderNumber}" +msgid "Order {orderNumber}" +msgstr "Bestelling {bestelnummer}" -#: build/inc/settings/mollie_paypal_button_enabler.php:66 -#: inc/settings/mollie_paypal_button_enabler.php:66 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill golden" -msgstr "Engels -- Betalen met PayPal - pilvormig goud" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:891 +msgctxt "Payment description for {storeName}" +msgid "StoreName {storeName}" +msgstr "WinkelNaam {winkelNaam}" -#: build/inc/settings/mollie_paypal_button_enabler.php:67 -#: inc/settings/mollie_paypal_button_enabler.php:67 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded golden" -msgstr "Engels -- Betalen met PayPal - afgeronde hoeken goud" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:901 +msgctxt "Payment description for {customer.firstname}" +msgid "Customer Firstname {customer.firstname}" +msgstr "Klant voornaam {klant.voornaam}" -#: build/inc/settings/mollie_paypal_button_enabler.php:68 -#: inc/settings/mollie_paypal_button_enabler.php:68 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill gray" -msgstr "Engels -- Betalen met PayPal - pilvormig grijs" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:911 +msgctxt "Payment description for {customer.lastname}" +msgid "Customer Lastname {customer.lastname}" +msgstr "Klant achternaam {klant.achternaam}" -#: build/inc/settings/mollie_paypal_button_enabler.php:69 -#: inc/settings/mollie_paypal_button_enabler.php:69 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded gray" -msgstr "Engels -- Betalen met PayPal - afgeronde hoeken grijs" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:921 +msgctxt "Payment description for {customer.company}" +msgid "Customer Company {customer.company}" +msgstr "Klant bedrijf {klant.bedrijf}" -#: build/inc/settings/mollie_paypal_button_enabler.php:70 -#: inc/settings/mollie_paypal_button_enabler.php:70 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill white" -msgstr "Engels -- Betalen met PayPal - pilvormig wit" +#: ../src/Payment/MollieObject.php:936 +msgid "Order" +msgstr "Bestelling" -#: build/inc/settings/mollie_paypal_button_enabler.php:71 -#: inc/settings/mollie_paypal_button_enabler.php:71 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded white" -msgstr "Engels -- Betalen met PayPal - afgeronde hoeken wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:271, ../src/Payment/MolliePayment.php:221, ../src/Subscription/MollieSepaRecurringGateway.php:211 +msgid "Order completed using %1$s payment (%2$s)." +msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:72 -#: inc/settings/mollie_paypal_button_enabler.php:72 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill black" -msgstr "Nederlands -- Kopen met PayPal - pilvormig zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:330 +msgid "Order authorized using %1$s payment (%2$s). Set order to completed in WooCommerce when you have shipped the products, to capture the payment. Do this within 28 days, or the order will expire. To handle individual order lines, process the order via the Mollie Dashboard." +msgstr "Bestelling geautoriseerd met gebruik van %1$s betaling (%2$s). Om de betaling te ontvangen, moet je na het verzenden van de producten de bestelling in WooCommerce als voltooid markeren. Doe dit binnen 28 dagen, anders verloopt de bestelling. Voor het afhandelen van afzonderlijke bestelregels, moet je de bestelling via het Mollie Dashboard verwerken." -#: build/inc/settings/mollie_paypal_button_enabler.php:73 -#: inc/settings/mollie_paypal_button_enabler.php:73 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded black" -msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:375 +msgid "Order completed at Mollie for %1$s order (%2$s). At least one order line completed. Remember: Completed status for an order at Mollie is not the same as Completed status in WooCommerce!" +msgstr "Bestelling voltooid bij Mollie voor %1$s bestelling (%2$s). Ten minste één bestellijn voltooid. Denk eraan: Voltooide status voor een bestelling bij Mollie is niet hetzelfde als Voltooide status in WooCommerce!" -#: build/inc/settings/mollie_paypal_button_enabler.php:74 -#: inc/settings/mollie_paypal_button_enabler.php:74 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill blue" -msgstr "Nederlands -- Kopen met PayPal - pilvormig blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:457 +msgid "%1$s order (%2$s) cancelled ." +msgstr "%1$s bestelling (%2$s) geannuleerd." -#: build/inc/settings/mollie_paypal_button_enabler.php:75 -#: inc/settings/mollie_paypal_button_enabler.php:75 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded blue" -msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:520 +msgid "%1$s order expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s bestelling verlopen (%2$s) maar niet geannuleerd wegens een andere hangende betaling (%3$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:76 -#: inc/settings/mollie_paypal_button_enabler.php:76 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill golden" -msgstr "Nederlands -- Kopen met PayPal - pilvormig goud" +#: ../src/Payment/MollieOrder.php:616 +msgctxt "Order note error" +msgid "The sum of refunds for all order lines is not identical to the refund amount, so this refund will be processed as a payment amount refund, not an order line refund." +msgstr "De som van de terugbetalingen voor alle orderregels is niet identiek aan het terugbetalingsbedrag, waardoor deze terugbetaling zal worden verwerkt als een terugbetaling van het betalingsbedrag en niet als een terugbetaling van een orderregel." -#: build/inc/settings/mollie_paypal_button_enabler.php:77 -#: inc/settings/mollie_paypal_button_enabler.php:77 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded golden" -msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken goud" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. +#: ../src/Payment/MollieOrder.php:747 +msgid "%1$sx %2$s cancelled for %3$s%4$s in WooCommerce and at Mollie." +msgstr "%1$sx %2$s geannuleerd voor %3$s%4$s in WooCommerce en bij Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:78 -#: inc/settings/mollie_paypal_button_enabler.php:78 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill gray" -msgstr "Nederlands -- Kopen met PayPal - pilvormig grijs" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. Placeholder 5: Reason. Placeholder 6: Refund Id. +#: ../src/Payment/MollieOrder.php:763 +msgid "%1$sx %2$s refunded for %3$s%4$s in WooCommerce and at Mollie.%5$s Refund ID: %6$s." +msgstr "%1$sx %2$s terugbetaald voor %3$s%4$s in WooCommerce en bij Mollie.%5$s Terugbetalings-ID: %6$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:79 -#: inc/settings/mollie_paypal_button_enabler.php:79 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded gray" -msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken grijs" +#. translators: Placeholder 1: payment status. +#: ../src/Payment/MollieOrder.php:823 +msgctxt "Order note error" +msgid "Can not refund order amount that has status %1$s at Mollie." +msgstr "Kan bestelbedrag niet terugbetalen dat status %1$s heeft bij Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:80 -#: inc/settings/mollie_paypal_button_enabler.php:80 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill white" -msgstr "Nederlands -- Kopen met PayPal - pilvormig wit" +#. translators: Placeholder 1: Currency. Placeholder 2: Refund amount. Placeholder 3: Reason. Placeholder 4: Refund id. +#: ../src/Payment/MollieOrder.php:845 +msgid "Amount refund of %1$s%2$s refunded in WooCommerce and at Mollie.%3$s Refund ID: %4$s." +msgstr "Terugbetaling van %1$s%2$s terugbetaald in WooCommerce en bij Mollie.%3$s Terugbetalings-ID: %4$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:81 -#: inc/settings/mollie_paypal_button_enabler.php:81 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded white" -msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:936 +msgid "%1$s order (%2$s) expired ." +msgstr "%1$s bestelling (%2$s) verlopen." -#: build/inc/settings/mollie_paypal_button_enabler.php:82 -#: inc/settings/mollie_paypal_button_enabler.php:82 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill black" -msgstr "Nederlands -- Betalen met PayPal - pilvormig zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID +#: ../src/Payment/MollieOrderService.php:162 +msgid "%1$s payment %2$s (%3$s), not processed." +msgstr "%1$s betaling %2$s (%3$s), niet verwerkt." -#: build/inc/settings/mollie_paypal_button_enabler.php:83 -#: inc/settings/mollie_paypal_button_enabler.php:83 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded black" -msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken zwart" +#: ../src/Payment/MollieOrderService.php:391 +msgid "New chargeback %s processed! Order note and order status updated." +msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt." -#: build/inc/settings/mollie_paypal_button_enabler.php:84 -#: inc/settings/mollie_paypal_button_enabler.php:84 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill blue" -msgstr "Nederlands -- Betalen met PayPal - pilvormig blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:423 +msgid "%1$s payment charged back via Mollie (%2$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s betaling teruggevorderd via Mollie (%2$s). Je moet de betaling handmatig controleren (en productvoorraden aanpassen als je dit gebruikt)." -#: build/inc/settings/mollie_paypal_button_enabler.php:85 -#: inc/settings/mollie_paypal_button_enabler.php:85 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded blue" -msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:485 +msgid "%1$s payment charged back via Mollie (%2$s). Subscription status updated, please review (and adjust product stocks if you use it)." +msgstr "%1$s betaling teruggevorderd via Mollie (%2$s). Abonnementstatus geüpdatet, gelieve te beoordelen (en productvoorraden aan te passen als je dit gebruikt)." -#: build/inc/settings/mollie_paypal_button_enabler.php:86 -#: inc/settings/mollie_paypal_button_enabler.php:86 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill golden" -msgstr "Nederlands -- Betalen met PayPal - pilvormig goud" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:692 +msgid "%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s betaling %2$s via Mollie (%3$s %4$s). Je moet de betaling handmatig controleren (en productvoorraden aanpassen als je dit gebruikt)." -#: build/inc/settings/mollie_paypal_button_enabler.php:87 -#: inc/settings/mollie_paypal_button_enabler.php:87 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded golden" -msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken goud" +#: ../src/Payment/MollieOrderService.php:805 +msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated." +msgstr "Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, maar bestelling niet geüpdatet." -#: build/inc/settings/mollie_paypal_button_enabler.php:88 -#: inc/settings/mollie_paypal_button_enabler.php:88 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill gray" -msgstr "Nederlands -- Betalen met PayPal - pilvormig grijs" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:308 +msgid "%1$s payment (%2$s) cancelled ." +msgstr "%1$s betaling (%2$s) geannuleerd." -#: build/inc/settings/mollie_paypal_button_enabler.php:89 -#: inc/settings/mollie_paypal_button_enabler.php:89 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded gray" -msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken grijs" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:377 +msgid "%1$s payment expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s betaling verlopen (%2$s) maar niet geannuleerd wegens een andere hangende betaling (%3$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:90 -#: inc/settings/mollie_paypal_button_enabler.php:90 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill white" -msgstr "Duits -- Betalen met PayPal - pilvormig wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:400 +msgid "%1$s payment expired (%2$s)." +msgstr "%1$s betaling verlopen (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:91 -#: inc/settings/mollie_paypal_button_enabler.php:91 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded white" -msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken wit" +#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID +#: ../src/Payment/MolliePayment.php:476 +msgid "Refunded %1$s%2$s%3$s - Payment: %4$s, Refund: %5$s" +msgstr "Terugbetaald %1$s%2$s%3$s - Betaling: %4$s, Terugbetaling: %5$s" -#: build/inc/settings/mollie_paypal_button_enabler.php:92 -#: inc/settings/mollie_paypal_button_enabler.php:92 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Pill black" -msgstr "Duits -- Kopen met PayPal - pilvormig zwart" +#. translators: Placeholder 1: order number +#: ../src/Payment/MollieSubscription.php:80 +msgctxt "Default payment description for subscription recurring payments" +msgid "Order %1$s" +msgstr "Bestelling %1$s" -#: build/inc/settings/mollie_paypal_button_enabler.php:93 -#: inc/settings/mollie_paypal_button_enabler.php:93 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Rounded black" -msgstr "Duits -- Kopen met PayPal - zwarte cirkel" +#: ../src/Payment/OrderItemsRefunder.php:121 +msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item." +msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld." -#: build/inc/settings/mollie_paypal_button_enabler.php:94 -#: inc/settings/mollie_paypal_button_enabler.php:94 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Pill blue" -msgstr "Duits -- Kopen met PayPal - pilvormig blauw" +#: ../src/Payment/OrderItemsRefunder.php:166 +msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount." +msgstr "Onmogelijk om het bestelartikel-id van het afstandsartikel terug te halen: %1$s Probeer een terugbetaling te doen per bedrag." -#: build/inc/settings/mollie_paypal_button_enabler.php:95 -#: inc/settings/mollie_paypal_button_enabler.php:95 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Rounded blue" -msgstr "Duits -- Kopen met PayPal - afgeronde hoeken blauw" +#: ../src/Payment/OrderItemsRefunder.php:190 +msgid "Empty WooCommerce order items or mollie order lines." +msgstr "Lege WooCommerce-bestelartikelen of Mollie-bestellijnen." -#: build/inc/settings/mollie_paypal_button_enabler.php:96 -#: inc/settings/mollie_paypal_button_enabler.php:96 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Pill golden" -msgstr "Duits -- Kopen met PayPal - pilvormig goud" +#: ../src/Payment/OrderLines.php:509 +msgid "Shipping" +msgstr "Verzending" -#: build/inc/settings/mollie_paypal_button_enabler.php:97 -#: inc/settings/mollie_paypal_button_enabler.php:97 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Rounded golden" -msgstr "Duits -- Kopen met PayPal - afgeronde hoeken goud" +#: ../src/Payment/PaymentModule.php:194 +msgid "Unpaid order cancelled - time limit reached." +msgstr "Onbetaalde bestelling geannuleerd - tijdslimiet bereikt." -#: build/inc/settings/mollie_paypal_button_enabler.php:98 -#: inc/settings/mollie_paypal_button_enabler.php:98 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Pill gray" -msgstr "Duits -- Kopen met PayPal - pilvormig grijs" +#: ../src/Payment/PaymentModule.php:213 +msgid "%1$s items refunded in WooCommerce and at Mollie." +msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:99 -#: inc/settings/mollie_paypal_button_enabler.php:99 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Rounded gray" -msgstr "Duits -- Kopen met PayPal - afgeronde hoeken grijs" +#: ../src/Payment/PaymentModule.php:231 +msgid "%1$s items cancelled in WooCommerce and at Mollie." +msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:100 -#: inc/settings/mollie_paypal_button_enabler.php:100 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Pill white" -msgstr "Duits -- Kopen met PayPal - pilvormig wit" +#: ../src/Payment/PaymentModule.php:350 +msgctxt "Order note info" +msgid "Processing a payment, no capture needed" +msgstr "Een betaling wordt verwerkt, als voltooid markeren is niet nodig" -#: build/inc/settings/mollie_paypal_button_enabler.php:101 -#: inc/settings/mollie_paypal_button_enabler.php:101 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Rounded white" -msgstr "Duits -- Kopen met PayPal - afgeronde hoeken wit" +#: ../src/Payment/PaymentModule.php:364 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be shipped/captured." +msgstr "Bestelling al geannuleerd bij Mollie, kan niet worden verzonden/als voltooid worden gemarkeerd." -#: build/inc/settings/mollie_paypal_button_enabler.php:102 -#: inc/settings/mollie_paypal_button_enabler.php:102 +#: ../src/Payment/PaymentModule.php:372 +msgctxt "Order note info" +msgid "Order already completed at Mollie, can not be shipped/captured." +msgstr "Bestelling al voltooid bij Mollie, kan niet worden verzonden/als voltooid worden gemarkeerd." + +#: ../src/Payment/PaymentModule.php:381 +msgctxt "Order note info" +msgid "Order successfully updated to shipped at Mollie, capture of funds underway." +msgstr "Bestelling succesvol bijgewerkt naar verzonden bij Mollie, als voltooid markeren van tegoeden in behandeling." + +#: ../src/Payment/PaymentModule.php:387 +msgctxt "Order note info" +msgid "Order not paid or authorized at Mollie yet, can not be shipped." +msgstr "Bestelling nog niet betaald of geautoriseerd bij Mollie, kan niet worden verzonden." + +#: ../src/Payment/PaymentModule.php:421 +msgctxt "Order note info" +msgid "Order contains Mollie payment method, but not a valid Mollie Order ID. Canceling order failed." +msgstr "Bestelling bevat Mollie betaalmethode, maar geen geldig Mollie bestel-ID. Bestelling annuleren is mislukt." + +#: ../src/Payment/PaymentModule.php:442 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be canceled again." +msgstr "Bestelling al geannuleerd bij Mollie, kan niet opnieuw worden geannuleerd." + +#: ../src/Payment/PaymentModule.php:452 +msgctxt "Order note info" +msgid "Order also cancelled at Mollie." +msgstr "Bestelling ook geannuleerd bij Mollie." + +#: ../src/Payment/PaymentModule.php:458 +msgctxt "Order note info" +msgid "Order could not be canceled at Mollie, because order status is " +msgstr "Bestelling kon niet worden geannuleerd bij Mollie, want de bestelstatus is " + +#: ../src/Payment/PaymentService.php:620 +msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription." +msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats een volledig nieuwe bestelling om je abonnement te wijzigen." + +#: ../src/Payment/PaymentService.php:626 +msgid "Failed switching subscriptions, no valid mandate." +msgstr "Wijziging abonnement mislukt, geen geldige opdracht." + +#: ../src/Payment/PaymentService.php:635 +msgid "Order completed internally because of an existing valid mandate at Mollie." +msgstr "Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie." + +#. translators: Placeholder 1: Payment method title +#: ../src/Payment/PaymentService.php:708, ../src/Buttons/ApplePayButton/AppleAjaxRequests.php:723, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:113, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:159 +msgid "Could not create %s payment." +msgstr "Kon geen %s betaling aanmaken." + +#: ../src/Payment/PaymentService.php:766, ../src/Subscription/MollieSepaRecurringGateway.php:127, ../src/Subscription/MollieSubscriptionGateway.php:461 +msgid "Awaiting payment confirmation." +msgstr "In afwachting van betalingsbevestiging" + +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Payment/PaymentService.php:786 +msgid "%s payment started (%s)." +msgstr "%s betaling gestart (%s)." + +#: ../src/Payment/RefundLineItemsBuilder.php:126 +msgid "Mollie doesn't allow a partial refund of the full amount or quantity of at least one order line. Trying to process this as an amount refund instead." +msgstr "Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag of hoeveelheid van ten minste één bestelregel. In plaats daarvan aan het proberen dit te verwerken als een terugbetaling van bedrag." + +#: ../src/PaymentMethods/Applepay.php:14 +msgid "To accept payments via Apple Pay" +msgstr "Om betalingen te accepteren via Apple Pay" + +#: ../src/PaymentMethods/Bancontact.php:14 +msgid "Bancontact" +msgstr "Bancontact" + +#: ../src/PaymentMethods/Banktransfer.php:33 +msgid "Bank Transfer" +msgstr "Bankoverdracht" + +#: ../src/PaymentMethods/Banktransfer.php:55, ../src/Settings/General/MollieGeneralSettings.php:235 +msgid "Activate expiry time setting" +msgstr "Activeer instelling vervaltermijn" + +#: ../src/PaymentMethods/Banktransfer.php:56, ../src/Settings/General/MollieGeneralSettings.php:236 +msgid "Enable expiry time for payments" +msgstr "Activeer vervaltermijn voor betalingen" + +#: ../src/PaymentMethods/Banktransfer.php:57 +msgid "Enable this option if you want to be able to set the time after which the payment will expire. This will turn all transactions into payments instead of orders" +msgstr "Activeer deze optie, als je de termijn wilt kunnen instellen na dewelke de betaling vervalt. Dit zet alle transacties in betalingen om in plaats van ze in bestellingen te wijzigen" + +#: ../src/PaymentMethods/Banktransfer.php:62, ../src/Settings/General/MollieGeneralSettings.php:242 +msgid "Expiry time" +msgstr "Vervaltermijn" + +#. translators: Placeholder 1: Default expiry days. +#: ../src/PaymentMethods/Banktransfer.php:65 +msgid "Number of DAYS after the payment will expire. Default %d days" +msgstr "Aantal DAGEN nadat de betaling vervalt. Standaard %d dagen." + +#: ../src/PaymentMethods/Banktransfer.php:74 +msgid "Skip Mollie payment screen" +msgstr "Mollie-betaalscherm overslaan" + +#: ../src/PaymentMethods/Banktransfer.php:75 +msgid "Skip Mollie payment screen when Bank Transfer is selected" +msgstr "Sla Mollie-betaalscherm over wanneer bankoverschrijving is geselecteerd" + +#: ../src/PaymentMethods/Banktransfer.php:76 +msgid "Enable this option if you want to skip redirecting your user to the Mollie payment screen, instead this will redirect your user directly to the WooCommerce order received page displaying instructions how to complete the Bank Transfer payment." +msgstr "Activeer deze optie als je het doorsturen van je gebruiker naar het Mollie-betaalscherm wilt overslaan. In plaats daarvan stuurt dit je gebruiker rechtstreeks naar de WooCommerce-pagina bestelling ontvangen met instructies voor het voltooien van de betaling via bankoverschrijving." + +#: ../src/PaymentMethods/Belfius.php:13 +msgid "Belfius Direct Net" +msgstr "Belfius Direct Net" + +#: ../src/PaymentMethods/Creditcard.php:16 +msgid "Credit card" +msgstr "Creditcard" + +#: ../src/PaymentMethods/Creditcard.php:52 +msgid "Enable Mollie Components" +msgstr "Activeer Mollie-componenten" + +#. translators: Placeholder 1: Mollie Components. +#: ../src/PaymentMethods/Creditcard.php:55 +msgid "Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." +msgstr "Gebruik de Mollie-componenten voor deze gateway. Lees meer over %s en hoe het jouw conversie verbetert." + +#: ../src/PaymentMethods/Creditcard.php:59, ../src/Settings/Page/Components.php:21, ../src/Settings/Page/MollieSettingsPage.php:703 +msgid "Mollie Components" +msgstr "Mollie-componenten" + +#: ../src/PaymentMethods/Creditcard.php:92 +msgid "Customize Icons" +msgstr "Pas pictogrammen aan" + +#: ../src/PaymentMethods/Creditcard.php:99 +msgid "Enable Icons Selector" +msgstr "Activeer pictogram keuzemogelijkheid" + +#: ../src/PaymentMethods/Creditcard.php:100 +msgid "Show customized creditcard icons on checkout page" +msgstr "Toon aangepaste creditcardpictogrammen op betaalpagina" + +#: ../src/PaymentMethods/Creditcard.php:108 +msgid "Show American Express Icon" +msgstr "Toon American Express pictogram" + +#: ../src/PaymentMethods/Creditcard.php:113 +msgid "Show Carta Si Icon" +msgstr "Toon Carta Si pictogram" + +#: ../src/PaymentMethods/Creditcard.php:118 +msgid "Show Carte Bancaire Icon" +msgstr "Toon Carte Bancaire pictogram" + +#: ../src/PaymentMethods/Creditcard.php:123 +msgid "Show Maestro Icon" +msgstr "Toon Maestro pictogram" + +#: ../src/PaymentMethods/Creditcard.php:128 +msgid "Show Mastercard Icon" +msgstr "Toon Mastercard pictogram" + +#: ../src/PaymentMethods/Creditcard.php:133 +msgid "Show Visa Icon" +msgstr "Toon Visa pictogram" + +#: ../src/PaymentMethods/Creditcard.php:138 +msgid "Show VPay Icon" +msgstr "Toon Vpay pictogram" + +#: ../src/PaymentMethods/Directdebit.php:13 +msgid "SEPA Direct Debit" +msgstr "SEPA-incasso" + +#: ../src/PaymentMethods/Directdebit.php:14 +msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscriptions, and will not be shown in the WooCommerce checkout for regular payments! You also need to enable iDEAL and/or other \"first\" payment methods if you want to use SEPA Direct Debit." +msgstr "SEPA-incasso wordt gebruikt voor terugkerende betalingen met WooCommerce-abonnementen, en wordt niet getoond in de WooCommerce kassa voor reguliere betalingen! Je moet ook iDEAL en/of andere \"eerste\" betaalmethoden activeren als je SEPA-incasso wilt gebruiken." + +#: ../src/PaymentMethods/Eps.php:13 +msgid "EPS" +msgstr "EPS" + +#: ../src/PaymentMethods/Giftcard.php:30 +msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency" +msgid "Mollie - Giftcard details: %1$s %2$s %3$s." +msgstr "Mollie - Details cadeaukaart: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:42 +msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency" +msgid " Remainder: %1$s %2$s %3$s." +msgstr " Restant: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:60 +msgid "Gift cards" +msgstr "Cadeaubonnen" + +#: ../src/PaymentMethods/Giftcard.php:62, ../src/PaymentMethods/Giftcard.php:105 +msgid "Select your gift card" +msgstr "Selecteer je cadeaubon" + +#: ../src/PaymentMethods/Giftcard.php:78 +msgid "Show gift cards dropdown" +msgstr "Toon cadeaubonnen-dropdown" + +#: ../src/PaymentMethods/Giftcard.php:84 +msgid "If you disable this, a dropdown with various gift cards will not be shown in the WooCommerce checkout, so users will select a gift card on the Mollie payment page after checkout." +msgstr "Als je dit deactiveert, zal een dropdown met verschillende cadeaubonnen niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een cadeaubon selecteren op de Mollie-betaalpagina na het afrekenen." + +#: ../src/PaymentMethods/Giftcard.php:93, ../src/PaymentMethods/Ideal.php:46, ../src/PaymentMethods/Kbc.php:48 +msgid "Issuers empty option" +msgstr "Optie uitgevers leeg" + +#: ../src/PaymentMethods/Giftcard.php:99 +msgid "This text will be displayed as the first option in the gift card dropdown, but only if the above 'Show gift cards dropdown' is enabled." +msgstr "Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd." + +#: ../src/PaymentMethods/Giropay.php:13 +msgid "Giropay" +msgstr "Giropay" + +#: ../src/PaymentMethods/Ideal.php:15 +msgid "iDEAL" +msgstr "iDEAL" + +#: ../src/PaymentMethods/Ideal.php:17, ../src/PaymentMethods/Ideal.php:55, ../src/PaymentMethods/Kbc.php:16, ../src/PaymentMethods/Kbc.php:60 +msgid "Select your bank" +msgstr "Selecteer je bank" + +#: ../src/PaymentMethods/Ideal.php:34 +msgid "Show iDEAL banks dropdown" +msgstr "Toon iDEAL-banken dropdown" + +# AH: je +# #query +#: ../src/PaymentMethods/Ideal.php:37 +msgid "If you disable this, a dropdown with various iDEAL banks will not be shown in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie payment page after checkout." +msgstr "Als u dit deactiveert, zal er geen dropdown met verschillende iDEAL-banken in de WooCommerce- checkout worden getoond, dus gebruikers zullen na de checkout een iDEAL-bank selecteren op de Mollie-betaalpagina." + +#: ../src/PaymentMethods/Ideal.php:49 +msgid "This text will be displayed as the first option in the iDEAL issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above 'Show iDEAL banks dropdown' is enabled." +msgstr "Deze tekst wordt als eerste optie in de iDEAL issuers drop down weergegeven, als er niets is ingevuld, wordt \"Selecteer je bank\" getoond. Alleen als het bovenstaande ''Toon iDEAL-banken dropdown'' is geactiveerd." + +#: ../src/PaymentMethods/In3.php:13 +msgid "in3" +msgstr "in3" + +#: ../src/PaymentMethods/In3.php:15 +msgid "Pay in 3 instalments, 0% interest" +msgstr "Betaal in 3 termijnen, 0% rente" + +#: ../src/PaymentMethods/Kbc.php:14 +msgid "KBC/CBC Payment Button" +msgstr "KBC/CBC Betaalknop" + +#: ../src/PaymentMethods/Kbc.php:33 +msgid "Show KBC/CBC banks dropdown" +msgstr "Toon KBC/CBC-banken dropdown" + +#: ../src/PaymentMethods/Kbc.php:39 +msgid "If you disable this, a dropdown with various KBC/CBC banks will not be shown in the WooCommerce checkout, so users will select a KBC/CBC bank on the Mollie payment page after checkout." +msgstr "Als je dit deactiveert, zal een dropdown bij verschillende KBC/CBC-banken niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een KBC/CBC-bank selecteren op de Mollie-betaalpagina na het afrekenen." + +#: ../src/PaymentMethods/Kbc.php:54 +msgid "This text will be displayed as the first option in the KBC/CBC issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above ''Show KBC/CBC banks dropdown' is enabled." +msgstr "Deze tekst wordt weergegeven als eerste optie in de KBC/CBC-uitgevers drop-down, als er niets wordt ingevoerd, wordt \"Selecteer uw bank\" weergegeven. Alleen als het bovenstaande ''Toon KBC/CBC-banken dropdown'' is geactiveerd." + +#: ../src/PaymentMethods/Klarnapaylater.php:13 +msgid "Klarna Pay later" +msgstr "Klarna betaal later" + +#: ../src/PaymentMethods/Klarnapaylater.php:14, ../src/PaymentMethods/Klarnapaynow.php:14, ../src/PaymentMethods/Klarnasliceit.php:15 +msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required." +msgstr "Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn." + +#: ../src/PaymentMethods/Klarnapaynow.php:13 +msgid "Klarna Pay Now" +msgstr "Klarna betaal nu" + +#: ../src/PaymentMethods/Klarnasliceit.php:14 +msgid "Klarna Slice it" +msgstr "Klarna Slice it" + +#: ../src/PaymentMethods/Mybank.php:14 +msgid "MyBank" +msgstr "MyBank" + +#: ../src/PaymentMethods/Mybank.php:15 +msgid "To accept payments via MyBank" +msgstr "Om betalingen te accepteren via MyBank" + +#: ../src/PaymentMethods/Paypal.php:14 +msgid "PayPal" +msgstr "PayPal" + +#: ../src/PaymentMethods/Paypal.php:34 +msgid "Display on cart page" +msgstr "Toon op de winkelwagenpagina" + +#: ../src/PaymentMethods/Paypal.php:38 +msgid "Enable the PayPal button to be used in the cart page." +msgstr "Activeer de PayPal-knop om te gebruiken op de winkelwagenpagina." + +#: ../src/PaymentMethods/Paypal.php:46 +msgid "Display on product page" +msgstr "Toon op de productpagina" + +#: ../src/PaymentMethods/Paypal.php:50 +msgid "Enable the PayPal button to be used in the product page." +msgstr "Activeer de PayPal-knop om te gebruiken op de productpagina." + +#: ../src/PaymentMethods/Paypal.php:59 +msgctxt "Mollie PayPal Button Settings" +msgid "Button text language and color" +msgstr "Knop tekst taal en kleur" + +#: ../src/PaymentMethods/Paypal.php:60 +msgctxt "Mollie PayPal Button Settings" +msgid "Select the text and the colour of the button." +msgstr "Kies de tekst en de kleur van de knop." + +#: ../src/PaymentMethods/Paypal.php:70 +msgid "Minimum amount to display button" +msgstr "Minimumbedrag voor de weergave van de knop" + +#: ../src/PaymentMethods/Paypal.php:74 +msgid "If the product or the cart total amount is under this number, then the button will not show up." +msgstr "Als het product of het totaalbedrag van de winkelwagen onder dit getal blijft, dan verschijnt de knop niet." + +#: ../src/PaymentMethods/Paypal.php:89 msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Pill black" -msgstr "Duits -- Betalen met PayPal - pilvormig zwart" +msgid "English -- Buy with PayPal - Pill blue" +msgstr "Engels -- Kopen met PayPal - Pilvormig blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:103 -#: inc/settings/mollie_paypal_button_enabler.php:103 +#: ../src/PaymentMethods/Paypal.php:90 msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Rounded black" -msgstr "Duits -- Betalen met PayPal - afgeronde hoeken zwart" +msgid "English -- Buy with PayPal - Rounded blue" +msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:104 -#: inc/settings/mollie_paypal_button_enabler.php:104 +#: ../src/PaymentMethods/Paypal.php:91 msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Pill blue" -msgstr "Duits -- Betalen met PayPal - pilvormig blauw" +msgid "English -- Buy with PayPal - Pill golden" +msgstr "Engels -- Kopen met PayPal - Pilvormig goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:105 -#: inc/settings/mollie_paypal_button_enabler.php:105 +#: ../src/PaymentMethods/Paypal.php:92 msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Rounded blue" -msgstr "Duits -- Betalen met PayPal - afgeronde hoeken blauw" +msgid "English -- Buy with PayPal - Rounded golden" +msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:106 -#: inc/settings/mollie_paypal_button_enabler.php:106 +#: ../src/PaymentMethods/Paypal.php:93 msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Pill golden" -msgstr "Duits -- Betalen met PayPal - pilvormig goud" +msgid "English -- Buy with PayPal - Pill gray" +msgstr "Engels -- Kopen met PayPal - Pilvormig grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:107 -#: inc/settings/mollie_paypal_button_enabler.php:107 +#: ../src/PaymentMethods/Paypal.php:94 msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Rounded golden" -msgstr "Duits -- Betalen met PayPal - afgeronde hoeken goud" +msgid "English -- Buy with PayPal - Rounded gray" +msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:108 -#: inc/settings/mollie_paypal_button_enabler.php:108 +#: ../src/PaymentMethods/Paypal.php:95 msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Pill gray" -msgstr "Duits -- Betalen met PayPal - pilvormig grijs" +msgid "English -- Buy with PayPal - Pill white" +msgstr "Engels -- Kopen met PayPal - Pilvormig wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:109 -#: inc/settings/mollie_paypal_button_enabler.php:109 +#: ../src/PaymentMethods/Paypal.php:96 msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Rounded gray" -msgstr "Duits -- Betalen met PayPal - afgeronde hoeken grijs" +msgid "English -- Buy with PayPal - Rounded white" +msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:110 -#: inc/settings/mollie_paypal_button_enabler.php:110 +#: ../src/PaymentMethods/Paypal.php:97 msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Pill white" -msgstr "Duits -- Betalen met PayPal - pilvormig wit" +msgid "English -- Checkout with PayPal - Pill black" +msgstr "Engels -- Betalen met PayPal - Pilvormig zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:111 -#: inc/settings/mollie_paypal_button_enabler.php:111 +#: ../src/PaymentMethods/Paypal.php:98 msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Rounded white" -msgstr "Duits -- Betalen met PayPal - afgeronde hoeken wit" +msgid "English -- Checkout with PayPal - Rounded black" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:112 -#: inc/settings/mollie_paypal_button_enabler.php:112 +#: ../src/PaymentMethods/Paypal.php:99 msgctxt "Mollie PayPal button Settings" -msgid "French -- Buy with PayPal - Gold" -msgstr "Frans -- Kopen met PayPal - goud" +msgid "English -- Checkout with PayPal - Pill blue" +msgstr "Engels -- Betalen met PayPal - Pilvormig blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:113 -#: inc/settings/mollie_paypal_button_enabler.php:113 +#: ../src/PaymentMethods/Paypal.php:100 msgctxt "Mollie PayPal button Settings" -msgid "French -- Checkout with PayPal - Gold" -msgstr "Frans -- Betalen met PayPal - goud" +msgid "English -- Checkout with PayPal - Rounded blue" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:114 -#: inc/settings/mollie_paypal_button_enabler.php:114 +#: ../src/PaymentMethods/Paypal.php:101 msgctxt "Mollie PayPal button Settings" -msgid "French -- Checkout with PayPal - Silver" -msgstr "Frans -- Betalen met PayPal - zilver" +msgid "English -- Checkout with PayPal - Pill golden" +msgstr "Engels -- Betalen met PayPal - Pilvormig goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:115 -#: inc/settings/mollie_paypal_button_enabler.php:115 +#: ../src/PaymentMethods/Paypal.php:102 msgctxt "Mollie PayPal button Settings" -msgid "Polish -- Buy with PayPal - Gold" -msgstr "Pools -- Kopen met PayPal - goud" +msgid "English -- Checkout with PayPal - Rounded golden" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:116 -#: inc/settings/mollie_paypal_button_enabler.php:116 +#: ../src/PaymentMethods/Paypal.php:103 msgctxt "Mollie PayPal button Settings" -msgid "Polish -- Checkout with PayPal - Gold" -msgstr "Pools -- Betalen met PayPal - goud" +msgid "English -- Checkout with PayPal - Pill gray" +msgstr "Engels -- Betalen met PayPal - Pilvormig grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:117 -#: inc/settings/mollie_paypal_button_enabler.php:117 +#: ../src/PaymentMethods/Paypal.php:104 msgctxt "Mollie PayPal button Settings" -msgid "Polish -- Checkout with PayPal - Silver" -msgstr "Pools -- Betalen met PayPal - zilver" +msgid "English -- Checkout with PayPal - Rounded gray" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:122 -#: inc/settings/mollie_paypal_button_enabler.php:122 -msgid "Minimum amount to display button" -msgstr "Minimum bedrag voor de weergave van de knop." +#: ../src/PaymentMethods/Paypal.php:105 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill white" +msgstr "Engels -- Betalen met PayPal - Pilvormig wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:126 -#: inc/settings/mollie_paypal_button_enabler.php:126 -msgid "" -"If the product or the cart total amount is under this number, then the " -"button will not show up." -msgstr "" -"Wanneer het product of het totale bedrag van de winkelwagen beneden dit " -"getal blijft, krijg je de betaalknop niet te zien." +#: ../src/PaymentMethods/Paypal.php:106 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded white" +msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken wit" -#: build/mollie-payments-for-woocommerce.php:90 -#: mollie-payments-for-woocommerce.php:90 -msgid "" -"%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set " -"your API keys here%4$s." -msgstr "" -"%1$sMollie-betalingen voor WooCommerce: Geen API-sleutels%2$s stel%3$s hier " -"je API-sleutels in%4$s." +#: ../src/PaymentMethods/Paypal.php:107 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill black" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig zwart" -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: build/src/Mollie/WC/Gateway/Abstract.php:685 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: src/Mollie/WC/Gateway/Abstract.php:685 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -msgid "Could not create %s payment." -msgstr "Kon geen %s betaling aanmaken." +#: ../src/PaymentMethods/Paypal.php:108 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded black" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken zwart" -#: build/src/Mollie/WC/Gateway/Abstract.php:138 -#: src/Mollie/WC/Gateway/Abstract.php:138 -msgid "No custom logo selected" -msgstr "Geen aangepast logo gekozen" +#: ../src/PaymentMethods/Paypal.php:109 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill blue" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig blauw" -#: build/src/Mollie/WC/Gateway/Abstract.php:221 -#: src/Mollie/WC/Gateway/Abstract.php:221 -msgid "Gateway Disabled" -msgstr "Gateway gedeactiveerd" +#: ../src/PaymentMethods/Paypal.php:110 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded blue" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken blauw" -#: build/src/Mollie/WC/Gateway/Abstract.php:244 -#: src/Mollie/WC/Gateway/Abstract.php:244 -msgid "Return to payments" -msgstr "Ga terug naar betalingen" +#: ../src/PaymentMethods/Paypal.php:111 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill golden" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig goud" -#: build/src/Mollie/WC/Gateway/Abstract.php:260 -#: build/src/Mollie/WC/Helper/Settings.php:114 -#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114 -msgid "Sell to specific countries" -msgstr "Verkoop aan bepaalde landen" +#: ../src/PaymentMethods/Paypal.php:112 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded golden" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken goud" -#: build/src/Mollie/WC/Gateway/Abstract.php:272 -#: src/Mollie/WC/Gateway/Abstract.php:272 -msgid "Choose countries…" -msgstr "Kies landen...;" +#: ../src/PaymentMethods/Paypal.php:113 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill gray" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig grijs" -#: build/src/Mollie/WC/Gateway/Abstract.php:273 -#: src/Mollie/WC/Gateway/Abstract.php:273 -msgid "Country" -msgstr "Land" +#: ../src/PaymentMethods/Paypal.php:114 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded gray" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken grijs" -#: build/src/Mollie/WC/Gateway/Abstract.php:282 -#: src/Mollie/WC/Gateway/Abstract.php:282 -msgid "Select all" -msgstr "Kies alles" +#: ../src/PaymentMethods/Paypal.php:115 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill white" +msgstr "Nederlands -- Kopen met PayPal - Pilvormig wit" -#: build/src/Mollie/WC/Gateway/Abstract.php:283 -#: src/Mollie/WC/Gateway/Abstract.php:283 -msgid "Select none" -msgstr "Kies geen" +#: ../src/PaymentMethods/Paypal.php:116 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded white" +msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken wit" -#: build/src/Mollie/WC/Gateway/Abstract.php:337 -#: build/src/Mollie/WC/Helper/Settings.php:558 -#: src/Mollie/WC/Gateway/Abstract.php:337 src/Mollie/WC/Helper/Settings.php:558 -msgid "Test mode enabled." -msgstr "Testmodus geactiveerd." +#: ../src/PaymentMethods/Paypal.php:117 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill black" +msgstr "Nederlands -- Betalen met PayPal - Pilvormig zwart" -#. translators: The surrounding %s's Will be replaced by a link to the global setting page -#: build/src/Mollie/WC/Gateway/Abstract.php:339 -#: src/Mollie/WC/Gateway/Abstract.php:339 -msgid "No API key provided. Please %sset you Mollie API key%s first." -msgstr "Geen API-sleutel geleverd. Plaats %sje Mollie API-sleutel%s eerst." +#: ../src/PaymentMethods/Paypal.php:118 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded black" +msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken zwart" -#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Gateway/Abstract.php:351 -#: src/Mollie/WC/Gateway/Abstract.php:351 -msgid "" -"%s not enabled in your Mollie profile. You can enable it by editing your " -"%sMollie profile%s." -msgstr "" -"%s niet geactiveerd in je Mollie-profiel. Je kunt het activeren door je " -"%sMollie profiel%s te bewerken." +#: ../src/PaymentMethods/Paypal.php:119 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill blue" +msgstr "Nederlands -- Betalen met PayPal - Pilvormig blauw" -#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies -#: build/src/Mollie/WC/Gateway/Abstract.php:363 -#: src/Mollie/WC/Gateway/Abstract.php:363 -msgid "" -"Current shop currency %s not supported by Mollie. Read more about " -"%ssupported currencies and payment methods.%s " -msgstr "" -"Huidige shopvaluta %s niet ondersteund door Mollie. Lees meer over " -"%sondersteunde valuta's en betaalmethoden.%s " +#: ../src/PaymentMethods/Paypal.php:120 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded blue" +msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken blauw" -#: build/src/Mollie/WC/Gateway/Abstract.php:525 -#: src/Mollie/WC/Gateway/Abstract.php:525 -msgid "Could not load order %s" -msgstr "Kon bestelling %s niet laden" +#: ../src/PaymentMethods/Paypal.php:121 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill golden" +msgstr "Nederlands -- Betalen met PayPal - Pilvormig goud" -#: build/src/Mollie/WC/Gateway/Abstract.php:577 -#: src/Mollie/WC/Gateway/Abstract.php:577 -msgid "" -"Order completed internally because of an existing valid mandate at Mollie." -msgstr "" -"Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie." +#: ../src/PaymentMethods/Paypal.php:122 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded golden" +msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken goud" -#: build/src/Mollie/WC/Gateway/Abstract.php:588 -#: src/Mollie/WC/Gateway/Abstract.php:588 -msgid "" -"Subscription switch failed, no valid mandate found. Place a completely new " -"order to change your subscription." -msgstr "" -"Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats " -"een hele nieuwe bestelling om je abonnement te wijzigen." +#: ../src/PaymentMethods/Paypal.php:123 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill gray" +msgstr "Nederlands -- Betalen met PayPal - Pilvormig grijs" -#: build/src/Mollie/WC/Gateway/Abstract.php:589 -#: src/Mollie/WC/Gateway/Abstract.php:589 -msgid "Failed switching subscriptions, no valid mandate." -msgstr "Wijziging abonnement mislukt, geen geldige opdracht." +#: ../src/PaymentMethods/Paypal.php:124 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded gray" +msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken grijs" -#: build/src/Mollie/WC/Gateway/Abstract.php:658 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:413 -#: src/Mollie/WC/Gateway/Abstract.php:658 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:413 -msgid "Awaiting payment confirmation." -msgstr "In afwachting van betalingsbevestiging" +#: ../src/PaymentMethods/Paypal.php:125 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill white" +msgstr "Nederlands -- Betalen met PayPal - Pilvormig wit" -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:668 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:420 -#: src/Mollie/WC/Gateway/Abstract.php:668 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:420 -msgid "%s payment started (%s)." -msgstr "%s betaling gestart (%s)." +#: ../src/PaymentMethods/Paypal.php:126 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded white" +msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken wit" -#: build/src/Mollie/WC/Gateway/Abstract.php:670 -#: build/src/Mollie/WC/Gateway/Abstract.php:897 -#: build/src/Mollie/WC/Gateway/Abstract.php:1181 -#: build/src/Mollie/WC/Gateway/Abstract.php:1243 -#: build/src/Mollie/WC/Gateway/Abstract.php:1618 -#: build/src/Mollie/WC/Gateway/Abstract.php:2142 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: build/src/Mollie/WC/Payment/Object.php:608 -#: build/src/Mollie/WC/Payment/Object.php:642 -#: build/src/Mollie/WC/Payment/Order.php:264 -#: build/src/Mollie/WC/Payment/Order.php:316 -#: build/src/Mollie/WC/Payment/Order.php:363 -#: build/src/Mollie/WC/Payment/Order.php:446 -#: build/src/Mollie/WC/Payment/Order.php:511 -#: build/src/Mollie/WC/Payment/Order.php:936 -#: build/src/Mollie/WC/Payment/Payment.php:249 -#: build/src/Mollie/WC/Payment/Payment.php:336 -#: build/src/Mollie/WC/Payment/Payment.php:406 -#: build/src/Mollie/WC/Payment/Payment.php:429 -#: src/Mollie/WC/Gateway/Abstract.php:670 -#: src/Mollie/WC/Gateway/Abstract.php:897 -#: src/Mollie/WC/Gateway/Abstract.php:1181 -#: src/Mollie/WC/Gateway/Abstract.php:1243 -#: src/Mollie/WC/Gateway/Abstract.php:1618 -#: src/Mollie/WC/Gateway/Abstract.php:2142 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642 -#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316 -#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446 -#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936 -#: src/Mollie/WC/Payment/Payment.php:249 src/Mollie/WC/Payment/Payment.php:336 -#: src/Mollie/WC/Payment/Payment.php:406 src/Mollie/WC/Payment/Payment.php:429 -msgid "test mode" -msgstr "testmodus" +#: ../src/PaymentMethods/Paypal.php:127 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Pill black" +msgstr "Duits -- Kopen met PayPal - Pilvormig zwart" -#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:894 -#: src/Mollie/WC/Gateway/Abstract.php:894 -msgid "%s payment %s (%s), not processed." -msgstr "%s betaling %s (%s), niet verwerkt." +#: ../src/PaymentMethods/Paypal.php:128 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Rounded black" +msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken zwart" -#: build/src/Mollie/WC/Gateway/Abstract.php:1008 -#: src/Mollie/WC/Gateway/Abstract.php:1008 -msgid "" -"New refund %s processed in Mollie Dashboard! Order note added, but order not " -"updated." -msgstr "" -"Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, " -"maar bestelling niet geüpdatet." +#: ../src/PaymentMethods/Paypal.php:129 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Pill blue" +msgstr "Duits -- Kopen met PayPal - Pilvormig blauw" -#: build/src/Mollie/WC/Gateway/Abstract.php:1144 -#: src/Mollie/WC/Gateway/Abstract.php:1144 -msgid "New chargeback %s processed! Order note and order status updated." -msgstr "" -"Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt." +#: ../src/PaymentMethods/Paypal.php:130 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Rounded blue" +msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken blauw" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1176 -#: src/Mollie/WC/Gateway/Abstract.php:1176 -msgid "" -"%s payment charged back via Mollie (%s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%s betaling teruggevorderd via Mollie (%s). Je moet de betaling handmatig " -"controleren (en productvoorraden aanpassen als je dit gebruikt)." +#: ../src/PaymentMethods/Paypal.php:131 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Pill golden" +msgstr "Duits -- Kopen met PayPal - Pilvormig goud" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1237 -#: src/Mollie/WC/Gateway/Abstract.php:1237 -msgid "" -"%s payment charged back via Mollie (%s). Subscription status updated, please " -"review (and adjust product stocks if you use it)." -msgstr "" -"%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet, " -"controleer dit (en pas productvoorraden aan als je dit gebruikt)." +#: ../src/PaymentMethods/Paypal.php:132 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Rounded golden" +msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken goud" -#: build/src/Mollie/WC/Gateway/Abstract.php:1314 -#: src/Mollie/WC/Gateway/Abstract.php:1314 -msgid "" -"You have cancelled your payment. Please complete your order with a different " -"payment method." -msgstr "" -"Je hebt je betaling geannuleerd. Maak je bestelling af met een andere " -"betaalmethode." +#: ../src/PaymentMethods/Paypal.php:133 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Pill gray" +msgstr "Duits -- Kopen met PayPal - Pilvormig grijs" -#: build/src/Mollie/WC/Gateway/Abstract.php:1328 -#: build/src/Mollie/WC/Gateway/Abstract.php:1337 -#: src/Mollie/WC/Gateway/Abstract.php:1328 -#: src/Mollie/WC/Gateway/Abstract.php:1337 -msgid "" -"Your payment was not successful. Please complete your order with a different " -"payment method." -msgstr "" -"Je betaling is mislukt. Maak je bestelling af met een andere betaalmethode." +#: ../src/PaymentMethods/Paypal.php:134 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Rounded gray" +msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken grijs" -#: build/src/Mollie/WC/Gateway/Abstract.php:1529 -#: src/Mollie/WC/Gateway/Abstract.php:1529 -msgid "We have not received a definite payment status." -msgstr "We hebben geen definitieve betalingsstatus ontvangen." +#: ../src/PaymentMethods/Paypal.php:135 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Pill white" +msgstr "Duits -- Kopen met PayPal - Pilvormig wit" -#: build/src/Mollie/WC/Gateway/Abstract.php:1534 -#: src/Mollie/WC/Gateway/Abstract.php:1534 -msgid "" -"We have not received a definite payment status. You will receive an email as " -"soon as we receive a confirmation of the bank/merchant." -msgstr "" -"We hebben geen definitieve betalingsstatus ontvangen. Je ontvangt een e-mail " -"zodra wij een bevestiging van de bank/handelaar hebben ontvangen." +#: ../src/PaymentMethods/Paypal.php:136 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Buy with PayPal - Rounded white" +msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken wit" -#. translators: Placeholder 1: payment method -#: build/src/Mollie/WC/Gateway/Abstract.php:1541 -#: src/Mollie/WC/Gateway/Abstract.php:1541 -msgid "Payment completed with %s" -msgstr "Betaling voltooid met %s" +#: ../src/PaymentMethods/Paypal.php:137 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Pill black" +msgstr "Duits -- Betalen met PayPal - Pilvormig zwart" -#: build/src/Mollie/WC/Gateway/Abstract.php:1589 -#: src/Mollie/WC/Gateway/Abstract.php:1589 -msgid "Order cancelled" -msgstr "Bestelling geannuleerd" +#: ../src/PaymentMethods/Paypal.php:138 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Rounded black" +msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken zwart" + +#: ../src/PaymentMethods/Paypal.php:139 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Pill blue" +msgstr "Duits -- Betalen met PayPal - Pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:140 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Rounded blue" +msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:141 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Pill golden" +msgstr "Duits -- Betalen met PayPal - Pilvormig goud" + +#: ../src/PaymentMethods/Paypal.php:142 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Rounded golden" +msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken goud" + +#: ../src/PaymentMethods/Paypal.php:143 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Pill gray" +msgstr "Duits -- Betalen met PayPal - Pilvormig grijs" + +#: ../src/PaymentMethods/Paypal.php:144 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Rounded gray" +msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken grijs" + +#: ../src/PaymentMethods/Paypal.php:145 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Pill white" +msgstr "Duits -- Betalen met PayPal - Pilvormig wit" + +#: ../src/PaymentMethods/Paypal.php:146 +msgctxt "Mollie PayPal button Settings" +msgid "German -- Checkout with PayPal - Rounded white" +msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken wit" + +#: ../src/PaymentMethods/Paypal.php:147 +msgctxt "Mollie PayPal button Settings" +msgid "French -- Buy with PayPal - Gold" +msgstr "Frans -- Kopen met PayPal - Goud" + +#: ../src/PaymentMethods/Paypal.php:148 +msgctxt "Mollie PayPal button Settings" +msgid "French -- Checkout with PayPal - Gold" +msgstr "Frans -- Betalen met PayPal - Goud" + +#: ../src/PaymentMethods/Paypal.php:149 +msgctxt "Mollie PayPal button Settings" +msgid "French -- Checkout with PayPal - Silver" +msgstr "Frans -- Betalen met PayPal - Zilver" + +#: ../src/PaymentMethods/Paypal.php:150 +msgctxt "Mollie PayPal button Settings" +msgid "Polish -- Buy with PayPal - Gold" +msgstr "Pools -- Kopen met PayPal - Goud" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1616 -#: src/Mollie/WC/Gateway/Abstract.php:1616 -msgid "" -"%s payment still pending (%s) but customer already returned to the store. " -"Status should be updated automatically in the future, if it doesn't this " -"might indicate a communication issue between the site and Mollie." -msgstr "" -"%s betaling nog steeds in behandeling (%s) maar klant is al terug in de " -"winkel. De status moet in de toekomst automatisch worden bijgewerkt, als dat " -"niet gebeurt, kan dit betekenen dat er een communicatieprobleem is tussen de " -"site en Mollie." +#: ../src/PaymentMethods/Paypal.php:151 +msgctxt "Mollie PayPal button Settings" +msgid "Polish -- Checkout with PayPal - Gold" +msgstr "Pools -- Betalen met PayPal - Goud" -#: build/src/Mollie/WC/Gateway/Abstract.php:1625 -#: src/Mollie/WC/Gateway/Abstract.php:1625 -msgid ", payment pending." -msgstr ", betaling in behandeling." +#: ../src/PaymentMethods/Paypal.php:152 +msgctxt "Mollie PayPal button Settings" +msgid "Polish -- Checkout with PayPal - Silver" +msgstr "Pools -- Betalen met PayPal - Zilver" -#: build/src/Mollie/WC/Gateway/Abstract.php:1652 -#: src/Mollie/WC/Gateway/Abstract.php:1652 -msgid "Your order has been cancelled." -msgstr "Je bestelling is geannuleerd." +#: ../src/PaymentMethods/Paysafecard.php:14 +msgid "paysafecard" +msgstr "paysafecard" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:2129 -#: src/Mollie/WC/Gateway/Abstract.php:2129 -msgid "" -"%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%1$s betaling %2$s via Mollie (%3$s %4$s) Je moet de betaling handmatig " -"controleren (en productvoorraden aanpassen als je dit gebruikt)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:2166 -#: src/Mollie/WC/Gateway/Abstract.php:2166 -msgctxt "" -"Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid "Mollie - Giftcard details: %1$s %2$s %3$s." -msgstr "Mollie - Details cadeaukaart: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Przelewy24.php:14 +msgid "Przelewy24" +msgstr "Przelewy24" -#: build/src/Mollie/WC/Gateway/Abstract.php:2178 -#: src/Mollie/WC/Gateway/Abstract.php:2178 -msgctxt "" -"Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid " Remainder: %1$s %2$s %3$s." -msgstr " Restant: %1$s %2$s %3$s" +#: ../src/PaymentMethods/Przelewy24.php:15 +msgid "To accept payments via Przelewy24, a customer email is required for every payment." +msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail van de klant vereist." -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. -#: build/src/Mollie/WC/Gateway/Abstract.php:2580 -#: src/Mollie/WC/Gateway/Abstract.php:2580 -msgid " + %1$s %2$s fee might apply" -msgstr " + %1$s %2$s prijstoeslag kan van toepassing zijn" +#: ../src/PaymentMethods/Sofort.php:14 +msgid "SOFORT Banking" +msgstr "SOFORT Banking" -#. translators: Placeholder 1: Fee amount tag. -#: build/src/Mollie/WC/Gateway/Abstract.php:2590 -#: src/Mollie/WC/Gateway/Abstract.php:2590 -msgid " + %1$s%% fee might apply" -msgstr " + %1$s%% prijstoeslag kan van toepassing zijn" +#: ../src/PaymentMethods/Voucher.php:35 +msgid "Voucher" +msgstr "Waardebon" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. -#: build/src/Mollie/WC/Gateway/Abstract.php:2607 -#: src/Mollie/WC/Gateway/Abstract.php:2607 -msgid " + %1$s %2$s + %3$s%% fee might apply" -msgstr " + %1$s %2$s + %3$s%% prijstoeslag kan van toepassing zijn" +#: ../src/PaymentMethods/Voucher.php:54, ../src/Gateway/Voucher/VoucherModule.php:220 +msgid "Select the default products category" +msgstr "Selecteer de categorie standaard producten" -#: build/src/Mollie/WC/Gateway/Abstract.php:2646 -#: src/Mollie/WC/Gateway/Abstract.php:2646 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must " -"be under 500kb." -msgstr "" -"%1$sMollie-betalingen voor WooCommerce%2$s Uploaden bestand niet mogelijk. " -"De grootte mag niet meer bedragen dan 500 kB." +#: ../src/PaymentMethods/Voucher.php:57 +msgid "No category" +msgstr "Geen categorie" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -msgid "Order completed using %1$s payment (%2$s)." -msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)." +#: ../src/PaymentMethods/Voucher.php:58, ../src/Gateway/Voucher/VoucherModule.php:113, ../src/Gateway/Voucher/VoucherModule.php:147, ../src/Gateway/Voucher/VoucherModule.php:178, ../src/Gateway/Voucher/VoucherModule.php:233, ../src/Gateway/Voucher/VoucherModule.php:293 +msgid "Meal" +msgstr "Maaltijd" -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:165 -msgid "" -"Updated subscription from 'On hold' to 'Active' until payment fails, because " -"a SEPA Direct Debit payment takes some time to process." -msgstr "" -"Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, " -"omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is." +#: ../src/PaymentMethods/Voucher.php:59, ../src/Gateway/Voucher/VoucherModule.php:114, ../src/Gateway/Voucher/VoucherModule.php:148, ../src/Gateway/Voucher/VoucherModule.php:181, ../src/Gateway/Voucher/VoucherModule.php:234, ../src/Gateway/Voucher/VoucherModule.php:294 +msgid "Eco" +msgstr "Eco" -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:313 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:313 -msgid "Could not create %s renewal payment." -msgstr "Kon geen %s betalingshernieuwing aanmaken." +#: ../src/PaymentMethods/Voucher.php:60, ../src/Gateway/Voucher/VoucherModule.php:115, ../src/Gateway/Voucher/VoucherModule.php:149, ../src/Gateway/Voucher/VoucherModule.php:184, ../src/Gateway/Voucher/VoucherModule.php:235, ../src/Gateway/Voucher/VoucherModule.php:295 +msgid "Gift" +msgstr "Cadeau" -#: build/src/Mollie/WC/Gateway/Applepay.php:48 -#: src/Mollie/WC/Gateway/Applepay.php:48 -msgid "Apple Pay" -msgstr "Apple Pay" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/PaymentMethods/Voucher.php:64 +msgid "In order to process it, all products in the order must have a category. This selector will assign the default category for the shop products" +msgstr "Daarvoor moeten alle producten uit de bestelling een categorie hebben. Deze keuzemogelijkheid zal de standaard categorie voor de producten uit de shop toewijzen" -#: build/src/Mollie/WC/Gateway/Applepay.php:56 -#: src/Mollie/WC/Gateway/Applepay.php:56 -msgid "To accept payments via Apple Pay" -msgstr "Om betalingen te accepteren via Apple Pay" +#: ../src/SDK/Api.php:49 +msgid "Invalid API key(s). Get them on the %1$sDevelopers page in the Mollie dashboard%2$s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters." +msgstr "Ongeldige API-sleutel(s). Haal deze op van de %1$sDevelopers-pagina in het Mollie-dashboard%2$s. De API-sleutel(s) moeten beginnen met 'live_' of 'test_', ten minste 30 tekens lang zijn en mogen verder geen speciale tekens bevatten." -#: build/src/Mollie/WC/Gateway/Bancontact.php:29 -#: src/Mollie/WC/Gateway/Bancontact.php:29 -msgid "Bancontact" -msgstr "Bancontact" +#: ../src/SDK/Api.php:47 +msgid "No API key provided. Please set your Mollie API keys below." +msgstr "Geen API-sleutel verschaft. Stel je Mollie API-sleutels hieronder in." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:38 -#: build/src/Mollie/WC/Helper/Settings.php:257 -#: src/Mollie/WC/Gateway/BankTransfer.php:38 -#: src/Mollie/WC/Helper/Settings.php:257 -msgid "Activate expiry date setting" -msgstr "Activeer instelling vervaldatum" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:39 -#: build/src/Mollie/WC/Helper/Settings.php:258 -#: src/Mollie/WC/Gateway/BankTransfer.php:39 -#: src/Mollie/WC/Helper/Settings.php:258 -msgid "Enable expiry date for payments" -msgstr "Activeer de vervaldatum voor betalingen" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:40 -#: src/Mollie/WC/Gateway/BankTransfer.php:40 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the payment will expire. This will turn all transactions into payments " -"instead of orders" -msgstr "" -"Activeer deze optie wanneer je het aantal dagen nadat de betaling vervalt in " -"wilt kunnen stellen. Dit zet alle transacties in betalingen om, in plaats " -"van ze in bestellingen te wijzigen." - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:45 -#: build/src/Mollie/WC/Helper/Settings.php:264 -#: build/src/Mollie/WC/Plugin.php:927 src/Mollie/WC/Gateway/BankTransfer.php:45 -#: src/Mollie/WC/Helper/Settings.php:264 src/Mollie/WC/Plugin.php:927 -msgid "Expiry date" -msgstr "Vervaldatum" +#: ../src/Settings/Settings.php:174 +msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb." +msgstr "%1$sMollie-betalingen voor WooCommerce%2$s Uploaden bestand niet mogelijk. De grootte mag niet meer bedragen dan 500 kB." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:47 -#: src/Mollie/WC/Gateway/BankTransfer.php:47 -msgid "" -"Number of DAYS after the payment will expire. Default %d days" -msgstr "" -"Aantal DAGEN nadat de betaling vervalt. Standaard %d dagen." +#: ../src/Settings/Settings.php:216 +msgid "Gateway Disabled" +msgstr "Gateway gedeactiveerd" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:56 -#: src/Mollie/WC/Gateway/BankTransfer.php:56 -msgid "Skip Mollie payment screen" -msgstr "Mollie-betaalscherm overslaan" +#: ../src/Settings/Settings.php:237 +msgid "Return to payments" +msgstr "Ga terug naar betalingen" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:57 -#: src/Mollie/WC/Gateway/BankTransfer.php:57 -msgid "Skip Mollie payment screen when Bank Transfer is selected" -msgstr "" -"Sla Mollie-betaalscherm over wanneer bankoverschrijving is geselecteerd" +#: ../src/Settings/Settings.php:252, ../src/Settings/General/MollieGeneralSettings.php:86 +msgid "Sell to specific countries" +msgstr "Verkopen aan specifieke landen" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:58 -#: src/Mollie/WC/Gateway/BankTransfer.php:58 -msgid "" -"Enable this option if you want to skip redirecting your user to the Mollie " -"payment screen, instead this will redirect your user directly to the " -"WooCommerce order received page displaying instructions how to complete the " -"Bank Transfer payment." -msgstr "" -"Activeer deze optie als je het doorsturen van je gebruiker naar het Mollie-" -"betaalscherm wil overslaan. In plaats daarvan stuurt dit je gebruiker " -"rechtstreeks naar de WooCommerce-pagina bestelling ontvangen met instructies " -"voor het voltooien van de betaling via bankoverschrijving." +#: ../src/Settings/Settings.php:264 +msgid "Choose countries…" +msgstr "Selecteer landen;" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:138 -#: src/Mollie/WC/Gateway/BankTransfer.php:138 -msgid "Bank Transfer" -msgstr "Bankoverdracht" +#: ../src/Settings/Settings.php:265 +msgid "Country" +msgstr "Land" -#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC -#: build/src/Mollie/WC/Gateway/BankTransfer.php:188 -#: build/src/Mollie/WC/Gateway/DirectDebit.php:80 -#: build/src/Mollie/WC/Gateway/Ideal.php:124 -#: build/src/Mollie/WC/Gateway/Sofort.php:64 -#: src/Mollie/WC/Gateway/BankTransfer.php:188 -#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124 -#: src/Mollie/WC/Gateway/Sofort.php:64 -msgid "" -"Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" -msgstr "" -"Betaling voltooid door %1$s (IBAN (ten minste 4 cijfers): %2$s, BIC: %3$s)" +#: ../src/Settings/Settings.php:274 +msgid "Select all" +msgstr "Selecteer alles" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:198 -#: src/Mollie/WC/Gateway/BankTransfer.php:198 -msgid "" -"Please complete your payment by transferring the total amount to the " -"following bank account:" -msgstr "" -"Voltooi je betaling door het totale bedrag over te maken naar de volgende " -"bankrekening:" +#: ../src/Settings/Settings.php:275 +msgid "Select none" +msgstr "Selecteer niets" -#. translators: Placeholder 1: 'Stichting Mollie Payments' -#: build/src/Mollie/WC/Gateway/BankTransfer.php:202 -#: src/Mollie/WC/Gateway/BankTransfer.php:202 -msgid "Beneficiary: %s" -msgstr "Begunstigde: %s" +#: ../src/Settings/Settings.php:470 +msgid "Error" +msgstr "Fout" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:203 -#: src/Mollie/WC/Gateway/BankTransfer.php:203 -msgid "IBAN: %s" -msgstr "IBAN: %s" +#: ../src/Settings/Settings.php:484 +msgid "Mollie status:" +msgstr "Mollie-status:" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:204 -#: src/Mollie/WC/Gateway/BankTransfer.php:204 -msgid "BIC: %s" -msgstr "BIC: %s" +#: ../src/Settings/Settings.php:485 +msgid "Connected" +msgstr "Verbonden" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:209 -#: src/Mollie/WC/Gateway/BankTransfer.php:209 -msgid "Payment reference: %s" -msgstr "Betalingsreferentie: %s." +#: ../src/Settings/SettingsModule.php:171 +msgid "Mollie settings" +msgstr "Mollie-instellingen" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:214 -#: src/Mollie/WC/Gateway/BankTransfer.php:214 -msgid "Please provide the payment reference %s" -msgstr "Vermeld de betalingsreferentie %s" +#: ../src/Settings/SettingsModule.php:177 +msgid "Logs" +msgstr "Logs" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:228 -#: src/Mollie/WC/Gateway/BankTransfer.php:228 -msgid "The payment will expire on %s." -msgstr "De betaling vervalt op %s." +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/SettingsModule.php:187 +msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production." +msgstr "%1$sMollie-betalingen voor WooCommerce%2$s De testmodus is actief, %3$s deactiveer deze%4$s voordat je in productie gaat." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:235 -#: src/Mollie/WC/Gateway/BankTransfer.php:235 -msgid "" -"The payment will expire on %s. Please make sure you " -"transfer the total amount before this date." -msgstr "" -"De betaling vervalt op %s. Zorg ervoor dat je vóór deze " -"datum het totale bedrag overmaakt." +#: ../src/Shared/Data.php:628 +msgid "Item #%1$s stock incremented from %2$s to %3$s." +msgstr "Artikel #%1$s voorraad verhoogd van %2$s naar %3$s." -#: build/src/Mollie/WC/Gateway/Belfius.php:33 -#: src/Mollie/WC/Gateway/Belfius.php:33 -msgid "Belfius Direct Net" -msgstr "Belfius Direct Net" +#. translators: Placeholder 1: Plugin title. Placeholder 2: Min WooCommerce version. Placeholder 3: WooCommerce version used. +#: ../src/Shared/Status.php:74 +msgid "The %1$s plugin requires at least WooCommerce version %2$s, you are using version %3$s. Please update your WooCommerce plugin." +msgstr "De %1$s plugin vereist ten minste WooCommerce versie %2$s, jij gebruikt versie %3$s. Update je WooCommerce plugin." -#: build/src/Mollie/WC/Gateway/Creditcard.php:84 -#: src/Mollie/WC/Gateway/Creditcard.php:84 -msgid "Credit card" -msgstr "Creditcard" +#: ../src/Shared/Status.php:87 +msgid "Mollie API client not installed. Please make sure the plugin is installed correctly." +msgstr "Mollie API client niet geïnstalleerd. Controleer of de plugin correct is geïnstalleerd." -#. translators: Placeholder 1: card holder -#: build/src/Mollie/WC/Gateway/Creditcard.php:136 -#: src/Mollie/WC/Gateway/Creditcard.php:136 -msgid "Payment completed by %s" -msgstr "Betaling voltooid door %s." +#: ../src/Shared/Status.php:96 +msgid "Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable it in your server or ask your webhoster to enable it for you." +msgstr "Mollie-betalingen voor WooCommerce vereisen de JSON extensie voor PHP. Activeer dit op je server of vraag je webhoster om het voor jou te activeren." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:42 -#: src/Mollie/WC/Gateway/DirectDebit.php:42 -msgid "SEPA Direct Debit" -msgstr "SEPA-incasso" +#. translators: Placeholder 1: Min PHP version. Placeholder 2: PHP version used. Placeholder 3: Opening link tag. placeholder 4: Closing link tag. +#: ../src/Shared/Status.php:111 +msgid "Mollie Payments for WooCommerce require PHP %1$s or higher, you have PHP %2$s. Please upgrade and view %3$sthis FAQ%4$s" +msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %1$s of hoger, jij hebt PHP %2$s. Installeer de upgrade en bekijk %3$sdeze FAQ%4$s" -#: build/src/Mollie/WC/Gateway/DirectDebit.php:49 -#: src/Mollie/WC/Gateway/DirectDebit.php:49 -msgid "" -"SEPA Direct Debit is used for recurring payments with WooCommerce " -"Subscriptions, and will not be shown in the WooCommerce checkout for regular " -"payments! You also need to enable iDEAL and/or other \"first\" payment " -"methods if you want to use SEPA Direct Debit." -msgstr "" -"SEPA-incasso wordt gebruikt voor herhaalde betalingen met WooCommerce-" -"abonnementen en je krijgt deze niet te zien in de WooCommerce kassa voor " -"reguliere betalingen! Je moet ook iDEAL en/of andere \"eerste\" " -"betaalmethoden activeren als je SEPA-incasso wilt gebruiken." +#: ../src/Shared/Status.php:123 +msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration." +msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON geactiveerd is. Activeer de 'json' extensie in je PHP-configuratie." -#: build/src/Mollie/WC/Gateway/EPS.php:29 src/Mollie/WC/Gateway/EPS.php:29 -msgid "EPS" -msgstr "EPS" +#: ../src/Shared/Status.php:130 +msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration." +msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL geactiveerd is. Activeer de 'curl' extensie in je PHP-configuratie." -#: build/src/Mollie/WC/Gateway/Giftcard.php:31 -#: src/Mollie/WC/Gateway/Giftcard.php:31 -msgid "Show gift cards dropdown" -msgstr "Toon cadeaubonnen-dropdown" +#: ../src/Shared/Status.php:138 +msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available." +msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn." -#: build/src/Mollie/WC/Gateway/Giftcard.php:33 -#: src/Mollie/WC/Gateway/Giftcard.php:33 -msgid "" -"If you disable this, a dropdown with various gift cards will not be shown in " -"the WooCommerce checkout, so users will select a gift card on the Mollie " -"payment page after checkout." -msgstr "" -"Als je dit deactiveert, zal een dropdown met verschillende cadeaubonnen niet " -"in de WooCommerce- checkout worden getoond, dus gebruikers zullen een " -"cadeaubon selecteren op de Mollie-betaalpagina na het afrekenen." - -#: build/src/Mollie/WC/Gateway/Giftcard.php:37 -#: build/src/Mollie/WC/Gateway/Ideal.php:39 -#: build/src/Mollie/WC/Gateway/Kbc.php:38 src/Mollie/WC/Gateway/Giftcard.php:37 -#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Kbc.php:38 -msgid "Issuers empty option" -msgstr "Optie uitgevers leeg" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSepaRecurringGateway.php:136, ../src/Subscription/MollieSubscriptionGateway.php:468 +msgid "%1$s payment started (%2$s)." +msgstr "%1$s betaling gestart (%2$s)." -#: build/src/Mollie/WC/Gateway/Giftcard.php:39 -#: src/Mollie/WC/Gateway/Giftcard.php:39 -msgid "" -"This text will be displayed as the first option in the gift card dropdown, " -"but only if the above 'Show gift cards dropdown' is enabled." -msgstr "" -"Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar " -"alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd." +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSubscriptionGateway.php:199 +msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process." +msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is." -#: build/src/Mollie/WC/Gateway/Giftcard.php:58 -#: src/Mollie/WC/Gateway/Giftcard.php:58 -msgid "Gift cards" -msgstr "Cadeaubonnen" +#: ../src/Subscription/MollieSubscriptionGateway.php:299 +msgid "The customer (%s) could not be used or found. " +msgstr "De klant (%s) kon niet worden gebruikt of gevonden. " -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Giftcard.php:74 -#: src/Mollie/WC/Gateway/Giftcard.php:74 -msgid "Select your gift card" -msgstr "Selecteer je cadeaubon" +#: ../src/Subscription/MollieSubscriptionGateway.php:326 +msgid "The customer (%s) does not have a valid mandate." +msgstr "De klant (%s) beschikt niet over een geldig mandaat." -#: build/src/Mollie/WC/Gateway/Giropay.php:29 -#: src/Mollie/WC/Gateway/Giropay.php:29 -msgid "Giropay" -msgstr "Giropay" +#. translators: Placeholder 1: Payment method title +#: ../src/Subscription/MollieSubscriptionGateway.php:366 +msgid "Could not create %s renewal payment." +msgstr "Kon geen %s betalingshernieuwing aanmaken." -#: build/src/Mollie/WC/Gateway/Ideal.php:33 src/Mollie/WC/Gateway/Ideal.php:33 -msgid "Show iDEAL banks dropdown" -msgstr "Toon iDEAL-banken dropdown" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Subscription/SubscriptionModule.php:106 +msgid "%1$s payment failed (%2$s)." +msgstr "%1$s betaling mislukt (%2$s)." -# MS: Datei sagt formal, Satz müsste sein: 'Als u dit deactiveert, zal een dropdown bij verschillende iDEAL-banken niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een iDEAL-bank selecteren op de Mollie-betaalpagina na het afrekenen.' #query -#: build/src/Mollie/WC/Gateway/Ideal.php:35 src/Mollie/WC/Gateway/Ideal.php:35 -msgid "" -"If you disable this, a dropdown with various iDEAL banks will not be shown " -"in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie " -"payment page after checkout." -msgstr "" -"Als je dit deactiveert, zal een dropdown bij verschillende iDEAL-banken niet " -"in de WooCommerce- checkout worden getoond, dus gebruikers zullen een iDEAL-" -"bank selecteren op de Mollie-betaalpagina na het afrekenen." +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:42 +msgid "%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sServer voldoet niet aan Apple vereisten%2$s Controleer %3$sde pagina met Apple serververeisten%4$s om dit op te lossen, zodat de Apple Pay betaalknop werkt" -#: build/src/Mollie/WC/Gateway/Ideal.php:41 src/Mollie/WC/Gateway/Ideal.php:41 -msgid "" -"This text will be displayed as the first option in the iDEAL issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above 'Show iDEAL banks dropdown' is enabled." -msgstr "" -"Deze tekst wordt als eerste optie in de iDEAL issuers drop down weergegeven, " -"als er niets is ingevuld, wordt \"Selecteer je bank\" getoond. Alleen als " -"het bovenstaande ''Toon iDEAL-banken dropdown'' is geactiveerd." +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:58 +msgid "%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sApple Pay valideringsfout%2$s Controleer %3$sde pagina met Apple serververeisten%4$s om dit op te lossen, zodat de Apple Pay betaalknop werkt" -#: build/src/Mollie/WC/Gateway/Ideal.php:60 src/Mollie/WC/Gateway/Ideal.php:60 -msgid "iDEAL" -msgstr "iDEAL" +#: ../src/Gateway/Voucher/VoucherModule.php:78, ../src/Settings/Page/MollieSettingsPage.php:49, ../src/Settings/Page/MollieSettingsPage.php:182 +msgid "Mollie Settings" +msgstr "Mollie-instellingen" -# MS: Datei sagt formal, Satz müsste sein: 'Selecteer uw bank' #query -#. translators: Default iDEAL description, displayed above issuer drop down -#. translators: Default KBC/CBC dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Ideal.php:76 -#: build/src/Mollie/WC/Gateway/Kbc.php:75 src/Mollie/WC/Gateway/Ideal.php:76 -#: src/Mollie/WC/Gateway/Kbc.php:75 -msgid "Select your bank" -msgstr "Selecteer je bank" +#: ../src/Gateway/Voucher/VoucherModule.php:108, ../src/Gateway/Voucher/VoucherModule.php:143, ../src/Gateway/Voucher/VoucherModule.php:166 +msgid "Mollie Voucher Category" +msgstr "Mollie-waardeboncategorie" -#: src/Mollie/WC/Gateway/In3:29 -msgid "in3" -msgstr "in3" +#: ../src/Gateway/Voucher/VoucherModule.php:111, ../src/Gateway/Voucher/VoucherModule.php:145, ../src/Gateway/Voucher/VoucherModule.php:170 +msgid "--Please choose an option--" +msgstr "--Kies een optie--" -#: build/src/Mollie/WC/Gateway/Kbc.php:32 src/Mollie/WC/Gateway/Kbc.php:32 -msgid "Show KBC/CBC banks dropdown" -msgstr "Toon KBC/CBC-banken dropdown" +#: ../src/Gateway/Voucher/VoucherModule.php:112, ../src/Gateway/Voucher/VoucherModule.php:146, ../src/Gateway/Voucher/VoucherModule.php:175, ../src/Gateway/Voucher/VoucherModule.php:232, ../src/Gateway/Voucher/VoucherModule.php:292 +msgid "No Category" +msgstr "Geen categorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:34 src/Mollie/WC/Gateway/Kbc.php:34 -msgid "" -"If you disable this, a dropdown with various KBC/CBC banks will not be shown " -"in the WooCommerce checkout, so users will select a KBC/CBC bank on the " -"Mollie payment page after checkout." -msgstr "" -"Als je dit deactiveert, zal een dropdown bij verschillende KBC/CBC-banken " -"niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een " -"KBC/CBC-bank selecteren op de Mollie-betaalpagina na het afrekenen." +#: ../src/Gateway/Voucher/VoucherModule.php:151, ../src/Gateway/Voucher/VoucherModule.php:188 +msgid "Select a voucher category to apply to all products with this category" +msgstr "Selecteer een waardeboncategorie om toe te passen op alle producten met deze categorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:40 src/Mollie/WC/Gateway/Kbc.php:40 -msgid "" -"This text will be displayed as the first option in the KBC/CBC issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above ''Show KBC/CBC banks dropdown' is enabled." -msgstr "" -"Deze tekst wordt weergegeven als eerste optie in de KBC/CBC-uitgevers drop-" -"down, als er niets wordt ingevoerd, wordt „Kies je bank\" weergegeven. " -"Alleen als het bovenstaande ''Toon KBC/CBC-banken dropdown'' is geactiveerd." +#: ../src/Gateway/Voucher/VoucherModule.php:224 +msgid "Products voucher category" +msgstr "Categorie producten waardebon" -#: build/src/Mollie/WC/Gateway/Kbc.php:59 src/Mollie/WC/Gateway/Kbc.php:59 -msgid "KBC/CBC Payment Button" -msgstr "KBC/CBC Betaalknop" +#: ../src/Gateway/Voucher/VoucherModule.php:231, ../src/Gateway/Voucher/VoucherModule.php:291 +msgid "Same as default category" +msgstr "Zelfde als standaardcategorie" -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -msgid "Klarna Pay later" -msgstr "Klarna betaal later" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Gateway/Voucher/VoucherModule.php:241 +msgid "In order to process it, all products in the order must have a category. To disable the product from voucher selection select \"No category\" option." +msgstr "Daarvoor moeten alle producten uit de bestelling een categorie hebben. Selecteer ''Geen categorie'' om te voorkomen dat het product voor waardebonnen kan worden gekozen." -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -msgid "" -"To accept payments via Klarna, all default WooCommerce checkout fields " -"should be enabled and required." -msgstr "" -"Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-" -"afrekenvelden geactiveerd en vereist zijn." +#: ../src/Gateway/Voucher/VoucherModule.php:288 +msgid "Mollie Voucher category" +msgstr "Mollie-waardeboncategorie" -# MS: Ich war mir nicht sicher ob hier übersetzt werden soll, oder ob 'Klarna Pay Now' als solches ein fester Titel ist, der im NL auch im Englischen übernommen wird. Gleiche Frage für Segment 315 #query -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -msgid "Klarna Pay now" -msgstr "Klarna betaal nu" +#: ../src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (Apple Pay transaction ID: %3$s)" +msgstr "Betaling voltooid door %1$s - %2$s (Apple Pay transactie-ID: %3$s)" -# MS: = Konkordanz NL Übersetzung. Oder soll es einfach 'Slice it' bleiben? #query -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -msgid "Klarna Slice it" -msgstr "Klarna betaal in 3 delen" +#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:26, ../src/PaymentMethods/InstructionStrategies/DirectdebitInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/IdealInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/SofortInstructionStrategy.php:20 +msgid "Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" +msgstr "Betaling voltooid door %1$s (IBAN (laatste 4 cijfers): %2$s, BIC: %3$s)" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: build/src/Mollie/WC/Plugin.php:508 src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: src/Mollie/WC/Plugin.php:508 -msgid "Select the default products category" -msgstr "Kies de categorie standaard producten" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:35 +msgid "Please complete your payment by transferring the total amount to the following bank account:" +msgstr "Voltooi je betaling door het totale bedrag over te maken naar de volgende bankrekening:" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:46 -#: src/Mollie/WC/Gateway/Mealvoucher.php:46 -msgid "" -"In order to process it, all products in the order must have a category. This " -"selector will assign the default category for the shop products" -msgstr "" -"Daarvoor moeten alle producten uit de bestelling een categorie hebben. Deze " -"keuzeschakelaar zal de standaard categorie voor de producten uit de shop " -"toewijzen" +#. translators: Placeholder 1: 'Stichting Mollie Payments' +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:39 +msgid "Beneficiary: %s" +msgstr "Begunstigde: %s" -# MS: Oder Voucher! #query -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:66 -#: src/Mollie/WC/Gateway/Mealvoucher.php:66 -msgid "Voucher" -msgstr "Waardebon" +#. translators: Placeholder 1: Payment details bank account +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:41 +msgid "IBAN: %s" +msgstr "IBAN: %s" -# MS: eigentlich könnte man hier einfach 'voucher' sagen, sagen wir im NL auch #query -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:82 -#: src/Mollie/WC/Gateway/Mealvoucher.php:82 -msgid "voucher" -msgstr "waardebon" +#. translators: Placeholder 1: Payment details bic +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:43 +msgid "BIC: %s" +msgstr "BIC: %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:36 -#: src/Mollie/WC/Gateway/MyBank.php:36 -msgid "MyBank" -msgstr "MyBank" +#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:50 +msgid "Please provide the payment reference %s" +msgstr "Vermeld de betalingsreferentie %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:44 -#: src/Mollie/WC/Gateway/MyBank.php:44 -msgid "To accept payments via MyBank" -msgstr "Om betalingen te accepteren via MyBank" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:47 +msgid "Payment reference: %s" +msgstr "Betalingsreferentie: %s." -#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer Account number -#: build/src/Mollie/WC/Gateway/MyBank.php:73 -#: src/Mollie/WC/Gateway/MyBank.php:73 -msgid "Payment completed by %1$s - %2$s" -msgstr "Betaling voltooid door %1$s - %2$s" +#. translators: Placeholder 1: Payment expiry date +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:66 +msgid "The payment will expire on %s. Please make sure you transfer the total amount before this date." +msgstr "De betaling vervalt op %s. Zorg ervoor dat je vóór deze datum het totale bedrag overmaakt." -#: build/src/Mollie/WC/Gateway/PayPal.php:43 -#: src/Mollie/WC/Gateway/PayPal.php:43 -msgid "PayPal" -msgstr "PayPal" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:60 +msgid "The payment will expire on %s." +msgstr "De betaling vervalt op %s." -#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID -#: build/src/Mollie/WC/Gateway/PayPal.php:74 -#: build/src/Mollie/WC/Payment/Object.php:695 -#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695 -msgid "" -"Payment completed by %s - %s (PayPal transaction ID: %s)" -msgstr "" -"Betaling voltooid door %s - %s (PayPal transactie-ID: %s)" +#. translators: Placeholder 1: card holder +#: ../src/PaymentMethods/InstructionStrategies/CreditcardInstructionStrategy.php:20 +msgid "Payment completed by %s" +msgstr "Betaling voltooid door %s" -#: build/src/Mollie/WC/Gateway/Paysafecard.php:20 -#: src/Mollie/WC/Gateway/Paysafecard.php:20 -msgid "paysafecard" -msgstr "paysafecard" +#. translators: Placeholder 1: payment method +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:34 +msgid "Payment completed with %s" +msgstr "Betaling voltooid met %s" -#: build/src/Mollie/WC/Gateway/Przelewy24.php:33 -#: src/Mollie/WC/Gateway/Przelewy24.php:33 -msgid "Przelewy24" -msgstr "Przelewy24" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:26 +msgid "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant." +msgstr "We hebben geen definitieve betalingsstatus ontvangen. Je ontvangt een e-mail zodra wij een bevestiging van de bank/handelaar hebben ontvangen." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:40 -#: src/Mollie/WC/Gateway/Przelewy24.php:40 -msgid "" -"To accept payments via Przelewy24, a customer email is required for every " -"payment." -msgstr "" -"Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail " -"van de klant vereist." +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:20 +msgid "We have not received a definite payment status." +msgstr "We hebben geen definitieve betalingsstatus ontvangen." + +#: ../src/PaymentMethods/InstructionStrategies/MybankInstructionStrategy.php:19 +msgid "Payment completed by %1$s - %2$s" +msgstr "Betaling voltooid door %1$s - %2$s" #. translators: Placeholder 1: customer billing email -#: build/src/Mollie/WC/Gateway/Przelewy24.php:64 -#: src/Mollie/WC/Gateway/Przelewy24.php:64 +#: ../src/PaymentMethods/InstructionStrategies/Przelewy24InstructionStrategy.php:20 msgid "Payment completed by %s." msgstr "Betaling voltooid door %s." -#: build/src/Mollie/WC/Gateway/Sofort.php:33 -#: src/Mollie/WC/Gateway/Sofort.php:33 -msgid "SOFORT Banking" -msgstr "SOFORT Banking" - -#: build/src/Mollie/WC/Helper/Api.php:40 src/Mollie/WC/Helper/Api.php:40 -msgid "No API key provided. Please set your Mollie API keys below." -msgstr "Geen API-sleutel geleverd. Plaats je Mollie API-sleutels hieronder." - -#: build/src/Mollie/WC/Helper/Api.php:42 src/Mollie/WC/Helper/Api.php:42 -msgid "" -"Invalid API key(s). Get them on the %sDevelopers page in the Mollie dashboard" -"%s. The API key(s) must start with 'live_' or 'test_', be at least 30 " -"characters and must not contain any special characters." -msgstr "" -"Ongeldige API-sleutel(s). Haal deze op van de %sDevelopers-pagina in het " -"Mollie-dashboard%s. De API-sleutel(s) moeten beginnen met 'live_' of " -"'test_', ten minste 30 tekens lang zijn en mogen geen speciale tekens " -"bevatten." - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -msgid "" -"%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server " -"requirements page%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sServer voldoet niet aan Apple vereisten%2$s Controleer %3$sde pagina met " -"Apple serververeisten%4$s om dit op te lossen, zodat de Apple Pay betaalknop " -"werkt" - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -msgid "" -"%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page" -"%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sApple Pay valideringsfout%2$s Controleer %3$sde pagina met Apple " -"serververeisten%4$s om dit op te lossen, zodat de Apple Pay betaalknop werkt" +#. translators: Placeholder 1: Lock icon. Placeholder 2: Mollie logo. +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:25 +msgid "%1$s Secure payments provided by %2$s" +msgstr "%1$s Beveiligde betalingen verschaft door %2$s" -#: build/src/Mollie/WC/Helper/OrderLines.php:499 -#: src/Mollie/WC/Helper/OrderLines.php:499 -msgid "Shipping" -msgstr "Verzending" +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:41 +msgid "Secure payments provided by" +msgstr "Beveiligde betalingen verschaft door" -#: build/src/Mollie/WC/Helper/Settings.php:61 -#: src/Mollie/WC/Helper/Settings.php:61 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:34 msgid "%s display settings" msgstr "%s weergave-instellingen" -#: build/src/Mollie/WC/Helper/Settings.php:99 -#: src/Mollie/WC/Helper/Settings.php:99 +#: ../src/Settings/General/MollieGeneralSettings.php:71 msgid "Display logo on checkout page. Default enabled" -msgstr "Laat logo op de betaalpagina zien. Standaard ingeschakeld" +msgstr "Toon logo op de betaalpagina. Standaard geactiveerd" -#: build/src/Mollie/WC/Helper/Settings.php:107 -#: src/Mollie/WC/Helper/Settings.php:107 +#: ../src/Settings/General/MollieGeneralSettings.php:79 msgid "Sales countries" msgstr "Verkooplanden" -#: build/src/Mollie/WC/Helper/Settings.php:125 -#: src/Mollie/WC/Helper/Settings.php:125 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:99 msgid "%s custom logo" msgstr "%s aangepast logo" -#: build/src/Mollie/WC/Helper/Settings.php:132 -#: src/Mollie/WC/Helper/Settings.php:132 +#: ../src/Settings/General/MollieGeneralSettings.php:103 msgid "Enable custom logo" msgstr "Activeer aangepast logo" -#: build/src/Mollie/WC/Helper/Settings.php:137 -#: src/Mollie/WC/Helper/Settings.php:137 -msgid "" -"Enable the feature to add a custom logo for this gateway. This feature will " -"have precedence over other logo options." -msgstr "" -"Activeer de functie om een aangepast logo toe te voegen aan deze gateway. " -"Deze functie is preferent aan andere opties voor het logo." - -#: build/src/Mollie/WC/Helper/Settings.php:143 -#: src/Mollie/WC/Helper/Settings.php:143 +#: ../src/Settings/General/MollieGeneralSettings.php:109 +msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options." +msgstr "Activeer de functie om een aangepast logo toe te voegen aan deze gateway. Deze functie heeft voorrang op andere opties voor het logo." + +#: ../src/Settings/General/MollieGeneralSettings.php:115 msgid "Upload custom logo" msgstr "Upload aangepast logo" -#: build/src/Mollie/WC/Helper/Settings.php:150 -#: src/Mollie/WC/Helper/Settings.php:150 +#: ../src/Settings/General/MollieGeneralSettings.php:123 msgid "Upload a custom icon for this gateway. The feature must be enabled." -msgstr "" -"Upload een aangepast pictogram voor deze gateway. De functie moet " -"geactiveerd zijn." +msgstr "Upload een aangepast pictogram voor deze gateway. De functie moet geactiveerd zijn." -#: build/src/Mollie/WC/Helper/Settings.php:159 -#: src/Mollie/WC/Helper/Settings.php:159 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:134 msgid "%s surcharge" msgstr "%s prijstoeslag" -#: build/src/Mollie/WC/Helper/Settings.php:166 -#: src/Mollie/WC/Helper/Settings.php:166 +#: ../src/Settings/General/MollieGeneralSettings.php:139 msgid "Payment Surcharge" msgstr "Betalingstoeslag" -#: build/src/Mollie/WC/Helper/Settings.php:172 -#: src/Mollie/WC/Helper/Settings.php:172 +#: ../src/Settings/General/MollieGeneralSettings.php:145 msgid "No fee" -msgstr "Geen kosten" +msgstr "Geen vergoeding" -#: build/src/Mollie/WC/Helper/Settings.php:176 -#: src/Mollie/WC/Helper/Settings.php:176 +#: ../src/Settings/General/MollieGeneralSettings.php:149 msgid "Fixed fee" -msgstr "Vaste kosten" +msgstr "Vaste vergoeding" -#: build/src/Mollie/WC/Helper/Settings.php:180 -#: src/Mollie/WC/Helper/Settings.php:180 +#: ../src/Settings/General/MollieGeneralSettings.php:153 msgid "Percentage" msgstr "Percentage" -#: build/src/Mollie/WC/Helper/Settings.php:184 -#: src/Mollie/WC/Helper/Settings.php:184 +#: ../src/Settings/General/MollieGeneralSettings.php:157 msgid "Fixed fee and percentage" -msgstr "Vaste kosten en percentage" +msgstr "Vaste vergoeding en percentage" -#: build/src/Mollie/WC/Helper/Settings.php:190 -#: src/Mollie/WC/Helper/Settings.php:190 +#: ../src/Settings/General/MollieGeneralSettings.php:163 msgid "Choose a payment surcharge for this gateway" msgstr "Kies een betalingstoeslag voor deze gateway" -#: build/src/Mollie/WC/Helper/Settings.php:197 -#: src/Mollie/WC/Helper/Settings.php:197 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:172 msgid "Payment surcharge fixed amount in %s" msgstr "Betalingstoeslag vast bedrag in %s" -#: build/src/Mollie/WC/Helper/Settings.php:200 -#: src/Mollie/WC/Helper/Settings.php:200 +#: ../src/Settings/General/MollieGeneralSettings.php:176 msgid "Control the fee added on checkout. Default 0.00" -msgstr "" -"Controle van de kosten die zijn toegevoegd aan de betaling. Standaard 0.00" +msgstr "Controle van de vergoeding toegevoegd aan de betaling. Standaard 0.00" -#: build/src/Mollie/WC/Helper/Settings.php:210 -#: src/Mollie/WC/Helper/Settings.php:210 +#: ../src/Settings/General/MollieGeneralSettings.php:186 msgid "Payment surcharge percentage amount %" -msgstr "Hoogte % prijstoeslag betaling" +msgstr "Betalingstoeslag aantal percentage %" -#: build/src/Mollie/WC/Helper/Settings.php:213 -#: src/Mollie/WC/Helper/Settings.php:213 +#: ../src/Settings/General/MollieGeneralSettings.php:189 msgid "Control the percentage fee added on checkout. Default 0.00" -msgstr "" -"Controle van de procentuele kosten, die zijn toegevoegd aan de betaling. " -"Standaard 0.00" +msgstr "Controle van de procentuele vergoeding toegevoegd aan de betaling. Standaard 0.00" -#: build/src/Mollie/WC/Helper/Settings.php:223 -#: src/Mollie/WC/Helper/Settings.php:223 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:200 msgid "Payment surcharge limit in %s" msgstr "Limiet betalingstoeslag in %s" -#: build/src/Mollie/WC/Helper/Settings.php:226 -#: src/Mollie/WC/Helper/Settings.php:226 +#: ../src/Settings/General/MollieGeneralSettings.php:203 msgid "Limit the maximum fee added on checkout. Default 0, means no limit" -msgstr "" -"Limiet van de maximum kosten, die zijn toegevoegd aan de betaling. Standaard " -"0, ofwel geen limiet" +msgstr "Limiet van de maximum vergoeding toegevoegd aan de betaling. Standaard 0, ofwel geen limiet" -#: build/src/Mollie/WC/Helper/Settings.php:236 -#: src/Mollie/WC/Helper/Settings.php:236 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:214 msgid "Surcharge only under this limit, in %s" msgstr "Prijstoeslag alleen onder deze limiet, als %s" -#: build/src/Mollie/WC/Helper/Settings.php:239 -#: src/Mollie/WC/Helper/Settings.php:239 -msgid "" -"Maximum order amount to apply surcharge. If the order is above this number " -"the surcharge will not apply. Default 0, means no maximum" -msgstr "" -"Maximaal bestelbedrag voor gebruik prijstoeslag. Wanneer de bestelling boven " -"dit bedrag komt, geldt de prijstoeslag niet. Standaard 0, dus geen maximum" +#: ../src/Settings/General/MollieGeneralSettings.php:217 +msgid "Maximum order amount to apply surcharge. If the order is above this number the surcharge will not apply. Default 0, means no maximum" +msgstr "Maximaal bestelbedrag voor toepassing prijstoeslag. Als de bestelling boven dit bedrag komt, is de prijstoeslag niet van toepassing. Standaard 0, ofwel geen maximum" -#: build/src/Mollie/WC/Helper/Settings.php:250 -#: src/Mollie/WC/Helper/Settings.php:250 +#. translators: Placeholder 1: gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:230 msgid "%s advanced" msgstr "%s geavanceerd" -#: build/src/Mollie/WC/Helper/Settings.php:259 -#: src/Mollie/WC/Helper/Settings.php:259 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the order will expire." -msgstr "" -"Activeer deze optie wanneer je het aantal dagen nadat de bestelling vervalt " -"in wilt kunnen stellen." +#: ../src/Settings/General/MollieGeneralSettings.php:237 +msgid "Enable this option if you want to be able to set the time after which the order will expire." +msgstr "Activeer deze optie, als je de termijn wilt kunnen instellen na dewelke de bestelling vervalt." -#: build/src/Mollie/WC/Helper/Settings.php:267 -#: src/Mollie/WC/Helper/Settings.php:267 -msgid "" -"Number of MINUTES after the order will expire and will be canceled at Mollie " -"and WooCommerce. A value of 0 means no expiry date will be considered." -msgstr "" -"Aantal MINUTEN voordat de bestelling bij Mollie en WooCommerce komt te " -"vervallen en wordt geannuleerd. Een waarde van 0 betekent dat er geen " -"vervaldatum is." +#: ../src/Settings/General/MollieGeneralSettings.php:245 +msgid "Number of MINUTES after the order will expire and will be canceled at Mollie and WooCommerce. A value of 0 means no expiry time will be considered." +msgstr "Aantal MINUTEN voordat de bestelling bij Mollie en WooCommerce komt te vervallen en wordt geannuleerd. Een waarde van 0 betekent dat er geen vervaltermijn is." -#: build/src/Mollie/WC/Helper/Settings.php:280 -#: src/Mollie/WC/Helper/Settings.php:280 +#: ../src/Settings/General/MollieGeneralSettings.php:258 msgid "Initial order status" msgstr "Initiële bestelstatus" -#: build/src/Mollie/WC/Helper/Settings.php:299 -#: src/Mollie/WC/Helper/Settings.php:299 -msgid "" -"Some payment methods take longer than a few hours to complete. The initial " -"order state is then set to '%s'. This ensures the order is not cancelled " -"when the setting %s is used." -msgstr "" -"Sommige betaalmethoden duren langer dan een paar uur om te voltooien. De " -"initiële bestelstatus is dan ingesteld op '%s'. Dit zorgt ervoor dat de " -"bestelling niet wordt geannuleerd wanneer de instelling %s wordt gebruikt." - -#: build/src/Mollie/WC/Helper/Settings.php:494 -#: src/Mollie/WC/Helper/Settings.php:494 -msgid "Error" -msgstr "Fout" - -#: build/src/Mollie/WC/Helper/Settings.php:507 -#: src/Mollie/WC/Helper/Settings.php:507 -msgid "Mollie status:" -msgstr "Mollie-status:" - -#: build/src/Mollie/WC/Helper/Settings.php:508 -#: src/Mollie/WC/Helper/Settings.php:508 -msgid "Connected" -msgstr "Verbonden" - -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: src/Mollie/WC/Helper/Settings.php:551 -msgid "Gateway enabled" -msgstr "Gateway geactiveerd" - -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Gateway disabled" -msgstr "Gateway gedeactiveerd" - -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Disabled" -msgstr "Uitgeschakeld" - -#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:563 -#: src/Mollie/WC/Helper/Settings.php:563 -msgid "The following payment methods are activated in your %sMollie profile%s:" -msgstr "De volgende betaalmethoden zijn geactiveerd in je %sMollie-profiel%s:" - -#: build/src/Mollie/WC/Helper/Settings.php:572 -#: src/Mollie/WC/Helper/Settings.php:572 -msgid "Refresh" -msgstr "Vernieuwen" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Settings/General/MollieGeneralSettings.php:277 +msgid "Some payment methods take longer than a few hours to complete. The initial order state is then set to '%1$s'. This ensures the order is not cancelled when the setting %2$s is used." +msgstr "Sommige betaalmethoden duren langer dan een paar uur om te voltooien. De initiële bestelstatus is dan ingesteld op '%1$s'. Dit zorgt ervoor dat de bestelling niet wordt geannuleerd wanneer de instelling %2$s wordt gebruikt." -#: build/src/Mollie/WC/Helper/Settings.php:591 -#: src/Mollie/WC/Helper/Settings.php:591 -msgid "Edit" -msgstr "Bewerken" +#: ../src/Settings/General/MollieGeneralSettings.php:286 +msgid "Hold Stock (minutes)" +msgstr "Houd voorraad aan (minuten)" -#: build/src/Mollie/WC/Helper/Settings.php:624 -#: src/Mollie/WC/Helper/Settings.php:624 -msgid "" -"Quickly integrate all major payment methods in WooCommerce, wherever you " -"need them." -msgstr "" -"Integreer snel al je belangrijkste betalingsmethodes in WooCommerce waar dit " -"nodig is." +#: ../src/Settings/Page/MollieSettingsPage.php:111 +msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them." +msgstr "Integreer snel en daar waar nodig alle belangrijke betaalmethodes in WooCommerce." -#: build/src/Mollie/WC/Helper/Settings.php:625 -#: src/Mollie/WC/Helper/Settings.php:625 -msgid "" -" Simply drop them ready-made into your WooCommerce webshop with this " -"powerful plugin by Mollie." -msgstr "" -" Drop deze eenvoudig kant en klaar in je WooCommerce webshop met deze " -"krachtige plugin van Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:115 +msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie." +msgstr " Plaats ze eenvoudigweg kant-en-klaar in je WooCommerce webshop met deze krachtige plugin van Mollie." -#: build/src/Mollie/WC/Helper/Settings.php:626 -#: src/Mollie/WC/Helper/Settings.php:626 +#: ../src/Settings/Page/MollieSettingsPage.php:119 msgid " Mollie is dedicated to making payments better for WooCommerce. " -msgstr " Mollie, om betalingen van WooCommerce te verbeteren. " +msgstr " Mollie wil betalingen voor WooCommerce beter maken. " -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:123 msgid "Please go to" msgstr "Ga naar" -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:126 msgid " the signup page" msgstr " de aanmeldpagina" -#: build/src/Mollie/WC/Helper/Settings.php:628 -#: src/Mollie/WC/Helper/Settings.php:628 -msgid "" -" to create a new Mollie account and start receiving payments in a couple of " -"minutes. " -msgstr "" -" om een nieuw Mollie-account aan te maken en binnen enkele minuten " -"betalingen te ontvangen. " +#: ../src/Settings/Page/MollieSettingsPage.php:130 +msgid " to create a new Mollie account and start receiving payments in a couple of minutes. " +msgstr " om een nieuw Mollie-account aan te maken en betalingen te ontvangen binnen een paar minuten. " -#: build/src/Mollie/WC/Helper/Settings.php:629 -#: src/Mollie/WC/Helper/Settings.php:629 +#: ../src/Settings/Page/MollieSettingsPage.php:134 msgid "Contact " msgstr "Neem contact op " -#: build/src/Mollie/WC/Helper/Settings.php:630 -#: src/Mollie/WC/Helper/Settings.php:630 +#: ../src/Settings/Page/MollieSettingsPage.php:138 msgid " if you have any questions or comments about this plugin." msgstr " bij vragen of opmerkingen over deze plugin." -#: build/src/Mollie/WC/Helper/Settings.php:631 -#: src/Mollie/WC/Helper/Settings.php:631 -msgid "" -"Our pricing is always per transaction. No startup fees, no monthly fees, and " -"no gateway fees. No hidden fees, period." -msgstr "" -"Onze prijsstelling geldt altijd per transactie. Geen opstartkosten, geen " -"maandelijkse kosten, geen gatewaykosten. Geen verborgen kosten!" +#: ../src/Settings/Page/MollieSettingsPage.php:142 +msgid "Our pricing is always per transaction. No startup fees, no monthly fees, and no gateway fees. No hidden fees, period." +msgstr "Onze prijsstelling geldt altijd per transactie. Geen opstartvergoeding, geen maandelijkse vergoeding, geen gateway vergoeding. Geen verborgen vergoeding!" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:148 msgid "Plugin Documentation" -msgstr "Plugin documentatie" +msgstr "Plugin-documentatie" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:151 msgid "Contact Support" -msgstr "Neem contact op met onze support afdeling" +msgstr "Neem contact op met de supportdienst" -#: build/src/Mollie/WC/Helper/Settings.php:644 -#: src/Mollie/WC/Helper/Settings.php:644 +#: ../src/Settings/Page/MollieSettingsPage.php:163 msgid "Log plugin events." msgstr "Log plugin-gebeurtenissen" -#: build/src/Mollie/WC/Helper/Settings.php:650 -#: src/Mollie/WC/Helper/Settings.php:650 +#. translators: Placeholder 1: Location of the log files +#: ../src/Settings/Page/MollieSettingsPage.php:170 msgid "Log files are saved to %s" msgstr "Logbestanden worden opgeslagen in %s" -#: build/src/Mollie/WC/Helper/Settings.php:663 -#: build/src/Mollie/WC/Plugin.php:379 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:11 -#: src/Mollie/WC/Helper/Settings.php:663 src/Mollie/WC/Plugin.php:379 -#: src/Mollie/WC/Settings/Page/Mollie.php:11 -msgid "Mollie Settings" -msgstr "Mollie-instellingen" - -#: build/src/Mollie/WC/Helper/Settings.php:670 -#: src/Mollie/WC/Helper/Settings.php:670 +#: ../src/Settings/Page/MollieSettingsPage.php:192 msgid "Live API key" msgstr "Live API-sleutel" #. translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:675 -#: build/src/Mollie/WC/Helper/Settings.php:697 -#: src/Mollie/WC/Helper/Settings.php:675 src/Mollie/WC/Helper/Settings.php:697 -msgid "" -"The API key is used to connect to Mollie. You can find your %s API key in your %sMollie profile%s" -msgstr "" -"De API-sleutel wordt gebruikt om verbinding te maken met Mollie. Je vindt je " -"%s API-sleutel in je %sMollie-profiel%s" +#: ../src/Settings/Page/MollieSettingsPage.php:197, ../src/Settings/Page/MollieSettingsPage.php:230 +msgid "The API key is used to connect to Mollie. You can find your %1$s API key in your %2$sMollie account%3$s" +msgstr "De API-sleutel wordt gebruikt om verbinding te maken met Mollie. Je vindt je %1$s API-sleutel in je %2$sMollie-account%3$s" -#: build/src/Mollie/WC/Helper/Settings.php:681 -#: src/Mollie/WC/Helper/Settings.php:681 +#: ../src/Settings/Page/MollieSettingsPage.php:208 msgid "Live API key should start with live_" msgstr "Live API-sleutel moet beginnen met live_" -#: build/src/Mollie/WC/Helper/Settings.php:685 -#: src/Mollie/WC/Helper/Settings.php:685 +#: ../src/Settings/Page/MollieSettingsPage.php:215 msgid "Enable test mode" msgstr "Activeer de testmodus" -#: build/src/Mollie/WC/Helper/Settings.php:688 -#: src/Mollie/WC/Helper/Settings.php:688 -msgid "" -"Enable test mode if you want to test the plugin without using real payments." -msgstr "" -"Activeer de testmodus als je de plugin wil testen zonder echte betalingen te " -"gebruiken." +#: ../src/Settings/Page/MollieSettingsPage.php:218 +msgid "Enable test mode if you want to test the plugin without using real payments." +msgstr "Activeer de testmodus als je de plugin wilt testen zonder echte betalingen te gebruiken." -#: build/src/Mollie/WC/Helper/Settings.php:692 -#: src/Mollie/WC/Helper/Settings.php:692 +#: ../src/Settings/Page/MollieSettingsPage.php:225 msgid "Test API key" msgstr "Test API-sleutel" -#: build/src/Mollie/WC/Helper/Settings.php:703 -#: src/Mollie/WC/Helper/Settings.php:703 +#: ../src/Settings/Page/MollieSettingsPage.php:241 msgid "Test API key should start with test_" msgstr "Test API-sleutel moet beginnen met test_" -#: build/src/Mollie/WC/Helper/Settings.php:707 -#: src/Mollie/WC/Helper/Settings.php:707 +#: ../src/Settings/Page/MollieSettingsPage.php:248 msgid "Debug Log" msgstr "Debug-log" -#: build/src/Mollie/WC/Helper/Settings.php:810 -#: src/Mollie/WC/Helper/Settings.php:810 -msgid "" -"You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. " -"Enable SEPA Direct Debit if you want to allow customers to pay subscriptions " -"with iDEAL and/or other \"first\" payment methods." -msgstr "" -"Je hebt WooCommerce Abonnementen geactiveerd, maar geen SEPA-incasso. " -"Activeer SEPA-incasso als je klanten wilt toestaan abonnementen met iDEAL en/" -"of andere \"eerste\" betaalmethoden te betalen." - -#: build/src/Mollie/WC/Helper/Settings.php:834 -#: src/Mollie/WC/Helper/Settings.php:834 -msgid "" -"You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway " -"enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via " -"Mollie and disabling the default WooCommerce BACS payment gateway to prevent " -"possible conflicts." -msgstr "" -"Je hebt de WooCommerce standaard Direct Bank Transfer (BACS) " -"betalingsgateway geactiveerd in WooCommerce. Mollie adviseert dringend om " -"alleen Bank Transfer via Mollie te gebruiken en de standaard WooCommerce " -"BACS betalingsgateway uit te schakelen om mogelijke conflicten te voorkomen." - -#: build/src/Mollie/WC/Helper/Settings.php:855 -#: src/Mollie/WC/Helper/Settings.php:855 -msgid "" -"You have activated Klarna. To accept payments, please make sure all default " -"WooCommerce checkout fields are enabled and required. For more information, " -"go to %1sKlarna Pay Later documentation%2s or %3sKlarna Slice it " -"documentation%4s" -msgstr "" -"Je hebt Klarna geactiveerd. Zorg ervoor dat alle standaard WooCommerce " -"betaalvelden zijn geactiveerd en verplicht zijn gesteld, zodat je betalingen " -"kunt accepteren. Ga voor meer informatie naar %1sKlarna betaal later " -"documentatie%2s of %3sKlarna Betaal in 3 delen documentatie%4s" - -#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce version, placeholder 3: used WooCommerce version -#: build/src/Mollie/WC/Helper/Status.php:67 src/Mollie/WC/Helper/Status.php:67 -msgid "" -"The %s plugin requires at least WooCommerce version %s, you are using " -"version %s. Please update your WooCommerce plugin." -msgstr "" -"Voor %s plugin is minimaal WooCommerce versie %s nodig , je gebruikt versie " -"%s. Update je WooCommerce plugin." - -#: build/src/Mollie/WC/Helper/Status.php:80 src/Mollie/WC/Helper/Status.php:80 -msgid "" -"Mollie API client not installed. Please make sure the plugin is installed " -"correctly." -msgstr "" -"Mollie API client niet geïnstalleerd. Controleer of de plugin goed is " -"geïnstalleerd." - -#: build/src/Mollie/WC/Helper/Status.php:89 src/Mollie/WC/Helper/Status.php:89 -msgid "" -"Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable " -"it in your server or ask your webhoster to enable it for you." -msgstr "" -"Voor Mollie-betalingen voor WooCommerce is de JSON extensie voor PHP nodig. " -"Activeer dit op je server of vraag je webhost om het voor jou te activeren." - -#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP version -#: build/src/Mollie/WC/Helper/Status.php:104 -#: src/Mollie/WC/Helper/Status.php:104 -msgid "" -"Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. " -"Please upgrade and view %sthis FAQ%s" -msgstr "" -"Voor Mollie-betalingen voor WooCommerce is PHP %s of hoger nodig, je hebt " -"PHP %s. Installeer de upgrade en bekijk %sdeze FAQ%s" - -#: build/src/Mollie/WC/Helper/Status.php:116 -#: src/Mollie/WC/Helper/Status.php:116 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension JSON to be " -"enabled. Please enable the 'json' extension in your PHP configuration." -msgstr "" -"Voor Mollie-betalingen voor WooCommerce moet de PHP-extensie JSON " -"geactiveerd zijn. Activeer de 'json' extensie in je PHP-configuratie." - -#: build/src/Mollie/WC/Helper/Status.php:123 -#: src/Mollie/WC/Helper/Status.php:123 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension cURL to be " -"enabled. Please enable the 'curl' extension in your PHP configuration." -msgstr "" -"Voor Mollie-betalingen voor WooCommerce moet de PHP-extensie cURL " -"geactiveerd zijn. Activeer de 'curl' extensie in je PHP-configuratie." - -#: build/src/Mollie/WC/Helper/Status.php:131 -#: src/Mollie/WC/Helper/Status.php:131 -msgid "" -"Mollie Payments for WooCommerce require PHP cURL functions to be available. " -"Please make sure all of these functions are available." -msgstr "" -"Voor Mollie-betalingen voor WooCommerce moeten PHP cURL functies beschikbaar " -"zijn. Zorg ervoor dat al deze functies beschikbaar zijn." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:603 -#: src/Mollie/WC/Payment/Object.php:603 -msgid "" -"%s renewal payment failed via Mollie (%s). You will need to manually review " -"the payment and adjust product stocks if you use them." -msgstr "" -"%s nieuwe betaling is mislukt via Mollie (%s). Je moet de betaling handmatig " -"controleren en productvoorraden aanpassen als je deze gebruikt." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:637 -#: src/Mollie/WC/Payment/Object.php:637 -msgid "%s payment failed via Mollie (%s)." -msgstr "%s betaling mislukt via Mollie (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:677 -#: src/Mollie/WC/Payment/Object.php:677 -msgid "" -"Mollie webhook called, but payment also started via %s, so the order status " -"is not updated." -msgstr "" -"Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de " -"bestellingsstatus is niet geüpdatet." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:262 -#: build/src/Mollie/WC/Payment/Payment.php:247 -#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:247 -msgid "Order completed using %s payment (%s)." -msgstr "Bestelling voltooid met gebruik van %s betaling (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:314 -#: src/Mollie/WC/Payment/Order.php:314 -msgid "" -"Order authorized using %s payment (%s). Set order to completed in " -"WooCommerce when you have shipped the products, to capture the payment. Do " -"this within 28 days, or the order will expire. To handle individual order " -"lines, process the order via the Mollie Dashboard." -msgstr "" -"Bestelling geautoriseerd met gebruik van %s betaling (%s). Om de betaling te " -"ontvangen, moet je na het verzenden van de producten de bestelling in " -"WooCommerce als voltooid markeren. Doe dit binnen 28 dagen, anders verloopt " -"de bestelling. Voor het afhandelen van afzonderlijke bestelregels, moet je " -"de bestelling via het Mollie Dashboard verwerken." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:361 -#: src/Mollie/WC/Payment/Order.php:361 -msgid "" -"Order completed at Mollie for %s order (%s). At least one order line " -"completed. Remember: Completed status for an order at Mollie is not the same " -"as Completed status in WooCommerce!" -msgstr "" -"Bestelling voltooid bij Mollie voor %s bestelling (%s). Ten minste één " -"bestellijn voltooid. Denk eraan: een voltooide status voor een bestelling " -"bij Mollie is niet hetzelfde als een voltooide status in WooCommerce!" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:444 -#: src/Mollie/WC/Payment/Order.php:444 -msgid "%s order (%s) cancelled ." -msgstr "%s bestelling (%s) geannuleerd." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:509 -#: src/Mollie/WC/Payment/Order.php:509 -msgid "" -"%s order expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s bestelling verlopen (%s) maar niet geannuleerd door een andere betaling " -"die nog in behandeling is (%s)." - -#. translators: Order note error -#: src/Mollie/WC/Payment/Order.php:619 -msgid "" -"The sum of refunds for all order lines is not identical to the refund " -"amount, so this refund will be processed as a payment amount refund, not an " -"order line refund." -msgstr "" -"De som van de terugbetalingen voor alle orderregels is niet identiek aan het " -"terugbetalingsbedrag, waardoor deze terugbetaling zal worden verwerkt als " -"een terugbetaling van het betalingsbedrag en niet als een terugbetaling van " -"een orderregel." - -#. translators: Placeholder 1: payment status. -#: src/Mollie/WC/Payment/Order.php:619 -msgid "Can not refund order amount that has status %1$s at Mollie." -msgstr "Kan bestelbedrag niet terugbetalen dat status %1$s heeft bij Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:742 -#: src/Mollie/WC/Payment/Order.php:742 -msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie." -msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:758 -#: src/Mollie/WC/Payment/Order.php:758 -msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-" -"ID: %s." - -#: build/src/Mollie/WC/Payment/Order.php:836 -#: src/Mollie/WC/Payment/Order.php:836 -msgid "" -"Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s " -"Terugbetalings-ID: %s." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:931 -#: src/Mollie/WC/Payment/Order.php:931 -msgid "%s order (%s) expired ." -msgstr "%s bestelling (%s) verlopen." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -msgid "" -"One of the WooCommerce order items does not have the refund item ID meta " -"value associated to Mollie Order item." -msgstr "" -"Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het " -"terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -msgid "" -"Impossible to retrieve the order item ID related to the remote item: %1$s. " -"Try to do a refund by amount." -msgstr "" -"Onmogelijk om de bestelartikel-ID van het afstandsartikel terug te halen: " -"%1$s Probeer een terugbetaling te doen per bedrag." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -msgid "Empty WooCommerce order items or mollie order lines." -msgstr "Lege WooCommerce bestelartikelen of Mollie-bestellijnen." - -#. translators: Placeholder 1: order number -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: build/src/Mollie/WC/Payment/Payment.php:132 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: src/Mollie/WC/Payment/Payment.php:132 -msgctxt "Payment description for {orderNumber}" -msgid "Order {orderNumber}" -msgstr "Bestelling {orderNumber}" - -#. translators: Placeholder 1: store name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: build/src/Mollie/WC/Payment/Payment.php:143 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: src/Mollie/WC/Payment/Payment.php:143 -msgctxt "Payment description for {storeName}" -msgid "StoreName {storeName}" -msgstr "WinkelNaam {storeName}" - -#. translators: Placeholder 1: customer first name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: build/src/Mollie/WC/Payment/Payment.php:154 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: src/Mollie/WC/Payment/Payment.php:154 -msgctxt "Payment description for {customer.firstname}" -msgid "Customer Firstname {customer.firstname}" -msgstr "Klant voornaam {customer.firstname}" - -#. translators: Placeholder 1: customer last name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: build/src/Mollie/WC/Payment/Payment.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: src/Mollie/WC/Payment/Payment.php:165 -msgctxt "Payment description for {customer.lastname}" -msgid "Customer Lastname {customer.lastname}" -msgstr "Klant achternaam {customer.lastname}" - -#. translators: Placeholder 1: customer company name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: build/src/Mollie/WC/Payment/Payment.php:176 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: src/Mollie/WC/Payment/Payment.php:176 -msgctxt "Payment description for {customer.company}" -msgid "Customer Company {customer.company}" -msgstr "Klant bedrijf {customer.company}" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:334 -#: src/Mollie/WC/Payment/Payment.php:334 -msgid "%s payment (%s) cancelled ." -msgstr "%s betaling (%s) geannuleerd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:328 -msgid "Processing a payment, no capture needed" -msgstr "Een betaling wordt verwerkt, als voltooid markeren is niet nodig" - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:342 -msgid "Order already canceled at Mollie, can not be shipped/captured." -msgstr "" -"Bestelling al geannuleerd bij Mollie, kan niet worden verzonden/als voltooid " -"worden gemarkeerd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:350 -msgid "Order already completed at Mollie, can not be shipped/captured." -msgstr "" -"Bestelling al voltooid bij Mollie, kan niet worden verzonden/als voltooid " -"worden gemarkeerd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:359 -msgid "" -"Order successfully updated to shipped at Mollie, capture of funds underway." -msgstr "" -"Bestelling succesvol bijgewerkt naar verzonden bij Mollie, als voltooid " -"markeren van tegoeden in behandeling." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:365 -msgid "Order not paid or authorized at Mollie yet, can not be shipped." -msgstr "" -"Bestelling nog niet betaald of geautoriseerd bij Mollie, kan niet worden " -"verzonden." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:399 -msgid "" -"Order contains Mollie payment method, but not a valid Mollie Order ID. " -"Canceling order failed." -msgstr "" -"Bestelling bevat Mollie betaalmethode, maar geen geldig Mollie bestel-ID. " -"Bestelling annuleren is mislukt." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:420 -msgid "Order already canceled at Mollie, can not be canceled again." -msgstr "" -"Bestelling al geannuleerd bij Mollie, kan niet opnieuw worden geannuleerd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:430 -msgid "Order also cancelled at Mollie." -msgstr "Bestelling ook geannuleerd bij Mollie." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:436 -msgid "Order could not be canceled at Mollie, because order status is " -msgstr "" -"Bestelling kon niet worden geannuleerd bij Mollie, want de bestelstatus is " - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:404 -#: src/Mollie/WC/Payment/Payment.php:404 -msgid "" -"%s payment expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s betaling verlopen (%s) maar niet geannuleerd wegens een andere betaling " -"die nog in behandeling is (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:427 -#: src/Mollie/WC/Payment/Payment.php:427 -msgid "%s payment expired (%s)." -msgstr "%s betaling verlopen (%s)." - -#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID -#: build/src/Mollie/WC/Payment/Payment.php:509 -#: src/Mollie/WC/Payment/Payment.php:509 -msgid "Refunded %s%s%s - Payment: %s, Refund: %s" -msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s" - -#: build/src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -msgid "" -"Mollie doesn't allow a partial refund of the full amount or quantity of at " -"least one order line. Trying to process this as an amount refund instead." -msgstr "" -"Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag " -"of hoeveelheid van ten minste één bestelregel. Probeer dit in plaats daarvan " -"als een terugbetaling van het bedrag te verwerken." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Plugin.php:128 src/Mollie/WC/Plugin.php:128 -msgid "%s payment failed (%s)." -msgstr "%s betaling mislukt (%s)." - -#: build/src/Mollie/WC/Plugin.php:303 src/Mollie/WC/Plugin.php:303 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s " -"disable it%4$s before deploying into production." -msgstr "" -"%1$sMollie-betalingen voor WooCommerce%2$s de testmodus is actief, %3$s " -"schakel deze uit%4$s voordat hij wordt geïmplementeerd." - -#: build/src/Mollie/WC/Plugin.php:411 build/src/Mollie/WC/Plugin.php:444 -#: build/src/Mollie/WC/Plugin.php:466 src/Mollie/WC/Plugin.php:411 -#: src/Mollie/WC/Plugin.php:444 src/Mollie/WC/Plugin.php:466 -msgid "Mollie Voucher Category" -msgstr "Mollie-waardeboncategorie" - -#: build/src/Mollie/WC/Plugin.php:414 build/src/Mollie/WC/Plugin.php:446 -#: build/src/Mollie/WC/Plugin.php:469 src/Mollie/WC/Plugin.php:414 -#: src/Mollie/WC/Plugin.php:446 src/Mollie/WC/Plugin.php:469 -msgid "--Please choose an option--" -msgstr "--Kies een optie--" - -#: build/src/Mollie/WC/Plugin.php:415 build/src/Mollie/WC/Plugin.php:447 -#: build/src/Mollie/WC/Plugin.php:470 build/src/Mollie/WC/Plugin.php:583 -#: src/Mollie/WC/Plugin.php:415 src/Mollie/WC/Plugin.php:447 -#: src/Mollie/WC/Plugin.php:470 src/Mollie/WC/Plugin.php:583 -msgid "No Category" -msgstr "Geen categorie" - -#: build/src/Mollie/WC/Plugin.php:416 build/src/Mollie/WC/Plugin.php:448 -#: build/src/Mollie/WC/Plugin.php:471 build/src/Mollie/WC/Plugin.php:584 -#: src/Mollie/WC/Plugin.php:416 src/Mollie/WC/Plugin.php:448 -#: src/Mollie/WC/Plugin.php:471 src/Mollie/WC/Plugin.php:584 -msgid "Meal" -msgstr "Maaltijd" - -#: build/src/Mollie/WC/Plugin.php:417 build/src/Mollie/WC/Plugin.php:449 -#: build/src/Mollie/WC/Plugin.php:472 build/src/Mollie/WC/Plugin.php:585 -#: src/Mollie/WC/Plugin.php:417 src/Mollie/WC/Plugin.php:449 -#: src/Mollie/WC/Plugin.php:472 src/Mollie/WC/Plugin.php:585 -msgid "Eco" -msgstr "Eco" - -#: build/src/Mollie/WC/Plugin.php:418 build/src/Mollie/WC/Plugin.php:450 -#: build/src/Mollie/WC/Plugin.php:473 build/src/Mollie/WC/Plugin.php:586 -#: src/Mollie/WC/Plugin.php:418 src/Mollie/WC/Plugin.php:450 -#: src/Mollie/WC/Plugin.php:473 src/Mollie/WC/Plugin.php:586 -msgid "Gift" -msgstr "Cadeau" - -#: build/src/Mollie/WC/Plugin.php:452 build/src/Mollie/WC/Plugin.php:475 -#: src/Mollie/WC/Plugin.php:452 src/Mollie/WC/Plugin.php:475 -msgid "Select a voucher category to apply to all products with this category" -msgstr "" -"Kies een waardeboncategorie om alle producten met deze categorie te gebruiken" - -#: build/src/Mollie/WC/Plugin.php:512 src/Mollie/WC/Plugin.php:512 -msgid "Products voucher category" -msgstr "Product waardebon categorie" - -#: build/src/Mollie/WC/Plugin.php:519 build/src/Mollie/WC/Plugin.php:582 -#: src/Mollie/WC/Plugin.php:519 src/Mollie/WC/Plugin.php:582 -msgid "Same as default category" -msgstr "Zelfde als standaardcategorie" +#: ../src/Settings/Page/MollieSettingsPage.php:300 +msgid "Gateway enabled" +msgstr "Gateway geactiveerd" -#: build/src/Mollie/WC/Plugin.php:529 src/Mollie/WC/Plugin.php:529 -msgid "" -"In order to process it, all products in the order must have a category. To " -"disable the product from voucher selection select \"No category\" option." -msgstr "" -"Daarvoor moeten alle producten uit de bestelling een categorie hebben. Om " -"het kiezen van een waardebon voor een bepaald product onmogelijk te maken " -"kies je de optie ''Geen categorie''." +#: ../src/Settings/Page/MollieSettingsPage.php:304 +msgid "Gateway disabled" +msgstr "Gateway gedeactiveerd" -#: build/src/Mollie/WC/Plugin.php:579 src/Mollie/WC/Plugin.php:579 -msgid "Mollie Voucher category" -msgstr "Mollie-waardeboncategorie" +#: ../src/Settings/Page/MollieSettingsPage.php:307 +msgid "Disabled" +msgstr "Uitgeschakeld" -#: build/src/Mollie/WC/Plugin.php:727 src/Mollie/WC/Plugin.php:727 -msgid "%1$s items refunded in WooCommerce and at Mollie." -msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie." +#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Settings/Page/MollieSettingsPage.php:318 +msgid "The following payment methods are activated in your %1$sMollie profile%2$s:" +msgstr "De volgende betaalmethoden zijn geactiveerd in je %1$sMollie-profiel%2$s:" -#: build/src/Mollie/WC/Plugin.php:745 src/Mollie/WC/Plugin.php:745 -msgid "%1$s items cancelled in WooCommerce and at Mollie." -msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:333 +msgid "Refresh" +msgstr "Vernieuwen" -#: build/src/Mollie/WC/Plugin.php:919 src/Mollie/WC/Plugin.php:919 -msgid "Name on card" -msgstr "Naam op de kaart" +#: ../src/Settings/Page/MollieSettingsPage.php:342 +msgid "No payment methods available" +msgstr "Geen betaalmethoden beschikbaar" -#: build/src/Mollie/WC/Plugin.php:923 src/Mollie/WC/Plugin.php:923 -msgid "Card number" -msgstr "Kaartnummer" +#: ../src/Settings/Page/MollieSettingsPage.php:357 +msgid "Edit" +msgstr "Bewerken" -#: build/src/Mollie/WC/Plugin.php:931 src/Mollie/WC/Plugin.php:931 -msgid "CVC/CVV" -msgstr "CVC/CVV" +#: ../src/Settings/Page/MollieSettingsPage.php:365 +msgid "Activate" +msgstr "Activeer" -#: build/src/Mollie/WC/Plugin.php:938 src/Mollie/WC/Plugin.php:938 -msgid "An unknown error occurred, please check the card fields." -msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden." +#: ../src/Settings/Page/MollieSettingsPage.php:411 +msgid "You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. Enable SEPA Direct Debit if you want to allow customers to pay subscriptions with iDEAL and/or other \"first\" payment methods." +msgstr "Je hebt WooCommerce Abonnementen geactiveerd, maar geen SEPA-incasso. Activeer SEPA-incasso als je klanten wilt toestaan om abonnementen met iDEAL en/of andere \"eerste\" betaalmethoden te betalen." -#: build/src/Mollie/WC/Plugin.php:1295 src/Mollie/WC/Plugin.php:1295 -msgid "Mollie settings" -msgstr "Mollie-instellingen" +#: ../src/Settings/Page/MollieSettingsPage.php:437 +msgid "You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via Mollie and disabling the default WooCommerce BACS payment gateway to prevent possible conflicts." +msgstr "Je hebt de WooCommerce standaard Direct Bank Transfer (BACS) betalingsgateway geactiveerd in WooCommerce. Mollie adviseert dringend om alleen Bank Transfer via Mollie te gebruiken en de standaard WooCommerce BACS betalingsgateway uit te schakelen om mogelijke conflicten te voorkomen." -#: build/src/Mollie/WC/Plugin.php:1301 src/Mollie/WC/Plugin.php:1301 -msgid "Logs" -msgstr "Logs" +#. translators: Placeholder 1: Opening link tag. Placeholder 2: Closing link tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/Page/MollieSettingsPage.php:461 +msgid "You have activated Klarna. To accept payments, please make sure all default WooCommerce checkout fields are enabled and required. For more information, go to %1$sKlarna Pay Later documentation%2$s or %3$sKlarna Slice it documentation%4$s" +msgstr "Je hebt Klarna geactiveerd. Zorg ervoor dat alle standaard WooCommerce-afrekenvelden zijn geactiveerd en verplicht zijn, zodat je betalingen kunt accepteren. Ga voor meer informatie naar %1$sKlarna betaal later documentatie%2$s of %3$sKlarna Betaal in 3 delen documentatie%4$s" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:138 -#: src/Mollie/WC/Settings/Page/Mollie.php:138 +#: ../src/Settings/Page/MollieSettingsPage.php:702 msgid "General" msgstr "Algemeen" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:143 -#: src/Mollie/WC/Settings/Page/Mollie.php:143 -msgid "Apple Pay Button" -msgstr "Apple Pay knop" - -#: build/src/Mollie/WC/Settings/Page/Mollie.php:147 -#: src/Mollie/WC/Settings/Page/Mollie.php:147 +#: ../src/Settings/Page/MollieSettingsPage.php:707 msgid "Advanced" msgstr "Geavanceerd" -#: src/Mollie/WC/Gateway/Abstract.php:1987 -msgid "%1$s Secure payments provided by %2$s" -msgstr "%1$s Beveiligde betalingen verschaft door %2$s" +#: ../src/Settings/Page/MollieSettingsPage.php:710 +msgid "Apple Pay Button" +msgstr "Apple Pay knop" diff --git a/languages/mollie-payments-for-woocommerce-nl_NL_formal.mo b/languages/mollie-payments-for-woocommerce-nl_NL_formal.mo index f3da6777b..e36fcd66d 100644 Binary files a/languages/mollie-payments-for-woocommerce-nl_NL_formal.mo and b/languages/mollie-payments-for-woocommerce-nl_NL_formal.mo differ diff --git a/languages/mollie-payments-for-woocommerce-nl_NL_formal.po b/languages/mollie-payments-for-woocommerce-nl_NL_formal.po index 151dbb44c..8207ff9ca 100644 --- a/languages/mollie-payments-for-woocommerce-nl_NL_formal.po +++ b/languages/mollie-payments-for-woocommerce-nl_NL_formal.po @@ -1,2875 +1,1975 @@ -# Copyright (C) 2021 Mollie -# This file is distributed under the same license as the Mollie Payments for WooCommerce plugin. +# Copyright (C) 2022 unnamed project +# This file is distributed under the same license as the unnamed project package. msgid "" msgstr "" -"Project-Id-Version: Mollie Payments for WooCommerce 6.7.0\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mollie-payments-" -"for-woocommerce\n" -"POT-Creation-Date: 2021-11-12T07:59:02+00:00\n" -"PO-Revision-Date: 2022-06-20 11:19+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: nl_NL@formal\n" +"Project-Id-Version: Mollie Payments for WooCommerce 7.3.3\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Project-Id-Version: undefined\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.1\n" -"X-Domain: mollie-payments-for-woocommerce\n" -#. Plugin Name of the plugin -msgid "Mollie Payments for WooCommerce" -msgstr "Mollie-betalingen voor WooCommerce" - -#. Plugin URI of the plugin -#. Author URI of the plugin -msgid "https://www.mollie.com" -msgstr "https://www.mollie.com" - -#. Description of the plugin -msgid "Accept payments in WooCommerce with the official Mollie plugin" -msgstr "Accepteer betalingen in WooCommerce met de officiële Mollie-plugin" - -#. Author of the plugin -msgid "Mollie" -msgstr "Mollie" - -#: build/inc/settings/mollie_advanced_settings.php:6 -#: inc/settings/mollie_advanced_settings.php:6 -msgid "Mollie advanced settings" -msgstr "Geavanceerde Mollie-instellingen" - -#: build/inc/settings/mollie_advanced_settings.php:8 -#: inc/settings/mollie_advanced_settings.php:8 +#: ../inc/settings/mollie_advanced_settings.php:12 msgctxt "Label {orderNumber} description for payment description options" msgid "Order number" msgstr "Bestelnummer" -#: build/inc/settings/mollie_advanced_settings.php:9 -#: inc/settings/mollie_advanced_settings.php:9 +#: ../inc/settings/mollie_advanced_settings.php:13 msgctxt "Label {storeName} description for payment description options" msgid "Site Title" msgstr "Site titel" -#: build/inc/settings/mollie_advanced_settings.php:10 -#: inc/settings/mollie_advanced_settings.php:10 -msgctxt "" -"Label {customer.firstname} description for payment description options" +#: ../inc/settings/mollie_advanced_settings.php:14 +msgctxt "Label {customer.firstname} description for payment description options" msgid "Customer's first name" msgstr "Voornaam klant" -#: build/inc/settings/mollie_advanced_settings.php:11 -#: inc/settings/mollie_advanced_settings.php:11 +#: ../inc/settings/mollie_advanced_settings.php:15 msgctxt "Label {customer.lastname} description for payment description options" msgid "Customer's last name" msgstr "Achternaam klant" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:16 msgctxt "Label {customer.company} description for payment description options" msgid "Customer's company name" msgstr "Bedrijfsnaam klant" -#: build/inc/settings/mollie_advanced_settings.php:8 -#: build/src/Mollie/WC/Helper/Settings.php:666 -#: inc/settings/mollie_advanced_settings.php:8 -#: src/Mollie/WC/Helper/Settings.php:666 -msgid "" -"The following options are required to use the plugin and are used by all " -"Mollie payment methods" -msgstr "" -"De volgende opties zijn noodzakelijk om de plugin te gebruiken en worden " -"door alle Mollie-betaalmethoden gebruikt" +#: ../inc/settings/mollie_advanced_settings.php:22 +msgid "Mollie advanced settings" +msgstr "Geavanceerde Mollie-instellingen" + +#: ../inc/settings/mollie_advanced_settings.php:24, ../src/Settings/Page/MollieSettingsPage.php:185 +msgid "The following options are required to use the plugin and are used by all Mollie payment methods" +msgstr "De volgende opties zijn noodzakelijk om de plugin te gebruiken en worden door alle Mollie-betaalmethoden gebruikt" -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 +#: ../inc/settings/mollie_advanced_settings.php:28 msgid "Order status after cancelled payment" msgstr "Bestelstatus na geannuleerde betaling" -#: build/inc/settings/mollie_advanced_settings.php:18 -#: inc/settings/mollie_advanced_settings.php:18 -msgid "" -"Status for orders when a payment (not a Mollie order via the Orders API) is " -"cancelled. Default: pending. Orders with status Pending can be paid with " -"another payment method, customers can try again. Cancelled orders are final. " -"Set this to Cancelled if you only have one payment method or don't want " -"customers to re-try paying with a different payment method. This doesn't " -"apply to payments for orders via the new Orders API and Klarna payments." -msgstr "" -"Status voor bestellingen wanneer een betaling (niet een Mollie-bestelling " -"via de Bestellingen API) wordt geannuleerd. Standaard: in behandeling. " -"Bestellingen met status 'In behandeling' kunnen met een andere betaalmethode " -"worden betaald, klanten kunnen het opnieuw proberen. Geannuleerde " -"bestellingen zijn definitief. Stel dit in op 'Geannuleerd' als u maar één " -"betaalmethode heeft of als u niet wilt dat klanten opnieuw proberen te " -"betalen met een andere betaalmethode. Dit is niet van toepassing op " -"betalingen voor bestellingen via de nieuwe Bestellingen API en Klarna-" -"betalingen." - -#: build/inc/settings/mollie_advanced_settings.php:23 -#: inc/settings/mollie_advanced_settings.php:23 +#: ../inc/settings/mollie_advanced_settings.php:31 +msgid "Pending" +msgstr "In behandeling" + +#: ../inc/settings/mollie_advanced_settings.php:32 +msgid "Cancelled" +msgstr "Geannuleerd" + +#: ../inc/settings/mollie_advanced_settings.php:34 +msgid "Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don't want customers to re-try paying with a different payment method. This doesn't apply to payments for orders via the new Orders API and Klarna payments." +msgstr "Status voor bestellingen wanneer een betaling (niet een Mollie-bestelling via de Bestellingen API) wordt geannuleerd. Standaard: in behandeling. Bestellingen met status 'In behandeling' kunnen met een andere betaalmethode worden betaald, klanten kunnen het opnieuw proberen. Geannuleerde bestellingen zijn definitief. Stel dit in op 'Geannuleerd' als u maar één betaalmethode heeft of als u niet wilt dat klanten opnieuw proberen te betalen met een andere betaalmethode. Dit is niet van toepassing op betalingen voor bestellingen via de nieuwe Bestellingen API en Klarna-betalingen." + +#: ../inc/settings/mollie_advanced_settings.php:39 msgid "Payment screen language" msgstr "Taal van betaalscherm" -#: build/inc/settings/mollie_advanced_settings.php:26 -#: inc/settings/mollie_advanced_settings.php:26 +#: ../inc/settings/mollie_advanced_settings.php:42 msgid "Automatically send WordPress language" msgstr "Automatisch verzenden van WordPress-taal" -#: build/inc/settings/mollie_advanced_settings.php:29 -#: build/inc/settings/mollie_advanced_settings.php:90 -#: build/src/Mollie/WC/Helper/Settings.php:288 -#: inc/settings/mollie_advanced_settings.php:29 -#: inc/settings/mollie_advanced_settings.php:90 -#: src/Mollie/WC/Helper/Settings.php:288 +#: ../inc/settings/mollie_advanced_settings.php:45, ../inc/settings/mollie_advanced_settings.php:105, ../src/Settings/General/MollieGeneralSettings.php:266 msgid "default" msgstr "standaard" -#: build/inc/settings/mollie_advanced_settings.php:30 -#: inc/settings/mollie_advanced_settings.php:30 +#: ../inc/settings/mollie_advanced_settings.php:46 msgid "Detect using browser language" msgstr "Detecteren met gebruik van browser-taal" -#: build/inc/settings/mollie_advanced_settings.php:34 -#: inc/settings/mollie_advanced_settings.php:34 +#: ../inc/settings/mollie_advanced_settings.php:50 msgid "English" msgstr "Engels" -#: build/inc/settings/mollie_advanced_settings.php:35 -#: inc/settings/mollie_advanced_settings.php:35 +#: ../inc/settings/mollie_advanced_settings.php:51 msgid "Dutch" msgstr "Nederlands" -#: build/inc/settings/mollie_advanced_settings.php:36 -#: inc/settings/mollie_advanced_settings.php:36 +#: ../inc/settings/mollie_advanced_settings.php:52 msgid "Flemish (Belgium)" msgstr "Vlaams (België)" -#: build/inc/settings/mollie_advanced_settings.php:37 -#: inc/settings/mollie_advanced_settings.php:37 +#: ../inc/settings/mollie_advanced_settings.php:53 msgid "French" msgstr "Frans" -#: build/inc/settings/mollie_advanced_settings.php:38 -#: inc/settings/mollie_advanced_settings.php:38 +#: ../inc/settings/mollie_advanced_settings.php:54 msgid "French (Belgium)" msgstr "Frans (België)" -#: build/inc/settings/mollie_advanced_settings.php:39 -#: inc/settings/mollie_advanced_settings.php:39 +#: ../inc/settings/mollie_advanced_settings.php:55 msgid "German" msgstr "Duits" -#: build/inc/settings/mollie_advanced_settings.php:40 -#: inc/settings/mollie_advanced_settings.php:40 +#: ../inc/settings/mollie_advanced_settings.php:56 msgid "Austrian German" msgstr "Oostenrijks-Duits" -#: build/inc/settings/mollie_advanced_settings.php:41 -#: inc/settings/mollie_advanced_settings.php:41 +#: ../inc/settings/mollie_advanced_settings.php:57 msgid "Swiss German" msgstr "Zwitserduits" -#: build/inc/settings/mollie_advanced_settings.php:42 -#: inc/settings/mollie_advanced_settings.php:42 +#: ../inc/settings/mollie_advanced_settings.php:58 msgid "Spanish" msgstr "Spaans" -#: build/inc/settings/mollie_advanced_settings.php:43 -#: inc/settings/mollie_advanced_settings.php:43 +#: ../inc/settings/mollie_advanced_settings.php:59 msgid "Catalan" msgstr "Catalaans" -#: build/inc/settings/mollie_advanced_settings.php:44 -#: inc/settings/mollie_advanced_settings.php:44 +#: ../inc/settings/mollie_advanced_settings.php:60 msgid "Portuguese" msgstr "Portugees" -#: build/inc/settings/mollie_advanced_settings.php:45 -#: inc/settings/mollie_advanced_settings.php:45 +#: ../inc/settings/mollie_advanced_settings.php:61 msgid "Italian" msgstr "Italiaans" -#: build/inc/settings/mollie_advanced_settings.php:46 -#: inc/settings/mollie_advanced_settings.php:46 +#: ../inc/settings/mollie_advanced_settings.php:62 msgid "Norwegian" msgstr "Noors" -#: build/inc/settings/mollie_advanced_settings.php:47 -#: inc/settings/mollie_advanced_settings.php:47 +#: ../inc/settings/mollie_advanced_settings.php:63 msgid "Swedish" msgstr "Zweeds" -#: build/inc/settings/mollie_advanced_settings.php:48 -#: inc/settings/mollie_advanced_settings.php:48 +#: ../inc/settings/mollie_advanced_settings.php:64 msgid "Finnish" msgstr "Fins" -#: build/inc/settings/mollie_advanced_settings.php:49 -#: inc/settings/mollie_advanced_settings.php:49 +#: ../inc/settings/mollie_advanced_settings.php:65 msgid "Danish" msgstr "Deens" -#: build/inc/settings/mollie_advanced_settings.php:50 -#: inc/settings/mollie_advanced_settings.php:50 +#: ../inc/settings/mollie_advanced_settings.php:66 msgid "Icelandic" msgstr "IJslands" -#: build/inc/settings/mollie_advanced_settings.php:51 -#: inc/settings/mollie_advanced_settings.php:51 +#: ../inc/settings/mollie_advanced_settings.php:67 msgid "Hungarian" msgstr "Hongaars" -#: build/inc/settings/mollie_advanced_settings.php:52 -#: inc/settings/mollie_advanced_settings.php:52 +#: ../inc/settings/mollie_advanced_settings.php:68 msgid "Polish" msgstr "Pools" -#: build/inc/settings/mollie_advanced_settings.php:53 -#: inc/settings/mollie_advanced_settings.php:53 +#: ../inc/settings/mollie_advanced_settings.php:69 msgid "Latvian" msgstr "Lets" -#: build/inc/settings/mollie_advanced_settings.php:54 -#: inc/settings/mollie_advanced_settings.php:54 +#: ../inc/settings/mollie_advanced_settings.php:70 msgid "Lithuanian" msgstr "Litouws" -#: build/inc/settings/mollie_advanced_settings.php:57 -#: inc/settings/mollie_advanced_settings.php:57 -msgid "" -"Sending a language (or locale) is required. The option 'Automatically send " -"WordPress language' will try to get the customer's language in WordPress " -"(and respects multilanguage plugins) and convert it to a format Mollie " -"understands. If this fails, or if the language is not supported, it will " -"fall back to American English. You can also select one of the locales " -"currently supported by Mollie, that will then be used for all customers." -msgstr "" -"Het verzenden van een taal (of locatie) is vereist. De optie 'Automatisch " -"verzenden van WordPress-taal' zal proberen de taal van de klant in WordPress " -"te krijgen (en respecteert meertalige plugins) en deze te converteren naar " -"een voor Mollie begrijpelijk formaat. Als dit niet lukt, of als de taal niet " -"wordt ondersteund, zal teruggegaan worden naar Amerikaans-Engels. U kunt ook " -"een van de momenteel door Mollie ondersteunde locaties selecteren, die dan " -"voor alle klanten zal worden gebruikt." - -#: build/inc/settings/mollie_advanced_settings.php:65 -#: inc/settings/mollie_advanced_settings.php:65 +#: ../inc/settings/mollie_advanced_settings.php:73 +msgid "Sending a language (or locale) is required. The option 'Automatically send WordPress language' will try to get the customer's language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers." +msgstr "Het verzenden van een taal (of locatie) is vereist. De optie 'Automatisch verzenden van WordPress-taal' zal proberen de taal van de klant in WordPress te krijgen (en respecteert meertalige plugins) en deze te converteren naar een voor Mollie begrijpelijk formaat. Als dit niet lukt, of als de taal niet wordt ondersteund, zal teruggegaan worden naar Amerikaans-Engels. U kunt ook een van de momenteel door Mollie ondersteunde locaties selecteren, die dan voor alle klanten zal worden gebruikt." + +#: ../inc/settings/mollie_advanced_settings.php:81 msgid "Store customer details at Mollie" msgstr "Klantgegevens opslaan bij Mollie" -#: build/inc/settings/mollie_advanced_settings.php:68 -#: inc/settings/mollie_advanced_settings.php:68 -msgid "" -"Should Mollie store customers name and email address for Single Click " -"Payments? Default %1$s. Required if WooCommerce Subscriptions " -"is being used! Read more about " -"%2$s and how it improves your conversion." -msgstr "" -"Moet Mollie klantennaam en e-mailadres opslaan voor Betalen met één klik? " -"Standaard %1$s. Vereist als WooCommerce-abonnementen worden " -"gebruikt! Lees meer over " -"%2$s en hoe het uw conversie verbetert." - -#: build/inc/settings/mollie_advanced_settings.php:72 -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: inc/settings/mollie_advanced_settings.php:72 -#: src/Mollie/WC/Helper/Settings.php:551 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_advanced_settings.php:84 +msgid "Should Mollie store customers name and email address for Single Click Payments? Default %1$s. Required if WooCommerce Subscriptions is being used! Read more about %2$s and how it improves your conversion." +msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor Betalen met één klik? Standaard %1$s. Vereist als WooCommerce-abonnementen worden gebruikt! Lees meer over %2$s en hoe het uw conversie verbetert." + +#: ../inc/settings/mollie_advanced_settings.php:88, ../src/Settings/Page/MollieSettingsPage.php:303 msgid "Enabled" msgstr "Geactiveerd" -#: build/inc/settings/mollie_advanced_settings.php:73 -#: inc/settings/mollie_advanced_settings.php:73 +#: ../inc/settings/mollie_advanced_settings.php:89 msgid "Single Click Payments" msgstr "Betalen met één klik" -#: build/inc/settings/mollie_advanced_settings.php:82 -#: inc/settings/mollie_advanced_settings.php:82 +#: ../inc/settings/mollie_advanced_settings.php:97 msgid "Select API Method" msgstr "Selecteer de API methode" -#: build/inc/settings/mollie_advanced_settings.php:99 -#: inc/settings/mollie_advanced_settings.php:99 -msgid "" -"Click %shere%s to read more about the differences between the Payments and " -"Orders API" -msgstr "" -"Klik %shier%s voor meer informatie over de verschillen tussen de Betalingen " -"en Bestellingen API" +#. translators: Placeholder 1: opening link tag, placeholder 2: closing link tag +#: ../inc/settings/mollie_advanced_settings.php:114 +msgid "Click %1$shere%2$s to read more about the differences between the Payments and Orders API" +msgstr "Klik %1$shier%2$s voor meer informatie over de verschillen tussen de Betalingen en Bestellingen API" -#: build/inc/settings/mollie_advanced_settings.php:109 -#: inc/settings/mollie_advanced_settings.php:109 +#: ../inc/settings/mollie_advanced_settings.php:124 msgid "API Payment Description" msgstr "Beschrijving Betalingen API" -#: build/inc/settings/mollie_advanced_settings.php:137 -#: inc/settings/mollie_advanced_settings.php:137 +#: ../inc/settings/mollie_advanced_settings.php:141 msgctxt "Payment description options" msgid "Available variables" msgstr "Beschikbare variabelen" -#: build/inc/settings/mollie_advanced_settings.php:160 -#: inc/settings/mollie_advanced_settings.php:160 -msgid "" -"Select among the available variables the description to be used for this " -"transaction.%s(Note: this only works when the method is set to Payments " -"API)%s" -msgstr "" -"Selecteer uit de beschikbare variabelen de beschrijving die u voor deze " -"transactie wilt gebruiken.%sLet op: dit werkt alleen wanneer de methode is " -"ingesteld op Betalingen API).%s" +#. translators: Placeholder 1: Opening paragraph tag, placeholder 2: Closing paragraph tag +#: ../inc/settings/mollie_advanced_settings.php:166 +msgid "Select among the available variables the description to be used for this transaction.%1$s(Note: this only works when the method is set to Payments API)%2$s" +msgstr "Selecteer uit de beschikbare variabelen de beschrijving die u voor deze transactie wilt gebruiken.%1$sLet op: dit werkt alleen wanneer de methode is ingesteld op Betalingen API).%2$s" -#: build/inc/settings/mollie_advanced_settings.php:134 -#: inc/settings/mollie_advanced_settings.php:134 +#: ../inc/settings/mollie_advanced_settings.php:177 msgid "Surcharge gateway fee label" msgstr "Prijstoeslag gateway vergoedingslabel" -#: build/inc/settings/mollie_advanced_settings.php:140 -#: inc/settings/mollie_advanced_settings.php:140 +#: ../inc/settings/mollie_advanced_settings.php:183, ../src/Gateway/Surcharge.php:36 msgid "Gateway Fee" msgstr "Gateway vergoeding" -#: build/inc/settings/mollie_advanced_settings.php:142 -#: inc/settings/mollie_advanced_settings.php:142 +#: ../inc/settings/mollie_advanced_settings.php:185 msgid "This is the label will appear in frontend when the surcharge applies" -msgstr "" -"Dit is het label dat in de interface verschijnt wanneer de prijstoeslag van " -"toepassing is" +msgstr "Dit is het label dat in de interface verschijnt wanneer de prijstoeslag van toepassing is" -#: inc/settings/mollie_advanced_settings.php:194 +#: ../inc/settings/mollie_advanced_settings.php:193 msgid "Remove Mollie data from Database on uninstall" msgstr "Verwijder Mollie gegevens uit database bij deïnstallatie" -# MS: Alternative = 'verwijderen' #query -#: inc/settings/mollie_advanced_settings.php:199 -msgid "" -"Remove options and scheduled actions from database when uninstalling the " -"plugin." -msgstr "" -"Verwijder opties en geplande acties uit de database bij het deïnstalleren " -"van de plugin." +#: ../inc/settings/mollie_advanced_settings.php:199 +msgid "Remove options and scheduled actions from database when uninstalling the plugin." +msgstr "Verwijder opties en geplande acties uit de database bij het deïnstalleren van de plugin." + +#: ../inc/settings/mollie_advanced_settings.php:200 +msgid "Clear now" +msgstr "Nu wissen" -#: build/inc/settings/mollie_applepay_settings.php:14 -#: inc/settings/mollie_applepay_settings.php:14 +#: ../inc/settings/mollie_applepay_settings.php:12, ../src/PaymentMethods/Applepay.php:13 +msgid "Apple Pay" +msgstr "Apple Pay" + +#: ../inc/settings/mollie_applepay_settings.php:14 msgid "The following options are required to use the Apple Pay gateway" -msgstr "" -"De volgende opties zijn noodzakelijk voor het gebruik van de Apple Pay " -"gateway" +msgstr "De volgende opties zijn noodzakelijk voor het gebruik van de Apple Pay gateway" -#: build/inc/settings/mollie_applepay_settings.php:19 -#: build/src/Mollie/WC/Helper/Settings.php:48 -#: inc/settings/mollie_applepay_settings.php:19 -#: src/Mollie/WC/Helper/Settings.php:48 +#: ../inc/settings/mollie_applepay_settings.php:19, ../src/Settings/General/MollieGeneralSettings.php:18 msgid "Enable/Disable" msgstr "Activeren/deactiveren" -#. translators: Placeholder 1: enabled or disabled -#: build/inc/settings/mollie_applepay_settings.php:21 -#: build/src/Mollie/WC/Helper/Settings.php:54 -#: inc/settings/mollie_applepay_settings.php:21 -#: src/Mollie/WC/Helper/Settings.php:54 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:21, ../src/Settings/General/MollieGeneralSettings.php:25 msgid "Enable %s" msgstr "Activeren %s" -#: build/inc/settings/mollie_applepay_settings.php:29 -#: build/src/Mollie/WC/Helper/Settings.php:68 -#: inc/settings/mollie_applepay_settings.php:29 -#: src/Mollie/WC/Helper/Settings.php:68 +#: ../inc/settings/mollie_applepay_settings.php:29, ../src/Settings/General/MollieGeneralSettings.php:38 msgid "Title" msgstr "Titel" -#: build/inc/settings/mollie_applepay_settings.php:32 -#: build/src/Mollie/WC/Helper/Settings.php:71 -#: inc/settings/mollie_applepay_settings.php:32 -#: src/Mollie/WC/Helper/Settings.php:71 -msgid "" -"This controls the title which the user sees during checkout. Default " -"%s" -msgstr "" -"Dit controleert de titel die de gebruiker tijdens het betalen te zien " -"krijgt. Standaard %s" - -#: build/inc/settings/mollie_applepay_settings.php:45 -#: build/inc/settings/mollie_applepay_settings.php:48 -#: build/src/Mollie/WC/Helper/Settings.php:94 -#: inc/settings/mollie_applepay_settings.php:45 -#: inc/settings/mollie_applepay_settings.php:48 -#: src/Mollie/WC/Helper/Settings.php:94 +#. translators: Placeholder 1: Gateway title +#: ../inc/settings/mollie_applepay_settings.php:32, ../src/Settings/General/MollieGeneralSettings.php:42 +msgid "This controls the title which the user sees during checkout. Default %s" +msgstr "Dit controleert de titel die de gebruiker tijdens het betalen te zien krijgt. Standaard %s" + +#: ../inc/settings/mollie_applepay_settings.php:46, ../inc/settings/mollie_applepay_settings.php:48, ../src/Settings/General/MollieGeneralSettings.php:66 msgid "Display logo" msgstr "Toon logo" -#: build/inc/settings/mollie_applepay_settings.php:60 -#: build/src/Mollie/WC/Helper/Settings.php:81 -#: inc/settings/mollie_applepay_settings.php:60 -#: src/Mollie/WC/Helper/Settings.php:81 +#: ../inc/settings/mollie_applepay_settings.php:61, ../src/Settings/General/MollieGeneralSettings.php:52 msgid "Description" msgstr "Beschrijving" -#: build/inc/settings/mollie_applepay_settings.php:63 -#: build/src/Mollie/WC/Helper/Settings.php:84 -#: inc/settings/mollie_applepay_settings.php:63 -#: src/Mollie/WC/Helper/Settings.php:84 -msgid "" -"Payment method description that the customer will see on your checkout. " -"Default %s" -msgstr "" -"Beschrijving van de betaalmethode die de klant op uw betaalpagina te zien " -"krijgt. Standaard %s" +#. translators: Placeholder 1: Gateway description +#: ../inc/settings/mollie_applepay_settings.php:64, ../src/Settings/General/MollieGeneralSettings.php:56 +msgid "Payment method description that the customer will see on your checkout. Default %s" +msgstr "Beschrijving van de betaalmethode die de klant op uw betaalpagina te zien krijgt. Standaard %s" -#: build/inc/settings/mollie_applepay_settings.php:79 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:6 -#: inc/settings/mollie_applepay_settings.php:79 -#: inc/settings/mollie_apple_pay_button_enabler.php:6 +#: ../inc/settings/mollie_applepay_settings.php:81 msgid "Apple Pay button settings" msgstr "Instellingen Apple Pay knop" -#: build/inc/settings/mollie_applepay_settings.php:84 -#: inc/settings/mollie_applepay_settings.php:84 +#: ../inc/settings/mollie_applepay_settings.php:86 msgid "The following options are required to use the Apple Pay Direct Button" -msgstr "" -"De volgende opties zijn vereist voor het gebruik van de Apple Pay direct-" -"betalen-knop" +msgstr "De volgende opties zijn vereist voor het gebruik van de Apple Pay direct-betalen-knop" -#: build/inc/settings/mollie_applepay_settings.php:88 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:18 -#: inc/settings/mollie_applepay_settings.php:88 -#: inc/settings/mollie_apple_pay_button_enabler.php:18 +#: ../inc/settings/mollie_applepay_settings.php:90, ../src/PaymentMethods/Applepay.php:34 msgid "Enable Apple Pay Button on Cart page" msgstr "Activeer de Apple Pay knop op de winkelwagenpagina" -#: build/inc/settings/mollie_applepay_settings.php:91 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:21 -#: inc/settings/mollie_applepay_settings.php:91 -#: inc/settings/mollie_apple_pay_button_enabler.php:21 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:93, ../src/PaymentMethods/Applepay.php:36 msgid "Enable the Apple Pay direct buy button on the Cart page" msgstr "Activeer de Apple Pay direct-kopen-knop op de winkelwagenpagina" -#: build/inc/settings/mollie_applepay_settings.php:103 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:29 -#: inc/settings/mollie_applepay_settings.php:103 -#: inc/settings/mollie_apple_pay_button_enabler.php:29 +#: ../inc/settings/mollie_applepay_settings.php:106, ../src/PaymentMethods/Applepay.php:44 msgid "Enable Apple Pay Button on Product page" msgstr "Activeer de Apple Pay knop op de productpagina" -#: build/inc/settings/mollie_applepay_settings.php:106 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:32 -#: inc/settings/mollie_applepay_settings.php:106 -#: inc/settings/mollie_apple_pay_button_enabler.php:32 +#. translators: Placeholder 1: enabled or disabled +#: ../inc/settings/mollie_applepay_settings.php:109, ../src/PaymentMethods/Applepay.php:46 msgid "Enable the Apple Pay direct buy button on the Product page" msgstr "Activeer de Apple Pay direct-kopen-knop op de productpagina" -#: build/inc/settings/mollie_apple_pay_button_enabler.php:11 -#: inc/settings/mollie_apple_pay_button_enabler.php:11 -msgid "The following options are required to use the Apple Pay button" -msgstr "De volgende opties zijn vereist voor het gebruik van de Apple Pay knop" - -#: build/inc/settings/mollie_components.php:7 -#: inc/settings/mollie_components.php:7 +#: ../inc/settings/mollie_components.php:9 msgctxt "Mollie Components Settings" msgid "Base Styles" msgstr "Basisstijlen" -#: build/inc/settings/mollie_components.php:16 -#: build/inc/settings/mollie_components.php:156 -#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156 +#: ../inc/settings/mollie_components.php:18, ../inc/settings/mollie_components.php:158 msgctxt "Mollie Components Settings" msgid "Background Color" msgstr "Achtergrondkleur" -#: build/inc/settings/mollie_components.php:22 -#: build/inc/settings/mollie_components.php:145 -#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145 +#: ../inc/settings/mollie_components.php:24, ../inc/settings/mollie_components.php:147 msgctxt "Mollie Components Settings" msgid "Text Color" msgstr "Tekstkleur" -#: build/inc/settings/mollie_components.php:28 -#: inc/settings/mollie_components.php:28 +#: ../inc/settings/mollie_components.php:30 msgctxt "Mollie Components Settings" msgid "Placeholder Color" msgstr "Kleur van de plaatshouder" -#: build/inc/settings/mollie_components.php:34 -#: inc/settings/mollie_components.php:34 +#: ../inc/settings/mollie_components.php:36 msgctxt "Mollie Components Settings" msgid "Font Size" msgstr "Lettergrootte" -#: build/inc/settings/mollie_components.php:35 -#: inc/settings/mollie_components.php:35 +#: ../inc/settings/mollie_components.php:37 msgctxt "Mollie Components Settings" msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'." -msgstr "" -"Bepaalt de lettergrootte van het component. Toegestane eenheden: 'em', 'px', " -"'rem'." +msgstr "Bepaalt de lettergrootte van het component. Toegestane eenheden: 'em', 'px', 'rem'." -#: build/inc/settings/mollie_components.php:45 -#: inc/settings/mollie_components.php:45 +#: ../inc/settings/mollie_components.php:47 msgctxt "Mollie Components Settings" msgid "Font Weight" msgstr "Lettergewicht" -#: build/inc/settings/mollie_components.php:48 -#: inc/settings/mollie_components.php:48 +#: ../inc/settings/mollie_components.php:50 msgctxt "Mollie Components Settings" msgid "Lighter" msgstr "Lichter" -#: build/inc/settings/mollie_components.php:49 -#: inc/settings/mollie_components.php:49 +#: ../inc/settings/mollie_components.php:51 msgctxt "Mollie Components Settings" msgid "Regular" msgstr "Standaard" -#: build/inc/settings/mollie_components.php:50 -#: inc/settings/mollie_components.php:50 +#: ../inc/settings/mollie_components.php:52 msgctxt "Mollie Components Settings" msgid "Bold" msgstr "Vet" -#: build/inc/settings/mollie_components.php:56 -#: inc/settings/mollie_components.php:56 +#: ../inc/settings/mollie_components.php:58 msgctxt "Mollie Components Settings" msgid "Letter Spacing" msgstr "Letterafstand" -#: build/inc/settings/mollie_components.php:62 -#: inc/settings/mollie_components.php:62 +#: ../inc/settings/mollie_components.php:64 msgctxt "Mollie Components Settings" msgid "Line Height" msgstr "Regelhoogte" -#: build/inc/settings/mollie_components.php:71 -#: inc/settings/mollie_components.php:71 +#: ../inc/settings/mollie_components.php:73 msgctxt "Mollie Components Settings" msgid "Padding" msgstr "Vulling" -#: build/inc/settings/mollie_components.php:72 -#: inc/settings/mollie_components.php:72 +#: ../inc/settings/mollie_components.php:74 msgctxt "Mollie Components Settings" -msgid "" -"Add padding to the components. Allowed units include `16px 16px 16px 16px` " -"and `em`, `px`, `rem`." -msgstr "" -"Voeg vulling toe aan de componenten. '16px 16px 16px 16px' en 'em', 'px', " -"'rem' eenheden zijn toegestaan." +msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`." +msgstr "Voeg vulling toe aan de componenten. '16px 16px 16px 16px' en 'em', 'px', 'rem' eenheden zijn toegestaan." -#: build/inc/settings/mollie_components.php:82 -#: inc/settings/mollie_components.php:82 +#: ../inc/settings/mollie_components.php:84 msgctxt "Mollie Components Settings" msgid "Align Text" msgstr "Lijn tekst uit" -#: build/inc/settings/mollie_components.php:85 -#: inc/settings/mollie_components.php:85 +#: ../inc/settings/mollie_components.php:87 msgctxt "Mollie Components Settings" msgid "Left" msgstr "Links" -#: build/inc/settings/mollie_components.php:86 -#: inc/settings/mollie_components.php:86 +#: ../inc/settings/mollie_components.php:88 msgctxt "Mollie Components Settings" msgid "Right" msgstr "Rechts" -#: build/inc/settings/mollie_components.php:87 -#: inc/settings/mollie_components.php:87 +#: ../inc/settings/mollie_components.php:89 msgctxt "Mollie Components Settings" msgid "Center" msgstr "Centrum" -#: build/inc/settings/mollie_components.php:88 -#: inc/settings/mollie_components.php:88 +#: ../inc/settings/mollie_components.php:90 msgctxt "Mollie Components Settings" msgid "Justify" msgstr "Rechtvaardigen" -#: build/inc/settings/mollie_components.php:94 -#: inc/settings/mollie_components.php:94 +#: ../inc/settings/mollie_components.php:96 msgctxt "Mollie Components Settings" msgid "Transform Text " msgstr "Wijzig tekst " -#: build/inc/settings/mollie_components.php:97 -#: inc/settings/mollie_components.php:97 +#: ../inc/settings/mollie_components.php:99 msgctxt "Mollie Components Settings" msgid "None" msgstr "Geen" -#: build/inc/settings/mollie_components.php:102 -#: inc/settings/mollie_components.php:102 +#: ../inc/settings/mollie_components.php:104 msgctxt "Mollie Components Settings" msgid "Capitalize" msgstr "In hoofdletters schrijven" -#: build/inc/settings/mollie_components.php:107 -#: inc/settings/mollie_components.php:107 +#: ../inc/settings/mollie_components.php:109 msgctxt "Mollie Components Settings" msgid "Uppercase" msgstr "Hoofdletters" -#: build/inc/settings/mollie_components.php:112 -#: inc/settings/mollie_components.php:112 +#: ../inc/settings/mollie_components.php:114 msgctxt "Mollie Components Settings" msgid "Lowercase" msgstr "Kleine letters" -#: build/inc/settings/mollie_components.php:117 -#: inc/settings/mollie_components.php:117 +#: ../inc/settings/mollie_components.php:119 msgctxt "Mollie Components Settings" msgid "Full Width" msgstr "Volledige breedte" -#: build/inc/settings/mollie_components.php:122 -#: inc/settings/mollie_components.php:122 +#: ../inc/settings/mollie_components.php:124 msgctxt "Mollie Components Settings" msgid "Full Size Kana" msgstr "Volledige grootte Kana" -#: build/inc/settings/mollie_components.php:136 -#: inc/settings/mollie_components.php:136 +#: ../inc/settings/mollie_components.php:138 msgctxt "Mollie Components Settings" msgid "Invalid Status Styles" msgstr "Ongeldige statusstijlen" -#: build/inc/settings/mollie_components.php:146 -#: inc/settings/mollie_components.php:146 +#: ../inc/settings/mollie_components.php:148 msgctxt "Mollie Components Settings" msgid "Text Color for invalid input." msgstr "Tekstkleur voor ongeldige invoer." -#: build/inc/settings/mollie_components.php:157 -#: inc/settings/mollie_components.php:157 +#: ../inc/settings/mollie_components.php:159 msgctxt "Mollie Components Settings" msgid "Background Color for invalid input." msgstr "Achtergrondkleur voor ongeldige invoer." -#: build/inc/settings/mollie_components_enabler.php:6 -#: inc/settings/mollie_components_enabler.php:6 -msgid "Enable Mollie Components" -msgstr "Activeer Mollie-componenten" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to settings. Placeholder 4: Closing link tag. +#: ../src/Activation/ActivationModule.php:167 +msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s." +msgstr "%1$sMollie-betalingen voor WooCommerce: API-sleutels ontbreken%2$s stel%3$s hier uw API-sleutels in%4$s." -#: build/inc/settings/mollie_components_enabler.php:8 -#: inc/settings/mollie_components_enabler.php:8 -msgid "" -"Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." -msgstr "" -"Gebruik de Mollie-componenten voor deze gateway. Lees meer over %s en hoe het uw conversie verbetert." - -#: build/inc/settings/mollie_components_enabler.php:12 -#: build/src/Mollie/WC/Settings/Page/Components.php:10 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:139 -#: inc/settings/mollie_components_enabler.php:12 -#: src/Mollie/WC/Settings/Page/Components.php:10 -#: src/Mollie/WC/Settings/Page/Mollie.php:139 -msgid "Mollie Components" -msgstr "Mollie-componenten" +#: ../src/Activation/ConstraintsChecker.php:109 +msgid "%1$sMollie Payments for WooCommerce is inactive:%2$s" +msgstr "%1$sMollie-betalingen voor WooCommerce is niet actief:%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:5 -#: inc/settings/mollie_creditcard_icons_selector.php:5 -msgid "Customize Icons" -msgstr "Pas pictogrammen aan" +#: ../src/Activation/ConstraintsChecker.php:113 +msgid "%1$sCorrect the above errors to use Mollie Payments for Woocommerce%2$s" +msgstr "%1$sCorrigeer de bovenstaande fouten om Mollie-betalingen voor WooCommerce te gebruiken%2$s" -#: build/inc/settings/mollie_creditcard_icons_selector.php:12 -#: inc/settings/mollie_creditcard_icons_selector.php:12 -msgid "Enable Icons Selector" -msgstr "Schakel picotogramselectie in" +#: ../src/Assets/AssetsModule.php:432 +msgid "Name on card" +msgstr "Naam op de kaart" -#: build/inc/settings/mollie_creditcard_icons_selector.php:13 -#: inc/settings/mollie_creditcard_icons_selector.php:13 -msgid "Show customized creditcard icons on checkout page" -msgstr "Laat aangepaste creditcardpictogrammen op de checkout pagina zien" +#: ../src/Assets/AssetsModule.php:436 +msgid "Card number" +msgstr "Kaartnummer" -#: build/inc/settings/mollie_creditcard_icons_selector.php:21 -#: inc/settings/mollie_creditcard_icons_selector.php:21 -msgid "Show American Express Icon" -msgstr "Laat American Express pictogram zien" +#: ../src/Assets/AssetsModule.php:440 +msgid "Expiry date" +msgstr "Vervaldatum" -#: build/inc/settings/mollie_creditcard_icons_selector.php:26 -#: inc/settings/mollie_creditcard_icons_selector.php:26 -msgid "Show Carta Si Icon" -msgstr "Laat Carta Si pictogram zien" +#: ../src/Assets/AssetsModule.php:444 +msgid "CVC/CVV" +msgstr "CVC/CVV" -#: build/inc/settings/mollie_creditcard_icons_selector.php:31 -#: inc/settings/mollie_creditcard_icons_selector.php:31 -msgid "Show Carte Bancaire Icon" -msgstr "Laat Carte Bancaire pictogram zien" +#: ../src/Assets/AssetsModule.php:451 +msgid "An unknown error occurred, please check the card fields." +msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden." -#: build/inc/settings/mollie_creditcard_icons_selector.php:36 -#: inc/settings/mollie_creditcard_icons_selector.php:36 -msgid "Show Maestro Icon" -msgstr "Laat Maestro pictogram zien" +#: ../src/Assets/AssetsModule.php:521 +msgid "Please choose a billing country to see the available payment methods" +msgstr "Kies een factureringsland om de beschikbare betaalmethoden te zien" -#: build/inc/settings/mollie_creditcard_icons_selector.php:41 -#: inc/settings/mollie_creditcard_icons_selector.php:41 -msgid "Show Mastercard Icon" -msgstr "Laat Mastercard pictogram zien" +#: ../src/Assets/AssetsModule.php:570 +msgid "No custom logo selected" +msgstr "Geen aangepast logo gekozen" -#: build/inc/settings/mollie_creditcard_icons_selector.php:46 -#: inc/settings/mollie_creditcard_icons_selector.php:46 -msgid "Show Visa Icon" -msgstr "Laat Visa pictogram zien" +#: ../src/Gateway/MolliePaymentGateway.php:271, ../src/Settings/Page/MollieSettingsPage.php:313 +msgid "Test mode enabled." +msgstr "Testmodus geactiveerd." -#: build/inc/settings/mollie_creditcard_icons_selector.php:51 -#: inc/settings/mollie_creditcard_icons_selector.php:51 -msgid "Show VPay Icon" -msgstr "Laat VPay pictogram zien" +#. translators: The surrounding %s's Will be replaced by a link to the global setting page +#: ../src/Gateway/MolliePaymentGateway.php:276 +msgid "No API key provided. Please %1$sset you Mollie API key%2$s first." +msgstr "Geen API-sleutel verschaft. Stel eerst %1$suw Mollie API-sleutel%2$s in." -#: build/inc/settings/mollie_paypal_button_enabler.php:7 -#: inc/settings/mollie_paypal_button_enabler.php:7 -msgid "PayPal button display settings" -msgstr "PayPal knop weergave-instellingen" +#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Gateway/MolliePaymentGateway.php:291 +msgid "%1$s not enabled in your Mollie profile. You can enable it by editing your %2$sMollie profile%3$s." +msgstr "%1$s niet geactiveerd in uw Mollie-profiel. U kunt het activeren door uw %2$sMollie profiel%3$s te bewerken." -#: build/inc/settings/mollie_paypal_button_enabler.php:12 -#: inc/settings/mollie_paypal_button_enabler.php:12 -msgid "" -"%1sThe PayPal button is optimized for digital goods. And will only appear if " -"the product has no shipping. %2sThe customer's address information can only " -"be retrieved if the transaction has been done with the %3sOrders API%4s.%5s" -"%6s" -msgstr "" -"%1sDe PayPal knop is geoptimaliseerd voor digitale goederen. Hij verschijnt " -"alleen wanneer het product niet wordt verzonden. %2sDe adresgegevens van de " -"klant kunnen alleen worden verkregen wanneer de transactie werd uitgevoerd " -"met de %3sBestellingen API%4s.%5s%6s" +#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies +#: ../src/Gateway/MolliePaymentGateway.php:306 +msgid "Current shop currency %1$s not supported by Mollie. Read more about %2$ssupported currencies and payment methods.%3$s " +msgstr "Huidige shopvaluta %1$s niet ondersteund door Mollie. Lees meer over %2$sondersteunde valuta's en betaalmethoden.%3$s " -#: build/inc/settings/mollie_paypal_button_enabler.php:19 -#: inc/settings/mollie_paypal_button_enabler.php:19 -msgid "Display on cart page" -msgstr "Toon op de winkelwagenpagina" +#: ../src/Gateway/MolliePaymentGateway.php:577 +msgid "You have cancelled your payment. Please complete your order with a different payment method." +msgstr "U heeft uw betaling geannuleerd. Vervolledig uw bestelling met een andere betaalmethode." -#: build/inc/settings/mollie_paypal_button_enabler.php:23 -#: inc/settings/mollie_paypal_button_enabler.php:23 -msgid "Enable the PayPal button to be used in the cart page." -msgstr "Activeer de PayPal knop om deze te gebruiken op de winkelwagenpagina." +#: ../src/Gateway/MolliePaymentGateway.php:597, ../src/Gateway/MolliePaymentGateway.php:611 +msgid "Your payment was not successful. Please complete your order with a different payment method." +msgstr "Uw betaling is mislukt. Vervolledig uw bestelling met een andere betaalmethode." -#: build/inc/settings/mollie_paypal_button_enabler.php:31 -#: inc/settings/mollie_paypal_button_enabler.php:31 -msgid "Display on product page" -msgstr "Laat zien op de productpagina" +#: ../src/Gateway/MolliePaymentGateway.php:647 +msgid "Could not load order %s" +msgstr "Kon bestelling %s niet laden" -#: build/inc/settings/mollie_paypal_button_enabler.php:35 -#: inc/settings/mollie_paypal_button_enabler.php:35 -msgid "Enable the PayPal button to be used in the product page." -msgstr "Schakel de PayPal knop in om te gebruiken op de productpagina." +#: ../src/Gateway/MolliePaymentGateway.php:906 +msgid "Order cancelled" +msgstr "Bestelling geannuleerd" -#: build/inc/settings/mollie_paypal_button_enabler.php:44 -#: inc/settings/mollie_paypal_button_enabler.php:44 -msgctxt "Mollie PayPal Button Settings" -msgid "Button text language and color" -msgstr "Knop tekst taal en kleur" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Gateway/MolliePaymentGateway.php:943 +msgid "%1$s payment still pending (%2$s) but customer already returned to the store. Status should be updated automatically in the future, if it doesn't this might indicate a communication issue between the site and Mollie." +msgstr "%1$s betaling nog hangende (%2$s) maar klant is reeds teruggekeerd naar de shop. Status moet in de toekomst automatisch worden bijgewerkt, als dat niet gebeurt, kan dit wijzen op een communicatieprobleem tussen de site en Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:46 -#: inc/settings/mollie_paypal_button_enabler.php:46 -msgctxt "Mollie PayPal Button Settings" -msgid "Select the text and the colour of the button." -msgstr "Selecteer de tekst en de kleur van de knop." +#: ../src/Gateway/MolliePaymentGateway.php:949, ../src/Payment/MollieObject.php:687, ../src/Payment/MollieObject.php:655, ../src/Payment/MollieOrder.php:275, ../src/Payment/MollieOrder.php:332, ../src/Payment/MollieOrder.php:377, ../src/Payment/MollieOrder.php:459, ../src/Payment/MollieOrder.php:522, ../src/Payment/MollieOrder.php:941, ../src/Payment/MollieOrderService.php:165, ../src/Payment/MollieOrderService.php:428, ../src/Payment/MollieOrderService.php:491, ../src/Payment/MollieOrderService.php:705, ../src/Payment/MolliePayment.php:223, ../src/Payment/MolliePayment.php:310, ../src/Payment/MolliePayment.php:379, ../src/Payment/MolliePayment.php:402, ../src/Payment/PaymentService.php:788, ../src/Subscription/MollieSepaRecurringGateway.php:138, ../src/Subscription/MollieSepaRecurringGateway.php:205, ../src/Subscription/MollieSubscriptionGateway.php:470 +msgid "test mode" +msgstr "testmodus" -#: build/inc/settings/mollie_paypal_button_enabler.php:54 -#: inc/settings/mollie_paypal_button_enabler.php:54 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill blue" -msgstr "Engels -- Kopen met PayPal - pilvormig blauw" +#: ../src/Gateway/MolliePaymentGateway.php:964 +msgid ", payment pending." +msgstr ", betaling in behandeling." -#: build/inc/settings/mollie_paypal_button_enabler.php:55 -#: inc/settings/mollie_paypal_button_enabler.php:55 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded blue" -msgstr "Engels -- Kopen met PayPal - afgeronde hoeken blauw" +#: ../src/Gateway/MolliePaymentGateway.php:996 +msgid "Your order has been cancelled." +msgstr "Uw bestelling is geannuleerd." -#: build/inc/settings/mollie_paypal_button_enabler.php:56 -#: inc/settings/mollie_paypal_button_enabler.php:56 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill golden" -msgstr "Engels -- Kopen met PayPal - pilvormig goud" +#: ../src/Gateway/Surcharge.php:81 +msgid "A surchage fee might apply" +msgstr "Er kan een prijstoeslag van toepassing zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:57 -#: inc/settings/mollie_paypal_button_enabler.php:57 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded golden" -msgstr "Engels -- Kopen met PayPal - afgeronde hoeken goud" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. +#: ../src/Gateway/Surcharge.php:275 +msgid " + %1$s %2$s fee might apply" +msgstr " + %1$s %2$s prijstoeslag kan van toepassing zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:58 -#: inc/settings/mollie_paypal_button_enabler.php:58 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill gray" -msgstr "Engels -- Kopen met PayPal - pilvormig grijs" +#. translators: Placeholder 1: Fee amount tag. +#: ../src/Gateway/Surcharge.php:292 +msgid " + %1$s%% fee might apply" +msgstr " + %1$s%% prijstoeslag kan van toepassing zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:59 -#: inc/settings/mollie_paypal_button_enabler.php:59 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded gray" -msgstr "Engels -- Kopen met PayPal - afgeronde hoeken grijs" +#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. +#: ../src/Gateway/Surcharge.php:315 +msgid " + %1$s %2$s + %3$s%% fee might apply" +msgstr " + %1$s %2$s + %3$s%% prijstoeslag kan van toepassing zijn" -#: build/inc/settings/mollie_paypal_button_enabler.php:60 -#: inc/settings/mollie_paypal_button_enabler.php:60 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill white" -msgstr "Engels -- Kopen met PayPal - pilvormig wit" +#: ../src/Gateway/Surcharge.php:348 +msgid " (incl. VAT)" +msgstr " (incl. btw)" -#: build/inc/settings/mollie_paypal_button_enabler.php:61 -#: inc/settings/mollie_paypal_button_enabler.php:61 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded white" -msgstr "Engels -- Kopen met PayPal - afgeronde hoeken wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:682 +msgid "%1$s payment failed via Mollie (%2$s)." +msgstr "%1$s betaling mislukt via Mollie (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:62 -#: inc/settings/mollie_paypal_button_enabler.php:62 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill black" -msgstr "Engels -- Betalen met PayPal - pilvormig zwart" +#: ../src/Payment/MollieObject.php:650 +msgid "%1$s renewal payment failed via Mollie (%2$s). You will need to manually review the payment and adjust product stocks if you use them." +msgstr "%1$s vernieuwing van betaling mislukt via Mollie (%2$s). U dient de betaling handmatig te controleren en productvoorraden aan te passen als u deze gebruikt." -#: build/inc/settings/mollie_paypal_button_enabler.php:63 -#: inc/settings/mollie_paypal_button_enabler.php:63 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded black" -msgstr "Engels -- Betalen met PayPal - afgeronde hoeken zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieObject.php:721 +msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated." +msgstr "Mollie-webhook is gebeld, maar betaling is ook gestart via %s, dus de bestelstatus is niet bijgewerkt." -#: build/inc/settings/mollie_paypal_button_enabler.php:64 -#: inc/settings/mollie_paypal_button_enabler.php:64 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill blue" -msgstr "Engels -- Betalen met PayPal - pilvormig blauw" +#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID +#: ../src/Payment/MollieObject.php:740, ../src/PaymentMethods/InstructionStrategies/PaypalInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (PayPal transaction ID: %3$s)" +msgstr "Betaling voltooid met %1$s - %2$s (PayPal transactie-ID: %3$s)" -#: build/inc/settings/mollie_paypal_button_enabler.php:65 -#: inc/settings/mollie_paypal_button_enabler.php:65 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded blue" -msgstr "Engels -- Betalen met PayPal - afgeronde hoeken blauw" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:881 +msgctxt "Payment description for {orderNumber}" +msgid "Order {orderNumber}" +msgstr "Bestelling {orderNumber}" -#: build/inc/settings/mollie_paypal_button_enabler.php:66 -#: inc/settings/mollie_paypal_button_enabler.php:66 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill golden" -msgstr "Engels -- Betalen met PayPal - pilvormig goud" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:891 +msgctxt "Payment description for {storeName}" +msgid "StoreName {storeName}" +msgstr "Winkelnaam {storeName}" -#: build/inc/settings/mollie_paypal_button_enabler.php:67 -#: inc/settings/mollie_paypal_button_enabler.php:67 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded golden" -msgstr "Engels -- Betalen met PayPal - afgeronde hoeken goud" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:901 +msgctxt "Payment description for {customer.firstname}" +msgid "Customer Firstname {customer.firstname}" +msgstr "Voornaam klant {customer.firstname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:68 -#: inc/settings/mollie_paypal_button_enabler.php:68 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill gray" -msgstr "Engels -- Betalen met PayPal - pilvormig grijs" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:911 +msgctxt "Payment description for {customer.lastname}" +msgid "Customer Lastname {customer.lastname}" +msgstr "Achternaam klant {customer.lastname}" -#: build/inc/settings/mollie_paypal_button_enabler.php:69 -#: inc/settings/mollie_paypal_button_enabler.php:69 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded gray" -msgstr "Engels -- Betalen met PayPal - afgeronde hoeken grijs" +#. translators: do not translate between {} +#: ../src/Payment/MollieObject.php:921 +msgctxt "Payment description for {customer.company}" +msgid "Customer Company {customer.company}" +msgstr "Bedrijfsnaam klant {customer.company}" -#: build/inc/settings/mollie_paypal_button_enabler.php:70 -#: inc/settings/mollie_paypal_button_enabler.php:70 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill white" -msgstr "Engels -- Betalen met PayPal - pilvormig wit" +#: ../src/Payment/MollieObject.php:936 +msgid "Order" +msgstr "Bestelling" -#: build/inc/settings/mollie_paypal_button_enabler.php:71 -#: inc/settings/mollie_paypal_button_enabler.php:71 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded white" -msgstr "Engels -- Betalen met PayPal - afgeronde hoeken wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:271, ../src/Payment/MolliePayment.php:221, ../src/Subscription/MollieSepaRecurringGateway.php:211 +msgid "Order completed using %1$s payment (%2$s)." +msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:72 -#: inc/settings/mollie_paypal_button_enabler.php:72 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill black" -msgstr "Nederlands -- Kopen met PayPal - pilvormig zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:330 +msgid "Order authorized using %1$s payment (%2$s). Set order to completed in WooCommerce when you have shipped the products, to capture the payment. Do this within 28 days, or the order will expire. To handle individual order lines, process the order via the Mollie Dashboard." +msgstr "Bestelling geautoriseerd met gebruik van %1$s betaling (%2$s). Om de betaling te ontvangen, dient u na het verzenden van de producten de bestelling in WooCommerce als voltooid te markeren. Doe dit binnen 28 dagen, anders verloopt de bestelling. Voor het afhandelen van afzonderlijke bestelregels, dient u de bestelling via het Mollie Dashboard te verwerken." -#: build/inc/settings/mollie_paypal_button_enabler.php:73 -#: inc/settings/mollie_paypal_button_enabler.php:73 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded black" -msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:375 +msgid "Order completed at Mollie for %1$s order (%2$s). At least one order line completed. Remember: Completed status for an order at Mollie is not the same as Completed status in WooCommerce!" +msgstr "Bestelling voltooid bij Mollie voor %1$s bestelling (%2$s). Ten minste één bestelregel voltooid. Denk eraan: een voltooide status voor een bestelling bij Mollie is niet hetzelfde als een voltooide status in WooCommerce!" -#: build/inc/settings/mollie_paypal_button_enabler.php:74 -#: inc/settings/mollie_paypal_button_enabler.php:74 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill blue" -msgstr "Nederlands -- Kopen met PayPal - pilvormig blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:457 +msgid "%1$s order (%2$s) cancelled ." +msgstr "%1$s bestelling (%2$s) geannuleerd." -#: build/inc/settings/mollie_paypal_button_enabler.php:75 -#: inc/settings/mollie_paypal_button_enabler.php:75 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded blue" -msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:520 +msgid "%1$s order expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s bestelling verlopen (%2$s) maar niet geannuleerd wegens een andere hangende betaling (%3$s)." -#: build/inc/settings/mollie_paypal_button_enabler.php:76 -#: inc/settings/mollie_paypal_button_enabler.php:76 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill golden" -msgstr "Nederlands -- Kopen met PayPal - pilvormig goud" +#: ../src/Payment/MollieOrder.php:616 +msgctxt "Order note error" +msgid "The sum of refunds for all order lines is not identical to the refund amount, so this refund will be processed as a payment amount refund, not an order line refund." +msgstr "De som van de terugbetalingen voor alle orderregels is niet identiek aan het terugbetalingsbedrag, waardoor deze terugbetaling zal worden verwerkt als een terugbetaling van het betalingsbedrag en niet als een terugbetaling van een orderregel." -#: build/inc/settings/mollie_paypal_button_enabler.php:77 -#: inc/settings/mollie_paypal_button_enabler.php:77 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded golden" -msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken goud" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. +#: ../src/Payment/MollieOrder.php:747 +msgid "%1$sx %2$s cancelled for %3$s%4$s in WooCommerce and at Mollie." +msgstr "%1$sx %2$s geannuleerd voor %3$s%4$s in WooCommerce en bij Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:78 -#: inc/settings/mollie_paypal_button_enabler.php:78 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill gray" -msgstr "Nederlands -- Kopen met PayPal - pilvormig grijs" +#. translators: Placeholder 1: Number of items. Placeholder 2: Name of item. Placeholder 3: Currency. Placeholder 4: Amount. Placeholder 5: Reason. Placeholder 6: Refund Id. +#: ../src/Payment/MollieOrder.php:763 +msgid "%1$sx %2$s refunded for %3$s%4$s in WooCommerce and at Mollie.%5$s Refund ID: %6$s." +msgstr "%1$sx %2$s terugbetaald voor %3$s%4$s in WooCommerce en bij Mollie.%5$s Terugbetalings-ID: %6$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:79 -#: inc/settings/mollie_paypal_button_enabler.php:79 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded gray" -msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken grijs" +#. translators: Placeholder 1: payment status. +#: ../src/Payment/MollieOrder.php:823 +msgctxt "Order note error" +msgid "Can not refund order amount that has status %1$s at Mollie." +msgstr "Kan bestelbedrag niet terugbetalen dat status %1$s heeft bij Mollie." -#: build/inc/settings/mollie_paypal_button_enabler.php:80 -#: inc/settings/mollie_paypal_button_enabler.php:80 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill white" -msgstr "Nederlands -- Kopen met PayPal - pilvormig wit" +#. translators: Placeholder 1: Currency. Placeholder 2: Refund amount. Placeholder 3: Reason. Placeholder 4: Refund id. +#: ../src/Payment/MollieOrder.php:845 +msgid "Amount refund of %1$s%2$s refunded in WooCommerce and at Mollie.%3$s Refund ID: %4$s." +msgstr "Terugbetaling van %1$s%2$s terugbetaald in WooCommerce en bij Mollie.%3$s Terugbetalings-ID: %4$s." -#: build/inc/settings/mollie_paypal_button_enabler.php:81 -#: inc/settings/mollie_paypal_button_enabler.php:81 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded white" -msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken wit" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrder.php:936 +msgid "%1$s order (%2$s) expired ." +msgstr "%1$s bestelling (%2$s) verlopen." -#: build/inc/settings/mollie_paypal_button_enabler.php:82 -#: inc/settings/mollie_paypal_button_enabler.php:82 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill black" -msgstr "Nederlands -- Betalen met PayPal - pilvormig zwart" +#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID +#: ../src/Payment/MollieOrderService.php:162 +msgid "%1$s payment %2$s (%3$s), not processed." +msgstr "%1$s betaling %2$s (%3$s), niet verwerkt." -#: build/inc/settings/mollie_paypal_button_enabler.php:83 -#: inc/settings/mollie_paypal_button_enabler.php:83 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded black" -msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken zwart" +#: ../src/Payment/MollieOrderService.php:391 +msgid "New chargeback %s processed! Order note and order status updated." +msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt." -#: build/inc/settings/mollie_paypal_button_enabler.php:84 -#: inc/settings/mollie_paypal_button_enabler.php:84 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill blue" -msgstr "Nederlands -- Betalen met PayPal - pilvormig blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:423 +msgid "%1$s payment charged back via Mollie (%2$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s betaling teruggevorderd via Mollie (%2$s). U dient de betaling handmatig te controleren (en productvoorraden aan te passen als u dit gebruikt)." -#: build/inc/settings/mollie_paypal_button_enabler.php:85 -#: inc/settings/mollie_paypal_button_enabler.php:85 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded blue" -msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken blauw" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:485 +msgid "%1$s payment charged back via Mollie (%2$s). Subscription status updated, please review (and adjust product stocks if you use it)." +msgstr "%1$s betaling teruggevorderd via Mollie (%2$s). Abonnementstatus geüpdatet, gelieve te beoordelen (en productvoorraden aan te passen als u dit gebruikt)." -#: build/inc/settings/mollie_paypal_button_enabler.php:86 -#: inc/settings/mollie_paypal_button_enabler.php:86 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill golden" -msgstr "Nederlands -- Betalen met PayPal - pilvormig goud" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MollieOrderService.php:692 +msgid "%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review the payment (and adjust product stocks if you use it)." +msgstr "%1$s betaling %2$s via Mollie (%3$s %4$s). U dient de betaling handmatig te controleren (en productvoorraden aan te passen als u dit gebruikt)." + +#: ../src/Payment/MollieOrderService.php:805 +msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated." +msgstr "Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, maar bestelling niet geüpdatet." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:308 +msgid "%1$s payment (%2$s) cancelled ." +msgstr "%1$s betaling (%2$s) geannuleerd." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:377 +msgid "%1$s payment expired (%2$s) but not cancelled because of another pending payment (%3$s)." +msgstr "%1$s betaling verlopen (%2$s) maar niet geannuleerd wegens een andere hangende betaling (%3$s)." + +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Payment/MolliePayment.php:400 +msgid "%1$s payment expired (%2$s)." +msgstr "%1$s betaling verlopen (%2$s)." + +#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID +#: ../src/Payment/MolliePayment.php:476 +msgid "Refunded %1$s%2$s%3$s - Payment: %4$s, Refund: %5$s" +msgstr "Terugbetaald %1$s%2$s%3$s - Betaling: %4$s, Terugbetaling: %5$s" + +#. translators: Placeholder 1: order number +#: ../src/Payment/MollieSubscription.php:80 +msgctxt "Default payment description for subscription recurring payments" +msgid "Order %1$s" +msgstr "Bestelling %1$s" + +#: ../src/Payment/OrderItemsRefunder.php:121 +msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item." +msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld." + +#: ../src/Payment/OrderItemsRefunder.php:166 +msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount." +msgstr "Onmogelijk om de bestelartikel-id met betrekking tot het afstandsartikel terug te halen: %1$s Probeer een terugbetaling te doen per bedrag." + +#: ../src/Payment/OrderItemsRefunder.php:190 +msgid "Empty WooCommerce order items or mollie order lines." +msgstr "Lege WooCommerce bestelartikelen of Mollie-bestelregels." + +#: ../src/Payment/OrderLines.php:509 +msgid "Shipping" +msgstr "Verzending" + +#: ../src/Payment/PaymentModule.php:194 +msgid "Unpaid order cancelled - time limit reached." +msgstr "Onbetaald of geannuleerd - tijdslimiet bereikt." + +#: ../src/Payment/PaymentModule.php:213 +msgid "%1$s items refunded in WooCommerce and at Mollie." +msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie." + +#: ../src/Payment/PaymentModule.php:231 +msgid "%1$s items cancelled in WooCommerce and at Mollie." +msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie." + +#: ../src/Payment/PaymentModule.php:350 +msgctxt "Order note info" +msgid "Processing a payment, no capture needed" +msgstr "Een betaling wordt verwerkt, als voltooid markeren is niet nodig" + +#: ../src/Payment/PaymentModule.php:364 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be shipped/captured." +msgstr "Bestelling al geannuleerd bij Mollie, kan niet worden verzonden/als voltooid worden gemarkeerd." + +#: ../src/Payment/PaymentModule.php:372 +msgctxt "Order note info" +msgid "Order already completed at Mollie, can not be shipped/captured." +msgstr "Bestelling al voltooid bij Mollie, kan niet worden verzonden/als voltooid worden gemarkeerd." + +#: ../src/Payment/PaymentModule.php:381 +msgctxt "Order note info" +msgid "Order successfully updated to shipped at Mollie, capture of funds underway." +msgstr "Bestelling succesvol bijgewerkt naar verzonden bij Mollie, als voltooid markeren van tegoeden in behandeling." + +#: ../src/Payment/PaymentModule.php:387 +msgctxt "Order note info" +msgid "Order not paid or authorized at Mollie yet, can not be shipped." +msgstr "Bestelling nog niet betaald of geautoriseerd bij Mollie, kan niet worden verzonden." + +#: ../src/Payment/PaymentModule.php:421 +msgctxt "Order note info" +msgid "Order contains Mollie payment method, but not a valid Mollie Order ID. Canceling order failed." +msgstr "Bestelling bevat Mollie betaalmethode, maar geen geldig Mollie bestel-ID. Bestelling annuleren is mislukt." + +#: ../src/Payment/PaymentModule.php:442 +msgctxt "Order note info" +msgid "Order already canceled at Mollie, can not be canceled again." +msgstr "Bestelling al geannuleerd bij Mollie, kan niet opnieuw worden geannuleerd." + +#: ../src/Payment/PaymentModule.php:452 +msgctxt "Order note info" +msgid "Order also cancelled at Mollie." +msgstr "Bestelling ook geannuleerd bij Mollie." + +#: ../src/Payment/PaymentModule.php:458 +msgctxt "Order note info" +msgid "Order could not be canceled at Mollie, because order status is " +msgstr "Bestelling kon niet worden geannuleerd bij Mollie, want de bestelstatus is " + +#: ../src/Payment/PaymentService.php:620 +msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription." +msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats een volledig nieuwe bestelling om uw abonnement te wijzigen." + +#: ../src/Payment/PaymentService.php:626 +msgid "Failed switching subscriptions, no valid mandate." +msgstr "Abonnementen switchen mislukt, geen geldig mandaat" + +#: ../src/Payment/PaymentService.php:635 +msgid "Order completed internally because of an existing valid mandate at Mollie." +msgstr "Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie." + +#. translators: Placeholder 1: Payment method title +#: ../src/Payment/PaymentService.php:708, ../src/Buttons/ApplePayButton/AppleAjaxRequests.php:723, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:113, ../src/Buttons/PayPalButton/PayPalAjaxRequests.php:159 +msgid "Could not create %s payment." +msgstr "Kon geen %s betaling aanmaken." + +#: ../src/Payment/PaymentService.php:766, ../src/Subscription/MollieSepaRecurringGateway.php:127, ../src/Subscription/MollieSubscriptionGateway.php:461 +msgid "Awaiting payment confirmation." +msgstr "In afwachting van betalingsbevestiging" + +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Payment/PaymentService.php:786 +msgid "%s payment started (%s)." +msgstr "%s betaling gestart (%s)." + +#: ../src/Payment/RefundLineItemsBuilder.php:126 +msgid "Mollie doesn't allow a partial refund of the full amount or quantity of at least one order line. Trying to process this as an amount refund instead." +msgstr "Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag of hoeveelheid van ten minste één bestelregel. Probeer dit in plaats daarvan als een terugbetaling van het bedrag te verwerken." + +#: ../src/PaymentMethods/Applepay.php:14 +msgid "To accept payments via Apple Pay" +msgstr "Om betalingen te accepteren via Apple Pay" + +#: ../src/PaymentMethods/Bancontact.php:14 +msgid "Bancontact" +msgstr "Bancontact" + +#: ../src/PaymentMethods/Banktransfer.php:33 +msgid "Bank Transfer" +msgstr "Bankoverdracht" + +#: ../src/PaymentMethods/Banktransfer.php:55, ../src/Settings/General/MollieGeneralSettings.php:235 +msgid "Activate expiry time setting" +msgstr "Activeer instelling vervaltermijn" + +#: ../src/PaymentMethods/Banktransfer.php:56, ../src/Settings/General/MollieGeneralSettings.php:236 +msgid "Enable expiry time for payments" +msgstr "Activeer vervaltermijn voor betalingen" + +#: ../src/PaymentMethods/Banktransfer.php:57 +msgid "Enable this option if you want to be able to set the time after which the payment will expire. This will turn all transactions into payments instead of orders" +msgstr "Activeer deze optie, als u de termijn wilt kunnen instellen na dewelke de betaling vervalt. Dit zet alle transacties in betalingen om, in plaats van ze in bestellingen te wijzigen." + +#: ../src/PaymentMethods/Banktransfer.php:62, ../src/Settings/General/MollieGeneralSettings.php:242 +msgid "Expiry time" +msgstr "Vervaltermijn" + +#. translators: Placeholder 1: Default expiry days. +#: ../src/PaymentMethods/Banktransfer.php:65 +msgid "Number of DAYS after the payment will expire. Default %d days" +msgstr "Aantal DAGEN nadat de betaling vervalt. Standaard %d dagen." + +#: ../src/PaymentMethods/Banktransfer.php:74 +msgid "Skip Mollie payment screen" +msgstr "Mollie-betaalscherm overslaan" + +#: ../src/PaymentMethods/Banktransfer.php:75 +msgid "Skip Mollie payment screen when Bank Transfer is selected" +msgstr "Sla het Mollie-betaalscherm over wanneer er voor bankoverschrijving is gekozen." + +#: ../src/PaymentMethods/Banktransfer.php:76 +msgid "Enable this option if you want to skip redirecting your user to the Mollie payment screen, instead this will redirect your user directly to the WooCommerce order received page displaying instructions how to complete the Bank Transfer payment." +msgstr "Activeer deze optie als u het doorsturen van uw gebruiker naar het Mollie-betaalscherm wilt overslaan. In plaats daarvan stuurt deze uw gebruiker rechtstreeks naar de WooCommerce-pagina 'Bestelling ontvangen' met instructies voor het voltooien van de betaling via bankoverschrijving." + +#: ../src/PaymentMethods/Belfius.php:13 +msgid "Belfius Direct Net" +msgstr "Belfius Direct Net" + +#: ../src/PaymentMethods/Creditcard.php:16 +msgid "Credit card" +msgstr "Creditcard" + +#: ../src/PaymentMethods/Creditcard.php:52 +msgid "Enable Mollie Components" +msgstr "Activeer Mollie-componenten" + +#. translators: Placeholder 1: Mollie Components. +#: ../src/PaymentMethods/Creditcard.php:55 +msgid "Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." +msgstr "Gebruik de Mollie-componenten voor deze gateway. Lees meer over %s en hoe het uw conversie verbetert." + +#: ../src/PaymentMethods/Creditcard.php:59, ../src/Settings/Page/Components.php:21, ../src/Settings/Page/MollieSettingsPage.php:703 +msgid "Mollie Components" +msgstr "Mollie-componenten" + +#: ../src/PaymentMethods/Creditcard.php:92 +msgid "Customize Icons" +msgstr "Pas pictogrammen aan" + +#: ../src/PaymentMethods/Creditcard.php:99 +msgid "Enable Icons Selector" +msgstr "Schakel picotogramselectie in" + +#: ../src/PaymentMethods/Creditcard.php:100 +msgid "Show customized creditcard icons on checkout page" +msgstr "Laat aangepaste creditcardpictogrammen op de checkout pagina zien" + +#: ../src/PaymentMethods/Creditcard.php:108 +msgid "Show American Express Icon" +msgstr "Laat American Express pictogram zien" + +#: ../src/PaymentMethods/Creditcard.php:113 +msgid "Show Carta Si Icon" +msgstr "Laat Carta Si pictogram zien" + +#: ../src/PaymentMethods/Creditcard.php:118 +msgid "Show Carte Bancaire Icon" +msgstr "Laat Carte Bancaire pictogram zien" + +#: ../src/PaymentMethods/Creditcard.php:123 +msgid "Show Maestro Icon" +msgstr "Laat Maestro pictogram zien" + +#: ../src/PaymentMethods/Creditcard.php:128 +msgid "Show Mastercard Icon" +msgstr "Laat Mastercard pictogram zien" + +#: ../src/PaymentMethods/Creditcard.php:133 +msgid "Show Visa Icon" +msgstr "Laat Visa pictogram zien" + +#: ../src/PaymentMethods/Creditcard.php:138 +msgid "Show VPay Icon" +msgstr "Laat VPay pictogram zien" + +#: ../src/PaymentMethods/Directdebit.php:13 +msgid "SEPA Direct Debit" +msgstr "SEPA-incasso" + +#: ../src/PaymentMethods/Directdebit.php:14 +msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscriptions, and will not be shown in the WooCommerce checkout for regular payments! You also need to enable iDEAL and/or other \"first\" payment methods if you want to use SEPA Direct Debit." +msgstr "SEPA-incasso wordt gebruikt voor terugkerende betalingen met WooCommerce-abonnementen, en wordt niet getoond in de WooCommerce kassa voor reguliere betalingen! U moet ook iDEAL en/of andere 'eerste' betaalmethoden activeren als u SEPA-incasso wilt gebruiken." + +#: ../src/PaymentMethods/Eps.php:13 +msgid "EPS" +msgstr "EPS" + +#: ../src/PaymentMethods/Giftcard.php:30 +msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency" +msgid "Mollie - Giftcard details: %1$s %2$s %3$s." +msgstr "Mollie - gegevens cadeaubon: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:42 +msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency" +msgid " Remainder: %1$s %2$s %3$s." +msgstr " Overige: %1$s %2$s %3$s." + +#: ../src/PaymentMethods/Giftcard.php:60 +msgid "Gift cards" +msgstr "Cadeaubonnen" + +#: ../src/PaymentMethods/Giftcard.php:62, ../src/PaymentMethods/Giftcard.php:105 +msgid "Select your gift card" +msgstr "Selecteer uw cadeaubon" + +#: ../src/PaymentMethods/Giftcard.php:78 +msgid "Show gift cards dropdown" +msgstr "Laat cadeaubonnen-dropdown zien" + +#: ../src/PaymentMethods/Giftcard.php:84 +msgid "If you disable this, a dropdown with various gift cards will not be shown in the WooCommerce checkout, so users will select a gift card on the Mollie payment page after checkout." +msgstr "Als u dit deactiveert, zal er geen dropdown met verschillende cadeaubonnen in de WooCommerce- checkout worden getoond, dus gebruikers zullen na de checkout een cadeaubon selecteren op de Mollie-betaalpagina." + +#: ../src/PaymentMethods/Giftcard.php:93, ../src/PaymentMethods/Ideal.php:46, ../src/PaymentMethods/Kbc.php:48 +msgid "Issuers empty option" +msgstr "Optie uitgevers leeg" + +#: ../src/PaymentMethods/Giftcard.php:99 +msgid "This text will be displayed as the first option in the gift card dropdown, but only if the above 'Show gift cards dropdown' is enabled." +msgstr "Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd." + +#: ../src/PaymentMethods/Giropay.php:13 +msgid "Giropay" +msgstr "Giropay" + +#: ../src/PaymentMethods/Ideal.php:15 +msgid "iDEAL" +msgstr "iDEAL" + +#: ../src/PaymentMethods/Ideal.php:17, ../src/PaymentMethods/Ideal.php:55, ../src/PaymentMethods/Kbc.php:16, ../src/PaymentMethods/Kbc.php:60 +msgid "Select your bank" +msgstr "Selecteer uw bank" + +#: ../src/PaymentMethods/Ideal.php:34 +msgid "Show iDEAL banks dropdown" +msgstr "Laat iDEAL-banken dropdown zien" + +#: ../src/PaymentMethods/Ideal.php:37 +msgid "If you disable this, a dropdown with various iDEAL banks will not be shown in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie payment page after checkout." +msgstr "Als u dit deactiveert, zal er geen dropdown met verschillende iDEAL-banken in de WooCommerce- checkout worden getoond, dus gebruikers zullen na de checkout een iDEAL-bank selecteren op de Mollie-betaalpagina." + +#: ../src/PaymentMethods/Ideal.php:49 +msgid "This text will be displayed as the first option in the iDEAL issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above 'Show iDEAL banks dropdown' is enabled." +msgstr "Deze tekst wordt weergegeven als eerste optie in de iDEAL-uitgevers dropdown, als er niets wordt ingevoerd, wordt 'Selecteer uw bank' weergegeven. Alleen als het bovenstaande ''Toon iDEAL-banken dropdown'' is geactiveerd." + +#: ../src/PaymentMethods/In3.php:13 +msgid "in3" +msgstr "in3" + +#: ../src/PaymentMethods/In3.php:15 +msgid "Pay in 3 instalments, 0% interest" +msgstr "Betaal in 3 termijnen, 0% rente" + +#: ../src/PaymentMethods/Kbc.php:14 +msgid "KBC/CBC Payment Button" +msgstr "KBC/CBC betaalknop" + +#: ../src/PaymentMethods/Kbc.php:33 +msgid "Show KBC/CBC banks dropdown" +msgstr "Toon KBC/CBC-banken dropdown" + +#: ../src/PaymentMethods/Kbc.php:39 +msgid "If you disable this, a dropdown with various KBC/CBC banks will not be shown in the WooCommerce checkout, so users will select a KBC/CBC bank on the Mollie payment page after checkout." +msgstr "Als u dit deactiveert, zal een dropdown bij verschillende KBC/CBC-banken niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een KBC/CBC-bank selecteren op de Mollie-betaalpagina na het afrekenen." + +#: ../src/PaymentMethods/Kbc.php:54 +msgid "This text will be displayed as the first option in the KBC/CBC issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above ''Show KBC/CBC banks dropdown' is enabled." +msgstr "Deze tekst wordt weergegeven als eerste optie in de KBC/CBC-uitgevers drop-down, als er niets wordt ingevoerd, wordt 'Selecteer uw bank' weergegeven. Alleen als het bovenstaande 'Toon KBC/CBC-banken dropdown' is geactiveerd." + +#: ../src/PaymentMethods/Klarnapaylater.php:13 +msgid "Klarna Pay later" +msgstr "Klarna betaal later" + +#: ../src/PaymentMethods/Klarnapaylater.php:14, ../src/PaymentMethods/Klarnapaynow.php:14, ../src/PaymentMethods/Klarnasliceit.php:15 +msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required." +msgstr "Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-afrekenvelden zijn geactiveerd en verplicht zijn gesteld." + +#: ../src/PaymentMethods/Klarnapaynow.php:13 +msgid "Klarna Pay Now" +msgstr "Klarna betaal nu" + +#: ../src/PaymentMethods/Klarnasliceit.php:14 +msgid "Klarna Slice it" +msgstr "Klarna Slice it" + +#: ../src/PaymentMethods/Mybank.php:14 +msgid "MyBank" +msgstr "MyBank" + +#: ../src/PaymentMethods/Mybank.php:15 +msgid "To accept payments via MyBank" +msgstr "Om betalingen te accepteren via MyBank" + +#: ../src/PaymentMethods/Paypal.php:14 +msgid "PayPal" +msgstr "PayPal" + +#: ../src/PaymentMethods/Paypal.php:34 +msgid "Display on cart page" +msgstr "Toon op de winkelwagenpagina" + +#: ../src/PaymentMethods/Paypal.php:38 +msgid "Enable the PayPal button to be used in the cart page." +msgstr "Activeer de PayPal knop om deze te gebruiken op de winkelwagenpagina." + +#: ../src/PaymentMethods/Paypal.php:46 +msgid "Display on product page" +msgstr "Laat zien op de productpagina" + +#: ../src/PaymentMethods/Paypal.php:50 +msgid "Enable the PayPal button to be used in the product page." +msgstr "Schakel de PayPal knop in om te gebruiken op de productpagina." + +#: ../src/PaymentMethods/Paypal.php:59 +msgctxt "Mollie PayPal Button Settings" +msgid "Button text language and color" +msgstr "Knop tekst taal en kleur" + +#: ../src/PaymentMethods/Paypal.php:60 +msgctxt "Mollie PayPal Button Settings" +msgid "Select the text and the colour of the button." +msgstr "Selecteer de tekst en de kleur van de knop." + +#: ../src/PaymentMethods/Paypal.php:70 +msgid "Minimum amount to display button" +msgstr "Minimum bedrag voor de weergave van de knop." + +#: ../src/PaymentMethods/Paypal.php:74 +msgid "If the product or the cart total amount is under this number, then the button will not show up." +msgstr "Wanneer het product of het totale bedrag van de winkelwagen beneden dit getal blijft, verschijnt de betaalknop niet." + +#: ../src/PaymentMethods/Paypal.php:89 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill blue" +msgstr "Engels -- Kopen met PayPal - pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:90 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded blue" +msgstr "Engels -- Kopen met PayPal - afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:91 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill golden" +msgstr "Engels -- Kopen met PayPal - pilvormig goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:87 -#: inc/settings/mollie_paypal_button_enabler.php:87 +#: ../src/PaymentMethods/Paypal.php:92 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded golden" +msgstr "Engels -- Kopen met PayPal - afgeronde hoeken goud" + +#: ../src/PaymentMethods/Paypal.php:93 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill gray" +msgstr "Engels -- Kopen met PayPal - pilvormig grijs" + +#: ../src/PaymentMethods/Paypal.php:94 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded gray" +msgstr "Engels -- Kopen met PayPal - afgeronde hoeken grijs" + +#: ../src/PaymentMethods/Paypal.php:95 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Pill white" +msgstr "Engels -- Kopen met PayPal - pilvormig wit" + +#: ../src/PaymentMethods/Paypal.php:96 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Buy with PayPal - Rounded white" +msgstr "Engels -- Kopen met PayPal - afgeronde hoeken wit" + +#: ../src/PaymentMethods/Paypal.php:97 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill black" +msgstr "Engels -- Betalen met PayPal - pilvormig zwart" + +#: ../src/PaymentMethods/Paypal.php:98 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded black" +msgstr "Engels -- Betalen met PayPal - afgeronde hoeken zwart" + +#: ../src/PaymentMethods/Paypal.php:99 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill blue" +msgstr "Engels -- Betalen met PayPal - pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:100 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded blue" +msgstr "Engels -- Betalen met PayPal - afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:101 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill golden" +msgstr "Engels -- Betalen met PayPal - pilvormig goud" + +#: ../src/PaymentMethods/Paypal.php:102 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded golden" +msgstr "Engels -- Betalen met PayPal - afgeronde hoeken goud" + +#: ../src/PaymentMethods/Paypal.php:103 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill gray" +msgstr "Engels -- Betalen met PayPal - pilvormig grijs" + +#: ../src/PaymentMethods/Paypal.php:104 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded gray" +msgstr "Engels -- Betalen met PayPal - afgeronde hoeken grijs" + +#: ../src/PaymentMethods/Paypal.php:105 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Pill white" +msgstr "Engels -- Betalen met PayPal - pilvormig wit" + +#: ../src/PaymentMethods/Paypal.php:106 +msgctxt "Mollie PayPal button Settings" +msgid "English -- Checkout with PayPal - Rounded white" +msgstr "Engels -- Betalen met PayPal - afgeronde hoeken wit" + +#: ../src/PaymentMethods/Paypal.php:107 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill black" +msgstr "Nederlands -- Kopen met PayPal - pilvormig zwart" + +#: ../src/PaymentMethods/Paypal.php:108 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded black" +msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken zwart" + +#: ../src/PaymentMethods/Paypal.php:109 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill blue" +msgstr "Nederlands -- Kopen met PayPal - pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:110 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded blue" +msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:111 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill golden" +msgstr "Nederlands -- Kopen met PayPal - pilvormig goud" + +#: ../src/PaymentMethods/Paypal.php:112 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded golden" +msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken goud" + +#: ../src/PaymentMethods/Paypal.php:113 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill gray" +msgstr "Nederlands -- Kopen met PayPal - pilvormig grijs" + +#: ../src/PaymentMethods/Paypal.php:114 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded gray" +msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken grijs" + +#: ../src/PaymentMethods/Paypal.php:115 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Pill white" +msgstr "Nederlands -- Kopen met PayPal - pilvormig wit" + +#: ../src/PaymentMethods/Paypal.php:116 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Buy with PayPal - Rounded white" +msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken wit" + +#: ../src/PaymentMethods/Paypal.php:117 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill black" +msgstr "Nederlands -- Betalen met PayPal - pilvormig zwart" + +#: ../src/PaymentMethods/Paypal.php:118 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded black" +msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken zwart" + +#: ../src/PaymentMethods/Paypal.php:119 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill blue" +msgstr "Nederlands -- Betalen met PayPal - pilvormig blauw" + +#: ../src/PaymentMethods/Paypal.php:120 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Rounded blue" +msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken blauw" + +#: ../src/PaymentMethods/Paypal.php:121 +msgctxt "Mollie PayPal button Settings" +msgid "Dutch -- Checkout with PayPal - Pill golden" +msgstr "Nederlands -- Betalen met PayPal - pilvormig goud" + +#: ../src/PaymentMethods/Paypal.php:122 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded golden" msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:88 -#: inc/settings/mollie_paypal_button_enabler.php:88 +#: ../src/PaymentMethods/Paypal.php:123 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill gray" msgstr "Nederlands -- Betalen met PayPal - pilvormig grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:89 -#: inc/settings/mollie_paypal_button_enabler.php:89 +#: ../src/PaymentMethods/Paypal.php:124 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded gray" msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:90 -#: inc/settings/mollie_paypal_button_enabler.php:90 +#: ../src/PaymentMethods/Paypal.php:125 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Pill white" msgstr "Duits -- Betalen met PayPal - pilvormig wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:91 -#: inc/settings/mollie_paypal_button_enabler.php:91 +#: ../src/PaymentMethods/Paypal.php:126 msgctxt "Mollie PayPal button Settings" msgid "Dutch -- Checkout with PayPal - Rounded white" msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:92 -#: inc/settings/mollie_paypal_button_enabler.php:92 +#: ../src/PaymentMethods/Paypal.php:127 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill black" msgstr "Duits -- Kopen met PayPal - pilvormig zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:93 -#: inc/settings/mollie_paypal_button_enabler.php:93 +#: ../src/PaymentMethods/Paypal.php:128 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded black" msgstr "Duits -- Kopen met PayPal - zwarte cirkel" -#: build/inc/settings/mollie_paypal_button_enabler.php:94 -#: inc/settings/mollie_paypal_button_enabler.php:94 +#: ../src/PaymentMethods/Paypal.php:129 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill blue" msgstr "Duits -- Kopen met PayPal - pilvormig blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:95 -#: inc/settings/mollie_paypal_button_enabler.php:95 +#: ../src/PaymentMethods/Paypal.php:130 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded blue" msgstr "Duits -- Kopen met PayPal - afgeronde hoeken blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:96 -#: inc/settings/mollie_paypal_button_enabler.php:96 +#: ../src/PaymentMethods/Paypal.php:131 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill golden" msgstr "Duits -- Kopen met PayPal - pilvormig goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:97 -#: inc/settings/mollie_paypal_button_enabler.php:97 +#: ../src/PaymentMethods/Paypal.php:132 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded golden" msgstr "Duits -- Kopen met PayPal - afgeronde hoeken goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:98 -#: inc/settings/mollie_paypal_button_enabler.php:98 +#: ../src/PaymentMethods/Paypal.php:133 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill gray" msgstr "Duits -- Kopen met PayPal - pilvormig grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:99 -#: inc/settings/mollie_paypal_button_enabler.php:99 +#: ../src/PaymentMethods/Paypal.php:134 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded gray" msgstr "Duits -- Kopen met PayPal - afgeronde hoeken grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:100 -#: inc/settings/mollie_paypal_button_enabler.php:100 +#: ../src/PaymentMethods/Paypal.php:135 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Pill white" msgstr "Duits -- Kopen met PayPal - pilvormig wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:101 -#: inc/settings/mollie_paypal_button_enabler.php:101 +#: ../src/PaymentMethods/Paypal.php:136 msgctxt "Mollie PayPal button Settings" msgid "German -- Buy with PayPal - Rounded white" msgstr "Duits -- Kopen met PayPal - afgeronde hoeken wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:102 -#: inc/settings/mollie_paypal_button_enabler.php:102 +#: ../src/PaymentMethods/Paypal.php:137 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill black" msgstr "Duits -- Betalen met PayPal - pilvormig zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:103 -#: inc/settings/mollie_paypal_button_enabler.php:103 +#: ../src/PaymentMethods/Paypal.php:138 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded black" msgstr "Duits -- Betalen met PayPal - afgeronde hoeken zwart" -#: build/inc/settings/mollie_paypal_button_enabler.php:104 -#: inc/settings/mollie_paypal_button_enabler.php:104 +#: ../src/PaymentMethods/Paypal.php:139 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill blue" msgstr "Duits -- Betalen met PayPal - pilvormig blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:105 -#: inc/settings/mollie_paypal_button_enabler.php:105 +#: ../src/PaymentMethods/Paypal.php:140 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded blue" msgstr "Duits -- Betalen met PayPal - afgeronde hoeken blauw" -#: build/inc/settings/mollie_paypal_button_enabler.php:106 -#: inc/settings/mollie_paypal_button_enabler.php:106 +#: ../src/PaymentMethods/Paypal.php:141 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill golden" msgstr "Duits -- Betalen met PayPal - pilvormig goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:107 -#: inc/settings/mollie_paypal_button_enabler.php:107 +#: ../src/PaymentMethods/Paypal.php:142 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded golden" msgstr "Duits -- Betalen met PayPal - afgeronde hoeken goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:108 -#: inc/settings/mollie_paypal_button_enabler.php:108 +#: ../src/PaymentMethods/Paypal.php:143 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill gray" msgstr "Duits -- Betalen met PayPal - pilvormig grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:109 -#: inc/settings/mollie_paypal_button_enabler.php:109 +#: ../src/PaymentMethods/Paypal.php:144 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded gray" msgstr "Duits -- Betalen met PayPal - afgeronde hoeken grijs" -#: build/inc/settings/mollie_paypal_button_enabler.php:110 -#: inc/settings/mollie_paypal_button_enabler.php:110 +#: ../src/PaymentMethods/Paypal.php:145 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Pill white" msgstr "Duits -- Betalen met PayPal - pilvormig wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:111 -#: inc/settings/mollie_paypal_button_enabler.php:111 +#: ../src/PaymentMethods/Paypal.php:146 msgctxt "Mollie PayPal button Settings" msgid "German -- Checkout with PayPal - Rounded white" msgstr "Duits -- Betalen met PayPal - afgeronde hoeken wit" -#: build/inc/settings/mollie_paypal_button_enabler.php:112 -#: inc/settings/mollie_paypal_button_enabler.php:112 +#: ../src/PaymentMethods/Paypal.php:147 msgctxt "Mollie PayPal button Settings" msgid "French -- Buy with PayPal - Gold" msgstr "Frans -- Kopen met PayPal - goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:113 -#: inc/settings/mollie_paypal_button_enabler.php:113 +#: ../src/PaymentMethods/Paypal.php:148 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Gold" msgstr "Frans -- Betalen met PayPal - goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:114 -#: inc/settings/mollie_paypal_button_enabler.php:114 +#: ../src/PaymentMethods/Paypal.php:149 msgctxt "Mollie PayPal button Settings" msgid "French -- Checkout with PayPal - Silver" msgstr "Frans -- Betalen met PayPal - zilver" -#: build/inc/settings/mollie_paypal_button_enabler.php:115 -#: inc/settings/mollie_paypal_button_enabler.php:115 +#: ../src/PaymentMethods/Paypal.php:150 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Buy with PayPal - Gold" msgstr "Pools -- Kopen met PayPal - goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:116 -#: inc/settings/mollie_paypal_button_enabler.php:116 +#: ../src/PaymentMethods/Paypal.php:151 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Checkout with PayPal - Gold" msgstr "Pools -- Betalen met PayPal - goud" -#: build/inc/settings/mollie_paypal_button_enabler.php:117 -#: inc/settings/mollie_paypal_button_enabler.php:117 +#: ../src/PaymentMethods/Paypal.php:152 msgctxt "Mollie PayPal button Settings" msgid "Polish -- Checkout with PayPal - Silver" msgstr "Pools -- Betalen met PayPal - zilver" -#: build/inc/settings/mollie_paypal_button_enabler.php:122 -#: inc/settings/mollie_paypal_button_enabler.php:122 -msgid "Minimum amount to display button" -msgstr "Minimum bedrag voor de weergave van de knop." - -#: build/inc/settings/mollie_paypal_button_enabler.php:126 -#: inc/settings/mollie_paypal_button_enabler.php:126 -msgid "" -"If the product or the cart total amount is under this number, then the " -"button will not show up." -msgstr "" -"Wanneer het product of het totale bedrag van de winkelwagen beneden dit " -"getal blijft, verschijnt de betaalknop niet." - -#: build/mollie-payments-for-woocommerce.php:90 -#: mollie-payments-for-woocommerce.php:90 -msgid "" -"%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set " -"your API keys here%4$s." -msgstr "" -"%1$sMollie-betalingen voor WooCommerce: API-sleutels ontbreken%2$s stel%3$s " -"hier uw API-sleutels in%4$s." - -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: build/src/Mollie/WC/Gateway/Abstract.php:685 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: src/Mollie/WC/Gateway/Abstract.php:685 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -msgid "Could not create %s payment." -msgstr "Kon geen %s betaling aanmaken." - -#: build/src/Mollie/WC/Gateway/Abstract.php:138 -#: src/Mollie/WC/Gateway/Abstract.php:138 -msgid "No custom logo selected" -msgstr "Geen aangepast logo gekozen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:221 -#: src/Mollie/WC/Gateway/Abstract.php:221 -msgid "Gateway Disabled" -msgstr "Gateway gedeactiveerd" - -#: build/src/Mollie/WC/Gateway/Abstract.php:244 -#: src/Mollie/WC/Gateway/Abstract.php:244 -msgid "Return to payments" -msgstr "Ga terug naar betalingen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:260 -#: build/src/Mollie/WC/Helper/Settings.php:114 -#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114 -msgid "Sell to specific countries" -msgstr "Verkoop aan bepaalde landen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:272 -#: src/Mollie/WC/Gateway/Abstract.php:272 -msgid "Choose countries…" -msgstr "Selecteer landen...;" - -#: build/src/Mollie/WC/Gateway/Abstract.php:273 -#: src/Mollie/WC/Gateway/Abstract.php:273 -msgid "Country" -msgstr "Land" - -#: build/src/Mollie/WC/Gateway/Abstract.php:282 -#: src/Mollie/WC/Gateway/Abstract.php:282 -msgid "Select all" -msgstr "Selecteer alles" - -#: build/src/Mollie/WC/Gateway/Abstract.php:283 -#: src/Mollie/WC/Gateway/Abstract.php:283 -msgid "Select none" -msgstr "Selecteer geen" - -#: build/src/Mollie/WC/Gateway/Abstract.php:337 -#: build/src/Mollie/WC/Helper/Settings.php:558 -#: src/Mollie/WC/Gateway/Abstract.php:337 src/Mollie/WC/Helper/Settings.php:558 -msgid "Test mode enabled." -msgstr "Testmodus geactiveerd." - -#. translators: The surrounding %s's Will be replaced by a link to the global setting page -#: build/src/Mollie/WC/Gateway/Abstract.php:339 -#: src/Mollie/WC/Gateway/Abstract.php:339 -msgid "No API key provided. Please %sset you Mollie API key%s first." -msgstr "Geen API-sleutel verschaft. Stel eerst %suw Mollie API-sleutel%s in." - -#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Gateway/Abstract.php:351 -#: src/Mollie/WC/Gateway/Abstract.php:351 -msgid "" -"%s not enabled in your Mollie profile. You can enable it by editing your " -"%sMollie profile%s." -msgstr "" -"%s niet geactiveerd in uw Mollie-profiel. U kunt het activeren door uw " -"%sMollie profiel%s te bewerken." - -#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies -#: build/src/Mollie/WC/Gateway/Abstract.php:363 -#: src/Mollie/WC/Gateway/Abstract.php:363 -msgid "" -"Current shop currency %s not supported by Mollie. Read more about " -"%ssupported currencies and payment methods.%s " -msgstr "" -"Huidige shopvaluta %s niet ondersteund door Mollie. Lees meer over " -"%sondersteunde valuta's en betaalmethoden.%s " - -#: build/src/Mollie/WC/Gateway/Abstract.php:525 -#: src/Mollie/WC/Gateway/Abstract.php:525 -msgid "Could not load order %s" -msgstr "Kon bestelling %s niet laden" - -#: build/src/Mollie/WC/Gateway/Abstract.php:577 -#: src/Mollie/WC/Gateway/Abstract.php:577 -msgid "" -"Order completed internally because of an existing valid mandate at Mollie." -msgstr "" -"Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie." - -#: build/src/Mollie/WC/Gateway/Abstract.php:588 -#: src/Mollie/WC/Gateway/Abstract.php:588 -msgid "" -"Subscription switch failed, no valid mandate found. Place a completely new " -"order to change your subscription." -msgstr "" -"Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats " -"een volledig nieuwe bestelling om uw abonnement te wijzigen." - -#: build/src/Mollie/WC/Gateway/Abstract.php:589 -#: src/Mollie/WC/Gateway/Abstract.php:589 -msgid "Failed switching subscriptions, no valid mandate." -msgstr "Abonnementen switchen mislukt, geen geldig mandaat" - -#: build/src/Mollie/WC/Gateway/Abstract.php:658 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:413 -#: src/Mollie/WC/Gateway/Abstract.php:658 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:413 -msgid "Awaiting payment confirmation." -msgstr "In afwachting van betalingsbevestiging" - -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:668 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:420 -#: src/Mollie/WC/Gateway/Abstract.php:668 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:420 -msgid "%s payment started (%s)." -msgstr "%s betaling gestart (%s)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:670 -#: build/src/Mollie/WC/Gateway/Abstract.php:897 -#: build/src/Mollie/WC/Gateway/Abstract.php:1181 -#: build/src/Mollie/WC/Gateway/Abstract.php:1243 -#: build/src/Mollie/WC/Gateway/Abstract.php:1618 -#: build/src/Mollie/WC/Gateway/Abstract.php:2142 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: build/src/Mollie/WC/Payment/Object.php:608 -#: build/src/Mollie/WC/Payment/Object.php:642 -#: build/src/Mollie/WC/Payment/Order.php:264 -#: build/src/Mollie/WC/Payment/Order.php:316 -#: build/src/Mollie/WC/Payment/Order.php:363 -#: build/src/Mollie/WC/Payment/Order.php:446 -#: build/src/Mollie/WC/Payment/Order.php:511 -#: build/src/Mollie/WC/Payment/Order.php:936 -#: build/src/Mollie/WC/Payment/Payment.php:249 -#: build/src/Mollie/WC/Payment/Payment.php:336 -#: build/src/Mollie/WC/Payment/Payment.php:406 -#: build/src/Mollie/WC/Payment/Payment.php:429 -#: src/Mollie/WC/Gateway/Abstract.php:670 -#: src/Mollie/WC/Gateway/Abstract.php:897 -#: src/Mollie/WC/Gateway/Abstract.php:1181 -#: src/Mollie/WC/Gateway/Abstract.php:1243 -#: src/Mollie/WC/Gateway/Abstract.php:1618 -#: src/Mollie/WC/Gateway/Abstract.php:2142 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642 -#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316 -#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446 -#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936 -#: src/Mollie/WC/Payment/Payment.php:249 src/Mollie/WC/Payment/Payment.php:336 -#: src/Mollie/WC/Payment/Payment.php:406 src/Mollie/WC/Payment/Payment.php:429 -msgid "test mode" -msgstr "testmodus" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:894 -#: src/Mollie/WC/Gateway/Abstract.php:894 -msgid "%s payment %s (%s), not processed." -msgstr "%s betaling %s (%s), niet verwerkt." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1008 -#: src/Mollie/WC/Gateway/Abstract.php:1008 -msgid "" -"New refund %s processed in Mollie Dashboard! Order note added, but order not " -"updated." -msgstr "" -"Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, " -"maar bestelling niet geüpdatet." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1144 -#: src/Mollie/WC/Gateway/Abstract.php:1144 -msgid "New chargeback %s processed! Order note and order status updated." -msgstr "" -"Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1176 -#: src/Mollie/WC/Gateway/Abstract.php:1176 -msgid "" -"%s payment charged back via Mollie (%s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%s betaling teruggevorderd via Mollie (%s). U dient de betaling handmatig te " -"controleren (en productvoorraden aan te passen als u dit gebruikt)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1237 -#: src/Mollie/WC/Gateway/Abstract.php:1237 -msgid "" -"%s payment charged back via Mollie (%s). Subscription status updated, please " -"review (and adjust product stocks if you use it)." -msgstr "" -"%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet, " -"gelieve te beoordelen (en productvoorraden aan te passen als u dit gebruikt)." - -# MS: Datei sagt 'informal' = Satz müsste sein 'Je hebt je betaling geannuleerd'. #query -#: build/src/Mollie/WC/Gateway/Abstract.php:1314 -#: src/Mollie/WC/Gateway/Abstract.php:1314 -msgid "" -"You have cancelled your payment. Please complete your order with a different " -"payment method." -msgstr "" -"U heeft uw betaling geannuleerd. Vervolledig uw bestelling met een andere " -"betaalmethode." - -# MS: Datei sagt 'informal', Satz müsste sein: 'Je betaling is mislukt' #query -#: build/src/Mollie/WC/Gateway/Abstract.php:1328 -#: build/src/Mollie/WC/Gateway/Abstract.php:1337 -#: src/Mollie/WC/Gateway/Abstract.php:1328 -#: src/Mollie/WC/Gateway/Abstract.php:1337 -msgid "" -"Your payment was not successful. Please complete your order with a different " -"payment method." -msgstr "" -"Uw betaling is mislukt. Vervolledig uw bestelling met een andere " -"betaalmethode." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1529 -#: src/Mollie/WC/Gateway/Abstract.php:1529 -msgid "We have not received a definite payment status." -msgstr "We hebben geen definitieve betalingsstatus ontvangen." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1534 -#: src/Mollie/WC/Gateway/Abstract.php:1534 -msgid "" -"We have not received a definite payment status. You will receive an email as " -"soon as we receive a confirmation of the bank/merchant." -msgstr "" -"We hebben geen definitieve betalingsstatus ontvangen. U ontvangt een e-mail " -"zodra we een bevestiging van de bank/verkoper ontvangen." - -#. translators: Placeholder 1: payment method -#: build/src/Mollie/WC/Gateway/Abstract.php:1541 -#: src/Mollie/WC/Gateway/Abstract.php:1541 -msgid "Payment completed with %s" -msgstr "Betaling voltooid met %s" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1589 -#: src/Mollie/WC/Gateway/Abstract.php:1589 -msgid "Order cancelled" -msgstr "Bestelling geannuleerd" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1616 -#: src/Mollie/WC/Gateway/Abstract.php:1616 -msgid "" -"%s payment still pending (%s) but customer already returned to the store. " -"Status should be updated automatically in the future, if it doesn't this " -"might indicate a communication issue between the site and Mollie." -msgstr "" -"%s betaling nog steeds in behandeling (%s) maar de klant is reeds " -"teruggekeerd naar de shop. Status moet in de toekomst automatisch worden " -"bijgewerkt, als dat niet gebeurt, kan dit wijzen op een communicatieprobleem " -"tussen de site en Mollie." - -#: build/src/Mollie/WC/Gateway/Abstract.php:1625 -#: src/Mollie/WC/Gateway/Abstract.php:1625 -msgid ", payment pending." -msgstr ", betaling in behandeling." +#: ../src/PaymentMethods/Paysafecard.php:14 +msgid "paysafecard" +msgstr "paysafecard" -# MS: Datei sagt informal, Satz müsste also sein: 'Je bestelling is geannuleerd' #query -#: build/src/Mollie/WC/Gateway/Abstract.php:1652 -#: src/Mollie/WC/Gateway/Abstract.php:1652 -msgid "Your order has been cancelled." -msgstr "Uw bestelling is geannuleerd." +#: ../src/PaymentMethods/Przelewy24.php:14 +msgid "Przelewy24" +msgstr "Przelewy24" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:2129 -#: src/Mollie/WC/Gateway/Abstract.php:2129 -msgid "" -"%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review " -"the payment (and adjust product stocks if you use it)." -msgstr "" -"%1$s betaling %2$s via Mollie (%3$s %4$s). U dient de betaling handmatig te " -"controleren (en productvoorraden aan te passen als u dit gebruikt)." - -#: build/src/Mollie/WC/Gateway/Abstract.php:2166 -#: src/Mollie/WC/Gateway/Abstract.php:2166 -msgctxt "" -"Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid "Mollie - Giftcard details: %1$s %2$s %3$s." -msgstr "Mollie - gegevens cadeaubon: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Przelewy24.php:15 +msgid "To accept payments via Przelewy24, a customer email is required for every payment." +msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail van de klant noodzakelijk." -#: build/src/Mollie/WC/Gateway/Abstract.php:2178 -#: src/Mollie/WC/Gateway/Abstract.php:2178 -msgctxt "" -"Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: " -"currency" -msgid " Remainder: %1$s %2$s %3$s." -msgstr " Overige: %1$s %2$s %3$s." +#: ../src/PaymentMethods/Sofort.php:14 +msgid "SOFORT Banking" +msgstr "SOFORT Banking" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. -#: build/src/Mollie/WC/Gateway/Abstract.php:2580 -#: src/Mollie/WC/Gateway/Abstract.php:2580 -msgid " + %1$s %2$s fee might apply" -msgstr " + %1$s %2$s prijstoeslag kan van toepassing zijn" +#: ../src/PaymentMethods/Voucher.php:35 +msgid "Voucher" +msgstr "Waardebon" -#. translators: Placeholder 1: Fee amount tag. -#: build/src/Mollie/WC/Gateway/Abstract.php:2590 -#: src/Mollie/WC/Gateway/Abstract.php:2590 -msgid " + %1$s%% fee might apply" -msgstr " + %1$s%% prijstoeslag kan van toepassing zijn" +#: ../src/PaymentMethods/Voucher.php:54, ../src/Gateway/Voucher/VoucherModule.php:220 +msgid "Select the default products category" +msgstr "Selecteer de standaard productencategorie" -#. translators: Placeholder 1: Fee amount tag. Placeholder 2: Currency. Placeholder 3: Percentage amount. -#: build/src/Mollie/WC/Gateway/Abstract.php:2607 -#: src/Mollie/WC/Gateway/Abstract.php:2607 -msgid " + %1$s %2$s + %3$s%% fee might apply" -msgstr " + %1$s %2$s + %3$s%% prijstoeslag kan van toepassing zijn" +#: ../src/PaymentMethods/Voucher.php:57 +msgid "No category" +msgstr "Geen categorie" -#: build/src/Mollie/WC/Gateway/Abstract.php:2646 -#: src/Mollie/WC/Gateway/Abstract.php:2646 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must " -"be under 500kb." -msgstr "" -"%1$sMollie-betalingen voor WooCommerce%2$s Uploaden bestand niet mogelijk. " -"De grootte mag niet meer bedragen dan 500 kB." +#: ../src/PaymentMethods/Voucher.php:58, ../src/Gateway/Voucher/VoucherModule.php:113, ../src/Gateway/Voucher/VoucherModule.php:147, ../src/Gateway/Voucher/VoucherModule.php:178, ../src/Gateway/Voucher/VoucherModule.php:233, ../src/Gateway/Voucher/VoucherModule.php:293 +msgid "Meal" +msgstr "Maaltijd" -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -msgid "Order completed using %1$s payment (%2$s)." -msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)." +#: ../src/PaymentMethods/Voucher.php:59, ../src/Gateway/Voucher/VoucherModule.php:114, ../src/Gateway/Voucher/VoucherModule.php:148, ../src/Gateway/Voucher/VoucherModule.php:181, ../src/Gateway/Voucher/VoucherModule.php:234, ../src/Gateway/Voucher/VoucherModule.php:294 +msgid "Eco" +msgstr "Eco" -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:165 -msgid "" -"Updated subscription from 'On hold' to 'Active' until payment fails, because " -"a SEPA Direct Debit payment takes some time to process." -msgstr "" -"Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, " -"omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is." +#: ../src/PaymentMethods/Voucher.php:60, ../src/Gateway/Voucher/VoucherModule.php:115, ../src/Gateway/Voucher/VoucherModule.php:149, ../src/Gateway/Voucher/VoucherModule.php:184, ../src/Gateway/Voucher/VoucherModule.php:235, ../src/Gateway/Voucher/VoucherModule.php:295 +msgid "Gift" +msgstr "Cadeau" -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:313 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:313 -msgid "Could not create %s renewal payment." -msgstr "Kon geen %s nieuwe betaling aanmaken." +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/PaymentMethods/Voucher.php:64 +msgid "In order to process it, all products in the order must have a category. This selector will assign the default category for the shop products" +msgstr "Daarvoor moeten alle producten uit de bestelling een categorie hebben. Deze keuzemogelijkheid zal de standaard categorie voor de producten uit de shop toewijzen" -#: build/src/Mollie/WC/Gateway/Applepay.php:48 -#: src/Mollie/WC/Gateway/Applepay.php:48 -msgid "Apple Pay" -msgstr "Apple Pay" +#: ../src/SDK/Api.php:49 +msgid "Invalid API key(s). Get them on the %1$sDevelopers page in the Mollie dashboard%2$s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters." +msgstr "Ongeldige API-sleutel(s). Haal deze op van de %1$sDevelopers-pagina in het Mollie-dashboard%2$s. De API-sleutel(s) moeten beginnen met 'live_' of 'test_', ten minste 30 tekens lang zijn en mogen geen speciale tekens bevatten." -#: build/src/Mollie/WC/Gateway/Applepay.php:56 -#: src/Mollie/WC/Gateway/Applepay.php:56 -msgid "To accept payments via Apple Pay" -msgstr "Om betalingen te accepteren via Apple Pay" +#: ../src/SDK/Api.php:47 +msgid "No API key provided. Please set your Mollie API keys below." +msgstr "Geen API-sleutel verschaft. Stel hieronder uw Mollie API-sleutels in." -#: build/src/Mollie/WC/Gateway/Bancontact.php:29 -#: src/Mollie/WC/Gateway/Bancontact.php:29 -msgid "Bancontact" -msgstr "Bancontact" +#: ../src/Settings/Settings.php:174 +msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb." +msgstr "%1$sMollie-betalingen voor WooCommerce%2$s Uploaden bestand niet mogelijk. De grootte mag niet meer bedragen dan 500 kB." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:38 -#: build/src/Mollie/WC/Helper/Settings.php:257 -#: src/Mollie/WC/Gateway/BankTransfer.php:38 -#: src/Mollie/WC/Helper/Settings.php:257 -msgid "Activate expiry date setting" -msgstr "Activeer instellingen vervaldatum" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:39 -#: build/src/Mollie/WC/Helper/Settings.php:258 -#: src/Mollie/WC/Gateway/BankTransfer.php:39 -#: src/Mollie/WC/Helper/Settings.php:258 -msgid "Enable expiry date for payments" -msgstr "Activeer de vervaldatum voor betalingen" - -# MS: Datei sagt informal, Satz müsste sein: 'Activeer deze optie wanneer je het aantal dagen nadat de betaling vervalt in wilt kunnen stellen.' #query -#: build/src/Mollie/WC/Gateway/BankTransfer.php:40 -#: src/Mollie/WC/Gateway/BankTransfer.php:40 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the payment will expire. This will turn all transactions into payments " -"instead of orders" -msgstr "" -"Activeer deze optie wanneer u het aantal dagen nadat de betaling vervalt in " -"wilt kunnen stellen. Dit zet alle transacties in betalingen om, in plaats " -"van ze in bestellingen te wijzigen." - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:45 -#: build/src/Mollie/WC/Helper/Settings.php:264 -#: build/src/Mollie/WC/Plugin.php:927 src/Mollie/WC/Gateway/BankTransfer.php:45 -#: src/Mollie/WC/Helper/Settings.php:264 src/Mollie/WC/Plugin.php:927 -msgid "Expiry date" -msgstr "Vervaldatum" +#: ../src/Settings/Settings.php:216 +msgid "Gateway Disabled" +msgstr "Gateway gedeactiveerd" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:47 -#: src/Mollie/WC/Gateway/BankTransfer.php:47 -msgid "" -"Number of DAYS after the payment will expire. Default %d days" -msgstr "" -"Aantal DAGEN nadat de betaling vervalt. Standaard %d dagen." +#: ../src/Settings/Settings.php:237 +msgid "Return to payments" +msgstr "Ga terug naar betalingen" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:56 -#: src/Mollie/WC/Gateway/BankTransfer.php:56 -msgid "Skip Mollie payment screen" -msgstr "Mollie-betaalscherm overslaan" +#: ../src/Settings/Settings.php:252, ../src/Settings/General/MollieGeneralSettings.php:86 +msgid "Sell to specific countries" +msgstr "Verkoop aan bepaalde landen" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:57 -#: src/Mollie/WC/Gateway/BankTransfer.php:57 -msgid "Skip Mollie payment screen when Bank Transfer is selected" -msgstr "" -"Sla het Mollie-betaalscherm over wanneer er voor bankoverschrijving is " -"gekozen." +#: ../src/Settings/Settings.php:264 +msgid "Choose countries…" +msgstr "Selecteer landen...;" -# MS: Datei sagt informal, Satz müsste sein: 'Activeer deze optie als je het doorsturen van je gebruiker naar het Mollie-betaalscherm wilt overslaan. In plaats daarvan stuurt deze je gebruiker rechtstreeks naar de WooCommerce-pagina 'Bestelling ontvangen' met instructies voor het voltooien van de betaling via bankoverschrijving.' #query -#: build/src/Mollie/WC/Gateway/BankTransfer.php:58 -#: src/Mollie/WC/Gateway/BankTransfer.php:58 -msgid "" -"Enable this option if you want to skip redirecting your user to the Mollie " -"payment screen, instead this will redirect your user directly to the " -"WooCommerce order received page displaying instructions how to complete the " -"Bank Transfer payment." -msgstr "" -"Activeer deze optie als u het doorsturen van uw gebruiker naar het Mollie-" -"betaalscherm wilt overslaan. In plaats daarvan stuurt deze uw gebruiker " -"rechtstreeks naar de WooCommerce-pagina 'Bestelling ontvangen' met " -"instructies voor het voltooien van de betaling via bankoverschrijving." +#: ../src/Settings/Settings.php:265 +msgid "Country" +msgstr "Land" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:138 -#: src/Mollie/WC/Gateway/BankTransfer.php:138 -msgid "Bank Transfer" -msgstr "Bankoverdracht" +#: ../src/Settings/Settings.php:274 +msgid "Select all" +msgstr "Selecteer alles" -#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC -#: build/src/Mollie/WC/Gateway/BankTransfer.php:188 -#: build/src/Mollie/WC/Gateway/DirectDebit.php:80 -#: build/src/Mollie/WC/Gateway/Ideal.php:124 -#: build/src/Mollie/WC/Gateway/Sofort.php:64 -#: src/Mollie/WC/Gateway/BankTransfer.php:188 -#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124 -#: src/Mollie/WC/Gateway/Sofort.php:64 -msgid "" -"Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" -msgstr "" -"Betaling voltooid door %1$s (IBAN (ten minste 4 cijfers): %2$s, BIC: %3$s)" +#: ../src/Settings/Settings.php:275 +msgid "Select none" +msgstr "Selecteer geen" -# MS: Datei sagt informal, Satz müsste sein: 'Voltooi je betaling door het totale bedrag over te maken naar de volgende bankrekening:' #query -#: build/src/Mollie/WC/Gateway/BankTransfer.php:198 -#: src/Mollie/WC/Gateway/BankTransfer.php:198 -msgid "" -"Please complete your payment by transferring the total amount to the " -"following bank account:" -msgstr "" -"Voltooi uw betaling door het totale bedrag over te maken naar de volgende " -"bankrekening:" +#: ../src/Settings/Settings.php:470 +msgid "Error" +msgstr "Fout" -#. translators: Placeholder 1: 'Stichting Mollie Payments' -#: build/src/Mollie/WC/Gateway/BankTransfer.php:202 -#: src/Mollie/WC/Gateway/BankTransfer.php:202 -msgid "Beneficiary: %s" -msgstr "Begunstigde: %s" +#: ../src/Settings/Settings.php:484 +msgid "Mollie status:" +msgstr "Mollie-status:" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:203 -#: src/Mollie/WC/Gateway/BankTransfer.php:203 -msgid "IBAN: %s" -msgstr "IBAN: %s" +#: ../src/Settings/Settings.php:485 +msgid "Connected" +msgstr "Verbonden" -#: build/src/Mollie/WC/Gateway/BankTransfer.php:204 -#: src/Mollie/WC/Gateway/BankTransfer.php:204 -msgid "BIC: %s" -msgstr "BIC: %s" +#: ../src/Settings/SettingsModule.php:171 +msgid "Mollie settings" +msgstr "Mollie-instellingen" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:209 -#: src/Mollie/WC/Gateway/BankTransfer.php:209 -msgid "Payment reference: %s" -msgstr "Betalingsreferentie: %s." +#: ../src/Settings/SettingsModule.php:177 +msgid "Logs" +msgstr "Logs" -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:214 -#: src/Mollie/WC/Gateway/BankTransfer.php:214 -msgid "Please provide the payment reference %s" -msgstr "Vermeld de betalingsreferentie %s" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/SettingsModule.php:187 +msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production." +msgstr "%1$sMollie Payments voor WooCommerce%2$s de testmodus is actief, %3$s schakel deze uit%4$s voordat hij wordt geïmplementeerd." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:228 -#: src/Mollie/WC/Gateway/BankTransfer.php:228 -msgid "The payment will expire on %s." -msgstr "De betaling vervalt op %s." +#: ../src/Shared/Data.php:628 +msgid "Item #%1$s stock incremented from %2$s to %3$s." +msgstr "Artikel #%1$s voorraad verhoogd van %2$s naar %3$s." -#: build/src/Mollie/WC/Gateway/BankTransfer.php:235 -#: src/Mollie/WC/Gateway/BankTransfer.php:235 -msgid "" -"The payment will expire on %s. Please make sure you " -"transfer the total amount before this date." -msgstr "" -"De betaling vervalt op %s. Zorg ervoor dat u vóór deze " -"datum het totale bedrag overmaakt." +#. translators: Placeholder 1: Plugin title. Placeholder 2: Min WooCommerce version. Placeholder 3: WooCommerce version used. +#: ../src/Shared/Status.php:74 +msgid "The %1$s plugin requires at least WooCommerce version %2$s, you are using version %3$s. Please update your WooCommerce plugin." +msgstr "De %1$s plugin vereist ten minste WooCommerce versie %2$s, u gebruikt versie %3$s. Update uw WooCommerce plugin." -#: build/src/Mollie/WC/Gateway/Belfius.php:33 -#: src/Mollie/WC/Gateway/Belfius.php:33 -msgid "Belfius Direct Net" -msgstr "Belfius Direct Net" +#: ../src/Shared/Status.php:87 +msgid "Mollie API client not installed. Please make sure the plugin is installed correctly." +msgstr "Mollie API client niet geïnstalleerd. Controleer of de plugin correct is geïnstalleerd." -#: build/src/Mollie/WC/Gateway/Creditcard.php:84 -#: src/Mollie/WC/Gateway/Creditcard.php:84 -msgid "Credit card" -msgstr "Creditcard" +#: ../src/Shared/Status.php:96 +msgid "Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable it in your server or ask your webhoster to enable it for you." +msgstr "Mollie-betalingen voor WooCommerce vereisen de JSON extensie voor PHP. Activeer dit op uw server of vraag uw webhost om het voor u te activeren." -#. translators: Placeholder 1: card holder -#: build/src/Mollie/WC/Gateway/Creditcard.php:136 -#: src/Mollie/WC/Gateway/Creditcard.php:136 -msgid "Payment completed by %s" -msgstr "Betaling voltooid door %s." +#. translators: Placeholder 1: Min PHP version. Placeholder 2: PHP version used. Placeholder 3: Opening link tag. placeholder 4: Closing link tag. +#: ../src/Shared/Status.php:111 +msgid "Mollie Payments for WooCommerce require PHP %1$s or higher, you have PHP %2$s. Please upgrade and view %3$sthis FAQ%4$s" +msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %1$s of hoger, u heeft PHP %2$s. Installeer de upgrade en bekijk %3$sdeze FAQ%4$s" -#: build/src/Mollie/WC/Gateway/DirectDebit.php:42 -#: src/Mollie/WC/Gateway/DirectDebit.php:42 -msgid "SEPA Direct Debit" -msgstr "SEPA-incasso" +#: ../src/Shared/Status.php:123 +msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration." +msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON geactiveerd is. Activeer de 'json' extensie in uw PHP-configuratie." -#: build/src/Mollie/WC/Gateway/DirectDebit.php:49 -#: src/Mollie/WC/Gateway/DirectDebit.php:49 -msgid "" -"SEPA Direct Debit is used for recurring payments with WooCommerce " -"Subscriptions, and will not be shown in the WooCommerce checkout for regular " -"payments! You also need to enable iDEAL and/or other \"first\" payment " -"methods if you want to use SEPA Direct Debit." -msgstr "" -"SEPA-incasso wordt gebruikt voor terugkerende betalingen met WooCommerce-" -"abonnementen, en wordt niet getoond in de WooCommerce kassa voor reguliere " -"betalingen! U moet ook iDEAL en/of andere 'eerste' betaalmethoden activeren " -"als u SEPA-incasso wilt gebruiken." +#: ../src/Shared/Status.php:130 +msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration." +msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL is geactiveerd. Activeer de 'curl' extensie in uw PHP-configuratie." -#: build/src/Mollie/WC/Gateway/EPS.php:29 src/Mollie/WC/Gateway/EPS.php:29 -msgid "EPS" -msgstr "EPS" +#: ../src/Shared/Status.php:138 +msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available." +msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn." -#: build/src/Mollie/WC/Gateway/Giftcard.php:31 -#: src/Mollie/WC/Gateway/Giftcard.php:31 -msgid "Show gift cards dropdown" -msgstr "Laat cadeaubonnen-dropdown zien" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSepaRecurringGateway.php:136, ../src/Subscription/MollieSubscriptionGateway.php:468 +msgid "%1$s payment started (%2$s)." +msgstr "%1$s betaling gestart (%2$s)." -# MS: Datei sagt informal, Satz müsste sein: 'Als je dit deactiveert, zal er geen dropdown met verschillende cadeaubonnen in de WooCommerce- checkout worden getoond, dus gebruikers zullen na de checkout een cadeaubon selecteren op de Mollie-betaalpagina.' #query -#: build/src/Mollie/WC/Gateway/Giftcard.php:33 -#: src/Mollie/WC/Gateway/Giftcard.php:33 -msgid "" -"If you disable this, a dropdown with various gift cards will not be shown in " -"the WooCommerce checkout, so users will select a gift card on the Mollie " -"payment page after checkout." -msgstr "" -"Als u dit deactiveert, zal er geen dropdown met verschillende cadeaubonnen " -"in de WooCommerce- checkout worden getoond, dus gebruikers zullen na de " -"checkout een cadeaubon selecteren op de Mollie-betaalpagina." - -#: build/src/Mollie/WC/Gateway/Giftcard.php:37 -#: build/src/Mollie/WC/Gateway/Ideal.php:39 -#: build/src/Mollie/WC/Gateway/Kbc.php:38 src/Mollie/WC/Gateway/Giftcard.php:37 -#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Kbc.php:38 -msgid "Issuers empty option" -msgstr "Optie uitgevers leeg" +#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID +#: ../src/Subscription/MollieSubscriptionGateway.php:199 +msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process." +msgstr "Abonnement bijgewerkt van 'Wachtend' naar 'Actief' tot de betaling mislukt, omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is." -#: build/src/Mollie/WC/Gateway/Giftcard.php:39 -#: src/Mollie/WC/Gateway/Giftcard.php:39 -msgid "" -"This text will be displayed as the first option in the gift card dropdown, " -"but only if the above 'Show gift cards dropdown' is enabled." -msgstr "" -"Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar " -"alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd." +#: ../src/Subscription/MollieSubscriptionGateway.php:299 +msgid "The customer (%s) could not be used or found. " +msgstr "De klant (%s) kon niet worden gebruikt of gevonden. " -#: build/src/Mollie/WC/Gateway/Giftcard.php:58 -#: src/Mollie/WC/Gateway/Giftcard.php:58 -msgid "Gift cards" -msgstr "Cadeaubonnen" +#: ../src/Subscription/MollieSubscriptionGateway.php:326 +msgid "The customer (%s) does not have a valid mandate." +msgstr "De klant (%s) beschikt niet over een geldig mandaat." -# MS: Datei sagt informal, Satz müsste sein: 'Selecteer je cadeaubon' #query -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Giftcard.php:74 -#: src/Mollie/WC/Gateway/Giftcard.php:74 -msgid "Select your gift card" -msgstr "Selecteer uw cadeaubon" +#. translators: Placeholder 1: Payment method title +#: ../src/Subscription/MollieSubscriptionGateway.php:366 +msgid "Could not create %s renewal payment." +msgstr "Kon geen %s nieuwe betaling aanmaken." -#: build/src/Mollie/WC/Gateway/Giropay.php:29 -#: src/Mollie/WC/Gateway/Giropay.php:29 -msgid "Giropay" -msgstr "Giropay" +#. translators: Placeholder 1: payment method title, placeholder 2: payment ID +#: ../src/Subscription/SubscriptionModule.php:106 +msgid "%1$s payment failed (%2$s)." +msgstr "%1$s betaling mislukt (%2$s)." -#: build/src/Mollie/WC/Gateway/Ideal.php:33 src/Mollie/WC/Gateway/Ideal.php:33 -msgid "Show iDEAL banks dropdown" -msgstr "Laat iDEAL-banken dropdown zien" +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:42 +msgid "%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sServer voldoet niet aan Apple vereisten%2$s Lees %3$sde pagina met Apple serververeisten%4$s om de Apple Pay knop te laten werken" -#: build/src/Mollie/WC/Gateway/Ideal.php:35 src/Mollie/WC/Gateway/Ideal.php:35 -msgid "" -"If you disable this, a dropdown with various iDEAL banks will not be shown " -"in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie " -"payment page after checkout." -msgstr "" -"Als u dit deactiveert, zal er geen dropdown met verschillende iDEAL-banken " -"in de WooCommerce- checkout worden getoond, dus gebruikers zullen na de " -"checkout een iDEAL-bank selecteren op de Mollie-betaalpagina." +#. translators: Placeholder 1: Opening strong tag. Placeholder 2: Closing strong tag. Placeholder 3: Opening link tag to documentation. Placeholder 4: Closing link tag. +#: ../src/Buttons/ApplePayButton/ApplePayDirectHandler.php:58 +msgid "%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" +msgstr "%1$sApple Pay validatiefout%2$s Lees %3$sde pagina met Apple serververeisten%4$s om de Apple Pay knop te laten werken" -# MS: Dateiname leer, also informal, Satz müsste sein: 'Deze tekst wordt weergegeven als eerste optie in de iDEAL-uitgevers dropdown, als er niets wordt ingevoerd, wordt 'Selecteer je bank' weergegeven.' #query -#: build/src/Mollie/WC/Gateway/Ideal.php:41 src/Mollie/WC/Gateway/Ideal.php:41 -msgid "" -"This text will be displayed as the first option in the iDEAL issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above 'Show iDEAL banks dropdown' is enabled." -msgstr "" -"Deze tekst wordt weergegeven als eerste optie in de iDEAL-uitgevers " -"dropdown, als er niets wordt ingevoerd, wordt 'Selecteer uw bank' " -"weergegeven. Alleen als het bovenstaande ''Toon iDEAL-banken dropdown'' is " -"geactiveerd." +#: ../src/Gateway/Voucher/VoucherModule.php:78, ../src/Settings/Page/MollieSettingsPage.php:49, ../src/Settings/Page/MollieSettingsPage.php:182 +msgid "Mollie Settings" +msgstr "Mollie-instellingen" -#: build/src/Mollie/WC/Gateway/Ideal.php:60 src/Mollie/WC/Gateway/Ideal.php:60 -msgid "iDEAL" -msgstr "iDEAL" +#: ../src/Gateway/Voucher/VoucherModule.php:108, ../src/Gateway/Voucher/VoucherModule.php:143, ../src/Gateway/Voucher/VoucherModule.php:166 +msgid "Mollie Voucher Category" +msgstr "Mollie-waardeboncategorie" -#. translators: Default iDEAL description, displayed above issuer drop down -#. translators: Default KBC/CBC dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Ideal.php:76 -#: build/src/Mollie/WC/Gateway/Kbc.php:75 src/Mollie/WC/Gateway/Ideal.php:76 -#: src/Mollie/WC/Gateway/Kbc.php:75 -msgid "Select your bank" -msgstr "Selecteer uw bank" +#: ../src/Gateway/Voucher/VoucherModule.php:111, ../src/Gateway/Voucher/VoucherModule.php:145, ../src/Gateway/Voucher/VoucherModule.php:170 +msgid "--Please choose an option--" +msgstr "--Selecteer een optie--" -#: src/Mollie/WC/Gateway/In3:29 -msgid "in3" -msgstr "in3" +#: ../src/Gateway/Voucher/VoucherModule.php:112, ../src/Gateway/Voucher/VoucherModule.php:146, ../src/Gateway/Voucher/VoucherModule.php:175, ../src/Gateway/Voucher/VoucherModule.php:232, ../src/Gateway/Voucher/VoucherModule.php:292 +msgid "No Category" +msgstr "Geen categorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:32 src/Mollie/WC/Gateway/Kbc.php:32 -msgid "Show KBC/CBC banks dropdown" -msgstr "Toon KBC/CBC-banken dropdown" +#: ../src/Gateway/Voucher/VoucherModule.php:151, ../src/Gateway/Voucher/VoucherModule.php:188 +msgid "Select a voucher category to apply to all products with this category" +msgstr "Selecteer een waardeboncategorie om alle producten met deze categorie te gebruiken" -#: build/src/Mollie/WC/Gateway/Kbc.php:34 src/Mollie/WC/Gateway/Kbc.php:34 -msgid "" -"If you disable this, a dropdown with various KBC/CBC banks will not be shown " -"in the WooCommerce checkout, so users will select a KBC/CBC bank on the " -"Mollie payment page after checkout." -msgstr "" -"Als u dit deactiveert, zal een dropdown bij verschillende KBC/CBC-banken " -"niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een " -"KBC/CBC-bank selecteren op de Mollie-betaalpagina na het afrekenen." +#: ../src/Gateway/Voucher/VoucherModule.php:224 +msgid "Products voucher category" +msgstr "Producten waardeboncategorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:40 src/Mollie/WC/Gateway/Kbc.php:40 -msgid "" -"This text will be displayed as the first option in the KBC/CBC issuers drop " -"down, if nothing is entered, \"Select your bank\" will be shown. Only if the " -"above ''Show KBC/CBC banks dropdown' is enabled." -msgstr "" -"Deze tekst wordt weergegeven als eerste optie in de KBC/CBC-uitgevers drop-" -"down, als er niets wordt ingevoerd, wordt 'Selecteer uw bank' weergegeven. " -"Alleen als het bovenstaande 'Toon KBC/CBC-banken dropdown' is geactiveerd." +#: ../src/Gateway/Voucher/VoucherModule.php:231, ../src/Gateway/Voucher/VoucherModule.php:291 +msgid "Same as default category" +msgstr "Zelfde als standaardcategorie" -#: build/src/Mollie/WC/Gateway/Kbc.php:59 src/Mollie/WC/Gateway/Kbc.php:59 -msgid "KBC/CBC Payment Button" -msgstr "KBC/CBC betaalknop" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Gateway/Voucher/VoucherModule.php:241 +msgid "In order to process it, all products in the order must have a category. To disable the product from voucher selection select \"No category\" option." +msgstr "Daarvoor moeten alle producten uit de bestelling een categorie hebben. Om het selecteren van een waardebon voor een bepaald product te deactiveren kiest u de optie ''Geen categorie''." -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -msgid "Klarna Pay later" -msgstr "Klarna betaal later" +#: ../src/Gateway/Voucher/VoucherModule.php:288 +msgid "Mollie Voucher category" +msgstr "Mollie-waardeboncategorie" -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -msgid "" -"To accept payments via Klarna, all default WooCommerce checkout fields " -"should be enabled and required." -msgstr "" -"Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-" -"afrekenvelden zijn geactiveerd en verplicht zijn gesteld." +#: ../src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php:20 +msgid "Payment completed by %1$s - %2$s (Apple Pay transaction ID: %3$s)" +msgstr "Betaling voltooid door %1$s - %2$s (Apple Pay transactie-ID: %3$s)" -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -msgid "Klarna Pay now" -msgstr "Klarna betaal nu" +#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:26, ../src/PaymentMethods/InstructionStrategies/DirectdebitInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/IdealInstructionStrategy.php:20, ../src/PaymentMethods/InstructionStrategies/SofortInstructionStrategy.php:20 +msgid "Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" +msgstr "Betaling voltooid met %1$s (IBAN (ten minste 4 cijfers): %2$s, BIC: %3$s)" -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -msgid "Klarna Slice it" -msgstr "Klarna betaal in 3 delen" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:35 +msgid "Please complete your payment by transferring the total amount to the following bank account:" +msgstr "Voltooi uw betaling door het totale bedrag over te maken naar de volgende bankrekening:" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: build/src/Mollie/WC/Plugin.php:508 src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: src/Mollie/WC/Plugin.php:508 -msgid "Select the default products category" -msgstr "Selecteer de standaard productencategorie" +#. translators: Placeholder 1: 'Stichting Mollie Payments' +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:39 +msgid "Beneficiary: %s" +msgstr "Begunstigde: %s" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:46 -#: src/Mollie/WC/Gateway/Mealvoucher.php:46 -msgid "" -"In order to process it, all products in the order must have a category. This " -"selector will assign the default category for the shop products" -msgstr "" -"Daarvoor moeten alle producten uit de bestelling een categorie hebben. Deze " -"keuzemogelijkheid zal de standaard categorie voor de producten uit de shop " -"toewijzen" +#. translators: Placeholder 1: Payment details bank account +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:41 +msgid "IBAN: %s" +msgstr "IBAN: %s" -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:66 -#: src/Mollie/WC/Gateway/Mealvoucher.php:66 -msgid "Voucher" -msgstr "Waardebon" +#. translators: Placeholder 1: Payment details bic +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:43 +msgid "BIC: %s" +msgstr "BIC: %s" -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:82 -#: src/Mollie/WC/Gateway/Mealvoucher.php:82 -msgid "voucher" -msgstr "waardebon" +#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:50 +msgid "Please provide the payment reference %s" +msgstr "Vermeld de betalingsreferentie %s" -#: build/src/Mollie/WC/Gateway/MyBank.php:36 -#: src/Mollie/WC/Gateway/MyBank.php:36 -msgid "MyBank" -msgstr "MyBank" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:47 +msgid "Payment reference: %s" +msgstr "Betalingsreferentie: %s." -#: build/src/Mollie/WC/Gateway/MyBank.php:44 -#: src/Mollie/WC/Gateway/MyBank.php:44 -msgid "To accept payments via MyBank" -msgstr "Om betalingen te accepteren via MyBank" +#. translators: Placeholder 1: Payment expiry date +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:66 +msgid "The payment will expire on %s. Please make sure you transfer the total amount before this date." +msgstr "De betaling vervalt op %s. Zorg ervoor dat u vóór deze datum het totale bedrag overmaakt." -#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer Account number -#: build/src/Mollie/WC/Gateway/MyBank.php:73 -#: src/Mollie/WC/Gateway/MyBank.php:73 -msgid "Payment completed by %1$s - %2$s" -msgstr "Betaling voltooid door %1$s - %2$s" +#: ../src/PaymentMethods/InstructionStrategies/BanktransferInstructionStrategy.php:60 +msgid "The payment will expire on %s." +msgstr "De betaling vervalt op %s." -#: build/src/Mollie/WC/Gateway/PayPal.php:43 -#: src/Mollie/WC/Gateway/PayPal.php:43 -msgid "PayPal" -msgstr "PayPal" +#. translators: Placeholder 1: card holder +#: ../src/PaymentMethods/InstructionStrategies/CreditcardInstructionStrategy.php:20 +msgid "Payment completed by %s" +msgstr "Betaling voltooid met %s." -#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID -#: build/src/Mollie/WC/Gateway/PayPal.php:74 -#: build/src/Mollie/WC/Payment/Object.php:695 -#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695 -msgid "" -"Payment completed by %s - %s (PayPal transaction ID: %s)" -msgstr "" -"Betaling voltooid door %s - %s (PayPal transactie-ID: %s)" +#. translators: Placeholder 1: payment method +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:34 +msgid "Payment completed with %s" +msgstr "Betaling voltooid met %s" -#: build/src/Mollie/WC/Gateway/Paysafecard.php:20 -#: src/Mollie/WC/Gateway/Paysafecard.php:20 -msgid "paysafecard" -msgstr "paysafecard" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:26 +msgid "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant." +msgstr "We hebben geen definitieve betalingsstatus ontvangen. U ontvangt een e-mail zodra we een bevestiging van de bank/verkoper ontvangen." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:33 -#: src/Mollie/WC/Gateway/Przelewy24.php:33 -msgid "Przelewy24" -msgstr "Przelewy24" +#: ../src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php:20 +msgid "We have not received a definite payment status." +msgstr "We hebben geen definitieve betalingsstatus ontvangen." -#: build/src/Mollie/WC/Gateway/Przelewy24.php:40 -#: src/Mollie/WC/Gateway/Przelewy24.php:40 -msgid "" -"To accept payments via Przelewy24, a customer email is required for every " -"payment." -msgstr "" -"Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail " -"van de klant noodzakelijk." +#: ../src/PaymentMethods/InstructionStrategies/MybankInstructionStrategy.php:19 +msgid "Payment completed by %1$s - %2$s" +msgstr "Betaling voltooid met %1$s - %2$s" #. translators: Placeholder 1: customer billing email -#: build/src/Mollie/WC/Gateway/Przelewy24.php:64 -#: src/Mollie/WC/Gateway/Przelewy24.php:64 +#: ../src/PaymentMethods/InstructionStrategies/Przelewy24InstructionStrategy.php:20 msgid "Payment completed by %s." -msgstr "Betaling voltooid door %s." - -#: build/src/Mollie/WC/Gateway/Sofort.php:33 -#: src/Mollie/WC/Gateway/Sofort.php:33 -msgid "SOFORT Banking" -msgstr "SOFORT Banking" - -#: build/src/Mollie/WC/Helper/Api.php:40 src/Mollie/WC/Helper/Api.php:40 -msgid "No API key provided. Please set your Mollie API keys below." -msgstr "Geen API-sleutel verschaft. Stel hieronder uw Mollie API-sleutels in." +msgstr "Betaling voltooid met %s." -#: build/src/Mollie/WC/Helper/Api.php:42 src/Mollie/WC/Helper/Api.php:42 -msgid "" -"Invalid API key(s). Get them on the %sDevelopers page in the Mollie dashboard" -"%s. The API key(s) must start with 'live_' or 'test_', be at least 30 " -"characters and must not contain any special characters." -msgstr "" -"Ongeldige API-sleutel(s). Haal deze op van de %sDevelopers-pagina in het " -"Mollie-dashboard%s. De API-sleutel(s) moeten beginnen met 'live_' of " -"'test_', ten minste 30 tekens lang zijn en mogen geen speciale tekens " -"bevatten." - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -msgid "" -"%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server " -"requirements page%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sServer voldoet niet aan Apple vereisten%2$s Lees %3$sde pagina met Apple " -"serververeisten%4$s om de Apple Pay knop te laten werken" - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -msgid "" -"%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page" -"%4$s to fix it in order to make the Apple Pay button work" -msgstr "" -"%1$sApple Pay validatiefout%2$s Lees %3$sde pagina met Apple serververeisten" -"%4$s om de Apple Pay knop te laten werken" +#. translators: Placeholder 1: Lock icon. Placeholder 2: Mollie logo. +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:25 +msgid "%1$s Secure payments provided by %2$s" +msgstr "%1$s Beveiligde betalingen verschaft door %2$s" -#: build/src/Mollie/WC/Helper/OrderLines.php:499 -#: src/Mollie/WC/Helper/OrderLines.php:499 -msgid "Shipping" -msgstr "Verzending" +#: ../src/PaymentMethods/PaymentFieldsStrategies/CreditcardFieldsStrategy.php:41 +msgid "Secure payments provided by" +msgstr "Beveiligde betalingen verschaft door" -#: build/src/Mollie/WC/Helper/Settings.php:61 -#: src/Mollie/WC/Helper/Settings.php:61 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:34 msgid "%s display settings" msgstr "%s weergave-instellingen" -#: build/src/Mollie/WC/Helper/Settings.php:99 -#: src/Mollie/WC/Helper/Settings.php:99 +#: ../src/Settings/General/MollieGeneralSettings.php:71 msgid "Display logo on checkout page. Default enabled" msgstr "Toon logo op de betaalpagina. Standaard geactiveerd" -#: build/src/Mollie/WC/Helper/Settings.php:107 -#: src/Mollie/WC/Helper/Settings.php:107 +#: ../src/Settings/General/MollieGeneralSettings.php:79 msgid "Sales countries" msgstr "Verkooplanden" -#: build/src/Mollie/WC/Helper/Settings.php:125 -#: src/Mollie/WC/Helper/Settings.php:125 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:99 msgid "%s custom logo" msgstr "%s aangepast logo" -#: build/src/Mollie/WC/Helper/Settings.php:132 -#: src/Mollie/WC/Helper/Settings.php:132 +#: ../src/Settings/General/MollieGeneralSettings.php:103 msgid "Enable custom logo" msgstr "Activeer aangepast logo" -#: build/src/Mollie/WC/Helper/Settings.php:137 -#: src/Mollie/WC/Helper/Settings.php:137 -msgid "" -"Enable the feature to add a custom logo for this gateway. This feature will " -"have precedence over other logo options." -msgstr "" -"Activeer de functie om een aangepast logo toe te voegen aan deze gateway. " -"Deze functie is preferent aan andere opties voor het logo." +#: ../src/Settings/General/MollieGeneralSettings.php:109 +msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options." +msgstr "Activeer de functie om een aangepast logo toe te voegen aan deze gateway. Deze functie is preferent aan andere opties voor het logo." -#: build/src/Mollie/WC/Helper/Settings.php:143 -#: src/Mollie/WC/Helper/Settings.php:143 +#: ../src/Settings/General/MollieGeneralSettings.php:115 msgid "Upload custom logo" msgstr "Upload aangepast logo" -#: build/src/Mollie/WC/Helper/Settings.php:150 -#: src/Mollie/WC/Helper/Settings.php:150 +#: ../src/Settings/General/MollieGeneralSettings.php:123 msgid "Upload a custom icon for this gateway. The feature must be enabled." -msgstr "" -"Upload een aangepast pictogram voor deze gateway. De functie moet " -"geactiveerd zijn." +msgstr "Upload een aangepast pictogram voor deze gateway. De functie moet geactiveerd zijn." -#: build/src/Mollie/WC/Helper/Settings.php:159 -#: src/Mollie/WC/Helper/Settings.php:159 +#. translators: Placeholder 1: Gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:134 msgid "%s surcharge" msgstr "%s prijstoeslag" -#: build/src/Mollie/WC/Helper/Settings.php:166 -#: src/Mollie/WC/Helper/Settings.php:166 +#: ../src/Settings/General/MollieGeneralSettings.php:139 msgid "Payment Surcharge" msgstr "Betalingstoeslag" -#: build/src/Mollie/WC/Helper/Settings.php:172 -#: src/Mollie/WC/Helper/Settings.php:172 +#: ../src/Settings/General/MollieGeneralSettings.php:145 msgid "No fee" msgstr "Geen vergoeding" -#: build/src/Mollie/WC/Helper/Settings.php:176 -#: src/Mollie/WC/Helper/Settings.php:176 +#: ../src/Settings/General/MollieGeneralSettings.php:149 msgid "Fixed fee" msgstr "Vaste vergoeding" -#: build/src/Mollie/WC/Helper/Settings.php:180 -#: src/Mollie/WC/Helper/Settings.php:180 +#: ../src/Settings/General/MollieGeneralSettings.php:153 msgid "Percentage" msgstr "Percentage" -#: build/src/Mollie/WC/Helper/Settings.php:184 -#: src/Mollie/WC/Helper/Settings.php:184 +#: ../src/Settings/General/MollieGeneralSettings.php:157 msgid "Fixed fee and percentage" msgstr "Vaste vergoeding en percentage" -#: build/src/Mollie/WC/Helper/Settings.php:190 -#: src/Mollie/WC/Helper/Settings.php:190 +#: ../src/Settings/General/MollieGeneralSettings.php:163 msgid "Choose a payment surcharge for this gateway" msgstr "Selecteer een betalingstoeslag voor deze gateway" -#: build/src/Mollie/WC/Helper/Settings.php:197 -#: src/Mollie/WC/Helper/Settings.php:197 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:172 msgid "Payment surcharge fixed amount in %s" msgstr "Betalingstoeslag vast bedrag in %s" -#: build/src/Mollie/WC/Helper/Settings.php:200 -#: src/Mollie/WC/Helper/Settings.php:200 +#: ../src/Settings/General/MollieGeneralSettings.php:176 msgid "Control the fee added on checkout. Default 0.00" -msgstr "" -"Controle van de vergoeding, die is toegevoegd aan de betaling. Standaard 0.00" +msgstr "Controle van de vergoeding, die is toegevoegd aan de betaling. Standaard 0.00" -#: build/src/Mollie/WC/Helper/Settings.php:210 -#: src/Mollie/WC/Helper/Settings.php:210 +#: ../src/Settings/General/MollieGeneralSettings.php:186 msgid "Payment surcharge percentage amount %" msgstr "Hoogte % prijstoeslag betaling" -#: build/src/Mollie/WC/Helper/Settings.php:213 -#: src/Mollie/WC/Helper/Settings.php:213 +#: ../src/Settings/General/MollieGeneralSettings.php:189 msgid "Control the percentage fee added on checkout. Default 0.00" -msgstr "" -"Controle van de procentuele vergoeding, die is toegevoegd aan de betaling. " -"Standaard 0.00" +msgstr "Controle van de procentuele vergoeding, die is toegevoegd aan de betaling. Standaard 0.00" -#: build/src/Mollie/WC/Helper/Settings.php:223 -#: src/Mollie/WC/Helper/Settings.php:223 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:200 msgid "Payment surcharge limit in %s" msgstr "Limiet betalingstoeslag in %s" -#: build/src/Mollie/WC/Helper/Settings.php:226 -#: src/Mollie/WC/Helper/Settings.php:226 +#: ../src/Settings/General/MollieGeneralSettings.php:203 msgid "Limit the maximum fee added on checkout. Default 0, means no limit" -msgstr "" -"Limiet van de maximum vergoeding, die is toegevoegd aan de betaling. " -"Standaard 0, ofwel geen limiet" +msgstr "Limiet van de maximum vergoeding, die is toegevoegd aan de betaling. Standaard 0, ofwel geen limiet" -#: build/src/Mollie/WC/Helper/Settings.php:236 -#: src/Mollie/WC/Helper/Settings.php:236 +#. translators: Placeholder 1: currency +#: ../src/Settings/General/MollieGeneralSettings.php:214 msgid "Surcharge only under this limit, in %s" msgstr "Prijstoeslag alleen onder deze limiet, als %s" -#: build/src/Mollie/WC/Helper/Settings.php:239 -#: src/Mollie/WC/Helper/Settings.php:239 -msgid "" -"Maximum order amount to apply surcharge. If the order is above this number " -"the surcharge will not apply. Default 0, means no maximum" -msgstr "" -"Maximaal bestelbedrag voor toepassing prijstoeslag. Wanneer de bestelling " -"boven dit bedrag komt, is de prijstoeslag niet van toepassing. Standaard 0, " -"ofwel geen maximum" +#: ../src/Settings/General/MollieGeneralSettings.php:217 +msgid "Maximum order amount to apply surcharge. If the order is above this number the surcharge will not apply. Default 0, means no maximum" +msgstr "Maximaal bestelbedrag voor toepassing prijstoeslag. Wanneer de bestelling boven dit bedrag komt, is de prijstoeslag niet van toepassing. Standaard 0, ofwel geen maximum" -#: build/src/Mollie/WC/Helper/Settings.php:250 -#: src/Mollie/WC/Helper/Settings.php:250 +#. translators: Placeholder 1: gateway title +#: ../src/Settings/General/MollieGeneralSettings.php:230 msgid "%s advanced" msgstr "%s geavanceerd" -#: build/src/Mollie/WC/Helper/Settings.php:259 -#: src/Mollie/WC/Helper/Settings.php:259 -msgid "" -"Enable this option if you want to be able to set the number of days after " -"the order will expire." -msgstr "" -"Activeer deze optie wanneer u de mogelijkheid wilt hebben om een aantal " -"dagen in te stellen waarna de bestelling komt te vervallen." +#: ../src/Settings/General/MollieGeneralSettings.php:237 +msgid "Enable this option if you want to be able to set the time after which the order will expire." +msgstr "Activeer deze optie, als u de termijn wilt kunnen instellen na dewelke de bestelling vervalt." -#: build/src/Mollie/WC/Helper/Settings.php:267 -#: src/Mollie/WC/Helper/Settings.php:267 -msgid "" -"Number of MINUTES after the order will expire and will be canceled at Mollie " -"and WooCommerce. A value of 0 means no expiry date will be considered." -msgstr "" -"Aantal MINUTEN voordat de bestelling bij Mollie en WooCommerce komt te " -"vervallen en wordt geannuleerd. Een waarde van 0 betekent dat er geen " -"vervaldatum is." +#: ../src/Settings/General/MollieGeneralSettings.php:245 +msgid "Number of MINUTES after the order will expire and will be canceled at Mollie and WooCommerce. A value of 0 means no expiry time will be considered." +msgstr "Aantal MINUTEN voordat de bestelling bij Mollie en WooCommerce komt te vervallen en wordt geannuleerd. Een waarde van 0 betekent dat er geen vervaltermijn is." -#: build/src/Mollie/WC/Helper/Settings.php:280 -#: src/Mollie/WC/Helper/Settings.php:280 +#: ../src/Settings/General/MollieGeneralSettings.php:258 msgid "Initial order status" msgstr "Initiële bestelstatus" -#: build/src/Mollie/WC/Helper/Settings.php:299 -#: src/Mollie/WC/Helper/Settings.php:299 -msgid "" -"Some payment methods take longer than a few hours to complete. The initial " -"order state is then set to '%s'. This ensures the order is not cancelled " -"when the setting %s is used." -msgstr "" -"Sommige betaalmethoden duren langer dan een paar uur om te voltooien. De " -"initiële bestelstatus is dan ingesteld op '%s'. Dit zorgt ervoor dat de " -"bestelling niet wordt geannuleerd wanneer de instelling %s wordt gebruikt." - -#: build/src/Mollie/WC/Helper/Settings.php:494 -#: src/Mollie/WC/Helper/Settings.php:494 -msgid "Error" -msgstr "Fout" - -#: build/src/Mollie/WC/Helper/Settings.php:507 -#: src/Mollie/WC/Helper/Settings.php:507 -msgid "Mollie status:" -msgstr "Mollie-status:" - -#: build/src/Mollie/WC/Helper/Settings.php:508 -#: src/Mollie/WC/Helper/Settings.php:508 -msgid "Connected" -msgstr "Verbonden" - -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: src/Mollie/WC/Helper/Settings.php:551 -msgid "Gateway enabled" -msgstr "Gateway geactiveerd" - -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Gateway disabled" -msgstr "Gateway gedeactiveerd" - -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Disabled" -msgstr "Uitgeschakeld" - -#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:563 -#: src/Mollie/WC/Helper/Settings.php:563 -msgid "The following payment methods are activated in your %sMollie profile%s:" -msgstr "De volgende betaalmethoden zijn ingeschakeld in je %sMollie-profiel%s:" - -#: build/src/Mollie/WC/Helper/Settings.php:572 -#: src/Mollie/WC/Helper/Settings.php:572 -msgid "Refresh" -msgstr "Vernieuwen" +#. translators: Placeholder 1: Default order status, placeholder 2: Link to 'Hold Stock' setting +#: ../src/Settings/General/MollieGeneralSettings.php:277 +msgid "Some payment methods take longer than a few hours to complete. The initial order state is then set to '%1$s'. This ensures the order is not cancelled when the setting %2$s is used." +msgstr "Sommige betaalmethoden duren langer dan een paar uur om te voltooien. De initiële bestelstatus is dan ingesteld op '%1$s'. Dit zorgt ervoor dat de bestelling niet wordt geannuleerd wanneer de instelling %2$s wordt gebruikt." -#: build/src/Mollie/WC/Helper/Settings.php:591 -#: src/Mollie/WC/Helper/Settings.php:591 -msgid "Edit" -msgstr "Bewerken" +#: ../src/Settings/General/MollieGeneralSettings.php:286 +msgid "Hold Stock (minutes)" +msgstr "Houd voorraad aan (minuten)" -# MS: Datei sagt informal, also müsste der Satz sein: 'Integreer snel en daar waar nodig al je belangrijkste betalingsmethodes in WooCommerce.' #query -#: build/src/Mollie/WC/Helper/Settings.php:624 -#: src/Mollie/WC/Helper/Settings.php:624 -msgid "" -"Quickly integrate all major payment methods in WooCommerce, wherever you " -"need them." -msgstr "" -"Integreer snel en daar waar nodig al uw belangrijkste betalingsmethodes in " -"WooCommerce." +#: ../src/Settings/Page/MollieSettingsPage.php:111 +msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them." +msgstr "Integreer snel en daar waar nodig al uw belangrijkste betalingsmethodes in WooCommerce." -# MS: Datei sagt informal, Satz müsste sein: 'Drop deze eenvoudig kant en klaar in je WooCommerce webshop met deze krachtige plugin van Mollie.' #query -#: build/src/Mollie/WC/Helper/Settings.php:625 -#: src/Mollie/WC/Helper/Settings.php:625 -msgid "" -" Simply drop them ready-made into your WooCommerce webshop with this " -"powerful plugin by Mollie." -msgstr "" -" Drop deze eenvoudig kant en klaar in uw WooCommerce webshop met deze " -"krachtige plugin van Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:115 +msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie." +msgstr " Drop deze eenvoudig kant en klaar in uw WooCommerce webshop met deze krachtige plugin van Mollie." -#: build/src/Mollie/WC/Helper/Settings.php:626 -#: src/Mollie/WC/Helper/Settings.php:626 +#: ../src/Settings/Page/MollieSettingsPage.php:119 msgid " Mollie is dedicated to making payments better for WooCommerce. " msgstr " Mollie, om betalingen van WooCommerce te verbeteren. " -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:123 msgid "Please go to" msgstr "Ga naar" -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 +#: ../src/Settings/Page/MollieSettingsPage.php:126 msgid " the signup page" msgstr " de aanmeldpagina" -#: build/src/Mollie/WC/Helper/Settings.php:628 -#: src/Mollie/WC/Helper/Settings.php:628 -msgid "" -" to create a new Mollie account and start receiving payments in a couple of " -"minutes. " -msgstr "" -" om een nieuw Mollie-account aan te maken en binnen enkele minuten " -"betalingen te ontvangen. " +#: ../src/Settings/Page/MollieSettingsPage.php:130 +msgid " to create a new Mollie account and start receiving payments in a couple of minutes. " +msgstr " om een nieuw Mollie-account aan te maken en binnen enkele minuten betalingen te ontvangen. " -#: build/src/Mollie/WC/Helper/Settings.php:629 -#: src/Mollie/WC/Helper/Settings.php:629 +#: ../src/Settings/Page/MollieSettingsPage.php:134 msgid "Contact " msgstr "Neem contact op " -#: build/src/Mollie/WC/Helper/Settings.php:630 -#: src/Mollie/WC/Helper/Settings.php:630 +#: ../src/Settings/Page/MollieSettingsPage.php:138 msgid " if you have any questions or comments about this plugin." msgstr " bij vragen of opmerkingen over deze plugin." -#: build/src/Mollie/WC/Helper/Settings.php:631 -#: src/Mollie/WC/Helper/Settings.php:631 -msgid "" -"Our pricing is always per transaction. No startup fees, no monthly fees, and " -"no gateway fees. No hidden fees, period." -msgstr "" -"Onze prijsstelling geldt altijd per transactie. Geen opstartvergoeding, geen " -"maandelijkse vergoeding, geen gateway vergoeding. Geen verborgen kosten!" +#: ../src/Settings/Page/MollieSettingsPage.php:142 +msgid "Our pricing is always per transaction. No startup fees, no monthly fees, and no gateway fees. No hidden fees, period." +msgstr "Onze prijsstelling geldt altijd per transactie. Geen opstartvergoeding, geen maandelijkse vergoeding, geen gateway vergoeding. Geen verborgen kosten!" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:148 msgid "Plugin Documentation" msgstr "Plugin documentatie" -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 +#: ../src/Settings/Page/MollieSettingsPage.php:151 msgid "Contact Support" msgstr "Neem contact op met onze support afdeling" -#: build/src/Mollie/WC/Helper/Settings.php:644 -#: src/Mollie/WC/Helper/Settings.php:644 +#: ../src/Settings/Page/MollieSettingsPage.php:163 msgid "Log plugin events." msgstr "Log plugin-gebeurtenissen" -#: build/src/Mollie/WC/Helper/Settings.php:650 -#: src/Mollie/WC/Helper/Settings.php:650 +#. translators: Placeholder 1: Location of the log files +#: ../src/Settings/Page/MollieSettingsPage.php:170 msgid "Log files are saved to %s" msgstr "Logbestanden worden opgeslagen in %s" -#: build/src/Mollie/WC/Helper/Settings.php:663 -#: build/src/Mollie/WC/Plugin.php:379 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:11 -#: src/Mollie/WC/Helper/Settings.php:663 src/Mollie/WC/Plugin.php:379 -#: src/Mollie/WC/Settings/Page/Mollie.php:11 -msgid "Mollie Settings" -msgstr "Mollie-instellingen" - -#: build/src/Mollie/WC/Helper/Settings.php:670 -#: src/Mollie/WC/Helper/Settings.php:670 +#: ../src/Settings/Page/MollieSettingsPage.php:192 msgid "Live API key" msgstr "Live API-sleutel" #. translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:675 -#: build/src/Mollie/WC/Helper/Settings.php:697 -#: src/Mollie/WC/Helper/Settings.php:675 src/Mollie/WC/Helper/Settings.php:697 -msgid "" -"The API key is used to connect to Mollie. You can find your %s API key in your %sMollie profile%s" -msgstr "" -"De API-sleutel wordt gebruikt om verbinding te maken met Mollie. U vindt uw " -"%s API-sleutel in uw %sMollie-profiel%s" +#: ../src/Settings/Page/MollieSettingsPage.php:197, ../src/Settings/Page/MollieSettingsPage.php:230 +msgid "The API key is used to connect to Mollie. You can find your %1$s API key in your %2$sMollie account%3$s" +msgstr "De API-sleutel wordt gebruikt om verbinding te maken met Mollie. U vindt uw %1$s API-sleutel in uw %2$sMollie-account%3$s" -#: build/src/Mollie/WC/Helper/Settings.php:681 -#: src/Mollie/WC/Helper/Settings.php:681 +#: ../src/Settings/Page/MollieSettingsPage.php:208 msgid "Live API key should start with live_" msgstr "Live API-sleutel moet beginnen met live_" -#: build/src/Mollie/WC/Helper/Settings.php:685 -#: src/Mollie/WC/Helper/Settings.php:685 +#: ../src/Settings/Page/MollieSettingsPage.php:215 msgid "Enable test mode" msgstr "Activeer de testmodus" -#: build/src/Mollie/WC/Helper/Settings.php:688 -#: src/Mollie/WC/Helper/Settings.php:688 -msgid "" -"Enable test mode if you want to test the plugin without using real payments." -msgstr "" -"Activeer de testmodus wanneer u de plugin wilt testen zonder gebruik te " -"maken van echte betalingen." +#: ../src/Settings/Page/MollieSettingsPage.php:218 +msgid "Enable test mode if you want to test the plugin without using real payments." +msgstr "Activeer de testmodus wanneer u de plugin wilt testen zonder gebruik te maken van echte betalingen." -#: build/src/Mollie/WC/Helper/Settings.php:692 -#: src/Mollie/WC/Helper/Settings.php:692 +#: ../src/Settings/Page/MollieSettingsPage.php:225 msgid "Test API key" msgstr "Test API-sleutel" -#: build/src/Mollie/WC/Helper/Settings.php:703 -#: src/Mollie/WC/Helper/Settings.php:703 +#: ../src/Settings/Page/MollieSettingsPage.php:241 msgid "Test API key should start with test_" msgstr "Test API-sleutel moet beginnen met test_" -#: build/src/Mollie/WC/Helper/Settings.php:707 -#: src/Mollie/WC/Helper/Settings.php:707 +#: ../src/Settings/Page/MollieSettingsPage.php:248 msgid "Debug Log" msgstr "Debug-log" -# MS: Datei sagt informal, Satz müsste sein: 'Je hebt WooCommerce-abonnementen geactiveerd, maar geen SEPA-incasso.' #query -#: build/src/Mollie/WC/Helper/Settings.php:810 -#: src/Mollie/WC/Helper/Settings.php:810 -msgid "" -"You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. " -"Enable SEPA Direct Debit if you want to allow customers to pay subscriptions " -"with iDEAL and/or other \"first\" payment methods." -msgstr "" -"U heeft WooCommerce-abonnementen geactiveerd, maar geen SEPA-incasso. " -"Activeer SEPA-incasso als u klanten wilt toestaan abonnementen met iDEAL en/" -"of andere 'eerste' betaalmethoden te betalen." - -# MS: Datei sagt informal, Satz müsste sein: 'Je hebt de WooCommerce standaard Direct Bank Transfer (BACS) betalingsgateway geactiveerd in WooCommerce.' #query -#: build/src/Mollie/WC/Helper/Settings.php:834 -#: src/Mollie/WC/Helper/Settings.php:834 -msgid "" -"You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway " -"enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via " -"Mollie and disabling the default WooCommerce BACS payment gateway to prevent " -"possible conflicts." -msgstr "" -"U heeft de WooCommerce standaard Direct Bank Transfer (BACS) " -"betalingsgateway geactiveerd in WooCommerce. Mollie adviseert dringend om " -"alleen Bank Transfer via Mollie te gebruiken en de standaard WooCommerce " -"BACS betalingsgateway te deactiveren om mogelijke conflicten te voorkomen." - -#: build/src/Mollie/WC/Helper/Settings.php:855 -#: src/Mollie/WC/Helper/Settings.php:855 -msgid "" -"You have activated Klarna. To accept payments, please make sure all default " -"WooCommerce checkout fields are enabled and required. For more information, " -"go to %1sKlarna Pay Later documentation%2s or %3sKlarna Slice it " -"documentation%4s" -msgstr "" -"Je hebt Klarna geactiveerd. Zorg ervoor dat alle standaard WooCommerce " -"betaalvelden zijn geactiveerd en verplicht zijn gesteld, zodat u betalingen " -"kunt accepteren. Ga voor meer informatie naar %1sKlarna betaal later " -"documentatie%2s of %3sKlarna Betaal in 3 delen documentatie%4s" - -#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce version, placeholder 3: used WooCommerce version -#: build/src/Mollie/WC/Helper/Status.php:67 src/Mollie/WC/Helper/Status.php:67 -msgid "" -"The %s plugin requires at least WooCommerce version %s, you are using " -"version %s. Please update your WooCommerce plugin." -msgstr "" -"De %s plugin vereist ten minste WooCommerce versie %s, u gebruikt versie %s. " -"Update uw WooCommerce plugin." - -#: build/src/Mollie/WC/Helper/Status.php:80 src/Mollie/WC/Helper/Status.php:80 -msgid "" -"Mollie API client not installed. Please make sure the plugin is installed " -"correctly." -msgstr "" -"Mollie API client niet geïnstalleerd. Controleer of de plugin correct is " -"geïnstalleerd." - -#: build/src/Mollie/WC/Helper/Status.php:89 src/Mollie/WC/Helper/Status.php:89 -msgid "" -"Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable " -"it in your server or ask your webhoster to enable it for you." -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen de JSON extensie voor PHP. " -"Activeer dit op uw server of vraag uw webhost om het voor u te activeren." - -#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP version -#: build/src/Mollie/WC/Helper/Status.php:104 -#: src/Mollie/WC/Helper/Status.php:104 -msgid "" -"Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. " -"Please upgrade and view %sthis FAQ%s" -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, u heeft PHP %s. " -"Installeer de upgrade en bekijk %sdeze FAQ%s" - -#: build/src/Mollie/WC/Helper/Status.php:116 -#: src/Mollie/WC/Helper/Status.php:116 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension JSON to be " -"enabled. Please enable the 'json' extension in your PHP configuration." -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON " -"geactiveerd is. Activeer de 'json' extensie in uw PHP-configuratie." - -#: build/src/Mollie/WC/Helper/Status.php:123 -#: src/Mollie/WC/Helper/Status.php:123 -msgid "" -"Mollie Payments for WooCommerce requires the PHP extension cURL to be " -"enabled. Please enable the 'curl' extension in your PHP configuration." -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL is " -"geactiveerd. Activeer de 'curl' extensie in uw PHP-configuratie." - -#: build/src/Mollie/WC/Helper/Status.php:131 -#: src/Mollie/WC/Helper/Status.php:131 -msgid "" -"Mollie Payments for WooCommerce require PHP cURL functions to be available. " -"Please make sure all of these functions are available." -msgstr "" -"Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies " -"beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:603 -#: src/Mollie/WC/Payment/Object.php:603 -msgid "" -"%s renewal payment failed via Mollie (%s). You will need to manually review " -"the payment and adjust product stocks if you use them." -msgstr "" -"%s vernieuwing van betaling mislukt via Mollie (%s). U dient de betaling " -"handmatig te controleren en productvoorraden aan te passen als u deze " -"gebruikt." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:637 -#: src/Mollie/WC/Payment/Object.php:637 -msgid "%s payment failed via Mollie (%s)." -msgstr "%s betaling mislukt via Mollie (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:677 -#: src/Mollie/WC/Payment/Object.php:677 -msgid "" -"Mollie webhook called, but payment also started via %s, so the order status " -"is not updated." -msgstr "" -"Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de " -"bestelstatus is niet bijgewerkt." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:262 -#: build/src/Mollie/WC/Payment/Payment.php:247 -#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:247 -msgid "Order completed using %s payment (%s)." -msgstr "Bestelling voltooid met gebruik van %s betaling (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:314 -#: src/Mollie/WC/Payment/Order.php:314 -msgid "" -"Order authorized using %s payment (%s). Set order to completed in " -"WooCommerce when you have shipped the products, to capture the payment. Do " -"this within 28 days, or the order will expire. To handle individual order " -"lines, process the order via the Mollie Dashboard." -msgstr "" -"Bestelling geautoriseerd met gebruik van %s betaling (%s). Om de betaling te " -"ontvangen, dient u na het verzenden van de producten de bestelling in " -"WooCommerce als voltooid te markeren. Doe dit binnen 28 dagen, anders " -"verloopt de bestelling. Voor het afhandelen van afzonderlijke bestelregels, " -"dient u de bestelling via het Mollie Dashboard te verwerken." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:361 -#: src/Mollie/WC/Payment/Order.php:361 -msgid "" -"Order completed at Mollie for %s order (%s). At least one order line " -"completed. Remember: Completed status for an order at Mollie is not the same " -"as Completed status in WooCommerce!" -msgstr "" -"Bestelling voltooid bij Mollie voor %s bestelling (%s). Ten minste één " -"bestelregel voltooid. Denk eraan: een voltooide status voor een bestelling " -"bij Mollie is niet hetzelfde als een voltooide status in WooCommerce!" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:444 -#: src/Mollie/WC/Payment/Order.php:444 -msgid "%s order (%s) cancelled ." -msgstr "%s bestelling (%s) geannuleerd." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:509 -#: src/Mollie/WC/Payment/Order.php:509 -msgid "" -"%s order expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s bestelling verlopen (%s) maar niet geannuleerd door een andere betaling " -"die nog in behandeling is (%s)." - -#. translators: Order note error -#: src/Mollie/WC/Payment/Order.php:619 -msgid "" -"The sum of refunds for all order lines is not identical to the refund " -"amount, so this refund will be processed as a payment amount refund, not an " -"order line refund." -msgstr "" -"De som van de terugbetalingen voor alle orderregels is niet identiek aan het " -"terugbetalingsbedrag, waardoor deze terugbetaling zal worden verwerkt als " -"een terugbetaling van het betalingsbedrag en niet als een terugbetaling van " -"een orderregel." - -#. translators: Placeholder 1: payment status. -#: src/Mollie/WC/Payment/Order.php:619 -msgid "Can not refund order amount that has status %1$s at Mollie." -msgstr "Kan bestelbedrag niet terugbetalen dat status %1$s heeft bij Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:742 -#: src/Mollie/WC/Payment/Order.php:742 -msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie." -msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie." - -#: build/src/Mollie/WC/Payment/Order.php:758 -#: src/Mollie/WC/Payment/Order.php:758 -msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-" -"ID: %s." - -#: build/src/Mollie/WC/Payment/Order.php:836 -#: src/Mollie/WC/Payment/Order.php:836 -msgid "" -"Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" -"Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s " -"Terugbetalings-ID: %s." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:931 -#: src/Mollie/WC/Payment/Order.php:931 -msgid "%s order (%s) expired ." -msgstr "%s bestelling (%s) verlopen." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -msgid "" -"One of the WooCommerce order items does not have the refund item ID meta " -"value associated to Mollie Order item." -msgstr "" -"Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het " -"terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -msgid "" -"Impossible to retrieve the order item ID related to the remote item: %1$s. " -"Try to do a refund by amount." -msgstr "" -"Onmogelijk om de bestelartikel-id met betrekking tot het afstandsartikel " -"terug te halen: %1$s Probeer een terugbetaling te doen per bedrag." - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -msgid "Empty WooCommerce order items or mollie order lines." -msgstr "Lege WooCommerce bestelartikelen of Mollie-bestelregels." - -#. translators: Placeholder 1: order number -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: build/src/Mollie/WC/Payment/Payment.php:132 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: src/Mollie/WC/Payment/Payment.php:132 -msgctxt "Payment description for {orderNumber}" -msgid "Order {orderNumber}" -msgstr "Bestelling {orderNumber}" - -#. translators: Placeholder 1: store name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: build/src/Mollie/WC/Payment/Payment.php:143 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: src/Mollie/WC/Payment/Payment.php:143 -msgctxt "Payment description for {storeName}" -msgid "StoreName {storeName}" -msgstr "WinkelNaam {storeName}" - -#. translators: Placeholder 1: customer first name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: build/src/Mollie/WC/Payment/Payment.php:154 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: src/Mollie/WC/Payment/Payment.php:154 -msgctxt "Payment description for {customer.firstname}" -msgid "Customer Firstname {customer.firstname}" -msgstr "Klant voornaam {customer.firstname}" - -#. translators: Placeholder 1: customer last name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: build/src/Mollie/WC/Payment/Payment.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: src/Mollie/WC/Payment/Payment.php:165 -msgctxt "Payment description for {customer.lastname}" -msgid "Customer Lastname {customer.lastname}" -msgstr "Klant achternaam {customer.lastname}" - -#. translators: Placeholder 1: customer company name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: build/src/Mollie/WC/Payment/Payment.php:176 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: src/Mollie/WC/Payment/Payment.php:176 -msgctxt "Payment description for {customer.company}" -msgid "Customer Company {customer.company}" -msgstr "Klant bedrijf {customer.company}" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:334 -#: src/Mollie/WC/Payment/Payment.php:334 -msgid "%s payment (%s) cancelled ." -msgstr "%s betaling (%s) geannuleerd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:328 -msgid "Processing a payment, no capture needed" -msgstr "Een betaling wordt verwerkt, als voltooid markeren is niet nodig" - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:342 -msgid "Order already canceled at Mollie, can not be shipped/captured." -msgstr "" -"Bestelling al geannuleerd bij Mollie, kan niet worden verzonden/als voltooid " -"worden gemarkeerd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:350 -msgid "Order already completed at Mollie, can not be shipped/captured." -msgstr "" -"Bestelling al voltooid bij Mollie, kan niet worden verzonden/als voltooid " -"worden gemarkeerd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:359 -msgid "" -"Order successfully updated to shipped at Mollie, capture of funds underway." -msgstr "" -"Bestelling succesvol bijgewerkt naar verzonden bij Mollie, als voltooid " -"markeren van tegoeden in behandeling." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:365 -msgid "Order not paid or authorized at Mollie yet, can not be shipped." -msgstr "" -"Bestelling nog niet betaald of geautoriseerd bij Mollie, kan niet worden " -"verzonden." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:399 -msgid "" -"Order contains Mollie payment method, but not a valid Mollie Order ID. " -"Canceling order failed." -msgstr "" -"Bestelling bevat Mollie betaalmethode, maar geen geldig Mollie bestel-ID. " -"Bestelling annuleren is mislukt." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:420 -msgid "Order already canceled at Mollie, can not be canceled again." -msgstr "" -"Bestelling al geannuleerd bij Mollie, kan niet opnieuw worden geannuleerd." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:430 -msgid "Order also cancelled at Mollie." -msgstr "Bestelling ook geannuleerd bij Mollie." - -#. translators: Order note info -#: src/Mollie/WC/Payment/Payment.php:436 -msgid "Order could not be canceled at Mollie, because order status is " -msgstr "" -"Bestelling kon niet worden geannuleerd bij Mollie, want de bestelstatus is " - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:404 -#: src/Mollie/WC/Payment/Payment.php:404 -msgid "" -"%s payment expired (%s) but not cancelled because of another pending payment " -"(%s)." -msgstr "" -"%s betaling verlopen (%s) maar niet geannuleerd door een andere betaling die " -"nog in behandeling is (%s)." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:427 -#: src/Mollie/WC/Payment/Payment.php:427 -msgid "%s payment expired (%s)." -msgstr "%s betaling verlopen (%s)." - -#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID -#: build/src/Mollie/WC/Payment/Payment.php:509 -#: src/Mollie/WC/Payment/Payment.php:509 -msgid "Refunded %s%s%s - Payment: %s, Refund: %s" -msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s" - -#: build/src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -msgid "" -"Mollie doesn't allow a partial refund of the full amount or quantity of at " -"least one order line. Trying to process this as an amount refund instead." -msgstr "" -"Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag " -"of hoeveelheid van ten minste één bestelregel. Probeer dit in plaats daarvan " -"als een terugbetaling van het bedrag te verwerken." - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Plugin.php:128 src/Mollie/WC/Plugin.php:128 -msgid "%s payment failed (%s)." -msgstr "%s betaling mislukt (%s)." - -#: build/src/Mollie/WC/Plugin.php:303 src/Mollie/WC/Plugin.php:303 -msgid "" -"%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s " -"disable it%4$s before deploying into production." -msgstr "" -"%1$sMollie Payments voor WooCommerce%2$s de testmodus is actief, %3$s " -"schakel deze uit%4$s voordat hij wordt geïmplementeerd." - -#: build/src/Mollie/WC/Plugin.php:411 build/src/Mollie/WC/Plugin.php:444 -#: build/src/Mollie/WC/Plugin.php:466 src/Mollie/WC/Plugin.php:411 -#: src/Mollie/WC/Plugin.php:444 src/Mollie/WC/Plugin.php:466 -msgid "Mollie Voucher Category" -msgstr "Mollie-waardeboncategorie" - -#: build/src/Mollie/WC/Plugin.php:414 build/src/Mollie/WC/Plugin.php:446 -#: build/src/Mollie/WC/Plugin.php:469 src/Mollie/WC/Plugin.php:414 -#: src/Mollie/WC/Plugin.php:446 src/Mollie/WC/Plugin.php:469 -msgid "--Please choose an option--" -msgstr "--Selecteer een optie--" - -#: build/src/Mollie/WC/Plugin.php:415 build/src/Mollie/WC/Plugin.php:447 -#: build/src/Mollie/WC/Plugin.php:470 build/src/Mollie/WC/Plugin.php:583 -#: src/Mollie/WC/Plugin.php:415 src/Mollie/WC/Plugin.php:447 -#: src/Mollie/WC/Plugin.php:470 src/Mollie/WC/Plugin.php:583 -msgid "No Category" -msgstr "Geen categorie" - -#: build/src/Mollie/WC/Plugin.php:416 build/src/Mollie/WC/Plugin.php:448 -#: build/src/Mollie/WC/Plugin.php:471 build/src/Mollie/WC/Plugin.php:584 -#: src/Mollie/WC/Plugin.php:416 src/Mollie/WC/Plugin.php:448 -#: src/Mollie/WC/Plugin.php:471 src/Mollie/WC/Plugin.php:584 -msgid "Meal" -msgstr "Maaltijd" - -#: build/src/Mollie/WC/Plugin.php:417 build/src/Mollie/WC/Plugin.php:449 -#: build/src/Mollie/WC/Plugin.php:472 build/src/Mollie/WC/Plugin.php:585 -#: src/Mollie/WC/Plugin.php:417 src/Mollie/WC/Plugin.php:449 -#: src/Mollie/WC/Plugin.php:472 src/Mollie/WC/Plugin.php:585 -msgid "Eco" -msgstr "Eco" - -#: build/src/Mollie/WC/Plugin.php:418 build/src/Mollie/WC/Plugin.php:450 -#: build/src/Mollie/WC/Plugin.php:473 build/src/Mollie/WC/Plugin.php:586 -#: src/Mollie/WC/Plugin.php:418 src/Mollie/WC/Plugin.php:450 -#: src/Mollie/WC/Plugin.php:473 src/Mollie/WC/Plugin.php:586 -msgid "Gift" -msgstr "Cadeau" - -#: build/src/Mollie/WC/Plugin.php:452 build/src/Mollie/WC/Plugin.php:475 -#: src/Mollie/WC/Plugin.php:452 src/Mollie/WC/Plugin.php:475 -msgid "Select a voucher category to apply to all products with this category" -msgstr "" -"Selecteer een waardeboncategorie om alle producten met deze categorie te " -"gebruiken" - -#: build/src/Mollie/WC/Plugin.php:512 src/Mollie/WC/Plugin.php:512 -msgid "Products voucher category" -msgstr "Producten waardeboncategorie" - -#: build/src/Mollie/WC/Plugin.php:519 build/src/Mollie/WC/Plugin.php:582 -#: src/Mollie/WC/Plugin.php:519 src/Mollie/WC/Plugin.php:582 -msgid "Same as default category" -msgstr "Zelfde als standaardcategorie" +#: ../src/Settings/Page/MollieSettingsPage.php:300 +msgid "Gateway enabled" +msgstr "Gateway geactiveerd" -#: build/src/Mollie/WC/Plugin.php:529 src/Mollie/WC/Plugin.php:529 -msgid "" -"In order to process it, all products in the order must have a category. To " -"disable the product from voucher selection select \"No category\" option." -msgstr "" -"Daarvoor moeten alle producten uit de bestelling een categorie hebben. Om " -"het selecteren van een waardebon voor een bepaald product te deactiveren " -"kiest u de optie ''Geen categorie''." +#: ../src/Settings/Page/MollieSettingsPage.php:304 +msgid "Gateway disabled" +msgstr "Gateway gedeactiveerd" -#: build/src/Mollie/WC/Plugin.php:579 src/Mollie/WC/Plugin.php:579 -msgid "Mollie Voucher category" -msgstr "Mollie-waardeboncategorie" +#: ../src/Settings/Page/MollieSettingsPage.php:307 +msgid "Disabled" +msgstr "Uitgeschakeld" -#: build/src/Mollie/WC/Plugin.php:727 src/Mollie/WC/Plugin.php:727 -msgid "%1$s items refunded in WooCommerce and at Mollie." -msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie." +#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile +#: ../src/Settings/Page/MollieSettingsPage.php:318 +msgid "The following payment methods are activated in your %1$sMollie profile%2$s:" +msgstr "De volgende betaalmethoden zijn ingeschakeld in je %1$sMollie-profiel%2$s:" -#: build/src/Mollie/WC/Plugin.php:745 src/Mollie/WC/Plugin.php:745 -msgid "%1$s items cancelled in WooCommerce and at Mollie." -msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie." +#: ../src/Settings/Page/MollieSettingsPage.php:333 +msgid "Refresh" +msgstr "Vernieuwen" -#: build/src/Mollie/WC/Plugin.php:919 src/Mollie/WC/Plugin.php:919 -msgid "Name on card" -msgstr "Naam op de kaart" +#: ../src/Settings/Page/MollieSettingsPage.php:342 +msgid "No payment methods available" +msgstr "Geen betaalmethoden beschikbaar" -#: build/src/Mollie/WC/Plugin.php:923 src/Mollie/WC/Plugin.php:923 -msgid "Card number" -msgstr "Kaartnummer" +#: ../src/Settings/Page/MollieSettingsPage.php:357 +msgid "Edit" +msgstr "Bewerken" -#: build/src/Mollie/WC/Plugin.php:931 src/Mollie/WC/Plugin.php:931 -msgid "CVC/CVV" -msgstr "CVC/CVV" +#: ../src/Settings/Page/MollieSettingsPage.php:365 +msgid "Activate" +msgstr "Activeer" -#: build/src/Mollie/WC/Plugin.php:938 src/Mollie/WC/Plugin.php:938 -msgid "An unknown error occurred, please check the card fields." -msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden." +#: ../src/Settings/Page/MollieSettingsPage.php:411 +msgid "You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. Enable SEPA Direct Debit if you want to allow customers to pay subscriptions with iDEAL and/or other \"first\" payment methods." +msgstr "U heeft WooCommerce-abonnementen geactiveerd, maar geen SEPA-incasso. Activeer SEPA-incasso als u klanten wilt toestaan abonnementen met iDEAL en/of andere 'eerste' betaalmethoden te betalen." -#: build/src/Mollie/WC/Plugin.php:1295 src/Mollie/WC/Plugin.php:1295 -msgid "Mollie settings" -msgstr "Mollie-instellingen" +#: ../src/Settings/Page/MollieSettingsPage.php:437 +msgid "You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via Mollie and disabling the default WooCommerce BACS payment gateway to prevent possible conflicts." +msgstr "U heeft de WooCommerce standaard Direct Bank Transfer (BACS) betalingsgateway geactiveerd in WooCommerce. Mollie adviseert dringend om alleen Bank Transfer via Mollie te gebruiken en de standaard WooCommerce BACS betalingsgateway te deactiveren om mogelijke conflicten te voorkomen." -#: build/src/Mollie/WC/Plugin.php:1301 src/Mollie/WC/Plugin.php:1301 -msgid "Logs" -msgstr "Logs" +#. translators: Placeholder 1: Opening link tag. Placeholder 2: Closing link tag. Placeholder 3: Opening link tag. Placeholder 4: Closing link tag. +#: ../src/Settings/Page/MollieSettingsPage.php:461 +msgid "You have activated Klarna. To accept payments, please make sure all default WooCommerce checkout fields are enabled and required. For more information, go to %1$sKlarna Pay Later documentation%2$s or %3$sKlarna Slice it documentation%4$s" +msgstr "U hebt Klarna geactiveerd. Zorg ervoor dat alle standaard WooCommerce betaalvelden zijn geactiveerd en verplicht zijn gesteld, zodat u betalingen kunt accepteren. Ga voor meer informatie naar %1$sKlarna betaal later documentatie%2$s of %3$sKlarna Betaal in 3 delen documentatie%4$s" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:138 -#: src/Mollie/WC/Settings/Page/Mollie.php:138 +#: ../src/Settings/Page/MollieSettingsPage.php:702 msgid "General" msgstr "Algemeen" -#: build/src/Mollie/WC/Settings/Page/Mollie.php:143 -#: src/Mollie/WC/Settings/Page/Mollie.php:143 -msgid "Apple Pay Button" -msgstr "Apple Pay knop" - -#: build/src/Mollie/WC/Settings/Page/Mollie.php:147 -#: src/Mollie/WC/Settings/Page/Mollie.php:147 +#: ../src/Settings/Page/MollieSettingsPage.php:707 msgid "Advanced" msgstr "Geavanceerd" -#: src/Mollie/WC/Gateway/Abstract.php:1987 -msgid "%1$s Secure payments provided by %2$s" -msgstr "%1$s Beveiligde betalingen verschaft door %2$s" +#: ../src/Settings/Page/MollieSettingsPage.php:710 +msgid "Apple Pay Button" +msgstr "Apple Pay knop" diff --git a/languages/mollie-payments-for-woocommerce.pot b/languages/mollie-payments-for-woocommerce.pot deleted file mode 100644 index dc314b953..000000000 --- a/languages/mollie-payments-for-woocommerce.pot +++ /dev/null @@ -1,2417 +0,0 @@ -# Copyright (C) 2021 Mollie -# This file is distributed under the same license as the Mollie Payments for WooCommerce plugin. -msgid "" -msgstr "" -"Project-Id-Version: Mollie Payments for WooCommerce 6.7.0\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mollie-payments-for-woocommerce\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2021-11-12T07:59:02+00:00\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"X-Generator: WP-CLI 2.4.0\n" -"X-Domain: mollie-payments-for-woocommerce\n" - -#. Plugin Name of the plugin -msgid "Mollie Payments for WooCommerce" -msgstr "" - -#. Plugin URI of the plugin -#. Author URI of the plugin -msgid "https://www.mollie.com" -msgstr "" - -#. Description of the plugin -msgid "Accept payments in WooCommerce with the official Mollie plugin" -msgstr "" - -#. Author of the plugin -msgid "Mollie" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:6 -#: inc/settings/mollie_advanced_settings.php:6 -msgid "Mollie advanced settings" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:8 -#: inc/settings/mollie_advanced_settings.php:8 -msgctxt "Label {orderNumber} description for payment description options" -msgid "Order number" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:9 -#: inc/settings/mollie_advanced_settings.php:9 -msgctxt "Label {storeName} description for payment description options" -msgid "Site Title" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:10 -#: inc/settings/mollie_advanced_settings.php:10 -msgctxt "Label {customer.firstname} description for payment description options" -msgid "Customer's first name" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:11 -#: inc/settings/mollie_advanced_settings.php:11 -msgctxt "Label {customer.lastname} description for payment description options" -msgid "Customer's last name" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 -msgctxt "Label {customer.company} description for payment description options" -msgid "Customer's company name" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:8 -#: build/src/Mollie/WC/Helper/Settings.php:666 -#: inc/settings/mollie_advanced_settings.php:8 -#: src/Mollie/WC/Helper/Settings.php:666 -msgid "The following options are required to use the plugin and are used by all Mollie payment methods" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:12 -#: inc/settings/mollie_advanced_settings.php:12 -msgid "Order status after cancelled payment" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:18 -#: inc/settings/mollie_advanced_settings.php:18 -msgid "Status for orders when a payment (not a Mollie order via the Orders API) is cancelled. Default: pending. Orders with status Pending can be paid with another payment method, customers can try again. Cancelled orders are final. Set this to Cancelled if you only have one payment method or don't want customers to re-try paying with a different payment method. This doesn't apply to payments for orders via the new Orders API and Klarna payments." -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:23 -#: inc/settings/mollie_advanced_settings.php:23 -msgid "Payment screen language" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:26 -#: inc/settings/mollie_advanced_settings.php:26 -msgid "Automatically send WordPress language" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:29 -#: build/inc/settings/mollie_advanced_settings.php:90 -#: build/src/Mollie/WC/Helper/Settings.php:288 -#: inc/settings/mollie_advanced_settings.php:29 -#: inc/settings/mollie_advanced_settings.php:90 -#: src/Mollie/WC/Helper/Settings.php:288 -msgid "default" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:30 -#: inc/settings/mollie_advanced_settings.php:30 -msgid "Detect using browser language" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:34 -#: inc/settings/mollie_advanced_settings.php:34 -msgid "English" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:35 -#: inc/settings/mollie_advanced_settings.php:35 -msgid "Dutch" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:36 -#: inc/settings/mollie_advanced_settings.php:36 -msgid "Flemish (Belgium)" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:37 -#: inc/settings/mollie_advanced_settings.php:37 -msgid "French" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:38 -#: inc/settings/mollie_advanced_settings.php:38 -msgid "French (Belgium)" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:39 -#: inc/settings/mollie_advanced_settings.php:39 -msgid "German" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:40 -#: inc/settings/mollie_advanced_settings.php:40 -msgid "Austrian German" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:41 -#: inc/settings/mollie_advanced_settings.php:41 -msgid "Swiss German" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:42 -#: inc/settings/mollie_advanced_settings.php:42 -msgid "Spanish" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:43 -#: inc/settings/mollie_advanced_settings.php:43 -msgid "Catalan" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:44 -#: inc/settings/mollie_advanced_settings.php:44 -msgid "Portuguese" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:45 -#: inc/settings/mollie_advanced_settings.php:45 -msgid "Italian" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:46 -#: inc/settings/mollie_advanced_settings.php:46 -msgid "Norwegian" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:47 -#: inc/settings/mollie_advanced_settings.php:47 -msgid "Swedish" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:48 -#: inc/settings/mollie_advanced_settings.php:48 -msgid "Finnish" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:49 -#: inc/settings/mollie_advanced_settings.php:49 -msgid "Danish" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:50 -#: inc/settings/mollie_advanced_settings.php:50 -msgid "Icelandic" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:51 -#: inc/settings/mollie_advanced_settings.php:51 -msgid "Hungarian" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:52 -#: inc/settings/mollie_advanced_settings.php:52 -msgid "Polish" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:53 -#: inc/settings/mollie_advanced_settings.php:53 -msgid "Latvian" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:54 -#: inc/settings/mollie_advanced_settings.php:54 -msgid "Lithuanian" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:57 -#: inc/settings/mollie_advanced_settings.php:57 -msgid "Sending a language (or locale) is required. The option 'Automatically send WordPress language' will try to get the customer's language in WordPress (and respects multilanguage plugins) and convert it to a format Mollie understands. If this fails, or if the language is not supported, it will fall back to American English. You can also select one of the locales currently supported by Mollie, that will then be used for all customers." -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:65 -#: inc/settings/mollie_advanced_settings.php:65 -msgid "Store customer details at Mollie" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:68 -#: inc/settings/mollie_advanced_settings.php:68 -msgid "Should Mollie store customers name and email address for Single Click Payments? Default %1$s. Required if WooCommerce Subscriptions is being used! Read more about %2$s and how it improves your conversion." -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:72 -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: inc/settings/mollie_advanced_settings.php:72 -#: src/Mollie/WC/Helper/Settings.php:551 -msgid "Enabled" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:73 -#: inc/settings/mollie_advanced_settings.php:73 -msgid "Single Click Payments" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:82 -#: inc/settings/mollie_advanced_settings.php:82 -msgid "Select API Method" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:99 -#: inc/settings/mollie_advanced_settings.php:99 -msgid "Click %shere%s to read more about the differences between the Payments and Orders API" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:109 -#: inc/settings/mollie_advanced_settings.php:109 -msgid "API Payment Description" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:137 -#: inc/settings/mollie_advanced_settings.php:137 -msgctxt "Payment description options" -msgid "Available variables" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:160 -#: inc/settings/mollie_advanced_settings.php:160 -msgid "Select among the available variables the description to be used for this transaction.%s(Note: this only works when the method is set to Payments API)%s" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:134 -#: inc/settings/mollie_advanced_settings.php:134 -msgid "Surcharge gateway fee label" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:140 -#: inc/settings/mollie_advanced_settings.php:140 -msgid "Gateway Fee" -msgstr "" - -#: build/inc/settings/mollie_advanced_settings.php:142 -#: inc/settings/mollie_advanced_settings.php:142 -msgid "This is the label will appear in frontend when the surcharge applies" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:14 -#: inc/settings/mollie_applepay_settings.php:14 -msgid "The following options are required to use the Apple Pay gateway" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:19 -#: build/src/Mollie/WC/Helper/Settings.php:48 -#: inc/settings/mollie_applepay_settings.php:19 -#: src/Mollie/WC/Helper/Settings.php:48 -msgid "Enable/Disable" -msgstr "" - -#. translators: Placeholder 1: enabled or disabled -#: build/inc/settings/mollie_applepay_settings.php:21 -#: build/src/Mollie/WC/Helper/Settings.php:54 -#: inc/settings/mollie_applepay_settings.php:21 -#: src/Mollie/WC/Helper/Settings.php:54 -msgid "Enable %s" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:29 -#: build/src/Mollie/WC/Helper/Settings.php:68 -#: inc/settings/mollie_applepay_settings.php:29 -#: src/Mollie/WC/Helper/Settings.php:68 -msgid "Title" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:32 -#: build/src/Mollie/WC/Helper/Settings.php:71 -#: inc/settings/mollie_applepay_settings.php:32 -#: src/Mollie/WC/Helper/Settings.php:71 -msgid "This controls the title which the user sees during checkout. Default %s" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:45 -#: build/inc/settings/mollie_applepay_settings.php:48 -#: build/src/Mollie/WC/Helper/Settings.php:94 -#: inc/settings/mollie_applepay_settings.php:45 -#: inc/settings/mollie_applepay_settings.php:48 -#: src/Mollie/WC/Helper/Settings.php:94 -msgid "Display logo" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:60 -#: build/src/Mollie/WC/Helper/Settings.php:81 -#: inc/settings/mollie_applepay_settings.php:60 -#: src/Mollie/WC/Helper/Settings.php:81 -msgid "Description" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:63 -#: build/src/Mollie/WC/Helper/Settings.php:84 -#: inc/settings/mollie_applepay_settings.php:63 -#: src/Mollie/WC/Helper/Settings.php:84 -msgid "Payment method description that the customer will see on your checkout. Default %s" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:79 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:6 -#: inc/settings/mollie_applepay_settings.php:79 -#: inc/settings/mollie_apple_pay_button_enabler.php:6 -msgid "Apple Pay button settings" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:84 -#: inc/settings/mollie_applepay_settings.php:84 -msgid "The following options are required to use the Apple Pay Direct Button" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:88 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:18 -#: inc/settings/mollie_applepay_settings.php:88 -#: inc/settings/mollie_apple_pay_button_enabler.php:18 -msgid "Enable Apple Pay Button on Cart page" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:91 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:21 -#: inc/settings/mollie_applepay_settings.php:91 -#: inc/settings/mollie_apple_pay_button_enabler.php:21 -msgid "Enable the Apple Pay direct buy button on the Cart page" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:103 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:29 -#: inc/settings/mollie_applepay_settings.php:103 -#: inc/settings/mollie_apple_pay_button_enabler.php:29 -msgid "Enable Apple Pay Button on Product page" -msgstr "" - -#: build/inc/settings/mollie_applepay_settings.php:106 -#: build/inc/settings/mollie_apple_pay_button_enabler.php:32 -#: inc/settings/mollie_applepay_settings.php:106 -#: inc/settings/mollie_apple_pay_button_enabler.php:32 -msgid "Enable the Apple Pay direct buy button on the Product page" -msgstr "" - -#: build/inc/settings/mollie_apple_pay_button_enabler.php:11 -#: inc/settings/mollie_apple_pay_button_enabler.php:11 -msgid "The following options are required to use the Apple Pay button" -msgstr "" - -#: build/inc/settings/mollie_components.php:7 -#: inc/settings/mollie_components.php:7 -msgctxt "Mollie Components Settings" -msgid "Base Styles" -msgstr "" - -#: build/inc/settings/mollie_components.php:16 -#: build/inc/settings/mollie_components.php:156 -#: inc/settings/mollie_components.php:16 -#: inc/settings/mollie_components.php:156 -msgctxt "Mollie Components Settings" -msgid "Background Color" -msgstr "" - -#: build/inc/settings/mollie_components.php:22 -#: build/inc/settings/mollie_components.php:145 -#: inc/settings/mollie_components.php:22 -#: inc/settings/mollie_components.php:145 -msgctxt "Mollie Components Settings" -msgid "Text Color" -msgstr "" - -#: build/inc/settings/mollie_components.php:28 -#: inc/settings/mollie_components.php:28 -msgctxt "Mollie Components Settings" -msgid "Placeholder Color" -msgstr "" - -#: build/inc/settings/mollie_components.php:34 -#: inc/settings/mollie_components.php:34 -msgctxt "Mollie Components Settings" -msgid "Font Size" -msgstr "" - -#: build/inc/settings/mollie_components.php:35 -#: inc/settings/mollie_components.php:35 -msgctxt "Mollie Components Settings" -msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'." -msgstr "" - -#: build/inc/settings/mollie_components.php:45 -#: inc/settings/mollie_components.php:45 -msgctxt "Mollie Components Settings" -msgid "Font Weight" -msgstr "" - -#: build/inc/settings/mollie_components.php:48 -#: inc/settings/mollie_components.php:48 -msgctxt "Mollie Components Settings" -msgid "Lighter" -msgstr "" - -#: build/inc/settings/mollie_components.php:49 -#: inc/settings/mollie_components.php:49 -msgctxt "Mollie Components Settings" -msgid "Regular" -msgstr "" - -#: build/inc/settings/mollie_components.php:50 -#: inc/settings/mollie_components.php:50 -msgctxt "Mollie Components Settings" -msgid "Bold" -msgstr "" - -#: build/inc/settings/mollie_components.php:56 -#: inc/settings/mollie_components.php:56 -msgctxt "Mollie Components Settings" -msgid "Letter Spacing" -msgstr "" - -#: build/inc/settings/mollie_components.php:62 -#: inc/settings/mollie_components.php:62 -msgctxt "Mollie Components Settings" -msgid "Line Height" -msgstr "" - -#: build/inc/settings/mollie_components.php:71 -#: inc/settings/mollie_components.php:71 -msgctxt "Mollie Components Settings" -msgid "Padding" -msgstr "" - -#: build/inc/settings/mollie_components.php:72 -#: inc/settings/mollie_components.php:72 -msgctxt "Mollie Components Settings" -msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`." -msgstr "" - -#: build/inc/settings/mollie_components.php:82 -#: inc/settings/mollie_components.php:82 -msgctxt "Mollie Components Settings" -msgid "Align Text" -msgstr "" - -#: build/inc/settings/mollie_components.php:85 -#: inc/settings/mollie_components.php:85 -msgctxt "Mollie Components Settings" -msgid "Left" -msgstr "" - -#: build/inc/settings/mollie_components.php:86 -#: inc/settings/mollie_components.php:86 -msgctxt "Mollie Components Settings" -msgid "Right" -msgstr "" - -#: build/inc/settings/mollie_components.php:87 -#: inc/settings/mollie_components.php:87 -msgctxt "Mollie Components Settings" -msgid "Center" -msgstr "" - -#: build/inc/settings/mollie_components.php:88 -#: inc/settings/mollie_components.php:88 -msgctxt "Mollie Components Settings" -msgid "Justify" -msgstr "" - -#: build/inc/settings/mollie_components.php:94 -#: inc/settings/mollie_components.php:94 -msgctxt "Mollie Components Settings" -msgid "Transform Text " -msgstr "" - -#: build/inc/settings/mollie_components.php:97 -#: inc/settings/mollie_components.php:97 -msgctxt "Mollie Components Settings" -msgid "None" -msgstr "" - -#: build/inc/settings/mollie_components.php:102 -#: inc/settings/mollie_components.php:102 -msgctxt "Mollie Components Settings" -msgid "Capitalize" -msgstr "" - -#: build/inc/settings/mollie_components.php:107 -#: inc/settings/mollie_components.php:107 -msgctxt "Mollie Components Settings" -msgid "Uppercase" -msgstr "" - -#: build/inc/settings/mollie_components.php:112 -#: inc/settings/mollie_components.php:112 -msgctxt "Mollie Components Settings" -msgid "Lowercase" -msgstr "" - -#: build/inc/settings/mollie_components.php:117 -#: inc/settings/mollie_components.php:117 -msgctxt "Mollie Components Settings" -msgid "Full Width" -msgstr "" - -#: build/inc/settings/mollie_components.php:122 -#: inc/settings/mollie_components.php:122 -msgctxt "Mollie Components Settings" -msgid "Full Size Kana" -msgstr "" - -#: build/inc/settings/mollie_components.php:136 -#: inc/settings/mollie_components.php:136 -msgctxt "Mollie Components Settings" -msgid "Invalid Status Styles" -msgstr "" - -#: build/inc/settings/mollie_components.php:146 -#: inc/settings/mollie_components.php:146 -msgctxt "Mollie Components Settings" -msgid "Text Color for invalid input." -msgstr "" - -#: build/inc/settings/mollie_components.php:157 -#: inc/settings/mollie_components.php:157 -msgctxt "Mollie Components Settings" -msgid "Background Color for invalid input." -msgstr "" - -#: build/inc/settings/mollie_components_enabler.php:6 -#: inc/settings/mollie_components_enabler.php:6 -msgid "Enable Mollie Components" -msgstr "" - -#: build/inc/settings/mollie_components_enabler.php:8 -#: inc/settings/mollie_components_enabler.php:8 -msgid "Use the Mollie Components for this Gateway. Read more about %s and how it improves your conversion." -msgstr "" - -#: build/inc/settings/mollie_components_enabler.php:12 -#: build/src/Mollie/WC/Settings/Page/Components.php:10 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:139 -#: inc/settings/mollie_components_enabler.php:12 -#: src/Mollie/WC/Settings/Page/Components.php:10 -#: src/Mollie/WC/Settings/Page/Mollie.php:139 -msgid "Mollie Components" -msgstr "" - -#: build/inc/settings/mollie_creditcard_icons_selector.php:5 -#: inc/settings/mollie_creditcard_icons_selector.php:5 -msgid "Customize Icons" -msgstr "" - -#: build/inc/settings/mollie_creditcard_icons_selector.php:12 -#: inc/settings/mollie_creditcard_icons_selector.php:12 -msgid "Enable Icons Selector" -msgstr "" - -#: build/inc/settings/mollie_creditcard_icons_selector.php:13 -#: inc/settings/mollie_creditcard_icons_selector.php:13 -msgid "Show customized creditcard icons on checkout page" -msgstr "" - -#: build/inc/settings/mollie_creditcard_icons_selector.php:21 -#: inc/settings/mollie_creditcard_icons_selector.php:21 -msgid "Show American Express Icon" -msgstr "" - -#: build/inc/settings/mollie_creditcard_icons_selector.php:26 -#: inc/settings/mollie_creditcard_icons_selector.php:26 -msgid "Show Carta Si Icon" -msgstr "" - -#: build/inc/settings/mollie_creditcard_icons_selector.php:31 -#: inc/settings/mollie_creditcard_icons_selector.php:31 -msgid "Show Carte Bancaire Icon" -msgstr "" - -#: build/inc/settings/mollie_creditcard_icons_selector.php:36 -#: inc/settings/mollie_creditcard_icons_selector.php:36 -msgid "Show Maestro Icon" -msgstr "" - -#: build/inc/settings/mollie_creditcard_icons_selector.php:41 -#: inc/settings/mollie_creditcard_icons_selector.php:41 -msgid "Show Mastercard Icon" -msgstr "" - -#: build/inc/settings/mollie_creditcard_icons_selector.php:46 -#: inc/settings/mollie_creditcard_icons_selector.php:46 -msgid "Show Visa Icon" -msgstr "" - -#: build/inc/settings/mollie_creditcard_icons_selector.php:51 -#: inc/settings/mollie_creditcard_icons_selector.php:51 -msgid "Show VPay Icon" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:7 -#: inc/settings/mollie_paypal_button_enabler.php:7 -msgid "PayPal button display settings" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:12 -#: inc/settings/mollie_paypal_button_enabler.php:12 -msgid "%1sThe PayPal button is optimized for digital goods. And will only appear if the product has no shipping. %2sThe customer's address information can only be retrieved if the transaction has been done with the %3sOrders API%4s.%5s%6s" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:19 -#: inc/settings/mollie_paypal_button_enabler.php:19 -msgid "Display on cart page" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:23 -#: inc/settings/mollie_paypal_button_enabler.php:23 -msgid "Enable the PayPal button to be used in the cart page." -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:31 -#: inc/settings/mollie_paypal_button_enabler.php:31 -msgid "Display on product page" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:35 -#: inc/settings/mollie_paypal_button_enabler.php:35 -msgid "Enable the PayPal button to be used in the product page." -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:44 -#: inc/settings/mollie_paypal_button_enabler.php:44 -msgctxt "Mollie PayPal Button Settings" -msgid "Button text language and color" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:46 -#: inc/settings/mollie_paypal_button_enabler.php:46 -msgctxt "Mollie PayPal Button Settings" -msgid "Select the text and the colour of the button." -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:54 -#: inc/settings/mollie_paypal_button_enabler.php:54 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill blue" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:55 -#: inc/settings/mollie_paypal_button_enabler.php:55 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded blue" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:56 -#: inc/settings/mollie_paypal_button_enabler.php:56 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill golden" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:57 -#: inc/settings/mollie_paypal_button_enabler.php:57 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded golden" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:58 -#: inc/settings/mollie_paypal_button_enabler.php:58 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill gray" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:59 -#: inc/settings/mollie_paypal_button_enabler.php:59 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded gray" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:60 -#: inc/settings/mollie_paypal_button_enabler.php:60 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Pill white" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:61 -#: inc/settings/mollie_paypal_button_enabler.php:61 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Buy with PayPal - Rounded white" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:62 -#: inc/settings/mollie_paypal_button_enabler.php:62 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill black" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:63 -#: inc/settings/mollie_paypal_button_enabler.php:63 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded black" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:64 -#: inc/settings/mollie_paypal_button_enabler.php:64 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill blue" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:65 -#: inc/settings/mollie_paypal_button_enabler.php:65 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded blue" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:66 -#: inc/settings/mollie_paypal_button_enabler.php:66 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill golden" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:67 -#: inc/settings/mollie_paypal_button_enabler.php:67 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded golden" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:68 -#: inc/settings/mollie_paypal_button_enabler.php:68 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill gray" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:69 -#: inc/settings/mollie_paypal_button_enabler.php:69 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded gray" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:70 -#: inc/settings/mollie_paypal_button_enabler.php:70 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Pill white" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:71 -#: inc/settings/mollie_paypal_button_enabler.php:71 -msgctxt "Mollie PayPal button Settings" -msgid "English -- Checkout with PayPal - Rounded white" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:72 -#: inc/settings/mollie_paypal_button_enabler.php:72 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill black" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:73 -#: inc/settings/mollie_paypal_button_enabler.php:73 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded black" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:74 -#: inc/settings/mollie_paypal_button_enabler.php:74 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill blue" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:75 -#: inc/settings/mollie_paypal_button_enabler.php:75 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded blue" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:76 -#: inc/settings/mollie_paypal_button_enabler.php:76 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill golden" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:77 -#: inc/settings/mollie_paypal_button_enabler.php:77 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded golden" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:78 -#: inc/settings/mollie_paypal_button_enabler.php:78 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill gray" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:79 -#: inc/settings/mollie_paypal_button_enabler.php:79 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded gray" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:80 -#: inc/settings/mollie_paypal_button_enabler.php:80 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Pill white" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:81 -#: inc/settings/mollie_paypal_button_enabler.php:81 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Buy with PayPal - Rounded white" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:82 -#: inc/settings/mollie_paypal_button_enabler.php:82 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill black" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:83 -#: inc/settings/mollie_paypal_button_enabler.php:83 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded black" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:84 -#: inc/settings/mollie_paypal_button_enabler.php:84 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill blue" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:85 -#: inc/settings/mollie_paypal_button_enabler.php:85 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded blue" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:86 -#: inc/settings/mollie_paypal_button_enabler.php:86 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill golden" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:87 -#: inc/settings/mollie_paypal_button_enabler.php:87 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded golden" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:88 -#: inc/settings/mollie_paypal_button_enabler.php:88 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill gray" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:89 -#: inc/settings/mollie_paypal_button_enabler.php:89 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded gray" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:90 -#: inc/settings/mollie_paypal_button_enabler.php:90 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Pill white" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:91 -#: inc/settings/mollie_paypal_button_enabler.php:91 -msgctxt "Mollie PayPal button Settings" -msgid "Dutch -- Checkout with PayPal - Rounded white" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:92 -#: inc/settings/mollie_paypal_button_enabler.php:92 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Pill black" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:93 -#: inc/settings/mollie_paypal_button_enabler.php:93 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Rounded black" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:94 -#: inc/settings/mollie_paypal_button_enabler.php:94 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Pill blue" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:95 -#: inc/settings/mollie_paypal_button_enabler.php:95 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Rounded blue" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:96 -#: inc/settings/mollie_paypal_button_enabler.php:96 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Pill golden" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:97 -#: inc/settings/mollie_paypal_button_enabler.php:97 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Rounded golden" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:98 -#: inc/settings/mollie_paypal_button_enabler.php:98 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Pill gray" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:99 -#: inc/settings/mollie_paypal_button_enabler.php:99 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Rounded gray" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:100 -#: inc/settings/mollie_paypal_button_enabler.php:100 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Pill white" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:101 -#: inc/settings/mollie_paypal_button_enabler.php:101 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Buy with PayPal - Rounded white" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:102 -#: inc/settings/mollie_paypal_button_enabler.php:102 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Pill black" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:103 -#: inc/settings/mollie_paypal_button_enabler.php:103 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Rounded black" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:104 -#: inc/settings/mollie_paypal_button_enabler.php:104 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Pill blue" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:105 -#: inc/settings/mollie_paypal_button_enabler.php:105 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Rounded blue" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:106 -#: inc/settings/mollie_paypal_button_enabler.php:106 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Pill golden" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:107 -#: inc/settings/mollie_paypal_button_enabler.php:107 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Rounded golden" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:108 -#: inc/settings/mollie_paypal_button_enabler.php:108 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Pill gray" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:109 -#: inc/settings/mollie_paypal_button_enabler.php:109 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Rounded gray" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:110 -#: inc/settings/mollie_paypal_button_enabler.php:110 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Pill white" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:111 -#: inc/settings/mollie_paypal_button_enabler.php:111 -msgctxt "Mollie PayPal button Settings" -msgid "German -- Checkout with PayPal - Rounded white" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:112 -#: inc/settings/mollie_paypal_button_enabler.php:112 -msgctxt "Mollie PayPal button Settings" -msgid "French -- Buy with PayPal - Gold" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:113 -#: inc/settings/mollie_paypal_button_enabler.php:113 -msgctxt "Mollie PayPal button Settings" -msgid "French -- Checkout with PayPal - Gold" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:114 -#: inc/settings/mollie_paypal_button_enabler.php:114 -msgctxt "Mollie PayPal button Settings" -msgid "French -- Checkout with PayPal - Silver" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:115 -#: inc/settings/mollie_paypal_button_enabler.php:115 -msgctxt "Mollie PayPal button Settings" -msgid "Polish -- Buy with PayPal - Gold" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:116 -#: inc/settings/mollie_paypal_button_enabler.php:116 -msgctxt "Mollie PayPal button Settings" -msgid "Polish -- Checkout with PayPal - Gold" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:117 -#: inc/settings/mollie_paypal_button_enabler.php:117 -msgctxt "Mollie PayPal button Settings" -msgid "Polish -- Checkout with PayPal - Silver" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:122 -#: inc/settings/mollie_paypal_button_enabler.php:122 -msgid "Minimum amount to display button" -msgstr "" - -#: build/inc/settings/mollie_paypal_button_enabler.php:126 -#: inc/settings/mollie_paypal_button_enabler.php:126 -msgid "If the product or the cart total amount is under this number, then the button will not show up." -msgstr "" - -#: build/mollie-payments-for-woocommerce.php:90 -#: mollie-payments-for-woocommerce.php:90 -msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s." -msgstr "" - -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: build/src/Mollie/WC/Gateway/Abstract.php:685 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: build/src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:693 -#: src/Mollie/WC/Gateway/Abstract.php:685 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78 -#: src/Mollie/WC/PayPalButton/AjaxRequests.php:121 -msgid "Could not create %s payment." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:138 -#: src/Mollie/WC/Gateway/Abstract.php:138 -msgid "No custom logo selected" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:221 -#: src/Mollie/WC/Gateway/Abstract.php:221 -msgid "Gateway Disabled" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:244 -#: src/Mollie/WC/Gateway/Abstract.php:244 -msgid "Return to payments" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:260 -#: build/src/Mollie/WC/Helper/Settings.php:114 -#: src/Mollie/WC/Gateway/Abstract.php:260 -#: src/Mollie/WC/Helper/Settings.php:114 -msgid "Sell to specific countries" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:272 -#: src/Mollie/WC/Gateway/Abstract.php:272 -msgid "Choose countries…" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:273 -#: src/Mollie/WC/Gateway/Abstract.php:273 -msgid "Country" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:282 -#: src/Mollie/WC/Gateway/Abstract.php:282 -msgid "Select all" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:283 -#: src/Mollie/WC/Gateway/Abstract.php:283 -msgid "Select none" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:337 -#: build/src/Mollie/WC/Helper/Settings.php:558 -#: src/Mollie/WC/Gateway/Abstract.php:337 -#: src/Mollie/WC/Helper/Settings.php:558 -msgid "Test mode enabled." -msgstr "" - -#. translators: The surrounding %s's Will be replaced by a link to the global setting page -#: build/src/Mollie/WC/Gateway/Abstract.php:339 -#: src/Mollie/WC/Gateway/Abstract.php:339 -msgid "No API key provided. Please %sset you Mollie API key%s first." -msgstr "" - -#. translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Gateway/Abstract.php:351 -#: src/Mollie/WC/Gateway/Abstract.php:351 -msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s." -msgstr "" - -#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported Mollie currencies -#: build/src/Mollie/WC/Gateway/Abstract.php:363 -#: src/Mollie/WC/Gateway/Abstract.php:363 -msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s " -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:525 -#: src/Mollie/WC/Gateway/Abstract.php:525 -msgid "Could not load order %s" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:577 -#: src/Mollie/WC/Gateway/Abstract.php:577 -msgid "Order completed internally because of an existing valid mandate at Mollie." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:588 -#: src/Mollie/WC/Gateway/Abstract.php:588 -msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:589 -#: src/Mollie/WC/Gateway/Abstract.php:589 -msgid "Failed switching subscriptions, no valid mandate." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:658 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:413 -#: src/Mollie/WC/Gateway/Abstract.php:658 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:413 -msgid "Awaiting payment confirmation." -msgstr "" - -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:668 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:420 -#: src/Mollie/WC/Gateway/Abstract.php:668 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:420 -msgid "%s payment started (%s)." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:670 -#: build/src/Mollie/WC/Gateway/Abstract.php:897 -#: build/src/Mollie/WC/Gateway/Abstract.php:1181 -#: build/src/Mollie/WC/Gateway/Abstract.php:1243 -#: build/src/Mollie/WC/Gateway/Abstract.php:1618 -#: build/src/Mollie/WC/Gateway/Abstract.php:2142 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: build/src/Mollie/WC/Payment/Object.php:608 -#: build/src/Mollie/WC/Payment/Object.php:642 -#: build/src/Mollie/WC/Payment/Order.php:264 -#: build/src/Mollie/WC/Payment/Order.php:316 -#: build/src/Mollie/WC/Payment/Order.php:363 -#: build/src/Mollie/WC/Payment/Order.php:446 -#: build/src/Mollie/WC/Payment/Order.php:511 -#: build/src/Mollie/WC/Payment/Order.php:936 -#: build/src/Mollie/WC/Payment/Payment.php:249 -#: build/src/Mollie/WC/Payment/Payment.php:336 -#: build/src/Mollie/WC/Payment/Payment.php:406 -#: build/src/Mollie/WC/Payment/Payment.php:429 -#: src/Mollie/WC/Gateway/Abstract.php:670 -#: src/Mollie/WC/Gateway/Abstract.php:897 -#: src/Mollie/WC/Gateway/Abstract.php:1181 -#: src/Mollie/WC/Gateway/Abstract.php:1243 -#: src/Mollie/WC/Gateway/Abstract.php:1618 -#: src/Mollie/WC/Gateway/Abstract.php:2142 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:422 -#: src/Mollie/WC/Payment/Object.php:608 -#: src/Mollie/WC/Payment/Object.php:642 -#: src/Mollie/WC/Payment/Order.php:264 -#: src/Mollie/WC/Payment/Order.php:316 -#: src/Mollie/WC/Payment/Order.php:363 -#: src/Mollie/WC/Payment/Order.php:446 -#: src/Mollie/WC/Payment/Order.php:511 -#: src/Mollie/WC/Payment/Order.php:936 -#: src/Mollie/WC/Payment/Payment.php:249 -#: src/Mollie/WC/Payment/Payment.php:336 -#: src/Mollie/WC/Payment/Payment.php:406 -#: src/Mollie/WC/Payment/Payment.php:429 -msgid "test mode" -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment status, placeholder 3: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:894 -#: src/Mollie/WC/Gateway/Abstract.php:894 -msgid "%s payment %s (%s), not processed." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1008 -#: src/Mollie/WC/Gateway/Abstract.php:1008 -msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1144 -#: src/Mollie/WC/Gateway/Abstract.php:1144 -msgid "New chargeback %s processed! Order note and order status updated." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1176 -#: src/Mollie/WC/Gateway/Abstract.php:1176 -msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1237 -#: src/Mollie/WC/Gateway/Abstract.php:1237 -msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1314 -#: src/Mollie/WC/Gateway/Abstract.php:1314 -msgid "You have cancelled your payment. Please complete your order with a different payment method." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1328 -#: build/src/Mollie/WC/Gateway/Abstract.php:1337 -#: src/Mollie/WC/Gateway/Abstract.php:1328 -#: src/Mollie/WC/Gateway/Abstract.php:1337 -msgid "Your payment was not successful. Please complete your order with a different payment method." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1529 -#: src/Mollie/WC/Gateway/Abstract.php:1529 -msgid "We have not received a definite payment status." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1534 -#: src/Mollie/WC/Gateway/Abstract.php:1534 -msgid "We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant." -msgstr "" - -#. translators: Placeholder 1: payment method -#: build/src/Mollie/WC/Gateway/Abstract.php:1541 -#: src/Mollie/WC/Gateway/Abstract.php:1541 -msgid "Payment completed with %s" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1589 -#: src/Mollie/WC/Gateway/Abstract.php:1589 -msgid "Order cancelled" -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:1616 -#: src/Mollie/WC/Gateway/Abstract.php:1616 -msgid "%s payment still pending (%s) but customer already returned to the store. Status should be updated automatically in the future, if it doesn't this might indicate a communication issue between the site and Mollie." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1625 -#: src/Mollie/WC/Gateway/Abstract.php:1625 -msgid ", payment pending." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:1652 -#: src/Mollie/WC/Gateway/Abstract.php:1652 -msgid "Your order has been cancelled." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/Abstract.php:2129 -#: src/Mollie/WC/Gateway/Abstract.php:2129 -msgid "%1$s payment %2$s via Mollie (%3$s %4$s). You will need to manually review the payment (and adjust product stocks if you use it)." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:2166 -#: src/Mollie/WC/Gateway/Abstract.php:2166 -msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency" -msgid "Mollie - Giftcard details: %1$s %2$s %3$s." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:2178 -#: src/Mollie/WC/Gateway/Abstract.php:2178 -msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency" -msgid " Remainder: %1$s %2$s %3$s." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:2580 -#: src/Mollie/WC/Gateway/Abstract.php:2580 -msgid " + %1$s %2$s fee might apply" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:2590 -#: src/Mollie/WC/Gateway/Abstract.php:2590 -msgid " + %1$s%% fee might apply" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:2607 -#: src/Mollie/WC/Gateway/Abstract.php:2607 -msgid " + %1$s %2$s + %3$s%% fee might apply" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Abstract.php:2646 -#: src/Mollie/WC/Gateway/Abstract.php:2646 -msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145 -msgid "Order completed using %1$s payment (%2$s)." -msgstr "" - -#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:165 -msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process." -msgstr "" - -#. translators: Placeholder 1: Payment method title -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:313 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:313 -msgid "Could not create %s renewal payment." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Applepay.php:48 -#: src/Mollie/WC/Gateway/Applepay.php:48 -msgid "Apple Pay" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Applepay.php:56 -#: src/Mollie/WC/Gateway/Applepay.php:56 -msgid "To accept payments via Apple Pay" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Bancontact.php:29 -#: src/Mollie/WC/Gateway/Bancontact.php:29 -msgid "Bancontact" -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:38 -#: build/src/Mollie/WC/Helper/Settings.php:257 -#: src/Mollie/WC/Gateway/BankTransfer.php:38 -#: src/Mollie/WC/Helper/Settings.php:257 -msgid "Activate expiry date setting" -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:39 -#: build/src/Mollie/WC/Helper/Settings.php:258 -#: src/Mollie/WC/Gateway/BankTransfer.php:39 -#: src/Mollie/WC/Helper/Settings.php:258 -msgid "Enable expiry date for payments" -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:40 -#: src/Mollie/WC/Gateway/BankTransfer.php:40 -msgid "Enable this option if you want to be able to set the number of days after the payment will expire. This will turn all transactions into payments instead of orders" -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:45 -#: build/src/Mollie/WC/Helper/Settings.php:264 -#: build/src/Mollie/WC/Plugin.php:927 -#: src/Mollie/WC/Gateway/BankTransfer.php:45 -#: src/Mollie/WC/Helper/Settings.php:264 -#: src/Mollie/WC/Plugin.php:927 -msgid "Expiry date" -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:47 -#: src/Mollie/WC/Gateway/BankTransfer.php:47 -msgid "Number of DAYS after the payment will expire. Default %d days" -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:56 -#: src/Mollie/WC/Gateway/BankTransfer.php:56 -msgid "Skip Mollie payment screen" -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:57 -#: src/Mollie/WC/Gateway/BankTransfer.php:57 -msgid "Skip Mollie payment screen when Bank Transfer is selected" -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:58 -#: src/Mollie/WC/Gateway/BankTransfer.php:58 -msgid "Enable this option if you want to skip redirecting your user to the Mollie payment screen, instead this will redirect your user directly to the WooCommerce order received page displaying instructions how to complete the Bank Transfer payment." -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:138 -#: src/Mollie/WC/Gateway/BankTransfer.php:138 -msgid "Bank Transfer" -msgstr "" - -#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN, placeholder 3: consumer BIC -#: build/src/Mollie/WC/Gateway/BankTransfer.php:188 -#: build/src/Mollie/WC/Gateway/DirectDebit.php:80 -#: build/src/Mollie/WC/Gateway/Ideal.php:124 -#: build/src/Mollie/WC/Gateway/Sofort.php:64 -#: src/Mollie/WC/Gateway/BankTransfer.php:188 -#: src/Mollie/WC/Gateway/DirectDebit.php:80 -#: src/Mollie/WC/Gateway/Ideal.php:124 -#: src/Mollie/WC/Gateway/Sofort.php:64 -msgid "Payment completed by %1$s (IBAN (last 4 digits): %2$s, BIC: %3$s)" -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:198 -#: src/Mollie/WC/Gateway/BankTransfer.php:198 -msgid "Please complete your payment by transferring the total amount to the following bank account:" -msgstr "" - -#. translators: Placeholder 1: 'Stichting Mollie Payments' -#: build/src/Mollie/WC/Gateway/BankTransfer.php:202 -#: src/Mollie/WC/Gateway/BankTransfer.php:202 -msgid "Beneficiary: %s" -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:203 -#: src/Mollie/WC/Gateway/BankTransfer.php:203 -msgid "IBAN: %s" -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:204 -#: src/Mollie/WC/Gateway/BankTransfer.php:204 -msgid "BIC: %s" -msgstr "" - -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:209 -#: src/Mollie/WC/Gateway/BankTransfer.php:209 -msgid "Payment reference: %s" -msgstr "" - -#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216 (SEPA) or +++513/7587/59959+++ (Belgium) -#: build/src/Mollie/WC/Gateway/BankTransfer.php:214 -#: src/Mollie/WC/Gateway/BankTransfer.php:214 -msgid "Please provide the payment reference %s" -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:228 -#: src/Mollie/WC/Gateway/BankTransfer.php:228 -msgid "The payment will expire on %s." -msgstr "" - -#: build/src/Mollie/WC/Gateway/BankTransfer.php:235 -#: src/Mollie/WC/Gateway/BankTransfer.php:235 -msgid "The payment will expire on %s. Please make sure you transfer the total amount before this date." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Belfius.php:33 -#: src/Mollie/WC/Gateway/Belfius.php:33 -msgid "Belfius Direct Net" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Creditcard.php:84 -#: src/Mollie/WC/Gateway/Creditcard.php:84 -msgid "Credit card" -msgstr "" - -#. translators: Placeholder 1: card holder -#: build/src/Mollie/WC/Gateway/Creditcard.php:136 -#: src/Mollie/WC/Gateway/Creditcard.php:136 -msgid "Payment completed by %s" -msgstr "" - -#: build/src/Mollie/WC/Gateway/DirectDebit.php:42 -#: src/Mollie/WC/Gateway/DirectDebit.php:42 -msgid "SEPA Direct Debit" -msgstr "" - -#: build/src/Mollie/WC/Gateway/DirectDebit.php:49 -#: src/Mollie/WC/Gateway/DirectDebit.php:49 -msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscriptions, and will not be shown in the WooCommerce checkout for regular payments! You also need to enable iDEAL and/or other \"first\" payment methods if you want to use SEPA Direct Debit." -msgstr "" - -#: build/src/Mollie/WC/Gateway/EPS.php:29 -#: src/Mollie/WC/Gateway/EPS.php:29 -msgid "EPS" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Giftcard.php:31 -#: src/Mollie/WC/Gateway/Giftcard.php:31 -msgid "Show gift cards dropdown" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Giftcard.php:33 -#: src/Mollie/WC/Gateway/Giftcard.php:33 -msgid "If you disable this, a dropdown with various gift cards will not be shown in the WooCommerce checkout, so users will select a gift card on the Mollie payment page after checkout." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Giftcard.php:37 -#: build/src/Mollie/WC/Gateway/Ideal.php:39 -#: build/src/Mollie/WC/Gateway/Kbc.php:38 -#: src/Mollie/WC/Gateway/Giftcard.php:37 -#: src/Mollie/WC/Gateway/Ideal.php:39 -#: src/Mollie/WC/Gateway/Kbc.php:38 -msgid "Issuers empty option" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Giftcard.php:39 -#: src/Mollie/WC/Gateway/Giftcard.php:39 -msgid "This text will be displayed as the first option in the gift card dropdown, but only if the above 'Show gift cards dropdown' is enabled." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Giftcard.php:58 -#: src/Mollie/WC/Gateway/Giftcard.php:58 -msgid "Gift cards" -msgstr "" - -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Giftcard.php:74 -#: src/Mollie/WC/Gateway/Giftcard.php:74 -msgid "Select your gift card" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Giropay.php:29 -#: src/Mollie/WC/Gateway/Giropay.php:29 -msgid "Giropay" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Ideal.php:33 -#: src/Mollie/WC/Gateway/Ideal.php:33 -msgid "Show iDEAL banks dropdown" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Ideal.php:35 -#: src/Mollie/WC/Gateway/Ideal.php:35 -msgid "If you disable this, a dropdown with various iDEAL banks will not be shown in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie payment page after checkout." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Ideal.php:41 -#: src/Mollie/WC/Gateway/Ideal.php:41 -msgid "This text will be displayed as the first option in the iDEAL issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above 'Show iDEAL banks dropdown' is enabled." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Ideal.php:60 -#: src/Mollie/WC/Gateway/Ideal.php:60 -msgid "iDEAL" -msgstr "" - -#. translators: Default iDEAL description, displayed above issuer drop down -#. translators: Default KBC/CBC dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Ideal.php:76 -#: build/src/Mollie/WC/Gateway/Kbc.php:75 -#: src/Mollie/WC/Gateway/Ideal.php:76 -#: src/Mollie/WC/Gateway/Kbc.php:75 -msgid "Select your bank" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Kbc.php:32 -#: src/Mollie/WC/Gateway/Kbc.php:32 -msgid "Show KBC/CBC banks dropdown" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Kbc.php:34 -#: src/Mollie/WC/Gateway/Kbc.php:34 -msgid "If you disable this, a dropdown with various KBC/CBC banks will not be shown in the WooCommerce checkout, so users will select a KBC/CBC bank on the Mollie payment page after checkout." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Kbc.php:40 -#: src/Mollie/WC/Gateway/Kbc.php:40 -msgid "This text will be displayed as the first option in the KBC/CBC issuers drop down, if nothing is entered, \"Select your bank\" will be shown. Only if the above ''Show KBC/CBC banks dropdown' is enabled." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Kbc.php:59 -#: src/Mollie/WC/Gateway/Kbc.php:59 -msgid "KBC/CBC Payment Button" -msgstr "" - -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33 -msgid "Klarna Pay later" -msgstr "" - -#: build/src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:38 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40 -msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required." -msgstr "" - -#: build/src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -#: src/Mollie/WC/Gateway/KlarnaPayNow.php:31 -msgid "Klarna Pay now" -msgstr "" - -#: build/src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33 -msgid "Klarna Slice it" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: build/src/Mollie/WC/Plugin.php:508 -#: src/Mollie/WC/Gateway/Mealvoucher.php:35 -#: src/Mollie/WC/Plugin.php:508 -msgid "Select the default products category" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:46 -#: src/Mollie/WC/Gateway/Mealvoucher.php:46 -msgid "In order to process it, all products in the order must have a category. This selector will assign the default category for the shop products" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:66 -#: src/Mollie/WC/Gateway/Mealvoucher.php:66 -msgid "Voucher" -msgstr "" - -#. translators: Default gift card dropdown description, displayed above issuer drop down -#: build/src/Mollie/WC/Gateway/Mealvoucher.php:82 -#: src/Mollie/WC/Gateway/Mealvoucher.php:82 -msgid "voucher" -msgstr "" - -#: build/src/Mollie/WC/Gateway/MyBank.php:36 -#: src/Mollie/WC/Gateway/MyBank.php:36 -msgid "MyBank" -msgstr "" - -#: build/src/Mollie/WC/Gateway/MyBank.php:44 -#: src/Mollie/WC/Gateway/MyBank.php:44 -msgid "To accept payments via MyBank" -msgstr "" - -#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer Account number -#: build/src/Mollie/WC/Gateway/MyBank.php:73 -#: src/Mollie/WC/Gateway/MyBank.php:73 -msgid "Payment completed by %1$s - %2$s" -msgstr "" - -#: build/src/Mollie/WC/Gateway/PayPal.php:43 -#: src/Mollie/WC/Gateway/PayPal.php:43 -msgid "PayPal" -msgstr "" - -#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID -#: build/src/Mollie/WC/Gateway/PayPal.php:74 -#: build/src/Mollie/WC/Payment/Object.php:695 -#: src/Mollie/WC/Gateway/PayPal.php:74 -#: src/Mollie/WC/Payment/Object.php:695 -msgid "Payment completed by %s - %s (PayPal transaction ID: %s)" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Paysafecard.php:20 -#: src/Mollie/WC/Gateway/Paysafecard.php:20 -msgid "paysafecard" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Przelewy24.php:33 -#: src/Mollie/WC/Gateway/Przelewy24.php:33 -msgid "Przelewy24" -msgstr "" - -#: build/src/Mollie/WC/Gateway/Przelewy24.php:40 -#: src/Mollie/WC/Gateway/Przelewy24.php:40 -msgid "To accept payments via Przelewy24, a customer email is required for every payment." -msgstr "" - -#. translators: Placeholder 1: customer billing email -#: build/src/Mollie/WC/Gateway/Przelewy24.php:64 -#: src/Mollie/WC/Gateway/Przelewy24.php:64 -msgid "Payment completed by %s." -msgstr "" - -#: build/src/Mollie/WC/Gateway/Sofort.php:33 -#: src/Mollie/WC/Gateway/Sofort.php:33 -msgid "SOFORT Banking" -msgstr "" - -#: build/src/Mollie/WC/Helper/Api.php:40 -#: src/Mollie/WC/Helper/Api.php:40 -msgid "No API key provided. Please set your Mollie API keys below." -msgstr "" - -#: build/src/Mollie/WC/Helper/Api.php:42 -#: src/Mollie/WC/Helper/Api.php:42 -msgid "Invalid API key(s). Get them on the %sDevelopers page in the Mollie dashboard%s. The API key(s) must start with 'live_' or 'test_', be at least 30 characters and must not contain any special characters." -msgstr "" - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39 -msgid "%1$sServer not compliant with Apple requirements%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" -msgstr "" - -#: build/src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54 -msgid "%1$sApple Pay Validation Error%2$s Check %3$sApple Server requirements page%4$s to fix it in order to make the Apple Pay button work" -msgstr "" - -#: build/src/Mollie/WC/Helper/OrderLines.php:499 -#: src/Mollie/WC/Helper/OrderLines.php:499 -msgid "Shipping" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:61 -#: src/Mollie/WC/Helper/Settings.php:61 -msgid "%s display settings" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:99 -#: src/Mollie/WC/Helper/Settings.php:99 -msgid "Display logo on checkout page. Default enabled" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:107 -#: src/Mollie/WC/Helper/Settings.php:107 -msgid "Sales countries" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:125 -#: src/Mollie/WC/Helper/Settings.php:125 -msgid "%s custom logo" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:132 -#: src/Mollie/WC/Helper/Settings.php:132 -msgid "Enable custom logo" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:137 -#: src/Mollie/WC/Helper/Settings.php:137 -msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:143 -#: src/Mollie/WC/Helper/Settings.php:143 -msgid "Upload custom logo" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:150 -#: src/Mollie/WC/Helper/Settings.php:150 -msgid "Upload a custom icon for this gateway. The feature must be enabled." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:159 -#: src/Mollie/WC/Helper/Settings.php:159 -msgid "%s surcharge" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:166 -#: src/Mollie/WC/Helper/Settings.php:166 -msgid "Payment Surcharge" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:172 -#: src/Mollie/WC/Helper/Settings.php:172 -msgid "No fee" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:176 -#: src/Mollie/WC/Helper/Settings.php:176 -msgid "Fixed fee" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:180 -#: src/Mollie/WC/Helper/Settings.php:180 -msgid "Percentage" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:184 -#: src/Mollie/WC/Helper/Settings.php:184 -msgid "Fixed fee and percentage" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:190 -#: src/Mollie/WC/Helper/Settings.php:190 -msgid "Choose a payment surcharge for this gateway" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:197 -#: src/Mollie/WC/Helper/Settings.php:197 -msgid "Payment surcharge fixed amount in %s" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:200 -#: src/Mollie/WC/Helper/Settings.php:200 -msgid "Control the fee added on checkout. Default 0.00" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:210 -#: src/Mollie/WC/Helper/Settings.php:210 -msgid "Payment surcharge percentage amount %" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:213 -#: src/Mollie/WC/Helper/Settings.php:213 -msgid "Control the percentage fee added on checkout. Default 0.00" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:223 -#: src/Mollie/WC/Helper/Settings.php:223 -msgid "Payment surcharge limit in %s" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:226 -#: src/Mollie/WC/Helper/Settings.php:226 -msgid "Limit the maximum fee added on checkout. Default 0, means no limit" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:236 -#: src/Mollie/WC/Helper/Settings.php:236 -msgid "Surcharge only under this limit, in %s" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:239 -#: src/Mollie/WC/Helper/Settings.php:239 -msgid "Maximum order amount to apply surcharge. If the order is above this number the surcharge will not apply. Default 0, means no maximum" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:250 -#: src/Mollie/WC/Helper/Settings.php:250 -msgid "%s advanced" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:259 -#: src/Mollie/WC/Helper/Settings.php:259 -msgid "Enable this option if you want to be able to set the number of days after the order will expire." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:267 -#: src/Mollie/WC/Helper/Settings.php:267 -msgid "Number of MINUTES after the order will expire and will be canceled at Mollie and WooCommerce. A value of 0 means no expiry date will be considered." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:280 -#: src/Mollie/WC/Helper/Settings.php:280 -msgid "Initial order status" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:299 -#: src/Mollie/WC/Helper/Settings.php:299 -msgid "Some payment methods take longer than a few hours to complete. The initial order state is then set to '%s'. This ensures the order is not cancelled when the setting %s is used." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:494 -#: src/Mollie/WC/Helper/Settings.php:494 -msgid "Error" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:507 -#: src/Mollie/WC/Helper/Settings.php:507 -msgid "Mollie status:" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:508 -#: src/Mollie/WC/Helper/Settings.php:508 -msgid "Connected" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:551 -#: src/Mollie/WC/Helper/Settings.php:551 -msgid "Gateway enabled" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Gateway disabled" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:552 -#: src/Mollie/WC/Helper/Settings.php:552 -msgid "Disabled" -msgstr "" - -#. translators: The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:563 -#: src/Mollie/WC/Helper/Settings.php:563 -msgid "The following payment methods are activated in your %sMollie profile%s:" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:572 -#: src/Mollie/WC/Helper/Settings.php:572 -msgid "Refresh" -msgstr "" - -#: src/Settings/Page/MollieSettingsPage.php:342 -msgid "No payment methods available" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:591 -#: src/Mollie/WC/Helper/Settings.php:591 -msgid "Edit" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:624 -#: src/Mollie/WC/Helper/Settings.php:624 -msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:625 -#: src/Mollie/WC/Helper/Settings.php:625 -msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:626 -#: src/Mollie/WC/Helper/Settings.php:626 -msgid " Mollie is dedicated to making payments better for WooCommerce. " -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 -msgid "Please go to" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:627 -#: src/Mollie/WC/Helper/Settings.php:627 -msgid " the signup page" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:628 -#: src/Mollie/WC/Helper/Settings.php:628 -msgid "to create a new Mollie account and start receiving payments in a couple of minutes. " -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:629 -#: src/Mollie/WC/Helper/Settings.php:629 -msgid "Contact " -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:630 -#: src/Mollie/WC/Helper/Settings.php:630 -msgid " if you have any questions or comments about this plugin." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:631 -#: src/Mollie/WC/Helper/Settings.php:631 -msgid "Our pricing is always per transaction. No startup fees, no monthly fees, and no gateway fees. No hidden fees, period." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 -msgid "Plugin Documentation" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:635 -#: src/Mollie/WC/Helper/Settings.php:635 -msgid "Contact Support" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:644 -#: src/Mollie/WC/Helper/Settings.php:644 -msgid "Log plugin events." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:650 -#: src/Mollie/WC/Helper/Settings.php:650 -msgid "Log files are saved to %s" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:663 -#: build/src/Mollie/WC/Plugin.php:379 -#: build/src/Mollie/WC/Settings/Page/Mollie.php:11 -#: src/Mollie/WC/Helper/Settings.php:663 -#: src/Mollie/WC/Plugin.php:379 -#: src/Mollie/WC/Settings/Page/Mollie.php:11 -msgid "Mollie Settings" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:670 -#: src/Mollie/WC/Helper/Settings.php:670 -msgid "Live API key" -msgstr "" - -#. translators: Placeholder 1: API key mode (live or test). The surrounding %s's Will be replaced by a link to the Mollie profile -#: build/src/Mollie/WC/Helper/Settings.php:675 -#: build/src/Mollie/WC/Helper/Settings.php:697 -#: src/Mollie/WC/Helper/Settings.php:675 -#: src/Mollie/WC/Helper/Settings.php:697 -msgid "The API key is used to connect to Mollie. You can find your %s API key in your %sMollie profile%s" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:681 -#: src/Mollie/WC/Helper/Settings.php:681 -msgid "Live API key should start with live_" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:685 -#: src/Mollie/WC/Helper/Settings.php:685 -msgid "Enable test mode" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:688 -#: src/Mollie/WC/Helper/Settings.php:688 -msgid "Enable test mode if you want to test the plugin without using real payments." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:692 -#: src/Mollie/WC/Helper/Settings.php:692 -msgid "Test API key" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:703 -#: src/Mollie/WC/Helper/Settings.php:703 -msgid "Test API key should start with test_" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:707 -#: src/Mollie/WC/Helper/Settings.php:707 -msgid "Debug Log" -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:810 -#: src/Mollie/WC/Helper/Settings.php:810 -msgid "You have WooCommerce Subscriptions activated, but not SEPA Direct Debit. Enable SEPA Direct Debit if you want to allow customers to pay subscriptions with iDEAL and/or other \"first\" payment methods." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:834 -#: src/Mollie/WC/Helper/Settings.php:834 -msgid "You have the WooCommerce default Direct Bank Transfer (BACS) payment gateway enabled in WooCommerce. Mollie strongly advices only using Bank Transfer via Mollie and disabling the default WooCommerce BACS payment gateway to prevent possible conflicts." -msgstr "" - -#: build/src/Mollie/WC/Helper/Settings.php:855 -#: src/Mollie/WC/Helper/Settings.php:855 -msgid "You have activated Klarna. To accept payments, please make sure all default WooCommerce checkout fields are enabled and required. For more information, go to %1sKlarna Pay Later documentation%2s or %3sKlarna Slice it documentation%4s" -msgstr "" - -#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce version, placeholder 3: used WooCommerce version -#: build/src/Mollie/WC/Helper/Status.php:67 -#: src/Mollie/WC/Helper/Status.php:67 -msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin." -msgstr "" - -#: build/src/Mollie/WC/Helper/Status.php:80 -#: src/Mollie/WC/Helper/Status.php:80 -msgid "Mollie API client not installed. Please make sure the plugin is installed correctly." -msgstr "" - -#: build/src/Mollie/WC/Helper/Status.php:89 -#: src/Mollie/WC/Helper/Status.php:89 -msgid "Mollie Payments for WooCommerce requires the JSON extension for PHP. Enable it in your server or ask your webhoster to enable it for you." -msgstr "" - -#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP version -#: build/src/Mollie/WC/Helper/Status.php:104 -#: src/Mollie/WC/Helper/Status.php:104 -msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s" -msgstr "" - -#: build/src/Mollie/WC/Helper/Status.php:116 -#: src/Mollie/WC/Helper/Status.php:116 -msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration." -msgstr "" - -#: build/src/Mollie/WC/Helper/Status.php:123 -#: src/Mollie/WC/Helper/Status.php:123 -msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration." -msgstr "" - -#: build/src/Mollie/WC/Helper/Status.php:131 -#: src/Mollie/WC/Helper/Status.php:131 -msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:603 -#: src/Mollie/WC/Payment/Object.php:603 -msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:637 -#: src/Mollie/WC/Payment/Object.php:637 -msgid "%s payment failed via Mollie (%s)." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Object.php:677 -#: src/Mollie/WC/Payment/Object.php:677 -msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:262 -#: build/src/Mollie/WC/Payment/Payment.php:247 -#: src/Mollie/WC/Payment/Order.php:262 -#: src/Mollie/WC/Payment/Payment.php:247 -msgid "Order completed using %s payment (%s)." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:314 -#: src/Mollie/WC/Payment/Order.php:314 -msgid "Order authorized using %s payment (%s). Set order to completed in WooCommerce when you have shipped the products, to capture the payment. Do this within 28 days, or the order will expire. To handle individual order lines, process the order via the Mollie Dashboard." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:361 -#: src/Mollie/WC/Payment/Order.php:361 -msgid "Order completed at Mollie for %s order (%s). At least one order line completed. Remember: Completed status for an order at Mollie is not the same as Completed status in WooCommerce!" -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:444 -#: src/Mollie/WC/Payment/Order.php:444 -msgid "%s order (%s) cancelled ." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:509 -#: src/Mollie/WC/Payment/Order.php:509 -msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)." -msgstr "" - -#: build/src/Mollie/WC/Payment/Order.php:742 -#: src/Mollie/WC/Payment/Order.php:742 -msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie." -msgstr "" - -#: build/src/Mollie/WC/Payment/Order.php:758 -#: src/Mollie/WC/Payment/Order.php:758 -msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" - -#: build/src/Mollie/WC/Payment/Order.php:836 -#: src/Mollie/WC/Payment/Order.php:836 -msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Order.php:931 -#: src/Mollie/WC/Payment/Order.php:931 -msgid "%s order (%s) expired ." -msgstr "" - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109 -msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item." -msgstr "" - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157 -msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount." -msgstr "" - -#: build/src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183 -msgid "Empty WooCommerce order items or mollie order lines." -msgstr "" - -#. translators: Placeholder 1: order number -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: build/src/Mollie/WC/Payment/Payment.php:132 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:116 -#: src/Mollie/WC/Payment/Payment.php:132 -msgctxt "Payment description for {orderNumber}" -msgid "Order {orderNumber}" -msgstr "" - -#. translators: Placeholder 1: store name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: build/src/Mollie/WC/Payment/Payment.php:143 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:127 -#: src/Mollie/WC/Payment/Payment.php:143 -msgctxt "Payment description for {storeName}" -msgid "StoreName {storeName}" -msgstr "" - -#. translators: Placeholder 1: customer first name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: build/src/Mollie/WC/Payment/Payment.php:154 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:138 -#: src/Mollie/WC/Payment/Payment.php:154 -msgctxt "Payment description for {customer.firstname}" -msgid "Customer Firstname {customer.firstname}" -msgstr "" - -#. translators: Placeholder 1: customer last name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: build/src/Mollie/WC/Payment/Payment.php:165 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:149 -#: src/Mollie/WC/Payment/Payment.php:165 -msgctxt "Payment description for {customer.lastname}" -msgid "Customer Lastname {customer.lastname}" -msgstr "" - -#. translators: Placeholder 1: customer company name -#: build/src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: build/src/Mollie/WC/Payment/Payment.php:176 -#: src/Mollie/WC/Gateway/AbstractSubscription.php:160 -#: src/Mollie/WC/Payment/Payment.php:176 -msgctxt "Payment description for {customer.company}" -msgid "Customer Company {customer.company}" -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:334 -#: src/Mollie/WC/Payment/Payment.php:334 -msgid "%s payment (%s) cancelled ." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:404 -#: src/Mollie/WC/Payment/Payment.php:404 -msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Payment/Payment.php:427 -#: src/Mollie/WC/Payment/Payment.php:427 -msgid "%s payment expired (%s)." -msgstr "" - -#. translators: Placeholder 1: currency, placeholder 2: refunded amount, placeholder 3: optional refund reason, placeholder 4: payment ID, placeholder 5: refund ID -#: build/src/Mollie/WC/Payment/Payment.php:509 -#: src/Mollie/WC/Payment/Payment.php:509 -msgid "Refunded %s%s%s - Payment: %s, Refund: %s" -msgstr "" - -#: build/src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119 -msgid "Mollie doesn't allow a partial refund of the full amount or quantity of at least one order line. Trying to process this as an amount refund instead." -msgstr "" - -#. translators: Placeholder 1: payment method title, placeholder 2: payment ID -#: build/src/Mollie/WC/Plugin.php:128 -#: src/Mollie/WC/Plugin.php:128 -msgid "%s payment failed (%s)." -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:303 -#: src/Mollie/WC/Plugin.php:303 -msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production." -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:411 -#: build/src/Mollie/WC/Plugin.php:444 -#: build/src/Mollie/WC/Plugin.php:466 -#: src/Mollie/WC/Plugin.php:411 -#: src/Mollie/WC/Plugin.php:444 -#: src/Mollie/WC/Plugin.php:466 -msgid "Mollie Voucher Category" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:414 -#: build/src/Mollie/WC/Plugin.php:446 -#: build/src/Mollie/WC/Plugin.php:469 -#: src/Mollie/WC/Plugin.php:414 -#: src/Mollie/WC/Plugin.php:446 -#: src/Mollie/WC/Plugin.php:469 -msgid "--Please choose an option--" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:415 -#: build/src/Mollie/WC/Plugin.php:447 -#: build/src/Mollie/WC/Plugin.php:470 -#: build/src/Mollie/WC/Plugin.php:583 -#: src/Mollie/WC/Plugin.php:415 -#: src/Mollie/WC/Plugin.php:447 -#: src/Mollie/WC/Plugin.php:470 -#: src/Mollie/WC/Plugin.php:583 -msgid "No Category" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:416 -#: build/src/Mollie/WC/Plugin.php:448 -#: build/src/Mollie/WC/Plugin.php:471 -#: build/src/Mollie/WC/Plugin.php:584 -#: src/Mollie/WC/Plugin.php:416 -#: src/Mollie/WC/Plugin.php:448 -#: src/Mollie/WC/Plugin.php:471 -#: src/Mollie/WC/Plugin.php:584 -msgid "Meal" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:417 -#: build/src/Mollie/WC/Plugin.php:449 -#: build/src/Mollie/WC/Plugin.php:472 -#: build/src/Mollie/WC/Plugin.php:585 -#: src/Mollie/WC/Plugin.php:417 -#: src/Mollie/WC/Plugin.php:449 -#: src/Mollie/WC/Plugin.php:472 -#: src/Mollie/WC/Plugin.php:585 -msgid "Eco" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:418 -#: build/src/Mollie/WC/Plugin.php:450 -#: build/src/Mollie/WC/Plugin.php:473 -#: build/src/Mollie/WC/Plugin.php:586 -#: src/Mollie/WC/Plugin.php:418 -#: src/Mollie/WC/Plugin.php:450 -#: src/Mollie/WC/Plugin.php:473 -#: src/Mollie/WC/Plugin.php:586 -msgid "Gift" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:452 -#: build/src/Mollie/WC/Plugin.php:475 -#: src/Mollie/WC/Plugin.php:452 -#: src/Mollie/WC/Plugin.php:475 -msgid "Select a voucher category to apply to all products with this category" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:512 -#: src/Mollie/WC/Plugin.php:512 -msgid "Products voucher category" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:519 -#: build/src/Mollie/WC/Plugin.php:582 -#: src/Mollie/WC/Plugin.php:519 -#: src/Mollie/WC/Plugin.php:582 -msgid "Same as default category" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:529 -#: src/Mollie/WC/Plugin.php:529 -msgid "In order to process it, all products in the order must have a category. To disable the product from voucher selection select \"No category\" option." -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:579 -#: src/Mollie/WC/Plugin.php:579 -msgid "Mollie Voucher category" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:727 -#: src/Mollie/WC/Plugin.php:727 -msgid "%1$s items refunded in WooCommerce and at Mollie." -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:745 -#: src/Mollie/WC/Plugin.php:745 -msgid "%1$s items cancelled in WooCommerce and at Mollie." -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:919 -#: src/Mollie/WC/Plugin.php:919 -msgid "Name on card" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:923 -#: src/Mollie/WC/Plugin.php:923 -msgid "Card number" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:931 -#: src/Mollie/WC/Plugin.php:931 -msgid "CVC/CVV" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:938 -#: src/Mollie/WC/Plugin.php:938 -msgid "An unknown error occurred, please check the card fields." -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:1295 -#: src/Mollie/WC/Plugin.php:1295 -msgid "Mollie settings" -msgstr "" - -#: build/src/Mollie/WC/Plugin.php:1301 -#: src/Mollie/WC/Plugin.php:1301 -msgid "Logs" -msgstr "" - -#: build/src/Mollie/WC/Settings/Page/Mollie.php:138 -#: src/Mollie/WC/Settings/Page/Mollie.php:138 -msgid "General" -msgstr "" - -#: build/src/Mollie/WC/Settings/Page/Mollie.php:143 -#: src/Mollie/WC/Settings/Page/Mollie.php:143 -msgid "Apple Pay Button" -msgstr "" - -#: build/src/Mollie/WC/Settings/Page/Mollie.php:147 -#: src/Mollie/WC/Settings/Page/Mollie.php:147 -msgid "Advanced" -msgstr "" - -#: src/Mollie/WC/Gateway/Abstract.php:1987 -msgid "%1$s Secure payments provided by %2$s" -msgstr "" diff --git a/mollie-payments-for-woocommerce.php b/mollie-payments-for-woocommerce.php index 6604d55da..343d54af9 100644 --- a/mollie-payments-for-woocommerce.php +++ b/mollie-payments-for-woocommerce.php @@ -3,16 +3,16 @@ * Plugin Name: Mollie Payments for WooCommerce * Plugin URI: https://www.mollie.com * Description: Accept payments in WooCommerce with the official Mollie plugin - * Version: 7.3.3 + * Version: 7.3.4-beta1 * Author: Mollie * Author URI: https://www.mollie.com * Requires at least: 5.0 - * Tested up to: 6.0 + * Tested up to: 6.1 * Text Domain: mollie-payments-for-woocommerce * Domain Path: /languages * License: GPLv2 or later * WC requires at least: 3.0 - * WC tested up to: 6.9 + * WC tested up to: 7.0 * Requires PHP: 7.2 */ declare(strict_types=1); diff --git a/package.json b/package.json index 27c850a87..0b4c2e1d0 100644 --- a/package.json +++ b/package.json @@ -45,9 +45,10 @@ "minimist": "^1.2.3", "sass": "^1.52.1", "pump": "^3.0.0", - "sass-loader": "^7.0.1", + "sass-loader": "^7.0.1", "@woocommerce/e2e-utils": "^0.1.6", - "@wordpress/data": "^6.1.5" + "@wordpress/data": "^6.1.5", + "wp-pot": "^1.10.2" }, "scripts": { "watch": "webpack --watch", diff --git a/src/Activation/ConstraintsChecker.php b/src/Activation/ConstraintsChecker.php index 5e48d2334..d4a58c8e7 100644 --- a/src/Activation/ConstraintsChecker.php +++ b/src/Activation/ConstraintsChecker.php @@ -106,12 +106,11 @@ public function maybeShowWarning($constraint, $warning) protected function showNotice(array $errors) { - $message = '%1$sMollie Payments for WooCommerce is inactive:%2$s'; + $message = sprintf(__('%1$sMollie Payments for WooCommerce is inactive:%2$s', 'mollie-payments-for-woocommerce'), '

', '

'); foreach ($errors as $error) { $message .= sprintf('

%s

', $error); } - $message .= "

Correct the above errors to use Mollie Payments for Woocommerce

"; - $message = sprintf(__($message, 'mollie-payments-for-woocommerce'), '

', '

'); + $message .= sprintf(__('%1$sCorrect the above errors to use Mollie Payments for Woocommerce%2$s', 'mollie-payments-for-woocommerce'), '

', '

'); $errorLevel = 'notice-error'; $this->notice->addNotice($errorLevel, $message); } diff --git a/src/Buttons/ApplePayButton/AppleAjaxRequests.php b/src/Buttons/ApplePayButton/AppleAjaxRequests.php index db28a21c4..f94c0d8be 100644 --- a/src/Buttons/ApplePayButton/AppleAjaxRequests.php +++ b/src/Buttons/ApplePayButton/AppleAjaxRequests.php @@ -152,12 +152,7 @@ public function validateMerchant() } catch (\Mollie\Api\Exceptions\ApiException $apiException) { update_option('mollie_wc_applepay_validated', 'no'); $errorMessage = $apiException->getMessage(); - wp_send_json_error( - __( - $errorMessage, - 'mollie-payments-for-woocommerce' - ) - ); + wp_send_json_error($errorMessage); } update_option('mollie_wc_applepay_validated', 'yes'); diff --git a/src/Gateway/Surcharge.php b/src/Gateway/Surcharge.php index 5fe7ea866..e6e2b498c 100644 --- a/src/Gateway/Surcharge.php +++ b/src/Gateway/Surcharge.php @@ -232,7 +232,7 @@ protected function addMaxLimit(float $fee, array $gatewaySettings): float if (empty($gatewaySettings['surcharge_limit'])) { return $fee; } - $maxLimit = $gatewaySettings['surcharge_limit']; + $maxLimit = (float)$gatewaySettings['surcharge_limit']; if ($fee > $maxLimit) { return $maxLimit; } diff --git a/src/Gateway/Voucher/MaybeDisableGateway.php b/src/Gateway/Voucher/MaybeDisableGateway.php index d683ff4c7..192b0c6bb 100644 --- a/src/Gateway/Voucher/MaybeDisableGateway.php +++ b/src/Gateway/Voucher/MaybeDisableGateway.php @@ -95,7 +95,7 @@ public function numberProductsWithCategory() ); } //Check if mealvoucherSettings is an array as to prevent notice from being thrown for PHP 7.4 and up. - if (is_array($mealvoucherSettings)) { + if (is_array($mealvoucherSettings) && isset($mealvoucherSettings['mealvoucher_category_default'])) { $defaultCategory = $mealvoucherSettings['mealvoucher_category_default']; } else { $defaultCategory = false; diff --git a/src/Payment/MollieOrder.php b/src/Payment/MollieOrder.php index 59e6b58ab..c58272435 100644 --- a/src/Payment/MollieOrder.php +++ b/src/Payment/MollieOrder.php @@ -510,9 +510,17 @@ public function onWebhookExpired(WC_Order $order, $payment, $paymentMethodTitle) // Add messages to log $this->logger->debug(__METHOD__ . ' called for order ' . $orderId); + // Check that this order has not been marked paid already + if (!$order->needs_payment()) { + $this->logger->log( + LogLevel::DEBUG, + __METHOD__ . ' called for order ' . $orderId . ', not processed because the order is already paid.' + ); + return; + } // Check that this payment is the most recent, based on Mollie Payment ID from post meta, do not cancel the order if it isn't - if ($molliePaymentId != $payment->id) { + if ($molliePaymentId !== $payment->id) { $this->logger->debug(__METHOD__ . ' called for order ' . $orderId . ' and payment ' . $payment->id . ', not processed because of a newer pending payment ' . $molliePaymentId); $order->add_order_note(sprintf( diff --git a/src/Payment/MolliePayment.php b/src/Payment/MolliePayment.php index 8d3f562ef..1d1863133 100644 --- a/src/Payment/MolliePayment.php +++ b/src/Payment/MolliePayment.php @@ -365,11 +365,18 @@ public function onWebhookExpired(WC_Order $order, $payment, $paymentMethodTitle) // Add messages to log $this->logger->debug(__METHOD__ . ' called for order ' . $orderId); - // Get current gateway - $gateway = wc_get_payment_gateway_by_order($order); + // Check that this order has not been marked paid already + if (!$order->needs_payment()) { + $this->logger->log( + LogLevel::DEBUG, + __METHOD__ . ' called for order ' . $orderId . ', not processed because the order is already paid.' + ); + + return; + } // Check that this payment is the most recent, based on Mollie Payment ID from post meta, do not cancel the order if it isn't - if ($molliePaymentId != $payment->id) { + if ($molliePaymentId !== $payment->id) { $this->logger->debug(__METHOD__ . ' called for order ' . $orderId . ' and payment ' . $payment->id . ', not processed because of a newer pending payment ' . $molliePaymentId); $order->add_order_note(sprintf( @@ -385,7 +392,8 @@ public function onWebhookExpired(WC_Order $order, $payment, $paymentMethodTitle) // New order status $newOrderStatus = MolliePaymentGateway::STATUS_CANCELLED; - + //Get current gateway + $gateway = wc_get_payment_gateway_by_order($order); // Overwrite plugin-wide $newOrderStatus = apply_filters($this->pluginId . '_order_status_expired', $newOrderStatus); @@ -489,13 +497,13 @@ public function refund(\WC_Order $order, $orderId, $paymentObject, $amount = nul /** * @param WC_Order $order - * @param MolliePaymentGateway $gateway + * @param WC_Payment_Gateway|bool $gateway * @param $newOrderStatus * @param $orderId */ protected function maybeUpdateStatus( WC_Order $order, - MolliePaymentGateway $gateway, + $gateway, $newOrderStatus, $orderId ) { diff --git a/src/Payment/OrderLines.php b/src/Payment/OrderLines.php index 727194be3..3e7c88745 100644 --- a/src/Payment/OrderLines.php +++ b/src/Payment/OrderLines.php @@ -202,7 +202,7 @@ private function process_fees() $cart_fee_tax_amount = $cart_fee['total_tax']; $cart_fee_total = ( $cart_fee['total'] + $cart_fee['total_tax'] ); /*This is the equation Mollie uses to validate our input*/ - $validTax = $cart_fee_total * ($cart_fee_vat_rate / (100 + $cart_fee_vat_rate)) === (float) $cart_fee_tax_amount; + $validTax = ($cart_fee_total * ($cart_fee_vat_rate / (100 + $cart_fee_vat_rate))) === (float) $cart_fee_tax_amount || $cart_fee_total === 0; if (!$validTax) { /*inverse of the equation Mollie uses to validate our input, so we don't fail when cart has mixed taxes*/ diff --git a/src/PaymentMethods/Ideal.php b/src/PaymentMethods/Ideal.php index ba03c2015..c63cf601b 100644 --- a/src/PaymentMethods/Ideal.php +++ b/src/PaymentMethods/Ideal.php @@ -35,9 +35,7 @@ public function getFormFields($generalFormFields): array 'type' => 'checkbox', 'description' => sprintf( __( - 'If you disable this, a dropdown with various iDEAL banks - will not be shown in the WooCommerce checkout, - so users will select a iDEAL bank on the Mollie payment page after checkout.', + 'If you disable this, a dropdown with various iDEAL banks will not be shown in the WooCommerce checkout, so users will select a iDEAL bank on the Mollie payment page after checkout.', 'mollie-payments-for-woocommerce' ), $this->getConfig()['defaultTitle'] @@ -49,9 +47,7 @@ public function getFormFields($generalFormFields): array 'type' => 'text', 'description' => sprintf( __( - 'This text will be displayed as the first option in the iDEAL issuers drop down, - if nothing is entered, "Select your bank" will be shown. Only if the above - \'Show iDEAL banks dropdown\' is enabled.', + 'This text will be displayed as the first option in the iDEAL issuers drop down, if nothing is entered, "Select your bank" will be shown. Only if the above \'Show iDEAL banks dropdown\' is enabled.', 'mollie-payments-for-woocommerce' ), $this->getConfig()['defaultTitle'] diff --git a/src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php b/src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php index 5b2d0232f..2976f21fd 100644 --- a/src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php +++ b/src/PaymentMethods/InstructionStrategies/ApplepayInstructionStrategy.php @@ -16,15 +16,15 @@ public function execute( if ($payment->isPaid() && $payment->details) { return - __( - /* translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID */ - sprintf( + sprintf( + __( + /* translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal email, placeholder 3: PayPal transaction ID */ 'Payment completed by %1$s - %2$s (Apple Pay transaction ID: %3$s)', - $payment->details->consumerName, - $payment->details->consumerAccount, - $payment->details->paypalReference + 'mollie-payments-for-woocommerce' ), - 'mollie-payments-for-woocommerce' + $payment->details->consumerName, + $payment->details->consumerAccount, + $payment->details->paypalReference ); } $defaultStrategy = new DefaultInstructionStrategy(); diff --git a/src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php b/src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php index 862f058e0..8a8fc5a41 100644 --- a/src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php +++ b/src/PaymentMethods/InstructionStrategies/DefaultInstructionStrategy.php @@ -24,8 +24,7 @@ public function execute( } else { // Message to customer return __( - 'We have not received a definite payment status. You will receive an email - as soon as we receive a confirmation of the bank/merchant.', + 'We have not received a definite payment status. You will receive an email as soon as we receive a confirmation of the bank/merchant.', 'mollie-payments-for-woocommerce' ); } diff --git a/src/PaymentMethods/Klarnapaylater.php b/src/PaymentMethods/Klarnapaylater.php index a43ae3f7a..99140ba4a 100644 --- a/src/PaymentMethods/Klarnapaylater.php +++ b/src/PaymentMethods/Klarnapaylater.php @@ -12,8 +12,7 @@ protected function getConfig(): array 'id' => 'klarnapaylater', 'defaultTitle' => __('Klarna Pay later', 'mollie-payments-for-woocommerce'), 'settingsDescription' => __( - 'To accept payments via Klarna, all default WooCommerce checkout fields - should be enabled and required.', + 'To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required.', 'mollie-payments-for-woocommerce' ), 'defaultDescription' => '', diff --git a/src/PaymentMethods/PaymentFieldsStrategies/IssuersDropdownBehavior.php b/src/PaymentMethods/PaymentFieldsStrategies/IssuersDropdownBehavior.php index 81b3c0f51..a4e24fed7 100644 --- a/src/PaymentMethods/PaymentFieldsStrategies/IssuersDropdownBehavior.php +++ b/src/PaymentMethods/PaymentFieldsStrategies/IssuersDropdownBehavior.php @@ -71,9 +71,7 @@ public function dropdownOptions( 'issuers_empty_option' ) ?: $gateway->paymentMethod->getProperty('defaultDescription'); - $html = ''; + $html = ''; foreach ($issuers as $issuer) { $html .= '