Version Description
14-09-2021 =
Feature - Surcharge fee UI/UX improvements
Fix - Select the correct payment when two subscription have the same payment method
Fix - Remove obsolete MisterCash payment method
Fix - Apple Pay button not updated on variable products
Fix - PayPal button unresponsive on cart page
Fix - Added missing translations
Fix - Scheduled actions triggered with disabled feature
Fix - Removed obsolete restore subscriptions tool
Fix - Typo on PayPal settings
Download this release
Release Info
Developer | carmen222 |
Plugin | Mollie Payments for WooCommerce |
Version | 6.6.0 |
Comparing to | |
See all releases |
Code changes from version 6.5.2 to 6.6.0
- inc/settings/mollie_advanced_settings.php +16 -0
- inc/settings/mollie_paypal_button_enabler.php +1 -1
- inc/utils.php +18 -0
- languages/mollie-payments-for-woocommerce-de_DE.mo +0 -0
- languages/mollie-payments-for-woocommerce-de_DE.po +925 -293
- languages/mollie-payments-for-woocommerce-de_DE_formal.mo +0 -0
- languages/mollie-payments-for-woocommerce-de_DE_formal.po +917 -285
- languages/mollie-payments-for-woocommerce-es_ES.mo +0 -0
- languages/mollie-payments-for-woocommerce-es_ES.po +918 -286
- languages/mollie-payments-for-woocommerce-fr_FR.mo +0 -0
- languages/mollie-payments-for-woocommerce-fr_FR.po +939 -307
- languages/mollie-payments-for-woocommerce-it_IT.mo +0 -0
- languages/mollie-payments-for-woocommerce-it_IT.po +948 -316
- languages/mollie-payments-for-woocommerce-nl_BE.mo +0 -0
- languages/mollie-payments-for-woocommerce-nl_BE.po +938 -306
- languages/mollie-payments-for-woocommerce-nl_BE_formal.mo +0 -0
- languages/mollie-payments-for-woocommerce-nl_BE_formal.po +1862 -0
- languages/mollie-payments-for-woocommerce-nl_NL.mo +0 -0
- languages/mollie-payments-for-woocommerce-nl_NL.po +989 -360
- languages/mollie-payments-for-woocommerce-nl_NL_formal.mo +0 -0
- languages/mollie-payments-for-woocommerce-nl_NL_formal.po +956 -327
- mollie-payments-for-woocommerce.php +2 -4
- public/js/applepayDirect.min.js +1 -1
- public/js/babel-polyfill.min.js +1 -1
inc/settings/mollie_advanced_settings.php
CHANGED
@@ -129,6 +129,22 @@ return [
|
|
129 |
'</p>'
|
130 |
)
|
131 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
[
|
133 |
'id' => $pluginName . '_' .'sectionend',
|
134 |
'type' => 'sectionend',
|
129 |
'</p>'
|
130 |
)
|
131 |
],
|
132 |
+
[
|
133 |
+
'id' => $pluginName . '_' . 'gatewayFeeLabel',
|
134 |
+
'title' => __(
|
135 |
+
'Surcharge gateway fee label',
|
136 |
+
'mollie-payments-for-woocommerce'
|
137 |
+
),
|
138 |
+
'type' => 'text',
|
139 |
+
'custom_attributes'=>['maxlength'=>'30'],
|
140 |
+
'default' => __('Gateway Fee', 'mollie-payments-for-woocommerce'),
|
141 |
+
'desc' => sprintf(
|
142 |
+
__(
|
143 |
+
'This is the label will appear in frontend when the surcharge applies',
|
144 |
+
'mollie-payments-for-woocommerce'
|
145 |
+
)
|
146 |
+
)
|
147 |
+
],
|
148 |
[
|
149 |
'id' => $pluginName . '_' .'sectionend',
|
150 |
'type' => 'sectionend',
|
inc/settings/mollie_paypal_button_enabler.php
CHANGED
@@ -5,7 +5,7 @@ return [
|
|
5 |
[
|
6 |
'id' => $pluginName . '_' . 'title',
|
7 |
'title' => __(
|
8 |
-
'
|
9 |
'mollie-payments-for-woocommerce'
|
10 |
),
|
11 |
'type' => 'title',
|
5 |
[
|
6 |
'id' => $pluginName . '_' . 'title',
|
7 |
'title' => __(
|
8 |
+
'PayPal button display settings',
|
9 |
'mollie-payments-for-woocommerce'
|
10 |
),
|
11 |
'type' => 'title',
|
inc/utils.php
CHANGED
@@ -268,4 +268,22 @@ function mollieWooCommerceIsMollieGateway($gateway)
|
|
268 |
return false;
|
269 |
}
|
270 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
|
268 |
return false;
|
269 |
}
|
270 |
|
271 |
+
function mollieWooCommercIsExpiryDateEnabled()
|
272 |
+
{
|
273 |
+
global $wpdb;
|
274 |
+
$option = 'mollie_wc_gateway_%_settings';
|
275 |
+
$gatewaySettings = $wpdb->get_results($wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name LIKE %s", $option));
|
276 |
+
$expiryDateEnabled = false;
|
277 |
+
foreach($gatewaySettings as $gatewaySetting){
|
278 |
+
$values = unserialize($gatewaySetting->option_value);
|
279 |
+
if($values['enabled'] !== 'yes'){
|
280 |
+
continue;
|
281 |
+
}
|
282 |
+
if (!empty($values["activate_expiry_days_setting"]) && $values["activate_expiry_days_setting"] === 'yes'){
|
283 |
+
$expiryDateEnabled = true;
|
284 |
+
}
|
285 |
+
}
|
286 |
+
return $expiryDateEnabled;
|
287 |
+
}
|
288 |
+
|
289 |
|
languages/mollie-payments-for-woocommerce-de_DE.mo
CHANGED
Binary file
|
languages/mollie-payments-for-woocommerce-de_DE.po
CHANGED
@@ -1,33 +1,695 @@
|
|
1 |
-
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2021-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
-
"Language:
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
|
14 |
-
#: src/Mollie/WC/Plugin.php:
|
15 |
-
msgid "
|
16 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
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."
|
20 |
-
msgstr "Um
|
21 |
|
22 |
-
#: src/Mollie/WC/Plugin.php:
|
23 |
msgid "Products voucher category"
|
24 |
-
msgstr "
|
25 |
|
26 |
-
#: src/Mollie/WC/Plugin.php:
|
27 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
28 |
-
msgstr "%1$sMollie-Zahlungen für WooCommerce%2$s
|
29 |
|
30 |
-
#: src/Mollie/WC/Plugin.php:
|
|
|
31 |
msgid "Mollie Settings"
|
32 |
msgstr "Mollie-Einstellungen"
|
33 |
|
@@ -43,49 +705,43 @@ msgstr "Gutschein"
|
|
43 |
|
44 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
45 |
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"
|
46 |
-
msgstr "Um
|
47 |
|
48 |
-
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:
|
49 |
msgid "Select the default products category"
|
50 |
-
msgstr "
|
51 |
|
52 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
53 |
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"
|
54 |
-
msgstr "Aktiviere diese Option,
|
55 |
|
56 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
57 |
msgid "Enable expiry date for payments"
|
58 |
msgstr "Ablaufdatum für Zahlungen aktivieren"
|
59 |
|
60 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
61 |
msgid "Activate expiry date setting"
|
62 |
-
msgstr "
|
63 |
|
64 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
65 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
66 |
msgid " Remainder: %1$s %2$s %3$s."
|
67 |
msgstr " Verbleibend: %1$s %2$s %3$s."
|
68 |
|
69 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
70 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
71 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
72 |
-
msgstr "
|
73 |
-
|
74 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:7
|
75 |
-
msgid "Enable the Apple Pay direct buy button"
|
76 |
-
msgstr "Direktkaufbutton von Apple Pay aktivieren"
|
77 |
-
|
78 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
79 |
-
msgid "Enable Apple Pay Button"
|
80 |
-
msgstr "Kaufbutton von Apple Pay aktivieren"
|
81 |
|
82 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
83 |
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"
|
84 |
-
msgstr "%1$sValidierungsfehler
|
85 |
|
86 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
87 |
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"
|
88 |
-
msgstr "%1$
|
89 |
|
90 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
91 |
msgid "Show Mastercard Icon"
|
@@ -94,7 +750,7 @@ msgstr "Mastercard-Symbol anzeigen"
|
|
94 |
#: inc/settings/mollie_components.php:94
|
95 |
msgctxt "Mollie Components Settings"
|
96 |
msgid "Transform Text "
|
97 |
-
msgstr "Text
|
98 |
|
99 |
#: inc/settings/mollie_components.php:82
|
100 |
msgctxt "Mollie Components Settings"
|
@@ -104,7 +760,7 @@ msgstr "Text ausrichten"
|
|
104 |
#: inc/settings/mollie_components.php:72
|
105 |
msgctxt "Mollie Components Settings"
|
106 |
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
107 |
-
msgstr "
|
108 |
|
109 |
#: inc/settings/mollie_components.php:35
|
110 |
msgctxt "Mollie Components Settings"
|
@@ -137,28 +793,24 @@ msgstr "American-Express-Symbol anzeigen"
|
|
137 |
|
138 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
139 |
msgid "Show customized creditcard icons on checkout page"
|
140 |
-
msgstr "
|
141 |
|
142 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
143 |
msgid "Enable Icons Selector"
|
144 |
-
msgstr "
|
145 |
|
146 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
147 |
msgid "Customize Icons"
|
148 |
msgstr "Symbole personalisieren"
|
149 |
|
150 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
151 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
152 |
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)."
|
153 |
-
msgstr "%1$s-
|
154 |
|
155 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
156 |
msgid "Failed switching subscriptions, no valid mandate."
|
157 |
-
msgstr "
|
158 |
-
|
159 |
-
#: inc/settings/mollie_components_enabler.php:7
|
160 |
-
msgid "Enable the Mollie Components for this Gateway"
|
161 |
-
msgstr "Mollie-Komponenten für dieses Portal aktivieren"
|
162 |
|
163 |
#: inc/settings/mollie_components_enabler.php:6
|
164 |
msgid "Enable Mollie Components"
|
@@ -289,35 +941,37 @@ msgctxt "Mollie Components Settings"
|
|
289 |
msgid "Base Styles"
|
290 |
msgstr "Basisformat"
|
291 |
|
292 |
-
#: src/Mollie/WC/Plugin.php:
|
293 |
msgid "An unknown error occurred, please check the card fields."
|
294 |
msgstr "Ein unbekannter Fehler ist aufgetreten, bitte überprüfe die Kartenfelder."
|
295 |
|
296 |
-
#: src/Mollie/WC/Plugin.php:
|
297 |
msgid "Verification Code"
|
298 |
msgstr "Kartenprüfnummer"
|
299 |
|
300 |
-
#: src/Mollie/WC/Plugin.php:
|
301 |
msgid "Expiry Date"
|
302 |
msgstr "Ablaufdatum"
|
303 |
|
304 |
-
#: src/Mollie/WC/Plugin.php:
|
305 |
msgid "Card Number"
|
306 |
msgstr "Kartennummer"
|
307 |
|
308 |
-
#: src/Mollie/WC/Plugin.php:
|
309 |
msgid "Card Holder"
|
310 |
msgstr "Karteninhaber"
|
311 |
|
|
|
312 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
|
|
313 |
msgid "Mollie Components"
|
314 |
msgstr "Mollie-Komponenten"
|
315 |
|
316 |
-
#: src/Mollie/WC/Plugin.php:
|
317 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
318 |
msgstr "%1$s stornierte Artikel bei WooCommerce und Mollie."
|
319 |
|
320 |
-
#: src/Mollie/WC/Plugin.php:
|
321 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
322 |
msgstr "%1$s erstattete Artikel bei WooCommerce und Mollie."
|
323 |
|
@@ -327,18 +981,18 @@ msgstr "Leere WooCommerce-Auftragspositionen oder Mollie-Auftragszeilen."
|
|
327 |
|
328 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
329 |
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
330 |
-
msgstr "Die Auftragspositions-ID zum folgenden Remote-Artikel konnte nicht abgerufen werden: %1$s.
|
331 |
|
332 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
333 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
334 |
msgstr "Eine der WooCommerce-Auftragspositionen stimmt nicht mit dem entsprechenden Metawert für die ID des Rückerstattungsartikels der Mollie-Auftragsposition überein."
|
335 |
|
336 |
-
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:
|
337 |
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."
|
338 |
msgstr "Mollie erlaubt keine teilweise Rückerstattung des vollen Betrags oder der vollen Menge mindestens einer Auftragszeile."
|
339 |
|
340 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
341 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:
|
342 |
msgid "Order completed using %1$s payment (%2$s)."
|
343 |
msgstr "Vorgang über %1$s-Bezahlung (%2$s) erfolgt."
|
344 |
|
@@ -375,39 +1029,34 @@ msgstr "Um Bezahlungen über Przelewy24 zu akzeptieren, wird für jede Bezahlung
|
|
375 |
|
376 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
377 |
msgid "Przelewy24"
|
378 |
-
msgstr "Przelewy24"
|
379 |
|
380 |
-
#:
|
381 |
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."
|
382 |
msgstr "Mollie Payments for WooCommerce benötigt die JSON-Erweiterung für PHP. Schalte sie auf deinem Server frei oder bitte deinen Hosting-Anbieter, sie freizuschalten."
|
383 |
|
384 |
-
#: src/Mollie/WC/Payment/Order.php:
|
385 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
386 |
-
msgstr "Erstattungsbetrag von %s erstatteten %s bei WooCommerce und Mollie.%s Erstattungs-ID: %s."
|
387 |
|
388 |
-
#: src/Mollie/WC/Payment/Order.php:
|
389 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
390 |
-
msgstr "%sx %s erstattet für %s%s bei WooCommerce und Mollie.%s Erstattungs-ID: %s."
|
391 |
|
392 |
-
#: src/Mollie/WC/Payment/Order.php:
|
393 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
394 |
-
msgstr "%sx %s storniert für %s%s bei WooCommerce und Mollie."
|
395 |
|
396 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
397 |
-
#: src/Mollie/WC/Payment/Order.php:
|
398 |
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!"
|
399 |
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."
|
400 |
|
401 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
402 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
403 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
404 |
msgstr "%s-Zahlung über Mollie zurückgebucht (%s). Abonnementstatus aktualisiert, bitte prüfen (und, falls verwendet, Produktbestände anpassen)."
|
405 |
|
406 |
-
#: src/Mollie/WC/Helper/Settings.php:623
|
407 |
-
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
408 |
-
msgstr "Um Klarna-Bezahlungen über Mollie zu akzeptieren, müssen alle standardmäßigen Felder im WooCommerce-Bezahlvorgang aktiviert und verpflichtend sein. Bitte prüfen."
|
409 |
-
|
410 |
-
#: src/Mollie/WC/Payment/Payment.php:39
|
411 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
412 |
msgid "Order"
|
413 |
msgstr "Bestellung"
|
@@ -418,42 +1067,38 @@ msgid "%s payment (%s) cancelled ."
|
|
418 |
msgstr "%s-Bezahlvorgang (%s) abgebrochen."
|
419 |
|
420 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
421 |
-
#: src/Mollie/WC/Payment/Order.php:
|
422 |
msgid "%s order (%s) expired ."
|
423 |
msgstr "%s-Bestellung (%s) abgelaufen."
|
424 |
|
425 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
426 |
-
#: src/Mollie/WC/Payment/Order.php:
|
427 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
428 |
msgstr "%s-Bestellung (%s) abgelaufen, wegen einer weiteren offenen Zahlung (%s) jedoch nicht abgebrochen."
|
429 |
|
430 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
431 |
-
#: src/Mollie/WC/Payment/Order.php:
|
432 |
msgid "%s order (%s) cancelled ."
|
433 |
msgstr "%s-Bestellung (%s) abgebrochen."
|
434 |
|
435 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
436 |
-
#: src/Mollie/WC/Payment/Order.php:
|
437 |
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."
|
438 |
-
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."
|
439 |
-
|
440 |
-
#: src/Mollie/WC/Helper/Settings.php:648
|
441 |
-
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
442 |
-
msgstr "Um Klarna-Bezahlungen über Mollie zu akzeptieren, benötigst du mindestens Version 3.0 von WooCommerce. Du verwendest aktuell Version %s."
|
443 |
|
444 |
-
#:
|
445 |
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."
|
446 |
-
msgstr "
|
447 |
|
448 |
-
#:
|
449 |
msgid "Automatically send WordPress language"
|
450 |
msgstr "WordPress-Sprache automatisch übermitteln"
|
451 |
|
452 |
-
#:
|
453 |
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."
|
454 |
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."
|
455 |
|
456 |
-
#: src/Mollie/WC/Helper/OrderLines.php:
|
457 |
msgid "Shipping"
|
458 |
msgstr "Versand"
|
459 |
|
@@ -472,85 +1117,85 @@ msgstr "Klarna Pay later"
|
|
472 |
|
473 |
#: src/Mollie/WC/Helper/Status.php:131
|
474 |
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
475 |
-
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."
|
476 |
|
477 |
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
478 |
#. version
|
479 |
#: src/Mollie/WC/Helper/Status.php:104
|
480 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
481 |
-
msgstr "Für Mollie-Zahlungen für WooCommerce wird mindestens PHP %s benötigt. Du verwendest PHP %s. Bitte aktualisiere PHP und beachte
|
482 |
|
483 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
484 |
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."
|
485 |
-
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."
|
486 |
|
487 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
488 |
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."
|
489 |
-
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."
|
490 |
|
491 |
-
#:
|
492 |
msgid "Lithuanian"
|
493 |
msgstr "Litauisch"
|
494 |
|
495 |
-
#:
|
496 |
msgid "Latvian"
|
497 |
msgstr "Lettisch"
|
498 |
|
499 |
-
#:
|
500 |
msgid "Polish"
|
501 |
msgstr "Polnisch"
|
502 |
|
503 |
-
#:
|
504 |
msgid "Hungarian"
|
505 |
msgstr "Ungarisch"
|
506 |
|
507 |
-
#:
|
508 |
msgid "Icelandic"
|
509 |
msgstr "Isländisch"
|
510 |
|
511 |
-
#:
|
512 |
msgid "Danish"
|
513 |
msgstr "Dänisch"
|
514 |
|
515 |
-
#:
|
516 |
msgid "Finnish"
|
517 |
msgstr "Finnisch"
|
518 |
|
519 |
-
#:
|
520 |
msgid "Swedish"
|
521 |
msgstr "Schwedisch"
|
522 |
|
523 |
-
#:
|
524 |
msgid "Norwegian"
|
525 |
msgstr "Norwegisch"
|
526 |
|
527 |
-
#:
|
528 |
msgid "Italian"
|
529 |
msgstr "Italienisch"
|
530 |
|
531 |
-
#:
|
532 |
msgid "Portuguese"
|
533 |
msgstr "Portugiesisch"
|
534 |
|
535 |
-
#:
|
536 |
msgid "Catalan"
|
537 |
msgstr "Katalanisch"
|
538 |
|
539 |
-
#:
|
540 |
msgid "Swiss German"
|
541 |
msgstr "Deutsch (Schweiz)"
|
542 |
|
543 |
-
#:
|
544 |
msgid "Austrian German"
|
545 |
msgstr "Deutsch (Österreich)"
|
546 |
|
547 |
-
#: src/Mollie/WC/Helper/Api.php:
|
548 |
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."
|
549 |
-
msgstr "Ungültige(r) API-Schlüssel. Du erhältst die API-Schlüssel über die %
|
550 |
|
551 |
-
#: src/Mollie/WC/Helper/Api.php:
|
552 |
msgid "No API key provided. Please set your Mollie API keys below."
|
553 |
-
msgstr "Kein API-Schlüssel vorgegeben. Lege
|
554 |
|
555 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
556 |
msgid "Giropay"
|
@@ -561,66 +1206,56 @@ msgid "EPS"
|
|
561 |
msgstr "EPS"
|
562 |
|
563 |
#. translators: Placeholder 1: Payment method title
|
564 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
565 |
msgid "Could not create %s renewal payment."
|
566 |
-
msgstr "Erneute %s-Zahlung konnte nicht erstellt werden."
|
567 |
|
568 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
569 |
msgid "The customer (%s) does not have a valid mandate."
|
570 |
msgstr "Der Kunde (%s) hat kein gültiges Mandat."
|
571 |
|
572 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
573 |
msgid "The customer (%s) could not be used or found. "
|
574 |
msgstr "Der Kunde (%s) konnte nicht verwendet oder gefunden werden."
|
575 |
|
576 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
577 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
578 |
#. placeholder 5: refund ID
|
579 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
580 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
581 |
msgstr "Rückerstattung %s%s%s – Zahlung: %s, Rückerstattung: %s"
|
582 |
|
583 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
584 |
-
#: src/Mollie/WC/Payment/
|
585 |
msgid "%s payment failed via Mollie (%s)."
|
586 |
msgstr "%s-Bezahlung über Mollie fehlgeschlagen (%s)."
|
587 |
|
588 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
589 |
msgid "New chargeback %s processed! Order note and order status updated."
|
590 |
msgstr "Neue Rückbuchung %s erfasst. Bestellungsnotiz und Status aktualisiert."
|
591 |
|
592 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
593 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
594 |
msgstr "Neue Rückerstattung %s im Mollie-Dashboard verarbeitet. Bestellungsnotiz hinzugefügt, Bestellung jedoch nicht aktualisiert."
|
595 |
|
596 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
597 |
#. Mollie currencies
|
598 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
599 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
600 |
-
msgstr "Die aktuelle Shopwährung %s wird von Mollie nicht unterstützt. %sMehr Informationen zu unterstützten Währungen und Bezahlungsmethoden
|
601 |
-
|
602 |
-
#: mollie-payments-for-woocommerce.php:138
|
603 |
-
msgid "Mollie Payments for WooCommerce 4.0 requires PHP 5.6 or higher. Your PHP version is outdated. Upgrade your PHP version and view %sthis FAQ%s."
|
604 |
-
msgstr "Für Mollie-Zahlungen für WooCommerce 4.0 und höher wird mindestens PHP 5.6 benötigt. Deine PHP-Version ist veraltet. Bitte aktualisiere deine PHP-Version und beachte diese %shäufig gestellten Fragen%s."
|
605 |
|
606 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
607 |
-
#: src/Mollie/WC/Payment/
|
608 |
-
#: src/Mollie/WC/Payment/Payment.php:328 src/Mollie/WC/Payment/Payment.php:491
|
609 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
610 |
-
msgstr "Der Mollie-WebHook wurde aufgerufen, die Zahlung wurde jedoch gleichzeitig über %s gestartet. Der Bestellstatus wird deshalb nicht aktualisiert."
|
611 |
-
|
612 |
-
#. translators: Placeholder 1: enabled or disabled
|
613 |
-
#: src/Mollie/WC/Helper/Settings.php:465
|
614 |
-
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
615 |
-
msgstr "Soll Mollie den Namen und die E-Mail-Adresse des Kunden für Single-Click-Bezahlungen speichern? Standard: <code>%s</code>. Verpflichtend bei Verwendung von WooCommerce Subscriptions."
|
616 |
|
617 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
618 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
619 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
620 |
-
msgstr "Deine Zahlung war nicht erfolgreich. Vervollständige deine Bestellung bitte mit einer anderen Zahlungsmethode."
|
621 |
|
622 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
623 |
-
#: src/Mollie/WC/Payment/
|
624 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
625 |
msgstr "Erneute %s-Zahlung über Mollie fehlgeschlagen (%s). Du musst die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen."
|
626 |
|
@@ -630,24 +1265,20 @@ msgid "Bancontact"
|
|
630 |
msgstr "Bancontact"
|
631 |
|
632 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
633 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
634 |
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."
|
635 |
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."
|
636 |
|
637 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
638 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
639 |
msgstr "Abonnement-Umstellung fehlgeschlagen, kein valides Mandat gefunden. Leite einen neuen Bestellvorgang ein, um dein Abonnement zu ändern."
|
640 |
|
641 |
-
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
642 |
-
msgid "ING Home'Pay"
|
643 |
-
msgstr "ING Home'Pay"
|
644 |
-
|
645 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
646 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
647 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
648 |
msgstr "%s-Zahlung über Mollie zurückgebucht (%s). Du musst die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen."
|
649 |
|
650 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
651 |
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."
|
652 |
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."
|
653 |
|
@@ -663,15 +1294,15 @@ msgstr "Drop-down-Liste für KBC/CBC-Banken anzeigen"
|
|
663 |
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."
|
664 |
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."
|
665 |
|
666 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
667 |
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."
|
668 |
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."
|
669 |
|
670 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
671 |
msgid "Show iDEAL banks dropdown"
|
672 |
msgstr "Drop-down-Liste für iDEAL-Banken anzeigen"
|
673 |
|
674 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
675 |
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."
|
676 |
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."
|
677 |
|
@@ -683,97 +1314,89 @@ msgstr "Wenn du die Option deaktivieren, wird die Drop-down-Liste mit verschiede
|
|
683 |
msgid "Show gift cards dropdown"
|
684 |
msgstr "Drop-down-Liste für Geschenkkarten anzeigen"
|
685 |
|
686 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
687 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
688 |
msgstr "Die Bestellung wurde wegen eines bestehenden, gültigen Mandats bei Mollie intern abgewickelt."
|
689 |
|
690 |
-
#:
|
691 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s This version requires WooCommerce 2.2 or newer. Please %3$supdate WooCommerce to version 2.2 or newer »%4$s"
|
692 |
-
msgstr "%1$sMollie-Zahlungen für WooCommerce sind nicht aktiviert.%2$s Du benötigst dafür die WooCommerce-Version 2.2 oder höher. Bitte %3$saktualisiere WooCommerce auf Version 2.2 oder höher »%4$s"
|
693 |
-
|
694 |
-
#: mollie-payments-for-woocommerce.php:164
|
695 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for it to work. Please %5$sinstall & activate WooCommerce »%6$s"
|
696 |
-
msgstr "%1$sMollie-Zahlungen für WooCommerce sind nicht aktiviert.%2$s Das %3$sWooCommerce-Plugin%4$s muss aktiviert sein, damit Mollie-Zahlungen funktionieren. Bitte %5$sinstalliere und aktiviere WooCommerce »%6$s"
|
697 |
-
|
698 |
-
#: src/Mollie/WC/Helper/Settings.php:414
|
699 |
msgid "Cancelled"
|
700 |
msgstr "Storniert"
|
701 |
|
702 |
-
#:
|
703 |
msgid "Pending"
|
704 |
msgstr "Offen"
|
705 |
|
706 |
-
#:
|
707 |
msgid "Order status after cancelled payment"
|
708 |
msgstr "Bestellstatus nach stornierter Zahlung"
|
709 |
|
710 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
711 |
#. placeholder 3: consumer BIC
|
|
|
|
|
712 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
713 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:185
|
714 |
-
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:121
|
715 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
716 |
msgstr "Zahlung durch <strong>%s</strong> erfolgt (IBAN (letzte 4 Ziffern): %s, BIC: %s)"
|
717 |
|
718 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
719 |
msgid "Your order has been cancelled."
|
720 |
msgstr "Deine Bestellung wurde storniert."
|
721 |
|
722 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
723 |
msgid ", payment pending."
|
724 |
msgstr ", Zahlung ausstehend"
|
725 |
|
726 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
727 |
msgid "Order cancelled"
|
728 |
msgstr "Bestellung storniert"
|
729 |
|
730 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
731 |
#. status, placeholder 3: payment ID
|
732 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
733 |
msgid "%s payment %s (%s), not processed."
|
734 |
msgstr "%s-Zahlung %s (%s), nicht verarbeitet."
|
735 |
|
736 |
#. translators: Default gift card dropdown description, displayed above issuer
|
737 |
#. drop down
|
738 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
739 |
msgid "Select your gift card"
|
740 |
msgstr "Wähle deine Geschenkkarte aus"
|
741 |
|
742 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
743 |
msgid "Gift cards"
|
744 |
msgstr "Geschenkkarten"
|
745 |
|
746 |
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
747 |
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."
|
748 |
-
msgstr "Für wiederkehrende Zahlungen mit WooCommerce Subscriptions werden SEPA-Direktmandate verwendet. Diese werden nicht im WooCommerce-Bezahlvorgang für reguläre Zahlungen angezeigt
|
749 |
|
750 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
751 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
752 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
753 |
msgstr "Das Abonnement wird von ‚ausstehend‘ auf ‚aktiv‘ aktualisiert, bis die Zahlung fehlschlägt, da SEPA-Direktmandate etwas Zeit in Anspruch nehmen."
|
754 |
|
755 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
756 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
757 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
758 |
-
msgstr "%s-
|
759 |
|
760 |
-
#: src/subscriptions_status_check_functions.php:
|
761 |
msgid "There are still some subscriptions left, use the tool again!"
|
762 |
msgstr "Es sind noch Abonnements übrig, verwende das Tool erneut."
|
763 |
|
764 |
-
#: src/subscriptions_status_check_functions.php:
|
765 |
msgid "No more subscriptions left to process!"
|
766 |
msgstr "Keine zu verarbeitenden Abonnements übrig."
|
767 |
|
768 |
-
#: src/subscriptions_status_check_functions.php:
|
769 |
msgid "No subscriptions updated in this batch."
|
770 |
msgstr "In dieser Charge wurden keine Abonnements aktualisiert."
|
771 |
|
772 |
-
#: src/subscriptions_status_check_functions.php:
|
773 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
774 |
msgstr "Die Abonnements wurden nicht aktualisiert, da Mollie kein gültiges Mandat vorliegt. Verarbeitet durch das Tool ‚Mollie-Abonnementstatus‘."
|
775 |
|
776 |
-
#: src/subscriptions_status_check_functions.php:
|
777 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
778 |
msgstr "Abonnement auf automatisierte Erneuerung über Mollie aktualisiert, Status auf aktiv gesetzt. Verarbeitet durch das Tool ‚Mollie-Abonnementstatus‘."
|
779 |
|
@@ -787,35 +1410,35 @@ msgstr "Mollie-Abonnementstatus"
|
|
787 |
|
788 |
#: src/subscriptions_status_check_functions.php:30
|
789 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
790 |
-
msgstr "Überprüft auf fälschlicherweise auf ‚manuelle Erneuerung‘ gesetzte Abonnements. Lies zunächst die
|
791 |
|
792 |
-
#:
|
793 |
msgid "Store customer details at Mollie"
|
794 |
msgstr "Kundendetails des Geschäfts bei Mollie"
|
795 |
|
796 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
797 |
-
#: src/Mollie/WC/Plugin.php:
|
798 |
msgid "%s payment failed (%s)."
|
799 |
msgstr "%s-Bezahlung fehlgeschlagen (%s)."
|
800 |
|
801 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
802 |
msgid "KBC/CBC Payment Button"
|
803 |
msgstr "KBC/CBC-Zahlungsbutton"
|
804 |
|
805 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
806 |
-
#: src/Mollie/WC/Gateway/
|
807 |
msgid "Issuers empty option"
|
808 |
msgstr "Kartenaussteller-Option leer"
|
809 |
|
810 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
811 |
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."
|
812 |
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."
|
813 |
|
814 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
815 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
816 |
msgstr "Mollie-Bezahlseite überspringen, wenn Überweisung ausgewählt wurde"
|
817 |
|
818 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
819 |
msgid "Skip Mollie payment screen"
|
820 |
msgstr "Mollie-Bezahlseite überspringen"
|
821 |
|
@@ -836,7 +1459,7 @@ msgstr "Mollie"
|
|
836 |
msgid "Mollie Payments for WooCommerce"
|
837 |
msgstr "Mollie-Zahlungen für WooCommerce"
|
838 |
|
839 |
-
#: src/Mollie/WC/Plugin.php:
|
840 |
msgid "Logs"
|
841 |
msgstr "Protokolle"
|
842 |
|
@@ -850,7 +1473,7 @@ msgstr "Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung JSON ben
|
|
850 |
|
851 |
#: src/Mollie/WC/Helper/Status.php:80
|
852 |
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
853 |
-
msgstr "
|
854 |
|
855 |
#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce
|
856 |
#. version, placeholder 3: used WooCommerce version
|
@@ -858,137 +1481,133 @@ msgstr "Mobiler API-Client nicht installiert. Vergewissere dich, dass das Plugin
|
|
858 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
859 |
msgstr "Das %s-Plugin benötigt WooCommerce %s oder höher, du verwendest Version %s. Aktualisiere bitte dein WooCommerce-Plugin."
|
860 |
|
861 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
862 |
msgid "Debug Log"
|
863 |
msgstr "Debug-Protokoll"
|
864 |
|
865 |
-
#:
|
866 |
msgid "French (Belgium)"
|
867 |
msgstr "Französisch (Belgien)"
|
868 |
|
869 |
-
#:
|
870 |
msgid "French"
|
871 |
msgstr "Französisch"
|
872 |
|
873 |
-
#:
|
874 |
msgid "Spanish"
|
875 |
msgstr "Spanisch"
|
876 |
|
877 |
-
#:
|
878 |
msgid "German"
|
879 |
msgstr "Deutsch"
|
880 |
|
881 |
-
#:
|
882 |
msgid "English"
|
883 |
msgstr "Englisch"
|
884 |
|
885 |
-
#:
|
886 |
msgid "Flemish (Belgium)"
|
887 |
msgstr "Flämisch (Belgien)"
|
888 |
|
889 |
-
#:
|
890 |
msgid "Dutch"
|
891 |
msgstr "Niederländisch"
|
892 |
|
893 |
-
#:
|
894 |
msgid "Detect using browser language"
|
895 |
msgstr "Über Browsersprache erkennen"
|
896 |
|
897 |
-
#:
|
898 |
msgid "Payment screen language"
|
899 |
msgstr "Sprache der Bezahlseite"
|
900 |
|
901 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
902 |
msgid "Test API key should start with test_"
|
903 |
msgstr "Der Test-API-Schlüssel sollte mit test_ beginnen"
|
904 |
|
905 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
906 |
msgid "Test API key"
|
907 |
msgstr "Test-API-Schlüssel"
|
908 |
|
909 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
910 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
911 |
msgstr "Aktiviere den Testmodus, wenn du das Plugin ohne echte Bezahlung testen möchtest."
|
912 |
|
913 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
914 |
msgid "Enable test mode"
|
915 |
msgstr "Testmodus aktivieren"
|
916 |
|
917 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
918 |
msgid "Live API key should start with live_"
|
919 |
msgstr "Der Live-API-Schlüssel sollte mit live_ beginnen"
|
920 |
|
921 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
922 |
#. %s's Will be replaced by a link to the Mollie profile
|
923 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
924 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
925 |
-
msgstr "Der API-Schlüssel wird für die Verbindung mit Mollie verwendet. Du findest deinen <strong>%s</strong>-API-Schlüssel in deinem %sMollie-Profil%s
|
926 |
|
927 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
928 |
msgid "Live API key"
|
929 |
msgstr "Live-API-Schlüssel"
|
930 |
|
931 |
-
#:
|
|
|
932 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
933 |
msgstr "Die folgenden Optionen sind für die Verwendung des Plugins verpflichtend und werden von allen Mollie-Bezahlmethoden verwendet"
|
934 |
|
935 |
-
#: src/Mollie/WC/
|
936 |
msgid "Mollie settings"
|
937 |
msgstr "Mollie-Einstellungen"
|
938 |
|
939 |
-
|
940 |
-
#: src/Mollie/WC/Helper/Settings.php:351
|
941 |
msgid "Log files are saved to <code>%s</code>"
|
942 |
msgstr "Protokolldateien werden unter <code>%s</code> gespeichert"
|
943 |
|
944 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
945 |
-
msgid "View logs"
|
946 |
-
msgstr "Protokolle anzeigen"
|
947 |
-
|
948 |
-
#: src/Mollie/WC/Helper/Settings.php:340
|
949 |
msgid "Log plugin events."
|
950 |
msgstr "Plugin-Vorgänge protokollieren."
|
951 |
|
952 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
953 |
msgid "Edit"
|
954 |
msgstr "Bearbeiten"
|
955 |
|
956 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
957 |
msgid "Refresh"
|
958 |
msgstr "Aktualisieren"
|
959 |
|
960 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
961 |
#. profile
|
962 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
963 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
964 |
msgstr "Die folgenden Bezahlmethoden sind in deinem %sMollie-Profil%s aktiviert:"
|
965 |
|
966 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
967 |
msgid "Gateway disabled"
|
968 |
msgstr "Gateway deaktiviert"
|
969 |
|
970 |
-
|
971 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
972 |
msgid "Enabled"
|
973 |
msgstr "Aktiv"
|
974 |
|
975 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
976 |
msgid "Gateway enabled"
|
977 |
msgstr "Gateway aktiviert"
|
978 |
|
979 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
980 |
msgid "Connected"
|
981 |
msgstr "Verbunden"
|
982 |
|
983 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
984 |
msgid "Mollie status:"
|
985 |
msgstr "Mollie-Status:"
|
986 |
|
987 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
988 |
msgid "Error"
|
989 |
msgstr "Fehler"
|
990 |
|
991 |
-
#: src/Mollie/WC/Helper/Data.php:
|
992 |
msgid "Item #%s stock incremented from %s to %s."
|
993 |
msgstr "Artikel #%s Bestand von %s auf %s erhöht."
|
994 |
|
@@ -1002,22 +1621,22 @@ msgstr "paysafecard"
|
|
1002 |
|
1003 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1004 |
#. email, placeholder 3: PayPal transaction ID
|
1005 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1006 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1007 |
msgstr "Zahlung durch <strong>%s</strong> - %s (PayPal Transaktions-ID: %s) erfolgt"
|
1008 |
|
1009 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1010 |
msgid "PayPal"
|
1011 |
msgstr "PayPal"
|
1012 |
|
|
|
1013 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1014 |
#. drop down
|
1015 |
-
|
1016 |
-
#: src/Mollie/WC/Gateway/Kbc.php:77 src/Mollie/WC/Gateway/Ideal.php:77
|
1017 |
msgid "Select your bank"
|
1018 |
msgstr "Wähle deine Bank aus"
|
1019 |
|
1020 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
1021 |
msgid "iDEAL"
|
1022 |
msgstr "iDEAL"
|
1023 |
|
@@ -1026,11 +1645,11 @@ msgid "SEPA Direct Debit"
|
|
1026 |
msgstr "SEPA-Direktmandat"
|
1027 |
|
1028 |
#. translators: Placeholder 1: card holder
|
1029 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1030 |
msgid "Payment completed by <strong>%s</strong>"
|
1031 |
msgstr "Zahlung durch <strong>%s</strong> erfolgt"
|
1032 |
|
1033 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1034 |
msgid "Credit card"
|
1035 |
msgstr "Kreditkarte"
|
1036 |
|
@@ -1038,193 +1657,206 @@ msgstr "Kreditkarte"
|
|
1038 |
msgid "Belfius Direct Net"
|
1039 |
msgstr "Belfius Direct Net"
|
1040 |
|
1041 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1042 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1043 |
msgstr "Die Zahlungsfrist läuft am <strong>%s</strong> ab. Bitte überweise bis dahin den vollen Betrag."
|
1044 |
|
1045 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1046 |
msgid "The payment will expire on <strong>%s</strong>."
|
1047 |
msgstr "Die Zahlungsfrist läuft am <strong>%s</strong> ab."
|
1048 |
|
1049 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1050 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1051 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1052 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1053 |
msgstr "Gib bitte die Zahlungsreferenz <strong>%s</strong> an"
|
1054 |
|
1055 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1056 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1057 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1058 |
msgid "Payment reference: %s"
|
1059 |
msgstr "Zahlungsreferenz: %s"
|
1060 |
|
1061 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1062 |
msgid "BIC: %s"
|
1063 |
msgstr "BIC: %s"
|
1064 |
|
1065 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1066 |
msgid "IBAN: <strong>%s</strong>"
|
1067 |
msgstr "IBAN: <strong>%s</strong>"
|
1068 |
|
1069 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1070 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1071 |
msgid "Beneficiary: %s"
|
1072 |
msgstr "Begünstigter: %s"
|
1073 |
|
1074 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1075 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1076 |
msgstr "Bitte schließe die Zahlung ab, indem du den vollen Betrag auf das folgende Konto überweist:"
|
1077 |
|
1078 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1079 |
msgid "Bank Transfer"
|
1080 |
msgstr "Überweisung"
|
1081 |
|
1082 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
1083 |
msgid "Disabled"
|
1084 |
msgstr "Deaktiviert"
|
1085 |
|
1086 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1087 |
-
msgid "Number of
|
1088 |
-
msgstr "
|
1089 |
|
1090 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
1091 |
msgid "Expiry date"
|
1092 |
msgstr "Ablaufdatum"
|
1093 |
|
1094 |
#. translators: Placeholder 1: payment method
|
1095 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1096 |
msgid "Payment completed with <strong>%s</strong>"
|
1097 |
msgstr "Zahlung durch <strong>%s</strong> erfolgt"
|
1098 |
|
1099 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1100 |
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."
|
1101 |
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."
|
1102 |
|
1103 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1104 |
msgid "We have not received a definite payment status."
|
1105 |
msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten."
|
1106 |
|
1107 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1108 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1109 |
msgstr "Du hast deine Zahlung storniert. Vervollständige deine Bestellung bitte mit einer anderen Zahlungsmethode."
|
1110 |
|
1111 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1112 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
1113 |
msgid "%s payment expired (%s)."
|
1114 |
msgstr "%s-Zahlung abgelaufen (%s)."
|
1115 |
|
1116 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1117 |
-
#: src/Mollie/WC/Payment/Order.php:
|
1118 |
msgid "Order completed using %s payment (%s)."
|
1119 |
msgstr "Bestellung über %s-Bezahlung %s abgeschlossen."
|
1120 |
|
1121 |
#. translators: Placeholder 1: Payment method title
|
1122 |
-
#: src/Mollie/WC/
|
1123 |
-
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:
|
1124 |
-
#: src/Mollie/WC/
|
|
|
|
|
1125 |
msgid "Could not create %s payment."
|
1126 |
msgstr "%s-Zahlung konnte nicht erstellt werden."
|
1127 |
|
1128 |
-
#: src/Mollie/WC/
|
1129 |
-
#: src/Mollie/WC/
|
1130 |
-
#: src/Mollie/WC/Payment/Order.php:607 src/Mollie/WC/Payment/Order.php:631
|
1131 |
-
#: src/Mollie/WC/Payment/Order.php:668 src/Mollie/WC/Payment/Order.php:709
|
1132 |
-
#: src/Mollie/WC/Payment/Payment.php:237 src/Mollie/WC/Payment/Payment.php:338
|
1133 |
-
#: src/Mollie/WC/Payment/Payment.php:396 src/Mollie/WC/Payment/Payment.php:419
|
1134 |
-
#: src/Mollie/WC/Payment/Payment.php:459 src/Mollie/WC/Payment/Payment.php:500
|
1135 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1136 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1137 |
-
#: src/Mollie/WC/Gateway/Abstract.php:547
|
1138 |
-
#: src/Mollie/WC/Gateway/Abstract.php:822
|
1139 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1120
|
1140 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1141 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1142 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1143 |
-
#: src/Mollie/WC/Gateway/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1144 |
msgid "test mode"
|
1145 |
msgstr "Testmodus"
|
1146 |
|
1147 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
|
|
1148 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1149 |
-
#: src/Mollie/WC/Gateway/
|
1150 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1151 |
msgid "%s payment started (%s)."
|
1152 |
msgstr "%s-Bezahlung gestartet (%s)."
|
1153 |
|
|
|
1154 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1155 |
-
#: src/Mollie/WC/Gateway/
|
1156 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1157 |
msgid "Awaiting payment confirmation."
|
1158 |
msgstr "Die Zahlungsbestätigung wird erwartet."
|
1159 |
|
1160 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1161 |
msgid "Could not load order %s"
|
1162 |
msgstr "Bestellung %s konnte nicht geladen werden"
|
1163 |
|
1164 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1165 |
#. be replaced by a link to the Mollie profile
|
1166 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1167 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1168 |
msgstr "%s ist nicht in deinem Mollie-Profil aktiviert. Du kannst es aktivieren, indem du dein %sMollie-Profil%s bearbeitest."
|
1169 |
|
1170 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1171 |
#. setting page
|
1172 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1173 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1174 |
msgstr "Kein API-Schlüssel vorgegeben. Bitte %slege deinen Mollie-API-Schlüssel fest%s."
|
1175 |
|
1176 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1177 |
msgid "Gateway Disabled"
|
1178 |
msgstr "Gateway deaktiviert"
|
1179 |
|
1180 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1181 |
msgid "Test mode enabled."
|
1182 |
msgstr "Testmodus aktiviert."
|
1183 |
|
1184 |
-
#: src/Mollie/WC/
|
1185 |
msgid "Hold Stock (minutes)"
|
1186 |
msgstr "Bestand halten (Minuten)"
|
1187 |
|
1188 |
-
#: src/Mollie/WC/
|
1189 |
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."
|
1190 |
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."
|
1191 |
|
1192 |
-
#:
|
|
|
|
|
1193 |
msgid "default"
|
1194 |
msgstr "Standard"
|
1195 |
|
1196 |
-
#: src/Mollie/WC/
|
1197 |
msgid "Initial order status"
|
1198 |
msgstr "Initialer Bestellstatus"
|
1199 |
|
1200 |
-
#:
|
|
|
1201 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1202 |
msgstr "Beschreibung der Bezahlmethode, die der Kunde im Bezahlvorgang angezeigt bekommt. Standard: <code>%s</code>"
|
1203 |
|
1204 |
-
#:
|
|
|
1205 |
msgid "Description"
|
1206 |
msgstr "Beschreibung"
|
1207 |
|
1208 |
-
#: src/Mollie/WC/
|
1209 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1210 |
msgstr "Logo bei Bezahlvorgang anzeigen. Standard: <code>aktiviert</code>"
|
1211 |
|
1212 |
-
#:
|
|
|
|
|
1213 |
msgid "Display logo"
|
1214 |
msgstr "Logo anzeigen"
|
1215 |
|
1216 |
-
#:
|
|
|
1217 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1218 |
-
msgstr "Hierdurch wird der Titel gesteuert, den Benutzer beim Bezahlvorgang sehen. Standard <code>%s</code>"
|
1219 |
|
1220 |
-
#:
|
|
|
1221 |
msgid "Title"
|
1222 |
msgstr "Titel"
|
1223 |
|
1224 |
-
|
|
|
|
|
1225 |
msgid "Enable %s"
|
1226 |
msgstr "%s aktivieren"
|
1227 |
|
1228 |
-
#:
|
|
|
1229 |
msgid "Enable/Disable"
|
1230 |
msgstr "Aktivieren/deaktivieren"
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in Dutch
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-07-26 13:45+0200\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
+
"Language: nl\n"
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
|
14 |
+
#: src/Mollie/WC/Plugin.php:375
|
15 |
+
msgid "Unpaid order cancelled - time limit reached."
|
16 |
+
msgstr "Unbezahlte Bestellung storniert – Zeitlimit erreicht."
|
17 |
+
|
18 |
+
#: src/Mollie/WC/Helper/Settings.php:846
|
19 |
+
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"
|
20 |
+
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"
|
21 |
+
|
22 |
+
#: src/Mollie/WC/Helper/Settings.php:254
|
23 |
+
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."
|
24 |
+
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."
|
25 |
+
|
26 |
+
#: src/Mollie/WC/Helper/Settings.php:246
|
27 |
+
msgid "Enable this option if you want to be able to set the number of days after the order will expire."
|
28 |
+
msgstr "Aktiviere diese Option, wenn du eine Anzahl an Tagen festlegen möchtest, nach deren Ablauf eine Bestellung abläuft."
|
29 |
+
|
30 |
+
#: src/Mollie/WC/Helper/Settings.php:237
|
31 |
+
msgid "%s advanced"
|
32 |
+
msgstr "%s fortgeschritten"
|
33 |
+
|
34 |
+
#: inc/settings/mollie_paypal_button_enabler.php:126
|
35 |
+
msgid "If the product or the cart total amount is under this number, then the button will not show up."
|
36 |
+
msgstr "Wenn der Betrag des Produkts oder des Einkaufswagens unter dieser Zahl liegt, wird die Schaltfläche nicht angezeigt."
|
37 |
+
|
38 |
+
#: inc/settings/mollie_paypal_button_enabler.php:122
|
39 |
+
msgid "Minimum amount to display button"
|
40 |
+
msgstr "Mindestbetrag zur Anzeige der Schaltfläche"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_paypal_button_enabler.php:117
|
43 |
+
msgctxt "Mollie PayPal button Settings"
|
44 |
+
msgid "Polish -- Checkout with PayPal - Silver"
|
45 |
+
msgstr "Polnisch -- Bezahlung mit PayPal - Silber"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_paypal_button_enabler.php:116
|
48 |
+
msgctxt "Mollie PayPal button Settings"
|
49 |
+
msgid "Polish -- Checkout with PayPal - Gold"
|
50 |
+
msgstr "Polnisch -- Bezahlung mit PayPal - Gold"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_paypal_button_enabler.php:115
|
53 |
+
msgctxt "Mollie PayPal button Settings"
|
54 |
+
msgid "Polish -- Buy with PayPal - Gold"
|
55 |
+
msgstr "Polnisch -- Kauf über PayPal - Gold"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_paypal_button_enabler.php:114
|
58 |
+
msgctxt "Mollie PayPal button Settings"
|
59 |
+
msgid "French -- Checkout with PayPal - Silver"
|
60 |
+
msgstr "Französisch -- Bezahlung mit PayPal - Silber"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_paypal_button_enabler.php:113
|
63 |
+
msgctxt "Mollie PayPal button Settings"
|
64 |
+
msgid "French -- Checkout with PayPal - Gold"
|
65 |
+
msgstr "Französisch -- Bezahlung mit PayPal - Gold"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_paypal_button_enabler.php:112
|
68 |
+
msgctxt "Mollie PayPal button Settings"
|
69 |
+
msgid "French -- Buy with PayPal - Gold"
|
70 |
+
msgstr "Französisch -- Kauf über PayPal - Gold"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_paypal_button_enabler.php:111
|
73 |
+
msgctxt "Mollie PayPal button Settings"
|
74 |
+
msgid "German -- Checkout with PayPal - Rounded white"
|
75 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, weiß"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_paypal_button_enabler.php:110
|
78 |
+
msgctxt "Mollie PayPal button Settings"
|
79 |
+
msgid "German -- Checkout with PayPal - Pill white"
|
80 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, weiß"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_paypal_button_enabler.php:109
|
83 |
+
msgctxt "Mollie PayPal button Settings"
|
84 |
+
msgid "German -- Checkout with PayPal - Rounded gray"
|
85 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, grau"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_paypal_button_enabler.php:108
|
88 |
+
msgctxt "Mollie PayPal button Settings"
|
89 |
+
msgid "German -- Checkout with PayPal - Pill gray"
|
90 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, grau"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_paypal_button_enabler.php:107
|
93 |
+
msgctxt "Mollie PayPal button Settings"
|
94 |
+
msgid "German -- Checkout with PayPal - Rounded golden"
|
95 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, goldfarben"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_paypal_button_enabler.php:106
|
98 |
+
msgctxt "Mollie PayPal button Settings"
|
99 |
+
msgid "German -- Checkout with PayPal - Pill golden"
|
100 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, goldfarben"
|
101 |
+
|
102 |
+
#: inc/settings/mollie_paypal_button_enabler.php:105
|
103 |
+
msgctxt "Mollie PayPal button Settings"
|
104 |
+
msgid "German -- Checkout with PayPal - Rounded blue"
|
105 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, blau"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_paypal_button_enabler.php:104
|
108 |
+
msgctxt "Mollie PayPal button Settings"
|
109 |
+
msgid "German -- Checkout with PayPal - Pill blue"
|
110 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, blau"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_paypal_button_enabler.php:103
|
113 |
+
msgctxt "Mollie PayPal button Settings"
|
114 |
+
msgid "German -- Checkout with PayPal - Rounded black"
|
115 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, schwarz"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_paypal_button_enabler.php:102
|
118 |
+
msgctxt "Mollie PayPal button Settings"
|
119 |
+
msgid "German -- Checkout with PayPal - Pill black"
|
120 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, schwarz"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_paypal_button_enabler.php:101
|
123 |
+
msgctxt "Mollie PayPal button Settings"
|
124 |
+
msgid "German -- Buy with PayPal - Rounded white"
|
125 |
+
msgstr "Deutsch -- Kauf über PayPal - Abgerundet, weiß"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_paypal_button_enabler.php:100
|
128 |
+
msgctxt "Mollie PayPal button Settings"
|
129 |
+
msgid "German -- Buy with PayPal - Pill white"
|
130 |
+
msgstr "Deutsch -- Kauf über PayPal - Klein und rund, weiß"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_paypal_button_enabler.php:99
|
133 |
+
msgctxt "Mollie PayPal button Settings"
|
134 |
+
msgid "German -- Buy with PayPal - Rounded gray"
|
135 |
+
msgstr "Deutsch -- Kauf über PayPal - Abgerundet, grau"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_paypal_button_enabler.php:98
|
138 |
+
msgctxt "Mollie PayPal button Settings"
|
139 |
+
msgid "German -- Buy with PayPal - Pill gray"
|
140 |
+
msgstr "Deutsch -- Kauf über PayPal - Klein und rund, grau"
|
141 |
+
|
142 |
+
#: inc/settings/mollie_paypal_button_enabler.php:97
|
143 |
+
msgctxt "Mollie PayPal button Settings"
|
144 |
+
msgid "German -- Buy with PayPal - Rounded golden"
|
145 |
+
msgstr "Deutsch -- Kauf über PayPal - Abgerundet, goldfarben"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_paypal_button_enabler.php:96
|
148 |
+
msgctxt "Mollie PayPal button Settings"
|
149 |
+
msgid "German -- Buy with PayPal - Pill golden"
|
150 |
+
msgstr "Deutsch -- Kauf über PayPal - Klein und rund, goldfarben"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_paypal_button_enabler.php:95
|
153 |
+
msgctxt "Mollie PayPal button Settings"
|
154 |
+
msgid "German -- Buy with PayPal - Rounded blue"
|
155 |
+
msgstr "Deutsch -- Kauf über PayPal - Abgerundet, blau"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_paypal_button_enabler.php:94
|
158 |
+
msgctxt "Mollie PayPal button Settings"
|
159 |
+
msgid "German -- Buy with PayPal - Pill blue"
|
160 |
+
msgstr "Deutsch -- Kauf über PayPal - Klein und rund, blau"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_paypal_button_enabler.php:93
|
163 |
+
msgctxt "Mollie PayPal button Settings"
|
164 |
+
msgid "German -- Buy with PayPal - Rounded black"
|
165 |
+
msgstr "Deutsch -- Kauf über PayPal - Abgerundet, schwarz"
|
166 |
+
|
167 |
+
#: inc/settings/mollie_paypal_button_enabler.php:92
|
168 |
+
msgctxt "Mollie PayPal button Settings"
|
169 |
+
msgid "German -- Buy with PayPal - Pill black"
|
170 |
+
msgstr "Deutsch -- Kauf über PayPal - Klein und rund, schwarz"
|
171 |
+
|
172 |
+
#: inc/settings/mollie_paypal_button_enabler.php:91
|
173 |
+
msgctxt "Mollie PayPal button Settings"
|
174 |
+
msgid "Dutch -- Checkout with PayPal - Rounded white"
|
175 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, weiß"
|
176 |
+
|
177 |
+
#: inc/settings/mollie_paypal_button_enabler.php:90
|
178 |
+
msgctxt "Mollie PayPal button Settings"
|
179 |
+
msgid "Dutch -- Checkout with PayPal - Pill white"
|
180 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, weiß"
|
181 |
+
|
182 |
+
#: inc/settings/mollie_paypal_button_enabler.php:89
|
183 |
+
msgctxt "Mollie PayPal button Settings"
|
184 |
+
msgid "Dutch -- Checkout with PayPal - Rounded gray"
|
185 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, grau"
|
186 |
+
|
187 |
+
#: inc/settings/mollie_paypal_button_enabler.php:88
|
188 |
+
msgctxt "Mollie PayPal button Settings"
|
189 |
+
msgid "Dutch -- Checkout with PayPal - Pill gray"
|
190 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, grau"
|
191 |
+
|
192 |
+
#: inc/settings/mollie_paypal_button_enabler.php:87
|
193 |
+
msgctxt "Mollie PayPal button Settings"
|
194 |
+
msgid "Dutch -- Checkout with PayPal - Rounded golden"
|
195 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, goldfarben"
|
196 |
+
|
197 |
+
#: inc/settings/mollie_paypal_button_enabler.php:86
|
198 |
+
msgctxt "Mollie PayPal button Settings"
|
199 |
+
msgid "Dutch -- Checkout with PayPal - Pill golden"
|
200 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, goldfarben"
|
201 |
+
|
202 |
+
#: inc/settings/mollie_paypal_button_enabler.php:85
|
203 |
+
msgctxt "Mollie PayPal button Settings"
|
204 |
+
msgid "Dutch -- Checkout with PayPal - Rounded blue"
|
205 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, blau"
|
206 |
+
|
207 |
+
#: inc/settings/mollie_paypal_button_enabler.php:84
|
208 |
+
msgctxt "Mollie PayPal button Settings"
|
209 |
+
msgid "Dutch -- Checkout with PayPal - Pill blue"
|
210 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, blau"
|
211 |
+
|
212 |
+
#: inc/settings/mollie_paypal_button_enabler.php:83
|
213 |
+
msgctxt "Mollie PayPal button Settings"
|
214 |
+
msgid "Dutch -- Checkout with PayPal - Rounded black"
|
215 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, schwarz"
|
216 |
+
|
217 |
+
#: inc/settings/mollie_paypal_button_enabler.php:82
|
218 |
+
msgctxt "Mollie PayPal button Settings"
|
219 |
+
msgid "Dutch -- Checkout with PayPal - Pill black"
|
220 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, schwarz"
|
221 |
+
|
222 |
+
#: inc/settings/mollie_paypal_button_enabler.php:81
|
223 |
+
msgctxt "Mollie PayPal button Settings"
|
224 |
+
msgid "Dutch -- Buy with PayPal - Rounded white"
|
225 |
+
msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, weiß"
|
226 |
+
|
227 |
+
#: inc/settings/mollie_paypal_button_enabler.php:80
|
228 |
+
msgctxt "Mollie PayPal button Settings"
|
229 |
+
msgid "Dutch -- Buy with PayPal - Pill white"
|
230 |
+
msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, weiß"
|
231 |
+
|
232 |
+
#: inc/settings/mollie_paypal_button_enabler.php:79
|
233 |
+
msgctxt "Mollie PayPal button Settings"
|
234 |
+
msgid "Dutch -- Buy with PayPal - Rounded gray"
|
235 |
+
msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, grau"
|
236 |
+
|
237 |
+
#: inc/settings/mollie_paypal_button_enabler.php:78
|
238 |
+
msgctxt "Mollie PayPal button Settings"
|
239 |
+
msgid "Dutch -- Buy with PayPal - Pill gray"
|
240 |
+
msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, grau"
|
241 |
+
|
242 |
+
#: inc/settings/mollie_paypal_button_enabler.php:77
|
243 |
+
msgctxt "Mollie PayPal button Settings"
|
244 |
+
msgid "Dutch -- Buy with PayPal - Rounded golden"
|
245 |
+
msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, goldfarben"
|
246 |
+
|
247 |
+
#: inc/settings/mollie_paypal_button_enabler.php:76
|
248 |
+
msgctxt "Mollie PayPal button Settings"
|
249 |
+
msgid "Dutch -- Buy with PayPal - Pill golden"
|
250 |
+
msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, goldfarben"
|
251 |
+
|
252 |
+
#: inc/settings/mollie_paypal_button_enabler.php:75
|
253 |
+
msgctxt "Mollie PayPal button Settings"
|
254 |
+
msgid "Dutch -- Buy with PayPal - Rounded blue"
|
255 |
+
msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, blau"
|
256 |
+
|
257 |
+
#: inc/settings/mollie_paypal_button_enabler.php:74
|
258 |
+
msgctxt "Mollie PayPal button Settings"
|
259 |
+
msgid "Dutch -- Buy with PayPal - Pill blue"
|
260 |
+
msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, blau"
|
261 |
+
|
262 |
+
#: inc/settings/mollie_paypal_button_enabler.php:73
|
263 |
+
msgctxt "Mollie PayPal button Settings"
|
264 |
+
msgid "Dutch -- Buy with PayPal - Rounded black"
|
265 |
+
msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, schwarz"
|
266 |
+
|
267 |
+
#: inc/settings/mollie_paypal_button_enabler.php:72
|
268 |
+
msgctxt "Mollie PayPal button Settings"
|
269 |
+
msgid "Dutch -- Buy with PayPal - Pill black"
|
270 |
+
msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, schwarz"
|
271 |
+
|
272 |
+
#: inc/settings/mollie_paypal_button_enabler.php:71
|
273 |
+
msgctxt "Mollie PayPal button Settings"
|
274 |
+
msgid "English -- Checkout with PayPal - Rounded white"
|
275 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, weiß"
|
276 |
+
|
277 |
+
#: inc/settings/mollie_paypal_button_enabler.php:70
|
278 |
+
msgctxt "Mollie PayPal button Settings"
|
279 |
+
msgid "English -- Checkout with PayPal - Pill white"
|
280 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, weiß"
|
281 |
+
|
282 |
+
#: inc/settings/mollie_paypal_button_enabler.php:69
|
283 |
+
msgctxt "Mollie PayPal button Settings"
|
284 |
+
msgid "English -- Checkout with PayPal - Rounded gray"
|
285 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, grau"
|
286 |
+
|
287 |
+
#: inc/settings/mollie_paypal_button_enabler.php:68
|
288 |
+
msgctxt "Mollie PayPal button Settings"
|
289 |
+
msgid "English -- Checkout with PayPal - Pill gray"
|
290 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, grau"
|
291 |
+
|
292 |
+
#: inc/settings/mollie_paypal_button_enabler.php:67
|
293 |
+
msgctxt "Mollie PayPal button Settings"
|
294 |
+
msgid "English -- Checkout with PayPal - Rounded golden"
|
295 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, goldfarben"
|
296 |
+
|
297 |
+
#: inc/settings/mollie_paypal_button_enabler.php:66
|
298 |
+
msgctxt "Mollie PayPal button Settings"
|
299 |
+
msgid "English -- Checkout with PayPal - Pill golden"
|
300 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, goldfarben"
|
301 |
+
|
302 |
+
#: inc/settings/mollie_paypal_button_enabler.php:65
|
303 |
+
msgctxt "Mollie PayPal button Settings"
|
304 |
+
msgid "English -- Checkout with PayPal - Rounded blue"
|
305 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, blau"
|
306 |
+
|
307 |
+
#: inc/settings/mollie_paypal_button_enabler.php:64
|
308 |
+
msgctxt "Mollie PayPal button Settings"
|
309 |
+
msgid "English -- Checkout with PayPal - Pill blue"
|
310 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, blau"
|
311 |
+
|
312 |
+
#: inc/settings/mollie_paypal_button_enabler.php:63
|
313 |
+
msgctxt "Mollie PayPal button Settings"
|
314 |
+
msgid "English -- Checkout with PayPal - Rounded black"
|
315 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, schwarz"
|
316 |
+
|
317 |
+
#: inc/settings/mollie_paypal_button_enabler.php:62
|
318 |
+
msgctxt "Mollie PayPal button Settings"
|
319 |
+
msgid "English -- Checkout with PayPal - Pill black"
|
320 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, schwarz"
|
321 |
+
|
322 |
+
#: inc/settings/mollie_paypal_button_enabler.php:61
|
323 |
+
msgctxt "Mollie PayPal button Settings"
|
324 |
+
msgid "English -- Buy with PayPal - Rounded white"
|
325 |
+
msgstr "Englisch -- Kauf über PayPal - Abgerundet, weiß"
|
326 |
+
|
327 |
+
#: inc/settings/mollie_paypal_button_enabler.php:60
|
328 |
+
msgctxt "Mollie PayPal button Settings"
|
329 |
+
msgid "English -- Buy with PayPal - Pill white"
|
330 |
+
msgstr "Englisch -- Kauf über PayPal - Klein und rund, weiß"
|
331 |
+
|
332 |
+
#: inc/settings/mollie_paypal_button_enabler.php:59
|
333 |
+
msgctxt "Mollie PayPal button Settings"
|
334 |
+
msgid "English -- Buy with PayPal - Rounded gray"
|
335 |
+
msgstr "Englisch -- Kauf über PayPal - Abgerundet, grau"
|
336 |
+
|
337 |
+
#: inc/settings/mollie_paypal_button_enabler.php:58
|
338 |
+
msgctxt "Mollie PayPal button Settings"
|
339 |
+
msgid "English -- Buy with PayPal - Pill gray"
|
340 |
+
msgstr "Englisch -- Kauf über PayPal - Klein und rund, grau"
|
341 |
+
|
342 |
+
#: inc/settings/mollie_paypal_button_enabler.php:57
|
343 |
+
msgctxt "Mollie PayPal button Settings"
|
344 |
+
msgid "English -- Buy with PayPal - Rounded golden"
|
345 |
+
msgstr "Englisch -- Kauf über PayPal - Abgerundet, goldfarben"
|
346 |
+
|
347 |
+
#: inc/settings/mollie_paypal_button_enabler.php:56
|
348 |
+
msgctxt "Mollie PayPal button Settings"
|
349 |
+
msgid "English -- Buy with PayPal - Pill golden"
|
350 |
+
msgstr "Englisch -- Kauf über PayPal - Klein und rund, goldfarben"
|
351 |
+
|
352 |
+
#: inc/settings/mollie_paypal_button_enabler.php:55
|
353 |
+
msgctxt "Mollie PayPal button Settings"
|
354 |
+
msgid "English -- Buy with PayPal - Rounded blue"
|
355 |
+
msgstr "Englisch -- Kauf über PayPal - Abgerundet, blau"
|
356 |
+
|
357 |
+
#: inc/settings/mollie_paypal_button_enabler.php:54
|
358 |
+
msgctxt "Mollie PayPal button Settings"
|
359 |
+
msgid "English -- Buy with PayPal - Pill blue"
|
360 |
+
msgstr "Englisch -- Kauf über PayPal - Klein und rund, blau"
|
361 |
+
|
362 |
+
#: inc/settings/mollie_paypal_button_enabler.php:46
|
363 |
+
msgctxt "Mollie PayPal Button Settings"
|
364 |
+
msgid "Select the text and the colour of the button."
|
365 |
+
msgstr "Wähle Text und Farbe der Schaltfläche aus."
|
366 |
+
|
367 |
+
#: inc/settings/mollie_paypal_button_enabler.php:44
|
368 |
+
msgctxt "Mollie PayPal Button Settings"
|
369 |
+
msgid "Button text language and color"
|
370 |
+
msgstr "Sprache und Farbe des Schaltflächentextes"
|
371 |
+
|
372 |
+
#: inc/settings/mollie_paypal_button_enabler.php:35
|
373 |
+
msgid "Enable the PayPal button to be used in the product page."
|
374 |
+
msgstr "Aktiviere die PayPal-Schaltfläche, die auf der Produktseite verwendet werden soll."
|
375 |
+
|
376 |
+
#: inc/settings/mollie_paypal_button_enabler.php:31
|
377 |
+
msgid "Display on product page"
|
378 |
+
msgstr "Auf der Produktseite anzeigen"
|
379 |
+
|
380 |
+
#: inc/settings/mollie_paypal_button_enabler.php:23
|
381 |
+
msgid "Enable the PayPal button to be used in the cart page."
|
382 |
+
msgstr "Aktiviere die PayPal-Schaltfläche, die im Einkaufswagen verwendet werden soll."
|
383 |
+
|
384 |
+
#: inc/settings/mollie_paypal_button_enabler.php:19
|
385 |
+
msgid "Display on cart page"
|
386 |
+
msgstr "Im Einkaufswagen anzeigen"
|
387 |
+
|
388 |
+
#: inc/settings/mollie_paypal_button_enabler.php:12
|
389 |
+
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"
|
390 |
+
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"
|
391 |
+
|
392 |
+
#: inc/settings/mollie_paypal_button_enabler.php:7
|
393 |
+
msgid "PayPal button display settings"
|
394 |
+
msgstr "Anzeigeeinstellungen für die PayPal-Schaltfläche"
|
395 |
+
|
396 |
+
#: src/Mollie/WC/Helper/Settings.php:159
|
397 |
+
msgid "%s surcharge"
|
398 |
+
msgstr "%s Zuschlag"
|
399 |
+
|
400 |
+
#: src/Mollie/WC/Helper/Settings.php:125
|
401 |
+
msgid "%s custom logo"
|
402 |
+
msgstr "%s Eigenes Logo"
|
403 |
+
|
404 |
+
#: src/Mollie/WC/Helper/Settings.php:107
|
405 |
+
msgid "Sales countries"
|
406 |
+
msgstr "Vertriebsländer"
|
407 |
+
|
408 |
+
#: src/Mollie/WC/Helper/Settings.php:61
|
409 |
+
msgid "%s display settings"
|
410 |
+
msgstr "%s Anzeigeeinstellungen"
|
411 |
+
|
412 |
+
#: inc/settings/mollie_advanced_settings.php:124
|
413 |
+
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"
|
414 |
+
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"
|
415 |
+
|
416 |
+
#: inc/settings/mollie_advanced_settings.php:109
|
417 |
+
msgid "API Payment Description"
|
418 |
+
msgstr "Beschreibung für Zahlung über API"
|
419 |
+
|
420 |
+
#: inc/settings/mollie_advanced_settings.php:99
|
421 |
+
msgid "Click %shere%s to read more about the differences between the Payments and Orders API"
|
422 |
+
msgstr "%sHier%s kannst du mehr über die Unterschiede zwischen der Payments API und der Orders API erfahren"
|
423 |
+
|
424 |
+
#: inc/settings/mollie_advanced_settings.php:82
|
425 |
+
msgid "Select API Method"
|
426 |
+
msgstr "API-Methode auswählen"
|
427 |
+
|
428 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2645
|
429 |
+
msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb."
|
430 |
+
msgstr "%1$sMollie-Zahlungen für WooCommerce%2$s Datei konnte nicht hochgeladen werden. Die Dateigröße muss weniger als 500 KB betragen."
|
431 |
+
|
432 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2606
|
433 |
+
msgid " +%1s%2s + %3s%% Fee"
|
434 |
+
msgstr " +%1s%2s + %3s%% Gebühr"
|
435 |
+
|
436 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2589
|
437 |
+
msgid " +%1s%% Fee"
|
438 |
+
msgstr " +%1s%% Gebühr"
|
439 |
+
|
440 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2579
|
441 |
+
msgid " +%1s%2s Fee"
|
442 |
+
msgstr " +%1s%2s Gebühr"
|
443 |
+
|
444 |
+
#: src/Mollie/WC/Gateway/Abstract.php:138
|
445 |
+
msgid "No custom logo selected"
|
446 |
+
msgstr "Kein eigenes Logo ausgewählt"
|
447 |
+
|
448 |
+
#: src/Mollie/WC/Helper/Settings.php:226
|
449 |
+
msgid "Limit the maximum fee added on checkout. Default 0"
|
450 |
+
msgstr "Setze einen Grenzwert für die Gebühr, die zum Einkaufswagen hinzugefügt wird. Standard: 0"
|
451 |
+
|
452 |
+
#: src/Mollie/WC/Helper/Settings.php:223
|
453 |
+
msgid "Payment surcharge limit in %s"
|
454 |
+
msgstr "Grenzwert für den Zuschlag in %s"
|
455 |
+
|
456 |
+
#: src/Mollie/WC/Helper/Settings.php:213
|
457 |
+
msgid "Control the percentage fee added on checkout. Default 0.01"
|
458 |
+
msgstr "Lege einen Prozentsatz für die Gebühr fest, die zum Einkaufswagen hinzugefügt wird. Standard: 0,01"
|
459 |
+
|
460 |
+
#: src/Mollie/WC/Helper/Settings.php:210
|
461 |
+
msgid "Payment surcharge percentage amount %"
|
462 |
+
msgstr "Prozentsatz für den Zuschlag in %"
|
463 |
+
|
464 |
+
#: src/Mollie/WC/Helper/Settings.php:200
|
465 |
+
msgid "Control the fee added on checkout. Default 0.01"
|
466 |
+
msgstr "Lege die Gebühr fest, die zum Einkaufswagen hinzugefügt wird. Standard: 0,01"
|
467 |
+
|
468 |
+
#: src/Mollie/WC/Helper/Settings.php:197
|
469 |
+
msgid "Payment surcharge fixed amount in %s"
|
470 |
+
msgstr "Fester Betrag des Zuschlags in %s"
|
471 |
+
|
472 |
+
#: src/Mollie/WC/Helper/Settings.php:190
|
473 |
+
msgid "Choose a payment surcharge for this gateway"
|
474 |
+
msgstr "Wähle eine Zahlungsgebühr für dieses Zahlungsportal aus"
|
475 |
+
|
476 |
+
#: src/Mollie/WC/Helper/Settings.php:184
|
477 |
+
msgid "Fixed fee and percentage"
|
478 |
+
msgstr "Feste Gebühr und Prozentsatz"
|
479 |
+
|
480 |
+
#: src/Mollie/WC/Helper/Settings.php:180
|
481 |
+
msgid "Percentage"
|
482 |
+
msgstr "Prozentsatz"
|
483 |
+
|
484 |
+
#: src/Mollie/WC/Helper/Settings.php:176
|
485 |
+
msgid "Fixed fee"
|
486 |
+
msgstr "Feste Gebühr"
|
487 |
+
|
488 |
+
#: src/Mollie/WC/Helper/Settings.php:172
|
489 |
+
msgid "No fee"
|
490 |
+
msgstr "Keine Gebühr"
|
491 |
+
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:166
|
493 |
+
msgid "Payment Surcharge"
|
494 |
+
msgstr "Zahlungsgebühr"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Helper/Settings.php:150
|
497 |
+
msgid "Upload a custom icon for this gateway. The feature must be enabled."
|
498 |
+
msgstr "Lade ein eigenes Symbol für dieses Zahlungsportal hoch. Die entsprechende Funktion muss aktiviert sein."
|
499 |
+
|
500 |
+
#: src/Mollie/WC/Helper/Settings.php:143
|
501 |
+
msgid "Upload custom logo"
|
502 |
+
msgstr "Eigenes Logo hochladen"
|
503 |
+
|
504 |
+
#: src/Mollie/WC/Helper/Settings.php:137
|
505 |
+
msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options."
|
506 |
+
msgstr "Aktiviere die Funktion zum Hinzufügen eines eigenen Logos für dieses Zahlungsportal. Die Funktion hat Vorrang über andere Logo-Optionen."
|
507 |
+
|
508 |
+
#: src/Mollie/WC/Helper/Settings.php:132
|
509 |
+
msgid "Enable custom logo"
|
510 |
+
msgstr "Eigenes Logo aktivieren"
|
511 |
+
|
512 |
+
#: src/Mollie/WC/Helper/GatewaySurchargeHandler.php:253
|
513 |
+
msgid "Fee"
|
514 |
+
msgstr "Gebühr"
|
515 |
+
|
516 |
+
#: inc/settings/mollie_applepay_settings.php:106
|
517 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:32
|
518 |
+
msgid "Enable the Apple Pay direct buy button on the Product page"
|
519 |
+
msgstr "Kaufschaltfläche „Direktkauf über Apple Pay“ auf der Produktseite aktivieren"
|
520 |
+
|
521 |
+
#: inc/settings/mollie_applepay_settings.php:103
|
522 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:29
|
523 |
+
msgid "Enable Apple Pay Button on Product page"
|
524 |
+
msgstr "Schalfläche Apple Pay auf Produktseite aktivieren"
|
525 |
+
|
526 |
+
#: inc/settings/mollie_applepay_settings.php:91
|
527 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:21
|
528 |
+
msgid "Enable the Apple Pay direct buy button on the Cart page"
|
529 |
+
msgstr "Kaufschaltfläche „Direktkauf über Apple Pay“ im Einkaufswagen aktivieren"
|
530 |
+
|
531 |
+
#: inc/settings/mollie_applepay_settings.php:88
|
532 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:18
|
533 |
+
msgid "Enable Apple Pay Button on Cart page"
|
534 |
+
msgstr "Schalfläche Apple Pay im Einkaufswagen aktivieren"
|
535 |
+
|
536 |
+
#: pluginEnvironmentChecker/EnvironmentChecker.php:49
|
537 |
+
msgid "Validation failed with %1$d errors"
|
538 |
+
msgstr "Validierung fehlgeschlagen mit %1$d errors"
|
539 |
+
|
540 |
+
#: src/Mollie/WC/Plugin.php:591
|
541 |
+
msgid "Mollie Voucher category"
|
542 |
+
msgstr "Mollie-Gutscheinkategorie"
|
543 |
+
|
544 |
+
#: src/Mollie/WC/Plugin.php:531 src/Mollie/WC/Plugin.php:594
|
545 |
+
msgid "Same as default category"
|
546 |
+
msgstr "Entspricht Standardkategorie"
|
547 |
+
|
548 |
+
#: src/Mollie/WC/Plugin.php:464 src/Mollie/WC/Plugin.php:487
|
549 |
+
msgid "Select a voucher category to apply to all products with this category"
|
550 |
+
msgstr "Wähle eine Gutscheinkategorie aus, die auf alle Produkte dieser Kategorie angewendet werden soll"
|
551 |
+
|
552 |
+
#: src/Mollie/WC/Plugin.php:430 src/Mollie/WC/Plugin.php:462
|
553 |
+
#: src/Mollie/WC/Plugin.php:485 src/Mollie/WC/Plugin.php:598
|
554 |
+
msgid "Gift"
|
555 |
+
msgstr "Geschenk"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Plugin.php:429 src/Mollie/WC/Plugin.php:461
|
558 |
+
#: src/Mollie/WC/Plugin.php:484 src/Mollie/WC/Plugin.php:597
|
559 |
+
msgid "Eco"
|
560 |
+
msgstr "Öko"
|
561 |
+
|
562 |
+
#: src/Mollie/WC/Plugin.php:428 src/Mollie/WC/Plugin.php:460
|
563 |
+
#: src/Mollie/WC/Plugin.php:483 src/Mollie/WC/Plugin.php:596
|
564 |
+
msgid "Meal"
|
565 |
+
msgstr "Essen"
|
566 |
+
|
567 |
+
#: src/Mollie/WC/Plugin.php:427 src/Mollie/WC/Plugin.php:459
|
568 |
+
#: src/Mollie/WC/Plugin.php:482 src/Mollie/WC/Plugin.php:595
|
569 |
+
msgid "No Category"
|
570 |
+
msgstr "Keine Kategorie"
|
571 |
+
|
572 |
+
#: src/Mollie/WC/Plugin.php:426 src/Mollie/WC/Plugin.php:458
|
573 |
+
#: src/Mollie/WC/Plugin.php:481
|
574 |
+
msgid "--Please choose an option--"
|
575 |
+
msgstr "--Bitte eine Option wählen--"
|
576 |
+
|
577 |
+
#: src/Mollie/WC/Plugin.php:423 src/Mollie/WC/Plugin.php:456
|
578 |
+
#: src/Mollie/WC/Plugin.php:478
|
579 |
+
msgid "Mollie Voucher Category"
|
580 |
+
msgstr "Mollie-Gutscheinkategorie"
|
581 |
+
|
582 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
583 |
+
msgid "Contact Support"
|
584 |
+
msgstr "Support kontaktieren"
|
585 |
+
|
586 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
587 |
+
msgid "Plugin Documentation"
|
588 |
+
msgstr "Plugin-Dokumentation"
|
589 |
+
|
590 |
+
#: src/Mollie/WC/Helper/Settings.php:619
|
591 |
+
msgid "to create a new Mollie account and start receiving payments in a couple of minutes. "
|
592 |
+
msgstr "um ein neues Mollie-Konto zu eröffnen und in wenigen Minuten Zahlungen zu erhalten."
|
593 |
+
|
594 |
+
#: src/Mollie/WC/Helper/Settings.php:617
|
595 |
+
msgid " Mollie is dedicated to making payments better for WooCommerce. "
|
596 |
+
msgstr "Ziel von Mollie ist es, Zahlungen für WooCommerce zu verbessern."
|
597 |
+
|
598 |
+
#: src/Mollie/WC/Helper/Settings.php:616
|
599 |
+
msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie."
|
600 |
+
msgstr "Mit dem wirkungsvollen Plugin von Mollie kannst du fertig konfigurierte Zahlungsmethoden einfach in deinen WooCommerce-Onlineshop einfügen."
|
601 |
+
|
602 |
+
#: src/Mollie/WC/Helper/Settings.php:615
|
603 |
+
msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them."
|
604 |
+
msgstr "Integriere schnell alle gängigen Zahlungsmethoden in WooCommerce, wo immer du sie brauchst."
|
605 |
+
|
606 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:147
|
607 |
+
msgid "Advanced"
|
608 |
+
msgstr "Fortgeschritten"
|
609 |
+
|
610 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:143
|
611 |
+
msgid "Apple Pay Button"
|
612 |
+
msgstr "Schaltfläche Apple Pay"
|
613 |
+
|
614 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:138
|
615 |
+
msgid "General"
|
616 |
+
msgstr "Allgemein"
|
617 |
+
|
618 |
+
#: src/Mollie/WC/Gateway/Abstract.php:283
|
619 |
+
msgid "Select none"
|
620 |
+
msgstr "Auswahl aufheben"
|
621 |
+
|
622 |
+
#: src/Mollie/WC/Gateway/Abstract.php:282
|
623 |
+
msgid "Select all"
|
624 |
+
msgstr "Alle auswählen"
|
625 |
+
|
626 |
+
#: src/Mollie/WC/Gateway/Abstract.php:273
|
627 |
+
msgid "Country"
|
628 |
+
msgstr "Land"
|
629 |
+
|
630 |
+
#: src/Mollie/WC/Gateway/Abstract.php:272
|
631 |
+
msgid "Choose countries…"
|
632 |
+
msgstr "Länder wählen…"
|
633 |
+
|
634 |
+
#: src/Mollie/WC/Gateway/Abstract.php:244
|
635 |
+
msgid "Return to payments"
|
636 |
+
msgstr "Zurück zu den Zahlungen"
|
637 |
+
|
638 |
+
#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114
|
639 |
+
msgid "Sell to specific countries"
|
640 |
+
msgstr "In bestimmten Ländern verkaufen"
|
641 |
+
|
642 |
+
#: inc/settings/mollie_advanced_settings.php:73
|
643 |
+
msgid "Single Click Payments"
|
644 |
+
msgstr "Zahlungen mit einem Klick"
|
645 |
+
|
646 |
+
#: inc/settings/mollie_advanced_settings.php:68
|
647 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%1$s</code>. Required if WooCommerce Subscriptions is being used! Read more about <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> and how it improves your conversion."
|
648 |
+
msgstr "Soll Mollie den Namen und die E-Mail-Adresse des Kunden für Single-Click-Bezahlungen speichern? Standard: <code>%1$s</code>. Verpflichtend bei Verwendung von WooCommerce Subscriptions. Erfahre mehr über <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> und wie es deinen Umsatz steigert."
|
649 |
+
|
650 |
+
#: inc/settings/mollie_advanced_settings.php:6
|
651 |
+
msgid "Mollie advanced settings"
|
652 |
+
msgstr "Fortgeschrittene Mollie-Einstellungen"
|
653 |
+
|
654 |
+
#: inc/settings/mollie_applepay_settings.php:84
|
655 |
+
msgid "The following options are required to use the Apple Pay Direct Button"
|
656 |
+
msgstr "Die folgenden Optionen sind für die Verwendung der Schaltfläche „Direktkauf über Apple Pay“ verpflichtend"
|
657 |
+
|
658 |
+
#: inc/settings/mollie_applepay_settings.php:14
|
659 |
+
msgid "The following options are required to use the Apple Pay gateway"
|
660 |
+
msgstr "Die folgenden Optionen sind für die Verwendung des Zahlungsportals Apple Pay verpflichtend"
|
661 |
|
662 |
+
#: inc/settings/mollie_components_enabler.php:8
|
663 |
+
msgid "Use the Mollie Components for this Gateway. Read more about <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> and how it improves your conversion."
|
664 |
+
msgstr "Mollie-Komponenten für dieses Portal verwenden. Erfahre mehr über <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> und wie es deinen Umsatz steigert."
|
665 |
+
|
666 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:11
|
667 |
+
msgid "The following options are required to use the Apple Pay button"
|
668 |
+
msgstr "Die folgenden Optionen sind für die Verwendung der Schaltfläche Apple Pay verpflichtend"
|
669 |
+
|
670 |
+
#: inc/settings/mollie_applepay_settings.php:79
|
671 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
672 |
+
msgid "Apple Pay button settings"
|
673 |
+
msgstr "Einstellungen zur Schaltfläche Apple Pay"
|
674 |
+
|
675 |
+
#: mollie-payments-for-woocommerce.php:91
|
676 |
+
msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s."
|
677 |
+
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."
|
678 |
+
|
679 |
+
#: src/Mollie/WC/Plugin.php:541
|
680 |
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."
|
681 |
+
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ähle die Option „Keine Kategorie“."
|
682 |
|
683 |
+
#: src/Mollie/WC/Plugin.php:524
|
684 |
msgid "Products voucher category"
|
685 |
+
msgstr "Produktgutscheinkategorie"
|
686 |
|
687 |
+
#: src/Mollie/WC/Plugin.php:308
|
688 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
689 |
+
msgstr "%1$sMollie-Zahlungen für WooCommerce%2$s Testmodus aktiv. %3$s Deaktiviere den Testmodus,%4$s bevor du Änderungen in die Produktivumgebung einbindest."
|
690 |
|
691 |
+
#: src/Mollie/WC/Helper/Settings.php:654 src/Mollie/WC/Plugin.php:391
|
692 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:11
|
693 |
msgid "Mollie Settings"
|
694 |
msgstr "Mollie-Einstellungen"
|
695 |
|
705 |
|
706 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
707 |
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"
|
708 |
+
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."
|
709 |
|
710 |
+
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:520
|
711 |
msgid "Select the default products category"
|
712 |
+
msgstr "Standardkategorie für Produkte wählen"
|
713 |
|
714 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:40
|
715 |
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"
|
716 |
+
msgstr "Aktiviere diese Option, wenn du eine Anzahl an Tagen festlegen möchtest, nach deren Ablauf eine Zahlung abläuft. Alle Transaktionen werden dadurch in Zahlungen anstatt Bestellungen umgewandelt"
|
717 |
|
718 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:39
|
719 |
+
#: src/Mollie/WC/Helper/Settings.php:245
|
720 |
msgid "Enable expiry date for payments"
|
721 |
msgstr "Ablaufdatum für Zahlungen aktivieren"
|
722 |
|
723 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:38
|
724 |
+
#: src/Mollie/WC/Helper/Settings.php:244
|
725 |
msgid "Activate expiry date setting"
|
726 |
+
msgstr "Einstellungen zum Ablaufdatum aktivieren"
|
727 |
|
728 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2178
|
729 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
730 |
msgid " Remainder: %1$s %2$s %3$s."
|
731 |
msgstr " Verbleibend: %1$s %2$s %3$s."
|
732 |
|
733 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2166
|
734 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
735 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
736 |
+
msgstr "Mollie - Gutscheindetails: %1$s %2$s %3$s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
|
738 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54
|
739 |
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"
|
740 |
+
msgstr "%1$sValidierungsfehler bei Apple Pay%2$s Überprüfe die %3$sAnforderungen von Apple an Server%4$s, um den Fehler zu beheben, damit die Schaltfläche Apple Pay korrekt funktioniert"
|
741 |
|
742 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39
|
743 |
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"
|
744 |
+
msgstr "%1$sServer erfüllt die Anforderungen von Apple nicht%2$s Überprüfe die %3$sAnforderungen von Apple an Server%4$s, um den Fehler zu beheben, damit die Schaltfläche Apple Pay korrekt funktioniert"
|
745 |
|
746 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
747 |
msgid "Show Mastercard Icon"
|
750 |
#: inc/settings/mollie_components.php:94
|
751 |
msgctxt "Mollie Components Settings"
|
752 |
msgid "Transform Text "
|
753 |
+
msgstr "Text umwandeln"
|
754 |
|
755 |
#: inc/settings/mollie_components.php:82
|
756 |
msgctxt "Mollie Components Settings"
|
760 |
#: inc/settings/mollie_components.php:72
|
761 |
msgctxt "Mollie Components Settings"
|
762 |
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
763 |
+
msgstr "Füge Abstände zu den Komponenten hinzu. Beispiele für erlaubte Einheiten: ‚16px 16px 16px 16px‘, ‚em‘, ‚px‘, ‚rem‘."
|
764 |
|
765 |
#: inc/settings/mollie_components.php:35
|
766 |
msgctxt "Mollie Components Settings"
|
793 |
|
794 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
795 |
msgid "Show customized creditcard icons on checkout page"
|
796 |
+
msgstr "Benutzerdefinierte Kreditkartensymbole auf der Bezahlseite anzeigen"
|
797 |
|
798 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
799 |
msgid "Enable Icons Selector"
|
800 |
+
msgstr "Auswahlwerkzeug für Symbole aktivieren"
|
801 |
|
802 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
803 |
msgid "Customize Icons"
|
804 |
msgstr "Symbole personalisieren"
|
805 |
|
806 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
807 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2129
|
808 |
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)."
|
809 |
+
msgstr " %1$s-Zahlung %2$s über Mollie (%3$s %4$s). Du musst die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen."
|
810 |
|
811 |
+
#: src/Mollie/WC/Gateway/Abstract.php:590
|
812 |
msgid "Failed switching subscriptions, no valid mandate."
|
813 |
+
msgstr "Umstellen des Abonnements wegen Fehlen eines gültigen Mandats fehlgeschlagen."
|
|
|
|
|
|
|
|
|
814 |
|
815 |
#: inc/settings/mollie_components_enabler.php:6
|
816 |
msgid "Enable Mollie Components"
|
941 |
msgid "Base Styles"
|
942 |
msgstr "Basisformat"
|
943 |
|
944 |
+
#: src/Mollie/WC/Plugin.php:950
|
945 |
msgid "An unknown error occurred, please check the card fields."
|
946 |
msgstr "Ein unbekannter Fehler ist aufgetreten, bitte überprüfe die Kartenfelder."
|
947 |
|
948 |
+
#: src/Mollie/WC/Plugin.php:943
|
949 |
msgid "Verification Code"
|
950 |
msgstr "Kartenprüfnummer"
|
951 |
|
952 |
+
#: src/Mollie/WC/Plugin.php:939
|
953 |
msgid "Expiry Date"
|
954 |
msgstr "Ablaufdatum"
|
955 |
|
956 |
+
#: src/Mollie/WC/Plugin.php:935
|
957 |
msgid "Card Number"
|
958 |
msgstr "Kartennummer"
|
959 |
|
960 |
+
#: src/Mollie/WC/Plugin.php:931
|
961 |
msgid "Card Holder"
|
962 |
msgstr "Karteninhaber"
|
963 |
|
964 |
+
#: inc/settings/mollie_components_enabler.php:12
|
965 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
966 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:139
|
967 |
msgid "Mollie Components"
|
968 |
msgstr "Mollie-Komponenten"
|
969 |
|
970 |
+
#: src/Mollie/WC/Plugin.php:757
|
971 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
972 |
msgstr "%1$s stornierte Artikel bei WooCommerce und Mollie."
|
973 |
|
974 |
+
#: src/Mollie/WC/Plugin.php:739
|
975 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
976 |
msgstr "%1$s erstattete Artikel bei WooCommerce und Mollie."
|
977 |
|
981 |
|
982 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
983 |
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
984 |
+
msgstr "Die Auftragspositions-ID zum folgenden Remote-Artikel konnte nicht abgerufen werden: %1$s."
|
985 |
|
986 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
987 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
988 |
msgstr "Eine der WooCommerce-Auftragspositionen stimmt nicht mit dem entsprechenden Metawert für die ID des Rückerstattungsartikels der Mollie-Auftragsposition überein."
|
989 |
|
990 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119
|
991 |
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."
|
992 |
msgstr "Mollie erlaubt keine teilweise Rückerstattung des vollen Betrags oder der vollen Menge mindestens einer Auftragszeile."
|
993 |
|
994 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145
|
996 |
msgid "Order completed using %1$s payment (%2$s)."
|
997 |
msgstr "Vorgang über %1$s-Bezahlung (%2$s) erfolgt."
|
998 |
|
1029 |
|
1030 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
1031 |
msgid "Przelewy24"
|
1032 |
+
msgstr "Przelewy24 "
|
1033 |
|
1034 |
+
#: src/Mollie/WC/Helper/Status.php:89
|
1035 |
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."
|
1036 |
msgstr "Mollie Payments for WooCommerce benötigt die JSON-Erweiterung für PHP. Schalte sie auf deinem Server frei oder bitte deinen Hosting-Anbieter, sie freizuschalten."
|
1037 |
|
1038 |
+
#: src/Mollie/WC/Payment/Order.php:836
|
1039 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
1040 |
+
msgstr "Erstattungsbetrag von %s erstatteten %s bei WooCommerce und Mollie.%s Erstattungs-ID: %s. "
|
1041 |
|
1042 |
+
#: src/Mollie/WC/Payment/Order.php:758
|
1043 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
1044 |
+
msgstr "%sx %s erstattet für %s%s bei WooCommerce und Mollie.%s Erstattungs-ID: %s. "
|
1045 |
|
1046 |
+
#: src/Mollie/WC/Payment/Order.php:742
|
1047 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
1048 |
+
msgstr "%sx %s storniert für %s%s bei WooCommerce und Mollie. "
|
1049 |
|
1050 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1051 |
+
#: src/Mollie/WC/Payment/Order.php:361
|
1052 |
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!"
|
1053 |
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."
|
1054 |
|
1055 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1238
|
1057 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
1058 |
msgstr "%s-Zahlung über Mollie zurückgebucht (%s). Abonnementstatus aktualisiert, bitte prüfen (und, falls verwendet, Produktbestände anpassen)."
|
1059 |
|
|
|
|
|
|
|
|
|
|
|
1060 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
1061 |
msgid "Order"
|
1062 |
msgstr "Bestellung"
|
1067 |
msgstr "%s-Bezahlvorgang (%s) abgebrochen."
|
1068 |
|
1069 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1070 |
+
#: src/Mollie/WC/Payment/Order.php:931
|
1071 |
msgid "%s order (%s) expired ."
|
1072 |
msgstr "%s-Bestellung (%s) abgelaufen."
|
1073 |
|
1074 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1075 |
+
#: src/Mollie/WC/Payment/Order.php:509
|
1076 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
1077 |
msgstr "%s-Bestellung (%s) abgelaufen, wegen einer weiteren offenen Zahlung (%s) jedoch nicht abgebrochen."
|
1078 |
|
1079 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1080 |
+
#: src/Mollie/WC/Payment/Order.php:444
|
1081 |
msgid "%s order (%s) cancelled ."
|
1082 |
msgstr "%s-Bestellung (%s) abgebrochen."
|
1083 |
|
1084 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1085 |
+
#: src/Mollie/WC/Payment/Order.php:314
|
1086 |
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."
|
1087 |
+
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. "
|
|
|
|
|
|
|
|
|
1088 |
|
1089 |
+
#: inc/settings/mollie_advanced_settings.php:57
|
1090 |
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."
|
1091 |
+
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."
|
1092 |
|
1093 |
+
#: inc/settings/mollie_advanced_settings.php:26
|
1094 |
msgid "Automatically send WordPress language"
|
1095 |
msgstr "WordPress-Sprache automatisch übermitteln"
|
1096 |
|
1097 |
+
#: inc/settings/mollie_advanced_settings.php:18
|
1098 |
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."
|
1099 |
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."
|
1100 |
|
1101 |
+
#: src/Mollie/WC/Helper/OrderLines.php:497
|
1102 |
msgid "Shipping"
|
1103 |
msgstr "Versand"
|
1104 |
|
1117 |
|
1118 |
#: src/Mollie/WC/Helper/Status.php:131
|
1119 |
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
1120 |
+
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. "
|
1121 |
|
1122 |
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
1123 |
#. version
|
1124 |
#: src/Mollie/WC/Helper/Status.php:104
|
1125 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
1126 |
+
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"
|
1127 |
|
1128 |
+
#: src/Mollie/WC/Helper/Settings.php:825
|
1129 |
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."
|
1130 |
+
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. "
|
1131 |
|
1132 |
+
#: src/Mollie/WC/Helper/Settings.php:801
|
1133 |
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."
|
1134 |
+
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. "
|
1135 |
|
1136 |
+
#: inc/settings/mollie_advanced_settings.php:54
|
1137 |
msgid "Lithuanian"
|
1138 |
msgstr "Litauisch"
|
1139 |
|
1140 |
+
#: inc/settings/mollie_advanced_settings.php:53
|
1141 |
msgid "Latvian"
|
1142 |
msgstr "Lettisch"
|
1143 |
|
1144 |
+
#: inc/settings/mollie_advanced_settings.php:52
|
1145 |
msgid "Polish"
|
1146 |
msgstr "Polnisch"
|
1147 |
|
1148 |
+
#: inc/settings/mollie_advanced_settings.php:51
|
1149 |
msgid "Hungarian"
|
1150 |
msgstr "Ungarisch"
|
1151 |
|
1152 |
+
#: inc/settings/mollie_advanced_settings.php:50
|
1153 |
msgid "Icelandic"
|
1154 |
msgstr "Isländisch"
|
1155 |
|
1156 |
+
#: inc/settings/mollie_advanced_settings.php:49
|
1157 |
msgid "Danish"
|
1158 |
msgstr "Dänisch"
|
1159 |
|
1160 |
+
#: inc/settings/mollie_advanced_settings.php:48
|
1161 |
msgid "Finnish"
|
1162 |
msgstr "Finnisch"
|
1163 |
|
1164 |
+
#: inc/settings/mollie_advanced_settings.php:47
|
1165 |
msgid "Swedish"
|
1166 |
msgstr "Schwedisch"
|
1167 |
|
1168 |
+
#: inc/settings/mollie_advanced_settings.php:46
|
1169 |
msgid "Norwegian"
|
1170 |
msgstr "Norwegisch"
|
1171 |
|
1172 |
+
#: inc/settings/mollie_advanced_settings.php:45
|
1173 |
msgid "Italian"
|
1174 |
msgstr "Italienisch"
|
1175 |
|
1176 |
+
#: inc/settings/mollie_advanced_settings.php:44
|
1177 |
msgid "Portuguese"
|
1178 |
msgstr "Portugiesisch"
|
1179 |
|
1180 |
+
#: inc/settings/mollie_advanced_settings.php:43
|
1181 |
msgid "Catalan"
|
1182 |
msgstr "Katalanisch"
|
1183 |
|
1184 |
+
#: inc/settings/mollie_advanced_settings.php:41
|
1185 |
msgid "Swiss German"
|
1186 |
msgstr "Deutsch (Schweiz)"
|
1187 |
|
1188 |
+
#: inc/settings/mollie_advanced_settings.php:40
|
1189 |
msgid "Austrian German"
|
1190 |
msgstr "Deutsch (Österreich)"
|
1191 |
|
1192 |
+
#: src/Mollie/WC/Helper/Api.php:42
|
1193 |
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."
|
1194 |
+
msgstr "Ungültige(r) API-Schlüssel. Du erhältst die API-Schlüssel über die %sEntwicklerseite im Mollie-Dashboard%s. API-Schlüssel müssen mit ‚live_‘ oder ‚test_‘ beginnen, mindestens 30 Zeichen enthalten und dürfen keine Sonderzeichen enthalten."
|
1195 |
|
1196 |
+
#: src/Mollie/WC/Helper/Api.php:40
|
1197 |
msgid "No API key provided. Please set your Mollie API keys below."
|
1198 |
+
msgstr "Kein API-Schlüssel vorgegeben. Lege deine Mollie-API-Schlüssel unten fest."
|
1199 |
|
1200 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
1201 |
msgid "Giropay"
|
1206 |
msgstr "EPS"
|
1207 |
|
1208 |
#. translators: Placeholder 1: Payment method title
|
1209 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:314
|
1210 |
msgid "Could not create %s renewal payment."
|
1211 |
+
msgstr "Erneute %s-Zahlung konnte nicht erstellt werden. "
|
1212 |
|
1213 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:271
|
1214 |
msgid "The customer (%s) does not have a valid mandate."
|
1215 |
msgstr "Der Kunde (%s) hat kein gültiges Mandat."
|
1216 |
|
1217 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:262
|
1218 |
msgid "The customer (%s) could not be used or found. "
|
1219 |
msgstr "Der Kunde (%s) konnte nicht verwendet oder gefunden werden."
|
1220 |
|
1221 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
1222 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
1223 |
#. placeholder 5: refund ID
|
1224 |
+
#: src/Mollie/WC/Payment/Payment.php:511
|
1225 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
1226 |
msgstr "Rückerstattung %s%s%s – Zahlung: %s, Rückerstattung: %s"
|
1227 |
|
1228 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1229 |
+
#: src/Mollie/WC/Payment/Object.php:637
|
1230 |
msgid "%s payment failed via Mollie (%s)."
|
1231 |
msgstr "%s-Bezahlung über Mollie fehlgeschlagen (%s)."
|
1232 |
|
1233 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1145
|
1234 |
msgid "New chargeback %s processed! Order note and order status updated."
|
1235 |
msgstr "Neue Rückbuchung %s erfasst. Bestellungsnotiz und Status aktualisiert."
|
1236 |
|
1237 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1009
|
1238 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
1239 |
msgstr "Neue Rückerstattung %s im Mollie-Dashboard verarbeitet. Bestellungsnotiz hinzugefügt, Bestellung jedoch nicht aktualisiert."
|
1240 |
|
1241 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
1242 |
#. Mollie currencies
|
1243 |
+
#: src/Mollie/WC/Gateway/Abstract.php:364
|
1244 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
1245 |
+
msgstr "Die aktuelle Shopwährung %s wird von Mollie nicht unterstützt. %sMehr Informationen zu unterstützten Währungen und Bezahlungsmethoden.%s"
|
|
|
|
|
|
|
|
|
1246 |
|
1247 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1248 |
+
#: src/Mollie/WC/Payment/Object.php:677
|
|
|
1249 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
1250 |
+
msgstr "Der Mollie-WebHook wurde aufgerufen, die Zahlung wurde jedoch gleichzeitig über %s gestartet. Der Bestellstatus wird deshalb nicht aktualisiert. "
|
|
|
|
|
|
|
|
|
|
|
1251 |
|
1252 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1329
|
1253 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1338
|
1254 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
1255 |
+
msgstr "Deine Zahlung war nicht erfolgreich. Vervollständige deine Bestellung bitte mit einer anderen Zahlungsmethode. "
|
1256 |
|
1257 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1258 |
+
#: src/Mollie/WC/Payment/Object.php:603
|
1259 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
1260 |
msgstr "Erneute %s-Zahlung über Mollie fehlgeschlagen (%s). Du musst die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen."
|
1261 |
|
1265 |
msgstr "Bancontact"
|
1266 |
|
1267 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1268 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1617
|
1269 |
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."
|
1270 |
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."
|
1271 |
|
1272 |
+
#: src/Mollie/WC/Gateway/Abstract.php:589
|
1273 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
1274 |
msgstr "Abonnement-Umstellung fehlgeschlagen, kein valides Mandat gefunden. Leite einen neuen Bestellvorgang ein, um dein Abonnement zu ändern."
|
1275 |
|
|
|
|
|
|
|
|
|
1276 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1277 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1177
|
1278 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
1279 |
msgstr "%s-Zahlung über Mollie zurückgebucht (%s). Du musst die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen."
|
1280 |
|
1281 |
+
#: src/Mollie/WC/Gateway/Kbc.php:40
|
1282 |
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."
|
1283 |
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."
|
1284 |
|
1294 |
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."
|
1295 |
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."
|
1296 |
|
1297 |
+
#: src/Mollie/WC/Gateway/Ideal.php:35
|
1298 |
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."
|
1299 |
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."
|
1300 |
|
1301 |
+
#: src/Mollie/WC/Gateway/Ideal.php:33
|
1302 |
msgid "Show iDEAL banks dropdown"
|
1303 |
msgstr "Drop-down-Liste für iDEAL-Banken anzeigen"
|
1304 |
|
1305 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:39
|
1306 |
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."
|
1307 |
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."
|
1308 |
|
1314 |
msgid "Show gift cards dropdown"
|
1315 |
msgstr "Drop-down-Liste für Geschenkkarten anzeigen"
|
1316 |
|
1317 |
+
#: src/Mollie/WC/Gateway/Abstract.php:578
|
1318 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
1319 |
msgstr "Die Bestellung wurde wegen eines bestehenden, gültigen Mandats bei Mollie intern abgewickelt."
|
1320 |
|
1321 |
+
#: inc/settings/mollie_advanced_settings.php:16
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1322 |
msgid "Cancelled"
|
1323 |
msgstr "Storniert"
|
1324 |
|
1325 |
+
#: inc/settings/mollie_advanced_settings.php:15
|
1326 |
msgid "Pending"
|
1327 |
msgstr "Offen"
|
1328 |
|
1329 |
+
#: inc/settings/mollie_advanced_settings.php:12
|
1330 |
msgid "Order status after cancelled payment"
|
1331 |
msgstr "Bestellstatus nach stornierter Zahlung"
|
1332 |
|
1333 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
1334 |
#. placeholder 3: consumer BIC
|
1335 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
1336 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124
|
1337 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
|
|
|
|
1338 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
1339 |
msgstr "Zahlung durch <strong>%s</strong> erfolgt (IBAN (letzte 4 Ziffern): %s, BIC: %s)"
|
1340 |
|
1341 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1653
|
1342 |
msgid "Your order has been cancelled."
|
1343 |
msgstr "Deine Bestellung wurde storniert."
|
1344 |
|
1345 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1626
|
1346 |
msgid ", payment pending."
|
1347 |
msgstr ", Zahlung ausstehend"
|
1348 |
|
1349 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1590
|
1350 |
msgid "Order cancelled"
|
1351 |
msgstr "Bestellung storniert"
|
1352 |
|
1353 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
1354 |
#. status, placeholder 3: payment ID
|
1355 |
+
#: src/Mollie/WC/Gateway/Abstract.php:895
|
1356 |
msgid "%s payment %s (%s), not processed."
|
1357 |
msgstr "%s-Zahlung %s (%s), nicht verarbeitet."
|
1358 |
|
1359 |
#. translators: Default gift card dropdown description, displayed above issuer
|
1360 |
#. drop down
|
1361 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:74
|
1362 |
msgid "Select your gift card"
|
1363 |
msgstr "Wähle deine Geschenkkarte aus"
|
1364 |
|
1365 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:58
|
1366 |
msgid "Gift cards"
|
1367 |
msgstr "Geschenkkarten"
|
1368 |
|
1369 |
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
1370 |
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."
|
1371 |
+
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."
|
1372 |
|
1373 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1374 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:165
|
1375 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
1376 |
msgstr "Das Abonnement wird von ‚ausstehend‘ auf ‚aktiv‘ aktualisiert, bis die Zahlung fehlschlägt, da SEPA-Direktmandate etwas Zeit in Anspruch nehmen."
|
1377 |
|
1378 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1379 |
+
#: src/Mollie/WC/Payment/Payment.php:406
|
1380 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
1381 |
+
msgstr "%s-Bestellung abgelaufen (%s), wegen einer weiteren offenen Zahlung (%s) jedoch nicht abgebrochen."
|
1382 |
|
1383 |
+
#: src/subscriptions_status_check_functions.php:186
|
1384 |
msgid "There are still some subscriptions left, use the tool again!"
|
1385 |
msgstr "Es sind noch Abonnements übrig, verwende das Tool erneut."
|
1386 |
|
1387 |
+
#: src/subscriptions_status_check_functions.php:184
|
1388 |
msgid "No more subscriptions left to process!"
|
1389 |
msgstr "Keine zu verarbeitenden Abonnements übrig."
|
1390 |
|
1391 |
+
#: src/subscriptions_status_check_functions.php:171
|
1392 |
msgid "No subscriptions updated in this batch."
|
1393 |
msgstr "In dieser Charge wurden keine Abonnements aktualisiert."
|
1394 |
|
1395 |
+
#: src/subscriptions_status_check_functions.php:147
|
1396 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
1397 |
msgstr "Die Abonnements wurden nicht aktualisiert, da Mollie kein gültiges Mandat vorliegt. Verarbeitet durch das Tool ‚Mollie-Abonnementstatus‘."
|
1398 |
|
1399 |
+
#: src/subscriptions_status_check_functions.php:133
|
1400 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
1401 |
msgstr "Abonnement auf automatisierte Erneuerung über Mollie aktualisiert, Status auf aktiv gesetzt. Verarbeitet durch das Tool ‚Mollie-Abonnementstatus‘."
|
1402 |
|
1410 |
|
1411 |
#: src/subscriptions_status_check_functions.php:30
|
1412 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
1413 |
+
msgstr "Überprüft auf fälschlicherweise auf ‚manuelle Erneuerung‘ gesetzte Abonnements. Lies zunächst die"
|
1414 |
|
1415 |
+
#: inc/settings/mollie_advanced_settings.php:65
|
1416 |
msgid "Store customer details at Mollie"
|
1417 |
msgstr "Kundendetails des Geschäfts bei Mollie"
|
1418 |
|
1419 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1420 |
+
#: src/Mollie/WC/Plugin.php:130
|
1421 |
msgid "%s payment failed (%s)."
|
1422 |
msgstr "%s-Bezahlung fehlgeschlagen (%s)."
|
1423 |
|
1424 |
+
#: src/Mollie/WC/Gateway/Kbc.php:59
|
1425 |
msgid "KBC/CBC Payment Button"
|
1426 |
msgstr "KBC/CBC-Zahlungsbutton"
|
1427 |
|
1428 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:37 src/Mollie/WC/Gateway/Ideal.php:39
|
1429 |
+
#: src/Mollie/WC/Gateway/Kbc.php:38
|
1430 |
msgid "Issuers empty option"
|
1431 |
msgstr "Kartenaussteller-Option leer"
|
1432 |
|
1433 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:58
|
1434 |
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."
|
1435 |
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."
|
1436 |
|
1437 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:57
|
1438 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
1439 |
msgstr "Mollie-Bezahlseite überspringen, wenn Überweisung ausgewählt wurde"
|
1440 |
|
1441 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:56
|
1442 |
msgid "Skip Mollie payment screen"
|
1443 |
msgstr "Mollie-Bezahlseite überspringen"
|
1444 |
|
1459 |
msgid "Mollie Payments for WooCommerce"
|
1460 |
msgstr "Mollie-Zahlungen für WooCommerce"
|
1461 |
|
1462 |
+
#: src/Mollie/WC/Plugin.php:1320
|
1463 |
msgid "Logs"
|
1464 |
msgstr "Protokolle"
|
1465 |
|
1473 |
|
1474 |
#: src/Mollie/WC/Helper/Status.php:80
|
1475 |
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
1476 |
+
msgstr "Mollie-API-Client nicht installiert. Vergewissere dich, dass das Plugin korrekt installiert ist."
|
1477 |
|
1478 |
#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce
|
1479 |
#. version, placeholder 3: used WooCommerce version
|
1481 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
1482 |
msgstr "Das %s-Plugin benötigt WooCommerce %s oder höher, du verwendest Version %s. Aktualisiere bitte dein WooCommerce-Plugin."
|
1483 |
|
1484 |
+
#: src/Mollie/WC/Helper/Settings.php:698
|
1485 |
msgid "Debug Log"
|
1486 |
msgstr "Debug-Protokoll"
|
1487 |
|
1488 |
+
#: inc/settings/mollie_advanced_settings.php:38
|
1489 |
msgid "French (Belgium)"
|
1490 |
msgstr "Französisch (Belgien)"
|
1491 |
|
1492 |
+
#: inc/settings/mollie_advanced_settings.php:37
|
1493 |
msgid "French"
|
1494 |
msgstr "Französisch"
|
1495 |
|
1496 |
+
#: inc/settings/mollie_advanced_settings.php:42
|
1497 |
msgid "Spanish"
|
1498 |
msgstr "Spanisch"
|
1499 |
|
1500 |
+
#: inc/settings/mollie_advanced_settings.php:39
|
1501 |
msgid "German"
|
1502 |
msgstr "Deutsch"
|
1503 |
|
1504 |
+
#: inc/settings/mollie_advanced_settings.php:34
|
1505 |
msgid "English"
|
1506 |
msgstr "Englisch"
|
1507 |
|
1508 |
+
#: inc/settings/mollie_advanced_settings.php:36
|
1509 |
msgid "Flemish (Belgium)"
|
1510 |
msgstr "Flämisch (Belgien)"
|
1511 |
|
1512 |
+
#: inc/settings/mollie_advanced_settings.php:35
|
1513 |
msgid "Dutch"
|
1514 |
msgstr "Niederländisch"
|
1515 |
|
1516 |
+
#: inc/settings/mollie_advanced_settings.php:30
|
1517 |
msgid "Detect using browser language"
|
1518 |
msgstr "Über Browsersprache erkennen"
|
1519 |
|
1520 |
+
#: inc/settings/mollie_advanced_settings.php:23
|
1521 |
msgid "Payment screen language"
|
1522 |
msgstr "Sprache der Bezahlseite"
|
1523 |
|
1524 |
+
#: src/Mollie/WC/Helper/Settings.php:694
|
1525 |
msgid "Test API key should start with test_"
|
1526 |
msgstr "Der Test-API-Schlüssel sollte mit test_ beginnen"
|
1527 |
|
1528 |
+
#: src/Mollie/WC/Helper/Settings.php:683
|
1529 |
msgid "Test API key"
|
1530 |
msgstr "Test-API-Schlüssel"
|
1531 |
|
1532 |
+
#: src/Mollie/WC/Helper/Settings.php:679
|
1533 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
1534 |
msgstr "Aktiviere den Testmodus, wenn du das Plugin ohne echte Bezahlung testen möchtest."
|
1535 |
|
1536 |
+
#: src/Mollie/WC/Helper/Settings.php:676
|
1537 |
msgid "Enable test mode"
|
1538 |
msgstr "Testmodus aktivieren"
|
1539 |
|
1540 |
+
#: src/Mollie/WC/Helper/Settings.php:672
|
1541 |
msgid "Live API key should start with live_"
|
1542 |
msgstr "Der Live-API-Schlüssel sollte mit live_ beginnen"
|
1543 |
|
1544 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
1545 |
#. %s's Will be replaced by a link to the Mollie profile
|
1546 |
+
#: src/Mollie/WC/Helper/Settings.php:666 src/Mollie/WC/Helper/Settings.php:688
|
1547 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
1548 |
+
msgstr "Der API-Schlüssel wird für die Verbindung mit Mollie verwendet. Du findest deinen <strong>%s</strong>-API-Schlüssel in deinem %sMollie-Profil%s"
|
1549 |
|
1550 |
+
#: src/Mollie/WC/Helper/Settings.php:661
|
1551 |
msgid "Live API key"
|
1552 |
msgstr "Live-API-Schlüssel"
|
1553 |
|
1554 |
+
#: inc/settings/mollie_advanced_settings.php:8
|
1555 |
+
#: src/Mollie/WC/Helper/Settings.php:657
|
1556 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
1557 |
msgstr "Die folgenden Optionen sind für die Verwendung des Plugins verpflichtend und werden von allen Mollie-Bezahlmethoden verwendet"
|
1558 |
|
1559 |
+
#: src/Mollie/WC/Plugin.php:1314
|
1560 |
msgid "Mollie settings"
|
1561 |
msgstr "Mollie-Einstellungen"
|
1562 |
|
1563 |
+
#: src/Mollie/WC/Helper/Settings.php:641
|
|
|
1564 |
msgid "Log files are saved to <code>%s</code>"
|
1565 |
msgstr "Protokolldateien werden unter <code>%s</code> gespeichert"
|
1566 |
|
1567 |
+
#: src/Mollie/WC/Helper/Settings.php:635
|
|
|
|
|
|
|
|
|
1568 |
msgid "Log plugin events."
|
1569 |
msgstr "Plugin-Vorgänge protokollieren."
|
1570 |
|
1571 |
+
#: src/Mollie/WC/Helper/Settings.php:582
|
1572 |
msgid "Edit"
|
1573 |
msgstr "Bearbeiten"
|
1574 |
|
1575 |
+
#: src/Mollie/WC/Helper/Settings.php:559
|
1576 |
msgid "Refresh"
|
1577 |
msgstr "Aktualisieren"
|
1578 |
|
1579 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
1580 |
#. profile
|
1581 |
+
#: src/Mollie/WC/Helper/Settings.php:550
|
1582 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
1583 |
msgstr "Die folgenden Bezahlmethoden sind in deinem %sMollie-Profil%s aktiviert:"
|
1584 |
|
1585 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1586 |
msgid "Gateway disabled"
|
1587 |
msgstr "Gateway deaktiviert"
|
1588 |
|
1589 |
+
#: inc/settings/mollie_advanced_settings.php:72
|
1590 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1591 |
msgid "Enabled"
|
1592 |
msgstr "Aktiv"
|
1593 |
|
1594 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1595 |
msgid "Gateway enabled"
|
1596 |
msgstr "Gateway aktiviert"
|
1597 |
|
1598 |
+
#: src/Mollie/WC/Helper/Settings.php:495
|
1599 |
msgid "Connected"
|
1600 |
msgstr "Verbunden"
|
1601 |
|
1602 |
+
#: src/Mollie/WC/Helper/Settings.php:494
|
1603 |
msgid "Mollie status:"
|
1604 |
msgstr "Mollie-Status:"
|
1605 |
|
1606 |
+
#: src/Mollie/WC/Helper/Settings.php:481
|
1607 |
msgid "Error"
|
1608 |
msgstr "Fehler"
|
1609 |
|
1610 |
+
#: src/Mollie/WC/Helper/Data.php:477
|
1611 |
msgid "Item #%s stock incremented from %s to %s."
|
1612 |
msgstr "Artikel #%s Bestand von %s auf %s erhöht."
|
1613 |
|
1621 |
|
1622 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1623 |
#. email, placeholder 3: PayPal transaction ID
|
1624 |
+
#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695
|
1625 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1626 |
msgstr "Zahlung durch <strong>%s</strong> - %s (PayPal Transaktions-ID: %s) erfolgt"
|
1627 |
|
1628 |
+
#: src/Mollie/WC/Gateway/PayPal.php:43
|
1629 |
msgid "PayPal"
|
1630 |
msgstr "PayPal"
|
1631 |
|
1632 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
1633 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1634 |
#. drop down
|
1635 |
+
#: src/Mollie/WC/Gateway/Ideal.php:76 src/Mollie/WC/Gateway/Kbc.php:75
|
|
|
1636 |
msgid "Select your bank"
|
1637 |
msgstr "Wähle deine Bank aus"
|
1638 |
|
1639 |
+
#: src/Mollie/WC/Gateway/Ideal.php:60
|
1640 |
msgid "iDEAL"
|
1641 |
msgstr "iDEAL"
|
1642 |
|
1645 |
msgstr "SEPA-Direktmandat"
|
1646 |
|
1647 |
#. translators: Placeholder 1: card holder
|
1648 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:136
|
1649 |
msgid "Payment completed by <strong>%s</strong>"
|
1650 |
msgstr "Zahlung durch <strong>%s</strong> erfolgt"
|
1651 |
|
1652 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:84
|
1653 |
msgid "Credit card"
|
1654 |
msgstr "Kreditkarte"
|
1655 |
|
1657 |
msgid "Belfius Direct Net"
|
1658 |
msgstr "Belfius Direct Net"
|
1659 |
|
1660 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:235
|
1661 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1662 |
msgstr "Die Zahlungsfrist läuft am <strong>%s</strong> ab. Bitte überweise bis dahin den vollen Betrag."
|
1663 |
|
1664 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:228
|
1665 |
msgid "The payment will expire on <strong>%s</strong>."
|
1666 |
msgstr "Die Zahlungsfrist läuft am <strong>%s</strong> ab."
|
1667 |
|
1668 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1669 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1670 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:214
|
1671 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1672 |
msgstr "Gib bitte die Zahlungsreferenz <strong>%s</strong> an"
|
1673 |
|
1674 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1675 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1676 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:209
|
1677 |
msgid "Payment reference: %s"
|
1678 |
msgstr "Zahlungsreferenz: %s"
|
1679 |
|
1680 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:204
|
1681 |
msgid "BIC: %s"
|
1682 |
msgstr "BIC: %s"
|
1683 |
|
1684 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:203
|
1685 |
msgid "IBAN: <strong>%s</strong>"
|
1686 |
msgstr "IBAN: <strong>%s</strong>"
|
1687 |
|
1688 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1689 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:202
|
1690 |
msgid "Beneficiary: %s"
|
1691 |
msgstr "Begünstigter: %s"
|
1692 |
|
1693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
1694 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1695 |
msgstr "Bitte schließe die Zahlung ab, indem du den vollen Betrag auf das folgende Konto überweist:"
|
1696 |
|
1697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:138
|
1698 |
msgid "Bank Transfer"
|
1699 |
msgstr "Überweisung"
|
1700 |
|
1701 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1702 |
msgid "Disabled"
|
1703 |
msgstr "Deaktiviert"
|
1704 |
|
1705 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
1706 |
+
msgid "Number of DAYS after the payment will expire. Default <code>%d</code> days"
|
1707 |
+
msgstr "TAGE nach Ende der Zahlungsfrist. Standard: <code>%d</code> Tage"
|
1708 |
|
1709 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:45
|
1710 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
1711 |
msgid "Expiry date"
|
1712 |
msgstr "Ablaufdatum"
|
1713 |
|
1714 |
#. translators: Placeholder 1: payment method
|
1715 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1542
|
1716 |
msgid "Payment completed with <strong>%s</strong>"
|
1717 |
msgstr "Zahlung durch <strong>%s</strong> erfolgt"
|
1718 |
|
1719 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1535
|
1720 |
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."
|
1721 |
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."
|
1722 |
|
1723 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1530
|
1724 |
msgid "We have not received a definite payment status."
|
1725 |
msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten."
|
1726 |
|
1727 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1315
|
1728 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1729 |
msgstr "Du hast deine Zahlung storniert. Vervollständige deine Bestellung bitte mit einer anderen Zahlungsmethode."
|
1730 |
|
1731 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1732 |
+
#: src/Mollie/WC/Payment/Payment.php:429
|
1733 |
msgid "%s payment expired (%s)."
|
1734 |
msgstr "%s-Zahlung abgelaufen (%s)."
|
1735 |
|
1736 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1737 |
+
#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:249
|
1738 |
msgid "Order completed using %s payment (%s)."
|
1739 |
msgstr "Bestellung über %s-Bezahlung %s abgeschlossen."
|
1740 |
|
1741 |
#. translators: Placeholder 1: Payment method title
|
1742 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:242
|
1743 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:298
|
1744 |
+
#: src/Mollie/WC/Gateway/Abstract.php:686
|
1745 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78
|
1746 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:122
|
1747 |
msgid "Could not create %s payment."
|
1748 |
msgstr "%s-Zahlung konnte nicht erstellt werden."
|
1749 |
|
1750 |
+
#: src/Mollie/WC/Gateway/Abstract.php:671
|
1751 |
+
#: src/Mollie/WC/Gateway/Abstract.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1752 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1753 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1244
|
1754 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1619
|
1755 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2142
|
1756 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1757 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139
|
1758 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:422
|
1759 |
+
#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642
|
1760 |
+
#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316
|
1761 |
+
#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446
|
1762 |
+
#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936
|
1763 |
+
#: src/Mollie/WC/Payment/Payment.php:251 src/Mollie/WC/Payment/Payment.php:338
|
1764 |
+
#: src/Mollie/WC/Payment/Payment.php:408 src/Mollie/WC/Payment/Payment.php:431
|
1765 |
msgid "test mode"
|
1766 |
msgstr "Testmodus"
|
1767 |
|
1768 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1769 |
+
#: src/Mollie/WC/Gateway/Abstract.php:669
|
1770 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1771 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:420
|
|
|
1772 |
msgid "%s payment started (%s)."
|
1773 |
msgstr "%s-Bezahlung gestartet (%s)."
|
1774 |
|
1775 |
+
#: src/Mollie/WC/Gateway/Abstract.php:659
|
1776 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1777 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:413
|
|
|
1778 |
msgid "Awaiting payment confirmation."
|
1779 |
msgstr "Die Zahlungsbestätigung wird erwartet."
|
1780 |
|
1781 |
+
#: src/Mollie/WC/Gateway/Abstract.php:526
|
1782 |
msgid "Could not load order %s"
|
1783 |
msgstr "Bestellung %s konnte nicht geladen werden"
|
1784 |
|
1785 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1786 |
#. be replaced by a link to the Mollie profile
|
1787 |
+
#: src/Mollie/WC/Gateway/Abstract.php:352
|
1788 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1789 |
msgstr "%s ist nicht in deinem Mollie-Profil aktiviert. Du kannst es aktivieren, indem du dein %sMollie-Profil%s bearbeitest."
|
1790 |
|
1791 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1792 |
#. setting page
|
1793 |
+
#: src/Mollie/WC/Gateway/Abstract.php:340
|
1794 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1795 |
msgstr "Kein API-Schlüssel vorgegeben. Bitte %slege deinen Mollie-API-Schlüssel fest%s."
|
1796 |
|
1797 |
+
#: src/Mollie/WC/Gateway/Abstract.php:221
|
1798 |
msgid "Gateway Disabled"
|
1799 |
msgstr "Gateway deaktiviert"
|
1800 |
|
1801 |
+
#: src/Mollie/WC/Gateway/Abstract.php:338 src/Mollie/WC/Helper/Settings.php:545
|
1802 |
msgid "Test mode enabled."
|
1803 |
msgstr "Testmodus aktiviert."
|
1804 |
|
1805 |
+
#: src/Mollie/WC/Helper/Settings.php:295
|
1806 |
msgid "Hold Stock (minutes)"
|
1807 |
msgstr "Bestand halten (Minuten)"
|
1808 |
|
1809 |
+
#: src/Mollie/WC/Helper/Settings.php:286
|
1810 |
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."
|
1811 |
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."
|
1812 |
|
1813 |
+
#: inc/settings/mollie_advanced_settings.php:29
|
1814 |
+
#: inc/settings/mollie_advanced_settings.php:90
|
1815 |
+
#: src/Mollie/WC/Helper/Settings.php:275
|
1816 |
msgid "default"
|
1817 |
msgstr "Standard"
|
1818 |
|
1819 |
+
#: src/Mollie/WC/Helper/Settings.php:267
|
1820 |
msgid "Initial order status"
|
1821 |
msgstr "Initialer Bestellstatus"
|
1822 |
|
1823 |
+
#: inc/settings/mollie_applepay_settings.php:63
|
1824 |
+
#: src/Mollie/WC/Helper/Settings.php:84
|
1825 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1826 |
msgstr "Beschreibung der Bezahlmethode, die der Kunde im Bezahlvorgang angezeigt bekommt. Standard: <code>%s</code>"
|
1827 |
|
1828 |
+
#: inc/settings/mollie_applepay_settings.php:60
|
1829 |
+
#: src/Mollie/WC/Helper/Settings.php:81
|
1830 |
msgid "Description"
|
1831 |
msgstr "Beschreibung"
|
1832 |
|
1833 |
+
#: src/Mollie/WC/Helper/Settings.php:99
|
1834 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1835 |
msgstr "Logo bei Bezahlvorgang anzeigen. Standard: <code>aktiviert</code>"
|
1836 |
|
1837 |
+
#: inc/settings/mollie_applepay_settings.php:45
|
1838 |
+
#: inc/settings/mollie_applepay_settings.php:48
|
1839 |
+
#: src/Mollie/WC/Helper/Settings.php:94
|
1840 |
msgid "Display logo"
|
1841 |
msgstr "Logo anzeigen"
|
1842 |
|
1843 |
+
#: inc/settings/mollie_applepay_settings.php:32
|
1844 |
+
#: src/Mollie/WC/Helper/Settings.php:71
|
1845 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1846 |
+
msgstr "Hierdurch wird der Titel gesteuert, den Benutzer beim Bezahlvorgang sehen. Standard: <code>%s</code>"
|
1847 |
|
1848 |
+
#: inc/settings/mollie_applepay_settings.php:29
|
1849 |
+
#: src/Mollie/WC/Helper/Settings.php:68
|
1850 |
msgid "Title"
|
1851 |
msgstr "Titel"
|
1852 |
|
1853 |
+
#. translators: Placeholder 1: enabled or disabled
|
1854 |
+
#: inc/settings/mollie_applepay_settings.php:21
|
1855 |
+
#: src/Mollie/WC/Helper/Settings.php:54
|
1856 |
msgid "Enable %s"
|
1857 |
msgstr "%s aktivieren"
|
1858 |
|
1859 |
+
#: inc/settings/mollie_applepay_settings.php:19
|
1860 |
+
#: src/Mollie/WC/Helper/Settings.php:48
|
1861 |
msgid "Enable/Disable"
|
1862 |
msgstr "Aktivieren/deaktivieren"
|
languages/mollie-payments-for-woocommerce-de_DE_formal.mo
CHANGED
Binary file
|
languages/mollie-payments-for-woocommerce-de_DE_formal.po
CHANGED
@@ -1,33 +1,695 @@
|
|
1 |
-
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2021-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
-
"Language:
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
|
14 |
-
#: src/Mollie/WC/Plugin.php:
|
15 |
-
msgid "
|
16 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
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."
|
20 |
-
msgstr "Um
|
21 |
|
22 |
-
#: src/Mollie/WC/Plugin.php:
|
23 |
msgid "Products voucher category"
|
24 |
-
msgstr "
|
25 |
|
26 |
-
#: src/Mollie/WC/Plugin.php:
|
27 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
28 |
-
msgstr "%1$sMollie-Zahlungen für WooCommerce%2$s
|
29 |
|
30 |
-
#: src/Mollie/WC/Plugin.php:
|
|
|
31 |
msgid "Mollie Settings"
|
32 |
msgstr "Mollie-Einstellungen"
|
33 |
|
@@ -43,49 +705,43 @@ msgstr "Gutschein"
|
|
43 |
|
44 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
45 |
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"
|
46 |
-
msgstr "Um
|
47 |
|
48 |
-
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:
|
49 |
msgid "Select the default products category"
|
50 |
-
msgstr "
|
51 |
|
52 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
53 |
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"
|
54 |
-
msgstr "Aktivieren Sie diese Option,
|
55 |
|
56 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
57 |
msgid "Enable expiry date for payments"
|
58 |
msgstr "Ablaufdatum für Zahlungen aktivieren"
|
59 |
|
60 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
61 |
msgid "Activate expiry date setting"
|
62 |
-
msgstr "
|
63 |
|
64 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
65 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
66 |
msgid " Remainder: %1$s %2$s %3$s."
|
67 |
msgstr " Verbleibend: %1$s %2$s %3$s."
|
68 |
|
69 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
70 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
71 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
72 |
-
msgstr "
|
73 |
-
|
74 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:7
|
75 |
-
msgid "Enable the Apple Pay direct buy button"
|
76 |
-
msgstr "Direktkaufbutton von Apple Pay aktivieren"
|
77 |
-
|
78 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
79 |
-
msgid "Enable Apple Pay Button"
|
80 |
-
msgstr "Kaufbutton von Apple Pay aktivieren"
|
81 |
|
82 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
83 |
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"
|
84 |
-
msgstr "%1$sValidierungsfehler
|
85 |
|
86 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
87 |
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"
|
88 |
-
msgstr "%1$
|
89 |
|
90 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
91 |
msgid "Show Mastercard Icon"
|
@@ -94,7 +750,7 @@ msgstr "Mastercard-Symbol anzeigen"
|
|
94 |
#: inc/settings/mollie_components.php:94
|
95 |
msgctxt "Mollie Components Settings"
|
96 |
msgid "Transform Text "
|
97 |
-
msgstr "Text
|
98 |
|
99 |
#: inc/settings/mollie_components.php:82
|
100 |
msgctxt "Mollie Components Settings"
|
@@ -104,7 +760,7 @@ msgstr "Text ausrichten"
|
|
104 |
#: inc/settings/mollie_components.php:72
|
105 |
msgctxt "Mollie Components Settings"
|
106 |
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
107 |
-
msgstr "
|
108 |
|
109 |
#: inc/settings/mollie_components.php:35
|
110 |
msgctxt "Mollie Components Settings"
|
@@ -137,28 +793,24 @@ msgstr "American-Express-Symbol anzeigen"
|
|
137 |
|
138 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
139 |
msgid "Show customized creditcard icons on checkout page"
|
140 |
-
msgstr "
|
141 |
|
142 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
143 |
msgid "Enable Icons Selector"
|
144 |
-
msgstr "
|
145 |
|
146 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
147 |
msgid "Customize Icons"
|
148 |
msgstr "Symbole personalisieren"
|
149 |
|
150 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
151 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
152 |
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)."
|
153 |
-
msgstr "%1$s-Bezahlung %2$s über Mollie
|
154 |
|
155 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
156 |
msgid "Failed switching subscriptions, no valid mandate."
|
157 |
-
msgstr "
|
158 |
-
|
159 |
-
#: inc/settings/mollie_components_enabler.php:7
|
160 |
-
msgid "Enable the Mollie Components for this Gateway"
|
161 |
-
msgstr "Mollie-Komponenten für dieses Portal aktivieren"
|
162 |
|
163 |
#: inc/settings/mollie_components_enabler.php:6
|
164 |
msgid "Enable Mollie Components"
|
@@ -289,35 +941,37 @@ msgctxt "Mollie Components Settings"
|
|
289 |
msgid "Base Styles"
|
290 |
msgstr "Basisformat"
|
291 |
|
292 |
-
#: src/Mollie/WC/Plugin.php:
|
293 |
msgid "An unknown error occurred, please check the card fields."
|
294 |
msgstr "Ein unbekannter Fehler ist aufgetreten, bitte überprüfen Sie die Kartenfelder."
|
295 |
|
296 |
-
#: src/Mollie/WC/Plugin.php:
|
297 |
msgid "Verification Code"
|
298 |
msgstr "Kartenprüfnummer"
|
299 |
|
300 |
-
#: src/Mollie/WC/Plugin.php:
|
301 |
msgid "Expiry Date"
|
302 |
msgstr "Ablaufdatum"
|
303 |
|
304 |
-
#: src/Mollie/WC/Plugin.php:
|
305 |
msgid "Card Number"
|
306 |
msgstr "Kartennummer"
|
307 |
|
308 |
-
#: src/Mollie/WC/Plugin.php:
|
309 |
msgid "Card Holder"
|
310 |
msgstr "Karteninhaber"
|
311 |
|
|
|
312 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
|
|
313 |
msgid "Mollie Components"
|
314 |
msgstr "Mollie-Komponenten"
|
315 |
|
316 |
-
#: src/Mollie/WC/Plugin.php:
|
317 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
318 |
msgstr "%1$s stornierte Artikel bei WooCommerce und Mollie."
|
319 |
|
320 |
-
#: src/Mollie/WC/Plugin.php:
|
321 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
322 |
msgstr "%1$s erstattete Artikel bei WooCommerce und Mollie."
|
323 |
|
@@ -333,12 +987,12 @@ msgstr "Die Auftragspositions-ID zum folgenden Remote-Artikel konnte nicht abger
|
|
333 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
334 |
msgstr "Eine der WooCommerce-Auftragspositionen stimmt nicht mit dem entsprechenden Metawert für die ID des Rückerstattungsartikels der Mollie-Auftragsposition überein."
|
335 |
|
336 |
-
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:
|
337 |
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."
|
338 |
-
msgstr "Mollie erlaubt keine teilweise Rückerstattung des vollen Betrags oder der vollen Menge mindestens einer Auftragszeile."
|
339 |
|
340 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
341 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:
|
342 |
msgid "Order completed using %1$s payment (%2$s)."
|
343 |
msgstr "Vorgang über %1$s-Bezahlung (%2$s) erfolgt."
|
344 |
|
@@ -377,37 +1031,32 @@ msgstr "Um Bezahlungen über Przelewy24 zu akzeptieren, wird für jede Bezahlung
|
|
377 |
msgid "Przelewy24"
|
378 |
msgstr "Przelewy24"
|
379 |
|
380 |
-
#:
|
381 |
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."
|
382 |
-
msgstr "Mollie Payments for WooCommerce benötigt die JSON-Erweiterung für PHP. Schalten Sie sie auf
|
383 |
|
384 |
-
#: src/Mollie/WC/Payment/Order.php:
|
385 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
386 |
msgstr "Erstattungsbetrag von %s erstatteten %s bei WooCommerce und Mollie.%s Erstattungs-ID: %s."
|
387 |
|
388 |
-
#: src/Mollie/WC/Payment/Order.php:
|
389 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
390 |
msgstr "%sx %s erstattet für %s%s bei WooCommerce und Mollie.%s Erstattungs-ID: %s."
|
391 |
|
392 |
-
#: src/Mollie/WC/Payment/Order.php:
|
393 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
394 |
msgstr "%sx %s storniert für %s%s bei WooCommerce und Mollie."
|
395 |
|
396 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
397 |
-
#: src/Mollie/WC/Payment/Order.php:
|
398 |
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!"
|
399 |
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."
|
400 |
|
401 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
402 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
403 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
404 |
-
msgstr "%s-
|
405 |
|
406 |
-
#: src/Mollie/WC/Helper/Settings.php:623
|
407 |
-
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
408 |
-
msgstr "Um Klarna-Bezahlungen über Mollie zu akzeptieren, müssen alle standardmäßigen Felder im WooCommerce-Bezahlvorgang aktiviert und verpflichtend sein. Bitte prüfen."
|
409 |
-
|
410 |
-
#: src/Mollie/WC/Payment/Payment.php:39
|
411 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
412 |
msgid "Order"
|
413 |
msgstr "Bestellung"
|
@@ -418,42 +1067,38 @@ msgid "%s payment (%s) cancelled ."
|
|
418 |
msgstr "%s-Bezahlvorgang (%s) abgebrochen."
|
419 |
|
420 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
421 |
-
#: src/Mollie/WC/Payment/Order.php:
|
422 |
msgid "%s order (%s) expired ."
|
423 |
msgstr "%s-Bestellung (%s) abgelaufen."
|
424 |
|
425 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
426 |
-
#: src/Mollie/WC/Payment/Order.php:
|
427 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
428 |
msgstr "%s-Bestellung (%s) abgelaufen, wegen einer weiteren offenen Zahlung (%s) jedoch nicht abgebrochen."
|
429 |
|
430 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
431 |
-
#: src/Mollie/WC/Payment/Order.php:
|
432 |
msgid "%s order (%s) cancelled ."
|
433 |
msgstr "%s-Bestellung (%s) abgebrochen."
|
434 |
|
435 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
436 |
-
#: src/Mollie/WC/Payment/Order.php:
|
437 |
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."
|
438 |
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."
|
439 |
|
440 |
-
#:
|
441 |
-
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
442 |
-
msgstr "Um Klarna-Bezahlungen über Mollie zu akzeptieren, benötigen Sie mindestens Version 3.0 von WooCommerce. Sie verwenden aktuell Version %s."
|
443 |
-
|
444 |
-
#: src/Mollie/WC/Helper/Settings.php:455
|
445 |
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."
|
446 |
-
msgstr "
|
447 |
|
448 |
-
#:
|
449 |
msgid "Automatically send WordPress language"
|
450 |
msgstr "WordPress-Sprache automatisch übermitteln"
|
451 |
|
452 |
-
#:
|
453 |
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."
|
454 |
-
msgstr "Status für Bestellungen bei stornierter Bezahlung (keine Mollie-Bestellung über die Bestellungs-API). Standard: ausstehend
|
455 |
|
456 |
-
#: src/Mollie/WC/Helper/OrderLines.php:
|
457 |
msgid "Shipping"
|
458 |
msgstr "Versand"
|
459 |
|
@@ -478,79 +1123,79 @@ msgstr "Für Mollie-Zahlungen für WooCommerce müssen PHP cURL-Funktionen verf
|
|
478 |
#. version
|
479 |
#: src/Mollie/WC/Helper/Status.php:104
|
480 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
481 |
-
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
|
482 |
|
483 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
484 |
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."
|
485 |
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."
|
486 |
|
487 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
488 |
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."
|
489 |
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."
|
490 |
|
491 |
-
#:
|
492 |
msgid "Lithuanian"
|
493 |
msgstr "Litauisch"
|
494 |
|
495 |
-
#:
|
496 |
msgid "Latvian"
|
497 |
msgstr "Lettisch"
|
498 |
|
499 |
-
#:
|
500 |
msgid "Polish"
|
501 |
msgstr "Polnisch"
|
502 |
|
503 |
-
#:
|
504 |
msgid "Hungarian"
|
505 |
msgstr "Ungarisch"
|
506 |
|
507 |
-
#:
|
508 |
msgid "Icelandic"
|
509 |
msgstr "Isländisch"
|
510 |
|
511 |
-
#:
|
512 |
msgid "Danish"
|
513 |
msgstr "Dänisch"
|
514 |
|
515 |
-
#:
|
516 |
msgid "Finnish"
|
517 |
msgstr "Finnisch"
|
518 |
|
519 |
-
#:
|
520 |
msgid "Swedish"
|
521 |
msgstr "Schwedisch"
|
522 |
|
523 |
-
#:
|
524 |
msgid "Norwegian"
|
525 |
msgstr "Norwegisch"
|
526 |
|
527 |
-
#:
|
528 |
msgid "Italian"
|
529 |
msgstr "Italienisch"
|
530 |
|
531 |
-
#:
|
532 |
msgid "Portuguese"
|
533 |
msgstr "Portugiesisch"
|
534 |
|
535 |
-
#:
|
536 |
msgid "Catalan"
|
537 |
msgstr "Katalanisch"
|
538 |
|
539 |
-
#:
|
540 |
msgid "Swiss German"
|
541 |
msgstr "Deutsch (Schweiz)"
|
542 |
|
543 |
-
#:
|
544 |
msgid "Austrian German"
|
545 |
msgstr "Deutsch (Österreich)"
|
546 |
|
547 |
-
#: src/Mollie/WC/Helper/Api.php:
|
548 |
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."
|
549 |
-
msgstr "
|
550 |
|
551 |
-
#: src/Mollie/WC/Helper/Api.php:
|
552 |
msgid "No API key provided. Please set your Mollie API keys below."
|
553 |
-
msgstr "Kein API-Schlüssel vorgegeben. Legen Sie
|
554 |
|
555 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
556 |
msgid "Giropay"
|
@@ -561,66 +1206,56 @@ msgid "EPS"
|
|
561 |
msgstr "EPS"
|
562 |
|
563 |
#. translators: Placeholder 1: Payment method title
|
564 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
565 |
msgid "Could not create %s renewal payment."
|
566 |
msgstr "Erneute %s-Zahlung konnte nicht erstellt werden."
|
567 |
|
568 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
569 |
msgid "The customer (%s) does not have a valid mandate."
|
570 |
msgstr "Der Kunde (%s) hat kein gültiges Mandat."
|
571 |
|
572 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
573 |
msgid "The customer (%s) could not be used or found. "
|
574 |
msgstr "Der Kunde (%s) konnte nicht verwendet oder gefunden werden. "
|
575 |
|
576 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
577 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
578 |
#. placeholder 5: refund ID
|
579 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
580 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
581 |
msgstr "Rückerstattung %s%s%s – Zahlung: %s, Rückerstattung: %s"
|
582 |
|
583 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
584 |
-
#: src/Mollie/WC/Payment/
|
585 |
msgid "%s payment failed via Mollie (%s)."
|
586 |
msgstr "%s-Bezahlung über Mollie fehlgeschlagen (%s)."
|
587 |
|
588 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
589 |
msgid "New chargeback %s processed! Order note and order status updated."
|
590 |
msgstr "Neue Rückbuchung %s erfasst. Bestellungsnotiz und Status aktualisiert."
|
591 |
|
592 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
593 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
594 |
msgstr "Neue Rückerstattung %s im Mollie-Dashboard verarbeitet. Bestellungsnotiz hinzugefügt, Bestellung jedoch nicht aktualisiert."
|
595 |
|
596 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
597 |
#. Mollie currencies
|
598 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
599 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
600 |
-
msgstr "Die aktuelle Shopwährung %s wird von Mollie nicht unterstützt.
|
601 |
-
|
602 |
-
#: mollie-payments-for-woocommerce.php:138
|
603 |
-
msgid "Mollie Payments for WooCommerce 4.0 requires PHP 5.6 or higher. Your PHP version is outdated. Upgrade your PHP version and view %sthis FAQ%s."
|
604 |
-
msgstr "Für Mollie-Zahlungen für WooCommerce 4.0 und höher wird mindestens PHP 5.6 benötigt. Ihre PHP-Version ist veraltet. Bitte aktualisieren Sie Ihre PHP-Version und beachten Sie diese %shäufig gestellten Fragen%s."
|
605 |
|
606 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
607 |
-
#: src/Mollie/WC/Payment/
|
608 |
-
#: src/Mollie/WC/Payment/Payment.php:328 src/Mollie/WC/Payment/Payment.php:491
|
609 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
610 |
msgstr "Der Mollie-WebHook wurde aufgerufen, die Zahlung wurde jedoch gleichzeitig über %s gestartet. Der Bestellstatus wird deshalb nicht aktualisiert."
|
611 |
|
612 |
-
|
613 |
-
#: src/Mollie/WC/
|
614 |
-
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
615 |
-
msgstr "Soll Mollie den Namen und die E-Mail-Adresse des Kunden für Single-Click-Bezahlungen speichern? Standard: <code>%s</code>. Verpflichtend bei Verwendung von WooCommerce Subscriptions."
|
616 |
-
|
617 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1270
|
618 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1281
|
619 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
620 |
msgstr "Ihre Zahlung war nicht erfolgreich. Vervollständigen Sie Ihre Bestellung bitte mit einer anderen Zahlungsmethode."
|
621 |
|
622 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
623 |
-
#: src/Mollie/WC/Payment/
|
624 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
625 |
msgstr "Erneute %s-Zahlung über Mollie fehlgeschlagen (%s). Sie müssen die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen."
|
626 |
|
@@ -630,24 +1265,20 @@ msgid "Bancontact"
|
|
630 |
msgstr "Bancontact"
|
631 |
|
632 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
633 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
634 |
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."
|
635 |
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."
|
636 |
|
637 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
638 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
639 |
msgstr "Abonnement-Umstellung fehlgeschlagen, kein valides Mandat gefunden. Leiten Sie einen neuen Bestellvorgang ein, um Ihr Abonnement zu ändern."
|
640 |
|
641 |
-
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
642 |
-
msgid "ING Home'Pay"
|
643 |
-
msgstr "ING Home'Pay"
|
644 |
-
|
645 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
646 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
647 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
648 |
-
msgstr "%s-
|
649 |
|
650 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
651 |
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."
|
652 |
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."
|
653 |
|
@@ -663,15 +1294,15 @@ msgstr "Drop-down-Liste für KBC/CBC-Banken anzeigen"
|
|
663 |
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."
|
664 |
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."
|
665 |
|
666 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
667 |
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."
|
668 |
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."
|
669 |
|
670 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
671 |
msgid "Show iDEAL banks dropdown"
|
672 |
msgstr "Drop-down-Liste für iDEAL-Banken anzeigen"
|
673 |
|
674 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
675 |
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."
|
676 |
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."
|
677 |
|
@@ -683,97 +1314,89 @@ msgstr "Wenn Sie die Option deaktivieren, wird die Drop-down-Liste mit verschied
|
|
683 |
msgid "Show gift cards dropdown"
|
684 |
msgstr "Drop-down-Liste für Geschenkkarten anzeigen"
|
685 |
|
686 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
687 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
688 |
msgstr "Die Bestellung wurde wegen eines bestehenden, gültigen Mandats bei Mollie intern abgewickelt."
|
689 |
|
690 |
-
#:
|
691 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s This version requires WooCommerce 2.2 or newer. Please %3$supdate WooCommerce to version 2.2 or newer »%4$s"
|
692 |
-
msgstr "%1$sMollie-Zahlungen für WooCommerce sind nicht aktiviert.%2$s Sie benötigen dafür die WooCommerce-Version 2.2 oder höher. Bitte %3$saktualisieren Sie WooCommerce auf Version 2.2 oder höher »%4$s"
|
693 |
-
|
694 |
-
#: mollie-payments-for-woocommerce.php:164
|
695 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for it to work. Please %5$sinstall & activate WooCommerce »%6$s"
|
696 |
-
msgstr "%1$sMollie-Zahlungen für WooCommerce sind nicht aktiviert.%2$s Das %3$sWooCommerce-Plugin%4$s muss aktiviert sein, damit Mollie-Zahlungen funktionieren. Bitte %5$sinstallieren und aktivieren Sie WooCommerce »%6$s"
|
697 |
-
|
698 |
-
#: src/Mollie/WC/Helper/Settings.php:414
|
699 |
msgid "Cancelled"
|
700 |
msgstr "Storniert"
|
701 |
|
702 |
-
#:
|
703 |
msgid "Pending"
|
704 |
msgstr "Offen"
|
705 |
|
706 |
-
#:
|
707 |
msgid "Order status after cancelled payment"
|
708 |
msgstr "Bestellstatus nach stornierter Zahlung"
|
709 |
|
710 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
711 |
#. placeholder 3: consumer BIC
|
|
|
|
|
712 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
713 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:185
|
714 |
-
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:121
|
715 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
716 |
msgstr "Zahlung durch <strong>%s</strong> erfolgt (IBAN (letzte 4 Ziffern): %s, BIC: %s)"
|
717 |
|
718 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
719 |
msgid "Your order has been cancelled."
|
720 |
msgstr "Ihre Bestellung wurde storniert."
|
721 |
|
722 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
723 |
msgid ", payment pending."
|
724 |
msgstr ", Zahlung ausstehend"
|
725 |
|
726 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
727 |
msgid "Order cancelled"
|
728 |
msgstr "Bestellung storniert"
|
729 |
|
730 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
731 |
#. status, placeholder 3: payment ID
|
732 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
733 |
msgid "%s payment %s (%s), not processed."
|
734 |
msgstr "%s-Zahlung %s (%s), nicht verarbeitet."
|
735 |
|
736 |
#. translators: Default gift card dropdown description, displayed above issuer
|
737 |
#. drop down
|
738 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
739 |
msgid "Select your gift card"
|
740 |
msgstr "Wählen Sie Ihre Geschenkkarte aus"
|
741 |
|
742 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
743 |
msgid "Gift cards"
|
744 |
msgstr "Geschenkkarten"
|
745 |
|
746 |
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
747 |
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."
|
748 |
-
msgstr "Für wiederkehrende Zahlungen mit WooCommerce Subscriptions werden SEPA-Direktmandate verwendet. Diese werden nicht im WooCommerce-Bezahlvorgang für reguläre Zahlungen angezeigt
|
749 |
|
750 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
751 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
752 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
753 |
msgstr "Das Abonnement wird von ‚ausstehend‘ auf ‚aktiv‘ aktualisiert, bis die Zahlung fehlschlägt, da SEPA-Direktmandate etwas Zeit in Anspruch nehmen."
|
754 |
|
755 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
756 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
757 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
758 |
-
msgstr "%s-
|
759 |
|
760 |
-
#: src/subscriptions_status_check_functions.php:
|
761 |
msgid "There are still some subscriptions left, use the tool again!"
|
762 |
msgstr "Es sind noch Abonnements übrig, verwenden Sie das Tool erneut."
|
763 |
|
764 |
-
#: src/subscriptions_status_check_functions.php:
|
765 |
msgid "No more subscriptions left to process!"
|
766 |
msgstr "Keine zu verarbeitenden Abonnements übrig."
|
767 |
|
768 |
-
#: src/subscriptions_status_check_functions.php:
|
769 |
msgid "No subscriptions updated in this batch."
|
770 |
msgstr "In dieser Charge wurden keine Abonnements aktualisiert."
|
771 |
|
772 |
-
#: src/subscriptions_status_check_functions.php:
|
773 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
774 |
msgstr "Die Abonnements wurden nicht aktualisiert, da Mollie kein gültiges Mandat vorliegt. Verarbeitet durch das Tool ‚Mollie-Abonnementstatus‘."
|
775 |
|
776 |
-
#: src/subscriptions_status_check_functions.php:
|
777 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
778 |
msgstr "Abonnement auf automatisierte Erneuerung über Mollie aktualisiert, Status auf aktiv gesetzt. Verarbeitet durch das Tool ‚Mollie-Abonnementstatus‘."
|
779 |
|
@@ -789,33 +1412,33 @@ msgstr "Mollie-Abonnementstatus"
|
|
789 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
790 |
msgstr "Überprüft auf fälschlicherweise auf ‚manuelle Erneuerung‘ gesetzte Abonnements. Lesen Sie zunächst die "
|
791 |
|
792 |
-
#:
|
793 |
msgid "Store customer details at Mollie"
|
794 |
msgstr "Kundendetails des Geschäfts bei Mollie"
|
795 |
|
796 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
797 |
-
#: src/Mollie/WC/Plugin.php:
|
798 |
msgid "%s payment failed (%s)."
|
799 |
msgstr "%s-Bezahlung fehlgeschlagen (%s)."
|
800 |
|
801 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
802 |
msgid "KBC/CBC Payment Button"
|
803 |
msgstr "KBC/CBC-Zahlungsbutton"
|
804 |
|
805 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
806 |
-
#: src/Mollie/WC/Gateway/
|
807 |
msgid "Issuers empty option"
|
808 |
msgstr "Kartenaussteller-Option leer"
|
809 |
|
810 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
811 |
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."
|
812 |
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."
|
813 |
|
814 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
815 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
816 |
msgstr "Mollie-Bezahlseite überspringen, wenn Überweisung ausgewählt wurde"
|
817 |
|
818 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
819 |
msgid "Skip Mollie payment screen"
|
820 |
msgstr "Mollie-Bezahlseite überspringen"
|
821 |
|
@@ -836,7 +1459,7 @@ msgstr "Mollie"
|
|
836 |
msgid "Mollie Payments for WooCommerce"
|
837 |
msgstr "Mollie-Zahlungen für WooCommerce"
|
838 |
|
839 |
-
#: src/Mollie/WC/Plugin.php:
|
840 |
msgid "Logs"
|
841 |
msgstr "Protokolle"
|
842 |
|
@@ -858,137 +1481,133 @@ msgstr "Mobiler API-Client nicht installiert. Vergewissern Sie sich, dass das Pl
|
|
858 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
859 |
msgstr "Das %s-Plugin benötigt WooCommerce %s oder höher, Sie verwenden Version %s. Aktualisieren Sie bitte Ihr WooCommerce-Plugin."
|
860 |
|
861 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
862 |
msgid "Debug Log"
|
863 |
msgstr "Debug-Protokoll"
|
864 |
|
865 |
-
#:
|
866 |
msgid "French (Belgium)"
|
867 |
msgstr "Französisch (Belgien)"
|
868 |
|
869 |
-
#:
|
870 |
msgid "French"
|
871 |
msgstr "Französisch"
|
872 |
|
873 |
-
#:
|
874 |
msgid "Spanish"
|
875 |
msgstr "Spanisch"
|
876 |
|
877 |
-
#:
|
878 |
msgid "German"
|
879 |
msgstr "Deutsch"
|
880 |
|
881 |
-
#:
|
882 |
msgid "English"
|
883 |
msgstr "Englisch"
|
884 |
|
885 |
-
#:
|
886 |
msgid "Flemish (Belgium)"
|
887 |
msgstr "Flämisch (Belgien)"
|
888 |
|
889 |
-
#:
|
890 |
msgid "Dutch"
|
891 |
msgstr "Niederländisch"
|
892 |
|
893 |
-
#:
|
894 |
msgid "Detect using browser language"
|
895 |
msgstr "Über Browsersprache erkennen"
|
896 |
|
897 |
-
#:
|
898 |
msgid "Payment screen language"
|
899 |
msgstr "Sprache der Bezahlseite"
|
900 |
|
901 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
902 |
msgid "Test API key should start with test_"
|
903 |
msgstr "Der Test-API-Schlüssel sollte mit test_ beginnen"
|
904 |
|
905 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
906 |
msgid "Test API key"
|
907 |
msgstr "Test-API-Schlüssel"
|
908 |
|
909 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
910 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
911 |
msgstr "Aktivieren Sie den Testmodus, wenn Sie das Plugin ohne echte Bezahlung testen möchten."
|
912 |
|
913 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
914 |
msgid "Enable test mode"
|
915 |
msgstr "Testmodus aktivieren"
|
916 |
|
917 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
918 |
msgid "Live API key should start with live_"
|
919 |
msgstr "Der Live-API-Schlüssel sollte mit live_ beginnen"
|
920 |
|
921 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
922 |
#. %s's Will be replaced by a link to the Mollie profile
|
923 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
924 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
925 |
-
msgstr "Der API-Schlüssel wird für die Verbindung mit Mollie verwendet. Sie finden Ihren <strong>%s</strong>-API-Schlüssel in
|
926 |
|
927 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
928 |
msgid "Live API key"
|
929 |
msgstr "Live-API-Schlüssel"
|
930 |
|
931 |
-
#:
|
|
|
932 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
933 |
msgstr "Die folgenden Optionen sind für die Verwendung des Plugins verpflichtend und werden von allen Mollie-Bezahlmethoden verwendet"
|
934 |
|
935 |
-
#: src/Mollie/WC/
|
936 |
msgid "Mollie settings"
|
937 |
msgstr "Mollie-Einstellungen"
|
938 |
|
939 |
-
|
940 |
-
#: src/Mollie/WC/Helper/Settings.php:351
|
941 |
msgid "Log files are saved to <code>%s</code>"
|
942 |
msgstr "Protokolldateien werden unter <code>%s</code> gespeichert"
|
943 |
|
944 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
945 |
-
msgid "View logs"
|
946 |
-
msgstr "Protokolle anzeigen"
|
947 |
-
|
948 |
-
#: src/Mollie/WC/Helper/Settings.php:340
|
949 |
msgid "Log plugin events."
|
950 |
msgstr "Plugin-Vorgänge protokollieren."
|
951 |
|
952 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
953 |
msgid "Edit"
|
954 |
msgstr "Bearbeiten"
|
955 |
|
956 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
957 |
msgid "Refresh"
|
958 |
msgstr "Aktualisieren"
|
959 |
|
960 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
961 |
#. profile
|
962 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
963 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
964 |
msgstr "Die folgenden Bezahlmethoden sind in Ihrem %sMollie-Profil%s aktiviert:"
|
965 |
|
966 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
967 |
msgid "Gateway disabled"
|
968 |
msgstr "Gateway deaktiviert"
|
969 |
|
970 |
-
|
971 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
972 |
msgid "Enabled"
|
973 |
msgstr "Aktiv"
|
974 |
|
975 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
976 |
msgid "Gateway enabled"
|
977 |
msgstr "Gateway aktiviert"
|
978 |
|
979 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
980 |
msgid "Connected"
|
981 |
msgstr "Verbunden"
|
982 |
|
983 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
984 |
msgid "Mollie status:"
|
985 |
msgstr "Mollie-Status:"
|
986 |
|
987 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
988 |
msgid "Error"
|
989 |
msgstr "Fehler"
|
990 |
|
991 |
-
#: src/Mollie/WC/Helper/Data.php:
|
992 |
msgid "Item #%s stock incremented from %s to %s."
|
993 |
msgstr "Artikel #%s Bestand von %s auf %s erhöht."
|
994 |
|
@@ -1002,22 +1621,22 @@ msgstr "paysafecard"
|
|
1002 |
|
1003 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1004 |
#. email, placeholder 3: PayPal transaction ID
|
1005 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1006 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1007 |
msgstr "Zahlung durch <strong>%s</strong> - %s (PayPal Transaktions-ID: %s) erfolgt"
|
1008 |
|
1009 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1010 |
msgid "PayPal"
|
1011 |
msgstr "PayPal"
|
1012 |
|
|
|
1013 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1014 |
#. drop down
|
1015 |
-
|
1016 |
-
#: src/Mollie/WC/Gateway/Kbc.php:77 src/Mollie/WC/Gateway/Ideal.php:77
|
1017 |
msgid "Select your bank"
|
1018 |
msgstr "Wählen Sie Ihre Bank aus"
|
1019 |
|
1020 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
1021 |
msgid "iDEAL"
|
1022 |
msgstr "iDEAL"
|
1023 |
|
@@ -1026,11 +1645,11 @@ msgid "SEPA Direct Debit"
|
|
1026 |
msgstr "SEPA-Direktmandat"
|
1027 |
|
1028 |
#. translators: Placeholder 1: card holder
|
1029 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1030 |
msgid "Payment completed by <strong>%s</strong>"
|
1031 |
msgstr "Zahlung durch <strong>%s</strong> erfolgt"
|
1032 |
|
1033 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1034 |
msgid "Credit card"
|
1035 |
msgstr "Kreditkarte"
|
1036 |
|
@@ -1038,193 +1657,206 @@ msgstr "Kreditkarte"
|
|
1038 |
msgid "Belfius Direct Net"
|
1039 |
msgstr "Belfius Direct Net"
|
1040 |
|
1041 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1042 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1043 |
msgstr "Die Zahlungsfrist läuft am <strong>%s</strong> ab. Bitte überweisen Sie bis dahin den vollen Betrag."
|
1044 |
|
1045 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1046 |
msgid "The payment will expire on <strong>%s</strong>."
|
1047 |
msgstr "Die Zahlungsfrist läuft am <strong>%s</strong> ab."
|
1048 |
|
1049 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1050 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1051 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1052 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1053 |
msgstr "Geben Sie bitte die Zahlungsreferenz <strong>%s</strong> an"
|
1054 |
|
1055 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1056 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1057 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1058 |
msgid "Payment reference: %s"
|
1059 |
msgstr "Zahlungsreferenz: %s"
|
1060 |
|
1061 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1062 |
msgid "BIC: %s"
|
1063 |
msgstr "BIC: %s"
|
1064 |
|
1065 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1066 |
msgid "IBAN: <strong>%s</strong>"
|
1067 |
msgstr "IBAN: <strong>%s</strong>"
|
1068 |
|
1069 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1070 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1071 |
msgid "Beneficiary: %s"
|
1072 |
msgstr "Begünstigter: %s"
|
1073 |
|
1074 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1075 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1076 |
msgstr "Bitte schließen Sie die Zahlung ab, indem Sie den vollen Betrag auf das folgende Konto überweisen:"
|
1077 |
|
1078 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1079 |
msgid "Bank Transfer"
|
1080 |
msgstr "Überweisung"
|
1081 |
|
1082 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
1083 |
msgid "Disabled"
|
1084 |
msgstr "Deaktiviert"
|
1085 |
|
1086 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1087 |
-
msgid "Number of
|
1088 |
-
msgstr "
|
1089 |
|
1090 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
1091 |
msgid "Expiry date"
|
1092 |
msgstr "Ablaufdatum"
|
1093 |
|
1094 |
#. translators: Placeholder 1: payment method
|
1095 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1096 |
msgid "Payment completed with <strong>%s</strong>"
|
1097 |
msgstr "Zahlung durch <strong>%s</strong> erfolgt"
|
1098 |
|
1099 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1100 |
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."
|
1101 |
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."
|
1102 |
|
1103 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1104 |
msgid "We have not received a definite payment status."
|
1105 |
msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten."
|
1106 |
|
1107 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1108 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1109 |
msgstr "Sie haben Ihre Zahlung storniert. Vervollständigen Sie Ihre Bestellung bitte mit einer anderen Zahlungsmethode."
|
1110 |
|
1111 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1112 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
1113 |
msgid "%s payment expired (%s)."
|
1114 |
msgstr "%s-Zahlung abgelaufen (%s)."
|
1115 |
|
1116 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1117 |
-
#: src/Mollie/WC/Payment/Order.php:
|
1118 |
msgid "Order completed using %s payment (%s)."
|
1119 |
-
msgstr "Bestellung über %s-Bezahlung %s abgeschlossen."
|
1120 |
|
1121 |
#. translators: Placeholder 1: Payment method title
|
1122 |
-
#: src/Mollie/WC/
|
1123 |
-
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:
|
1124 |
-
#: src/Mollie/WC/
|
|
|
|
|
1125 |
msgid "Could not create %s payment."
|
1126 |
msgstr "%s-Zahlung konnte nicht erstellt werden."
|
1127 |
|
1128 |
-
#: src/Mollie/WC/
|
1129 |
-
#: src/Mollie/WC/
|
1130 |
-
#: src/Mollie/WC/Payment/Order.php:607 src/Mollie/WC/Payment/Order.php:631
|
1131 |
-
#: src/Mollie/WC/Payment/Order.php:668 src/Mollie/WC/Payment/Order.php:709
|
1132 |
-
#: src/Mollie/WC/Payment/Payment.php:237 src/Mollie/WC/Payment/Payment.php:338
|
1133 |
-
#: src/Mollie/WC/Payment/Payment.php:396 src/Mollie/WC/Payment/Payment.php:419
|
1134 |
-
#: src/Mollie/WC/Payment/Payment.php:459 src/Mollie/WC/Payment/Payment.php:500
|
1135 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1136 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1137 |
-
#: src/Mollie/WC/Gateway/Abstract.php:547
|
1138 |
-
#: src/Mollie/WC/Gateway/Abstract.php:822
|
1139 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1120
|
1140 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1141 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1142 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1143 |
-
#: src/Mollie/WC/Gateway/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1144 |
msgid "test mode"
|
1145 |
msgstr "Testmodus"
|
1146 |
|
1147 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
|
|
1148 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1149 |
-
#: src/Mollie/WC/Gateway/
|
1150 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1151 |
msgid "%s payment started (%s)."
|
1152 |
msgstr "%s-Bezahlung gestartet (%s)."
|
1153 |
|
|
|
1154 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1155 |
-
#: src/Mollie/WC/Gateway/
|
1156 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1157 |
msgid "Awaiting payment confirmation."
|
1158 |
msgstr "Die Zahlungsbestätigung wird erwartet."
|
1159 |
|
1160 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1161 |
msgid "Could not load order %s"
|
1162 |
msgstr "Bestellung %s konnte nicht geladen werden"
|
1163 |
|
1164 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1165 |
#. be replaced by a link to the Mollie profile
|
1166 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1167 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1168 |
msgstr "%s ist nicht in Ihrem Mollie-Profil aktiviert. Sie können es aktivieren, indem Sie Ihr %sMollie-Profil%s bearbeiten."
|
1169 |
|
1170 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1171 |
#. setting page
|
1172 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1173 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1174 |
msgstr "Kein API-Schlüssel vorgegeben. Bitte %slegen Sie Ihren Mollie-API-Schlüssel fest%s."
|
1175 |
|
1176 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1177 |
msgid "Gateway Disabled"
|
1178 |
msgstr "Gateway deaktiviert"
|
1179 |
|
1180 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1181 |
msgid "Test mode enabled."
|
1182 |
msgstr "Testmodus aktiviert."
|
1183 |
|
1184 |
-
#: src/Mollie/WC/
|
1185 |
msgid "Hold Stock (minutes)"
|
1186 |
msgstr "Bestand halten (Minuten)"
|
1187 |
|
1188 |
-
#: src/Mollie/WC/
|
1189 |
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."
|
1190 |
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."
|
1191 |
|
1192 |
-
#:
|
|
|
|
|
1193 |
msgid "default"
|
1194 |
msgstr "Standard"
|
1195 |
|
1196 |
-
#: src/Mollie/WC/
|
1197 |
msgid "Initial order status"
|
1198 |
msgstr "Initialer Bestellstatus"
|
1199 |
|
1200 |
-
#:
|
|
|
1201 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1202 |
msgstr "Beschreibung der Bezahlmethode, die der Kunde im Bezahlvorgang angezeigt bekommt. Standard: <code>%s</code>"
|
1203 |
|
1204 |
-
#:
|
|
|
1205 |
msgid "Description"
|
1206 |
msgstr "Beschreibung"
|
1207 |
|
1208 |
-
#: src/Mollie/WC/
|
1209 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1210 |
msgstr "Logo bei Bezahlvorgang anzeigen. Standard: <code>aktiviert</code>"
|
1211 |
|
1212 |
-
#:
|
|
|
|
|
1213 |
msgid "Display logo"
|
1214 |
msgstr "Logo anzeigen"
|
1215 |
|
1216 |
-
#:
|
|
|
1217 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1218 |
-
msgstr "Hierdurch wird der Titel gesteuert, den Benutzer beim Bezahlvorgang sehen. Standard <code>%s</code>"
|
1219 |
|
1220 |
-
#:
|
|
|
1221 |
msgid "Title"
|
1222 |
msgstr "Titel"
|
1223 |
|
1224 |
-
|
|
|
|
|
1225 |
msgid "Enable %s"
|
1226 |
msgstr "%s aktivieren"
|
1227 |
|
1228 |
-
#:
|
|
|
1229 |
msgid "Enable/Disable"
|
1230 |
msgstr "Aktivieren/deaktivieren"
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in Dutch
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-07-26 13:45+0200\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
+
"Language: nl\n"
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
|
14 |
+
#: src/Mollie/WC/Plugin.php:375
|
15 |
+
msgid "Unpaid order cancelled - time limit reached."
|
16 |
+
msgstr "Unbezahlte Bestellung storniert – Zeitlimit erreicht."
|
17 |
+
|
18 |
+
#: src/Mollie/WC/Helper/Settings.php:846
|
19 |
+
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"
|
20 |
+
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"
|
21 |
+
|
22 |
+
#: src/Mollie/WC/Helper/Settings.php:254
|
23 |
+
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."
|
24 |
+
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."
|
25 |
+
|
26 |
+
#: src/Mollie/WC/Helper/Settings.php:246
|
27 |
+
msgid "Enable this option if you want to be able to set the number of days after the order will expire."
|
28 |
+
msgstr "Aktivieren Sie diese Option, wenn Sie eine Anzahl an Tagen festlegen möchten, nach deren Ablauf eine Bestellung abläuft."
|
29 |
+
|
30 |
+
#: src/Mollie/WC/Helper/Settings.php:237
|
31 |
+
msgid "%s advanced"
|
32 |
+
msgstr "%s fortgeschritten"
|
33 |
+
|
34 |
+
#: inc/settings/mollie_paypal_button_enabler.php:126
|
35 |
+
msgid "If the product or the cart total amount is under this number, then the button will not show up."
|
36 |
+
msgstr "Wenn der Betrag des Produkts oder des Einkaufswagens unter dieser Zahl liegt, wird die Schaltfläche nicht angezeigt."
|
37 |
+
|
38 |
+
#: inc/settings/mollie_paypal_button_enabler.php:122
|
39 |
+
msgid "Minimum amount to display button"
|
40 |
+
msgstr "Mindestbetrag zur Anzeige der Schaltfläche"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_paypal_button_enabler.php:117
|
43 |
+
msgctxt "Mollie PayPal button Settings"
|
44 |
+
msgid "Polish -- Checkout with PayPal - Silver"
|
45 |
+
msgstr "Polnisch -- Bezahlung mit PayPal - Silber"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_paypal_button_enabler.php:116
|
48 |
+
msgctxt "Mollie PayPal button Settings"
|
49 |
+
msgid "Polish -- Checkout with PayPal - Gold"
|
50 |
+
msgstr "Polnisch -- Bezahlung mit PayPal - Gold"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_paypal_button_enabler.php:115
|
53 |
+
msgctxt "Mollie PayPal button Settings"
|
54 |
+
msgid "Polish -- Buy with PayPal - Gold"
|
55 |
+
msgstr "Polnisch -- Kauf über PayPal - Gold"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_paypal_button_enabler.php:114
|
58 |
+
msgctxt "Mollie PayPal button Settings"
|
59 |
+
msgid "French -- Checkout with PayPal - Silver"
|
60 |
+
msgstr "Französisch -- Bezahlung mit PayPal - Silber"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_paypal_button_enabler.php:113
|
63 |
+
msgctxt "Mollie PayPal button Settings"
|
64 |
+
msgid "French -- Checkout with PayPal - Gold"
|
65 |
+
msgstr "Französisch -- Bezahlung mit PayPal - Gold"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_paypal_button_enabler.php:112
|
68 |
+
msgctxt "Mollie PayPal button Settings"
|
69 |
+
msgid "French -- Buy with PayPal - Gold"
|
70 |
+
msgstr "Französisch -- Kauf über PayPal - Gold"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_paypal_button_enabler.php:111
|
73 |
+
msgctxt "Mollie PayPal button Settings"
|
74 |
+
msgid "German -- Checkout with PayPal - Rounded white"
|
75 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, weiß"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_paypal_button_enabler.php:110
|
78 |
+
msgctxt "Mollie PayPal button Settings"
|
79 |
+
msgid "German -- Checkout with PayPal - Pill white"
|
80 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, weiß"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_paypal_button_enabler.php:109
|
83 |
+
msgctxt "Mollie PayPal button Settings"
|
84 |
+
msgid "German -- Checkout with PayPal - Rounded gray"
|
85 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, grau"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_paypal_button_enabler.php:108
|
88 |
+
msgctxt "Mollie PayPal button Settings"
|
89 |
+
msgid "German -- Checkout with PayPal - Pill gray"
|
90 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, grau"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_paypal_button_enabler.php:107
|
93 |
+
msgctxt "Mollie PayPal button Settings"
|
94 |
+
msgid "German -- Checkout with PayPal - Rounded golden"
|
95 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, goldfarben"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_paypal_button_enabler.php:106
|
98 |
+
msgctxt "Mollie PayPal button Settings"
|
99 |
+
msgid "German -- Checkout with PayPal - Pill golden"
|
100 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, goldfarben"
|
101 |
+
|
102 |
+
#: inc/settings/mollie_paypal_button_enabler.php:105
|
103 |
+
msgctxt "Mollie PayPal button Settings"
|
104 |
+
msgid "German -- Checkout with PayPal - Rounded blue"
|
105 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, blau"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_paypal_button_enabler.php:104
|
108 |
+
msgctxt "Mollie PayPal button Settings"
|
109 |
+
msgid "German -- Checkout with PayPal - Pill blue"
|
110 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, blau"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_paypal_button_enabler.php:103
|
113 |
+
msgctxt "Mollie PayPal button Settings"
|
114 |
+
msgid "German -- Checkout with PayPal - Rounded black"
|
115 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Abgerundet, schwarz"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_paypal_button_enabler.php:102
|
118 |
+
msgctxt "Mollie PayPal button Settings"
|
119 |
+
msgid "German -- Checkout with PayPal - Pill black"
|
120 |
+
msgstr "Deutsch -- Bezahlung mit PayPal - Klein und rund, schwarz"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_paypal_button_enabler.php:101
|
123 |
+
msgctxt "Mollie PayPal button Settings"
|
124 |
+
msgid "German -- Buy with PayPal - Rounded white"
|
125 |
+
msgstr "Deutsch -- Kauf über PayPal - Abgerundet, weiß"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_paypal_button_enabler.php:100
|
128 |
+
msgctxt "Mollie PayPal button Settings"
|
129 |
+
msgid "German -- Buy with PayPal - Pill white"
|
130 |
+
msgstr "Deutsch -- Kauf über PayPal - Klein und rund, weiß"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_paypal_button_enabler.php:99
|
133 |
+
msgctxt "Mollie PayPal button Settings"
|
134 |
+
msgid "German -- Buy with PayPal - Rounded gray"
|
135 |
+
msgstr "Deutsch -- Kauf über PayPal - Abgerundet, grau"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_paypal_button_enabler.php:98
|
138 |
+
msgctxt "Mollie PayPal button Settings"
|
139 |
+
msgid "German -- Buy with PayPal - Pill gray"
|
140 |
+
msgstr "Deutsch -- Kauf über PayPal - Klein und rund, grau"
|
141 |
+
|
142 |
+
#: inc/settings/mollie_paypal_button_enabler.php:97
|
143 |
+
msgctxt "Mollie PayPal button Settings"
|
144 |
+
msgid "German -- Buy with PayPal - Rounded golden"
|
145 |
+
msgstr "Deutsch -- Kauf über PayPal - Abgerundet, goldfarben"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_paypal_button_enabler.php:96
|
148 |
+
msgctxt "Mollie PayPal button Settings"
|
149 |
+
msgid "German -- Buy with PayPal - Pill golden"
|
150 |
+
msgstr "Deutsch -- Kauf über PayPal - Klein und rund, goldfarben"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_paypal_button_enabler.php:95
|
153 |
+
msgctxt "Mollie PayPal button Settings"
|
154 |
+
msgid "German -- Buy with PayPal - Rounded blue"
|
155 |
+
msgstr "Deutsch -- Kauf über PayPal - Abgerundet, blau"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_paypal_button_enabler.php:94
|
158 |
+
msgctxt "Mollie PayPal button Settings"
|
159 |
+
msgid "German -- Buy with PayPal - Pill blue"
|
160 |
+
msgstr "Deutsch -- Kauf über PayPal - Klein und rund, blau"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_paypal_button_enabler.php:93
|
163 |
+
msgctxt "Mollie PayPal button Settings"
|
164 |
+
msgid "German -- Buy with PayPal - Rounded black"
|
165 |
+
msgstr "Deutsch -- Kauf über PayPal - Abgerundet, schwarz"
|
166 |
+
|
167 |
+
#: inc/settings/mollie_paypal_button_enabler.php:92
|
168 |
+
msgctxt "Mollie PayPal button Settings"
|
169 |
+
msgid "German -- Buy with PayPal - Pill black"
|
170 |
+
msgstr "Deutsch -- Kauf über PayPal - Klein und rund, schwarz"
|
171 |
+
|
172 |
+
#: inc/settings/mollie_paypal_button_enabler.php:91
|
173 |
+
msgctxt "Mollie PayPal button Settings"
|
174 |
+
msgid "Dutch -- Checkout with PayPal - Rounded white"
|
175 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, weiß"
|
176 |
+
|
177 |
+
#: inc/settings/mollie_paypal_button_enabler.php:90
|
178 |
+
msgctxt "Mollie PayPal button Settings"
|
179 |
+
msgid "Dutch -- Checkout with PayPal - Pill white"
|
180 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, weiß"
|
181 |
+
|
182 |
+
#: inc/settings/mollie_paypal_button_enabler.php:89
|
183 |
+
msgctxt "Mollie PayPal button Settings"
|
184 |
+
msgid "Dutch -- Checkout with PayPal - Rounded gray"
|
185 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, grau"
|
186 |
+
|
187 |
+
#: inc/settings/mollie_paypal_button_enabler.php:88
|
188 |
+
msgctxt "Mollie PayPal button Settings"
|
189 |
+
msgid "Dutch -- Checkout with PayPal - Pill gray"
|
190 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, grau"
|
191 |
+
|
192 |
+
#: inc/settings/mollie_paypal_button_enabler.php:87
|
193 |
+
msgctxt "Mollie PayPal button Settings"
|
194 |
+
msgid "Dutch -- Checkout with PayPal - Rounded golden"
|
195 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, goldfarben"
|
196 |
+
|
197 |
+
#: inc/settings/mollie_paypal_button_enabler.php:86
|
198 |
+
msgctxt "Mollie PayPal button Settings"
|
199 |
+
msgid "Dutch -- Checkout with PayPal - Pill golden"
|
200 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, goldfarben"
|
201 |
+
|
202 |
+
#: inc/settings/mollie_paypal_button_enabler.php:85
|
203 |
+
msgctxt "Mollie PayPal button Settings"
|
204 |
+
msgid "Dutch -- Checkout with PayPal - Rounded blue"
|
205 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, blau"
|
206 |
+
|
207 |
+
#: inc/settings/mollie_paypal_button_enabler.php:84
|
208 |
+
msgctxt "Mollie PayPal button Settings"
|
209 |
+
msgid "Dutch -- Checkout with PayPal - Pill blue"
|
210 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, blau"
|
211 |
+
|
212 |
+
#: inc/settings/mollie_paypal_button_enabler.php:83
|
213 |
+
msgctxt "Mollie PayPal button Settings"
|
214 |
+
msgid "Dutch -- Checkout with PayPal - Rounded black"
|
215 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Abgerundet, schwarz"
|
216 |
+
|
217 |
+
#: inc/settings/mollie_paypal_button_enabler.php:82
|
218 |
+
msgctxt "Mollie PayPal button Settings"
|
219 |
+
msgid "Dutch -- Checkout with PayPal - Pill black"
|
220 |
+
msgstr "Niederländisch -- Bezahlung mit PayPal - Klein und rund, schwarz"
|
221 |
+
|
222 |
+
#: inc/settings/mollie_paypal_button_enabler.php:81
|
223 |
+
msgctxt "Mollie PayPal button Settings"
|
224 |
+
msgid "Dutch -- Buy with PayPal - Rounded white"
|
225 |
+
msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, weiß"
|
226 |
+
|
227 |
+
#: inc/settings/mollie_paypal_button_enabler.php:80
|
228 |
+
msgctxt "Mollie PayPal button Settings"
|
229 |
+
msgid "Dutch -- Buy with PayPal - Pill white"
|
230 |
+
msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, weiß"
|
231 |
+
|
232 |
+
#: inc/settings/mollie_paypal_button_enabler.php:79
|
233 |
+
msgctxt "Mollie PayPal button Settings"
|
234 |
+
msgid "Dutch -- Buy with PayPal - Rounded gray"
|
235 |
+
msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, grau"
|
236 |
+
|
237 |
+
#: inc/settings/mollie_paypal_button_enabler.php:78
|
238 |
+
msgctxt "Mollie PayPal button Settings"
|
239 |
+
msgid "Dutch -- Buy with PayPal - Pill gray"
|
240 |
+
msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, grau"
|
241 |
+
|
242 |
+
#: inc/settings/mollie_paypal_button_enabler.php:77
|
243 |
+
msgctxt "Mollie PayPal button Settings"
|
244 |
+
msgid "Dutch -- Buy with PayPal - Rounded golden"
|
245 |
+
msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, goldfarben"
|
246 |
+
|
247 |
+
#: inc/settings/mollie_paypal_button_enabler.php:76
|
248 |
+
msgctxt "Mollie PayPal button Settings"
|
249 |
+
msgid "Dutch -- Buy with PayPal - Pill golden"
|
250 |
+
msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, goldfarben"
|
251 |
+
|
252 |
+
#: inc/settings/mollie_paypal_button_enabler.php:75
|
253 |
+
msgctxt "Mollie PayPal button Settings"
|
254 |
+
msgid "Dutch -- Buy with PayPal - Rounded blue"
|
255 |
+
msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, blau"
|
256 |
+
|
257 |
+
#: inc/settings/mollie_paypal_button_enabler.php:74
|
258 |
+
msgctxt "Mollie PayPal button Settings"
|
259 |
+
msgid "Dutch -- Buy with PayPal - Pill blue"
|
260 |
+
msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, blau"
|
261 |
+
|
262 |
+
#: inc/settings/mollie_paypal_button_enabler.php:73
|
263 |
+
msgctxt "Mollie PayPal button Settings"
|
264 |
+
msgid "Dutch -- Buy with PayPal - Rounded black"
|
265 |
+
msgstr "Niederländisch -- Kauf über PayPal - Abgerundet, schwarz"
|
266 |
+
|
267 |
+
#: inc/settings/mollie_paypal_button_enabler.php:72
|
268 |
+
msgctxt "Mollie PayPal button Settings"
|
269 |
+
msgid "Dutch -- Buy with PayPal - Pill black"
|
270 |
+
msgstr "Niederländisch -- Kauf über PayPal - Klein und rund, schwarz"
|
271 |
+
|
272 |
+
#: inc/settings/mollie_paypal_button_enabler.php:71
|
273 |
+
msgctxt "Mollie PayPal button Settings"
|
274 |
+
msgid "English -- Checkout with PayPal - Rounded white"
|
275 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, weiß"
|
276 |
+
|
277 |
+
#: inc/settings/mollie_paypal_button_enabler.php:70
|
278 |
+
msgctxt "Mollie PayPal button Settings"
|
279 |
+
msgid "English -- Checkout with PayPal - Pill white"
|
280 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, weiß"
|
281 |
+
|
282 |
+
#: inc/settings/mollie_paypal_button_enabler.php:69
|
283 |
+
msgctxt "Mollie PayPal button Settings"
|
284 |
+
msgid "English -- Checkout with PayPal - Rounded gray"
|
285 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, grau"
|
286 |
+
|
287 |
+
#: inc/settings/mollie_paypal_button_enabler.php:68
|
288 |
+
msgctxt "Mollie PayPal button Settings"
|
289 |
+
msgid "English -- Checkout with PayPal - Pill gray"
|
290 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, grau"
|
291 |
+
|
292 |
+
#: inc/settings/mollie_paypal_button_enabler.php:67
|
293 |
+
msgctxt "Mollie PayPal button Settings"
|
294 |
+
msgid "English -- Checkout with PayPal - Rounded golden"
|
295 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, goldfarben"
|
296 |
+
|
297 |
+
#: inc/settings/mollie_paypal_button_enabler.php:66
|
298 |
+
msgctxt "Mollie PayPal button Settings"
|
299 |
+
msgid "English -- Checkout with PayPal - Pill golden"
|
300 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, goldfarben"
|
301 |
+
|
302 |
+
#: inc/settings/mollie_paypal_button_enabler.php:65
|
303 |
+
msgctxt "Mollie PayPal button Settings"
|
304 |
+
msgid "English -- Checkout with PayPal - Rounded blue"
|
305 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, blau"
|
306 |
+
|
307 |
+
#: inc/settings/mollie_paypal_button_enabler.php:64
|
308 |
+
msgctxt "Mollie PayPal button Settings"
|
309 |
+
msgid "English -- Checkout with PayPal - Pill blue"
|
310 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, blau"
|
311 |
+
|
312 |
+
#: inc/settings/mollie_paypal_button_enabler.php:63
|
313 |
+
msgctxt "Mollie PayPal button Settings"
|
314 |
+
msgid "English -- Checkout with PayPal - Rounded black"
|
315 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Abgerundet, schwarz"
|
316 |
+
|
317 |
+
#: inc/settings/mollie_paypal_button_enabler.php:62
|
318 |
+
msgctxt "Mollie PayPal button Settings"
|
319 |
+
msgid "English -- Checkout with PayPal - Pill black"
|
320 |
+
msgstr "Englisch -- Bezahlung mit PayPal - Klein und rund, schwarz"
|
321 |
+
|
322 |
+
#: inc/settings/mollie_paypal_button_enabler.php:61
|
323 |
+
msgctxt "Mollie PayPal button Settings"
|
324 |
+
msgid "English -- Buy with PayPal - Rounded white"
|
325 |
+
msgstr "Englisch -- Kauf über PayPal - Abgerundet, weiß"
|
326 |
+
|
327 |
+
#: inc/settings/mollie_paypal_button_enabler.php:60
|
328 |
+
msgctxt "Mollie PayPal button Settings"
|
329 |
+
msgid "English -- Buy with PayPal - Pill white"
|
330 |
+
msgstr "Englisch -- Kauf über PayPal - Klein und rund, weiß"
|
331 |
+
|
332 |
+
#: inc/settings/mollie_paypal_button_enabler.php:59
|
333 |
+
msgctxt "Mollie PayPal button Settings"
|
334 |
+
msgid "English -- Buy with PayPal - Rounded gray"
|
335 |
+
msgstr "Englisch -- Kauf über PayPal - Abgerundet, grau"
|
336 |
+
|
337 |
+
#: inc/settings/mollie_paypal_button_enabler.php:58
|
338 |
+
msgctxt "Mollie PayPal button Settings"
|
339 |
+
msgid "English -- Buy with PayPal - Pill gray"
|
340 |
+
msgstr "Englisch -- Kauf über PayPal - Klein und rund, grau"
|
341 |
+
|
342 |
+
#: inc/settings/mollie_paypal_button_enabler.php:57
|
343 |
+
msgctxt "Mollie PayPal button Settings"
|
344 |
+
msgid "English -- Buy with PayPal - Rounded golden"
|
345 |
+
msgstr "Englisch -- Kauf über PayPal - Abgerundet, goldfarben"
|
346 |
+
|
347 |
+
#: inc/settings/mollie_paypal_button_enabler.php:56
|
348 |
+
msgctxt "Mollie PayPal button Settings"
|
349 |
+
msgid "English -- Buy with PayPal - Pill golden"
|
350 |
+
msgstr "Englisch -- Kauf über PayPal - Klein und rund, goldfarben"
|
351 |
+
|
352 |
+
#: inc/settings/mollie_paypal_button_enabler.php:55
|
353 |
+
msgctxt "Mollie PayPal button Settings"
|
354 |
+
msgid "English -- Buy with PayPal - Rounded blue"
|
355 |
+
msgstr "Englisch -- Kauf über PayPal - Abgerundet, blau"
|
356 |
+
|
357 |
+
#: inc/settings/mollie_paypal_button_enabler.php:54
|
358 |
+
msgctxt "Mollie PayPal button Settings"
|
359 |
+
msgid "English -- Buy with PayPal - Pill blue"
|
360 |
+
msgstr "Englisch -- Kauf über PayPal - Klein und rund, blau"
|
361 |
+
|
362 |
+
#: inc/settings/mollie_paypal_button_enabler.php:46
|
363 |
+
msgctxt "Mollie PayPal Button Settings"
|
364 |
+
msgid "Select the text and the colour of the button."
|
365 |
+
msgstr "Wählen Sie Text und Farbe der Schaltfläche aus."
|
366 |
+
|
367 |
+
#: inc/settings/mollie_paypal_button_enabler.php:44
|
368 |
+
msgctxt "Mollie PayPal Button Settings"
|
369 |
+
msgid "Button text language and color"
|
370 |
+
msgstr "Sprache und Farbe des Schaltflächentextes"
|
371 |
+
|
372 |
+
#: inc/settings/mollie_paypal_button_enabler.php:35
|
373 |
+
msgid "Enable the PayPal button to be used in the product page."
|
374 |
+
msgstr "Aktivieren Sie die PayPal-Schaltfläche, die auf der Produktseite verwendet werden soll."
|
375 |
+
|
376 |
+
#: inc/settings/mollie_paypal_button_enabler.php:31
|
377 |
+
msgid "Display on product page"
|
378 |
+
msgstr "Auf der Produktseite anzeigen"
|
379 |
+
|
380 |
+
#: inc/settings/mollie_paypal_button_enabler.php:23
|
381 |
+
msgid "Enable the PayPal button to be used in the cart page."
|
382 |
+
msgstr "Aktivieren Sie die PayPal-Schaltfläche, die im Einkaufswagen verwendet werden soll."
|
383 |
+
|
384 |
+
#: inc/settings/mollie_paypal_button_enabler.php:19
|
385 |
+
msgid "Display on cart page"
|
386 |
+
msgstr "Im Einkaufswagen anzeigen"
|
387 |
+
|
388 |
+
#: inc/settings/mollie_paypal_button_enabler.php:12
|
389 |
+
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"
|
390 |
+
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"
|
391 |
+
|
392 |
+
#: inc/settings/mollie_paypal_button_enabler.php:7
|
393 |
+
msgid "PayPal button display settings"
|
394 |
+
msgstr "Anzeigeeinstellungen für die PayPal-Schaltfläche"
|
395 |
+
|
396 |
+
#: src/Mollie/WC/Helper/Settings.php:159
|
397 |
+
msgid "%s surcharge"
|
398 |
+
msgstr "%s Zuschlag"
|
399 |
+
|
400 |
+
#: src/Mollie/WC/Helper/Settings.php:125
|
401 |
+
msgid "%s custom logo"
|
402 |
+
msgstr "%s Eigenes Logo"
|
403 |
+
|
404 |
+
#: src/Mollie/WC/Helper/Settings.php:107
|
405 |
+
msgid "Sales countries"
|
406 |
+
msgstr "Vertriebsländer"
|
407 |
+
|
408 |
+
#: src/Mollie/WC/Helper/Settings.php:61
|
409 |
+
msgid "%s display settings"
|
410 |
+
msgstr "%s Anzeigeeinstellungen"
|
411 |
+
|
412 |
+
#: inc/settings/mollie_advanced_settings.php:124
|
413 |
+
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"
|
414 |
+
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"
|
415 |
+
|
416 |
+
#: inc/settings/mollie_advanced_settings.php:109
|
417 |
+
msgid "API Payment Description"
|
418 |
+
msgstr "Beschreibung für Zahlung über API"
|
419 |
+
|
420 |
+
#: inc/settings/mollie_advanced_settings.php:99
|
421 |
+
msgid "Click %shere%s to read more about the differences between the Payments and Orders API"
|
422 |
+
msgstr "%sHier%s erfahren Sie mehr über die Unterschiede zwischen der Payments API und der Orders API"
|
423 |
+
|
424 |
+
#: inc/settings/mollie_advanced_settings.php:82
|
425 |
+
msgid "Select API Method"
|
426 |
+
msgstr "API-Methode auswählen"
|
427 |
+
|
428 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2645
|
429 |
+
msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb."
|
430 |
+
msgstr "%1$sMollie-Zahlungen für WooCommerce%2$s Datei konnte nicht hochgeladen werden. Die Dateigröße muss weniger als 500 KB betragen."
|
431 |
+
|
432 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2606
|
433 |
+
msgid " +%1s%2s + %3s%% Fee"
|
434 |
+
msgstr " +%1s%2s + %3s%% Gebühr"
|
435 |
+
|
436 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2589
|
437 |
+
msgid " +%1s%% Fee"
|
438 |
+
msgstr " +%1s%% Gebühr"
|
439 |
+
|
440 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2579
|
441 |
+
msgid " +%1s%2s Fee"
|
442 |
+
msgstr " +%1s%2s Gebühr"
|
443 |
+
|
444 |
+
#: src/Mollie/WC/Gateway/Abstract.php:138
|
445 |
+
msgid "No custom logo selected"
|
446 |
+
msgstr "Kein eigenes Logo ausgewählt"
|
447 |
+
|
448 |
+
#: src/Mollie/WC/Helper/Settings.php:226
|
449 |
+
msgid "Limit the maximum fee added on checkout. Default 0"
|
450 |
+
msgstr "Setzen Sie einen Grenzwert für die Gebühr, die zum Einkaufswagen hinzugefügt wird. Standard: 0"
|
451 |
+
|
452 |
+
#: src/Mollie/WC/Helper/Settings.php:223
|
453 |
+
msgid "Payment surcharge limit in %s"
|
454 |
+
msgstr "Grenzwert für den Zuschlag in %s"
|
455 |
+
|
456 |
+
#: src/Mollie/WC/Helper/Settings.php:213
|
457 |
+
msgid "Control the percentage fee added on checkout. Default 0.01"
|
458 |
+
msgstr "Legen Sie einen Prozentsatz für die Gebühr fest, die zum Einkaufswagen hinzugefügt wird. Standard: 0,01"
|
459 |
+
|
460 |
+
#: src/Mollie/WC/Helper/Settings.php:210
|
461 |
+
msgid "Payment surcharge percentage amount %"
|
462 |
+
msgstr "Prozentsatz für den Zuschlag in %"
|
463 |
+
|
464 |
+
#: src/Mollie/WC/Helper/Settings.php:200
|
465 |
+
msgid "Control the fee added on checkout. Default 0.01"
|
466 |
+
msgstr "Legen Sie die Gebühr fest, die zum Einkaufswagen hinzugefügt wird. Standard: 0,01"
|
467 |
+
|
468 |
+
#: src/Mollie/WC/Helper/Settings.php:197
|
469 |
+
msgid "Payment surcharge fixed amount in %s"
|
470 |
+
msgstr "Fester Betrag des Zuschlags in %s"
|
471 |
+
|
472 |
+
#: src/Mollie/WC/Helper/Settings.php:190
|
473 |
+
msgid "Choose a payment surcharge for this gateway"
|
474 |
+
msgstr "Wählen Sie eine Zahlungsgebühr für dieses Zahlungsportal aus"
|
475 |
+
|
476 |
+
#: src/Mollie/WC/Helper/Settings.php:184
|
477 |
+
msgid "Fixed fee and percentage"
|
478 |
+
msgstr "Feste Gebühr und Prozentsatz"
|
479 |
+
|
480 |
+
#: src/Mollie/WC/Helper/Settings.php:180
|
481 |
+
msgid "Percentage"
|
482 |
+
msgstr "Prozentsatz"
|
483 |
+
|
484 |
+
#: src/Mollie/WC/Helper/Settings.php:176
|
485 |
+
msgid "Fixed fee"
|
486 |
+
msgstr "Feste Gebühr"
|
487 |
+
|
488 |
+
#: src/Mollie/WC/Helper/Settings.php:172
|
489 |
+
msgid "No fee"
|
490 |
+
msgstr "Keine Gebühr"
|
491 |
+
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:166
|
493 |
+
msgid "Payment Surcharge"
|
494 |
+
msgstr "Zahlungsgebühr"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Helper/Settings.php:150
|
497 |
+
msgid "Upload a custom icon for this gateway. The feature must be enabled."
|
498 |
+
msgstr "Laden Sie ein eigenes Symbol für dieses Zahlungsportal hoch. Die entsprechende Funktion muss aktiviert sein."
|
499 |
+
|
500 |
+
#: src/Mollie/WC/Helper/Settings.php:143
|
501 |
+
msgid "Upload custom logo"
|
502 |
+
msgstr "Eigenes Logo hochladen"
|
503 |
+
|
504 |
+
#: src/Mollie/WC/Helper/Settings.php:137
|
505 |
+
msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options."
|
506 |
+
msgstr "Aktivieren Sie die Funktion zum Hinzufügen eines eigenen Logos für dieses Zahlungsportal. Die Funktion hat Vorrang über andere Logo-Optionen."
|
507 |
+
|
508 |
+
#: src/Mollie/WC/Helper/Settings.php:132
|
509 |
+
msgid "Enable custom logo"
|
510 |
+
msgstr "Eigenes Logo aktivieren"
|
511 |
+
|
512 |
+
#: src/Mollie/WC/Helper/GatewaySurchargeHandler.php:253
|
513 |
+
msgid "Fee"
|
514 |
+
msgstr "Gebühr"
|
515 |
+
|
516 |
+
#: inc/settings/mollie_applepay_settings.php:106
|
517 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:32
|
518 |
+
msgid "Enable the Apple Pay direct buy button on the Product page"
|
519 |
+
msgstr "Kaufschaltfläche „Direktkauf über Apple Pay“ auf der Produktseite aktivieren"
|
520 |
+
|
521 |
+
#: inc/settings/mollie_applepay_settings.php:103
|
522 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:29
|
523 |
+
msgid "Enable Apple Pay Button on Product page"
|
524 |
+
msgstr "Schalfläche Apple Pay auf Produktseite aktivieren"
|
525 |
+
|
526 |
+
#: inc/settings/mollie_applepay_settings.php:91
|
527 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:21
|
528 |
+
msgid "Enable the Apple Pay direct buy button on the Cart page"
|
529 |
+
msgstr "Kaufschaltfläche „Direktkauf über Apple Pay“ im Einkaufswagen aktivieren"
|
530 |
+
|
531 |
+
#: inc/settings/mollie_applepay_settings.php:88
|
532 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:18
|
533 |
+
msgid "Enable Apple Pay Button on Cart page"
|
534 |
+
msgstr "Schalfläche Apple Pay im Einkaufswagen aktivieren"
|
535 |
+
|
536 |
+
#: pluginEnvironmentChecker/EnvironmentChecker.php:49
|
537 |
+
msgid "Validation failed with %1$d errors"
|
538 |
+
msgstr "Validierung fehlgeschlagen mit %1$d errors"
|
539 |
+
|
540 |
+
#: src/Mollie/WC/Plugin.php:591
|
541 |
+
msgid "Mollie Voucher category"
|
542 |
+
msgstr "Mollie-Gutscheinkategorie"
|
543 |
+
|
544 |
+
#: src/Mollie/WC/Plugin.php:531 src/Mollie/WC/Plugin.php:594
|
545 |
+
msgid "Same as default category"
|
546 |
+
msgstr "Entspricht Standardkategorie"
|
547 |
+
|
548 |
+
#: src/Mollie/WC/Plugin.php:464 src/Mollie/WC/Plugin.php:487
|
549 |
+
msgid "Select a voucher category to apply to all products with this category"
|
550 |
+
msgstr "Wählen Sie eine Gutscheinkategorie aus, die auf alle Produkte dieser Kategorie angewendet werden soll"
|
551 |
+
|
552 |
+
#: src/Mollie/WC/Plugin.php:430 src/Mollie/WC/Plugin.php:462
|
553 |
+
#: src/Mollie/WC/Plugin.php:485 src/Mollie/WC/Plugin.php:598
|
554 |
+
msgid "Gift"
|
555 |
+
msgstr "Geschenk"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Plugin.php:429 src/Mollie/WC/Plugin.php:461
|
558 |
+
#: src/Mollie/WC/Plugin.php:484 src/Mollie/WC/Plugin.php:597
|
559 |
+
msgid "Eco"
|
560 |
+
msgstr "Öko"
|
561 |
+
|
562 |
+
#: src/Mollie/WC/Plugin.php:428 src/Mollie/WC/Plugin.php:460
|
563 |
+
#: src/Mollie/WC/Plugin.php:483 src/Mollie/WC/Plugin.php:596
|
564 |
+
msgid "Meal"
|
565 |
+
msgstr "Essen"
|
566 |
+
|
567 |
+
#: src/Mollie/WC/Plugin.php:427 src/Mollie/WC/Plugin.php:459
|
568 |
+
#: src/Mollie/WC/Plugin.php:482 src/Mollie/WC/Plugin.php:595
|
569 |
+
msgid "No Category"
|
570 |
+
msgstr "Keine Kategorie"
|
571 |
+
|
572 |
+
#: src/Mollie/WC/Plugin.php:426 src/Mollie/WC/Plugin.php:458
|
573 |
+
#: src/Mollie/WC/Plugin.php:481
|
574 |
+
msgid "--Please choose an option--"
|
575 |
+
msgstr "--Bitte eine Option wählen--"
|
576 |
+
|
577 |
+
#: src/Mollie/WC/Plugin.php:423 src/Mollie/WC/Plugin.php:456
|
578 |
+
#: src/Mollie/WC/Plugin.php:478
|
579 |
+
msgid "Mollie Voucher Category"
|
580 |
+
msgstr "Mollie-Gutscheinkategorie"
|
581 |
+
|
582 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
583 |
+
msgid "Contact Support"
|
584 |
+
msgstr "Support kontaktieren"
|
585 |
+
|
586 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
587 |
+
msgid "Plugin Documentation"
|
588 |
+
msgstr "Plugin-Dokumentation"
|
589 |
+
|
590 |
+
#: src/Mollie/WC/Helper/Settings.php:619
|
591 |
+
msgid "to create a new Mollie account and start receiving payments in a couple of minutes. "
|
592 |
+
msgstr "um ein neues Mollie-Konto zu eröffnen und in wenigen Minuten Zahlungen zu erhalten. "
|
593 |
+
|
594 |
+
#: src/Mollie/WC/Helper/Settings.php:617
|
595 |
+
msgid " Mollie is dedicated to making payments better for WooCommerce. "
|
596 |
+
msgstr " Ziel von Mollie ist es, Zahlungen für WooCommerce zu verbessern. "
|
597 |
+
|
598 |
+
#: src/Mollie/WC/Helper/Settings.php:616
|
599 |
+
msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie."
|
600 |
+
msgstr " Mit dem wirkungsvollen Plugin von Mollie können Sie fertig konfigurierte Zahlungsmethoden einfach in Ihren WooCommerce-Onlineshop einfügen."
|
601 |
+
|
602 |
+
#: src/Mollie/WC/Helper/Settings.php:615
|
603 |
+
msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them."
|
604 |
+
msgstr "Integrieren Sie schnell alle gängigen Zahlungsmethoden in WooCommerce, wo immer Sie sie brauchen"
|
605 |
+
|
606 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:147
|
607 |
+
msgid "Advanced"
|
608 |
+
msgstr "Fortgeschritten"
|
609 |
+
|
610 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:143
|
611 |
+
msgid "Apple Pay Button"
|
612 |
+
msgstr "Schaltfläche Apple Pay"
|
613 |
+
|
614 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:138
|
615 |
+
msgid "General"
|
616 |
+
msgstr "Allgemein"
|
617 |
+
|
618 |
+
#: src/Mollie/WC/Gateway/Abstract.php:283
|
619 |
+
msgid "Select none"
|
620 |
+
msgstr "Auswahl aufheben"
|
621 |
+
|
622 |
+
#: src/Mollie/WC/Gateway/Abstract.php:282
|
623 |
+
msgid "Select all"
|
624 |
+
msgstr "Alle auswählen"
|
625 |
+
|
626 |
+
#: src/Mollie/WC/Gateway/Abstract.php:273
|
627 |
+
msgid "Country"
|
628 |
+
msgstr "Land"
|
629 |
+
|
630 |
+
#: src/Mollie/WC/Gateway/Abstract.php:272
|
631 |
+
msgid "Choose countries…"
|
632 |
+
msgstr "Länder wählen…"
|
633 |
+
|
634 |
+
#: src/Mollie/WC/Gateway/Abstract.php:244
|
635 |
+
msgid "Return to payments"
|
636 |
+
msgstr "Zurück zu den Zahlungen"
|
637 |
+
|
638 |
+
#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114
|
639 |
+
msgid "Sell to specific countries"
|
640 |
+
msgstr "In bestimmten Ländern verkaufen"
|
641 |
+
|
642 |
+
#: inc/settings/mollie_advanced_settings.php:73
|
643 |
+
msgid "Single Click Payments"
|
644 |
+
msgstr "Zahlungen mit einem Klick"
|
645 |
+
|
646 |
+
#: inc/settings/mollie_advanced_settings.php:68
|
647 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%1$s</code>. Required if WooCommerce Subscriptions is being used! Read more about <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> and how it improves your conversion."
|
648 |
+
msgstr "Soll Mollie den Namen und die E-Mail-Adresse des Kunden für Single-Click-Bezahlungen speichern? Standard: <code>%1$s</code>. Verpflichtend bei Verwendung von WooCommerce Subscriptions. Mollie-Komponenten für dieses Portal verwenden. Erfahren Sie mehr über <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> und wie es Ihren Umsatz steigert."
|
649 |
+
|
650 |
+
#: inc/settings/mollie_advanced_settings.php:6
|
651 |
+
msgid "Mollie advanced settings"
|
652 |
+
msgstr "Fortgeschrittene Mollie-Einstellungen"
|
653 |
+
|
654 |
+
#: inc/settings/mollie_applepay_settings.php:84
|
655 |
+
msgid "The following options are required to use the Apple Pay Direct Button"
|
656 |
+
msgstr "Die folgenden Optionen sind für die Verwendung der Schaltfläche „Direktkauf über Apple Pay“ verpflichtend"
|
657 |
+
|
658 |
+
#: inc/settings/mollie_applepay_settings.php:14
|
659 |
+
msgid "The following options are required to use the Apple Pay gateway"
|
660 |
+
msgstr "Die folgenden Optionen sind für die Verwendung des Zahlungsportals Apple Pay verpflichtend"
|
661 |
|
662 |
+
#: inc/settings/mollie_components_enabler.php:8
|
663 |
+
msgid "Use the Mollie Components for this Gateway. Read more about <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> and how it improves your conversion."
|
664 |
+
msgstr "Mollie-Komponenten für dieses Portal aktivieren Mollie-Komponenten für dieses Portal verwenden. Erfahren Sie mehr über <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> und wie es Ihren Umsatz steigert."
|
665 |
+
|
666 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:11
|
667 |
+
msgid "The following options are required to use the Apple Pay button"
|
668 |
+
msgstr "Die folgenden Optionen sind für die Verwendung der Schaltfläche Apple Pay verpflichtend"
|
669 |
+
|
670 |
+
#: inc/settings/mollie_applepay_settings.php:79
|
671 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
672 |
+
msgid "Apple Pay button settings"
|
673 |
+
msgstr "Einstellungen zur Schaltfläche Apple Pay"
|
674 |
+
|
675 |
+
#: mollie-payments-for-woocommerce.php:91
|
676 |
+
msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s."
|
677 |
+
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."
|
678 |
+
|
679 |
+
#: src/Mollie/WC/Plugin.php:541
|
680 |
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."
|
681 |
+
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“."
|
682 |
|
683 |
+
#: src/Mollie/WC/Plugin.php:524
|
684 |
msgid "Products voucher category"
|
685 |
+
msgstr "Produktgutscheinkategorie"
|
686 |
|
687 |
+
#: src/Mollie/WC/Plugin.php:308
|
688 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
689 |
+
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."
|
690 |
|
691 |
+
#: src/Mollie/WC/Helper/Settings.php:654 src/Mollie/WC/Plugin.php:391
|
692 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:11
|
693 |
msgid "Mollie Settings"
|
694 |
msgstr "Mollie-Einstellungen"
|
695 |
|
705 |
|
706 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
707 |
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"
|
708 |
+
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"
|
709 |
|
710 |
+
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:520
|
711 |
msgid "Select the default products category"
|
712 |
+
msgstr "Standardkategorie für Produkte wählen"
|
713 |
|
714 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:40
|
715 |
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"
|
716 |
+
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"
|
717 |
|
718 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:39
|
719 |
+
#: src/Mollie/WC/Helper/Settings.php:245
|
720 |
msgid "Enable expiry date for payments"
|
721 |
msgstr "Ablaufdatum für Zahlungen aktivieren"
|
722 |
|
723 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:38
|
724 |
+
#: src/Mollie/WC/Helper/Settings.php:244
|
725 |
msgid "Activate expiry date setting"
|
726 |
+
msgstr "Einstellungen zum Ablaufdatum aktivieren"
|
727 |
|
728 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2178
|
729 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
730 |
msgid " Remainder: %1$s %2$s %3$s."
|
731 |
msgstr " Verbleibend: %1$s %2$s %3$s."
|
732 |
|
733 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2166
|
734 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
735 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
736 |
+
msgstr "Mollie - Gutscheindetails: %1$s %2$s %3$s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
|
738 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54
|
739 |
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"
|
740 |
+
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"
|
741 |
|
742 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39
|
743 |
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"
|
744 |
+
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"
|
745 |
|
746 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
747 |
msgid "Show Mastercard Icon"
|
750 |
#: inc/settings/mollie_components.php:94
|
751 |
msgctxt "Mollie Components Settings"
|
752 |
msgid "Transform Text "
|
753 |
+
msgstr "Text umwandeln "
|
754 |
|
755 |
#: inc/settings/mollie_components.php:82
|
756 |
msgctxt "Mollie Components Settings"
|
760 |
#: inc/settings/mollie_components.php:72
|
761 |
msgctxt "Mollie Components Settings"
|
762 |
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
763 |
+
msgstr "Fügen Sie Abstände zu den Komponenten hinzu. Beispiele für erlaubte Einheiten: ‚16px 16px 16px 16px‘, ‚em‘, ‚px‘, ‚rem‘."
|
764 |
|
765 |
#: inc/settings/mollie_components.php:35
|
766 |
msgctxt "Mollie Components Settings"
|
793 |
|
794 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
795 |
msgid "Show customized creditcard icons on checkout page"
|
796 |
+
msgstr "Benutzerdefinierte Kreditkartensymbole auf der Bezahlseite anzeigen"
|
797 |
|
798 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
799 |
msgid "Enable Icons Selector"
|
800 |
+
msgstr "Auswahlwerkzeug für Symbole aktivieren"
|
801 |
|
802 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
803 |
msgid "Customize Icons"
|
804 |
msgstr "Symbole personalisieren"
|
805 |
|
806 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
807 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2129
|
808 |
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)."
|
809 |
+
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."
|
810 |
|
811 |
+
#: src/Mollie/WC/Gateway/Abstract.php:590
|
812 |
msgid "Failed switching subscriptions, no valid mandate."
|
813 |
+
msgstr "Umstellen des Abonnements wegen Fehlen eines gültigen Mandats fehlgeschlagen."
|
|
|
|
|
|
|
|
|
814 |
|
815 |
#: inc/settings/mollie_components_enabler.php:6
|
816 |
msgid "Enable Mollie Components"
|
941 |
msgid "Base Styles"
|
942 |
msgstr "Basisformat"
|
943 |
|
944 |
+
#: src/Mollie/WC/Plugin.php:950
|
945 |
msgid "An unknown error occurred, please check the card fields."
|
946 |
msgstr "Ein unbekannter Fehler ist aufgetreten, bitte überprüfen Sie die Kartenfelder."
|
947 |
|
948 |
+
#: src/Mollie/WC/Plugin.php:943
|
949 |
msgid "Verification Code"
|
950 |
msgstr "Kartenprüfnummer"
|
951 |
|
952 |
+
#: src/Mollie/WC/Plugin.php:939
|
953 |
msgid "Expiry Date"
|
954 |
msgstr "Ablaufdatum"
|
955 |
|
956 |
+
#: src/Mollie/WC/Plugin.php:935
|
957 |
msgid "Card Number"
|
958 |
msgstr "Kartennummer"
|
959 |
|
960 |
+
#: src/Mollie/WC/Plugin.php:931
|
961 |
msgid "Card Holder"
|
962 |
msgstr "Karteninhaber"
|
963 |
|
964 |
+
#: inc/settings/mollie_components_enabler.php:12
|
965 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
966 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:139
|
967 |
msgid "Mollie Components"
|
968 |
msgstr "Mollie-Komponenten"
|
969 |
|
970 |
+
#: src/Mollie/WC/Plugin.php:757
|
971 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
972 |
msgstr "%1$s stornierte Artikel bei WooCommerce und Mollie."
|
973 |
|
974 |
+
#: src/Mollie/WC/Plugin.php:739
|
975 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
976 |
msgstr "%1$s erstattete Artikel bei WooCommerce und Mollie."
|
977 |
|
987 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
988 |
msgstr "Eine der WooCommerce-Auftragspositionen stimmt nicht mit dem entsprechenden Metawert für die ID des Rückerstattungsartikels der Mollie-Auftragsposition überein."
|
989 |
|
990 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119
|
991 |
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."
|
992 |
+
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."
|
993 |
|
994 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145
|
996 |
msgid "Order completed using %1$s payment (%2$s)."
|
997 |
msgstr "Vorgang über %1$s-Bezahlung (%2$s) erfolgt."
|
998 |
|
1031 |
msgid "Przelewy24"
|
1032 |
msgstr "Przelewy24"
|
1033 |
|
1034 |
+
#: src/Mollie/WC/Helper/Status.php:89
|
1035 |
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."
|
1036 |
+
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."
|
1037 |
|
1038 |
+
#: src/Mollie/WC/Payment/Order.php:836
|
1039 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
1040 |
msgstr "Erstattungsbetrag von %s erstatteten %s bei WooCommerce und Mollie.%s Erstattungs-ID: %s."
|
1041 |
|
1042 |
+
#: src/Mollie/WC/Payment/Order.php:758
|
1043 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
1044 |
msgstr "%sx %s erstattet für %s%s bei WooCommerce und Mollie.%s Erstattungs-ID: %s."
|
1045 |
|
1046 |
+
#: src/Mollie/WC/Payment/Order.php:742
|
1047 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
1048 |
msgstr "%sx %s storniert für %s%s bei WooCommerce und Mollie."
|
1049 |
|
1050 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1051 |
+
#: src/Mollie/WC/Payment/Order.php:361
|
1052 |
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!"
|
1053 |
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."
|
1054 |
|
1055 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1238
|
1057 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
1058 |
+
msgstr "%s-Bezahlung über Mollie zurückgebucht (%s). Abonnementstatus aktualisiert, bitte prüfen (und, falls verwendet, Produktbestände anpassen)."
|
1059 |
|
|
|
|
|
|
|
|
|
|
|
1060 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
1061 |
msgid "Order"
|
1062 |
msgstr "Bestellung"
|
1067 |
msgstr "%s-Bezahlvorgang (%s) abgebrochen."
|
1068 |
|
1069 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1070 |
+
#: src/Mollie/WC/Payment/Order.php:931
|
1071 |
msgid "%s order (%s) expired ."
|
1072 |
msgstr "%s-Bestellung (%s) abgelaufen."
|
1073 |
|
1074 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1075 |
+
#: src/Mollie/WC/Payment/Order.php:509
|
1076 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
1077 |
msgstr "%s-Bestellung (%s) abgelaufen, wegen einer weiteren offenen Zahlung (%s) jedoch nicht abgebrochen."
|
1078 |
|
1079 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1080 |
+
#: src/Mollie/WC/Payment/Order.php:444
|
1081 |
msgid "%s order (%s) cancelled ."
|
1082 |
msgstr "%s-Bestellung (%s) abgebrochen."
|
1083 |
|
1084 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1085 |
+
#: src/Mollie/WC/Payment/Order.php:314
|
1086 |
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."
|
1087 |
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."
|
1088 |
|
1089 |
+
#: inc/settings/mollie_advanced_settings.php:57
|
|
|
|
|
|
|
|
|
1090 |
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."
|
1091 |
+
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."
|
1092 |
|
1093 |
+
#: inc/settings/mollie_advanced_settings.php:26
|
1094 |
msgid "Automatically send WordPress language"
|
1095 |
msgstr "WordPress-Sprache automatisch übermitteln"
|
1096 |
|
1097 |
+
#: inc/settings/mollie_advanced_settings.php:18
|
1098 |
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."
|
1099 |
+
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."
|
1100 |
|
1101 |
+
#: src/Mollie/WC/Helper/OrderLines.php:497
|
1102 |
msgid "Shipping"
|
1103 |
msgstr "Versand"
|
1104 |
|
1123 |
#. version
|
1124 |
#: src/Mollie/WC/Helper/Status.php:104
|
1125 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
1126 |
+
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."
|
1127 |
|
1128 |
+
#: src/Mollie/WC/Helper/Settings.php:825
|
1129 |
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."
|
1130 |
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."
|
1131 |
|
1132 |
+
#: src/Mollie/WC/Helper/Settings.php:801
|
1133 |
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."
|
1134 |
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."
|
1135 |
|
1136 |
+
#: inc/settings/mollie_advanced_settings.php:54
|
1137 |
msgid "Lithuanian"
|
1138 |
msgstr "Litauisch"
|
1139 |
|
1140 |
+
#: inc/settings/mollie_advanced_settings.php:53
|
1141 |
msgid "Latvian"
|
1142 |
msgstr "Lettisch"
|
1143 |
|
1144 |
+
#: inc/settings/mollie_advanced_settings.php:52
|
1145 |
msgid "Polish"
|
1146 |
msgstr "Polnisch"
|
1147 |
|
1148 |
+
#: inc/settings/mollie_advanced_settings.php:51
|
1149 |
msgid "Hungarian"
|
1150 |
msgstr "Ungarisch"
|
1151 |
|
1152 |
+
#: inc/settings/mollie_advanced_settings.php:50
|
1153 |
msgid "Icelandic"
|
1154 |
msgstr "Isländisch"
|
1155 |
|
1156 |
+
#: inc/settings/mollie_advanced_settings.php:49
|
1157 |
msgid "Danish"
|
1158 |
msgstr "Dänisch"
|
1159 |
|
1160 |
+
#: inc/settings/mollie_advanced_settings.php:48
|
1161 |
msgid "Finnish"
|
1162 |
msgstr "Finnisch"
|
1163 |
|
1164 |
+
#: inc/settings/mollie_advanced_settings.php:47
|
1165 |
msgid "Swedish"
|
1166 |
msgstr "Schwedisch"
|
1167 |
|
1168 |
+
#: inc/settings/mollie_advanced_settings.php:46
|
1169 |
msgid "Norwegian"
|
1170 |
msgstr "Norwegisch"
|
1171 |
|
1172 |
+
#: inc/settings/mollie_advanced_settings.php:45
|
1173 |
msgid "Italian"
|
1174 |
msgstr "Italienisch"
|
1175 |
|
1176 |
+
#: inc/settings/mollie_advanced_settings.php:44
|
1177 |
msgid "Portuguese"
|
1178 |
msgstr "Portugiesisch"
|
1179 |
|
1180 |
+
#: inc/settings/mollie_advanced_settings.php:43
|
1181 |
msgid "Catalan"
|
1182 |
msgstr "Katalanisch"
|
1183 |
|
1184 |
+
#: inc/settings/mollie_advanced_settings.php:41
|
1185 |
msgid "Swiss German"
|
1186 |
msgstr "Deutsch (Schweiz)"
|
1187 |
|
1188 |
+
#: inc/settings/mollie_advanced_settings.php:40
|
1189 |
msgid "Austrian German"
|
1190 |
msgstr "Deutsch (Österreich)"
|
1191 |
|
1192 |
+
#: src/Mollie/WC/Helper/Api.php:42
|
1193 |
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."
|
1194 |
+
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."
|
1195 |
|
1196 |
+
#: src/Mollie/WC/Helper/Api.php:40
|
1197 |
msgid "No API key provided. Please set your Mollie API keys below."
|
1198 |
+
msgstr "Kein API-Schlüssel vorgegeben. Legen Sie Ihre Mollie-API-Schlüssel unten fest."
|
1199 |
|
1200 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
1201 |
msgid "Giropay"
|
1206 |
msgstr "EPS"
|
1207 |
|
1208 |
#. translators: Placeholder 1: Payment method title
|
1209 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:314
|
1210 |
msgid "Could not create %s renewal payment."
|
1211 |
msgstr "Erneute %s-Zahlung konnte nicht erstellt werden."
|
1212 |
|
1213 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:271
|
1214 |
msgid "The customer (%s) does not have a valid mandate."
|
1215 |
msgstr "Der Kunde (%s) hat kein gültiges Mandat."
|
1216 |
|
1217 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:262
|
1218 |
msgid "The customer (%s) could not be used or found. "
|
1219 |
msgstr "Der Kunde (%s) konnte nicht verwendet oder gefunden werden. "
|
1220 |
|
1221 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
1222 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
1223 |
#. placeholder 5: refund ID
|
1224 |
+
#: src/Mollie/WC/Payment/Payment.php:511
|
1225 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
1226 |
msgstr "Rückerstattung %s%s%s – Zahlung: %s, Rückerstattung: %s"
|
1227 |
|
1228 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1229 |
+
#: src/Mollie/WC/Payment/Object.php:637
|
1230 |
msgid "%s payment failed via Mollie (%s)."
|
1231 |
msgstr "%s-Bezahlung über Mollie fehlgeschlagen (%s)."
|
1232 |
|
1233 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1145
|
1234 |
msgid "New chargeback %s processed! Order note and order status updated."
|
1235 |
msgstr "Neue Rückbuchung %s erfasst. Bestellungsnotiz und Status aktualisiert."
|
1236 |
|
1237 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1009
|
1238 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
1239 |
msgstr "Neue Rückerstattung %s im Mollie-Dashboard verarbeitet. Bestellungsnotiz hinzugefügt, Bestellung jedoch nicht aktualisiert."
|
1240 |
|
1241 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
1242 |
#. Mollie currencies
|
1243 |
+
#: src/Mollie/WC/Gateway/Abstract.php:364
|
1244 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
1245 |
+
msgstr "Die aktuelle Shopwährung %s wird von Mollie nicht unterstützt. Mehr Informationen zu %sunterstützten Währungen und Bezahlungsmethoden.%s "
|
|
|
|
|
|
|
|
|
1246 |
|
1247 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1248 |
+
#: src/Mollie/WC/Payment/Object.php:677
|
|
|
1249 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
1250 |
msgstr "Der Mollie-WebHook wurde aufgerufen, die Zahlung wurde jedoch gleichzeitig über %s gestartet. Der Bestellstatus wird deshalb nicht aktualisiert."
|
1251 |
|
1252 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1329
|
1253 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1338
|
|
|
|
|
|
|
|
|
|
|
1254 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
1255 |
msgstr "Ihre Zahlung war nicht erfolgreich. Vervollständigen Sie Ihre Bestellung bitte mit einer anderen Zahlungsmethode."
|
1256 |
|
1257 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1258 |
+
#: src/Mollie/WC/Payment/Object.php:603
|
1259 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
1260 |
msgstr "Erneute %s-Zahlung über Mollie fehlgeschlagen (%s). Sie müssen die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen."
|
1261 |
|
1265 |
msgstr "Bancontact"
|
1266 |
|
1267 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1268 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1617
|
1269 |
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."
|
1270 |
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."
|
1271 |
|
1272 |
+
#: src/Mollie/WC/Gateway/Abstract.php:589
|
1273 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
1274 |
msgstr "Abonnement-Umstellung fehlgeschlagen, kein valides Mandat gefunden. Leiten Sie einen neuen Bestellvorgang ein, um Ihr Abonnement zu ändern."
|
1275 |
|
|
|
|
|
|
|
|
|
1276 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1277 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1177
|
1278 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
1279 |
+
msgstr "%s-Bezahlung über Mollie zurückgebucht (%s). Sie müssen die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen."
|
1280 |
|
1281 |
+
#: src/Mollie/WC/Gateway/Kbc.php:40
|
1282 |
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."
|
1283 |
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."
|
1284 |
|
1294 |
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."
|
1295 |
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."
|
1296 |
|
1297 |
+
#: src/Mollie/WC/Gateway/Ideal.php:35
|
1298 |
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."
|
1299 |
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."
|
1300 |
|
1301 |
+
#: src/Mollie/WC/Gateway/Ideal.php:33
|
1302 |
msgid "Show iDEAL banks dropdown"
|
1303 |
msgstr "Drop-down-Liste für iDEAL-Banken anzeigen"
|
1304 |
|
1305 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:39
|
1306 |
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."
|
1307 |
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."
|
1308 |
|
1314 |
msgid "Show gift cards dropdown"
|
1315 |
msgstr "Drop-down-Liste für Geschenkkarten anzeigen"
|
1316 |
|
1317 |
+
#: src/Mollie/WC/Gateway/Abstract.php:578
|
1318 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
1319 |
msgstr "Die Bestellung wurde wegen eines bestehenden, gültigen Mandats bei Mollie intern abgewickelt."
|
1320 |
|
1321 |
+
#: inc/settings/mollie_advanced_settings.php:16
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1322 |
msgid "Cancelled"
|
1323 |
msgstr "Storniert"
|
1324 |
|
1325 |
+
#: inc/settings/mollie_advanced_settings.php:15
|
1326 |
msgid "Pending"
|
1327 |
msgstr "Offen"
|
1328 |
|
1329 |
+
#: inc/settings/mollie_advanced_settings.php:12
|
1330 |
msgid "Order status after cancelled payment"
|
1331 |
msgstr "Bestellstatus nach stornierter Zahlung"
|
1332 |
|
1333 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
1334 |
#. placeholder 3: consumer BIC
|
1335 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
1336 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124
|
1337 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
|
|
|
|
1338 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
1339 |
msgstr "Zahlung durch <strong>%s</strong> erfolgt (IBAN (letzte 4 Ziffern): %s, BIC: %s)"
|
1340 |
|
1341 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1653
|
1342 |
msgid "Your order has been cancelled."
|
1343 |
msgstr "Ihre Bestellung wurde storniert."
|
1344 |
|
1345 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1626
|
1346 |
msgid ", payment pending."
|
1347 |
msgstr ", Zahlung ausstehend"
|
1348 |
|
1349 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1590
|
1350 |
msgid "Order cancelled"
|
1351 |
msgstr "Bestellung storniert"
|
1352 |
|
1353 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
1354 |
#. status, placeholder 3: payment ID
|
1355 |
+
#: src/Mollie/WC/Gateway/Abstract.php:895
|
1356 |
msgid "%s payment %s (%s), not processed."
|
1357 |
msgstr "%s-Zahlung %s (%s), nicht verarbeitet."
|
1358 |
|
1359 |
#. translators: Default gift card dropdown description, displayed above issuer
|
1360 |
#. drop down
|
1361 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:74
|
1362 |
msgid "Select your gift card"
|
1363 |
msgstr "Wählen Sie Ihre Geschenkkarte aus"
|
1364 |
|
1365 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:58
|
1366 |
msgid "Gift cards"
|
1367 |
msgstr "Geschenkkarten"
|
1368 |
|
1369 |
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
1370 |
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."
|
1371 |
+
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."
|
1372 |
|
1373 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1374 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:165
|
1375 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
1376 |
msgstr "Das Abonnement wird von ‚ausstehend‘ auf ‚aktiv‘ aktualisiert, bis die Zahlung fehlschlägt, da SEPA-Direktmandate etwas Zeit in Anspruch nehmen."
|
1377 |
|
1378 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1379 |
+
#: src/Mollie/WC/Payment/Payment.php:406
|
1380 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
1381 |
+
msgstr "%s-Bestellung abgelaufen (%s), wegen einer weiteren offenen Zahlung (%s) jedoch nicht abgebrochen."
|
1382 |
|
1383 |
+
#: src/subscriptions_status_check_functions.php:186
|
1384 |
msgid "There are still some subscriptions left, use the tool again!"
|
1385 |
msgstr "Es sind noch Abonnements übrig, verwenden Sie das Tool erneut."
|
1386 |
|
1387 |
+
#: src/subscriptions_status_check_functions.php:184
|
1388 |
msgid "No more subscriptions left to process!"
|
1389 |
msgstr "Keine zu verarbeitenden Abonnements übrig."
|
1390 |
|
1391 |
+
#: src/subscriptions_status_check_functions.php:171
|
1392 |
msgid "No subscriptions updated in this batch."
|
1393 |
msgstr "In dieser Charge wurden keine Abonnements aktualisiert."
|
1394 |
|
1395 |
+
#: src/subscriptions_status_check_functions.php:147
|
1396 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
1397 |
msgstr "Die Abonnements wurden nicht aktualisiert, da Mollie kein gültiges Mandat vorliegt. Verarbeitet durch das Tool ‚Mollie-Abonnementstatus‘."
|
1398 |
|
1399 |
+
#: src/subscriptions_status_check_functions.php:133
|
1400 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
1401 |
msgstr "Abonnement auf automatisierte Erneuerung über Mollie aktualisiert, Status auf aktiv gesetzt. Verarbeitet durch das Tool ‚Mollie-Abonnementstatus‘."
|
1402 |
|
1412 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
1413 |
msgstr "Überprüft auf fälschlicherweise auf ‚manuelle Erneuerung‘ gesetzte Abonnements. Lesen Sie zunächst die "
|
1414 |
|
1415 |
+
#: inc/settings/mollie_advanced_settings.php:65
|
1416 |
msgid "Store customer details at Mollie"
|
1417 |
msgstr "Kundendetails des Geschäfts bei Mollie"
|
1418 |
|
1419 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1420 |
+
#: src/Mollie/WC/Plugin.php:130
|
1421 |
msgid "%s payment failed (%s)."
|
1422 |
msgstr "%s-Bezahlung fehlgeschlagen (%s)."
|
1423 |
|
1424 |
+
#: src/Mollie/WC/Gateway/Kbc.php:59
|
1425 |
msgid "KBC/CBC Payment Button"
|
1426 |
msgstr "KBC/CBC-Zahlungsbutton"
|
1427 |
|
1428 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:37 src/Mollie/WC/Gateway/Ideal.php:39
|
1429 |
+
#: src/Mollie/WC/Gateway/Kbc.php:38
|
1430 |
msgid "Issuers empty option"
|
1431 |
msgstr "Kartenaussteller-Option leer"
|
1432 |
|
1433 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:58
|
1434 |
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."
|
1435 |
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."
|
1436 |
|
1437 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:57
|
1438 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
1439 |
msgstr "Mollie-Bezahlseite überspringen, wenn Überweisung ausgewählt wurde"
|
1440 |
|
1441 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:56
|
1442 |
msgid "Skip Mollie payment screen"
|
1443 |
msgstr "Mollie-Bezahlseite überspringen"
|
1444 |
|
1459 |
msgid "Mollie Payments for WooCommerce"
|
1460 |
msgstr "Mollie-Zahlungen für WooCommerce"
|
1461 |
|
1462 |
+
#: src/Mollie/WC/Plugin.php:1320
|
1463 |
msgid "Logs"
|
1464 |
msgstr "Protokolle"
|
1465 |
|
1481 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
1482 |
msgstr "Das %s-Plugin benötigt WooCommerce %s oder höher, Sie verwenden Version %s. Aktualisieren Sie bitte Ihr WooCommerce-Plugin."
|
1483 |
|
1484 |
+
#: src/Mollie/WC/Helper/Settings.php:698
|
1485 |
msgid "Debug Log"
|
1486 |
msgstr "Debug-Protokoll"
|
1487 |
|
1488 |
+
#: inc/settings/mollie_advanced_settings.php:38
|
1489 |
msgid "French (Belgium)"
|
1490 |
msgstr "Französisch (Belgien)"
|
1491 |
|
1492 |
+
#: inc/settings/mollie_advanced_settings.php:37
|
1493 |
msgid "French"
|
1494 |
msgstr "Französisch"
|
1495 |
|
1496 |
+
#: inc/settings/mollie_advanced_settings.php:42
|
1497 |
msgid "Spanish"
|
1498 |
msgstr "Spanisch"
|
1499 |
|
1500 |
+
#: inc/settings/mollie_advanced_settings.php:39
|
1501 |
msgid "German"
|
1502 |
msgstr "Deutsch"
|
1503 |
|
1504 |
+
#: inc/settings/mollie_advanced_settings.php:34
|
1505 |
msgid "English"
|
1506 |
msgstr "Englisch"
|
1507 |
|
1508 |
+
#: inc/settings/mollie_advanced_settings.php:36
|
1509 |
msgid "Flemish (Belgium)"
|
1510 |
msgstr "Flämisch (Belgien)"
|
1511 |
|
1512 |
+
#: inc/settings/mollie_advanced_settings.php:35
|
1513 |
msgid "Dutch"
|
1514 |
msgstr "Niederländisch"
|
1515 |
|
1516 |
+
#: inc/settings/mollie_advanced_settings.php:30
|
1517 |
msgid "Detect using browser language"
|
1518 |
msgstr "Über Browsersprache erkennen"
|
1519 |
|
1520 |
+
#: inc/settings/mollie_advanced_settings.php:23
|
1521 |
msgid "Payment screen language"
|
1522 |
msgstr "Sprache der Bezahlseite"
|
1523 |
|
1524 |
+
#: src/Mollie/WC/Helper/Settings.php:694
|
1525 |
msgid "Test API key should start with test_"
|
1526 |
msgstr "Der Test-API-Schlüssel sollte mit test_ beginnen"
|
1527 |
|
1528 |
+
#: src/Mollie/WC/Helper/Settings.php:683
|
1529 |
msgid "Test API key"
|
1530 |
msgstr "Test-API-Schlüssel"
|
1531 |
|
1532 |
+
#: src/Mollie/WC/Helper/Settings.php:679
|
1533 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
1534 |
msgstr "Aktivieren Sie den Testmodus, wenn Sie das Plugin ohne echte Bezahlung testen möchten."
|
1535 |
|
1536 |
+
#: src/Mollie/WC/Helper/Settings.php:676
|
1537 |
msgid "Enable test mode"
|
1538 |
msgstr "Testmodus aktivieren"
|
1539 |
|
1540 |
+
#: src/Mollie/WC/Helper/Settings.php:672
|
1541 |
msgid "Live API key should start with live_"
|
1542 |
msgstr "Der Live-API-Schlüssel sollte mit live_ beginnen"
|
1543 |
|
1544 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
1545 |
#. %s's Will be replaced by a link to the Mollie profile
|
1546 |
+
#: src/Mollie/WC/Helper/Settings.php:666 src/Mollie/WC/Helper/Settings.php:688
|
1547 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
1548 |
+
msgstr "Der API-Schlüssel wird für die Verbindung mit Mollie verwendet. Sie finden Ihren <strong>%s</strong>-API-Schlüssel in Ihrem %sMollie-Profil%s"
|
1549 |
|
1550 |
+
#: src/Mollie/WC/Helper/Settings.php:661
|
1551 |
msgid "Live API key"
|
1552 |
msgstr "Live-API-Schlüssel"
|
1553 |
|
1554 |
+
#: inc/settings/mollie_advanced_settings.php:8
|
1555 |
+
#: src/Mollie/WC/Helper/Settings.php:657
|
1556 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
1557 |
msgstr "Die folgenden Optionen sind für die Verwendung des Plugins verpflichtend und werden von allen Mollie-Bezahlmethoden verwendet"
|
1558 |
|
1559 |
+
#: src/Mollie/WC/Plugin.php:1314
|
1560 |
msgid "Mollie settings"
|
1561 |
msgstr "Mollie-Einstellungen"
|
1562 |
|
1563 |
+
#: src/Mollie/WC/Helper/Settings.php:641
|
|
|
1564 |
msgid "Log files are saved to <code>%s</code>"
|
1565 |
msgstr "Protokolldateien werden unter <code>%s</code> gespeichert"
|
1566 |
|
1567 |
+
#: src/Mollie/WC/Helper/Settings.php:635
|
|
|
|
|
|
|
|
|
1568 |
msgid "Log plugin events."
|
1569 |
msgstr "Plugin-Vorgänge protokollieren."
|
1570 |
|
1571 |
+
#: src/Mollie/WC/Helper/Settings.php:582
|
1572 |
msgid "Edit"
|
1573 |
msgstr "Bearbeiten"
|
1574 |
|
1575 |
+
#: src/Mollie/WC/Helper/Settings.php:559
|
1576 |
msgid "Refresh"
|
1577 |
msgstr "Aktualisieren"
|
1578 |
|
1579 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
1580 |
#. profile
|
1581 |
+
#: src/Mollie/WC/Helper/Settings.php:550
|
1582 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
1583 |
msgstr "Die folgenden Bezahlmethoden sind in Ihrem %sMollie-Profil%s aktiviert:"
|
1584 |
|
1585 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1586 |
msgid "Gateway disabled"
|
1587 |
msgstr "Gateway deaktiviert"
|
1588 |
|
1589 |
+
#: inc/settings/mollie_advanced_settings.php:72
|
1590 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1591 |
msgid "Enabled"
|
1592 |
msgstr "Aktiv"
|
1593 |
|
1594 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1595 |
msgid "Gateway enabled"
|
1596 |
msgstr "Gateway aktiviert"
|
1597 |
|
1598 |
+
#: src/Mollie/WC/Helper/Settings.php:495
|
1599 |
msgid "Connected"
|
1600 |
msgstr "Verbunden"
|
1601 |
|
1602 |
+
#: src/Mollie/WC/Helper/Settings.php:494
|
1603 |
msgid "Mollie status:"
|
1604 |
msgstr "Mollie-Status:"
|
1605 |
|
1606 |
+
#: src/Mollie/WC/Helper/Settings.php:481
|
1607 |
msgid "Error"
|
1608 |
msgstr "Fehler"
|
1609 |
|
1610 |
+
#: src/Mollie/WC/Helper/Data.php:477
|
1611 |
msgid "Item #%s stock incremented from %s to %s."
|
1612 |
msgstr "Artikel #%s Bestand von %s auf %s erhöht."
|
1613 |
|
1621 |
|
1622 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1623 |
#. email, placeholder 3: PayPal transaction ID
|
1624 |
+
#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695
|
1625 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1626 |
msgstr "Zahlung durch <strong>%s</strong> - %s (PayPal Transaktions-ID: %s) erfolgt"
|
1627 |
|
1628 |
+
#: src/Mollie/WC/Gateway/PayPal.php:43
|
1629 |
msgid "PayPal"
|
1630 |
msgstr "PayPal"
|
1631 |
|
1632 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
1633 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1634 |
#. drop down
|
1635 |
+
#: src/Mollie/WC/Gateway/Ideal.php:76 src/Mollie/WC/Gateway/Kbc.php:75
|
|
|
1636 |
msgid "Select your bank"
|
1637 |
msgstr "Wählen Sie Ihre Bank aus"
|
1638 |
|
1639 |
+
#: src/Mollie/WC/Gateway/Ideal.php:60
|
1640 |
msgid "iDEAL"
|
1641 |
msgstr "iDEAL"
|
1642 |
|
1645 |
msgstr "SEPA-Direktmandat"
|
1646 |
|
1647 |
#. translators: Placeholder 1: card holder
|
1648 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:136
|
1649 |
msgid "Payment completed by <strong>%s</strong>"
|
1650 |
msgstr "Zahlung durch <strong>%s</strong> erfolgt"
|
1651 |
|
1652 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:84
|
1653 |
msgid "Credit card"
|
1654 |
msgstr "Kreditkarte"
|
1655 |
|
1657 |
msgid "Belfius Direct Net"
|
1658 |
msgstr "Belfius Direct Net"
|
1659 |
|
1660 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:235
|
1661 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1662 |
msgstr "Die Zahlungsfrist läuft am <strong>%s</strong> ab. Bitte überweisen Sie bis dahin den vollen Betrag."
|
1663 |
|
1664 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:228
|
1665 |
msgid "The payment will expire on <strong>%s</strong>."
|
1666 |
msgstr "Die Zahlungsfrist läuft am <strong>%s</strong> ab."
|
1667 |
|
1668 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1669 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1670 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:214
|
1671 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1672 |
msgstr "Geben Sie bitte die Zahlungsreferenz <strong>%s</strong> an"
|
1673 |
|
1674 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1675 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1676 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:209
|
1677 |
msgid "Payment reference: %s"
|
1678 |
msgstr "Zahlungsreferenz: %s"
|
1679 |
|
1680 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:204
|
1681 |
msgid "BIC: %s"
|
1682 |
msgstr "BIC: %s"
|
1683 |
|
1684 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:203
|
1685 |
msgid "IBAN: <strong>%s</strong>"
|
1686 |
msgstr "IBAN: <strong>%s</strong>"
|
1687 |
|
1688 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1689 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:202
|
1690 |
msgid "Beneficiary: %s"
|
1691 |
msgstr "Begünstigter: %s"
|
1692 |
|
1693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
1694 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1695 |
msgstr "Bitte schließen Sie die Zahlung ab, indem Sie den vollen Betrag auf das folgende Konto überweisen:"
|
1696 |
|
1697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:138
|
1698 |
msgid "Bank Transfer"
|
1699 |
msgstr "Überweisung"
|
1700 |
|
1701 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1702 |
msgid "Disabled"
|
1703 |
msgstr "Deaktiviert"
|
1704 |
|
1705 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
1706 |
+
msgid "Number of DAYS after the payment will expire. Default <code>%d</code> days"
|
1707 |
+
msgstr "TAGE nach Ende der Zahlungsfrist. Standard: <code>%d</code> Tage."
|
1708 |
|
1709 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:45
|
1710 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
1711 |
msgid "Expiry date"
|
1712 |
msgstr "Ablaufdatum"
|
1713 |
|
1714 |
#. translators: Placeholder 1: payment method
|
1715 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1542
|
1716 |
msgid "Payment completed with <strong>%s</strong>"
|
1717 |
msgstr "Zahlung durch <strong>%s</strong> erfolgt"
|
1718 |
|
1719 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1535
|
1720 |
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."
|
1721 |
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."
|
1722 |
|
1723 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1530
|
1724 |
msgid "We have not received a definite payment status."
|
1725 |
msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten."
|
1726 |
|
1727 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1315
|
1728 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1729 |
msgstr "Sie haben Ihre Zahlung storniert. Vervollständigen Sie Ihre Bestellung bitte mit einer anderen Zahlungsmethode."
|
1730 |
|
1731 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1732 |
+
#: src/Mollie/WC/Payment/Payment.php:429
|
1733 |
msgid "%s payment expired (%s)."
|
1734 |
msgstr "%s-Zahlung abgelaufen (%s)."
|
1735 |
|
1736 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1737 |
+
#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:249
|
1738 |
msgid "Order completed using %s payment (%s)."
|
1739 |
+
msgstr "Bestellung über %s-Bezahlung (%s) abgeschlossen."
|
1740 |
|
1741 |
#. translators: Placeholder 1: Payment method title
|
1742 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:242
|
1743 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:298
|
1744 |
+
#: src/Mollie/WC/Gateway/Abstract.php:686
|
1745 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78
|
1746 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:122
|
1747 |
msgid "Could not create %s payment."
|
1748 |
msgstr "%s-Zahlung konnte nicht erstellt werden."
|
1749 |
|
1750 |
+
#: src/Mollie/WC/Gateway/Abstract.php:671
|
1751 |
+
#: src/Mollie/WC/Gateway/Abstract.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1752 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1753 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1244
|
1754 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1619
|
1755 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2142
|
1756 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1757 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139
|
1758 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:422
|
1759 |
+
#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642
|
1760 |
+
#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316
|
1761 |
+
#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446
|
1762 |
+
#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936
|
1763 |
+
#: src/Mollie/WC/Payment/Payment.php:251 src/Mollie/WC/Payment/Payment.php:338
|
1764 |
+
#: src/Mollie/WC/Payment/Payment.php:408 src/Mollie/WC/Payment/Payment.php:431
|
1765 |
msgid "test mode"
|
1766 |
msgstr "Testmodus"
|
1767 |
|
1768 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1769 |
+
#: src/Mollie/WC/Gateway/Abstract.php:669
|
1770 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1771 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:420
|
|
|
1772 |
msgid "%s payment started (%s)."
|
1773 |
msgstr "%s-Bezahlung gestartet (%s)."
|
1774 |
|
1775 |
+
#: src/Mollie/WC/Gateway/Abstract.php:659
|
1776 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1777 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:413
|
|
|
1778 |
msgid "Awaiting payment confirmation."
|
1779 |
msgstr "Die Zahlungsbestätigung wird erwartet."
|
1780 |
|
1781 |
+
#: src/Mollie/WC/Gateway/Abstract.php:526
|
1782 |
msgid "Could not load order %s"
|
1783 |
msgstr "Bestellung %s konnte nicht geladen werden"
|
1784 |
|
1785 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1786 |
#. be replaced by a link to the Mollie profile
|
1787 |
+
#: src/Mollie/WC/Gateway/Abstract.php:352
|
1788 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1789 |
msgstr "%s ist nicht in Ihrem Mollie-Profil aktiviert. Sie können es aktivieren, indem Sie Ihr %sMollie-Profil%s bearbeiten."
|
1790 |
|
1791 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1792 |
#. setting page
|
1793 |
+
#: src/Mollie/WC/Gateway/Abstract.php:340
|
1794 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1795 |
msgstr "Kein API-Schlüssel vorgegeben. Bitte %slegen Sie Ihren Mollie-API-Schlüssel fest%s."
|
1796 |
|
1797 |
+
#: src/Mollie/WC/Gateway/Abstract.php:221
|
1798 |
msgid "Gateway Disabled"
|
1799 |
msgstr "Gateway deaktiviert"
|
1800 |
|
1801 |
+
#: src/Mollie/WC/Gateway/Abstract.php:338 src/Mollie/WC/Helper/Settings.php:545
|
1802 |
msgid "Test mode enabled."
|
1803 |
msgstr "Testmodus aktiviert."
|
1804 |
|
1805 |
+
#: src/Mollie/WC/Helper/Settings.php:295
|
1806 |
msgid "Hold Stock (minutes)"
|
1807 |
msgstr "Bestand halten (Minuten)"
|
1808 |
|
1809 |
+
#: src/Mollie/WC/Helper/Settings.php:286
|
1810 |
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."
|
1811 |
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."
|
1812 |
|
1813 |
+
#: inc/settings/mollie_advanced_settings.php:29
|
1814 |
+
#: inc/settings/mollie_advanced_settings.php:90
|
1815 |
+
#: src/Mollie/WC/Helper/Settings.php:275
|
1816 |
msgid "default"
|
1817 |
msgstr "Standard"
|
1818 |
|
1819 |
+
#: src/Mollie/WC/Helper/Settings.php:267
|
1820 |
msgid "Initial order status"
|
1821 |
msgstr "Initialer Bestellstatus"
|
1822 |
|
1823 |
+
#: inc/settings/mollie_applepay_settings.php:63
|
1824 |
+
#: src/Mollie/WC/Helper/Settings.php:84
|
1825 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1826 |
msgstr "Beschreibung der Bezahlmethode, die der Kunde im Bezahlvorgang angezeigt bekommt. Standard: <code>%s</code>"
|
1827 |
|
1828 |
+
#: inc/settings/mollie_applepay_settings.php:60
|
1829 |
+
#: src/Mollie/WC/Helper/Settings.php:81
|
1830 |
msgid "Description"
|
1831 |
msgstr "Beschreibung"
|
1832 |
|
1833 |
+
#: src/Mollie/WC/Helper/Settings.php:99
|
1834 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1835 |
msgstr "Logo bei Bezahlvorgang anzeigen. Standard: <code>aktiviert</code>"
|
1836 |
|
1837 |
+
#: inc/settings/mollie_applepay_settings.php:45
|
1838 |
+
#: inc/settings/mollie_applepay_settings.php:48
|
1839 |
+
#: src/Mollie/WC/Helper/Settings.php:94
|
1840 |
msgid "Display logo"
|
1841 |
msgstr "Logo anzeigen"
|
1842 |
|
1843 |
+
#: inc/settings/mollie_applepay_settings.php:32
|
1844 |
+
#: src/Mollie/WC/Helper/Settings.php:71
|
1845 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1846 |
+
msgstr "Hierdurch wird der Titel gesteuert, den Benutzer beim Bezahlvorgang sehen. Standard: <code>%s</code>"
|
1847 |
|
1848 |
+
#: inc/settings/mollie_applepay_settings.php:29
|
1849 |
+
#: src/Mollie/WC/Helper/Settings.php:68
|
1850 |
msgid "Title"
|
1851 |
msgstr "Titel"
|
1852 |
|
1853 |
+
#. translators: Placeholder 1: enabled or disabled
|
1854 |
+
#: inc/settings/mollie_applepay_settings.php:21
|
1855 |
+
#: src/Mollie/WC/Helper/Settings.php:54
|
1856 |
msgid "Enable %s"
|
1857 |
msgstr "%s aktivieren"
|
1858 |
|
1859 |
+
#: inc/settings/mollie_applepay_settings.php:19
|
1860 |
+
#: src/Mollie/WC/Helper/Settings.php:48
|
1861 |
msgid "Enable/Disable"
|
1862 |
msgstr "Aktivieren/deaktivieren"
|
languages/mollie-payments-for-woocommerce-es_ES.mo
CHANGED
Binary file
|
languages/mollie-payments-for-woocommerce-es_ES.po
CHANGED
@@ -1,33 +1,695 @@
|
|
1 |
-
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2021-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
-
"Language:
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
|
14 |
-
#: src/Mollie/WC/Plugin.php:
|
15 |
-
msgid "
|
16 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
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."
|
20 |
-
msgstr "Para
|
21 |
|
22 |
-
#: src/Mollie/WC/Plugin.php:
|
23 |
msgid "Products voucher category"
|
24 |
msgstr "Categoría de vale de productos"
|
25 |
|
26 |
-
#: src/Mollie/WC/Plugin.php:
|
27 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
28 |
-
msgstr "%1$sMollie Payments for WooCommerce%2$s El modo de prueba está activo; %3$s desactívalo%4$s antes de
|
29 |
|
30 |
-
#: src/Mollie/WC/Plugin.php:
|
|
|
31 |
msgid "Mollie Settings"
|
32 |
msgstr "Estado de Mollie"
|
33 |
|
@@ -43,49 +705,43 @@ msgstr "Vale"
|
|
43 |
|
44 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
45 |
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"
|
46 |
-
msgstr "Para
|
47 |
|
48 |
-
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:
|
49 |
msgid "Select the default products category"
|
50 |
msgstr "Selecciona la categoría de productos por defecto"
|
51 |
|
52 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
53 |
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"
|
54 |
-
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
|
55 |
|
56 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
57 |
msgid "Enable expiry date for payments"
|
58 |
msgstr "Activar fecha de caducidad para pagos"
|
59 |
|
60 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
61 |
msgid "Activate expiry date setting"
|
62 |
msgstr "Activar ajuste de la fecha de caducidad"
|
63 |
|
64 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
65 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
66 |
msgid " Remainder: %1$s %2$s %3$s."
|
67 |
-
msgstr "
|
68 |
|
69 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
70 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
71 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
72 |
-
msgstr "Detalles tarjeta de regalo
|
73 |
-
|
74 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:7
|
75 |
-
msgid "Enable the Apple Pay direct buy button"
|
76 |
-
msgstr "Activar el botón de compra directa Apple Pay"
|
77 |
-
|
78 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
79 |
-
msgid "Enable Apple Pay Button"
|
80 |
-
msgstr "Activar el botón Apple Pay"
|
81 |
|
82 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
83 |
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"
|
84 |
-
msgstr "%1$sError de validación Apple Pay%2$s Comprueba la %3$spágina de requisitos
|
85 |
|
86 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
87 |
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"
|
88 |
-
msgstr "%1$
|
89 |
|
90 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
91 |
msgid "Show Mastercard Icon"
|
@@ -137,7 +793,7 @@ msgstr "Mostrar icono American Express"
|
|
137 |
|
138 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
139 |
msgid "Show customized creditcard icons on checkout page"
|
140 |
-
msgstr "Mostrar iconos de tarjeta de crédito personalizados en la página de pago"
|
141 |
|
142 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
143 |
msgid "Enable Icons Selector"
|
@@ -148,17 +804,13 @@ msgid "Customize Icons"
|
|
148 |
msgstr "Personalizar iconos"
|
149 |
|
150 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
151 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
152 |
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)."
|
153 |
-
msgstr "
|
154 |
|
155 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
156 |
msgid "Failed switching subscriptions, no valid mandate."
|
157 |
-
msgstr "
|
158 |
-
|
159 |
-
#: inc/settings/mollie_components_enabler.php:7
|
160 |
-
msgid "Enable the Mollie Components for this Gateway"
|
161 |
-
msgstr "Habilitar componentes de Mollie para esta pasarela"
|
162 |
|
163 |
#: inc/settings/mollie_components_enabler.php:6
|
164 |
msgid "Enable Mollie Components"
|
@@ -289,35 +941,37 @@ msgctxt "Mollie Components Settings"
|
|
289 |
msgid "Base Styles"
|
290 |
msgstr "Estilos base"
|
291 |
|
292 |
-
#: src/Mollie/WC/Plugin.php:
|
293 |
msgid "An unknown error occurred, please check the card fields."
|
294 |
msgstr "Se ha producido un error desconocido, comprueba los campos de la tarjeta."
|
295 |
|
296 |
-
#: src/Mollie/WC/Plugin.php:
|
297 |
msgid "Verification Code"
|
298 |
msgstr "Código de verificación"
|
299 |
|
300 |
-
#: src/Mollie/WC/Plugin.php:
|
301 |
msgid "Expiry Date"
|
302 |
msgstr "Fecha de caducidad"
|
303 |
|
304 |
-
#: src/Mollie/WC/Plugin.php:
|
305 |
msgid "Card Number"
|
306 |
msgstr "Número de tarjeta"
|
307 |
|
308 |
-
#: src/Mollie/WC/Plugin.php:
|
309 |
msgid "Card Holder"
|
310 |
msgstr "Titular de la tarjeta"
|
311 |
|
|
|
312 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
|
|
313 |
msgid "Mollie Components"
|
314 |
msgstr "Componentes de Mollie"
|
315 |
|
316 |
-
#: src/Mollie/WC/Plugin.php:
|
317 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
318 |
msgstr "%1$s elementos cancelados en WooCommerce y en Mollie."
|
319 |
|
320 |
-
#: src/Mollie/WC/Plugin.php:
|
321 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
322 |
msgstr "%1$s elementos reembolsados en WooCommerce y en Mollie."
|
323 |
|
@@ -333,12 +987,12 @@ msgstr "Imposible recuperar el ID del elemento del pedido relacionado con el ele
|
|
333 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
334 |
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."
|
335 |
|
336 |
-
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:
|
337 |
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."
|
338 |
-
msgstr "Mollie no permite el reembolso parcial de la cantidad o el importe total de
|
339 |
|
340 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
341 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:
|
342 |
msgid "Order completed using %1$s payment (%2$s)."
|
343 |
msgstr "Pedido completado mediante %1$s pago (%2$s)."
|
344 |
|
@@ -375,39 +1029,34 @@ msgstr "Para aceptar pagos mediante Przelewy24, se requiere un correo electróni
|
|
375 |
|
376 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
377 |
msgid "Przelewy24"
|
378 |
-
msgstr "Przelewy24"
|
379 |
|
380 |
-
#:
|
381 |
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."
|
382 |
-
msgstr "Mollie Payments for WooCommerce requiere la extensión JSON para PHP.
|
383 |
|
384 |
-
#: src/Mollie/WC/Payment/Order.php:
|
385 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
386 |
-
msgstr "Reembolso de %s%s reembolsado en WooCommerce y en Mollie.%s ID del reembolso: %s."
|
387 |
|
388 |
-
#: src/Mollie/WC/Payment/Order.php:
|
389 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
390 |
-
msgstr "%sx %s reembolsado para %s%s en WooCommerce y en Mollie.%s ID del reembolso: %s."
|
391 |
|
392 |
-
#: src/Mollie/WC/Payment/Order.php:
|
393 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
394 |
-
msgstr "%sx %s cancelado para %s%s en WooCommerce y en Mollie."
|
395 |
|
396 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
397 |
-
#: src/Mollie/WC/Payment/Order.php:
|
398 |
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!"
|
399 |
-
msgstr "Pedido completado en Mollie para
|
400 |
|
401 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
402 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
403 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
404 |
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)."
|
405 |
|
406 |
-
#: src/Mollie/WC/Helper/Settings.php:623
|
407 |
-
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
408 |
-
msgstr "Para aceptar pagos Klarna vía Mollie, todos los campos predeterminados del proceso de pago de WooCommerce deberían estar habilitados y ser obligatorios. Comprueba que este es el caso."
|
409 |
-
|
410 |
-
#: src/Mollie/WC/Payment/Payment.php:39
|
411 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
412 |
msgid "Order"
|
413 |
msgstr "Pedido"
|
@@ -418,42 +1067,38 @@ msgid "%s payment (%s) cancelled ."
|
|
418 |
msgstr "Pago %s (%s) cancelado."
|
419 |
|
420 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
421 |
-
#: src/Mollie/WC/Payment/Order.php:
|
422 |
msgid "%s order (%s) expired ."
|
423 |
msgstr "Pedido %s (%s) caducado."
|
424 |
|
425 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
426 |
-
#: src/Mollie/WC/Payment/Order.php:
|
427 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
428 |
-
msgstr "
|
429 |
|
430 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
431 |
-
#: src/Mollie/WC/Payment/Order.php:
|
432 |
msgid "%s order (%s) cancelled ."
|
433 |
-
msgstr "Pedido %s (%s) cancelado.
|
434 |
|
435 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
436 |
-
#: src/Mollie/WC/Payment/Order.php:
|
437 |
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."
|
438 |
-
msgstr "Pedido autorizado mediante %s
|
439 |
|
440 |
-
#:
|
441 |
-
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
442 |
-
msgstr "Para aceptar pagos Klarna vía Mollie, debes usar WooCommerce 3.0 o superior; actualmente estás usando la versión %s."
|
443 |
-
|
444 |
-
#: src/Mollie/WC/Helper/Settings.php:455
|
445 |
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."
|
446 |
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."
|
447 |
|
448 |
-
#:
|
449 |
msgid "Automatically send WordPress language"
|
450 |
msgstr "Enviar automáticamente idioma de WordPress"
|
451 |
|
452 |
-
#:
|
453 |
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."
|
454 |
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."
|
455 |
|
456 |
-
#: src/Mollie/WC/Helper/OrderLines.php:
|
457 |
msgid "Shipping"
|
458 |
msgstr "Envío"
|
459 |
|
@@ -472,7 +1117,7 @@ msgstr "Klarna Pay later"
|
|
472 |
|
473 |
#: src/Mollie/WC/Helper/Status.php:131
|
474 |
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
475 |
-
msgstr "Mollie Payments for WooCommerce requiere que las funciones PHP cURL estén disponibles. Asegúrate de que todas estas funciones estén disponibles."
|
476 |
|
477 |
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
478 |
#. version
|
@@ -480,75 +1125,75 @@ msgstr "Mollie Payments for WooCommerce requiere que las funciones PHP cURL est
|
|
480 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
481 |
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"
|
482 |
|
483 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
484 |
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."
|
485 |
-
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."
|
486 |
|
487 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
488 |
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."
|
489 |
-
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»."
|
490 |
|
491 |
-
#:
|
492 |
msgid "Lithuanian"
|
493 |
msgstr "Lituano"
|
494 |
|
495 |
-
#:
|
496 |
msgid "Latvian"
|
497 |
msgstr "Letón"
|
498 |
|
499 |
-
#:
|
500 |
msgid "Polish"
|
501 |
msgstr "Polaco"
|
502 |
|
503 |
-
#:
|
504 |
msgid "Hungarian"
|
505 |
msgstr "Húngaro"
|
506 |
|
507 |
-
#:
|
508 |
msgid "Icelandic"
|
509 |
msgstr "Islandés"
|
510 |
|
511 |
-
#:
|
512 |
msgid "Danish"
|
513 |
msgstr "Danés"
|
514 |
|
515 |
-
#:
|
516 |
msgid "Finnish"
|
517 |
msgstr "Finlandés"
|
518 |
|
519 |
-
#:
|
520 |
msgid "Swedish"
|
521 |
msgstr "Sueco"
|
522 |
|
523 |
-
#:
|
524 |
msgid "Norwegian"
|
525 |
msgstr "Noruego"
|
526 |
|
527 |
-
#:
|
528 |
msgid "Italian"
|
529 |
msgstr "Italiano"
|
530 |
|
531 |
-
#:
|
532 |
msgid "Portuguese"
|
533 |
msgstr "Portugués"
|
534 |
|
535 |
-
#:
|
536 |
msgid "Catalan"
|
537 |
msgstr "Catalán"
|
538 |
|
539 |
-
#:
|
540 |
msgid "Swiss German"
|
541 |
msgstr "Alemán suizo"
|
542 |
|
543 |
-
#:
|
544 |
msgid "Austrian German"
|
545 |
msgstr "Alemán austriaco"
|
546 |
|
547 |
-
#: src/Mollie/WC/Helper/Api.php:
|
548 |
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."
|
549 |
-
msgstr "Clave(s) de API no válida(s
|
550 |
|
551 |
-
#: src/Mollie/WC/Helper/Api.php:
|
552 |
msgid "No API key provided. Please set your Mollie API keys below."
|
553 |
msgstr "No se ha proporcionado ninguna clave de API. Configura tus claves de API de Mollie abajo."
|
554 |
|
@@ -561,66 +1206,56 @@ msgid "EPS"
|
|
561 |
msgstr "EPS"
|
562 |
|
563 |
#. translators: Placeholder 1: Payment method title
|
564 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
565 |
msgid "Could not create %s renewal payment."
|
566 |
-
msgstr "No se pudo crear el pago de renovación %s."
|
567 |
|
568 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
569 |
msgid "The customer (%s) does not have a valid mandate."
|
570 |
msgstr "El cliente (%s) no tiene una orden de domiciliación válida."
|
571 |
|
572 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
573 |
msgid "The customer (%s) could not be used or found. "
|
574 |
msgstr "No se ha podido utilizar o encontrar el cliente (%s)."
|
575 |
|
576 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
577 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
578 |
#. placeholder 5: refund ID
|
579 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
580 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
581 |
msgstr "Reembolsado %s%s%s - Pago: %s, Reembolso: %s"
|
582 |
|
583 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
584 |
-
#: src/Mollie/WC/Payment/
|
585 |
msgid "%s payment failed via Mollie (%s)."
|
586 |
msgstr "Pago %s fallido vía Mollie (%s)."
|
587 |
|
588 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
589 |
msgid "New chargeback %s processed! Order note and order status updated."
|
590 |
msgstr "¡Nueva anulación %s procesada! Nota de pedido y estado de pedido actualizados."
|
591 |
|
592 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
593 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
594 |
msgstr "¡Nuevo reembolso %s procesado en el panel de Mollie! Nota de pedido añadida, pero pedido no actualizado."
|
595 |
|
596 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
597 |
#. Mollie currencies
|
598 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
599 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
600 |
-
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
|
601 |
-
|
602 |
-
#: mollie-payments-for-woocommerce.php:138
|
603 |
-
msgid "Mollie Payments for WooCommerce 4.0 requires PHP 5.6 or higher. Your PHP version is outdated. Upgrade your PHP version and view %sthis FAQ%s."
|
604 |
-
msgstr "Mollie Payments for WooCommerce 4.0 requiere PHP 5.6 o superior. Tu versión de PHP está desactualizada. Actualiza tu versión de PHP y consulta %sestas P+D%s."
|
605 |
|
606 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
607 |
-
#: src/Mollie/WC/Payment/
|
608 |
-
#: src/Mollie/WC/Payment/Payment.php:328 src/Mollie/WC/Payment/Payment.php:491
|
609 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
610 |
-
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."
|
611 |
|
612 |
-
|
613 |
-
#: src/Mollie/WC/
|
614 |
-
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
615 |
-
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, <code>%s</code>. ¡Obligatorio si se utiliza WooCommerce Subscriptions!"
|
616 |
-
|
617 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1270
|
618 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1281
|
619 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
620 |
-
msgstr "Tu pago no se ha procesado correctamente. Por favor, realiza tu pedido con otro método de pago."
|
621 |
|
622 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
623 |
-
#: src/Mollie/WC/Payment/
|
624 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
625 |
msgstr "El pago de renovación de %s ha fallado a través de Mollie (%s). Deberás revisar manualmente el pago y ajustar las existencias de productos si los usas."
|
626 |
|
@@ -630,24 +1265,20 @@ msgid "Bancontact"
|
|
630 |
msgstr "Bancontact"
|
631 |
|
632 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
633 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
634 |
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."
|
635 |
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."
|
636 |
|
637 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
638 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
639 |
msgstr "El interruptor de suscripción ha fallado, no hay una orden válida. Realiza un nuevo pedido para cambiar tu suscripción."
|
640 |
|
641 |
-
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
642 |
-
msgid "ING Home'Pay"
|
643 |
-
msgstr "ING Home'Pay"
|
644 |
-
|
645 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
646 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
647 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
648 |
msgstr "El pago de renovación de %s se ha realizado a través de Mollie (%s). Deberás revisar manualmente el pago (y ajustar las existencias de productos si lo usas)."
|
649 |
|
650 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
651 |
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."
|
652 |
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»."
|
653 |
|
@@ -663,15 +1294,15 @@ msgstr "Mostrar menú desplegable de bancos KBC/CBC"
|
|
663 |
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."
|
664 |
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»."
|
665 |
|
666 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
667 |
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."
|
668 |
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."
|
669 |
|
670 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
671 |
msgid "Show iDEAL banks dropdown"
|
672 |
msgstr "Mostrar menú desplegable de bancos iDEAL"
|
673 |
|
674 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
675 |
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."
|
676 |
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»."
|
677 |
|
@@ -683,63 +1314,55 @@ msgstr "Si desactivas esto, no se mostrará el menú desplegable con varias tarj
|
|
683 |
msgid "Show gift cards dropdown"
|
684 |
msgstr "Mostrar el menú desplegable de tarjetas de regalo"
|
685 |
|
686 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
687 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
688 |
msgstr "El pedido se ha completado internamente por una orden válida existente en Mollie."
|
689 |
|
690 |
-
#:
|
691 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s This version requires WooCommerce 2.2 or newer. Please %3$supdate WooCommerce to version 2.2 or newer »%4$s"
|
692 |
-
msgstr "%1$sMollie Payments for WooCommerce está inactivo.%2$s Esta versión requiere WooCommerce 2.2 o más reciente. Por favor %3$sactualiza WooCommerce a la versión 2.2 o a una más reciente »%4$s"
|
693 |
-
|
694 |
-
#: mollie-payments-for-woocommerce.php:164
|
695 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for it to work. Please %5$sinstall & activate WooCommerce »%6$s"
|
696 |
-
msgstr "%1$sMollie Payments for WooCommerce está inactivo.%2$s El plugin %3$sde WooCommerce%4$s debe estar activado para funcionar. Por favor, %5$sinstala y activa WooCommerce »%6$s "
|
697 |
-
|
698 |
-
#: src/Mollie/WC/Helper/Settings.php:414
|
699 |
msgid "Cancelled"
|
700 |
msgstr "Cancelado"
|
701 |
|
702 |
-
#:
|
703 |
msgid "Pending"
|
704 |
msgstr "Pendiente"
|
705 |
|
706 |
-
#:
|
707 |
msgid "Order status after cancelled payment"
|
708 |
msgstr "Estado del pedido después de la cancelación del pago"
|
709 |
|
710 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
711 |
#. placeholder 3: consumer BIC
|
|
|
|
|
712 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
713 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:185
|
714 |
-
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:121
|
715 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
716 |
msgstr "Pago completado por <strong>%s</strong> (IBAN (últimos 4 dígitos): %s, BIC: %s)."
|
717 |
|
718 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
719 |
msgid "Your order has been cancelled."
|
720 |
msgstr "Tu pedido ha sido cancelado."
|
721 |
|
722 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
723 |
msgid ", payment pending."
|
724 |
msgstr ", pago pendiente."
|
725 |
|
726 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
727 |
msgid "Order cancelled"
|
728 |
msgstr "Pedido cancelado"
|
729 |
|
730 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
731 |
#. status, placeholder 3: payment ID
|
732 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
733 |
msgid "%s payment %s (%s), not processed."
|
734 |
msgstr "Pago %s %s (%s), no procesado."
|
735 |
|
736 |
#. translators: Default gift card dropdown description, displayed above issuer
|
737 |
#. drop down
|
738 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
739 |
msgid "Select your gift card"
|
740 |
msgstr "Selecciona tu tarjeta de regalo"
|
741 |
|
742 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
743 |
msgid "Gift cards"
|
744 |
msgstr "Tarjetas de regalo"
|
745 |
|
@@ -748,32 +1371,32 @@ msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscri
|
|
748 |
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."
|
749 |
|
750 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
751 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
752 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
753 |
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."
|
754 |
|
755 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
756 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
757 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
758 |
-
msgstr "Pago %s caducado (%s)
|
759 |
|
760 |
-
#: src/subscriptions_status_check_functions.php:
|
761 |
msgid "There are still some subscriptions left, use the tool again!"
|
762 |
msgstr "Todavía quedan algunas suscripciones, ¡usa la herramienta de nuevo!"
|
763 |
|
764 |
-
#: src/subscriptions_status_check_functions.php:
|
765 |
msgid "No more subscriptions left to process!"
|
766 |
msgstr "¡No quedan más subscripciones por procesar!"
|
767 |
|
768 |
-
#: src/subscriptions_status_check_functions.php:
|
769 |
msgid "No subscriptions updated in this batch."
|
770 |
msgstr "No hay suscripciones actualizadas en este lote."
|
771 |
|
772 |
-
#: src/subscriptions_status_check_functions.php:
|
773 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
774 |
msgstr "La suscripción no se ha actualizado porque no había una orden válida en Mollie. Procesado por la herramienta «Estado de suscripciones de Mollie»."
|
775 |
|
776 |
-
#: src/subscriptions_status_check_functions.php:
|
777 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
778 |
msgstr "La suscripción se ha actualizado a «Renovación automática» a través de Mollie, el estado se ha cambiado a «Activo». Procesado por la herramienta «Estado de suscripciones de Mollie»."
|
779 |
|
@@ -789,33 +1412,33 @@ msgstr "Estado de suscripciones de Mollie"
|
|
789 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
790 |
msgstr "Controla las suscripciones que están incorrectamente configuradas a «Renovación manual». Primero lee el"
|
791 |
|
792 |
-
#:
|
793 |
msgid "Store customer details at Mollie"
|
794 |
msgstr "Almacenar los detalles del cliente en Mollie"
|
795 |
|
796 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
797 |
-
#: src/Mollie/WC/Plugin.php:
|
798 |
msgid "%s payment failed (%s)."
|
799 |
msgstr "Pago %s fallido (%s)."
|
800 |
|
801 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
802 |
msgid "KBC/CBC Payment Button"
|
803 |
msgstr "Botón de pago KBC/CBC"
|
804 |
|
805 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
806 |
-
#: src/Mollie/WC/Gateway/
|
807 |
msgid "Issuers empty option"
|
808 |
msgstr "Entidades emisoras opción vacía"
|
809 |
|
810 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
811 |
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."
|
812 |
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."
|
813 |
|
814 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
815 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
816 |
-
msgstr "Saltar la pantalla de pago de Mollie cuando la transferencia bancaria está seleccionada
|
817 |
|
818 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
819 |
msgid "Skip Mollie payment screen"
|
820 |
msgstr "Saltar la pantalla de pago de Mollie"
|
821 |
|
@@ -836,7 +1459,7 @@ msgstr "Mollie"
|
|
836 |
msgid "Mollie Payments for WooCommerce"
|
837 |
msgstr "Mollie Payments for WooCommerce"
|
838 |
|
839 |
-
#: src/Mollie/WC/Plugin.php:
|
840 |
msgid "Logs"
|
841 |
msgstr "Registros"
|
842 |
|
@@ -858,137 +1481,133 @@ msgstr "Cliente de API Mollie no instalado. Por favor, asegúrate de que el plug
|
|
858 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
859 |
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."
|
860 |
|
861 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
862 |
msgid "Debug Log"
|
863 |
msgstr "Registro de depuración"
|
864 |
|
865 |
-
#:
|
866 |
msgid "French (Belgium)"
|
867 |
msgstr "Francés (Bélgica)"
|
868 |
|
869 |
-
#:
|
870 |
msgid "French"
|
871 |
msgstr "Francés"
|
872 |
|
873 |
-
#:
|
874 |
msgid "Spanish"
|
875 |
msgstr "Español"
|
876 |
|
877 |
-
#:
|
878 |
msgid "German"
|
879 |
msgstr "Alemán"
|
880 |
|
881 |
-
#:
|
882 |
msgid "English"
|
883 |
msgstr "Inglés"
|
884 |
|
885 |
-
#:
|
886 |
msgid "Flemish (Belgium)"
|
887 |
msgstr "Flamenco (Bélgica)"
|
888 |
|
889 |
-
#:
|
890 |
msgid "Dutch"
|
891 |
msgstr "Neerlandés"
|
892 |
|
893 |
-
#:
|
894 |
msgid "Detect using browser language"
|
895 |
msgstr "Detectar utilizando el idioma del navegador"
|
896 |
|
897 |
-
#:
|
898 |
msgid "Payment screen language"
|
899 |
msgstr "Idioma de la pantalla de pago"
|
900 |
|
901 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
902 |
msgid "Test API key should start with test_"
|
903 |
msgstr "La clave de API de prueba debe comenzar con test_"
|
904 |
|
905 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
906 |
msgid "Test API key"
|
907 |
msgstr "Clave de API de prueba"
|
908 |
|
909 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
910 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
911 |
msgstr "Activa el modo de prueba si deseas probar el plugin sin usar pagos reales."
|
912 |
|
913 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
914 |
msgid "Enable test mode"
|
915 |
msgstr "Activar modo de prueba"
|
916 |
|
917 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
918 |
msgid "Live API key should start with live_"
|
919 |
msgstr "La clave de API activa debería comenzar con live_"
|
920 |
|
921 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
922 |
#. %s's Will be replaced by a link to the Mollie profile
|
923 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
924 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
925 |
msgstr "La clave de API se usa para conectarse a Mollie. Puedes encontrar tu clave de API <strong>%s</strong> en tu %sperfil de Mollie%s"
|
926 |
|
927 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
928 |
msgid "Live API key"
|
929 |
msgstr "Clave de API activa"
|
930 |
|
931 |
-
#:
|
|
|
932 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
933 |
msgstr "Se requieren las siguientes opciones para usar el plugin y son usadas por todos los métodos de pago en Mollie"
|
934 |
|
935 |
-
#: src/Mollie/WC/
|
936 |
msgid "Mollie settings"
|
937 |
-
msgstr "Estado de Mollie"
|
938 |
|
939 |
-
|
940 |
-
#: src/Mollie/WC/Helper/Settings.php:351
|
941 |
msgid "Log files are saved to <code>%s</code>"
|
942 |
msgstr "Los archivos de registro se guardan en <code>%s</code>"
|
943 |
|
944 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
945 |
-
msgid "View logs"
|
946 |
-
msgstr "Ver los registros"
|
947 |
-
|
948 |
-
#: src/Mollie/WC/Helper/Settings.php:340
|
949 |
msgid "Log plugin events."
|
950 |
msgstr "Registro de eventos del plugin."
|
951 |
|
952 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
953 |
msgid "Edit"
|
954 |
msgstr "Editar"
|
955 |
|
956 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
957 |
msgid "Refresh"
|
958 |
msgstr "Actualizar"
|
959 |
|
960 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
961 |
#. profile
|
962 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
963 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
964 |
msgstr "Los siguientes métodos de pago están activados en tu %sperfil de Mollie%s:"
|
965 |
|
966 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
967 |
msgid "Gateway disabled"
|
968 |
msgstr "Pasarela desactivada"
|
969 |
|
970 |
-
|
971 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
972 |
msgid "Enabled"
|
973 |
msgstr "Activado"
|
974 |
|
975 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
976 |
msgid "Gateway enabled"
|
977 |
msgstr "Pasarela activada"
|
978 |
|
979 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
980 |
msgid "Connected"
|
981 |
msgstr "Conectado"
|
982 |
|
983 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
984 |
msgid "Mollie status:"
|
985 |
msgstr "Estado de Mollie:"
|
986 |
|
987 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
988 |
msgid "Error"
|
989 |
msgstr "Error"
|
990 |
|
991 |
-
#: src/Mollie/WC/Helper/Data.php:
|
992 |
msgid "Item #%s stock incremented from %s to %s."
|
993 |
msgstr "Las existencias del elemento #%s han aumentado de %s a %s."
|
994 |
|
@@ -1002,22 +1621,22 @@ msgstr "paysafecard"
|
|
1002 |
|
1003 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1004 |
#. email, placeholder 3: PayPal transaction ID
|
1005 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1006 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1007 |
msgstr "Pago completado por <strong>%s</strong> - %s (ID de transacción PayPal: %s)"
|
1008 |
|
1009 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1010 |
msgid "PayPal"
|
1011 |
msgstr "PayPal"
|
1012 |
|
|
|
1013 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1014 |
#. drop down
|
1015 |
-
|
1016 |
-
#: src/Mollie/WC/Gateway/Kbc.php:77 src/Mollie/WC/Gateway/Ideal.php:77
|
1017 |
msgid "Select your bank"
|
1018 |
msgstr "Selecciona tu banco"
|
1019 |
|
1020 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
1021 |
msgid "iDEAL"
|
1022 |
msgstr "iDEAL"
|
1023 |
|
@@ -1026,11 +1645,11 @@ msgid "SEPA Direct Debit"
|
|
1026 |
msgstr "Adeudo directo SEPA"
|
1027 |
|
1028 |
#. translators: Placeholder 1: card holder
|
1029 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1030 |
msgid "Payment completed by <strong>%s</strong>"
|
1031 |
msgstr "Pago completado por <strong>%s</strong>"
|
1032 |
|
1033 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1034 |
msgid "Credit card"
|
1035 |
msgstr "Tarjeta de crédito"
|
1036 |
|
@@ -1038,193 +1657,206 @@ msgstr "Tarjeta de crédito"
|
|
1038 |
msgid "Belfius Direct Net"
|
1039 |
msgstr "Belfius Direct Net"
|
1040 |
|
1041 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1042 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1043 |
msgstr "El pago caducará el <strong>%s</strong>. Por favor, asegúrate de transferir la cantidad total antes de esta fecha."
|
1044 |
|
1045 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1046 |
msgid "The payment will expire on <strong>%s</strong>."
|
1047 |
msgstr "El pago caducará el <strong>%s</strong>."
|
1048 |
|
1049 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1050 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1051 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1052 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1053 |
msgstr "Por favor, indica la referencia del pago <strong>%s</strong>"
|
1054 |
|
1055 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1056 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1057 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1058 |
msgid "Payment reference: %s"
|
1059 |
msgstr "Referencia del pago: %s"
|
1060 |
|
1061 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1062 |
msgid "BIC: %s"
|
1063 |
msgstr "BIC: %s"
|
1064 |
|
1065 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1066 |
msgid "IBAN: <strong>%s</strong>"
|
1067 |
msgstr "IBAN: <strong>%s</strong>"
|
1068 |
|
1069 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1070 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1071 |
msgid "Beneficiary: %s"
|
1072 |
msgstr "Beneficiario: %s"
|
1073 |
|
1074 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1075 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1076 |
msgstr "Por favor, completa tu pago transfiriendo la cantidad total a la siguiente cuenta bancaria:"
|
1077 |
|
1078 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1079 |
msgid "Bank Transfer"
|
1080 |
msgstr "Transferencia bancaria"
|
1081 |
|
1082 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
1083 |
msgid "Disabled"
|
1084 |
msgstr "Desactivado"
|
1085 |
|
1086 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1087 |
-
msgid "Number of
|
1088 |
-
msgstr "Número de
|
1089 |
|
1090 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
1091 |
msgid "Expiry date"
|
1092 |
msgstr "Fecha de caducidad"
|
1093 |
|
1094 |
#. translators: Placeholder 1: payment method
|
1095 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1096 |
msgid "Payment completed with <strong>%s</strong>"
|
1097 |
msgstr "Pago completado con <strong>%s</strong>"
|
1098 |
|
1099 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1100 |
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."
|
1101 |
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."
|
1102 |
|
1103 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1104 |
msgid "We have not received a definite payment status."
|
1105 |
msgstr "No hemos recibido un estado de pago definitivo."
|
1106 |
|
1107 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1108 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1109 |
msgstr "Has cancelado el pago. Por favor, realiza tu pedido con otro método de pago."
|
1110 |
|
1111 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1112 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
1113 |
msgid "%s payment expired (%s)."
|
1114 |
msgstr "Pago %s caducado (%s)."
|
1115 |
|
1116 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1117 |
-
#: src/Mollie/WC/Payment/Order.php:
|
1118 |
msgid "Order completed using %s payment (%s)."
|
1119 |
msgstr "Pedido completado usando el pago %s (%s)."
|
1120 |
|
1121 |
#. translators: Placeholder 1: Payment method title
|
1122 |
-
#: src/Mollie/WC/
|
1123 |
-
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:
|
1124 |
-
#: src/Mollie/WC/
|
|
|
|
|
1125 |
msgid "Could not create %s payment."
|
1126 |
msgstr "No se ha podido crear el pago %s."
|
1127 |
|
1128 |
-
#: src/Mollie/WC/
|
1129 |
-
#: src/Mollie/WC/
|
1130 |
-
#: src/Mollie/WC/Payment/Order.php:607 src/Mollie/WC/Payment/Order.php:631
|
1131 |
-
#: src/Mollie/WC/Payment/Order.php:668 src/Mollie/WC/Payment/Order.php:709
|
1132 |
-
#: src/Mollie/WC/Payment/Payment.php:237 src/Mollie/WC/Payment/Payment.php:338
|
1133 |
-
#: src/Mollie/WC/Payment/Payment.php:396 src/Mollie/WC/Payment/Payment.php:419
|
1134 |
-
#: src/Mollie/WC/Payment/Payment.php:459 src/Mollie/WC/Payment/Payment.php:500
|
1135 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1136 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1137 |
-
#: src/Mollie/WC/Gateway/Abstract.php:547
|
1138 |
-
#: src/Mollie/WC/Gateway/Abstract.php:822
|
1139 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1120
|
1140 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1141 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1142 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1143 |
-
#: src/Mollie/WC/Gateway/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1144 |
msgid "test mode"
|
1145 |
msgstr "modo de prueba"
|
1146 |
|
1147 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
|
|
1148 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1149 |
-
#: src/Mollie/WC/Gateway/
|
1150 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1151 |
msgid "%s payment started (%s)."
|
1152 |
msgstr "Pago %s iniciado (%s)."
|
1153 |
|
|
|
1154 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1155 |
-
#: src/Mollie/WC/Gateway/
|
1156 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1157 |
msgid "Awaiting payment confirmation."
|
1158 |
msgstr "A la espera de la confirmación del pago."
|
1159 |
|
1160 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1161 |
msgid "Could not load order %s"
|
1162 |
msgstr "No se ha podido cargar el pedido %s"
|
1163 |
|
1164 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1165 |
#. be replaced by a link to the Mollie profile
|
1166 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1167 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1168 |
msgstr "%s no activado en tu perfil de Mollie. Puedes activarlo editando tu %sperfil de Mollie%s."
|
1169 |
|
1170 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1171 |
#. setting page
|
1172 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1173 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1174 |
msgstr "No se ha proporcionado ninguna clave de API. %sConfigura primero tu clave de API de Mollie.%s"
|
1175 |
|
1176 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1177 |
msgid "Gateway Disabled"
|
1178 |
msgstr "Pasarela desactivada"
|
1179 |
|
1180 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1181 |
msgid "Test mode enabled."
|
1182 |
msgstr "Modo de prueba activado."
|
1183 |
|
1184 |
-
#: src/Mollie/WC/
|
1185 |
msgid "Hold Stock (minutes)"
|
1186 |
msgstr "Mantener el stock (en minutos)"
|
1187 |
|
1188 |
-
#: src/Mollie/WC/
|
1189 |
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."
|
1190 |
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."
|
1191 |
|
1192 |
-
#:
|
|
|
|
|
1193 |
msgid "default"
|
1194 |
msgstr "por defecto"
|
1195 |
|
1196 |
-
#: src/Mollie/WC/
|
1197 |
msgid "Initial order status"
|
1198 |
msgstr "Estado inicial del pedido"
|
1199 |
|
1200 |
-
#:
|
|
|
1201 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1202 |
msgstr "Descripción del método de pago que el cliente verá en tu proceso de pago. Por defecto <code>%s</code>"
|
1203 |
|
1204 |
-
#:
|
|
|
1205 |
msgid "Description"
|
1206 |
msgstr "Descripción"
|
1207 |
|
1208 |
-
#: src/Mollie/WC/
|
1209 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1210 |
msgstr "Mostrar logotipo en la página de pago. Por defecto <code>activado</code>"
|
1211 |
|
1212 |
-
#:
|
|
|
|
|
1213 |
msgid "Display logo"
|
1214 |
msgstr "Mostrar logotipo"
|
1215 |
|
1216 |
-
#:
|
|
|
1217 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1218 |
msgstr "Esto controla el título que el usuario ve durante el pago. Por defecto <code>%s</code>"
|
1219 |
|
1220 |
-
#:
|
|
|
1221 |
msgid "Title"
|
1222 |
msgstr "Título"
|
1223 |
|
1224 |
-
|
|
|
|
|
1225 |
msgid "Enable %s"
|
1226 |
msgstr "Activar %s"
|
1227 |
|
1228 |
-
#:
|
|
|
1229 |
msgid "Enable/Disable"
|
1230 |
msgstr "Activar/Desactivar"
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in Dutch
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-07-26 13:45+0200\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
+
"Language: nl\n"
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
|
14 |
+
#: src/Mollie/WC/Plugin.php:375
|
15 |
+
msgid "Unpaid order cancelled - time limit reached."
|
16 |
+
msgstr "Pedido no pagado cancelado - límite de tiempo alcanzado."
|
17 |
+
|
18 |
+
#: src/Mollie/WC/Helper/Settings.php:846
|
19 |
+
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"
|
20 |
+
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"
|
21 |
+
|
22 |
+
#: src/Mollie/WC/Helper/Settings.php:254
|
23 |
+
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."
|
24 |
+
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."
|
25 |
+
|
26 |
+
#: src/Mollie/WC/Helper/Settings.php:246
|
27 |
+
msgid "Enable this option if you want to be able to set the number of days after the order will expire."
|
28 |
+
msgstr "Activa esta opción si quieres poder ajustar el número de días al cabo de los cuales caducará el pedido."
|
29 |
+
|
30 |
+
#: src/Mollie/WC/Helper/Settings.php:237
|
31 |
+
msgid "%s advanced"
|
32 |
+
msgstr "%s avanzado"
|
33 |
+
|
34 |
+
#: inc/settings/mollie_paypal_button_enabler.php:126
|
35 |
+
msgid "If the product or the cart total amount is under this number, then the button will not show up."
|
36 |
+
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."
|
37 |
+
|
38 |
+
#: inc/settings/mollie_paypal_button_enabler.php:122
|
39 |
+
msgid "Minimum amount to display button"
|
40 |
+
msgstr "Importe mínimo para mostrar el botón"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_paypal_button_enabler.php:117
|
43 |
+
msgctxt "Mollie PayPal button Settings"
|
44 |
+
msgid "Polish -- Checkout with PayPal - Silver"
|
45 |
+
msgstr "Polaco -- Proceso de pago con PayPal - Plata"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_paypal_button_enabler.php:116
|
48 |
+
msgctxt "Mollie PayPal button Settings"
|
49 |
+
msgid "Polish -- Checkout with PayPal - Gold"
|
50 |
+
msgstr "Polaco -- Proceso de pago con PayPal - Oro"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_paypal_button_enabler.php:115
|
53 |
+
msgctxt "Mollie PayPal button Settings"
|
54 |
+
msgid "Polish -- Buy with PayPal - Gold"
|
55 |
+
msgstr "Polaco -- Comprar con PayPal - Oro"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_paypal_button_enabler.php:114
|
58 |
+
msgctxt "Mollie PayPal button Settings"
|
59 |
+
msgid "French -- Checkout with PayPal - Silver"
|
60 |
+
msgstr "Francés -- Proceso de pago con PayPal - Plata"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_paypal_button_enabler.php:113
|
63 |
+
msgctxt "Mollie PayPal button Settings"
|
64 |
+
msgid "French -- Checkout with PayPal - Gold"
|
65 |
+
msgstr "Francés -- Proceso de pago con PayPal - Oro"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_paypal_button_enabler.php:112
|
68 |
+
msgctxt "Mollie PayPal button Settings"
|
69 |
+
msgid "French -- Buy with PayPal - Gold"
|
70 |
+
msgstr "Francés -- Comprar con PayPal - Oro"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_paypal_button_enabler.php:111
|
73 |
+
msgctxt "Mollie PayPal button Settings"
|
74 |
+
msgid "German -- Checkout with PayPal - Rounded white"
|
75 |
+
msgstr "Alemán -- Proceso de pago con PayPal - Oro"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_paypal_button_enabler.php:110
|
78 |
+
msgctxt "Mollie PayPal button Settings"
|
79 |
+
msgid "German -- Checkout with PayPal - Pill white"
|
80 |
+
msgstr "Alemán -- Proceso de pago con PayPal - Botón alargado blanco"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_paypal_button_enabler.php:109
|
83 |
+
msgctxt "Mollie PayPal button Settings"
|
84 |
+
msgid "German -- Checkout with PayPal - Rounded gray"
|
85 |
+
msgstr "Alemán -- Proceso de pago con PayPal - Redondeado gris"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_paypal_button_enabler.php:108
|
88 |
+
msgctxt "Mollie PayPal button Settings"
|
89 |
+
msgid "German -- Checkout with PayPal - Pill gray"
|
90 |
+
msgstr "Alemán -- Proceso de pago con PayPal - Botón alargado gris"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_paypal_button_enabler.php:107
|
93 |
+
msgctxt "Mollie PayPal button Settings"
|
94 |
+
msgid "German -- Checkout with PayPal - Rounded golden"
|
95 |
+
msgstr "Alemán -- Proceso de pago con PayPal - Redondeado dorado"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_paypal_button_enabler.php:106
|
98 |
+
msgctxt "Mollie PayPal button Settings"
|
99 |
+
msgid "German -- Checkout with PayPal - Pill golden"
|
100 |
+
msgstr "Alemán -- Proceso de pago con PayPal - Botón alargado dorado"
|
101 |
+
|
102 |
+
#: inc/settings/mollie_paypal_button_enabler.php:105
|
103 |
+
msgctxt "Mollie PayPal button Settings"
|
104 |
+
msgid "German -- Checkout with PayPal - Rounded blue"
|
105 |
+
msgstr "Alemán -- Proceso de pago con PayPal - Redondeado azul"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_paypal_button_enabler.php:104
|
108 |
+
msgctxt "Mollie PayPal button Settings"
|
109 |
+
msgid "German -- Checkout with PayPal - Pill blue"
|
110 |
+
msgstr "Alemán -- Proceso de pago con PayPal - Botón alargado azul"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_paypal_button_enabler.php:103
|
113 |
+
msgctxt "Mollie PayPal button Settings"
|
114 |
+
msgid "German -- Checkout with PayPal - Rounded black"
|
115 |
+
msgstr "Alemán -- Proceso de pago con PayPal - Redondeado negro"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_paypal_button_enabler.php:102
|
118 |
+
msgctxt "Mollie PayPal button Settings"
|
119 |
+
msgid "German -- Checkout with PayPal - Pill black"
|
120 |
+
msgstr "Alemán -- Proceso de pago con PayPal - Botón alargado negro"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_paypal_button_enabler.php:101
|
123 |
+
msgctxt "Mollie PayPal button Settings"
|
124 |
+
msgid "German -- Buy with PayPal - Rounded white"
|
125 |
+
msgstr "Alemán -- Comprar con PayPal - Redondeado blanco"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_paypal_button_enabler.php:100
|
128 |
+
msgctxt "Mollie PayPal button Settings"
|
129 |
+
msgid "German -- Buy with PayPal - Pill white"
|
130 |
+
msgstr "Alemán -- Comprar con PayPal - Botón alargado blanco"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_paypal_button_enabler.php:99
|
133 |
+
msgctxt "Mollie PayPal button Settings"
|
134 |
+
msgid "German -- Buy with PayPal - Rounded gray"
|
135 |
+
msgstr "Alemán -- Comprar con PayPal - Redondeado gris"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_paypal_button_enabler.php:98
|
138 |
+
msgctxt "Mollie PayPal button Settings"
|
139 |
+
msgid "German -- Buy with PayPal - Pill gray"
|
140 |
+
msgstr "Alemán -- Comprar con PayPal - Botón alargado gris"
|
141 |
+
|
142 |
+
#: inc/settings/mollie_paypal_button_enabler.php:97
|
143 |
+
msgctxt "Mollie PayPal button Settings"
|
144 |
+
msgid "German -- Buy with PayPal - Rounded golden"
|
145 |
+
msgstr "Alemán -- Comprar con PayPal - Redondeado dorado"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_paypal_button_enabler.php:96
|
148 |
+
msgctxt "Mollie PayPal button Settings"
|
149 |
+
msgid "German -- Buy with PayPal - Pill golden"
|
150 |
+
msgstr "Alemán -- Comprar con PayPal - Botón alargado dorado"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_paypal_button_enabler.php:95
|
153 |
+
msgctxt "Mollie PayPal button Settings"
|
154 |
+
msgid "German -- Buy with PayPal - Rounded blue"
|
155 |
+
msgstr "Alemán -- Comprar con PayPal - Redondeado azul"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_paypal_button_enabler.php:94
|
158 |
+
msgctxt "Mollie PayPal button Settings"
|
159 |
+
msgid "German -- Buy with PayPal - Pill blue"
|
160 |
+
msgstr "Alemán -- Comprar con PayPal - Botón alargado azul"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_paypal_button_enabler.php:93
|
163 |
+
msgctxt "Mollie PayPal button Settings"
|
164 |
+
msgid "German -- Buy with PayPal - Rounded black"
|
165 |
+
msgstr "Alemán -- Comprar con PayPal - Redondeado negro"
|
166 |
+
|
167 |
+
#: inc/settings/mollie_paypal_button_enabler.php:92
|
168 |
+
msgctxt "Mollie PayPal button Settings"
|
169 |
+
msgid "German -- Buy with PayPal - Pill black"
|
170 |
+
msgstr "Alemán -- Comprar con PayPal - Botón alargado negro"
|
171 |
+
|
172 |
+
#: inc/settings/mollie_paypal_button_enabler.php:91
|
173 |
+
msgctxt "Mollie PayPal button Settings"
|
174 |
+
msgid "Dutch -- Checkout with PayPal - Rounded white"
|
175 |
+
msgstr "Holandés -- Proceso de pago con PayPal - Redondeado blanco"
|
176 |
+
|
177 |
+
#: inc/settings/mollie_paypal_button_enabler.php:90
|
178 |
+
msgctxt "Mollie PayPal button Settings"
|
179 |
+
msgid "Dutch -- Checkout with PayPal - Pill white"
|
180 |
+
msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado blanco"
|
181 |
+
|
182 |
+
#: inc/settings/mollie_paypal_button_enabler.php:89
|
183 |
+
msgctxt "Mollie PayPal button Settings"
|
184 |
+
msgid "Dutch -- Checkout with PayPal - Rounded gray"
|
185 |
+
msgstr "Holandés -- Proceso de pago con PayPal - Redondeado gris"
|
186 |
+
|
187 |
+
#: inc/settings/mollie_paypal_button_enabler.php:88
|
188 |
+
msgctxt "Mollie PayPal button Settings"
|
189 |
+
msgid "Dutch -- Checkout with PayPal - Pill gray"
|
190 |
+
msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado gris"
|
191 |
+
|
192 |
+
#: inc/settings/mollie_paypal_button_enabler.php:87
|
193 |
+
msgctxt "Mollie PayPal button Settings"
|
194 |
+
msgid "Dutch -- Checkout with PayPal - Rounded golden"
|
195 |
+
msgstr "Holandés -- Proceso de pago con PayPal - Redondeado dorado"
|
196 |
+
|
197 |
+
#: inc/settings/mollie_paypal_button_enabler.php:86
|
198 |
+
msgctxt "Mollie PayPal button Settings"
|
199 |
+
msgid "Dutch -- Checkout with PayPal - Pill golden"
|
200 |
+
msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado dorado"
|
201 |
+
|
202 |
+
#: inc/settings/mollie_paypal_button_enabler.php:85
|
203 |
+
msgctxt "Mollie PayPal button Settings"
|
204 |
+
msgid "Dutch -- Checkout with PayPal - Rounded blue"
|
205 |
+
msgstr "Holandés -- Proceso de pago con PayPal - Redondeado azul"
|
206 |
+
|
207 |
+
#: inc/settings/mollie_paypal_button_enabler.php:84
|
208 |
+
msgctxt "Mollie PayPal button Settings"
|
209 |
+
msgid "Dutch -- Checkout with PayPal - Pill blue"
|
210 |
+
msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado azul"
|
211 |
+
|
212 |
+
#: inc/settings/mollie_paypal_button_enabler.php:83
|
213 |
+
msgctxt "Mollie PayPal button Settings"
|
214 |
+
msgid "Dutch -- Checkout with PayPal - Rounded black"
|
215 |
+
msgstr "Holandés -- Proceso de pago con PayPal - Redondeado negro"
|
216 |
+
|
217 |
+
#: inc/settings/mollie_paypal_button_enabler.php:82
|
218 |
+
msgctxt "Mollie PayPal button Settings"
|
219 |
+
msgid "Dutch -- Checkout with PayPal - Pill black"
|
220 |
+
msgstr "Holandés -- Proceso de pago con PayPal - Botón alargado negro"
|
221 |
+
|
222 |
+
#: inc/settings/mollie_paypal_button_enabler.php:81
|
223 |
+
msgctxt "Mollie PayPal button Settings"
|
224 |
+
msgid "Dutch -- Buy with PayPal - Rounded white"
|
225 |
+
msgstr "Holandés -- Comprar con PayPal - Redondeado blanco"
|
226 |
+
|
227 |
+
#: inc/settings/mollie_paypal_button_enabler.php:80
|
228 |
+
msgctxt "Mollie PayPal button Settings"
|
229 |
+
msgid "Dutch -- Buy with PayPal - Pill white"
|
230 |
+
msgstr "Holandés -- Comprar con PayPal - Botón alargado blanco"
|
231 |
+
|
232 |
+
#: inc/settings/mollie_paypal_button_enabler.php:79
|
233 |
+
msgctxt "Mollie PayPal button Settings"
|
234 |
+
msgid "Dutch -- Buy with PayPal - Rounded gray"
|
235 |
+
msgstr "Holandés -- Comprar con PayPal - Redondeado gris"
|
236 |
+
|
237 |
+
#: inc/settings/mollie_paypal_button_enabler.php:78
|
238 |
+
msgctxt "Mollie PayPal button Settings"
|
239 |
+
msgid "Dutch -- Buy with PayPal - Pill gray"
|
240 |
+
msgstr "Holandés -- Comprar con PayPal - Botón alargado gris"
|
241 |
+
|
242 |
+
#: inc/settings/mollie_paypal_button_enabler.php:77
|
243 |
+
msgctxt "Mollie PayPal button Settings"
|
244 |
+
msgid "Dutch -- Buy with PayPal - Rounded golden"
|
245 |
+
msgstr "Holandés -- Comprar con PayPal - Redondeado dorado"
|
246 |
+
|
247 |
+
#: inc/settings/mollie_paypal_button_enabler.php:76
|
248 |
+
msgctxt "Mollie PayPal button Settings"
|
249 |
+
msgid "Dutch -- Buy with PayPal - Pill golden"
|
250 |
+
msgstr "Holandés -- Comprar con PayPal - Botón alargado dorado"
|
251 |
+
|
252 |
+
#: inc/settings/mollie_paypal_button_enabler.php:75
|
253 |
+
msgctxt "Mollie PayPal button Settings"
|
254 |
+
msgid "Dutch -- Buy with PayPal - Rounded blue"
|
255 |
+
msgstr "Holandés -- Comprar con PayPal - Redondeado azul"
|
256 |
+
|
257 |
+
#: inc/settings/mollie_paypal_button_enabler.php:74
|
258 |
+
msgctxt "Mollie PayPal button Settings"
|
259 |
+
msgid "Dutch -- Buy with PayPal - Pill blue"
|
260 |
+
msgstr "Holandés -- Comprar con PayPal - Botón alargado azul"
|
261 |
+
|
262 |
+
#: inc/settings/mollie_paypal_button_enabler.php:73
|
263 |
+
msgctxt "Mollie PayPal button Settings"
|
264 |
+
msgid "Dutch -- Buy with PayPal - Rounded black"
|
265 |
+
msgstr "Holandés -- Comprar con PayPal - Redondeado negro"
|
266 |
+
|
267 |
+
#: inc/settings/mollie_paypal_button_enabler.php:72
|
268 |
+
msgctxt "Mollie PayPal button Settings"
|
269 |
+
msgid "Dutch -- Buy with PayPal - Pill black"
|
270 |
+
msgstr "Holandés -- Comprar con PayPal - Botón alargado negro"
|
271 |
+
|
272 |
+
#: inc/settings/mollie_paypal_button_enabler.php:71
|
273 |
+
msgctxt "Mollie PayPal button Settings"
|
274 |
+
msgid "English -- Checkout with PayPal - Rounded white"
|
275 |
+
msgstr "Inglés -- Proceso de pago con PayPal - Redondeado blanco"
|
276 |
+
|
277 |
+
#: inc/settings/mollie_paypal_button_enabler.php:70
|
278 |
+
msgctxt "Mollie PayPal button Settings"
|
279 |
+
msgid "English -- Checkout with PayPal - Pill white"
|
280 |
+
msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado blanco"
|
281 |
+
|
282 |
+
#: inc/settings/mollie_paypal_button_enabler.php:69
|
283 |
+
msgctxt "Mollie PayPal button Settings"
|
284 |
+
msgid "English -- Checkout with PayPal - Rounded gray"
|
285 |
+
msgstr "Inglés -- Proceso de pago con PayPal - Redondeado gris"
|
286 |
+
|
287 |
+
#: inc/settings/mollie_paypal_button_enabler.php:68
|
288 |
+
msgctxt "Mollie PayPal button Settings"
|
289 |
+
msgid "English -- Checkout with PayPal - Pill gray"
|
290 |
+
msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado gris"
|
291 |
+
|
292 |
+
#: inc/settings/mollie_paypal_button_enabler.php:67
|
293 |
+
msgctxt "Mollie PayPal button Settings"
|
294 |
+
msgid "English -- Checkout with PayPal - Rounded golden"
|
295 |
+
msgstr "Inglés -- Proceso de pago con PayPal - Redondeado dorado"
|
296 |
+
|
297 |
+
#: inc/settings/mollie_paypal_button_enabler.php:66
|
298 |
+
msgctxt "Mollie PayPal button Settings"
|
299 |
+
msgid "English -- Checkout with PayPal - Pill golden"
|
300 |
+
msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado dorado"
|
301 |
+
|
302 |
+
#: inc/settings/mollie_paypal_button_enabler.php:65
|
303 |
+
msgctxt "Mollie PayPal button Settings"
|
304 |
+
msgid "English -- Checkout with PayPal - Rounded blue"
|
305 |
+
msgstr "Inglés -- Proceso de pago con PayPal - Redondeado azul"
|
306 |
+
|
307 |
+
#: inc/settings/mollie_paypal_button_enabler.php:64
|
308 |
+
msgctxt "Mollie PayPal button Settings"
|
309 |
+
msgid "English -- Checkout with PayPal - Pill blue"
|
310 |
+
msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado azul"
|
311 |
+
|
312 |
+
#: inc/settings/mollie_paypal_button_enabler.php:63
|
313 |
+
msgctxt "Mollie PayPal button Settings"
|
314 |
+
msgid "English -- Checkout with PayPal - Rounded black"
|
315 |
+
msgstr "Inglés -- Proceso de pago con PayPal - Redondeado negro"
|
316 |
+
|
317 |
+
#: inc/settings/mollie_paypal_button_enabler.php:62
|
318 |
+
msgctxt "Mollie PayPal button Settings"
|
319 |
+
msgid "English -- Checkout with PayPal - Pill black"
|
320 |
+
msgstr "Inglés -- Proceso de pago con PayPal - Botón alargado negro"
|
321 |
+
|
322 |
+
#: inc/settings/mollie_paypal_button_enabler.php:61
|
323 |
+
msgctxt "Mollie PayPal button Settings"
|
324 |
+
msgid "English -- Buy with PayPal - Rounded white"
|
325 |
+
msgstr "Inglés -- Comprar con PayPal - Redondeado blanco"
|
326 |
+
|
327 |
+
#: inc/settings/mollie_paypal_button_enabler.php:60
|
328 |
+
msgctxt "Mollie PayPal button Settings"
|
329 |
+
msgid "English -- Buy with PayPal - Pill white"
|
330 |
+
msgstr "Inglés -- Comprar con PayPal - Botón alargado blanco"
|
331 |
+
|
332 |
+
#: inc/settings/mollie_paypal_button_enabler.php:59
|
333 |
+
msgctxt "Mollie PayPal button Settings"
|
334 |
+
msgid "English -- Buy with PayPal - Rounded gray"
|
335 |
+
msgstr "Inglés -- Comprar con PayPal - Redondeado gris"
|
336 |
+
|
337 |
+
#: inc/settings/mollie_paypal_button_enabler.php:58
|
338 |
+
msgctxt "Mollie PayPal button Settings"
|
339 |
+
msgid "English -- Buy with PayPal - Pill gray"
|
340 |
+
msgstr "Inglés -- Comprar con PayPal - Botón alargado gris"
|
341 |
+
|
342 |
+
#: inc/settings/mollie_paypal_button_enabler.php:57
|
343 |
+
msgctxt "Mollie PayPal button Settings"
|
344 |
+
msgid "English -- Buy with PayPal - Rounded golden"
|
345 |
+
msgstr "Inglés -- Comprar con PayPal - Redondeado dorado"
|
346 |
+
|
347 |
+
#: inc/settings/mollie_paypal_button_enabler.php:56
|
348 |
+
msgctxt "Mollie PayPal button Settings"
|
349 |
+
msgid "English -- Buy with PayPal - Pill golden"
|
350 |
+
msgstr "Inglés -- Comprar con PayPal - Botón alargado dorado"
|
351 |
+
|
352 |
+
#: inc/settings/mollie_paypal_button_enabler.php:55
|
353 |
+
msgctxt "Mollie PayPal button Settings"
|
354 |
+
msgid "English -- Buy with PayPal - Rounded blue"
|
355 |
+
msgstr "Inglés -- Comprar con PayPal - Redondeado azul"
|
356 |
+
|
357 |
+
#: inc/settings/mollie_paypal_button_enabler.php:54
|
358 |
+
msgctxt "Mollie PayPal button Settings"
|
359 |
+
msgid "English -- Buy with PayPal - Pill blue"
|
360 |
+
msgstr "Inglés -- Comprar con PayPal - Botón alargado azul"
|
361 |
+
|
362 |
+
#: inc/settings/mollie_paypal_button_enabler.php:46
|
363 |
+
msgctxt "Mollie PayPal Button Settings"
|
364 |
+
msgid "Select the text and the colour of the button."
|
365 |
+
msgstr "Selecciona el texto y el color del botón."
|
366 |
+
|
367 |
+
#: inc/settings/mollie_paypal_button_enabler.php:44
|
368 |
+
msgctxt "Mollie PayPal Button Settings"
|
369 |
+
msgid "Button text language and color"
|
370 |
+
msgstr "Idioma y color del botón"
|
371 |
+
|
372 |
+
#: inc/settings/mollie_paypal_button_enabler.php:35
|
373 |
+
msgid "Enable the PayPal button to be used in the product page."
|
374 |
+
msgstr "Activa el botón PayPal que se deberá utilizar en la página de productos."
|
375 |
+
|
376 |
+
#: inc/settings/mollie_paypal_button_enabler.php:31
|
377 |
+
msgid "Display on product page"
|
378 |
+
msgstr "Mostrar en la página de productos"
|
379 |
+
|
380 |
+
#: inc/settings/mollie_paypal_button_enabler.php:23
|
381 |
+
msgid "Enable the PayPal button to be used in the cart page."
|
382 |
+
msgstr "Activa el botón PayPal que se deberá utilizar en la página de la cesta de la compra."
|
383 |
+
|
384 |
+
#: inc/settings/mollie_paypal_button_enabler.php:19
|
385 |
+
msgid "Display on cart page"
|
386 |
+
msgstr "Mostrar en la página de la cesta de la compra"
|
387 |
+
|
388 |
+
#: inc/settings/mollie_paypal_button_enabler.php:12
|
389 |
+
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"
|
390 |
+
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"
|
391 |
+
|
392 |
+
#: inc/settings/mollie_paypal_button_enabler.php:7
|
393 |
+
msgid "PayPal button display settings"
|
394 |
+
msgstr "Ajustes de visualización del botón PayPal"
|
395 |
+
|
396 |
+
#: src/Mollie/WC/Helper/Settings.php:159
|
397 |
+
msgid "%s surcharge"
|
398 |
+
msgstr "%s recargo"
|
399 |
+
|
400 |
+
#: src/Mollie/WC/Helper/Settings.php:125
|
401 |
+
msgid "%s custom logo"
|
402 |
+
msgstr "%s logotipo personalizado"
|
403 |
+
|
404 |
+
#: src/Mollie/WC/Helper/Settings.php:107
|
405 |
+
msgid "Sales countries"
|
406 |
+
msgstr "Países de venta"
|
407 |
+
|
408 |
+
#: src/Mollie/WC/Helper/Settings.php:61
|
409 |
+
msgid "%s display settings"
|
410 |
+
msgstr "%s ajustes de visualización"
|
411 |
+
|
412 |
+
#: inc/settings/mollie_advanced_settings.php:124
|
413 |
+
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"
|
414 |
+
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"
|
415 |
+
|
416 |
+
#: inc/settings/mollie_advanced_settings.php:109
|
417 |
+
msgid "API Payment Description"
|
418 |
+
msgstr "Descripción API de pagos"
|
419 |
+
|
420 |
+
#: inc/settings/mollie_advanced_settings.php:99
|
421 |
+
msgid "Click %shere%s to read more about the differences between the Payments and Orders API"
|
422 |
+
msgstr "Haz clic %saquí%s para leer más acerca de las diferencias entre las API de pagos y de pedidos"
|
423 |
+
|
424 |
+
#: inc/settings/mollie_advanced_settings.php:82
|
425 |
+
msgid "Select API Method"
|
426 |
+
msgstr "Selecciona el método de API"
|
427 |
+
|
428 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2645
|
429 |
+
msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb."
|
430 |
+
msgstr "%1$sMollie Payments for WooCommerce%2$s No se puede cargar el archivo. El tamaño debe ser inferior a 500 KB."
|
431 |
+
|
432 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2606
|
433 |
+
msgid " +%1s%2s + %3s%% Fee"
|
434 |
+
msgstr " +%1s%2s + %3s%% cuota"
|
435 |
+
|
436 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2589
|
437 |
+
msgid " +%1s%% Fee"
|
438 |
+
msgstr " +%1s%% cuota"
|
439 |
+
|
440 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2579
|
441 |
+
msgid " +%1s%2s Fee"
|
442 |
+
msgstr " +%1s%2s cuota"
|
443 |
+
|
444 |
+
#: src/Mollie/WC/Gateway/Abstract.php:138
|
445 |
+
msgid "No custom logo selected"
|
446 |
+
msgstr "Ningún logotipo personalizado seleccionado"
|
447 |
+
|
448 |
+
#: src/Mollie/WC/Helper/Settings.php:226
|
449 |
+
msgid "Limit the maximum fee added on checkout. Default 0"
|
450 |
+
msgstr "Limita la cuota máxima que se añade en el proceso de pago. Por defecto: 0"
|
451 |
+
|
452 |
+
#: src/Mollie/WC/Helper/Settings.php:223
|
453 |
+
msgid "Payment surcharge limit in %s"
|
454 |
+
msgstr "Límite de recargo de pago en %s"
|
455 |
+
|
456 |
+
#: src/Mollie/WC/Helper/Settings.php:213
|
457 |
+
msgid "Control the percentage fee added on checkout. Default 0.01"
|
458 |
+
msgstr "Controla la cuota porcentual que se añade en el proceso de pago. Por defecto: 0.01"
|
459 |
+
|
460 |
+
#: src/Mollie/WC/Helper/Settings.php:210
|
461 |
+
msgid "Payment surcharge percentage amount %"
|
462 |
+
msgstr "Porcentaje recargo de pago %"
|
463 |
+
|
464 |
+
#: src/Mollie/WC/Helper/Settings.php:200
|
465 |
+
msgid "Control the fee added on checkout. Default 0.01"
|
466 |
+
msgstr "Controla la cuota que se añade en el proceso de pago. Por defecto: 0.01"
|
467 |
+
|
468 |
+
#: src/Mollie/WC/Helper/Settings.php:197
|
469 |
+
msgid "Payment surcharge fixed amount in %s"
|
470 |
+
msgstr "Importe fijo de recargo de pago en %s"
|
471 |
+
|
472 |
+
#: src/Mollie/WC/Helper/Settings.php:190
|
473 |
+
msgid "Choose a payment surcharge for this gateway"
|
474 |
+
msgstr "Selecciona un recargo de pago para esta pasarela"
|
475 |
+
|
476 |
+
#: src/Mollie/WC/Helper/Settings.php:184
|
477 |
+
msgid "Fixed fee and percentage"
|
478 |
+
msgstr "Cuota fija y porcentaje"
|
479 |
+
|
480 |
+
#: src/Mollie/WC/Helper/Settings.php:180
|
481 |
+
msgid "Percentage"
|
482 |
+
msgstr "Porcentaje"
|
483 |
+
|
484 |
+
#: src/Mollie/WC/Helper/Settings.php:176
|
485 |
+
msgid "Fixed fee"
|
486 |
+
msgstr "Cuota fija"
|
487 |
+
|
488 |
+
#: src/Mollie/WC/Helper/Settings.php:172
|
489 |
+
msgid "No fee"
|
490 |
+
msgstr "Sin cuota"
|
491 |
+
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:166
|
493 |
+
msgid "Payment Surcharge"
|
494 |
+
msgstr "Recargo de pago"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Helper/Settings.php:150
|
497 |
+
msgid "Upload a custom icon for this gateway. The feature must be enabled."
|
498 |
+
msgstr "Carga un icono personalizado para esta pasarela. La función debe estar activada."
|
499 |
+
|
500 |
+
#: src/Mollie/WC/Helper/Settings.php:143
|
501 |
+
msgid "Upload custom logo"
|
502 |
+
msgstr "Cargar logotipo personalizado"
|
503 |
+
|
504 |
+
#: src/Mollie/WC/Helper/Settings.php:137
|
505 |
+
msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options."
|
506 |
+
msgstr "Activa la función para añadir un logotipo personalizado para esta pasarela. Esta función tendrá preferencia ante otras opciones de logotipo."
|
507 |
+
|
508 |
+
#: src/Mollie/WC/Helper/Settings.php:132
|
509 |
+
msgid "Enable custom logo"
|
510 |
+
msgstr "Activar logotipo personalizado"
|
511 |
+
|
512 |
+
#: src/Mollie/WC/Helper/GatewaySurchargeHandler.php:253
|
513 |
+
msgid "Fee"
|
514 |
+
msgstr "Cuota"
|
515 |
+
|
516 |
+
#: inc/settings/mollie_applepay_settings.php:106
|
517 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:32
|
518 |
+
msgid "Enable the Apple Pay direct buy button on the Product page"
|
519 |
+
msgstr "Activa el botón de compra directa de Apple Pay en la página de productos"
|
520 |
+
|
521 |
+
#: inc/settings/mollie_applepay_settings.php:103
|
522 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:29
|
523 |
+
msgid "Enable Apple Pay Button on Product page"
|
524 |
+
msgstr "Activar botón Apple Pay en la página de productos"
|
525 |
+
|
526 |
+
#: inc/settings/mollie_applepay_settings.php:91
|
527 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:21
|
528 |
+
msgid "Enable the Apple Pay direct buy button on the Cart page"
|
529 |
+
msgstr "Activa el botón de compra directa de Apple Pay en la página de la cesta de la compra"
|
530 |
+
|
531 |
+
#: inc/settings/mollie_applepay_settings.php:88
|
532 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:18
|
533 |
+
msgid "Enable Apple Pay Button on Cart page"
|
534 |
+
msgstr "Activar botón Apple Pay en la página de la cesta de la compra"
|
535 |
+
|
536 |
+
#: pluginEnvironmentChecker/EnvironmentChecker.php:49
|
537 |
+
msgid "Validation failed with %1$d errors"
|
538 |
+
msgstr "Validación fallida con %1$d errors"
|
539 |
+
|
540 |
+
#: src/Mollie/WC/Plugin.php:591
|
541 |
+
msgid "Mollie Voucher category"
|
542 |
+
msgstr "Categoría de vale Mollie"
|
543 |
+
|
544 |
+
#: src/Mollie/WC/Plugin.php:531 src/Mollie/WC/Plugin.php:594
|
545 |
+
msgid "Same as default category"
|
546 |
+
msgstr "Igual que la categoría por defecto"
|
547 |
+
|
548 |
+
#: src/Mollie/WC/Plugin.php:464 src/Mollie/WC/Plugin.php:487
|
549 |
+
msgid "Select a voucher category to apply to all products with this category"
|
550 |
+
msgstr "Selecciona una categoría de vale que será aplicada en todos los productos de esta categoría"
|
551 |
+
|
552 |
+
#: src/Mollie/WC/Plugin.php:430 src/Mollie/WC/Plugin.php:462
|
553 |
+
#: src/Mollie/WC/Plugin.php:485 src/Mollie/WC/Plugin.php:598
|
554 |
+
msgid "Gift"
|
555 |
+
msgstr "Regalo"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Plugin.php:429 src/Mollie/WC/Plugin.php:461
|
558 |
+
#: src/Mollie/WC/Plugin.php:484 src/Mollie/WC/Plugin.php:597
|
559 |
+
msgid "Eco"
|
560 |
+
msgstr "Eco"
|
561 |
+
|
562 |
+
#: src/Mollie/WC/Plugin.php:428 src/Mollie/WC/Plugin.php:460
|
563 |
+
#: src/Mollie/WC/Plugin.php:483 src/Mollie/WC/Plugin.php:596
|
564 |
+
msgid "Meal"
|
565 |
+
msgstr "Comida"
|
566 |
+
|
567 |
+
#: src/Mollie/WC/Plugin.php:427 src/Mollie/WC/Plugin.php:459
|
568 |
+
#: src/Mollie/WC/Plugin.php:482 src/Mollie/WC/Plugin.php:595
|
569 |
+
msgid "No Category"
|
570 |
+
msgstr "Sin categoría"
|
571 |
+
|
572 |
+
#: src/Mollie/WC/Plugin.php:426 src/Mollie/WC/Plugin.php:458
|
573 |
+
#: src/Mollie/WC/Plugin.php:481
|
574 |
+
msgid "--Please choose an option--"
|
575 |
+
msgstr "--Selecciona una opción--"
|
576 |
+
|
577 |
+
#: src/Mollie/WC/Plugin.php:423 src/Mollie/WC/Plugin.php:456
|
578 |
+
#: src/Mollie/WC/Plugin.php:478
|
579 |
+
msgid "Mollie Voucher Category"
|
580 |
+
msgstr "Categoría de vale Mollie"
|
581 |
+
|
582 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
583 |
+
msgid "Contact Support"
|
584 |
+
msgstr "Contactar asistencia técnica"
|
585 |
+
|
586 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
587 |
+
msgid "Plugin Documentation"
|
588 |
+
msgstr "Plugin documentación"
|
589 |
+
|
590 |
+
#: src/Mollie/WC/Helper/Settings.php:619
|
591 |
+
msgid "to create a new Mollie account and start receiving payments in a couple of minutes. "
|
592 |
+
msgstr "para crear una nueva cuenta Mollie y empezar a recibir pagos en unos minutos"
|
593 |
+
|
594 |
+
#: src/Mollie/WC/Helper/Settings.php:617
|
595 |
+
msgid " Mollie is dedicated to making payments better for WooCommerce. "
|
596 |
+
msgstr "Mollie se dedica a mejorar los pagos para WooCommerce."
|
597 |
+
|
598 |
+
#: src/Mollie/WC/Helper/Settings.php:616
|
599 |
+
msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie."
|
600 |
+
msgstr "Con este potente plugin de Mollie simplemente puedes colocarlos listos para usar en tu tienda online WooCommerce."
|
601 |
+
|
602 |
+
#: src/Mollie/WC/Helper/Settings.php:615
|
603 |
+
msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them."
|
604 |
+
msgstr "Integra rápidamente todos los métodos de pago principales en WooCommerce, donde sea que los necesites."
|
605 |
+
|
606 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:147
|
607 |
+
msgid "Advanced"
|
608 |
+
msgstr "Avanzado"
|
609 |
+
|
610 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:143
|
611 |
+
msgid "Apple Pay Button"
|
612 |
+
msgstr "Botón Apple Pay"
|
613 |
+
|
614 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:138
|
615 |
+
msgid "General"
|
616 |
+
msgstr "General"
|
617 |
+
|
618 |
+
#: src/Mollie/WC/Gateway/Abstract.php:283
|
619 |
+
msgid "Select none"
|
620 |
+
msgstr "Seleccionar ninguno"
|
621 |
+
|
622 |
+
#: src/Mollie/WC/Gateway/Abstract.php:282
|
623 |
+
msgid "Select all"
|
624 |
+
msgstr "Seleccionar todos"
|
625 |
+
|
626 |
+
#: src/Mollie/WC/Gateway/Abstract.php:273
|
627 |
+
msgid "Country"
|
628 |
+
msgstr "País"
|
629 |
+
|
630 |
+
#: src/Mollie/WC/Gateway/Abstract.php:272
|
631 |
+
msgid "Choose countries…"
|
632 |
+
msgstr "Seleccionar países…"
|
633 |
+
|
634 |
+
#: src/Mollie/WC/Gateway/Abstract.php:244
|
635 |
+
msgid "Return to payments"
|
636 |
+
msgstr "Volver a los pagos"
|
637 |
+
|
638 |
+
#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114
|
639 |
+
msgid "Sell to specific countries"
|
640 |
+
msgstr "Vender a países específicos"
|
641 |
+
|
642 |
+
#: inc/settings/mollie_advanced_settings.php:73
|
643 |
+
msgid "Single Click Payments"
|
644 |
+
msgstr "Pagos con un solo clic"
|
645 |
+
|
646 |
+
#: inc/settings/mollie_advanced_settings.php:68
|
647 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%1$s</code>. Required if WooCommerce Subscriptions is being used! Read more about <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> and how it improves your conversion."
|
648 |
+
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 <code>%1$s</code>. ¡Se necesita al utilizar WooCommerce Subscriptions! Lee más acerca de <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> y cómo mejora tu conversión."
|
649 |
+
|
650 |
+
#: inc/settings/mollie_advanced_settings.php:6
|
651 |
+
msgid "Mollie advanced settings"
|
652 |
+
msgstr "Ajustes avanzados Mollie"
|
653 |
+
|
654 |
+
#: inc/settings/mollie_applepay_settings.php:84
|
655 |
+
msgid "The following options are required to use the Apple Pay Direct Button"
|
656 |
+
msgstr "Se requieren las siguientes opciones para usar el botón directo Apple Pay"
|
657 |
+
|
658 |
+
#: inc/settings/mollie_applepay_settings.php:14
|
659 |
+
msgid "The following options are required to use the Apple Pay gateway"
|
660 |
+
msgstr "Se requieren las siguientes opciones para usar la pasarela Apple Pay"
|
661 |
|
662 |
+
#: inc/settings/mollie_components_enabler.php:8
|
663 |
+
msgid "Use the Mollie Components for this Gateway. Read more about <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> and how it improves your conversion."
|
664 |
+
msgstr "Utiliza los componentes Mollie para esta pasarela. Lee más acerca de <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> y cómo mejora tu conversión."
|
665 |
+
|
666 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:11
|
667 |
+
msgid "The following options are required to use the Apple Pay button"
|
668 |
+
msgstr "Se requieren las siguientes opciones para usar el botón Apple Pay"
|
669 |
+
|
670 |
+
#: inc/settings/mollie_applepay_settings.php:79
|
671 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
672 |
+
msgid "Apple Pay button settings"
|
673 |
+
msgstr "Ajustes botón Apple Pay"
|
674 |
+
|
675 |
+
#: mollie-payments-for-woocommerce.php:91
|
676 |
+
msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s."
|
677 |
+
msgstr "%1$sMollie Payments for WooCommerce: faltan claves de API%2$s Por favor,%3$s ajusta tus claves API aquí%4$s."
|
678 |
+
|
679 |
+
#: src/Mollie/WC/Plugin.php:541
|
680 |
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."
|
681 |
+
msgstr "Para el procesamiento, todos los productos en el pedido necesitan tener una categoría. Para desactivar el producto de la selección de vales, selecciona la opción «Sin categoría»."
|
682 |
|
683 |
+
#: src/Mollie/WC/Plugin.php:524
|
684 |
msgid "Products voucher category"
|
685 |
msgstr "Categoría de vale de productos"
|
686 |
|
687 |
+
#: src/Mollie/WC/Plugin.php:308
|
688 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
689 |
+
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."
|
690 |
|
691 |
+
#: src/Mollie/WC/Helper/Settings.php:654 src/Mollie/WC/Plugin.php:391
|
692 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:11
|
693 |
msgid "Mollie Settings"
|
694 |
msgstr "Estado de Mollie"
|
695 |
|
705 |
|
706 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
707 |
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"
|
708 |
+
msgstr "Para el procesamiento, todos los productos en el pedido necesitan tener una categoría. Este selector asignará la categoría por defecto para los productos de la tienda"
|
709 |
|
710 |
+
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:520
|
711 |
msgid "Select the default products category"
|
712 |
msgstr "Selecciona la categoría de productos por defecto"
|
713 |
|
714 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:40
|
715 |
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"
|
716 |
+
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"
|
717 |
|
718 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:39
|
719 |
+
#: src/Mollie/WC/Helper/Settings.php:245
|
720 |
msgid "Enable expiry date for payments"
|
721 |
msgstr "Activar fecha de caducidad para pagos"
|
722 |
|
723 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:38
|
724 |
+
#: src/Mollie/WC/Helper/Settings.php:244
|
725 |
msgid "Activate expiry date setting"
|
726 |
msgstr "Activar ajuste de la fecha de caducidad"
|
727 |
|
728 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2178
|
729 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
730 |
msgid " Remainder: %1$s %2$s %3$s."
|
731 |
+
msgstr " Recordatorio: %1$s %2$s %3$s."
|
732 |
|
733 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2166
|
734 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
735 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
736 |
+
msgstr "Mollie - Detalles de la tarjeta de regalo: %1$s %2$s %3$s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
|
738 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54
|
739 |
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"
|
740 |
+
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"
|
741 |
|
742 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39
|
743 |
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"
|
744 |
+
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"
|
745 |
|
746 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
747 |
msgid "Show Mastercard Icon"
|
793 |
|
794 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
795 |
msgid "Show customized creditcard icons on checkout page"
|
796 |
+
msgstr "Mostrar iconos de tarjeta de crédito personalizados en la página del proceso de pago"
|
797 |
|
798 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
799 |
msgid "Enable Icons Selector"
|
804 |
msgstr "Personalizar iconos"
|
805 |
|
806 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
807 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2129
|
808 |
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)."
|
809 |
+
msgstr " El pago de %1$s %2$s se ha realizado a través de Mollie (%3$s %4$s). Deberás revisar manualmente el pago (y ajustar las existencias de productos si lo usas)."
|
810 |
|
811 |
+
#: src/Mollie/WC/Gateway/Abstract.php:590
|
812 |
msgid "Failed switching subscriptions, no valid mandate."
|
813 |
+
msgstr "Cambio de suscripciones fallada, ningún mandato válido."
|
|
|
|
|
|
|
|
|
814 |
|
815 |
#: inc/settings/mollie_components_enabler.php:6
|
816 |
msgid "Enable Mollie Components"
|
941 |
msgid "Base Styles"
|
942 |
msgstr "Estilos base"
|
943 |
|
944 |
+
#: src/Mollie/WC/Plugin.php:950
|
945 |
msgid "An unknown error occurred, please check the card fields."
|
946 |
msgstr "Se ha producido un error desconocido, comprueba los campos de la tarjeta."
|
947 |
|
948 |
+
#: src/Mollie/WC/Plugin.php:943
|
949 |
msgid "Verification Code"
|
950 |
msgstr "Código de verificación"
|
951 |
|
952 |
+
#: src/Mollie/WC/Plugin.php:939
|
953 |
msgid "Expiry Date"
|
954 |
msgstr "Fecha de caducidad"
|
955 |
|
956 |
+
#: src/Mollie/WC/Plugin.php:935
|
957 |
msgid "Card Number"
|
958 |
msgstr "Número de tarjeta"
|
959 |
|
960 |
+
#: src/Mollie/WC/Plugin.php:931
|
961 |
msgid "Card Holder"
|
962 |
msgstr "Titular de la tarjeta"
|
963 |
|
964 |
+
#: inc/settings/mollie_components_enabler.php:12
|
965 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
966 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:139
|
967 |
msgid "Mollie Components"
|
968 |
msgstr "Componentes de Mollie"
|
969 |
|
970 |
+
#: src/Mollie/WC/Plugin.php:757
|
971 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
972 |
msgstr "%1$s elementos cancelados en WooCommerce y en Mollie."
|
973 |
|
974 |
+
#: src/Mollie/WC/Plugin.php:739
|
975 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
976 |
msgstr "%1$s elementos reembolsados en WooCommerce y en Mollie."
|
977 |
|
987 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
988 |
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."
|
989 |
|
990 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119
|
991 |
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."
|
992 |
+
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."
|
993 |
|
994 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145
|
996 |
msgid "Order completed using %1$s payment (%2$s)."
|
997 |
msgstr "Pedido completado mediante %1$s pago (%2$s)."
|
998 |
|
1029 |
|
1030 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
1031 |
msgid "Przelewy24"
|
1032 |
+
msgstr "Przelewy24 "
|
1033 |
|
1034 |
+
#: src/Mollie/WC/Helper/Status.php:89
|
1035 |
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."
|
1036 |
+
msgstr "Mollie Payments for WooCommerce requiere la extensión JSON para PHP. Habilítala en tu servidor o pide a tu proveedor de alojamiento web que la habilite por ti."
|
1037 |
|
1038 |
+
#: src/Mollie/WC/Payment/Order.php:836
|
1039 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
1040 |
+
msgstr "Reembolso de %s%s reembolsado en WooCommerce y en Mollie.%s ID del reembolso: %s. "
|
1041 |
|
1042 |
+
#: src/Mollie/WC/Payment/Order.php:758
|
1043 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
1044 |
+
msgstr "%sx %s reembolsado para %s%s en WooCommerce y en Mollie.%s ID del reembolso: %s. "
|
1045 |
|
1046 |
+
#: src/Mollie/WC/Payment/Order.php:742
|
1047 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
1048 |
+
msgstr "%sx %s cancelado para %s%s en WooCommerce y en Mollie. "
|
1049 |
|
1050 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1051 |
+
#: src/Mollie/WC/Payment/Order.php:361
|
1052 |
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!"
|
1053 |
+
msgstr "Pedido completado en Mollie para %s pedido (%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!"
|
1054 |
|
1055 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1238
|
1057 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
1058 |
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)."
|
1059 |
|
|
|
|
|
|
|
|
|
|
|
1060 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
1061 |
msgid "Order"
|
1062 |
msgstr "Pedido"
|
1067 |
msgstr "Pago %s (%s) cancelado."
|
1068 |
|
1069 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1070 |
+
#: src/Mollie/WC/Payment/Order.php:931
|
1071 |
msgid "%s order (%s) expired ."
|
1072 |
msgstr "Pedido %s (%s) caducado."
|
1073 |
|
1074 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1075 |
+
#: src/Mollie/WC/Payment/Order.php:509
|
1076 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
1077 |
+
msgstr "Pedido %s caducado (%s) pero no cancelado a causa de otro pago pendiente (%s)."
|
1078 |
|
1079 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1080 |
+
#: src/Mollie/WC/Payment/Order.php:444
|
1081 |
msgid "%s order (%s) cancelled ."
|
1082 |
+
msgstr "Pedido %s (%s) cancelado."
|
1083 |
|
1084 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1085 |
+
#: src/Mollie/WC/Payment/Order.php:314
|
1086 |
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."
|
1087 |
+
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. "
|
1088 |
|
1089 |
+
#: inc/settings/mollie_advanced_settings.php:57
|
|
|
|
|
|
|
|
|
1090 |
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."
|
1091 |
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."
|
1092 |
|
1093 |
+
#: inc/settings/mollie_advanced_settings.php:26
|
1094 |
msgid "Automatically send WordPress language"
|
1095 |
msgstr "Enviar automáticamente idioma de WordPress"
|
1096 |
|
1097 |
+
#: inc/settings/mollie_advanced_settings.php:18
|
1098 |
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."
|
1099 |
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."
|
1100 |
|
1101 |
+
#: src/Mollie/WC/Helper/OrderLines.php:497
|
1102 |
msgid "Shipping"
|
1103 |
msgstr "Envío"
|
1104 |
|
1117 |
|
1118 |
#: src/Mollie/WC/Helper/Status.php:131
|
1119 |
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
1120 |
+
msgstr "Mollie Payments for WooCommerce requiere que las funciones PHP cURL estén disponibles. Asegúrate de que todas estas funciones estén disponibles. "
|
1121 |
|
1122 |
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
1123 |
#. version
|
1125 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
1126 |
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"
|
1127 |
|
1128 |
+
#: src/Mollie/WC/Helper/Settings.php:825
|
1129 |
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."
|
1130 |
+
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. "
|
1131 |
|
1132 |
+
#: src/Mollie/WC/Helper/Settings.php:801
|
1133 |
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."
|
1134 |
+
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». "
|
1135 |
|
1136 |
+
#: inc/settings/mollie_advanced_settings.php:54
|
1137 |
msgid "Lithuanian"
|
1138 |
msgstr "Lituano"
|
1139 |
|
1140 |
+
#: inc/settings/mollie_advanced_settings.php:53
|
1141 |
msgid "Latvian"
|
1142 |
msgstr "Letón"
|
1143 |
|
1144 |
+
#: inc/settings/mollie_advanced_settings.php:52
|
1145 |
msgid "Polish"
|
1146 |
msgstr "Polaco"
|
1147 |
|
1148 |
+
#: inc/settings/mollie_advanced_settings.php:51
|
1149 |
msgid "Hungarian"
|
1150 |
msgstr "Húngaro"
|
1151 |
|
1152 |
+
#: inc/settings/mollie_advanced_settings.php:50
|
1153 |
msgid "Icelandic"
|
1154 |
msgstr "Islandés"
|
1155 |
|
1156 |
+
#: inc/settings/mollie_advanced_settings.php:49
|
1157 |
msgid "Danish"
|
1158 |
msgstr "Danés"
|
1159 |
|
1160 |
+
#: inc/settings/mollie_advanced_settings.php:48
|
1161 |
msgid "Finnish"
|
1162 |
msgstr "Finlandés"
|
1163 |
|
1164 |
+
#: inc/settings/mollie_advanced_settings.php:47
|
1165 |
msgid "Swedish"
|
1166 |
msgstr "Sueco"
|
1167 |
|
1168 |
+
#: inc/settings/mollie_advanced_settings.php:46
|
1169 |
msgid "Norwegian"
|
1170 |
msgstr "Noruego"
|
1171 |
|
1172 |
+
#: inc/settings/mollie_advanced_settings.php:45
|
1173 |
msgid "Italian"
|
1174 |
msgstr "Italiano"
|
1175 |
|
1176 |
+
#: inc/settings/mollie_advanced_settings.php:44
|
1177 |
msgid "Portuguese"
|
1178 |
msgstr "Portugués"
|
1179 |
|
1180 |
+
#: inc/settings/mollie_advanced_settings.php:43
|
1181 |
msgid "Catalan"
|
1182 |
msgstr "Catalán"
|
1183 |
|
1184 |
+
#: inc/settings/mollie_advanced_settings.php:41
|
1185 |
msgid "Swiss German"
|
1186 |
msgstr "Alemán suizo"
|
1187 |
|
1188 |
+
#: inc/settings/mollie_advanced_settings.php:40
|
1189 |
msgid "Austrian German"
|
1190 |
msgstr "Alemán austriaco"
|
1191 |
|
1192 |
+
#: src/Mollie/WC/Helper/Api.php:42
|
1193 |
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."
|
1194 |
+
msgstr "Clave(s) de API no válida(s. Puedes obtenerlas en la página de desarrolladores en el %spanel de Mollie%s. La(s) clave(s) de API deben empezar con 'live_' o 'test_', tener como mínimo 30 caracteres y no contener ningún carácter especial más."
|
1195 |
|
1196 |
+
#: src/Mollie/WC/Helper/Api.php:40
|
1197 |
msgid "No API key provided. Please set your Mollie API keys below."
|
1198 |
msgstr "No se ha proporcionado ninguna clave de API. Configura tus claves de API de Mollie abajo."
|
1199 |
|
1206 |
msgstr "EPS"
|
1207 |
|
1208 |
#. translators: Placeholder 1: Payment method title
|
1209 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:314
|
1210 |
msgid "Could not create %s renewal payment."
|
1211 |
+
msgstr "No se pudo crear el pago de renovación %s. "
|
1212 |
|
1213 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:271
|
1214 |
msgid "The customer (%s) does not have a valid mandate."
|
1215 |
msgstr "El cliente (%s) no tiene una orden de domiciliación válida."
|
1216 |
|
1217 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:262
|
1218 |
msgid "The customer (%s) could not be used or found. "
|
1219 |
msgstr "No se ha podido utilizar o encontrar el cliente (%s)."
|
1220 |
|
1221 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
1222 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
1223 |
#. placeholder 5: refund ID
|
1224 |
+
#: src/Mollie/WC/Payment/Payment.php:511
|
1225 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
1226 |
msgstr "Reembolsado %s%s%s - Pago: %s, Reembolso: %s"
|
1227 |
|
1228 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1229 |
+
#: src/Mollie/WC/Payment/Object.php:637
|
1230 |
msgid "%s payment failed via Mollie (%s)."
|
1231 |
msgstr "Pago %s fallido vía Mollie (%s)."
|
1232 |
|
1233 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1145
|
1234 |
msgid "New chargeback %s processed! Order note and order status updated."
|
1235 |
msgstr "¡Nueva anulación %s procesada! Nota de pedido y estado de pedido actualizados."
|
1236 |
|
1237 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1009
|
1238 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
1239 |
msgstr "¡Nuevo reembolso %s procesado en el panel de Mollie! Nota de pedido añadida, pero pedido no actualizado."
|
1240 |
|
1241 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
1242 |
#. Mollie currencies
|
1243 |
+
#: src/Mollie/WC/Gateway/Abstract.php:364
|
1244 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
1245 |
+
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"
|
|
|
|
|
|
|
|
|
1246 |
|
1247 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1248 |
+
#: src/Mollie/WC/Payment/Object.php:677
|
|
|
1249 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
1250 |
+
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. "
|
1251 |
|
1252 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1329
|
1253 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1338
|
|
|
|
|
|
|
|
|
|
|
1254 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
1255 |
+
msgstr "Tu pago no se ha procesado correctamente. Por favor, realiza tu pedido con otro método de pago. "
|
1256 |
|
1257 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1258 |
+
#: src/Mollie/WC/Payment/Object.php:603
|
1259 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
1260 |
msgstr "El pago de renovación de %s ha fallado a través de Mollie (%s). Deberás revisar manualmente el pago y ajustar las existencias de productos si los usas."
|
1261 |
|
1265 |
msgstr "Bancontact"
|
1266 |
|
1267 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1268 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1617
|
1269 |
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."
|
1270 |
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."
|
1271 |
|
1272 |
+
#: src/Mollie/WC/Gateway/Abstract.php:589
|
1273 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
1274 |
msgstr "El interruptor de suscripción ha fallado, no hay una orden válida. Realiza un nuevo pedido para cambiar tu suscripción."
|
1275 |
|
|
|
|
|
|
|
|
|
1276 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1277 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1177
|
1278 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
1279 |
msgstr "El pago de renovación de %s se ha realizado a través de Mollie (%s). Deberás revisar manualmente el pago (y ajustar las existencias de productos si lo usas)."
|
1280 |
|
1281 |
+
#: src/Mollie/WC/Gateway/Kbc.php:40
|
1282 |
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."
|
1283 |
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»."
|
1284 |
|
1294 |
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."
|
1295 |
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»."
|
1296 |
|
1297 |
+
#: src/Mollie/WC/Gateway/Ideal.php:35
|
1298 |
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."
|
1299 |
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."
|
1300 |
|
1301 |
+
#: src/Mollie/WC/Gateway/Ideal.php:33
|
1302 |
msgid "Show iDEAL banks dropdown"
|
1303 |
msgstr "Mostrar menú desplegable de bancos iDEAL"
|
1304 |
|
1305 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:39
|
1306 |
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."
|
1307 |
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»."
|
1308 |
|
1314 |
msgid "Show gift cards dropdown"
|
1315 |
msgstr "Mostrar el menú desplegable de tarjetas de regalo"
|
1316 |
|
1317 |
+
#: src/Mollie/WC/Gateway/Abstract.php:578
|
1318 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
1319 |
msgstr "El pedido se ha completado internamente por una orden válida existente en Mollie."
|
1320 |
|
1321 |
+
#: inc/settings/mollie_advanced_settings.php:16
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1322 |
msgid "Cancelled"
|
1323 |
msgstr "Cancelado"
|
1324 |
|
1325 |
+
#: inc/settings/mollie_advanced_settings.php:15
|
1326 |
msgid "Pending"
|
1327 |
msgstr "Pendiente"
|
1328 |
|
1329 |
+
#: inc/settings/mollie_advanced_settings.php:12
|
1330 |
msgid "Order status after cancelled payment"
|
1331 |
msgstr "Estado del pedido después de la cancelación del pago"
|
1332 |
|
1333 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
1334 |
#. placeholder 3: consumer BIC
|
1335 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
1336 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124
|
1337 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
|
|
|
|
1338 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
1339 |
msgstr "Pago completado por <strong>%s</strong> (IBAN (últimos 4 dígitos): %s, BIC: %s)."
|
1340 |
|
1341 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1653
|
1342 |
msgid "Your order has been cancelled."
|
1343 |
msgstr "Tu pedido ha sido cancelado."
|
1344 |
|
1345 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1626
|
1346 |
msgid ", payment pending."
|
1347 |
msgstr ", pago pendiente."
|
1348 |
|
1349 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1590
|
1350 |
msgid "Order cancelled"
|
1351 |
msgstr "Pedido cancelado"
|
1352 |
|
1353 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
1354 |
#. status, placeholder 3: payment ID
|
1355 |
+
#: src/Mollie/WC/Gateway/Abstract.php:895
|
1356 |
msgid "%s payment %s (%s), not processed."
|
1357 |
msgstr "Pago %s %s (%s), no procesado."
|
1358 |
|
1359 |
#. translators: Default gift card dropdown description, displayed above issuer
|
1360 |
#. drop down
|
1361 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:74
|
1362 |
msgid "Select your gift card"
|
1363 |
msgstr "Selecciona tu tarjeta de regalo"
|
1364 |
|
1365 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:58
|
1366 |
msgid "Gift cards"
|
1367 |
msgstr "Tarjetas de regalo"
|
1368 |
|
1371 |
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."
|
1372 |
|
1373 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1374 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:165
|
1375 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
1376 |
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."
|
1377 |
|
1378 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1379 |
+
#: src/Mollie/WC/Payment/Payment.php:406
|
1380 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
1381 |
+
msgstr "Pago %s caducado (%s) pero no cancelado a causa de otro pago pendiente (%s)."
|
1382 |
|
1383 |
+
#: src/subscriptions_status_check_functions.php:186
|
1384 |
msgid "There are still some subscriptions left, use the tool again!"
|
1385 |
msgstr "Todavía quedan algunas suscripciones, ¡usa la herramienta de nuevo!"
|
1386 |
|
1387 |
+
#: src/subscriptions_status_check_functions.php:184
|
1388 |
msgid "No more subscriptions left to process!"
|
1389 |
msgstr "¡No quedan más subscripciones por procesar!"
|
1390 |
|
1391 |
+
#: src/subscriptions_status_check_functions.php:171
|
1392 |
msgid "No subscriptions updated in this batch."
|
1393 |
msgstr "No hay suscripciones actualizadas en este lote."
|
1394 |
|
1395 |
+
#: src/subscriptions_status_check_functions.php:147
|
1396 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
1397 |
msgstr "La suscripción no se ha actualizado porque no había una orden válida en Mollie. Procesado por la herramienta «Estado de suscripciones de Mollie»."
|
1398 |
|
1399 |
+
#: src/subscriptions_status_check_functions.php:133
|
1400 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
1401 |
msgstr "La suscripción se ha actualizado a «Renovación automática» a través de Mollie, el estado se ha cambiado a «Activo». Procesado por la herramienta «Estado de suscripciones de Mollie»."
|
1402 |
|
1412 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
1413 |
msgstr "Controla las suscripciones que están incorrectamente configuradas a «Renovación manual». Primero lee el"
|
1414 |
|
1415 |
+
#: inc/settings/mollie_advanced_settings.php:65
|
1416 |
msgid "Store customer details at Mollie"
|
1417 |
msgstr "Almacenar los detalles del cliente en Mollie"
|
1418 |
|
1419 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1420 |
+
#: src/Mollie/WC/Plugin.php:130
|
1421 |
msgid "%s payment failed (%s)."
|
1422 |
msgstr "Pago %s fallido (%s)."
|
1423 |
|
1424 |
+
#: src/Mollie/WC/Gateway/Kbc.php:59
|
1425 |
msgid "KBC/CBC Payment Button"
|
1426 |
msgstr "Botón de pago KBC/CBC"
|
1427 |
|
1428 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:37 src/Mollie/WC/Gateway/Ideal.php:39
|
1429 |
+
#: src/Mollie/WC/Gateway/Kbc.php:38
|
1430 |
msgid "Issuers empty option"
|
1431 |
msgstr "Entidades emisoras opción vacía"
|
1432 |
|
1433 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:58
|
1434 |
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."
|
1435 |
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."
|
1436 |
|
1437 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:57
|
1438 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
1439 |
+
msgstr "Saltar la pantalla de pago de Mollie cuando la transferencia bancaria está seleccionada"
|
1440 |
|
1441 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:56
|
1442 |
msgid "Skip Mollie payment screen"
|
1443 |
msgstr "Saltar la pantalla de pago de Mollie"
|
1444 |
|
1459 |
msgid "Mollie Payments for WooCommerce"
|
1460 |
msgstr "Mollie Payments for WooCommerce"
|
1461 |
|
1462 |
+
#: src/Mollie/WC/Plugin.php:1320
|
1463 |
msgid "Logs"
|
1464 |
msgstr "Registros"
|
1465 |
|
1481 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
1482 |
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."
|
1483 |
|
1484 |
+
#: src/Mollie/WC/Helper/Settings.php:698
|
1485 |
msgid "Debug Log"
|
1486 |
msgstr "Registro de depuración"
|
1487 |
|
1488 |
+
#: inc/settings/mollie_advanced_settings.php:38
|
1489 |
msgid "French (Belgium)"
|
1490 |
msgstr "Francés (Bélgica)"
|
1491 |
|
1492 |
+
#: inc/settings/mollie_advanced_settings.php:37
|
1493 |
msgid "French"
|
1494 |
msgstr "Francés"
|
1495 |
|
1496 |
+
#: inc/settings/mollie_advanced_settings.php:42
|
1497 |
msgid "Spanish"
|
1498 |
msgstr "Español"
|
1499 |
|
1500 |
+
#: inc/settings/mollie_advanced_settings.php:39
|
1501 |
msgid "German"
|
1502 |
msgstr "Alemán"
|
1503 |
|
1504 |
+
#: inc/settings/mollie_advanced_settings.php:34
|
1505 |
msgid "English"
|
1506 |
msgstr "Inglés"
|
1507 |
|
1508 |
+
#: inc/settings/mollie_advanced_settings.php:36
|
1509 |
msgid "Flemish (Belgium)"
|
1510 |
msgstr "Flamenco (Bélgica)"
|
1511 |
|
1512 |
+
#: inc/settings/mollie_advanced_settings.php:35
|
1513 |
msgid "Dutch"
|
1514 |
msgstr "Neerlandés"
|
1515 |
|
1516 |
+
#: inc/settings/mollie_advanced_settings.php:30
|
1517 |
msgid "Detect using browser language"
|
1518 |
msgstr "Detectar utilizando el idioma del navegador"
|
1519 |
|
1520 |
+
#: inc/settings/mollie_advanced_settings.php:23
|
1521 |
msgid "Payment screen language"
|
1522 |
msgstr "Idioma de la pantalla de pago"
|
1523 |
|
1524 |
+
#: src/Mollie/WC/Helper/Settings.php:694
|
1525 |
msgid "Test API key should start with test_"
|
1526 |
msgstr "La clave de API de prueba debe comenzar con test_"
|
1527 |
|
1528 |
+
#: src/Mollie/WC/Helper/Settings.php:683
|
1529 |
msgid "Test API key"
|
1530 |
msgstr "Clave de API de prueba"
|
1531 |
|
1532 |
+
#: src/Mollie/WC/Helper/Settings.php:679
|
1533 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
1534 |
msgstr "Activa el modo de prueba si deseas probar el plugin sin usar pagos reales."
|
1535 |
|
1536 |
+
#: src/Mollie/WC/Helper/Settings.php:676
|
1537 |
msgid "Enable test mode"
|
1538 |
msgstr "Activar modo de prueba"
|
1539 |
|
1540 |
+
#: src/Mollie/WC/Helper/Settings.php:672
|
1541 |
msgid "Live API key should start with live_"
|
1542 |
msgstr "La clave de API activa debería comenzar con live_"
|
1543 |
|
1544 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
1545 |
#. %s's Will be replaced by a link to the Mollie profile
|
1546 |
+
#: src/Mollie/WC/Helper/Settings.php:666 src/Mollie/WC/Helper/Settings.php:688
|
1547 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
1548 |
msgstr "La clave de API se usa para conectarse a Mollie. Puedes encontrar tu clave de API <strong>%s</strong> en tu %sperfil de Mollie%s"
|
1549 |
|
1550 |
+
#: src/Mollie/WC/Helper/Settings.php:661
|
1551 |
msgid "Live API key"
|
1552 |
msgstr "Clave de API activa"
|
1553 |
|
1554 |
+
#: inc/settings/mollie_advanced_settings.php:8
|
1555 |
+
#: src/Mollie/WC/Helper/Settings.php:657
|
1556 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
1557 |
msgstr "Se requieren las siguientes opciones para usar el plugin y son usadas por todos los métodos de pago en Mollie"
|
1558 |
|
1559 |
+
#: src/Mollie/WC/Plugin.php:1314
|
1560 |
msgid "Mollie settings"
|
1561 |
+
msgstr "Estado de Mollie:"
|
1562 |
|
1563 |
+
#: src/Mollie/WC/Helper/Settings.php:641
|
|
|
1564 |
msgid "Log files are saved to <code>%s</code>"
|
1565 |
msgstr "Los archivos de registro se guardan en <code>%s</code>"
|
1566 |
|
1567 |
+
#: src/Mollie/WC/Helper/Settings.php:635
|
|
|
|
|
|
|
|
|
1568 |
msgid "Log plugin events."
|
1569 |
msgstr "Registro de eventos del plugin."
|
1570 |
|
1571 |
+
#: src/Mollie/WC/Helper/Settings.php:582
|
1572 |
msgid "Edit"
|
1573 |
msgstr "Editar"
|
1574 |
|
1575 |
+
#: src/Mollie/WC/Helper/Settings.php:559
|
1576 |
msgid "Refresh"
|
1577 |
msgstr "Actualizar"
|
1578 |
|
1579 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
1580 |
#. profile
|
1581 |
+
#: src/Mollie/WC/Helper/Settings.php:550
|
1582 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
1583 |
msgstr "Los siguientes métodos de pago están activados en tu %sperfil de Mollie%s:"
|
1584 |
|
1585 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1586 |
msgid "Gateway disabled"
|
1587 |
msgstr "Pasarela desactivada"
|
1588 |
|
1589 |
+
#: inc/settings/mollie_advanced_settings.php:72
|
1590 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1591 |
msgid "Enabled"
|
1592 |
msgstr "Activado"
|
1593 |
|
1594 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1595 |
msgid "Gateway enabled"
|
1596 |
msgstr "Pasarela activada"
|
1597 |
|
1598 |
+
#: src/Mollie/WC/Helper/Settings.php:495
|
1599 |
msgid "Connected"
|
1600 |
msgstr "Conectado"
|
1601 |
|
1602 |
+
#: src/Mollie/WC/Helper/Settings.php:494
|
1603 |
msgid "Mollie status:"
|
1604 |
msgstr "Estado de Mollie:"
|
1605 |
|
1606 |
+
#: src/Mollie/WC/Helper/Settings.php:481
|
1607 |
msgid "Error"
|
1608 |
msgstr "Error"
|
1609 |
|
1610 |
+
#: src/Mollie/WC/Helper/Data.php:477
|
1611 |
msgid "Item #%s stock incremented from %s to %s."
|
1612 |
msgstr "Las existencias del elemento #%s han aumentado de %s a %s."
|
1613 |
|
1621 |
|
1622 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1623 |
#. email, placeholder 3: PayPal transaction ID
|
1624 |
+
#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695
|
1625 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1626 |
msgstr "Pago completado por <strong>%s</strong> - %s (ID de transacción PayPal: %s)"
|
1627 |
|
1628 |
+
#: src/Mollie/WC/Gateway/PayPal.php:43
|
1629 |
msgid "PayPal"
|
1630 |
msgstr "PayPal"
|
1631 |
|
1632 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
1633 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1634 |
#. drop down
|
1635 |
+
#: src/Mollie/WC/Gateway/Ideal.php:76 src/Mollie/WC/Gateway/Kbc.php:75
|
|
|
1636 |
msgid "Select your bank"
|
1637 |
msgstr "Selecciona tu banco"
|
1638 |
|
1639 |
+
#: src/Mollie/WC/Gateway/Ideal.php:60
|
1640 |
msgid "iDEAL"
|
1641 |
msgstr "iDEAL"
|
1642 |
|
1645 |
msgstr "Adeudo directo SEPA"
|
1646 |
|
1647 |
#. translators: Placeholder 1: card holder
|
1648 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:136
|
1649 |
msgid "Payment completed by <strong>%s</strong>"
|
1650 |
msgstr "Pago completado por <strong>%s</strong>"
|
1651 |
|
1652 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:84
|
1653 |
msgid "Credit card"
|
1654 |
msgstr "Tarjeta de crédito"
|
1655 |
|
1657 |
msgid "Belfius Direct Net"
|
1658 |
msgstr "Belfius Direct Net"
|
1659 |
|
1660 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:235
|
1661 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1662 |
msgstr "El pago caducará el <strong>%s</strong>. Por favor, asegúrate de transferir la cantidad total antes de esta fecha."
|
1663 |
|
1664 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:228
|
1665 |
msgid "The payment will expire on <strong>%s</strong>."
|
1666 |
msgstr "El pago caducará el <strong>%s</strong>."
|
1667 |
|
1668 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1669 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1670 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:214
|
1671 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1672 |
msgstr "Por favor, indica la referencia del pago <strong>%s</strong>"
|
1673 |
|
1674 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1675 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1676 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:209
|
1677 |
msgid "Payment reference: %s"
|
1678 |
msgstr "Referencia del pago: %s"
|
1679 |
|
1680 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:204
|
1681 |
msgid "BIC: %s"
|
1682 |
msgstr "BIC: %s"
|
1683 |
|
1684 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:203
|
1685 |
msgid "IBAN: <strong>%s</strong>"
|
1686 |
msgstr "IBAN: <strong>%s</strong>"
|
1687 |
|
1688 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1689 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:202
|
1690 |
msgid "Beneficiary: %s"
|
1691 |
msgstr "Beneficiario: %s"
|
1692 |
|
1693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
1694 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1695 |
msgstr "Por favor, completa tu pago transfiriendo la cantidad total a la siguiente cuenta bancaria:"
|
1696 |
|
1697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:138
|
1698 |
msgid "Bank Transfer"
|
1699 |
msgstr "Transferencia bancaria"
|
1700 |
|
1701 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1702 |
msgid "Disabled"
|
1703 |
msgstr "Desactivado"
|
1704 |
|
1705 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
1706 |
+
msgid "Number of DAYS after the payment will expire. Default <code>%d</code> days"
|
1707 |
+
msgstr "Número de DÍAS después de los cuales el pago caducará. Por defecto <code>%d</code> días"
|
1708 |
|
1709 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:45
|
1710 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
1711 |
msgid "Expiry date"
|
1712 |
msgstr "Fecha de caducidad"
|
1713 |
|
1714 |
#. translators: Placeholder 1: payment method
|
1715 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1542
|
1716 |
msgid "Payment completed with <strong>%s</strong>"
|
1717 |
msgstr "Pago completado con <strong>%s</strong>"
|
1718 |
|
1719 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1535
|
1720 |
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."
|
1721 |
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."
|
1722 |
|
1723 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1530
|
1724 |
msgid "We have not received a definite payment status."
|
1725 |
msgstr "No hemos recibido un estado de pago definitivo."
|
1726 |
|
1727 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1315
|
1728 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1729 |
msgstr "Has cancelado el pago. Por favor, realiza tu pedido con otro método de pago."
|
1730 |
|
1731 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1732 |
+
#: src/Mollie/WC/Payment/Payment.php:429
|
1733 |
msgid "%s payment expired (%s)."
|
1734 |
msgstr "Pago %s caducado (%s)."
|
1735 |
|
1736 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1737 |
+
#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:249
|
1738 |
msgid "Order completed using %s payment (%s)."
|
1739 |
msgstr "Pedido completado usando el pago %s (%s)."
|
1740 |
|
1741 |
#. translators: Placeholder 1: Payment method title
|
1742 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:242
|
1743 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:298
|
1744 |
+
#: src/Mollie/WC/Gateway/Abstract.php:686
|
1745 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78
|
1746 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:122
|
1747 |
msgid "Could not create %s payment."
|
1748 |
msgstr "No se ha podido crear el pago %s."
|
1749 |
|
1750 |
+
#: src/Mollie/WC/Gateway/Abstract.php:671
|
1751 |
+
#: src/Mollie/WC/Gateway/Abstract.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1752 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1753 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1244
|
1754 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1619
|
1755 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2142
|
1756 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1757 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139
|
1758 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:422
|
1759 |
+
#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642
|
1760 |
+
#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316
|
1761 |
+
#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446
|
1762 |
+
#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936
|
1763 |
+
#: src/Mollie/WC/Payment/Payment.php:251 src/Mollie/WC/Payment/Payment.php:338
|
1764 |
+
#: src/Mollie/WC/Payment/Payment.php:408 src/Mollie/WC/Payment/Payment.php:431
|
1765 |
msgid "test mode"
|
1766 |
msgstr "modo de prueba"
|
1767 |
|
1768 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1769 |
+
#: src/Mollie/WC/Gateway/Abstract.php:669
|
1770 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1771 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:420
|
|
|
1772 |
msgid "%s payment started (%s)."
|
1773 |
msgstr "Pago %s iniciado (%s)."
|
1774 |
|
1775 |
+
#: src/Mollie/WC/Gateway/Abstract.php:659
|
1776 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1777 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:413
|
|
|
1778 |
msgid "Awaiting payment confirmation."
|
1779 |
msgstr "A la espera de la confirmación del pago."
|
1780 |
|
1781 |
+
#: src/Mollie/WC/Gateway/Abstract.php:526
|
1782 |
msgid "Could not load order %s"
|
1783 |
msgstr "No se ha podido cargar el pedido %s"
|
1784 |
|
1785 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1786 |
#. be replaced by a link to the Mollie profile
|
1787 |
+
#: src/Mollie/WC/Gateway/Abstract.php:352
|
1788 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1789 |
msgstr "%s no activado en tu perfil de Mollie. Puedes activarlo editando tu %sperfil de Mollie%s."
|
1790 |
|
1791 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1792 |
#. setting page
|
1793 |
+
#: src/Mollie/WC/Gateway/Abstract.php:340
|
1794 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1795 |
msgstr "No se ha proporcionado ninguna clave de API. %sConfigura primero tu clave de API de Mollie.%s"
|
1796 |
|
1797 |
+
#: src/Mollie/WC/Gateway/Abstract.php:221
|
1798 |
msgid "Gateway Disabled"
|
1799 |
msgstr "Pasarela desactivada"
|
1800 |
|
1801 |
+
#: src/Mollie/WC/Gateway/Abstract.php:338 src/Mollie/WC/Helper/Settings.php:545
|
1802 |
msgid "Test mode enabled."
|
1803 |
msgstr "Modo de prueba activado."
|
1804 |
|
1805 |
+
#: src/Mollie/WC/Helper/Settings.php:295
|
1806 |
msgid "Hold Stock (minutes)"
|
1807 |
msgstr "Mantener el stock (en minutos)"
|
1808 |
|
1809 |
+
#: src/Mollie/WC/Helper/Settings.php:286
|
1810 |
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."
|
1811 |
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."
|
1812 |
|
1813 |
+
#: inc/settings/mollie_advanced_settings.php:29
|
1814 |
+
#: inc/settings/mollie_advanced_settings.php:90
|
1815 |
+
#: src/Mollie/WC/Helper/Settings.php:275
|
1816 |
msgid "default"
|
1817 |
msgstr "por defecto"
|
1818 |
|
1819 |
+
#: src/Mollie/WC/Helper/Settings.php:267
|
1820 |
msgid "Initial order status"
|
1821 |
msgstr "Estado inicial del pedido"
|
1822 |
|
1823 |
+
#: inc/settings/mollie_applepay_settings.php:63
|
1824 |
+
#: src/Mollie/WC/Helper/Settings.php:84
|
1825 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1826 |
msgstr "Descripción del método de pago que el cliente verá en tu proceso de pago. Por defecto <code>%s</code>"
|
1827 |
|
1828 |
+
#: inc/settings/mollie_applepay_settings.php:60
|
1829 |
+
#: src/Mollie/WC/Helper/Settings.php:81
|
1830 |
msgid "Description"
|
1831 |
msgstr "Descripción"
|
1832 |
|
1833 |
+
#: src/Mollie/WC/Helper/Settings.php:99
|
1834 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1835 |
msgstr "Mostrar logotipo en la página de pago. Por defecto <code>activado</code>"
|
1836 |
|
1837 |
+
#: inc/settings/mollie_applepay_settings.php:45
|
1838 |
+
#: inc/settings/mollie_applepay_settings.php:48
|
1839 |
+
#: src/Mollie/WC/Helper/Settings.php:94
|
1840 |
msgid "Display logo"
|
1841 |
msgstr "Mostrar logotipo"
|
1842 |
|
1843 |
+
#: inc/settings/mollie_applepay_settings.php:32
|
1844 |
+
#: src/Mollie/WC/Helper/Settings.php:71
|
1845 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1846 |
msgstr "Esto controla el título que el usuario ve durante el pago. Por defecto <code>%s</code>"
|
1847 |
|
1848 |
+
#: inc/settings/mollie_applepay_settings.php:29
|
1849 |
+
#: src/Mollie/WC/Helper/Settings.php:68
|
1850 |
msgid "Title"
|
1851 |
msgstr "Título"
|
1852 |
|
1853 |
+
#. translators: Placeholder 1: enabled or disabled
|
1854 |
+
#: inc/settings/mollie_applepay_settings.php:21
|
1855 |
+
#: src/Mollie/WC/Helper/Settings.php:54
|
1856 |
msgid "Enable %s"
|
1857 |
msgstr "Activar %s"
|
1858 |
|
1859 |
+
#: inc/settings/mollie_applepay_settings.php:19
|
1860 |
+
#: src/Mollie/WC/Helper/Settings.php:48
|
1861 |
msgid "Enable/Disable"
|
1862 |
msgstr "Activar/Desactivar"
|
languages/mollie-payments-for-woocommerce-fr_FR.mo
CHANGED
Binary file
|
languages/mollie-payments-for-woocommerce-fr_FR.po
CHANGED
@@ -1,33 +1,695 @@
|
|
1 |
-
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2021-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=2; plural=n
|
10 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
-
"Language:
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
|
14 |
-
#: src/Mollie/WC/Plugin.php:
|
15 |
-
msgid "
|
16 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
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."
|
20 |
-
msgstr "Afin
|
21 |
|
22 |
-
#: src/Mollie/WC/Plugin.php:
|
23 |
msgid "Products voucher category"
|
24 |
-
msgstr "Catégorie
|
25 |
|
26 |
-
#: src/Mollie/WC/Plugin.php:
|
27 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
28 |
-
msgstr "%1$
|
29 |
|
30 |
-
#: src/Mollie/WC/Plugin.php:
|
|
|
31 |
msgid "Mollie Settings"
|
32 |
msgstr "Réglages Mollie"
|
33 |
|
@@ -43,58 +705,52 @@ msgstr "Bon"
|
|
43 |
|
44 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
45 |
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"
|
46 |
-
msgstr "
|
47 |
|
48 |
-
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:
|
49 |
msgid "Select the default products category"
|
50 |
-
msgstr "
|
51 |
|
52 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
53 |
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"
|
54 |
-
msgstr "Activez cette option si vous
|
55 |
|
56 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
57 |
msgid "Enable expiry date for payments"
|
58 |
-
msgstr "
|
59 |
|
60 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
61 |
msgid "Activate expiry date setting"
|
62 |
-
msgstr "
|
63 |
|
64 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
65 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
66 |
msgid " Remainder: %1$s %2$s %3$s."
|
67 |
-
msgstr "
|
68 |
|
69 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
70 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
71 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
72 |
-
msgstr "Mollie - Détails
|
73 |
-
|
74 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:7
|
75 |
-
msgid "Enable the Apple Pay direct buy button"
|
76 |
-
msgstr "Activer le bouton d'achat direct Apple Pay"
|
77 |
-
|
78 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
79 |
-
msgid "Enable Apple Pay Button"
|
80 |
-
msgstr "Activer la bouton Apple Pay"
|
81 |
|
82 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
83 |
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"
|
84 |
-
msgstr "%1$sErreur de validation Apple Pay%2$s
|
85 |
|
86 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
87 |
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"
|
88 |
-
msgstr "%1$sLe serveur
|
89 |
|
90 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
91 |
msgid "Show Mastercard Icon"
|
92 |
-
msgstr "Afficher l
|
93 |
|
94 |
#: inc/settings/mollie_components.php:94
|
95 |
msgctxt "Mollie Components Settings"
|
96 |
msgid "Transform Text "
|
97 |
-
msgstr "Transformer le texte
|
98 |
|
99 |
#: inc/settings/mollie_components.php:82
|
100 |
msgctxt "Mollie Components Settings"
|
@@ -104,61 +760,57 @@ msgstr "Aligner le texte"
|
|
104 |
#: inc/settings/mollie_components.php:72
|
105 |
msgctxt "Mollie Components Settings"
|
106 |
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
107 |
-
msgstr "
|
108 |
|
109 |
#: inc/settings/mollie_components.php:35
|
110 |
msgctxt "Mollie Components Settings"
|
111 |
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
112 |
-
msgstr "Définit la taille
|
113 |
|
114 |
#: inc/settings/mollie_creditcard_icons_selector.php:51
|
115 |
msgid "Show VPay Icon"
|
116 |
-
msgstr "Afficher l
|
117 |
|
118 |
#: inc/settings/mollie_creditcard_icons_selector.php:46
|
119 |
msgid "Show Visa Icon"
|
120 |
-
msgstr "Afficher l
|
121 |
|
122 |
#: inc/settings/mollie_creditcard_icons_selector.php:36
|
123 |
msgid "Show Maestro Icon"
|
124 |
-
msgstr "Afficher l
|
125 |
|
126 |
#: inc/settings/mollie_creditcard_icons_selector.php:31
|
127 |
msgid "Show Carte Bancaire Icon"
|
128 |
-
msgstr "Afficher l
|
129 |
|
130 |
#: inc/settings/mollie_creditcard_icons_selector.php:26
|
131 |
msgid "Show Carta Si Icon"
|
132 |
-
msgstr "Afficher l
|
133 |
|
134 |
#: inc/settings/mollie_creditcard_icons_selector.php:21
|
135 |
msgid "Show American Express Icon"
|
136 |
-
msgstr "Afficher l
|
137 |
|
138 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
139 |
msgid "Show customized creditcard icons on checkout page"
|
140 |
-
msgstr "Afficher les icônes
|
141 |
|
142 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
143 |
msgid "Enable Icons Selector"
|
144 |
-
msgstr "Activer le sélecteur d
|
145 |
|
146 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
147 |
msgid "Customize Icons"
|
148 |
-
msgstr "
|
149 |
|
150 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
151 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
152 |
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)."
|
153 |
-
msgstr "%1$s paiement %2$s via Mollie (%3$s %4$s). Vous devrez examiner manuellement le paiement
|
154 |
|
155 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
156 |
msgid "Failed switching subscriptions, no valid mandate."
|
157 |
-
msgstr "
|
158 |
-
|
159 |
-
#: inc/settings/mollie_components_enabler.php:7
|
160 |
-
msgid "Enable the Mollie Components for this Gateway"
|
161 |
-
msgstr "Activer les composants Mollie pour cette passerelle"
|
162 |
|
163 |
#: inc/settings/mollie_components_enabler.php:6
|
164 |
msgid "Enable Mollie Components"
|
@@ -252,7 +904,7 @@ msgstr "Gras"
|
|
252 |
#: inc/settings/mollie_components.php:49
|
253 |
msgctxt "Mollie Components Settings"
|
254 |
msgid "Regular"
|
255 |
-
msgstr "
|
256 |
|
257 |
#: inc/settings/mollie_components.php:48
|
258 |
msgctxt "Mollie Components Settings"
|
@@ -289,35 +941,37 @@ msgctxt "Mollie Components Settings"
|
|
289 |
msgid "Base Styles"
|
290 |
msgstr "Styles de base"
|
291 |
|
292 |
-
#: src/Mollie/WC/Plugin.php:
|
293 |
msgid "An unknown error occurred, please check the card fields."
|
294 |
msgstr "Une erreur inconnue est survenue, veillez vérifier les champs de la carte."
|
295 |
|
296 |
-
#: src/Mollie/WC/Plugin.php:
|
297 |
msgid "Verification Code"
|
298 |
msgstr "Code de sécurité"
|
299 |
|
300 |
-
#: src/Mollie/WC/Plugin.php:
|
301 |
msgid "Expiry Date"
|
302 |
msgstr "Date d'expiration"
|
303 |
|
304 |
-
#: src/Mollie/WC/Plugin.php:
|
305 |
msgid "Card Number"
|
306 |
msgstr "Numéro de la carte"
|
307 |
|
308 |
-
#: src/Mollie/WC/Plugin.php:
|
309 |
msgid "Card Holder"
|
310 |
msgstr "Détenteur de la carte"
|
311 |
|
|
|
312 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
|
|
313 |
msgid "Mollie Components"
|
314 |
msgstr "Composants Mollie"
|
315 |
|
316 |
-
#: src/Mollie/WC/Plugin.php:
|
317 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
318 |
msgstr "%1$s articles annulés dans WooCommerce et sur Mollie."
|
319 |
|
320 |
-
#: src/Mollie/WC/Plugin.php:
|
321 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
322 |
msgstr "%1$s articles remboursés dans WooCommerce et sur Mollie."
|
323 |
|
@@ -333,12 +987,12 @@ msgstr "Impossible de retrouver l'ID d'élément de commande correspondant à l'
|
|
333 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
334 |
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."
|
335 |
|
336 |
-
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:
|
337 |
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."
|
338 |
-
msgstr "Mollie n'autorise pas le remboursement partiel du montant ou de la quantité totale d'au moins une ligne de commande.
|
339 |
|
340 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
341 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:
|
342 |
msgid "Order completed using %1$s payment (%2$s)."
|
343 |
msgstr "Commande terminée avec le paiement %1$s (%2$s)."
|
344 |
|
@@ -375,39 +1029,34 @@ msgstr "Afin d’accepter les paiements via Przelewy24, un e-mail client est né
|
|
375 |
|
376 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
377 |
msgid "Przelewy24"
|
378 |
-
msgstr "Przelewy24"
|
379 |
|
380 |
-
#:
|
381 |
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."
|
382 |
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."
|
383 |
|
384 |
-
#: src/Mollie/WC/Payment/Order.php:
|
385 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
386 |
-
msgstr "Montant remboursé de %s%s remboursé dans WooCommerce et sur Mollie. ID remboursement%s : %s."
|
387 |
|
388 |
-
#: src/Mollie/WC/Payment/Order.php:
|
389 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
390 |
-
msgstr "%sx %s remboursé pour %s%s dans WooCommerce et sur Mollie. ID remboursement%s : %s."
|
391 |
|
392 |
-
#: src/Mollie/WC/Payment/Order.php:
|
393 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
394 |
-
msgstr "%sx %s annulé pour %s%s dans WooCommerce et sur Mollie."
|
395 |
|
396 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
397 |
-
#: src/Mollie/WC/Payment/Order.php:
|
398 |
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!"
|
399 |
msgstr "Commande terminée sur Mollie pour commande %s (%s). Une ligne de commande au moins est terminée. Rappel : l'état « Terminé » pour une commande sur Mollie n'est pas identique à l'état « Terminé » dans WooCommerce !"
|
400 |
|
401 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
402 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
403 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
404 |
msgstr "Paiements %s remboursés 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)."
|
405 |
|
406 |
-
#: src/Mollie/WC/Helper/Settings.php:623
|
407 |
-
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
408 |
-
msgstr "Pour accepter les paiements Klarna via Mollie, tous les champs de paiement par défaut de WooCommerce doivent être activés et obligatoires. Veuillez vous assurer que c'est le cas."
|
409 |
-
|
410 |
-
#: src/Mollie/WC/Payment/Payment.php:39
|
411 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
412 |
msgid "Order"
|
413 |
msgstr "Commande"
|
@@ -418,42 +1067,38 @@ msgid "%s payment (%s) cancelled ."
|
|
418 |
msgstr "Paiement %s (%s) annulé."
|
419 |
|
420 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
421 |
-
#: src/Mollie/WC/Payment/Order.php:
|
422 |
msgid "%s order (%s) expired ."
|
423 |
-
msgstr "Commande %s (%s) expirée.
|
424 |
|
425 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
426 |
-
#: src/Mollie/WC/Payment/Order.php:
|
427 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
428 |
-
msgstr "
|
429 |
|
430 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
431 |
-
#: src/Mollie/WC/Payment/Order.php:
|
432 |
msgid "%s order (%s) cancelled ."
|
433 |
msgstr "Commande %s (%s) annulée."
|
434 |
|
435 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
436 |
-
#: src/Mollie/WC/Payment/Order.php:
|
437 |
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."
|
438 |
-
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 cela dans les 28 jours, sinon la commande expirera. Pour traiter des lignes de commande individuelles, traitez la commande via le tableau de bord Mollie."
|
439 |
-
|
440 |
-
#: src/Mollie/WC/Helper/Settings.php:648
|
441 |
-
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
442 |
-
msgstr "Pour accepter les paiements Klarna via Mollie, vous devez utiliser WooCommerce 3.0 ou une version supérieure. Actuellement, vous utilisez la version %s."
|
443 |
|
444 |
-
#:
|
445 |
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."
|
446 |
-
msgstr "L'envoi d'une préférence de
|
447 |
|
448 |
-
#:
|
449 |
msgid "Automatically send WordPress language"
|
450 |
msgstr "Envoyer langage WordPress automatiquement"
|
451 |
|
452 |
-
#:
|
453 |
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."
|
454 |
msgstr "État des commandes lorsqu'un paiement (et non une commande Mollie via l'API Commandes) est annulé. Par défaut : en attente. Les commandes avec l'état « 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. Ceci ne s'applique pas aux paiements pour les commandes via la nouvelle API Orders et les paiements Klarna."
|
455 |
|
456 |
-
#: src/Mollie/WC/Helper/OrderLines.php:
|
457 |
msgid "Shipping"
|
458 |
msgstr "Expédier"
|
459 |
|
@@ -468,89 +1113,89 @@ msgstr "Pour accepter les paiements via Klarna, tous les champs de paiement par
|
|
468 |
|
469 |
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
470 |
msgid "Klarna Pay later"
|
471 |
-
msgstr "
|
472 |
|
473 |
#: src/Mollie/WC/Helper/Status.php:131
|
474 |
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
475 |
-
msgstr "Afin d'utiliser Mollie
|
476 |
|
477 |
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
478 |
#. version
|
479 |
#: src/Mollie/WC/Helper/Status.php:104
|
480 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
481 |
-
msgstr "Afin d'utiliser Mollie
|
482 |
|
483 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
484 |
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."
|
485 |
-
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."
|
486 |
|
487 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
488 |
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."
|
489 |
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. "
|
490 |
|
491 |
-
#:
|
492 |
msgid "Lithuanian"
|
493 |
msgstr "Lituanien"
|
494 |
|
495 |
-
#:
|
496 |
msgid "Latvian"
|
497 |
msgstr "Letton"
|
498 |
|
499 |
-
#:
|
500 |
msgid "Polish"
|
501 |
msgstr "Polonais"
|
502 |
|
503 |
-
#:
|
504 |
msgid "Hungarian"
|
505 |
msgstr "Hongrois"
|
506 |
|
507 |
-
#:
|
508 |
msgid "Icelandic"
|
509 |
msgstr "Islandais"
|
510 |
|
511 |
-
#:
|
512 |
msgid "Danish"
|
513 |
msgstr "Danois"
|
514 |
|
515 |
-
#:
|
516 |
msgid "Finnish"
|
517 |
msgstr "Finlandais"
|
518 |
|
519 |
-
#:
|
520 |
msgid "Swedish"
|
521 |
msgstr "Suédois"
|
522 |
|
523 |
-
#:
|
524 |
msgid "Norwegian"
|
525 |
msgstr "Norvégien"
|
526 |
|
527 |
-
#:
|
528 |
msgid "Italian"
|
529 |
msgstr "Italien"
|
530 |
|
531 |
-
#:
|
532 |
msgid "Portuguese"
|
533 |
msgstr "Portugais"
|
534 |
|
535 |
-
#:
|
536 |
msgid "Catalan"
|
537 |
msgstr "Catalan"
|
538 |
|
539 |
-
#:
|
540 |
msgid "Swiss German"
|
541 |
msgstr "Suisse allemand"
|
542 |
|
543 |
-
#:
|
544 |
msgid "Austrian German"
|
545 |
msgstr "Autrichien allemand"
|
546 |
|
547 |
-
#: src/Mollie/WC/Helper/Api.php:
|
548 |
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."
|
549 |
-
msgstr "Clé(s) API non valide(s). Obtenez
|
550 |
|
551 |
-
#: src/Mollie/WC/Helper/Api.php:
|
552 |
msgid "No API key provided. Please set your Mollie API keys below."
|
553 |
-
msgstr "Aucune clé API n'a été fournie. Veuillez
|
554 |
|
555 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
556 |
msgid "Giropay"
|
@@ -561,66 +1206,56 @@ msgid "EPS"
|
|
561 |
msgstr "EPS"
|
562 |
|
563 |
#. translators: Placeholder 1: Payment method title
|
564 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
565 |
msgid "Could not create %s renewal payment."
|
566 |
-
msgstr "Impossible de créer un paiement de renouvellement %s."
|
567 |
|
568 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
569 |
msgid "The customer (%s) does not have a valid mandate."
|
570 |
-
msgstr "Le client (%s) ne possède pas de mandat valide.
|
571 |
|
572 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
573 |
msgid "The customer (%s) could not be used or found. "
|
574 |
-
msgstr "Le client (%s) n’a pas pu être utilisé ou trouvé.
|
575 |
|
576 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
577 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
578 |
#. placeholder 5: refund ID
|
579 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
580 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
581 |
-
msgstr "Remboursé %s%s%s - Paiement : %s, Remboursement : %s.
|
582 |
|
583 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
584 |
-
#: src/Mollie/WC/Payment/
|
585 |
msgid "%s payment failed via Mollie (%s)."
|
586 |
msgstr "Le paiement %s a échoué via Mollie (%s)."
|
587 |
|
588 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
589 |
msgid "New chargeback %s processed! Order note and order status updated."
|
590 |
-
msgstr "Nouveau remboursement %s effectué ! Note et état de la commande mis à jour.
|
591 |
|
592 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
593 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
594 |
-
msgstr "Nouveau remboursement %s effectué dans Mollie Dashboard ! Note de commande ajoutée, mais commande non mise à jour.
|
595 |
|
596 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
597 |
#. Mollie currencies
|
598 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
599 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
600 |
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."
|
601 |
|
602 |
-
#: mollie-payments-for-woocommerce.php:138
|
603 |
-
msgid "Mollie Payments for WooCommerce 4.0 requires PHP 5.6 or higher. Your PHP version is outdated. Upgrade your PHP version and view %sthis FAQ%s."
|
604 |
-
msgstr "Mollie payments pour WooCommerce 4.0 nécessite PHP 5.6 ou supérieur. Votre version PHP est obsolète. Mettez à niveau votre version PHP et consultez %sdans les FAQ%s. "
|
605 |
-
|
606 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
607 |
-
#: src/Mollie/WC/Payment/
|
608 |
-
#: src/Mollie/WC/Payment/Payment.php:328 src/Mollie/WC/Payment/Payment.php:491
|
609 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
610 |
msgstr "Mollie webhook appelé, mais le paiement a également commencé via %s, le statut de la commande n'a pas pu être mis à jour. "
|
611 |
|
612 |
-
|
613 |
-
#: src/Mollie/WC/
|
614 |
-
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
615 |
-
msgstr "Est-ce que Mollie doit conserver le nom et l'adresse électronique du client pour les paiements par simple clic ? Par défaut <code>%s</code>. Obligatoire si les abonnements WooCommerce sont utilisés ! "
|
616 |
-
|
617 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1270
|
618 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1281
|
619 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
620 |
msgstr "Votre paiement n'a pas abouti. Merci de compléter votre commande avec un autre moyen de paiement. "
|
621 |
|
622 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
623 |
-
#: src/Mollie/WC/Payment/
|
624 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
625 |
msgstr "Le paiement %s du renouvellement a échoué via Mollie (%s). Vous devrez examiner manuellement le paiement et ajuster les stocks de produits si vous les utilisez."
|
626 |
|
@@ -630,24 +1265,20 @@ msgid "Bancontact"
|
|
630 |
msgstr "Bancontact"
|
631 |
|
632 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
633 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
634 |
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."
|
635 |
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."
|
636 |
|
637 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
638 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
639 |
msgstr "La modification d'abonnement a échoué, aucun mandat valide n'a été trouvé. Passez une commande entièrement nouvelle pour modifier votre abonnement."
|
640 |
|
641 |
-
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
642 |
-
msgid "ING Home'Pay"
|
643 |
-
msgstr "ING Home'Pay"
|
644 |
-
|
645 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
646 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
647 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
648 |
msgstr "Remboursement du paiement %s via Mollie (%s). Vous devrez examiner manuellement le paiement et ajuster les stocks de produits si vous les utilisez."
|
649 |
|
650 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
651 |
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."
|
652 |
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é. Uniquement si le menu déroulant « Afficher les banques KBC/CBC » ci-dessus est activé."
|
653 |
|
@@ -663,15 +1294,15 @@ msgstr "Afficher le menu déroulant des banques KBC/CBC"
|
|
663 |
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."
|
664 |
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é. Uniquement si le menu déroulant « Afficher les banques iDEAL » ci-dessus est activé."
|
665 |
|
666 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
667 |
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."
|
668 |
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."
|
669 |
|
670 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
671 |
msgid "Show iDEAL banks dropdown"
|
672 |
msgstr "Afficher le menu déroulant des banques iDEAL"
|
673 |
|
674 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
675 |
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."
|
676 |
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é."
|
677 |
|
@@ -683,63 +1314,55 @@ msgstr "Si vous désactivez cette option, un menu déroulant avec différentes c
|
|
683 |
msgid "Show gift cards dropdown"
|
684 |
msgstr "Afficher le menu déroulant Cartes-cadeaux"
|
685 |
|
686 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
687 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
688 |
msgstr "Commande complétée en interne en raison d'un mandat valide existant chez Mollie."
|
689 |
|
690 |
-
#:
|
691 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s This version requires WooCommerce 2.2 or newer. Please %3$supdate WooCommerce to version 2.2 or newer »%4$s"
|
692 |
-
msgstr "%1$sMollie Payments pour WooCommerce est inactif.%2$s Cette version nécessite WooCommerce 2.2 ou plus récent. S'il vous plaît %3$smettre à jour WooCommerce à la version 2.2 ou plus récent »%4$s"
|
693 |
-
|
694 |
-
#: mollie-payments-for-woocommerce.php:164
|
695 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for it to work. Please %5$sinstall & activate WooCommerce »%6$s"
|
696 |
-
msgstr "%1$sMollie Payments pour WooCommerce est inactif.%2$s Le %3$splugin WooCommerce%4$s doit être actif pour qu'il fonctionne. S'il vous plaît %5$sinstaller & activer WooCommerce »%6$s"
|
697 |
-
|
698 |
-
#: src/Mollie/WC/Helper/Settings.php:414
|
699 |
msgid "Cancelled"
|
700 |
msgstr "Annulé"
|
701 |
|
702 |
-
#:
|
703 |
msgid "Pending"
|
704 |
msgstr "En attente"
|
705 |
|
706 |
-
#:
|
707 |
msgid "Order status after cancelled payment"
|
708 |
msgstr "État de commande après annulation de paiement"
|
709 |
|
710 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
711 |
#. placeholder 3: consumer BIC
|
|
|
|
|
712 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
713 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:185
|
714 |
-
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:121
|
715 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
716 |
msgstr "Paiement complété par <strong>%s</strong> (IBAN (4 derniers chiffres) : %s, BIC : %s)"
|
717 |
|
718 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
719 |
msgid "Your order has been cancelled."
|
720 |
msgstr "Votre commande a été annulée."
|
721 |
|
722 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
723 |
msgid ", payment pending."
|
724 |
msgstr "Paiement en attente."
|
725 |
|
726 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
727 |
msgid "Order cancelled"
|
728 |
msgstr "Commande annulée"
|
729 |
|
730 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
731 |
#. status, placeholder 3: payment ID
|
732 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
733 |
msgid "%s payment %s (%s), not processed."
|
734 |
msgstr "Paiement %s %s (%s), non traité."
|
735 |
|
736 |
#. translators: Default gift card dropdown description, displayed above issuer
|
737 |
#. drop down
|
738 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
739 |
msgid "Select your gift card"
|
740 |
msgstr "Sélectionner votre carte cadeau"
|
741 |
|
742 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
743 |
msgid "Gift cards"
|
744 |
msgstr "Cartes cadeaux"
|
745 |
|
@@ -748,32 +1371,32 @@ msgid "SEPA Direct Debit is used for recurring payments with WooCommerce Subscri
|
|
748 |
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."
|
749 |
|
750 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
751 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
752 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
753 |
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."
|
754 |
|
755 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
756 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
757 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
758 |
-
msgstr "
|
759 |
|
760 |
-
#: src/subscriptions_status_check_functions.php:
|
761 |
msgid "There are still some subscriptions left, use the tool again!"
|
762 |
msgstr "Il reste encore des abonnements, utilisez à nouveau l'outil !"
|
763 |
|
764 |
-
#: src/subscriptions_status_check_functions.php:
|
765 |
msgid "No more subscriptions left to process!"
|
766 |
msgstr "Plus d'abonnements à traiter !"
|
767 |
|
768 |
-
#: src/subscriptions_status_check_functions.php:
|
769 |
msgid "No subscriptions updated in this batch."
|
770 |
msgstr "Aucun abonnement mis à jour dans ce lot."
|
771 |
|
772 |
-
#: src/subscriptions_status_check_functions.php:
|
773 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
774 |
msgstr "Abonnement non mis à jour car il n'y avait pas de mandat valide chez Mollie. Traitée par l'outil « État des abonnements Mollie »."
|
775 |
|
776 |
-
#: src/subscriptions_status_check_functions.php:
|
777 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
778 |
msgstr "Abonnement mis à jour à Renouvellement automatisé via Mollie, état activé. Traité par l'outil « État des abonnements Mollie »."
|
779 |
|
@@ -789,33 +1412,33 @@ msgstr "État des abonnements Mollie"
|
|
789 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
790 |
msgstr "Vérification des abonnements dont la valeur « Renouvellement manuel » est incorrecte. Lisez d'abord le"
|
791 |
|
792 |
-
#:
|
793 |
msgid "Store customer details at Mollie"
|
794 |
msgstr "Enregistrer les détails du client chez Mollie"
|
795 |
|
796 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
797 |
-
#: src/Mollie/WC/Plugin.php:
|
798 |
msgid "%s payment failed (%s)."
|
799 |
msgstr "Le paiement %s a échoué (%s)."
|
800 |
|
801 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
802 |
msgid "KBC/CBC Payment Button"
|
803 |
msgstr "Bouton de paiement KBC/CBC"
|
804 |
|
805 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
806 |
-
#: src/Mollie/WC/Gateway/
|
807 |
msgid "Issuers empty option"
|
808 |
msgstr "Émetteurs option vide"
|
809 |
|
810 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
811 |
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."
|
812 |
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."
|
813 |
|
814 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
815 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
816 |
msgstr "Sauter l'écran de paiement Mollie lorsque le virement bancaire est sélectionné"
|
817 |
|
818 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
819 |
msgid "Skip Mollie payment screen"
|
820 |
msgstr "Sauter l'écran de paiement Mollie"
|
821 |
|
@@ -836,7 +1459,7 @@ msgstr "Mollie"
|
|
836 |
msgid "Mollie Payments for WooCommerce"
|
837 |
msgstr "Mollie Payments pour WooCommerce"
|
838 |
|
839 |
-
#: src/Mollie/WC/Plugin.php:
|
840 |
msgid "Logs"
|
841 |
msgstr "Journaux"
|
842 |
|
@@ -858,137 +1481,133 @@ msgstr "Mollie client API n'est pas installé. Veuillez vous assurer que le plug
|
|
858 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
859 |
msgstr "Le plugin %s nécessite au moins la version WooCommerce %s, vous utilisez la version %s Veuillez mettre à jour votre plugin WooCommerce."
|
860 |
|
861 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
862 |
msgid "Debug Log"
|
863 |
msgstr "Journal de débogage"
|
864 |
|
865 |
-
#:
|
866 |
msgid "French (Belgium)"
|
867 |
-
msgstr "Français (Belgique)
|
868 |
|
869 |
-
#:
|
870 |
msgid "French"
|
871 |
msgstr "Français"
|
872 |
|
873 |
-
#:
|
874 |
msgid "Spanish"
|
875 |
-
msgstr "Espagnol
|
876 |
|
877 |
-
#:
|
878 |
msgid "German"
|
879 |
msgstr "Suisse allemand"
|
880 |
|
881 |
-
#:
|
882 |
msgid "English"
|
883 |
msgstr "Anglais"
|
884 |
|
885 |
-
#:
|
886 |
msgid "Flemish (Belgium)"
|
887 |
msgstr "Français (Belgique)"
|
888 |
|
889 |
-
#:
|
890 |
msgid "Dutch"
|
891 |
msgstr "Néerlandais"
|
892 |
|
893 |
-
#:
|
894 |
msgid "Detect using browser language"
|
895 |
msgstr "Détecter utilisant la langue du navigateur"
|
896 |
|
897 |
-
#:
|
898 |
msgid "Payment screen language"
|
899 |
msgstr "Langue de l'écran paiement"
|
900 |
|
901 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
902 |
msgid "Test API key should start with test_"
|
903 |
msgstr "La clé Test API devrait commencer par test_"
|
904 |
|
905 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
906 |
msgid "Test API key"
|
907 |
msgstr "Clé Test API"
|
908 |
|
909 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
910 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
911 |
msgstr "Activer le mode test si vous souhaitez tester le plugin sans utiliser les paiements réels."
|
912 |
|
913 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
914 |
msgid "Enable test mode"
|
915 |
msgstr "Activer le mode test"
|
916 |
|
917 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
918 |
msgid "Live API key should start with live_"
|
919 |
msgstr "La clé Live API devrait commencer par live_"
|
920 |
|
921 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
922 |
#. %s's Will be replaced by a link to the Mollie profile
|
923 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
924 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
925 |
msgstr "La clé API est utilisée pour se connecter à Mollie. Vous pouvez trouver votre clé <strong>%s</strong> API dans votre %sprofil Mollie%s"
|
926 |
|
927 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
928 |
msgid "Live API key"
|
929 |
msgstr "Clé Live API"
|
930 |
|
931 |
-
#:
|
|
|
932 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
933 |
msgstr "Les options suivantes sont requises pour utiliser l'extension et sont utilisées par toutes les méthodes paiement de Mollie."
|
934 |
|
935 |
-
#: src/Mollie/WC/
|
936 |
msgid "Mollie settings"
|
937 |
msgstr "Réglages Mollie"
|
938 |
|
939 |
-
|
940 |
-
#: src/Mollie/WC/Helper/Settings.php:351
|
941 |
msgid "Log files are saved to <code>%s</code>"
|
942 |
msgstr "Les fichiers journaux sont enregistrés dans <code>%s</code>"
|
943 |
|
944 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
945 |
-
msgid "View logs"
|
946 |
-
msgstr "Voir les journaux"
|
947 |
-
|
948 |
-
#: src/Mollie/WC/Helper/Settings.php:340
|
949 |
msgid "Log plugin events."
|
950 |
msgstr "Journal extension événements."
|
951 |
|
952 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
953 |
msgid "Edit"
|
954 |
msgstr "Éditer"
|
955 |
|
956 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
957 |
msgid "Refresh"
|
958 |
msgstr "Actualiser"
|
959 |
|
960 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
961 |
#. profile
|
962 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
963 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
964 |
msgstr "Les méthodes de paiement suivantes sont activées dans votre profil Mollie %s%s:"
|
965 |
|
966 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
967 |
msgid "Gateway disabled"
|
968 |
msgstr "Passerelle désactivée"
|
969 |
|
970 |
-
|
971 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
972 |
msgid "Enabled"
|
973 |
msgstr "Activé"
|
974 |
|
975 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
976 |
msgid "Gateway enabled"
|
977 |
msgstr "Passerelle désactivée"
|
978 |
|
979 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
980 |
msgid "Connected"
|
981 |
msgstr "Connecté"
|
982 |
|
983 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
984 |
msgid "Mollie status:"
|
985 |
msgstr "État Mollie :"
|
986 |
|
987 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
988 |
msgid "Error"
|
989 |
msgstr "Erreur"
|
990 |
|
991 |
-
#: src/Mollie/WC/Helper/Data.php:
|
992 |
msgid "Item #%s stock incremented from %s to %s."
|
993 |
msgstr "Item #%s stock incrémenté de %s à %s."
|
994 |
|
@@ -1002,22 +1621,22 @@ msgstr "paysafecard"
|
|
1002 |
|
1003 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1004 |
#. email, placeholder 3: PayPal transaction ID
|
1005 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1006 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1007 |
msgstr "Paiement effectué par <strong>%s</strong> - %s (ID transaction PayPal : %s)"
|
1008 |
|
1009 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1010 |
msgid "PayPal"
|
1011 |
msgstr "PayPal"
|
1012 |
|
|
|
1013 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1014 |
#. drop down
|
1015 |
-
|
1016 |
-
#: src/Mollie/WC/Gateway/Kbc.php:77 src/Mollie/WC/Gateway/Ideal.php:77
|
1017 |
msgid "Select your bank"
|
1018 |
msgstr "Sélectionnez votre banque"
|
1019 |
|
1020 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
1021 |
msgid "iDEAL"
|
1022 |
msgstr "iDEAL"
|
1023 |
|
@@ -1026,11 +1645,11 @@ msgid "SEPA Direct Debit"
|
|
1026 |
msgstr "Prélevement SEPA"
|
1027 |
|
1028 |
#. translators: Placeholder 1: card holder
|
1029 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1030 |
msgid "Payment completed by <strong>%s</strong>"
|
1031 |
msgstr "Paiement effectué par <strong>%s</strong>"
|
1032 |
|
1033 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1034 |
msgid "Credit card"
|
1035 |
msgstr "Carte de crédit"
|
1036 |
|
@@ -1038,193 +1657,206 @@ msgstr "Carte de crédit"
|
|
1038 |
msgid "Belfius Direct Net"
|
1039 |
msgstr "Belfius Direct Net"
|
1040 |
|
1041 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1042 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1043 |
msgstr "Le paiement expirera le <strong>%s</strong>. Veuillez vous assurez que vous transférez le montant total avant cette date."
|
1044 |
|
1045 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1046 |
msgid "The payment will expire on <strong>%s</strong>."
|
1047 |
msgstr "Le paiement expirera le <strong>%s</strong>."
|
1048 |
|
1049 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1050 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1051 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1052 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1053 |
msgstr "S'il vous plaît fournir la référence de paiement <strong>%s</strong>"
|
1054 |
|
1055 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1056 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1057 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1058 |
msgid "Payment reference: %s"
|
1059 |
msgstr "Référence de paiement : %s"
|
1060 |
|
1061 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1062 |
msgid "BIC: %s"
|
1063 |
msgstr "BIC : %s"
|
1064 |
|
1065 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1066 |
msgid "IBAN: <strong>%s</strong>"
|
1067 |
msgstr "IBAN : <strong>%s</strong>"
|
1068 |
|
1069 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1070 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1071 |
msgid "Beneficiary: %s"
|
1072 |
msgstr "Bénéficiaire : %s"
|
1073 |
|
1074 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1075 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1076 |
msgstr "Veuillez terminer votre paiement en transférant le montant total sur le compte bancaire suivant :"
|
1077 |
|
1078 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1079 |
msgid "Bank Transfer"
|
1080 |
msgstr "Transfert Bancaire"
|
1081 |
|
1082 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
1083 |
msgid "Disabled"
|
1084 |
msgstr "Désactivé"
|
1085 |
|
1086 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1087 |
-
msgid "Number of
|
1088 |
msgstr "Nombre de jours après lequel le paiement expirera. Par défaut <code>%d</code> jours"
|
1089 |
|
1090 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
1091 |
msgid "Expiry date"
|
1092 |
msgstr "Date d'expiration"
|
1093 |
|
1094 |
#. translators: Placeholder 1: payment method
|
1095 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1096 |
msgid "Payment completed with <strong>%s</strong>"
|
1097 |
msgstr "Paiement complété par <strong>%s</strong>"
|
1098 |
|
1099 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1100 |
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."
|
1101 |
msgstr "Nous n'avons pas reçu un statut de paiement définitif. Vous recevrez un email dès que nous recevrons une confirmation de la banque/vendeur."
|
1102 |
|
1103 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1104 |
msgid "We have not received a definite payment status."
|
1105 |
msgstr "Nous n'avons pas reçu un état de paiement définitif."
|
1106 |
|
1107 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1108 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1109 |
msgstr "Vous avez annulé votre paiement. Veuillez compléter votre commande avec une autre méthode de paiement."
|
1110 |
|
1111 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1112 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
1113 |
msgid "%s payment expired (%s)."
|
1114 |
msgstr "Paiement %s expiré (%s)."
|
1115 |
|
1116 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1117 |
-
#: src/Mollie/WC/Payment/Order.php:
|
1118 |
msgid "Order completed using %s payment (%s)."
|
1119 |
msgstr "Commande terminée avec le paiement %s (%s)."
|
1120 |
|
1121 |
#. translators: Placeholder 1: Payment method title
|
1122 |
-
#: src/Mollie/WC/
|
1123 |
-
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:
|
1124 |
-
#: src/Mollie/WC/
|
|
|
|
|
1125 |
msgid "Could not create %s payment."
|
1126 |
msgstr "Impossible de créer un paiement %s."
|
1127 |
|
1128 |
-
#: src/Mollie/WC/
|
1129 |
-
#: src/Mollie/WC/
|
1130 |
-
#: src/Mollie/WC/Payment/Order.php:607 src/Mollie/WC/Payment/Order.php:631
|
1131 |
-
#: src/Mollie/WC/Payment/Order.php:668 src/Mollie/WC/Payment/Order.php:709
|
1132 |
-
#: src/Mollie/WC/Payment/Payment.php:237 src/Mollie/WC/Payment/Payment.php:338
|
1133 |
-
#: src/Mollie/WC/Payment/Payment.php:396 src/Mollie/WC/Payment/Payment.php:419
|
1134 |
-
#: src/Mollie/WC/Payment/Payment.php:459 src/Mollie/WC/Payment/Payment.php:500
|
1135 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1136 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1137 |
-
#: src/Mollie/WC/Gateway/Abstract.php:547
|
1138 |
-
#: src/Mollie/WC/Gateway/Abstract.php:822
|
1139 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1120
|
1140 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1141 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1142 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1143 |
-
#: src/Mollie/WC/Gateway/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1144 |
msgid "test mode"
|
1145 |
msgstr "Mode test"
|
1146 |
|
1147 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
|
|
1148 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1149 |
-
#: src/Mollie/WC/Gateway/
|
1150 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1151 |
msgid "%s payment started (%s)."
|
1152 |
msgstr "Le paiement %s a commencé (%s)."
|
1153 |
|
|
|
1154 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1155 |
-
#: src/Mollie/WC/Gateway/
|
1156 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1157 |
msgid "Awaiting payment confirmation."
|
1158 |
msgstr "En attente de la confirmation de paiement."
|
1159 |
|
1160 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1161 |
msgid "Could not load order %s"
|
1162 |
msgstr "Impossible de télécharger la commande %s."
|
1163 |
|
1164 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1165 |
#. be replaced by a link to the Mollie profile
|
1166 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1167 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1168 |
-
msgstr "%s pas activé dans votre profil Mollie. Vous pouvez l'activer en
|
1169 |
|
1170 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1171 |
#. setting page
|
1172 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1173 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1174 |
msgstr "Aucune clé API n'a été fournie. Veuillez d'abord %sconfigurer votre clé API Mollie%s."
|
1175 |
|
1176 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1177 |
msgid "Gateway Disabled"
|
1178 |
msgstr "Passerelle désactivée"
|
1179 |
|
1180 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1181 |
msgid "Test mode enabled."
|
1182 |
msgstr "Mode test activé."
|
1183 |
|
1184 |
-
#: src/Mollie/WC/
|
1185 |
msgid "Hold Stock (minutes)"
|
1186 |
msgstr "Stock en attente (minutes)"
|
1187 |
|
1188 |
-
#: src/Mollie/WC/
|
1189 |
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."
|
1190 |
msgstr "Certains modes de paiement prennent plus que quelques heures à se compléter. L'état initial de la commande est alors réglé sur «%s». Ceci permet de s'assurer que la commande n'est pas annulée lorsque le réglage %s est utilisé."
|
1191 |
|
1192 |
-
#:
|
|
|
|
|
1193 |
msgid "default"
|
1194 |
msgstr "Par défaut"
|
1195 |
|
1196 |
-
#: src/Mollie/WC/
|
1197 |
msgid "Initial order status"
|
1198 |
msgstr "État de la commande initiale"
|
1199 |
|
1200 |
-
#:
|
|
|
1201 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1202 |
msgstr "Description de la méthode de paiement que le client verra sur votre caisse. Par défaut <code>%s</code>"
|
1203 |
|
1204 |
-
#:
|
|
|
1205 |
msgid "Description"
|
1206 |
msgstr "Description"
|
1207 |
|
1208 |
-
#: src/Mollie/WC/
|
1209 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1210 |
msgstr "Affichage logo sur la page de caisse. Par défaut <code>activé</code>"
|
1211 |
|
1212 |
-
#:
|
|
|
|
|
1213 |
msgid "Display logo"
|
1214 |
msgstr "Afficher le logo"
|
1215 |
|
1216 |
-
#:
|
|
|
1217 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1218 |
msgstr "Ceci contrôle le titre que l’utilisateur voit lors du paiement. Par défaut <code>%s</code>"
|
1219 |
|
1220 |
-
#:
|
|
|
1221 |
msgid "Title"
|
1222 |
msgstr "Titre"
|
1223 |
|
1224 |
-
|
|
|
|
|
1225 |
msgid "Enable %s"
|
1226 |
msgstr "Activer %s"
|
1227 |
|
1228 |
-
#:
|
|
|
1229 |
msgid "Enable/Disable"
|
1230 |
msgstr "Activer/Désactiver"
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in Dutch
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-07-26 13:45+0200\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
+
"Language: nl\n"
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
|
14 |
+
#: src/Mollie/WC/Plugin.php:375
|
15 |
+
msgid "Unpaid order cancelled - time limit reached."
|
16 |
+
msgstr "Commande non payée annulée - le délai est atteint."
|
17 |
+
|
18 |
+
#: src/Mollie/WC/Helper/Settings.php:846
|
19 |
+
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"
|
20 |
+
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"
|
21 |
+
|
22 |
+
#: src/Mollie/WC/Helper/Settings.php:254
|
23 |
+
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."
|
24 |
+
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."
|
25 |
+
|
26 |
+
#: src/Mollie/WC/Helper/Settings.php:246
|
27 |
+
msgid "Enable this option if you want to be able to set the number of days after the order will expire."
|
28 |
+
msgstr "Activez cette option si vous souhaitez pouvoir définir le nombre de jours après lesquels la commande expirera."
|
29 |
+
|
30 |
+
#: src/Mollie/WC/Helper/Settings.php:237
|
31 |
+
msgid "%s advanced"
|
32 |
+
msgstr "%s avancé"
|
33 |
+
|
34 |
+
#: inc/settings/mollie_paypal_button_enabler.php:126
|
35 |
+
msgid "If the product or the cart total amount is under this number, then the button will not show up."
|
36 |
+
msgstr "Si le produit ou le montant total du panier est inférieur à ce chiffre, le bouton ne s'affichera pas."
|
37 |
+
|
38 |
+
#: inc/settings/mollie_paypal_button_enabler.php:122
|
39 |
+
msgid "Minimum amount to display button"
|
40 |
+
msgstr "Montant minimum entraînant l’affichage du bouton"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_paypal_button_enabler.php:117
|
43 |
+
msgctxt "Mollie PayPal button Settings"
|
44 |
+
msgid "Polish -- Checkout with PayPal - Silver"
|
45 |
+
msgstr "Polonais -- Payer avec PayPal - Argent"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_paypal_button_enabler.php:116
|
48 |
+
msgctxt "Mollie PayPal button Settings"
|
49 |
+
msgid "Polish -- Checkout with PayPal - Gold"
|
50 |
+
msgstr "Polonais -- Payer avec PayPal - Or"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_paypal_button_enabler.php:115
|
53 |
+
msgctxt "Mollie PayPal button Settings"
|
54 |
+
msgid "Polish -- Buy with PayPal - Gold"
|
55 |
+
msgstr "Polonais -- Acheter avec PayPal - Or"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_paypal_button_enabler.php:114
|
58 |
+
msgctxt "Mollie PayPal button Settings"
|
59 |
+
msgid "French -- Checkout with PayPal - Silver"
|
60 |
+
msgstr "Français -- Payer avec PayPal - Argent"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_paypal_button_enabler.php:113
|
63 |
+
msgctxt "Mollie PayPal button Settings"
|
64 |
+
msgid "French -- Checkout with PayPal - Gold"
|
65 |
+
msgstr "Français -- Payer avec PayPal - Or"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_paypal_button_enabler.php:112
|
68 |
+
msgctxt "Mollie PayPal button Settings"
|
69 |
+
msgid "French -- Buy with PayPal - Gold"
|
70 |
+
msgstr "Français -- Acheter avec PayPal - Or"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_paypal_button_enabler.php:111
|
73 |
+
msgctxt "Mollie PayPal button Settings"
|
74 |
+
msgid "German -- Checkout with PayPal - Rounded white"
|
75 |
+
msgstr "Allemand -- Payer avec PayPal - Blanc arrondi"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_paypal_button_enabler.php:110
|
78 |
+
msgctxt "Mollie PayPal button Settings"
|
79 |
+
msgid "German -- Checkout with PayPal - Pill white"
|
80 |
+
msgstr "Allemand -- Payer avec PayPal - Blanc pilule"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_paypal_button_enabler.php:109
|
83 |
+
msgctxt "Mollie PayPal button Settings"
|
84 |
+
msgid "German -- Checkout with PayPal - Rounded gray"
|
85 |
+
msgstr "Allemand -- Payer avec PayPal - Gris arrondi"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_paypal_button_enabler.php:108
|
88 |
+
msgctxt "Mollie PayPal button Settings"
|
89 |
+
msgid "German -- Checkout with PayPal - Pill gray"
|
90 |
+
msgstr "Allemand -- Payer avec PayPal - Gris pilule"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_paypal_button_enabler.php:107
|
93 |
+
msgctxt "Mollie PayPal button Settings"
|
94 |
+
msgid "German -- Checkout with PayPal - Rounded golden"
|
95 |
+
msgstr "Allemand -- Payer avec PayPal - Doré arrondi"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_paypal_button_enabler.php:106
|
98 |
+
msgctxt "Mollie PayPal button Settings"
|
99 |
+
msgid "German -- Checkout with PayPal - Pill golden"
|
100 |
+
msgstr "Allemand -- Payer avec PayPal - Doré pilule"
|
101 |
+
|
102 |
+
#: inc/settings/mollie_paypal_button_enabler.php:105
|
103 |
+
msgctxt "Mollie PayPal button Settings"
|
104 |
+
msgid "German -- Checkout with PayPal - Rounded blue"
|
105 |
+
msgstr "Allemand -- Payer avec PayPal - Bleu arrondi"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_paypal_button_enabler.php:104
|
108 |
+
msgctxt "Mollie PayPal button Settings"
|
109 |
+
msgid "German -- Checkout with PayPal - Pill blue"
|
110 |
+
msgstr "Allemand -- Payer avec PayPal - Bleu pilule"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_paypal_button_enabler.php:103
|
113 |
+
msgctxt "Mollie PayPal button Settings"
|
114 |
+
msgid "German -- Checkout with PayPal - Rounded black"
|
115 |
+
msgstr "Allemand -- Payer avec PayPal - Noir arrondi"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_paypal_button_enabler.php:102
|
118 |
+
msgctxt "Mollie PayPal button Settings"
|
119 |
+
msgid "German -- Checkout with PayPal - Pill black"
|
120 |
+
msgstr "Allemand -- Payer avec PayPal - Noir pilule"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_paypal_button_enabler.php:101
|
123 |
+
msgctxt "Mollie PayPal button Settings"
|
124 |
+
msgid "German -- Buy with PayPal - Rounded white"
|
125 |
+
msgstr "Allemand -- Acheter avec PayPal - Blanc arrondi"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_paypal_button_enabler.php:100
|
128 |
+
msgctxt "Mollie PayPal button Settings"
|
129 |
+
msgid "German -- Buy with PayPal - Pill white"
|
130 |
+
msgstr "Allemand -- Acheter avec PayPal - Blanc pilule"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_paypal_button_enabler.php:99
|
133 |
+
msgctxt "Mollie PayPal button Settings"
|
134 |
+
msgid "German -- Buy with PayPal - Rounded gray"
|
135 |
+
msgstr "Allemand -- Acheter avec PayPal - Gris arrondi"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_paypal_button_enabler.php:98
|
138 |
+
msgctxt "Mollie PayPal button Settings"
|
139 |
+
msgid "German -- Buy with PayPal - Pill gray"
|
140 |
+
msgstr "Allemand -- Acheter avec PayPal - Gris pilule"
|
141 |
+
|
142 |
+
#: inc/settings/mollie_paypal_button_enabler.php:97
|
143 |
+
msgctxt "Mollie PayPal button Settings"
|
144 |
+
msgid "German -- Buy with PayPal - Rounded golden"
|
145 |
+
msgstr "Allemand -- Acheter avec PayPal - Doré arrondi"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_paypal_button_enabler.php:96
|
148 |
+
msgctxt "Mollie PayPal button Settings"
|
149 |
+
msgid "German -- Buy with PayPal - Pill golden"
|
150 |
+
msgstr "Allemand -- Acheter avec PayPal - Doré pilule"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_paypal_button_enabler.php:95
|
153 |
+
msgctxt "Mollie PayPal button Settings"
|
154 |
+
msgid "German -- Buy with PayPal - Rounded blue"
|
155 |
+
msgstr "Allemand -- Acheter avec PayPal - Bleu arrondi"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_paypal_button_enabler.php:94
|
158 |
+
msgctxt "Mollie PayPal button Settings"
|
159 |
+
msgid "German -- Buy with PayPal - Pill blue"
|
160 |
+
msgstr "Allemand -- Acheter avec PayPal - Bleu pilule"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_paypal_button_enabler.php:93
|
163 |
+
msgctxt "Mollie PayPal button Settings"
|
164 |
+
msgid "German -- Buy with PayPal - Rounded black"
|
165 |
+
msgstr "Allemand -- Acheter avec PayPal - Noir arrondi"
|
166 |
+
|
167 |
+
#: inc/settings/mollie_paypal_button_enabler.php:92
|
168 |
+
msgctxt "Mollie PayPal button Settings"
|
169 |
+
msgid "German -- Buy with PayPal - Pill black"
|
170 |
+
msgstr "Allemand -- Acheter avec PayPal - Noir pilule"
|
171 |
+
|
172 |
+
#: inc/settings/mollie_paypal_button_enabler.php:91
|
173 |
+
msgctxt "Mollie PayPal button Settings"
|
174 |
+
msgid "Dutch -- Checkout with PayPal - Rounded white"
|
175 |
+
msgstr "Néerlandais -- Payer avec PayPal - Blanc arrondi"
|
176 |
+
|
177 |
+
#: inc/settings/mollie_paypal_button_enabler.php:90
|
178 |
+
msgctxt "Mollie PayPal button Settings"
|
179 |
+
msgid "Dutch -- Checkout with PayPal - Pill white"
|
180 |
+
msgstr "Néerlandais -- Payer avec PayPal - Blanc pilule"
|
181 |
+
|
182 |
+
#: inc/settings/mollie_paypal_button_enabler.php:89
|
183 |
+
msgctxt "Mollie PayPal button Settings"
|
184 |
+
msgid "Dutch -- Checkout with PayPal - Rounded gray"
|
185 |
+
msgstr "Néerlandais -- Payer avec PayPal - Gris arrondi"
|
186 |
+
|
187 |
+
#: inc/settings/mollie_paypal_button_enabler.php:88
|
188 |
+
msgctxt "Mollie PayPal button Settings"
|
189 |
+
msgid "Dutch -- Checkout with PayPal - Pill gray"
|
190 |
+
msgstr "Néerlandais -- Payer avec PayPal - Gris pilule"
|
191 |
+
|
192 |
+
#: inc/settings/mollie_paypal_button_enabler.php:87
|
193 |
+
msgctxt "Mollie PayPal button Settings"
|
194 |
+
msgid "Dutch -- Checkout with PayPal - Rounded golden"
|
195 |
+
msgstr "Néerlandais -- Payer avec PayPal - Doré arrondi"
|
196 |
+
|
197 |
+
#: inc/settings/mollie_paypal_button_enabler.php:86
|
198 |
+
msgctxt "Mollie PayPal button Settings"
|
199 |
+
msgid "Dutch -- Checkout with PayPal - Pill golden"
|
200 |
+
msgstr "Néerlandais -- Payer avec PayPal - Doré pilule"
|
201 |
+
|
202 |
+
#: inc/settings/mollie_paypal_button_enabler.php:85
|
203 |
+
msgctxt "Mollie PayPal button Settings"
|
204 |
+
msgid "Dutch -- Checkout with PayPal - Rounded blue"
|
205 |
+
msgstr "Néerlandais -- Payer avec PayPal - Bleu arrondi"
|
206 |
+
|
207 |
+
#: inc/settings/mollie_paypal_button_enabler.php:84
|
208 |
+
msgctxt "Mollie PayPal button Settings"
|
209 |
+
msgid "Dutch -- Checkout with PayPal - Pill blue"
|
210 |
+
msgstr "Néerlandais -- Payer avec PayPal - Bleu pilule"
|
211 |
+
|
212 |
+
#: inc/settings/mollie_paypal_button_enabler.php:83
|
213 |
+
msgctxt "Mollie PayPal button Settings"
|
214 |
+
msgid "Dutch -- Checkout with PayPal - Rounded black"
|
215 |
+
msgstr "Néerlandais -- Payer avec PayPal - Noir arrondi"
|
216 |
+
|
217 |
+
#: inc/settings/mollie_paypal_button_enabler.php:82
|
218 |
+
msgctxt "Mollie PayPal button Settings"
|
219 |
+
msgid "Dutch -- Checkout with PayPal - Pill black"
|
220 |
+
msgstr "Néerlandais -- Payer avec PayPal - Noir pilule"
|
221 |
+
|
222 |
+
#: inc/settings/mollie_paypal_button_enabler.php:81
|
223 |
+
msgctxt "Mollie PayPal button Settings"
|
224 |
+
msgid "Dutch -- Buy with PayPal - Rounded white"
|
225 |
+
msgstr "Néerlandais -- Acheter avec PayPal - Blanc arrondi"
|
226 |
+
|
227 |
+
#: inc/settings/mollie_paypal_button_enabler.php:80
|
228 |
+
msgctxt "Mollie PayPal button Settings"
|
229 |
+
msgid "Dutch -- Buy with PayPal - Pill white"
|
230 |
+
msgstr "Néerlandais -- Acheter avec PayPal - Blanc pilule"
|
231 |
+
|
232 |
+
#: inc/settings/mollie_paypal_button_enabler.php:79
|
233 |
+
msgctxt "Mollie PayPal button Settings"
|
234 |
+
msgid "Dutch -- Buy with PayPal - Rounded gray"
|
235 |
+
msgstr "Néerlandais -- Acheter avec PayPal - Gris arrondi"
|
236 |
+
|
237 |
+
#: inc/settings/mollie_paypal_button_enabler.php:78
|
238 |
+
msgctxt "Mollie PayPal button Settings"
|
239 |
+
msgid "Dutch -- Buy with PayPal - Pill gray"
|
240 |
+
msgstr "Néerlandais -- Acheter avec PayPal - Gris pilule"
|
241 |
+
|
242 |
+
#: inc/settings/mollie_paypal_button_enabler.php:77
|
243 |
+
msgctxt "Mollie PayPal button Settings"
|
244 |
+
msgid "Dutch -- Buy with PayPal - Rounded golden"
|
245 |
+
msgstr "Néerlandais -- Acheter avec PayPal - Doré arrondi"
|
246 |
+
|
247 |
+
#: inc/settings/mollie_paypal_button_enabler.php:76
|
248 |
+
msgctxt "Mollie PayPal button Settings"
|
249 |
+
msgid "Dutch -- Buy with PayPal - Pill golden"
|
250 |
+
msgstr "Néerlandais -- Acheter avec PayPal - Doré pilule"
|
251 |
+
|
252 |
+
#: inc/settings/mollie_paypal_button_enabler.php:75
|
253 |
+
msgctxt "Mollie PayPal button Settings"
|
254 |
+
msgid "Dutch -- Buy with PayPal - Rounded blue"
|
255 |
+
msgstr "Néerlandais -- Acheter avec PayPal - Bleu arrondi"
|
256 |
+
|
257 |
+
#: inc/settings/mollie_paypal_button_enabler.php:74
|
258 |
+
msgctxt "Mollie PayPal button Settings"
|
259 |
+
msgid "Dutch -- Buy with PayPal - Pill blue"
|
260 |
+
msgstr "Néerlandais -- Acheter avec PayPal - Bleu pilule"
|
261 |
+
|
262 |
+
#: inc/settings/mollie_paypal_button_enabler.php:73
|
263 |
+
msgctxt "Mollie PayPal button Settings"
|
264 |
+
msgid "Dutch -- Buy with PayPal - Rounded black"
|
265 |
+
msgstr "Néerlandais -- Acheter avec PayPal - Noir arrondi"
|
266 |
+
|
267 |
+
#: inc/settings/mollie_paypal_button_enabler.php:72
|
268 |
+
msgctxt "Mollie PayPal button Settings"
|
269 |
+
msgid "Dutch -- Buy with PayPal - Pill black"
|
270 |
+
msgstr "Néerlandais -- Acheter avec PayPal - Noir pilule"
|
271 |
+
|
272 |
+
#: inc/settings/mollie_paypal_button_enabler.php:71
|
273 |
+
msgctxt "Mollie PayPal button Settings"
|
274 |
+
msgid "English -- Checkout with PayPal - Rounded white"
|
275 |
+
msgstr "Anglais -- Payer avec PayPal - Blanc arrondi"
|
276 |
+
|
277 |
+
#: inc/settings/mollie_paypal_button_enabler.php:70
|
278 |
+
msgctxt "Mollie PayPal button Settings"
|
279 |
+
msgid "English -- Checkout with PayPal - Pill white"
|
280 |
+
msgstr "Anglais -- Payer avec PayPal - Blanc pilule"
|
281 |
+
|
282 |
+
#: inc/settings/mollie_paypal_button_enabler.php:69
|
283 |
+
msgctxt "Mollie PayPal button Settings"
|
284 |
+
msgid "English -- Checkout with PayPal - Rounded gray"
|
285 |
+
msgstr "Anglais -- Payer avec PayPal - Gris arrondi"
|
286 |
+
|
287 |
+
#: inc/settings/mollie_paypal_button_enabler.php:68
|
288 |
+
msgctxt "Mollie PayPal button Settings"
|
289 |
+
msgid "English -- Checkout with PayPal - Pill gray"
|
290 |
+
msgstr "Anglais -- Payer avec PayPal - Gris pilule"
|
291 |
+
|
292 |
+
#: inc/settings/mollie_paypal_button_enabler.php:67
|
293 |
+
msgctxt "Mollie PayPal button Settings"
|
294 |
+
msgid "English -- Checkout with PayPal - Rounded golden"
|
295 |
+
msgstr "Anglais -- Payer avec PayPal - Doré arrondi"
|
296 |
+
|
297 |
+
#: inc/settings/mollie_paypal_button_enabler.php:66
|
298 |
+
msgctxt "Mollie PayPal button Settings"
|
299 |
+
msgid "English -- Checkout with PayPal - Pill golden"
|
300 |
+
msgstr "Anglais -- Payer avec PayPal - Doré pilule"
|
301 |
+
|
302 |
+
#: inc/settings/mollie_paypal_button_enabler.php:65
|
303 |
+
msgctxt "Mollie PayPal button Settings"
|
304 |
+
msgid "English -- Checkout with PayPal - Rounded blue"
|
305 |
+
msgstr "Anglais -- Payer avec PayPal - Bleu arrondi"
|
306 |
+
|
307 |
+
#: inc/settings/mollie_paypal_button_enabler.php:64
|
308 |
+
msgctxt "Mollie PayPal button Settings"
|
309 |
+
msgid "English -- Checkout with PayPal - Pill blue"
|
310 |
+
msgstr "Anglais -- Payer avec PayPal - Bleu pilule"
|
311 |
+
|
312 |
+
#: inc/settings/mollie_paypal_button_enabler.php:63
|
313 |
+
msgctxt "Mollie PayPal button Settings"
|
314 |
+
msgid "English -- Checkout with PayPal - Rounded black"
|
315 |
+
msgstr "Anglais -- Payer avec PayPal - Noir arrondi"
|
316 |
+
|
317 |
+
#: inc/settings/mollie_paypal_button_enabler.php:62
|
318 |
+
msgctxt "Mollie PayPal button Settings"
|
319 |
+
msgid "English -- Checkout with PayPal - Pill black"
|
320 |
+
msgstr "Anglais -- Payer avec PayPal - Noir pilule"
|
321 |
+
|
322 |
+
#: inc/settings/mollie_paypal_button_enabler.php:61
|
323 |
+
msgctxt "Mollie PayPal button Settings"
|
324 |
+
msgid "English -- Buy with PayPal - Rounded white"
|
325 |
+
msgstr "Anglais -- Acheter avec PayPal - Blanc arrondi"
|
326 |
+
|
327 |
+
#: inc/settings/mollie_paypal_button_enabler.php:60
|
328 |
+
msgctxt "Mollie PayPal button Settings"
|
329 |
+
msgid "English -- Buy with PayPal - Pill white"
|
330 |
+
msgstr "Anglais -- Acheter avec PayPal - Blanc pilule"
|
331 |
+
|
332 |
+
#: inc/settings/mollie_paypal_button_enabler.php:59
|
333 |
+
msgctxt "Mollie PayPal button Settings"
|
334 |
+
msgid "English -- Buy with PayPal - Rounded gray"
|
335 |
+
msgstr "Anglais -- Acheter avec PayPal - Gris arrondi"
|
336 |
+
|
337 |
+
#: inc/settings/mollie_paypal_button_enabler.php:58
|
338 |
+
msgctxt "Mollie PayPal button Settings"
|
339 |
+
msgid "English -- Buy with PayPal - Pill gray"
|
340 |
+
msgstr "Anglais -- Acheter avec PayPal - Gris pilule"
|
341 |
+
|
342 |
+
#: inc/settings/mollie_paypal_button_enabler.php:57
|
343 |
+
msgctxt "Mollie PayPal button Settings"
|
344 |
+
msgid "English -- Buy with PayPal - Rounded golden"
|
345 |
+
msgstr "Anglais -- Acheter avec PayPal - Doré arrondi"
|
346 |
+
|
347 |
+
#: inc/settings/mollie_paypal_button_enabler.php:56
|
348 |
+
msgctxt "Mollie PayPal button Settings"
|
349 |
+
msgid "English -- Buy with PayPal - Pill golden"
|
350 |
+
msgstr "Anglais -- Acheter avec PayPal - Doré pilule"
|
351 |
+
|
352 |
+
#: inc/settings/mollie_paypal_button_enabler.php:55
|
353 |
+
msgctxt "Mollie PayPal button Settings"
|
354 |
+
msgid "English -- Buy with PayPal - Rounded blue"
|
355 |
+
msgstr "Anglais -- Acheter avec PayPal - Bleu arrondi"
|
356 |
+
|
357 |
+
#: inc/settings/mollie_paypal_button_enabler.php:54
|
358 |
+
msgctxt "Mollie PayPal button Settings"
|
359 |
+
msgid "English -- Buy with PayPal - Pill blue"
|
360 |
+
msgstr "Anglais -- Acheter avec PayPal - Bleu pilule"
|
361 |
+
|
362 |
+
#: inc/settings/mollie_paypal_button_enabler.php:46
|
363 |
+
msgctxt "Mollie PayPal Button Settings"
|
364 |
+
msgid "Select the text and the colour of the button."
|
365 |
+
msgstr "Sélectionnez le texte et la couleur du bouton."
|
366 |
+
|
367 |
+
#: inc/settings/mollie_paypal_button_enabler.php:44
|
368 |
+
msgctxt "Mollie PayPal Button Settings"
|
369 |
+
msgid "Button text language and color"
|
370 |
+
msgstr "Langue et couleur du texte des boutons"
|
371 |
+
|
372 |
+
#: inc/settings/mollie_paypal_button_enabler.php:35
|
373 |
+
msgid "Enable the PayPal button to be used in the product page."
|
374 |
+
msgstr "Activez le bouton PayPal à utiliser sur la page du produit."
|
375 |
+
|
376 |
+
#: inc/settings/mollie_paypal_button_enabler.php:31
|
377 |
+
msgid "Display on product page"
|
378 |
+
msgstr "Affichez sur la page du produit"
|
379 |
+
|
380 |
+
#: inc/settings/mollie_paypal_button_enabler.php:23
|
381 |
+
msgid "Enable the PayPal button to be used in the cart page."
|
382 |
+
msgstr "Activez le bouton PayPal à utiliser sur la page du panier."
|
383 |
+
|
384 |
+
#: inc/settings/mollie_paypal_button_enabler.php:19
|
385 |
+
msgid "Display on cart page"
|
386 |
+
msgstr "Affichez sur la page du panier"
|
387 |
+
|
388 |
+
#: inc/settings/mollie_paypal_button_enabler.php:12
|
389 |
+
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"
|
390 |
+
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"
|
391 |
+
|
392 |
+
#: inc/settings/mollie_paypal_button_enabler.php:7
|
393 |
+
msgid "PayPal button display settings"
|
394 |
+
msgstr "Réglages de l’affichage du bouton PayPal"
|
395 |
+
|
396 |
+
#: src/Mollie/WC/Helper/Settings.php:159
|
397 |
+
msgid "%s surcharge"
|
398 |
+
msgstr "%s supplément"
|
399 |
+
|
400 |
+
#: src/Mollie/WC/Helper/Settings.php:125
|
401 |
+
msgid "%s custom logo"
|
402 |
+
msgstr "%s logo personnalisé"
|
403 |
+
|
404 |
+
#: src/Mollie/WC/Helper/Settings.php:107
|
405 |
+
msgid "Sales countries"
|
406 |
+
msgstr "Pays de vente"
|
407 |
+
|
408 |
+
#: src/Mollie/WC/Helper/Settings.php:61
|
409 |
+
msgid "%s display settings"
|
410 |
+
msgstr "%s réglage de l’affichage"
|
411 |
+
|
412 |
+
#: inc/settings/mollie_advanced_settings.php:124
|
413 |
+
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"
|
414 |
+
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"
|
415 |
+
|
416 |
+
#: inc/settings/mollie_advanced_settings.php:109
|
417 |
+
msgid "API Payment Description"
|
418 |
+
msgstr "Description de l’API Payments"
|
419 |
+
|
420 |
+
#: inc/settings/mollie_advanced_settings.php:99
|
421 |
+
msgid "Click %shere%s to read more about the differences between the Payments and Orders API"
|
422 |
+
msgstr "Cliquez %sici%s pour en savoir plus sur les différences entre les API Payments et Orders"
|
423 |
+
|
424 |
+
#: inc/settings/mollie_advanced_settings.php:82
|
425 |
+
msgid "Select API Method"
|
426 |
+
msgstr "Sélectionnez la méthode de l’API"
|
427 |
+
|
428 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2645
|
429 |
+
msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb."
|
430 |
+
msgstr "%1$sPaiements Mollie pour WooCommerce%2$s Impossible de télécharger le fichier. La taille doit être inférieure à 500Ko."
|
431 |
+
|
432 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2606
|
433 |
+
msgid " +%1s%2s + %3s%% Fee"
|
434 |
+
msgstr " +%1s%2s + %3s%% de frais"
|
435 |
+
|
436 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2589
|
437 |
+
msgid " +%1s%% Fee"
|
438 |
+
msgstr " +%1s%% de frais"
|
439 |
+
|
440 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2579
|
441 |
+
msgid " +%1s%2s Fee"
|
442 |
+
msgstr " +%1s%2s de frais"
|
443 |
+
|
444 |
+
#: src/Mollie/WC/Gateway/Abstract.php:138
|
445 |
+
msgid "No custom logo selected"
|
446 |
+
msgstr "Aucun logo personnalisé sélectionné"
|
447 |
+
|
448 |
+
#: src/Mollie/WC/Helper/Settings.php:226
|
449 |
+
msgid "Limit the maximum fee added on checkout. Default 0"
|
450 |
+
msgstr "Limitez le montant maximal des frais ajoutés lors du passage en caisse. Valeur par défaut : 0"
|
451 |
+
|
452 |
+
#: src/Mollie/WC/Helper/Settings.php:223
|
453 |
+
msgid "Payment surcharge limit in %s"
|
454 |
+
msgstr "Limite du supplément au paiement en %s"
|
455 |
+
|
456 |
+
#: src/Mollie/WC/Helper/Settings.php:213
|
457 |
+
msgid "Control the percentage fee added on checkout. Default 0.01"
|
458 |
+
msgstr "Contrôlez le pourcentage des frais ajoutés lors du passage en caisse. Valeur par défaut : 0,01"
|
459 |
+
|
460 |
+
#: src/Mollie/WC/Helper/Settings.php:210
|
461 |
+
msgid "Payment surcharge percentage amount %"
|
462 |
+
msgstr "Montant du supplément au paiement (pourcentage) %"
|
463 |
+
|
464 |
+
#: src/Mollie/WC/Helper/Settings.php:200
|
465 |
+
msgid "Control the fee added on checkout. Default 0.01"
|
466 |
+
msgstr "Contrôlez les frais ajoutés lors du passage en caisse. Valeur par défaut : 0,01"
|
467 |
+
|
468 |
+
#: src/Mollie/WC/Helper/Settings.php:197
|
469 |
+
msgid "Payment surcharge fixed amount in %s"
|
470 |
+
msgstr "Montant du supplément fixe au paiement en %s"
|
471 |
+
|
472 |
+
#: src/Mollie/WC/Helper/Settings.php:190
|
473 |
+
msgid "Choose a payment surcharge for this gateway"
|
474 |
+
msgstr "Choisissez un supplément au paiement pour cette passerelle"
|
475 |
+
|
476 |
+
#: src/Mollie/WC/Helper/Settings.php:184
|
477 |
+
msgid "Fixed fee and percentage"
|
478 |
+
msgstr "Frais fixes et pourcentage"
|
479 |
+
|
480 |
+
#: src/Mollie/WC/Helper/Settings.php:180
|
481 |
+
msgid "Percentage"
|
482 |
+
msgstr "Pourcentage"
|
483 |
+
|
484 |
+
#: src/Mollie/WC/Helper/Settings.php:176
|
485 |
+
msgid "Fixed fee"
|
486 |
+
msgstr "Frais fixes"
|
487 |
+
|
488 |
+
#: src/Mollie/WC/Helper/Settings.php:172
|
489 |
+
msgid "No fee"
|
490 |
+
msgstr "Aucun frais"
|
491 |
+
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:166
|
493 |
+
msgid "Payment Surcharge"
|
494 |
+
msgstr "Supplément au paiement"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Helper/Settings.php:150
|
497 |
+
msgid "Upload a custom icon for this gateway. The feature must be enabled."
|
498 |
+
msgstr "Téléchargez une icône personnalisée pour cette passerelle. La fonction doit être activée."
|
499 |
+
|
500 |
+
#: src/Mollie/WC/Helper/Settings.php:143
|
501 |
+
msgid "Upload custom logo"
|
502 |
+
msgstr "Désactivez le logo personnalisé"
|
503 |
+
|
504 |
+
#: src/Mollie/WC/Helper/Settings.php:137
|
505 |
+
msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options."
|
506 |
+
msgstr "Activez la fonction permettant d'ajouter un logo personnalisé pour cette passerelle. Cette fonction aura la priorité sur les autres options de logo."
|
507 |
+
|
508 |
+
#: src/Mollie/WC/Helper/Settings.php:132
|
509 |
+
msgid "Enable custom logo"
|
510 |
+
msgstr "Activez le logo personnalisé"
|
511 |
+
|
512 |
+
#: src/Mollie/WC/Helper/GatewaySurchargeHandler.php:253
|
513 |
+
msgid "Fee"
|
514 |
+
msgstr "Frais"
|
515 |
+
|
516 |
+
#: inc/settings/mollie_applepay_settings.php:106
|
517 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:32
|
518 |
+
msgid "Enable the Apple Pay direct buy button on the Product page"
|
519 |
+
msgstr "Activez le bouton achat direct Apple Pay sur la page du produit"
|
520 |
+
|
521 |
+
#: inc/settings/mollie_applepay_settings.php:103
|
522 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:29
|
523 |
+
msgid "Enable Apple Pay Button on Product page"
|
524 |
+
msgstr "Activez le bouton Apple Pay sur la page du produit"
|
525 |
+
|
526 |
+
#: inc/settings/mollie_applepay_settings.php:91
|
527 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:21
|
528 |
+
msgid "Enable the Apple Pay direct buy button on the Cart page"
|
529 |
+
msgstr "Activez le bouton achat direct Apple Pay sur la page du panier"
|
530 |
+
|
531 |
+
#: inc/settings/mollie_applepay_settings.php:88
|
532 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:18
|
533 |
+
msgid "Enable Apple Pay Button on Cart page"
|
534 |
+
msgstr "Activez le bouton Apple Pay sur la page du panier"
|
535 |
+
|
536 |
+
#: pluginEnvironmentChecker/EnvironmentChecker.php:49
|
537 |
+
msgid "Validation failed with %1$d errors"
|
538 |
+
msgstr "La validation la échoué avec %1$d errors"
|
539 |
+
|
540 |
+
#: src/Mollie/WC/Plugin.php:591
|
541 |
+
msgid "Mollie Voucher category"
|
542 |
+
msgstr "Catégorie de bons Mollie"
|
543 |
+
|
544 |
+
#: src/Mollie/WC/Plugin.php:531 src/Mollie/WC/Plugin.php:594
|
545 |
+
msgid "Same as default category"
|
546 |
+
msgstr "La même que la catégorie par défaut"
|
547 |
+
|
548 |
+
#: src/Mollie/WC/Plugin.php:464 src/Mollie/WC/Plugin.php:487
|
549 |
+
msgid "Select a voucher category to apply to all products with this category"
|
550 |
+
msgstr "Sélectionnez une catégorie de bons pour les appliquer à tous les produits de cette catégorie."
|
551 |
+
|
552 |
+
#: src/Mollie/WC/Plugin.php:430 src/Mollie/WC/Plugin.php:462
|
553 |
+
#: src/Mollie/WC/Plugin.php:485 src/Mollie/WC/Plugin.php:598
|
554 |
+
msgid "Gift"
|
555 |
+
msgstr "Cadeau"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Plugin.php:429 src/Mollie/WC/Plugin.php:461
|
558 |
+
#: src/Mollie/WC/Plugin.php:484 src/Mollie/WC/Plugin.php:597
|
559 |
+
msgid "Eco"
|
560 |
+
msgstr "Éco"
|
561 |
+
|
562 |
+
#: src/Mollie/WC/Plugin.php:428 src/Mollie/WC/Plugin.php:460
|
563 |
+
#: src/Mollie/WC/Plugin.php:483 src/Mollie/WC/Plugin.php:596
|
564 |
+
msgid "Meal"
|
565 |
+
msgstr "Repas"
|
566 |
+
|
567 |
+
#: src/Mollie/WC/Plugin.php:427 src/Mollie/WC/Plugin.php:459
|
568 |
+
#: src/Mollie/WC/Plugin.php:482 src/Mollie/WC/Plugin.php:595
|
569 |
+
msgid "No Category"
|
570 |
+
msgstr "Aucune catégorie"
|
571 |
+
|
572 |
+
#: src/Mollie/WC/Plugin.php:426 src/Mollie/WC/Plugin.php:458
|
573 |
+
#: src/Mollie/WC/Plugin.php:481
|
574 |
+
msgid "--Please choose an option--"
|
575 |
+
msgstr "--Veuillez choisir une option--"
|
576 |
+
|
577 |
+
#: src/Mollie/WC/Plugin.php:423 src/Mollie/WC/Plugin.php:456
|
578 |
+
#: src/Mollie/WC/Plugin.php:478
|
579 |
+
msgid "Mollie Voucher Category"
|
580 |
+
msgstr "Catégorie de bons Mollie"
|
581 |
+
|
582 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
583 |
+
msgid "Contact Support"
|
584 |
+
msgstr "Contactez l’assistance"
|
585 |
+
|
586 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
587 |
+
msgid "Plugin Documentation"
|
588 |
+
msgstr "Plug-in de documentation"
|
589 |
+
|
590 |
+
#: src/Mollie/WC/Helper/Settings.php:619
|
591 |
+
msgid "to create a new Mollie account and start receiving payments in a couple of minutes. "
|
592 |
+
msgstr "pour créer un nouveau compte Mollie et commencer à recevoir des paiements en quelques minutes."
|
593 |
+
|
594 |
+
#: src/Mollie/WC/Helper/Settings.php:617
|
595 |
+
msgid " Mollie is dedicated to making payments better for WooCommerce. "
|
596 |
+
msgstr "Mollie est dédiée à l'amélioration des paiements pour WooCommerce."
|
597 |
+
|
598 |
+
#: src/Mollie/WC/Helper/Settings.php:616
|
599 |
+
msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie."
|
600 |
+
msgstr "Il suffit de les déposer tout prêts dans votre boutique en ligne WooCommerce grâce à ce puissant plug-in de Mollie."
|
601 |
+
|
602 |
+
#: src/Mollie/WC/Helper/Settings.php:615
|
603 |
+
msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them."
|
604 |
+
msgstr "Intégrez rapidement les principaux modes de paiement dans WooCommerce, là où vous en avez besoin."
|
605 |
+
|
606 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:147
|
607 |
+
msgid "Advanced"
|
608 |
+
msgstr "Avancé"
|
609 |
+
|
610 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:143
|
611 |
+
msgid "Apple Pay Button"
|
612 |
+
msgstr "Bouton Apple Pay"
|
613 |
+
|
614 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:138
|
615 |
+
msgid "General"
|
616 |
+
msgstr "Général"
|
617 |
+
|
618 |
+
#: src/Mollie/WC/Gateway/Abstract.php:283
|
619 |
+
msgid "Select none"
|
620 |
+
msgstr "Ne rien sélectionner"
|
621 |
+
|
622 |
+
#: src/Mollie/WC/Gateway/Abstract.php:282
|
623 |
+
msgid "Select all"
|
624 |
+
msgstr "Tout sélectionner"
|
625 |
+
|
626 |
+
#: src/Mollie/WC/Gateway/Abstract.php:273
|
627 |
+
msgid "Country"
|
628 |
+
msgstr "Pays"
|
629 |
+
|
630 |
+
#: src/Mollie/WC/Gateway/Abstract.php:272
|
631 |
+
msgid "Choose countries…"
|
632 |
+
msgstr "Choisir les pays…"
|
633 |
+
|
634 |
+
#: src/Mollie/WC/Gateway/Abstract.php:244
|
635 |
+
msgid "Return to payments"
|
636 |
+
msgstr "Revenir aux paiements"
|
637 |
+
|
638 |
+
#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114
|
639 |
+
msgid "Sell to specific countries"
|
640 |
+
msgstr "Vendre à des pays spécifiques"
|
641 |
+
|
642 |
+
#: inc/settings/mollie_advanced_settings.php:73
|
643 |
+
msgid "Single Click Payments"
|
644 |
+
msgstr "Paiements par simple clic"
|
645 |
+
|
646 |
+
#: inc/settings/mollie_advanced_settings.php:68
|
647 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%1$s</code>. Required if WooCommerce Subscriptions is being used! Read more about <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> and how it improves your conversion."
|
648 |
+
msgstr "Est-ce que Mollie doit conserver le nom et l'adresse électronique du client pour les paiements par simple clic ? Par défaut <code>%1$s</code>. Obligatoire si les abonnements WooCommerce sont utilisés ! En savoir plus sur <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> et sur la façon dont il améliore vos conversions."
|
649 |
+
|
650 |
+
#: inc/settings/mollie_advanced_settings.php:6
|
651 |
+
msgid "Mollie advanced settings"
|
652 |
+
msgstr "Réglages avancés Mollie"
|
653 |
+
|
654 |
+
#: inc/settings/mollie_applepay_settings.php:84
|
655 |
+
msgid "The following options are required to use the Apple Pay Direct Button"
|
656 |
+
msgstr "Les options suivantes sont requises pour utiliser le bouton direct Apple Pay"
|
657 |
+
|
658 |
+
#: inc/settings/mollie_applepay_settings.php:14
|
659 |
+
msgid "The following options are required to use the Apple Pay gateway"
|
660 |
+
msgstr "Les options suivantes sont requises pour utiliser la passerelle Apple Pay"
|
661 |
|
662 |
+
#: inc/settings/mollie_components_enabler.php:8
|
663 |
+
msgid "Use the Mollie Components for this Gateway. Read more about <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> and how it improves your conversion."
|
664 |
+
msgstr "Utiliser les composants Mollie pour cette passerelle. En savoir plus sur <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> et sur la façon dont il améliore vos conversions."
|
665 |
+
|
666 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:11
|
667 |
+
msgid "The following options are required to use the Apple Pay button"
|
668 |
+
msgstr "Les options suivantes sont requises pour utiliser le bouton Apple Pay"
|
669 |
+
|
670 |
+
#: inc/settings/mollie_applepay_settings.php:79
|
671 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
672 |
+
msgid "Apple Pay button settings"
|
673 |
+
msgstr "Réglages du bouton Apple Pay"
|
674 |
+
|
675 |
+
#: mollie-payments-for-woocommerce.php:91
|
676 |
+
msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s."
|
677 |
+
msgstr "%1$sPaiements Mollie pour WooCommerce : il manque la clé API%2$s Veillez%3$s saisir votre clé API ici%4$s."
|
678 |
+
|
679 |
+
#: src/Mollie/WC/Plugin.php:541
|
680 |
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."
|
681 |
+
msgstr "Afin de la traiter, tous les produits de la commande doivent avoir une catégorie. Pour désactiver le produit de la sélection des bons, sélectionnez l'option « Aucune catégorie »."
|
682 |
|
683 |
+
#: src/Mollie/WC/Plugin.php:524
|
684 |
msgid "Products voucher category"
|
685 |
+
msgstr "Catégorie de bons de produits"
|
686 |
|
687 |
+
#: src/Mollie/WC/Plugin.php:308
|
688 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
689 |
+
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."
|
690 |
|
691 |
+
#: src/Mollie/WC/Helper/Settings.php:654 src/Mollie/WC/Plugin.php:391
|
692 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:11
|
693 |
msgid "Mollie Settings"
|
694 |
msgstr "Réglages Mollie"
|
695 |
|
705 |
|
706 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
707 |
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"
|
708 |
+
msgstr "Pour pouvoir la traiter, tous les produits de la commande doivent avoir une catégorie. Ce sélecteur attribuera la catégorie par défaut aux produits de la boutique."
|
709 |
|
710 |
+
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:520
|
711 |
msgid "Select the default products category"
|
712 |
+
msgstr "Sélectionnez la catégorie de produits par défaut"
|
713 |
|
714 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:40
|
715 |
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"
|
716 |
+
msgstr "Activez cette option si vous souhaitez pouvoir définir le nombre de jours après lesquels le paiement expirera. Cela transformera toutes les transactions en paiements et non en commandes."
|
717 |
|
718 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:39
|
719 |
+
#: src/Mollie/WC/Helper/Settings.php:245
|
720 |
msgid "Enable expiry date for payments"
|
721 |
+
msgstr "Activez date d'expiration pour les paiements"
|
722 |
|
723 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:38
|
724 |
+
#: src/Mollie/WC/Helper/Settings.php:244
|
725 |
msgid "Activate expiry date setting"
|
726 |
+
msgstr "Activez les réglages de la date d’expiration"
|
727 |
|
728 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2178
|
729 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
730 |
msgid " Remainder: %1$s %2$s %3$s."
|
731 |
+
msgstr " Solde : %1$s %2$s %3$s."
|
732 |
|
733 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2166
|
734 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
735 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
736 |
+
msgstr "Mollie - Détails des cartes cadeaux : %1$s %2$s %3$s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
|
738 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54
|
739 |
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"
|
740 |
+
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."
|
741 |
|
742 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39
|
743 |
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"
|
744 |
+
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."
|
745 |
|
746 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
747 |
msgid "Show Mastercard Icon"
|
748 |
+
msgstr "Afficher l’icône Mastercard"
|
749 |
|
750 |
#: inc/settings/mollie_components.php:94
|
751 |
msgctxt "Mollie Components Settings"
|
752 |
msgid "Transform Text "
|
753 |
+
msgstr "Transformer le texte"
|
754 |
|
755 |
#: inc/settings/mollie_components.php:82
|
756 |
msgctxt "Mollie Components Settings"
|
760 |
#: inc/settings/mollie_components.php:72
|
761 |
msgctxt "Mollie Components Settings"
|
762 |
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
763 |
+
msgstr "Ajoutez de la marge aux composants. Les unités `16px 16px 16px 16px` et `em`, `px`, `rem` sont autorisées."
|
764 |
|
765 |
#: inc/settings/mollie_components.php:35
|
766 |
msgctxt "Mollie Components Settings"
|
767 |
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
768 |
+
msgstr "Définit la taille de la police du composant. Les unités autorisées sont : 'em', 'px', 'rem'."
|
769 |
|
770 |
#: inc/settings/mollie_creditcard_icons_selector.php:51
|
771 |
msgid "Show VPay Icon"
|
772 |
+
msgstr "Afficher l’icône VPay"
|
773 |
|
774 |
#: inc/settings/mollie_creditcard_icons_selector.php:46
|
775 |
msgid "Show Visa Icon"
|
776 |
+
msgstr "Afficher l’icône Visa"
|
777 |
|
778 |
#: inc/settings/mollie_creditcard_icons_selector.php:36
|
779 |
msgid "Show Maestro Icon"
|
780 |
+
msgstr "Afficher l’icône Maestro"
|
781 |
|
782 |
#: inc/settings/mollie_creditcard_icons_selector.php:31
|
783 |
msgid "Show Carte Bancaire Icon"
|
784 |
+
msgstr "Afficher l’icône Carte Bancaire"
|
785 |
|
786 |
#: inc/settings/mollie_creditcard_icons_selector.php:26
|
787 |
msgid "Show Carta Si Icon"
|
788 |
+
msgstr "Afficher l’icône Carta Si"
|
789 |
|
790 |
#: inc/settings/mollie_creditcard_icons_selector.php:21
|
791 |
msgid "Show American Express Icon"
|
792 |
+
msgstr "Afficher l’icône American Express"
|
793 |
|
794 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
795 |
msgid "Show customized creditcard icons on checkout page"
|
796 |
+
msgstr "Afficher les icônes personnalisées des cartes de crédit sur la page de paiement"
|
797 |
|
798 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
799 |
msgid "Enable Icons Selector"
|
800 |
+
msgstr "Activer le sélecteur d’icônes"
|
801 |
|
802 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
803 |
msgid "Customize Icons"
|
804 |
+
msgstr "Icônes personnalisées"
|
805 |
|
806 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
807 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2129
|
808 |
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)."
|
809 |
+
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."
|
810 |
|
811 |
+
#: src/Mollie/WC/Gateway/Abstract.php:590
|
812 |
msgid "Failed switching subscriptions, no valid mandate."
|
813 |
+
msgstr "Échec du changement d'abonnement, aucun mandat valide."
|
|
|
|
|
|
|
|
|
814 |
|
815 |
#: inc/settings/mollie_components_enabler.php:6
|
816 |
msgid "Enable Mollie Components"
|
904 |
#: inc/settings/mollie_components.php:49
|
905 |
msgctxt "Mollie Components Settings"
|
906 |
msgid "Regular"
|
907 |
+
msgstr "Normal"
|
908 |
|
909 |
#: inc/settings/mollie_components.php:48
|
910 |
msgctxt "Mollie Components Settings"
|
941 |
msgid "Base Styles"
|
942 |
msgstr "Styles de base"
|
943 |
|
944 |
+
#: src/Mollie/WC/Plugin.php:950
|
945 |
msgid "An unknown error occurred, please check the card fields."
|
946 |
msgstr "Une erreur inconnue est survenue, veillez vérifier les champs de la carte."
|
947 |
|
948 |
+
#: src/Mollie/WC/Plugin.php:943
|
949 |
msgid "Verification Code"
|
950 |
msgstr "Code de sécurité"
|
951 |
|
952 |
+
#: src/Mollie/WC/Plugin.php:939
|
953 |
msgid "Expiry Date"
|
954 |
msgstr "Date d'expiration"
|
955 |
|
956 |
+
#: src/Mollie/WC/Plugin.php:935
|
957 |
msgid "Card Number"
|
958 |
msgstr "Numéro de la carte"
|
959 |
|
960 |
+
#: src/Mollie/WC/Plugin.php:931
|
961 |
msgid "Card Holder"
|
962 |
msgstr "Détenteur de la carte"
|
963 |
|
964 |
+
#: inc/settings/mollie_components_enabler.php:12
|
965 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
966 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:139
|
967 |
msgid "Mollie Components"
|
968 |
msgstr "Composants Mollie"
|
969 |
|
970 |
+
#: src/Mollie/WC/Plugin.php:757
|
971 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
972 |
msgstr "%1$s articles annulés dans WooCommerce et sur Mollie."
|
973 |
|
974 |
+
#: src/Mollie/WC/Plugin.php:739
|
975 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
976 |
msgstr "%1$s articles remboursés dans WooCommerce et sur Mollie."
|
977 |
|
987 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
988 |
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."
|
989 |
|
990 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119
|
991 |
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."
|
992 |
+
msgstr "Mollie n'autorise pas le remboursement partiel du montant ou de la quantité totale d'au moins une ligne de commande. Essayez de traiter ceci comme un remboursement de montant."
|
993 |
|
994 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145
|
996 |
msgid "Order completed using %1$s payment (%2$s)."
|
997 |
msgstr "Commande terminée avec le paiement %1$s (%2$s)."
|
998 |
|
1029 |
|
1030 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
1031 |
msgid "Przelewy24"
|
1032 |
+
msgstr "Przelewy24 "
|
1033 |
|
1034 |
+
#: src/Mollie/WC/Helper/Status.php:89
|
1035 |
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."
|
1036 |
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."
|
1037 |
|
1038 |
+
#: src/Mollie/WC/Payment/Order.php:836
|
1039 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
1040 |
+
msgstr "Montant remboursé de %s%s remboursé dans WooCommerce et sur Mollie. ID remboursement%s : %s. "
|
1041 |
|
1042 |
+
#: src/Mollie/WC/Payment/Order.php:758
|
1043 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
1044 |
+
msgstr "%sx %s remboursé pour %s%s dans WooCommerce et sur Mollie. ID remboursement%s : %s. "
|
1045 |
|
1046 |
+
#: src/Mollie/WC/Payment/Order.php:742
|
1047 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
1048 |
+
msgstr "%sx %s annulé pour %s%s dans WooCommerce et sur Mollie. "
|
1049 |
|
1050 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1051 |
+
#: src/Mollie/WC/Payment/Order.php:361
|
1052 |
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!"
|
1053 |
msgstr "Commande terminée sur Mollie pour commande %s (%s). Une ligne de commande au moins est terminée. Rappel : l'état « Terminé » pour une commande sur Mollie n'est pas identique à l'état « Terminé » dans WooCommerce !"
|
1054 |
|
1055 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1238
|
1057 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
1058 |
msgstr "Paiements %s remboursés 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)."
|
1059 |
|
|
|
|
|
|
|
|
|
|
|
1060 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
1061 |
msgid "Order"
|
1062 |
msgstr "Commande"
|
1067 |
msgstr "Paiement %s (%s) annulé."
|
1068 |
|
1069 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1070 |
+
#: src/Mollie/WC/Payment/Order.php:931
|
1071 |
msgid "%s order (%s) expired ."
|
1072 |
+
msgstr "Commande %s (%s) expirée."
|
1073 |
|
1074 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1075 |
+
#: src/Mollie/WC/Payment/Order.php:509
|
1076 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
1077 |
+
msgstr "%s la commande a expiré (%s) mais n’a pas été annulée en raison d’un autre paiement en attente (%s)."
|
1078 |
|
1079 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1080 |
+
#: src/Mollie/WC/Payment/Order.php:444
|
1081 |
msgid "%s order (%s) cancelled ."
|
1082 |
msgstr "Commande %s (%s) annulée."
|
1083 |
|
1084 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1085 |
+
#: src/Mollie/WC/Payment/Order.php:314
|
1086 |
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."
|
1087 |
+
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 cela dans les 28 jours, sinon la commande expirera. Pour traiter des lignes de commande individuelles, traitez la commande via le tableau de bord Mollie. "
|
|
|
|
|
|
|
|
|
1088 |
|
1089 |
+
#: inc/settings/mollie_advanced_settings.php:57
|
1090 |
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."
|
1091 |
+
msgstr "L'envoi d'une préférence de langue (ou de paramètres régionaux) est requis. L'option « Envoyer automatiquement la langue de WordPress » tentera de définir la langue 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."
|
1092 |
|
1093 |
+
#: inc/settings/mollie_advanced_settings.php:26
|
1094 |
msgid "Automatically send WordPress language"
|
1095 |
msgstr "Envoyer langage WordPress automatiquement"
|
1096 |
|
1097 |
+
#: inc/settings/mollie_advanced_settings.php:18
|
1098 |
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."
|
1099 |
msgstr "État des commandes lorsqu'un paiement (et non une commande Mollie via l'API Commandes) est annulé. Par défaut : en attente. Les commandes avec l'état « 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. Ceci ne s'applique pas aux paiements pour les commandes via la nouvelle API Orders et les paiements Klarna."
|
1100 |
|
1101 |
+
#: src/Mollie/WC/Helper/OrderLines.php:497
|
1102 |
msgid "Shipping"
|
1103 |
msgstr "Expédier"
|
1104 |
|
1113 |
|
1114 |
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
1115 |
msgid "Klarna Pay later"
|
1116 |
+
msgstr "Klarna Pay Later"
|
1117 |
|
1118 |
#: src/Mollie/WC/Helper/Status.php:131
|
1119 |
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
1120 |
+
msgstr "Afin d'utiliser les paiements Mollie pour WooCommerce, il vous faut les fonctions PHP cURL. Assurez-vous que toutes ces fonctions soient disponibles. "
|
1121 |
|
1122 |
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
1123 |
#. version
|
1124 |
#: src/Mollie/WC/Helper/Status.php:104
|
1125 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
1126 |
+
msgstr "Afin d'utiliser les paiements Mollie pour WooCommerce, PHP %s ou supérieur est requis. Votre PHP est %s. Veuillez mettre à jour et consulter les %sdans les FAQ%s"
|
1127 |
|
1128 |
+
#: src/Mollie/WC/Helper/Settings.php:825
|
1129 |
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."
|
1130 |
+
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. "
|
1131 |
|
1132 |
+
#: src/Mollie/WC/Helper/Settings.php:801
|
1133 |
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."
|
1134 |
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. "
|
1135 |
|
1136 |
+
#: inc/settings/mollie_advanced_settings.php:54
|
1137 |
msgid "Lithuanian"
|
1138 |
msgstr "Lituanien"
|
1139 |
|
1140 |
+
#: inc/settings/mollie_advanced_settings.php:53
|
1141 |
msgid "Latvian"
|
1142 |
msgstr "Letton"
|
1143 |
|
1144 |
+
#: inc/settings/mollie_advanced_settings.php:52
|
1145 |
msgid "Polish"
|
1146 |
msgstr "Polonais"
|
1147 |
|
1148 |
+
#: inc/settings/mollie_advanced_settings.php:51
|
1149 |
msgid "Hungarian"
|
1150 |
msgstr "Hongrois"
|
1151 |
|
1152 |
+
#: inc/settings/mollie_advanced_settings.php:50
|
1153 |
msgid "Icelandic"
|
1154 |
msgstr "Islandais"
|
1155 |
|
1156 |
+
#: inc/settings/mollie_advanced_settings.php:49
|
1157 |
msgid "Danish"
|
1158 |
msgstr "Danois"
|
1159 |
|
1160 |
+
#: inc/settings/mollie_advanced_settings.php:48
|
1161 |
msgid "Finnish"
|
1162 |
msgstr "Finlandais"
|
1163 |
|
1164 |
+
#: inc/settings/mollie_advanced_settings.php:47
|
1165 |
msgid "Swedish"
|
1166 |
msgstr "Suédois"
|
1167 |
|
1168 |
+
#: inc/settings/mollie_advanced_settings.php:46
|
1169 |
msgid "Norwegian"
|
1170 |
msgstr "Norvégien"
|
1171 |
|
1172 |
+
#: inc/settings/mollie_advanced_settings.php:45
|
1173 |
msgid "Italian"
|
1174 |
msgstr "Italien"
|
1175 |
|
1176 |
+
#: inc/settings/mollie_advanced_settings.php:44
|
1177 |
msgid "Portuguese"
|
1178 |
msgstr "Portugais"
|
1179 |
|
1180 |
+
#: inc/settings/mollie_advanced_settings.php:43
|
1181 |
msgid "Catalan"
|
1182 |
msgstr "Catalan"
|
1183 |
|
1184 |
+
#: inc/settings/mollie_advanced_settings.php:41
|
1185 |
msgid "Swiss German"
|
1186 |
msgstr "Suisse allemand"
|
1187 |
|
1188 |
+
#: inc/settings/mollie_advanced_settings.php:40
|
1189 |
msgid "Austrian German"
|
1190 |
msgstr "Autrichien allemand"
|
1191 |
|
1192 |
+
#: src/Mollie/WC/Helper/Api.php:42
|
1193 |
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."
|
1194 |
+
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."
|
1195 |
|
1196 |
+
#: src/Mollie/WC/Helper/Api.php:40
|
1197 |
msgid "No API key provided. Please set your Mollie API keys below."
|
1198 |
+
msgstr "Aucune clé API n'a été fournie. Veuillez configurer vos clés API Mollie ci-dessous."
|
1199 |
|
1200 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
1201 |
msgid "Giropay"
|
1206 |
msgstr "EPS"
|
1207 |
|
1208 |
#. translators: Placeholder 1: Payment method title
|
1209 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:314
|
1210 |
msgid "Could not create %s renewal payment."
|
1211 |
+
msgstr "Impossible de créer un paiement de renouvellement %s. "
|
1212 |
|
1213 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:271
|
1214 |
msgid "The customer (%s) does not have a valid mandate."
|
1215 |
+
msgstr "Le client (%s) ne possède pas de mandat valide."
|
1216 |
|
1217 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:262
|
1218 |
msgid "The customer (%s) could not be used or found. "
|
1219 |
+
msgstr "Le client (%s) n’a pas pu être utilisé ou trouvé."
|
1220 |
|
1221 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
1222 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
1223 |
#. placeholder 5: refund ID
|
1224 |
+
#: src/Mollie/WC/Payment/Payment.php:511
|
1225 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
1226 |
+
msgstr "Remboursé %s%s%s - Paiement : %s, Remboursement : %s."
|
1227 |
|
1228 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1229 |
+
#: src/Mollie/WC/Payment/Object.php:637
|
1230 |
msgid "%s payment failed via Mollie (%s)."
|
1231 |
msgstr "Le paiement %s a échoué via Mollie (%s)."
|
1232 |
|
1233 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1145
|
1234 |
msgid "New chargeback %s processed! Order note and order status updated."
|
1235 |
+
msgstr "Nouveau remboursement %s effectué ! Note et état de la commande mis à jour."
|
1236 |
|
1237 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1009
|
1238 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
1239 |
+
msgstr "Nouveau remboursement %s effectué dans Mollie Dashboard ! Note de commande ajoutée, mais commande non mise à jour."
|
1240 |
|
1241 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
1242 |
#. Mollie currencies
|
1243 |
+
#: src/Mollie/WC/Gateway/Abstract.php:364
|
1244 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
1245 |
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."
|
1246 |
|
|
|
|
|
|
|
|
|
1247 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1248 |
+
#: src/Mollie/WC/Payment/Object.php:677
|
|
|
1249 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
1250 |
msgstr "Mollie webhook appelé, mais le paiement a également commencé via %s, le statut de la commande n'a pas pu être mis à jour. "
|
1251 |
|
1252 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1329
|
1253 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1338
|
|
|
|
|
|
|
|
|
|
|
1254 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
1255 |
msgstr "Votre paiement n'a pas abouti. Merci de compléter votre commande avec un autre moyen de paiement. "
|
1256 |
|
1257 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1258 |
+
#: src/Mollie/WC/Payment/Object.php:603
|
1259 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
1260 |
msgstr "Le paiement %s du renouvellement a échoué via Mollie (%s). Vous devrez examiner manuellement le paiement et ajuster les stocks de produits si vous les utilisez."
|
1261 |
|
1265 |
msgstr "Bancontact"
|
1266 |
|
1267 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1268 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1617
|
1269 |
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."
|
1270 |
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."
|
1271 |
|
1272 |
+
#: src/Mollie/WC/Gateway/Abstract.php:589
|
1273 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
1274 |
msgstr "La modification d'abonnement a échoué, aucun mandat valide n'a été trouvé. Passez une commande entièrement nouvelle pour modifier votre abonnement."
|
1275 |
|
|
|
|
|
|
|
|
|
1276 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1277 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1177
|
1278 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
1279 |
msgstr "Remboursement du paiement %s via Mollie (%s). Vous devrez examiner manuellement le paiement et ajuster les stocks de produits si vous les utilisez."
|
1280 |
|
1281 |
+
#: src/Mollie/WC/Gateway/Kbc.php:40
|
1282 |
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."
|
1283 |
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é. Uniquement si le menu déroulant « Afficher les banques KBC/CBC » ci-dessus est activé."
|
1284 |
|
1294 |
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."
|
1295 |
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é. Uniquement si le menu déroulant « Afficher les banques iDEAL » ci-dessus est activé."
|
1296 |
|
1297 |
+
#: src/Mollie/WC/Gateway/Ideal.php:35
|
1298 |
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."
|
1299 |
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."
|
1300 |
|
1301 |
+
#: src/Mollie/WC/Gateway/Ideal.php:33
|
1302 |
msgid "Show iDEAL banks dropdown"
|
1303 |
msgstr "Afficher le menu déroulant des banques iDEAL"
|
1304 |
|
1305 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:39
|
1306 |
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."
|
1307 |
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é."
|
1308 |
|
1314 |
msgid "Show gift cards dropdown"
|
1315 |
msgstr "Afficher le menu déroulant Cartes-cadeaux"
|
1316 |
|
1317 |
+
#: src/Mollie/WC/Gateway/Abstract.php:578
|
1318 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
1319 |
msgstr "Commande complétée en interne en raison d'un mandat valide existant chez Mollie."
|
1320 |
|
1321 |
+
#: inc/settings/mollie_advanced_settings.php:16
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1322 |
msgid "Cancelled"
|
1323 |
msgstr "Annulé"
|
1324 |
|
1325 |
+
#: inc/settings/mollie_advanced_settings.php:15
|
1326 |
msgid "Pending"
|
1327 |
msgstr "En attente"
|
1328 |
|
1329 |
+
#: inc/settings/mollie_advanced_settings.php:12
|
1330 |
msgid "Order status after cancelled payment"
|
1331 |
msgstr "État de commande après annulation de paiement"
|
1332 |
|
1333 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
1334 |
#. placeholder 3: consumer BIC
|
1335 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
1336 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124
|
1337 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
|
|
|
|
1338 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
1339 |
msgstr "Paiement complété par <strong>%s</strong> (IBAN (4 derniers chiffres) : %s, BIC : %s)"
|
1340 |
|
1341 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1653
|
1342 |
msgid "Your order has been cancelled."
|
1343 |
msgstr "Votre commande a été annulée."
|
1344 |
|
1345 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1626
|
1346 |
msgid ", payment pending."
|
1347 |
msgstr "Paiement en attente."
|
1348 |
|
1349 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1590
|
1350 |
msgid "Order cancelled"
|
1351 |
msgstr "Commande annulée"
|
1352 |
|
1353 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
1354 |
#. status, placeholder 3: payment ID
|
1355 |
+
#: src/Mollie/WC/Gateway/Abstract.php:895
|
1356 |
msgid "%s payment %s (%s), not processed."
|
1357 |
msgstr "Paiement %s %s (%s), non traité."
|
1358 |
|
1359 |
#. translators: Default gift card dropdown description, displayed above issuer
|
1360 |
#. drop down
|
1361 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:74
|
1362 |
msgid "Select your gift card"
|
1363 |
msgstr "Sélectionner votre carte cadeau"
|
1364 |
|
1365 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:58
|
1366 |
msgid "Gift cards"
|
1367 |
msgstr "Cartes cadeaux"
|
1368 |
|
1371 |
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."
|
1372 |
|
1373 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1374 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:165
|
1375 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
1376 |
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."
|
1377 |
|
1378 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1379 |
+
#: src/Mollie/WC/Payment/Payment.php:406
|
1380 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
1381 |
+
msgstr "%s le paiement a expiré (%s) mais n’a pas été annulé en raison d’un autre paiement en attente (%s)."
|
1382 |
|
1383 |
+
#: src/subscriptions_status_check_functions.php:186
|
1384 |
msgid "There are still some subscriptions left, use the tool again!"
|
1385 |
msgstr "Il reste encore des abonnements, utilisez à nouveau l'outil !"
|
1386 |
|
1387 |
+
#: src/subscriptions_status_check_functions.php:184
|
1388 |
msgid "No more subscriptions left to process!"
|
1389 |
msgstr "Plus d'abonnements à traiter !"
|
1390 |
|
1391 |
+
#: src/subscriptions_status_check_functions.php:171
|
1392 |
msgid "No subscriptions updated in this batch."
|
1393 |
msgstr "Aucun abonnement mis à jour dans ce lot."
|
1394 |
|
1395 |
+
#: src/subscriptions_status_check_functions.php:147
|
1396 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
1397 |
msgstr "Abonnement non mis à jour car il n'y avait pas de mandat valide chez Mollie. Traitée par l'outil « État des abonnements Mollie »."
|
1398 |
|
1399 |
+
#: src/subscriptions_status_check_functions.php:133
|
1400 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
1401 |
msgstr "Abonnement mis à jour à Renouvellement automatisé via Mollie, état activé. Traité par l'outil « État des abonnements Mollie »."
|
1402 |
|
1412 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
1413 |
msgstr "Vérification des abonnements dont la valeur « Renouvellement manuel » est incorrecte. Lisez d'abord le"
|
1414 |
|
1415 |
+
#: inc/settings/mollie_advanced_settings.php:65
|
1416 |
msgid "Store customer details at Mollie"
|
1417 |
msgstr "Enregistrer les détails du client chez Mollie"
|
1418 |
|
1419 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1420 |
+
#: src/Mollie/WC/Plugin.php:130
|
1421 |
msgid "%s payment failed (%s)."
|
1422 |
msgstr "Le paiement %s a échoué (%s)."
|
1423 |
|
1424 |
+
#: src/Mollie/WC/Gateway/Kbc.php:59
|
1425 |
msgid "KBC/CBC Payment Button"
|
1426 |
msgstr "Bouton de paiement KBC/CBC"
|
1427 |
|
1428 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:37 src/Mollie/WC/Gateway/Ideal.php:39
|
1429 |
+
#: src/Mollie/WC/Gateway/Kbc.php:38
|
1430 |
msgid "Issuers empty option"
|
1431 |
msgstr "Émetteurs option vide"
|
1432 |
|
1433 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:58
|
1434 |
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."
|
1435 |
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."
|
1436 |
|
1437 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:57
|
1438 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
1439 |
msgstr "Sauter l'écran de paiement Mollie lorsque le virement bancaire est sélectionné"
|
1440 |
|
1441 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:56
|
1442 |
msgid "Skip Mollie payment screen"
|
1443 |
msgstr "Sauter l'écran de paiement Mollie"
|
1444 |
|
1459 |
msgid "Mollie Payments for WooCommerce"
|
1460 |
msgstr "Mollie Payments pour WooCommerce"
|
1461 |
|
1462 |
+
#: src/Mollie/WC/Plugin.php:1320
|
1463 |
msgid "Logs"
|
1464 |
msgstr "Journaux"
|
1465 |
|
1481 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
1482 |
msgstr "Le plugin %s nécessite au moins la version WooCommerce %s, vous utilisez la version %s Veuillez mettre à jour votre plugin WooCommerce."
|
1483 |
|
1484 |
+
#: src/Mollie/WC/Helper/Settings.php:698
|
1485 |
msgid "Debug Log"
|
1486 |
msgstr "Journal de débogage"
|
1487 |
|
1488 |
+
#: inc/settings/mollie_advanced_settings.php:38
|
1489 |
msgid "French (Belgium)"
|
1490 |
+
msgstr "Français (Belgique)"
|
1491 |
|
1492 |
+
#: inc/settings/mollie_advanced_settings.php:37
|
1493 |
msgid "French"
|
1494 |
msgstr "Français"
|
1495 |
|
1496 |
+
#: inc/settings/mollie_advanced_settings.php:42
|
1497 |
msgid "Spanish"
|
1498 |
+
msgstr "Espagnol"
|
1499 |
|
1500 |
+
#: inc/settings/mollie_advanced_settings.php:39
|
1501 |
msgid "German"
|
1502 |
msgstr "Suisse allemand"
|
1503 |
|
1504 |
+
#: inc/settings/mollie_advanced_settings.php:34
|
1505 |
msgid "English"
|
1506 |
msgstr "Anglais"
|
1507 |
|
1508 |
+
#: inc/settings/mollie_advanced_settings.php:36
|
1509 |
msgid "Flemish (Belgium)"
|
1510 |
msgstr "Français (Belgique)"
|
1511 |
|
1512 |
+
#: inc/settings/mollie_advanced_settings.php:35
|
1513 |
msgid "Dutch"
|
1514 |
msgstr "Néerlandais"
|
1515 |
|
1516 |
+
#: inc/settings/mollie_advanced_settings.php:30
|
1517 |
msgid "Detect using browser language"
|
1518 |
msgstr "Détecter utilisant la langue du navigateur"
|
1519 |
|
1520 |
+
#: inc/settings/mollie_advanced_settings.php:23
|
1521 |
msgid "Payment screen language"
|
1522 |
msgstr "Langue de l'écran paiement"
|
1523 |
|
1524 |
+
#: src/Mollie/WC/Helper/Settings.php:694
|
1525 |
msgid "Test API key should start with test_"
|
1526 |
msgstr "La clé Test API devrait commencer par test_"
|
1527 |
|
1528 |
+
#: src/Mollie/WC/Helper/Settings.php:683
|
1529 |
msgid "Test API key"
|
1530 |
msgstr "Clé Test API"
|
1531 |
|
1532 |
+
#: src/Mollie/WC/Helper/Settings.php:679
|
1533 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
1534 |
msgstr "Activer le mode test si vous souhaitez tester le plugin sans utiliser les paiements réels."
|
1535 |
|
1536 |
+
#: src/Mollie/WC/Helper/Settings.php:676
|
1537 |
msgid "Enable test mode"
|
1538 |
msgstr "Activer le mode test"
|
1539 |
|
1540 |
+
#: src/Mollie/WC/Helper/Settings.php:672
|
1541 |
msgid "Live API key should start with live_"
|
1542 |
msgstr "La clé Live API devrait commencer par live_"
|
1543 |
|
1544 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
1545 |
#. %s's Will be replaced by a link to the Mollie profile
|
1546 |
+
#: src/Mollie/WC/Helper/Settings.php:666 src/Mollie/WC/Helper/Settings.php:688
|
1547 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
1548 |
msgstr "La clé API est utilisée pour se connecter à Mollie. Vous pouvez trouver votre clé <strong>%s</strong> API dans votre %sprofil Mollie%s"
|
1549 |
|
1550 |
+
#: src/Mollie/WC/Helper/Settings.php:661
|
1551 |
msgid "Live API key"
|
1552 |
msgstr "Clé Live API"
|
1553 |
|
1554 |
+
#: inc/settings/mollie_advanced_settings.php:8
|
1555 |
+
#: src/Mollie/WC/Helper/Settings.php:657
|
1556 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
1557 |
msgstr "Les options suivantes sont requises pour utiliser l'extension et sont utilisées par toutes les méthodes paiement de Mollie."
|
1558 |
|
1559 |
+
#: src/Mollie/WC/Plugin.php:1314
|
1560 |
msgid "Mollie settings"
|
1561 |
msgstr "Réglages Mollie"
|
1562 |
|
1563 |
+
#: src/Mollie/WC/Helper/Settings.php:641
|
|
|
1564 |
msgid "Log files are saved to <code>%s</code>"
|
1565 |
msgstr "Les fichiers journaux sont enregistrés dans <code>%s</code>"
|
1566 |
|
1567 |
+
#: src/Mollie/WC/Helper/Settings.php:635
|
|
|
|
|
|
|
|
|
1568 |
msgid "Log plugin events."
|
1569 |
msgstr "Journal extension événements."
|
1570 |
|
1571 |
+
#: src/Mollie/WC/Helper/Settings.php:582
|
1572 |
msgid "Edit"
|
1573 |
msgstr "Éditer"
|
1574 |
|
1575 |
+
#: src/Mollie/WC/Helper/Settings.php:559
|
1576 |
msgid "Refresh"
|
1577 |
msgstr "Actualiser"
|
1578 |
|
1579 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
1580 |
#. profile
|
1581 |
+
#: src/Mollie/WC/Helper/Settings.php:550
|
1582 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
1583 |
msgstr "Les méthodes de paiement suivantes sont activées dans votre profil Mollie %s%s:"
|
1584 |
|
1585 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1586 |
msgid "Gateway disabled"
|
1587 |
msgstr "Passerelle désactivée"
|
1588 |
|
1589 |
+
#: inc/settings/mollie_advanced_settings.php:72
|
1590 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1591 |
msgid "Enabled"
|
1592 |
msgstr "Activé"
|
1593 |
|
1594 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1595 |
msgid "Gateway enabled"
|
1596 |
msgstr "Passerelle désactivée"
|
1597 |
|
1598 |
+
#: src/Mollie/WC/Helper/Settings.php:495
|
1599 |
msgid "Connected"
|
1600 |
msgstr "Connecté"
|
1601 |
|
1602 |
+
#: src/Mollie/WC/Helper/Settings.php:494
|
1603 |
msgid "Mollie status:"
|
1604 |
msgstr "État Mollie :"
|
1605 |
|
1606 |
+
#: src/Mollie/WC/Helper/Settings.php:481
|
1607 |
msgid "Error"
|
1608 |
msgstr "Erreur"
|
1609 |
|
1610 |
+
#: src/Mollie/WC/Helper/Data.php:477
|
1611 |
msgid "Item #%s stock incremented from %s to %s."
|
1612 |
msgstr "Item #%s stock incrémenté de %s à %s."
|
1613 |
|
1621 |
|
1622 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1623 |
#. email, placeholder 3: PayPal transaction ID
|
1624 |
+
#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695
|
1625 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1626 |
msgstr "Paiement effectué par <strong>%s</strong> - %s (ID transaction PayPal : %s)"
|
1627 |
|
1628 |
+
#: src/Mollie/WC/Gateway/PayPal.php:43
|
1629 |
msgid "PayPal"
|
1630 |
msgstr "PayPal"
|
1631 |
|
1632 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
1633 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1634 |
#. drop down
|
1635 |
+
#: src/Mollie/WC/Gateway/Ideal.php:76 src/Mollie/WC/Gateway/Kbc.php:75
|
|
|
1636 |
msgid "Select your bank"
|
1637 |
msgstr "Sélectionnez votre banque"
|
1638 |
|
1639 |
+
#: src/Mollie/WC/Gateway/Ideal.php:60
|
1640 |
msgid "iDEAL"
|
1641 |
msgstr "iDEAL"
|
1642 |
|
1645 |
msgstr "Prélevement SEPA"
|
1646 |
|
1647 |
#. translators: Placeholder 1: card holder
|
1648 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:136
|
1649 |
msgid "Payment completed by <strong>%s</strong>"
|
1650 |
msgstr "Paiement effectué par <strong>%s</strong>"
|
1651 |
|
1652 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:84
|
1653 |
msgid "Credit card"
|
1654 |
msgstr "Carte de crédit"
|
1655 |
|
1657 |
msgid "Belfius Direct Net"
|
1658 |
msgstr "Belfius Direct Net"
|
1659 |
|
1660 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:235
|
1661 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1662 |
msgstr "Le paiement expirera le <strong>%s</strong>. Veuillez vous assurez que vous transférez le montant total avant cette date."
|
1663 |
|
1664 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:228
|
1665 |
msgid "The payment will expire on <strong>%s</strong>."
|
1666 |
msgstr "Le paiement expirera le <strong>%s</strong>."
|
1667 |
|
1668 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1669 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1670 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:214
|
1671 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1672 |
msgstr "S'il vous plaît fournir la référence de paiement <strong>%s</strong>"
|
1673 |
|
1674 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1675 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1676 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:209
|
1677 |
msgid "Payment reference: %s"
|
1678 |
msgstr "Référence de paiement : %s"
|
1679 |
|
1680 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:204
|
1681 |
msgid "BIC: %s"
|
1682 |
msgstr "BIC : %s"
|
1683 |
|
1684 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:203
|
1685 |
msgid "IBAN: <strong>%s</strong>"
|
1686 |
msgstr "IBAN : <strong>%s</strong>"
|
1687 |
|
1688 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1689 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:202
|
1690 |
msgid "Beneficiary: %s"
|
1691 |
msgstr "Bénéficiaire : %s"
|
1692 |
|
1693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
1694 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1695 |
msgstr "Veuillez terminer votre paiement en transférant le montant total sur le compte bancaire suivant :"
|
1696 |
|
1697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:138
|
1698 |
msgid "Bank Transfer"
|
1699 |
msgstr "Transfert Bancaire"
|
1700 |
|
1701 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1702 |
msgid "Disabled"
|
1703 |
msgstr "Désactivé"
|
1704 |
|
1705 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
1706 |
+
msgid "Number of DAYS after the payment will expire. Default <code>%d</code> days"
|
1707 |
msgstr "Nombre de jours après lequel le paiement expirera. Par défaut <code>%d</code> jours"
|
1708 |
|
1709 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:45
|
1710 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
1711 |
msgid "Expiry date"
|
1712 |
msgstr "Date d'expiration"
|
1713 |
|
1714 |
#. translators: Placeholder 1: payment method
|
1715 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1542
|
1716 |
msgid "Payment completed with <strong>%s</strong>"
|
1717 |
msgstr "Paiement complété par <strong>%s</strong>"
|
1718 |
|
1719 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1535
|
1720 |
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."
|
1721 |
msgstr "Nous n'avons pas reçu un statut de paiement définitif. Vous recevrez un email dès que nous recevrons une confirmation de la banque/vendeur."
|
1722 |
|
1723 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1530
|
1724 |
msgid "We have not received a definite payment status."
|
1725 |
msgstr "Nous n'avons pas reçu un état de paiement définitif."
|
1726 |
|
1727 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1315
|
1728 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1729 |
msgstr "Vous avez annulé votre paiement. Veuillez compléter votre commande avec une autre méthode de paiement."
|
1730 |
|
1731 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1732 |
+
#: src/Mollie/WC/Payment/Payment.php:429
|
1733 |
msgid "%s payment expired (%s)."
|
1734 |
msgstr "Paiement %s expiré (%s)."
|
1735 |
|
1736 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1737 |
+
#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:249
|
1738 |
msgid "Order completed using %s payment (%s)."
|
1739 |
msgstr "Commande terminée avec le paiement %s (%s)."
|
1740 |
|
1741 |
#. translators: Placeholder 1: Payment method title
|
1742 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:242
|
1743 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:298
|
1744 |
+
#: src/Mollie/WC/Gateway/Abstract.php:686
|
1745 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78
|
1746 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:122
|
1747 |
msgid "Could not create %s payment."
|
1748 |
msgstr "Impossible de créer un paiement %s."
|
1749 |
|
1750 |
+
#: src/Mollie/WC/Gateway/Abstract.php:671
|
1751 |
+
#: src/Mollie/WC/Gateway/Abstract.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1752 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1753 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1244
|
1754 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1619
|
1755 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2142
|
1756 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1757 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139
|
1758 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:422
|
1759 |
+
#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642
|
1760 |
+
#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316
|
1761 |
+
#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446
|
1762 |
+
#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936
|
1763 |
+
#: src/Mollie/WC/Payment/Payment.php:251 src/Mollie/WC/Payment/Payment.php:338
|
1764 |
+
#: src/Mollie/WC/Payment/Payment.php:408 src/Mollie/WC/Payment/Payment.php:431
|
1765 |
msgid "test mode"
|
1766 |
msgstr "Mode test"
|
1767 |
|
1768 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1769 |
+
#: src/Mollie/WC/Gateway/Abstract.php:669
|
1770 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1771 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:420
|
|
|
1772 |
msgid "%s payment started (%s)."
|
1773 |
msgstr "Le paiement %s a commencé (%s)."
|
1774 |
|
1775 |
+
#: src/Mollie/WC/Gateway/Abstract.php:659
|
1776 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1777 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:413
|
|
|
1778 |
msgid "Awaiting payment confirmation."
|
1779 |
msgstr "En attente de la confirmation de paiement."
|
1780 |
|
1781 |
+
#: src/Mollie/WC/Gateway/Abstract.php:526
|
1782 |
msgid "Could not load order %s"
|
1783 |
msgstr "Impossible de télécharger la commande %s."
|
1784 |
|
1785 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1786 |
#. be replaced by a link to the Mollie profile
|
1787 |
+
#: src/Mollie/WC/Gateway/Abstract.php:352
|
1788 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1789 |
+
msgstr "%s pas activé dans votre profil Mollie. Vous pouvez l'activer en modifiant votre %sprofil Mollie%s."
|
1790 |
|
1791 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1792 |
#. setting page
|
1793 |
+
#: src/Mollie/WC/Gateway/Abstract.php:340
|
1794 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1795 |
msgstr "Aucune clé API n'a été fournie. Veuillez d'abord %sconfigurer votre clé API Mollie%s."
|
1796 |
|
1797 |
+
#: src/Mollie/WC/Gateway/Abstract.php:221
|
1798 |
msgid "Gateway Disabled"
|
1799 |
msgstr "Passerelle désactivée"
|
1800 |
|
1801 |
+
#: src/Mollie/WC/Gateway/Abstract.php:338 src/Mollie/WC/Helper/Settings.php:545
|
1802 |
msgid "Test mode enabled."
|
1803 |
msgstr "Mode test activé."
|
1804 |
|
1805 |
+
#: src/Mollie/WC/Helper/Settings.php:295
|
1806 |
msgid "Hold Stock (minutes)"
|
1807 |
msgstr "Stock en attente (minutes)"
|
1808 |
|
1809 |
+
#: src/Mollie/WC/Helper/Settings.php:286
|
1810 |
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."
|
1811 |
msgstr "Certains modes de paiement prennent plus que quelques heures à se compléter. L'état initial de la commande est alors réglé sur «%s». Ceci permet de s'assurer que la commande n'est pas annulée lorsque le réglage %s est utilisé."
|
1812 |
|
1813 |
+
#: inc/settings/mollie_advanced_settings.php:29
|
1814 |
+
#: inc/settings/mollie_advanced_settings.php:90
|
1815 |
+
#: src/Mollie/WC/Helper/Settings.php:275
|
1816 |
msgid "default"
|
1817 |
msgstr "Par défaut"
|
1818 |
|
1819 |
+
#: src/Mollie/WC/Helper/Settings.php:267
|
1820 |
msgid "Initial order status"
|
1821 |
msgstr "État de la commande initiale"
|
1822 |
|
1823 |
+
#: inc/settings/mollie_applepay_settings.php:63
|
1824 |
+
#: src/Mollie/WC/Helper/Settings.php:84
|
1825 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1826 |
msgstr "Description de la méthode de paiement que le client verra sur votre caisse. Par défaut <code>%s</code>"
|
1827 |
|
1828 |
+
#: inc/settings/mollie_applepay_settings.php:60
|
1829 |
+
#: src/Mollie/WC/Helper/Settings.php:81
|
1830 |
msgid "Description"
|
1831 |
msgstr "Description"
|
1832 |
|
1833 |
+
#: src/Mollie/WC/Helper/Settings.php:99
|
1834 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1835 |
msgstr "Affichage logo sur la page de caisse. Par défaut <code>activé</code>"
|
1836 |
|
1837 |
+
#: inc/settings/mollie_applepay_settings.php:45
|
1838 |
+
#: inc/settings/mollie_applepay_settings.php:48
|
1839 |
+
#: src/Mollie/WC/Helper/Settings.php:94
|
1840 |
msgid "Display logo"
|
1841 |
msgstr "Afficher le logo"
|
1842 |
|
1843 |
+
#: inc/settings/mollie_applepay_settings.php:32
|
1844 |
+
#: src/Mollie/WC/Helper/Settings.php:71
|
1845 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1846 |
msgstr "Ceci contrôle le titre que l’utilisateur voit lors du paiement. Par défaut <code>%s</code>"
|
1847 |
|
1848 |
+
#: inc/settings/mollie_applepay_settings.php:29
|
1849 |
+
#: src/Mollie/WC/Helper/Settings.php:68
|
1850 |
msgid "Title"
|
1851 |
msgstr "Titre"
|
1852 |
|
1853 |
+
#. translators: Placeholder 1: enabled or disabled
|
1854 |
+
#: inc/settings/mollie_applepay_settings.php:21
|
1855 |
+
#: src/Mollie/WC/Helper/Settings.php:54
|
1856 |
msgid "Enable %s"
|
1857 |
msgstr "Activer %s"
|
1858 |
|
1859 |
+
#: inc/settings/mollie_applepay_settings.php:19
|
1860 |
+
#: src/Mollie/WC/Helper/Settings.php:48
|
1861 |
msgid "Enable/Disable"
|
1862 |
msgstr "Activer/Désactiver"
|
languages/mollie-payments-for-woocommerce-it_IT.mo
CHANGED
Binary file
|
languages/mollie-payments-for-woocommerce-it_IT.po
CHANGED
@@ -1,33 +1,695 @@
|
|
1 |
-
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2021-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
-
"Language:
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
|
14 |
-
#: src/Mollie/WC/Plugin.php:
|
15 |
-
msgid "
|
16 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
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."
|
20 |
-
msgstr "
|
21 |
|
22 |
-
#: src/Mollie/WC/Plugin.php:
|
23 |
msgid "Products voucher category"
|
24 |
-
msgstr "Categoria
|
25 |
|
26 |
-
#: src/Mollie/WC/Plugin.php:
|
27 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
28 |
-
msgstr "%1$sMollie Payments per WooCommerce%2$s La modalità di prova è attiva, %3$s disabilitala%4$s prima di
|
29 |
|
30 |
-
#: src/Mollie/WC/Plugin.php:
|
|
|
31 |
msgid "Mollie Settings"
|
32 |
msgstr "Impostazioni Mollie"
|
33 |
|
@@ -35,66 +697,60 @@ msgstr "Impostazioni Mollie"
|
|
35 |
#. drop down
|
36 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:82
|
37 |
msgid "voucher"
|
38 |
-
msgstr "
|
39 |
|
40 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:66
|
41 |
msgid "Voucher"
|
42 |
-
msgstr "
|
43 |
|
44 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
45 |
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"
|
46 |
-
msgstr "Per procedere all’elaborazione, tutti i prodotti nell’ordine devono avere una categoria.
|
47 |
|
48 |
-
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:
|
49 |
msgid "Select the default products category"
|
50 |
msgstr "Seleziona la categoria predefinita dei prodotti"
|
51 |
|
52 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
53 |
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"
|
54 |
-
msgstr "Abilita questa opzione se
|
55 |
|
56 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
57 |
msgid "Enable expiry date for payments"
|
58 |
-
msgstr "Abilita
|
59 |
|
60 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
61 |
msgid "Activate expiry date setting"
|
62 |
-
msgstr "Attiva l’impostazione
|
63 |
|
64 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
65 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
66 |
msgid " Remainder: %1$s %2$s %3$s."
|
67 |
msgstr " Promemoria: %1$s %2$s %3$s."
|
68 |
|
69 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
70 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
71 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
72 |
-
msgstr "Mollie - Dettagli
|
73 |
-
|
74 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:7
|
75 |
-
msgid "Enable the Apple Pay direct buy button"
|
76 |
-
msgstr "Abilita il pulsante acquisto diretto Apple Pay"
|
77 |
-
|
78 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
79 |
-
msgid "Enable Apple Pay Button"
|
80 |
-
msgstr "Abilita il pulsante Apple Pay"
|
81 |
|
82 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
83 |
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"
|
84 |
-
msgstr "%1$sErrore di
|
85 |
|
86 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
87 |
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"
|
88 |
-
msgstr "%1$sServer non conforme ai requisiti Apple%2$s Controlla %3$sla pagina dei requisiti Apple
|
89 |
|
90 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
91 |
msgid "Show Mastercard Icon"
|
92 |
-
msgstr "Mostra icona Mastercard"
|
93 |
|
94 |
#: inc/settings/mollie_components.php:94
|
95 |
msgctxt "Mollie Components Settings"
|
96 |
msgid "Transform Text "
|
97 |
-
msgstr "Trasforma testo
|
98 |
|
99 |
#: inc/settings/mollie_components.php:82
|
100 |
msgctxt "Mollie Components Settings"
|
@@ -109,56 +765,52 @@ msgstr "Aggiungi spaziatura interna ai componenti. Le unità ammesse includono `
|
|
109 |
#: inc/settings/mollie_components.php:35
|
110 |
msgctxt "Mollie Components Settings"
|
111 |
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
112 |
-
msgstr "Definisce
|
113 |
|
114 |
#: inc/settings/mollie_creditcard_icons_selector.php:51
|
115 |
msgid "Show VPay Icon"
|
116 |
-
msgstr "Mostra icona VPay"
|
117 |
|
118 |
#: inc/settings/mollie_creditcard_icons_selector.php:46
|
119 |
msgid "Show Visa Icon"
|
120 |
-
msgstr "Mostra icona Visa"
|
121 |
|
122 |
#: inc/settings/mollie_creditcard_icons_selector.php:36
|
123 |
msgid "Show Maestro Icon"
|
124 |
-
msgstr "Mostra icona Maestro"
|
125 |
|
126 |
#: inc/settings/mollie_creditcard_icons_selector.php:31
|
127 |
msgid "Show Carte Bancaire Icon"
|
128 |
-
msgstr "Mostra icona Carte Bancaire"
|
129 |
|
130 |
#: inc/settings/mollie_creditcard_icons_selector.php:26
|
131 |
msgid "Show Carta Si Icon"
|
132 |
-
msgstr "Mostra icona Carta Si"
|
133 |
|
134 |
#: inc/settings/mollie_creditcard_icons_selector.php:21
|
135 |
msgid "Show American Express Icon"
|
136 |
-
msgstr "Mostra icona American Express"
|
137 |
|
138 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
139 |
msgid "Show customized creditcard icons on checkout page"
|
140 |
-
msgstr "Mostra icone personalizzate
|
141 |
|
142 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
143 |
msgid "Enable Icons Selector"
|
144 |
-
msgstr "Abilita
|
145 |
|
146 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
147 |
msgid "Customize Icons"
|
148 |
-
msgstr "
|
149 |
|
150 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
151 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
152 |
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)."
|
153 |
-
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)."
|
154 |
|
155 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
156 |
msgid "Failed switching subscriptions, no valid mandate."
|
157 |
-
msgstr "Il cambio
|
158 |
-
|
159 |
-
#: inc/settings/mollie_components_enabler.php:7
|
160 |
-
msgid "Enable the Mollie Components for this Gateway"
|
161 |
-
msgstr "Abilita i componenti Mollie per questo gateway"
|
162 |
|
163 |
#: inc/settings/mollie_components_enabler.php:6
|
164 |
msgid "Enable Mollie Components"
|
@@ -289,56 +941,58 @@ msgctxt "Mollie Components Settings"
|
|
289 |
msgid "Base Styles"
|
290 |
msgstr "Stili di base"
|
291 |
|
292 |
-
#: src/Mollie/WC/Plugin.php:
|
293 |
msgid "An unknown error occurred, please check the card fields."
|
294 |
msgstr "Si è verificato un errore sconosciuto, controllare i campi carta di credito."
|
295 |
|
296 |
-
#: src/Mollie/WC/Plugin.php:
|
297 |
msgid "Verification Code"
|
298 |
msgstr "Codice di verifica"
|
299 |
|
300 |
-
#: src/Mollie/WC/Plugin.php:
|
301 |
msgid "Expiry Date"
|
302 |
msgstr "Data di scadenza"
|
303 |
|
304 |
-
#: src/Mollie/WC/Plugin.php:
|
305 |
msgid "Card Number"
|
306 |
msgstr "Numero carta"
|
307 |
|
308 |
-
#: src/Mollie/WC/Plugin.php:
|
309 |
msgid "Card Holder"
|
310 |
msgstr "Titolare della carta"
|
311 |
|
|
|
312 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
|
|
313 |
msgid "Mollie Components"
|
314 |
msgstr "Componenti Mollie"
|
315 |
|
316 |
-
#: src/Mollie/WC/Plugin.php:
|
317 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
318 |
msgstr "%1$s voci cancellate in WooCommerce e su Mollie."
|
319 |
|
320 |
-
#: src/Mollie/WC/Plugin.php:
|
321 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
322 |
msgstr "%1$s voci rimborsate in WooCommerce e su Mollie."
|
323 |
|
324 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
325 |
msgid "Empty WooCommerce order items or mollie order lines."
|
326 |
-
msgstr "Voci dell’ordine WooCommerce
|
327 |
|
328 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
329 |
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
330 |
-
msgstr "Impossibile recuperare l’ID voce dell’ordine relativo alla voce remota: %1$s.
|
331 |
|
332 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
333 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
334 |
-
msgstr "Una delle voci dell’ordine WooCommerce non ha il meta valore
|
335 |
|
336 |
-
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:
|
337 |
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."
|
338 |
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."
|
339 |
|
340 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
341 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:
|
342 |
msgid "Order completed using %1$s payment (%2$s)."
|
343 |
msgstr "Ordine completato utilizzando il %1$s pagamento (%2$s)."
|
344 |
|
@@ -375,39 +1029,34 @@ msgstr "Per accettare pagamenti tramite Przelewy24, è richiesta un’email del
|
|
375 |
|
376 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
377 |
msgid "Przelewy24"
|
378 |
-
msgstr "Przelewy24"
|
379 |
|
380 |
-
#:
|
381 |
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."
|
382 |
msgstr "Mollie Payments per WooCommerce richiede l’estensione JSON per PHP. Abilitala nel tuo server o chiedi al tuo webhoster di abilitarla per te."
|
383 |
|
384 |
-
#: src/Mollie/WC/Payment/Order.php:
|
385 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
386 |
-
msgstr "Rimborso dell’importo di %s%s effettuato in WooCommerce e su Mollie.%s ID rimborso: %s."
|
387 |
|
388 |
-
#: src/Mollie/WC/Payment/Order.php:
|
389 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
390 |
-
msgstr "%sx %s rimborsato per %s%s in WooCommerce e su Mollie.%s ID rimborso: %s."
|
391 |
|
392 |
-
#: src/Mollie/WC/Payment/Order.php:
|
393 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
394 |
-
msgstr "%sx %s annullato per %s%s in WooCommerce e su Mollie."
|
395 |
|
396 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
397 |
-
#: src/Mollie/WC/Payment/Order.php:
|
398 |
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!"
|
399 |
-
msgstr "Ordine completato su Mollie per %s ordine (%s).
|
400 |
|
401 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
402 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
403 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
404 |
msgstr "%s pagamento riaccreditato tramite Mollie (%s). Stato dell’abbonamento aggiornato, ti preghiamo di rivederlo (e adattare lo stock di prodotti se lo usi)."
|
405 |
|
406 |
-
#: src/Mollie/WC/Helper/Settings.php:623
|
407 |
-
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
408 |
-
msgstr "Per accettare pagamenti Klarna tramite Mollie, tutti i campi del checkout predefiniti di WooCommerce dovrebbero essere abilitati e richiesti. Assicurati che sia così."
|
409 |
-
|
410 |
-
#: src/Mollie/WC/Payment/Payment.php:39
|
411 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
412 |
msgid "Order"
|
413 |
msgstr "Ordine"
|
@@ -418,42 +1067,38 @@ msgid "%s payment (%s) cancelled ."
|
|
418 |
msgstr "%s pagamento (%s) annullato."
|
419 |
|
420 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
421 |
-
#: src/Mollie/WC/Payment/Order.php:
|
422 |
msgid "%s order (%s) expired ."
|
423 |
msgstr "%s ordine (%s) scaduto."
|
424 |
|
425 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
426 |
-
#: src/Mollie/WC/Payment/Order.php:
|
427 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
428 |
-
msgstr "%s ordine scaduto (%s) ma non annullato perché c’è un altro pagamento in sospeso (%s)."
|
429 |
|
430 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
431 |
-
#: src/Mollie/WC/Payment/Order.php:
|
432 |
msgid "%s order (%s) cancelled ."
|
433 |
msgstr "%s ordine (%s) annullato."
|
434 |
|
435 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
436 |
-
#: src/Mollie/WC/Payment/Order.php:
|
437 |
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."
|
438 |
-
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
|
439 |
-
|
440 |
-
#: src/Mollie/WC/Helper/Settings.php:648
|
441 |
-
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
442 |
-
msgstr "Per accettare pagamenti Klarna tramite Mollie, devi utilizzare la versione WooCommerce 3.0 o superiore, attualmente stai utilizzando la versione %s."
|
443 |
|
444 |
-
#:
|
445 |
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."
|
446 |
-
msgstr "È richiesto l
|
447 |
|
448 |
-
#:
|
449 |
msgid "Automatically send WordPress language"
|
450 |
msgstr "Invia automaticamente la lingua di WordPress"
|
451 |
|
452 |
-
#:
|
453 |
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."
|
454 |
-
msgstr "Stato degli ordini quando un pagamento (non un ordine Mollie attraverso la Orders API) viene annullato
|
455 |
|
456 |
-
#: src/Mollie/WC/Helper/OrderLines.php:
|
457 |
msgid "Shipping"
|
458 |
msgstr "Spedizione"
|
459 |
|
@@ -472,7 +1117,7 @@ msgstr "Klarna Pay later"
|
|
472 |
|
473 |
#: src/Mollie/WC/Helper/Status.php:131
|
474 |
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
475 |
-
msgstr "Mollie Payments per WooCommerce richiede che le funzioni PHP cURL siano disponibili. Assicurati che queste funzioni siano disponibili."
|
476 |
|
477 |
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
478 |
#. version
|
@@ -480,77 +1125,77 @@ msgstr "Mollie Payments per WooCommerce richiede che le funzioni PHP cURL siano
|
|
480 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
481 |
msgstr "Mollie Payments per WooCommerce richiede PHP %s o superiore, tu hai PHP %s. Effettua l’aggiornamento e visualizza %squeste FAQ%s"
|
482 |
|
483 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
484 |
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."
|
485 |
-
msgstr "
|
486 |
|
487 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
488 |
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."
|
489 |
-
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”."
|
490 |
|
491 |
-
#:
|
492 |
msgid "Lithuanian"
|
493 |
msgstr "Lituano"
|
494 |
|
495 |
-
#:
|
496 |
msgid "Latvian"
|
497 |
msgstr "Lettone"
|
498 |
|
499 |
-
#:
|
500 |
msgid "Polish"
|
501 |
msgstr "Polacco"
|
502 |
|
503 |
-
#:
|
504 |
msgid "Hungarian"
|
505 |
msgstr "Ungherese"
|
506 |
|
507 |
-
#:
|
508 |
msgid "Icelandic"
|
509 |
msgstr "Islandese"
|
510 |
|
511 |
-
#:
|
512 |
msgid "Danish"
|
513 |
msgstr "Danese"
|
514 |
|
515 |
-
#:
|
516 |
msgid "Finnish"
|
517 |
msgstr "Finlandese"
|
518 |
|
519 |
-
#:
|
520 |
msgid "Swedish"
|
521 |
msgstr "Svedese"
|
522 |
|
523 |
-
#:
|
524 |
msgid "Norwegian"
|
525 |
msgstr "Norvegese"
|
526 |
|
527 |
-
#:
|
528 |
msgid "Italian"
|
529 |
msgstr "Italiano"
|
530 |
|
531 |
-
#:
|
532 |
msgid "Portuguese"
|
533 |
msgstr "Portoghese"
|
534 |
|
535 |
-
#:
|
536 |
msgid "Catalan"
|
537 |
msgstr "Catalano"
|
538 |
|
539 |
-
#:
|
540 |
msgid "Swiss German"
|
541 |
msgstr "Tedesco svizzero"
|
542 |
|
543 |
-
#:
|
544 |
msgid "Austrian German"
|
545 |
msgstr "Tedesco austriaco"
|
546 |
|
547 |
-
#: src/Mollie/WC/Helper/Api.php:
|
548 |
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."
|
549 |
-
msgstr "Chiave/i API non valida/e. Acquisiscile sulla
|
550 |
|
551 |
-
#: src/Mollie/WC/Helper/Api.php:
|
552 |
msgid "No API key provided. Please set your Mollie API keys below."
|
553 |
-
msgstr "Nessuna chiave
|
554 |
|
555 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
556 |
msgid "Giropay"
|
@@ -561,66 +1206,56 @@ msgid "EPS"
|
|
561 |
msgstr "EPS"
|
562 |
|
563 |
#. translators: Placeholder 1: Payment method title
|
564 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
565 |
msgid "Could not create %s renewal payment."
|
566 |
-
msgstr "Non è stato possibile creare %s il pagamento del rinnovo."
|
567 |
|
568 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
569 |
msgid "The customer (%s) does not have a valid mandate."
|
570 |
msgstr "Il cliente (%s) non ha un mandato valido."
|
571 |
|
572 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
573 |
msgid "The customer (%s) could not be used or found. "
|
574 |
-
msgstr "Non è stato possibile trovare o utilizzare il cliente (%s).
|
575 |
|
576 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
577 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
578 |
#. placeholder 5: refund ID
|
579 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
580 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
581 |
msgstr "Rimborsato %s%s%s - Pagamento: %s, rimborso: %s"
|
582 |
|
583 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
584 |
-
#: src/Mollie/WC/Payment/
|
585 |
msgid "%s payment failed via Mollie (%s)."
|
586 |
msgstr "%s pagamento non riuscito tramite Mollie (%s)."
|
587 |
|
588 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
589 |
msgid "New chargeback %s processed! Order note and order status updated."
|
590 |
-
msgstr "
|
591 |
|
592 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
593 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
594 |
-
msgstr "Nuovo rimborso %s elaborato nella
|
595 |
|
596 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
597 |
#. Mollie currencies
|
598 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
599 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
600 |
-
msgstr "Valuta negozio corrente %s non supportata da Mollie. Leggi di più sulle %svalute supportate e sui metodi di pagamento.%s
|
601 |
-
|
602 |
-
#: mollie-payments-for-woocommerce.php:138
|
603 |
-
msgid "Mollie Payments for WooCommerce 4.0 requires PHP 5.6 or higher. Your PHP version is outdated. Upgrade your PHP version and view %sthis FAQ%s."
|
604 |
-
msgstr "Mollie Payments per WooCommerce 4.0 richiede PHP 5.6 o superiore. La tua versione PHP è obsoleta. Aggiornata la tua versione PHP e visualizza %squeste FAQ%s."
|
605 |
|
606 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
607 |
-
#: src/Mollie/WC/Payment/
|
608 |
-
#: src/Mollie/WC/Payment/Payment.php:328 src/Mollie/WC/Payment/Payment.php:491
|
609 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
610 |
-
msgstr "Il webhook Mollie ha chiamato, ma il pagamento è stato avviato anche tramite %s, quindi lo stato dell’ordine non è aggiornato."
|
611 |
-
|
612 |
-
#. translators: Placeholder 1: enabled or disabled
|
613 |
-
#: src/Mollie/WC/Helper/Settings.php:465
|
614 |
-
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
615 |
-
msgstr "Mollie dovrebbe memorizzare nome e indirizzo email dei clienti per pagamenti con un solo clic? Predefinito <code>%s</code>. Richiesto se vengono utilizzati abbonamenti a WooCommerce!"
|
616 |
|
617 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
618 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
619 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
620 |
-
msgstr "Il tuo pagamento non è riuscito. Completa l’ordine con una modalità di pagamento differente."
|
621 |
|
622 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
623 |
-
#: src/Mollie/WC/Payment/
|
624 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
625 |
msgstr "%s pagamento del rinnovo non riuscito tramite Mollie (%s). Dovrai rivedere manualmente il pagamento e adattare gli stock di prodotti se li usi."
|
626 |
|
@@ -630,26 +1265,22 @@ msgid "Bancontact"
|
|
630 |
msgstr "Bancontact"
|
631 |
|
632 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
633 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
634 |
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."
|
635 |
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."
|
636 |
|
637 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
638 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
639 |
-
msgstr "
|
640 |
-
|
641 |
-
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
642 |
-
msgid "ING Home'Pay"
|
643 |
-
msgstr "ING Home'Pay"
|
644 |
|
645 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
646 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
647 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
648 |
-
msgstr "%s pagamento riaccreditato tramite Mollie (%s). Dovrai rivedere manualmente il pagamento (e adattare
|
649 |
|
650 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
651 |
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."
|
652 |
-
msgstr "Questo testo verrà visualizzato come prima opzione nel menu a tendina degli emittenti KBC/CBC, se non viene inserito nulla, verrà mostrato
|
653 |
|
654 |
#: src/Mollie/WC/Gateway/Kbc.php:34
|
655 |
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."
|
@@ -661,17 +1292,17 @@ msgstr "Mostra il menu a tendina delle banche KBC/CBC"
|
|
661 |
|
662 |
#: src/Mollie/WC/Gateway/Ideal.php:41
|
663 |
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."
|
664 |
-
msgstr "Questo testo verrà visualizzato come prima opzione nel menu a tendina degli emittenti iDEAL, se non viene inserito nulla, verrà mostrato
|
665 |
|
666 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
667 |
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."
|
668 |
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."
|
669 |
|
670 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
671 |
msgid "Show iDEAL banks dropdown"
|
672 |
msgstr "Mostra il menu a tendina delle banche iDEAL"
|
673 |
|
674 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
675 |
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."
|
676 |
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."
|
677 |
|
@@ -683,97 +1314,89 @@ msgstr "Se si disabilita questo, un menu a tendina con varie carte regalo non ve
|
|
683 |
msgid "Show gift cards dropdown"
|
684 |
msgstr "Mostra menu a tendina delle carte regalo"
|
685 |
|
686 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
687 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
688 |
msgstr "Ordine completato internamente sulla base di un mandato valido su Mollie."
|
689 |
|
690 |
-
#:
|
691 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s This version requires WooCommerce 2.2 or newer. Please %3$supdate WooCommerce to version 2.2 or newer »%4$s"
|
692 |
-
msgstr "%1$sMollie Payments per WooCommerce non è attiva.%2$s Questa versione richiede WooCommerce 2.2 o superiore. Ti preghiamo di %3$saggiornare WooCommerce alla versione 2.2 o superiore »%4$s"
|
693 |
-
|
694 |
-
#: mollie-payments-for-woocommerce.php:164
|
695 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for it to work. Please %5$sinstall & activate WooCommerce »%6$s"
|
696 |
-
msgstr "%1$sMollie Payments per WooCommerce non è attiva.%2$s Il plugin %3$sWooCommerce%4$s deve essere attivo perché funzioni. Ti preghiamo di %5$sinstallare & attivare WooCommerce »%6$s"
|
697 |
-
|
698 |
-
#: src/Mollie/WC/Helper/Settings.php:414
|
699 |
msgid "Cancelled"
|
700 |
msgstr "Annullato"
|
701 |
|
702 |
-
#:
|
703 |
msgid "Pending"
|
704 |
msgstr "In sospeso"
|
705 |
|
706 |
-
#:
|
707 |
msgid "Order status after cancelled payment"
|
708 |
msgstr "Stato dell’ordine dopo l’annullamento del pagamento"
|
709 |
|
710 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
711 |
#. placeholder 3: consumer BIC
|
|
|
|
|
712 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
713 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:185
|
714 |
-
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:121
|
715 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
716 |
msgstr "Pagamento completato da <strong>%s</strong> (IBAN (ultime 4 cifre): %s, BIC: %s)"
|
717 |
|
718 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
719 |
msgid "Your order has been cancelled."
|
720 |
msgstr "Il tuo ordine è stato annullato."
|
721 |
|
722 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
723 |
msgid ", payment pending."
|
724 |
msgstr ", pagamento in sospeso."
|
725 |
|
726 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
727 |
msgid "Order cancelled"
|
728 |
msgstr "Ordine annullato"
|
729 |
|
730 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
731 |
#. status, placeholder 3: payment ID
|
732 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
733 |
msgid "%s payment %s (%s), not processed."
|
734 |
msgstr "%s pagamento %s (%s), non elaborato."
|
735 |
|
736 |
#. translators: Default gift card dropdown description, displayed above issuer
|
737 |
#. drop down
|
738 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
739 |
msgid "Select your gift card"
|
740 |
msgstr "Seleziona la tua carta regalo"
|
741 |
|
742 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
743 |
msgid "Gift cards"
|
744 |
msgstr "Carte regalo"
|
745 |
|
746 |
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
747 |
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."
|
748 |
-
msgstr "L
|
749 |
|
750 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
751 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
752 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
753 |
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."
|
754 |
|
755 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
756 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
757 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
758 |
-
msgstr "%s pagamento scaduto (%s) ma non annullato perché c’è un altro pagamento in sospeso (%s)."
|
759 |
|
760 |
-
#: src/subscriptions_status_check_functions.php:
|
761 |
msgid "There are still some subscriptions left, use the tool again!"
|
762 |
-
msgstr "Ci sono ancora
|
763 |
|
764 |
-
#: src/subscriptions_status_check_functions.php:
|
765 |
msgid "No more subscriptions left to process!"
|
766 |
msgstr "Non ci sono più abbonamenti per l’elaborazione!"
|
767 |
|
768 |
-
#: src/subscriptions_status_check_functions.php:
|
769 |
msgid "No subscriptions updated in this batch."
|
770 |
msgstr "Nessun abbonamento aggiornato in questo batch."
|
771 |
|
772 |
-
#: src/subscriptions_status_check_functions.php:
|
773 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
774 |
msgstr "Abbonamento non aggiornato perché su Mollie non era presente un mandato valido. Elaborato dallo strumento 'Stato degli abbonamenti Mollie'."
|
775 |
|
776 |
-
#: src/subscriptions_status_check_functions.php:
|
777 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
778 |
msgstr "Abbonamento aggiornato su rinnovo Automatico tramite Mollie, stato impostato su Attivo. Elaborato dallo strumento 'Stato degli abbonamenti Mollie'."
|
779 |
|
@@ -787,35 +1410,35 @@ msgstr "Stato degli abbonamenti Mollie"
|
|
787 |
|
788 |
#: src/subscriptions_status_check_functions.php:30
|
789 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
790 |
-
msgstr "Controlla gli abbonamenti impostati in modo errato su 'Rinnovo manuale
|
791 |
|
792 |
-
#:
|
793 |
msgid "Store customer details at Mollie"
|
794 |
msgstr "Memorizza dettagli cliente su Mollie"
|
795 |
|
796 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
797 |
-
#: src/Mollie/WC/Plugin.php:
|
798 |
msgid "%s payment failed (%s)."
|
799 |
msgstr "%s pagamento non riuscito (%s)."
|
800 |
|
801 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
802 |
msgid "KBC/CBC Payment Button"
|
803 |
msgstr "Pulsante di pagamento KBC/CBC"
|
804 |
|
805 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
806 |
-
#: src/Mollie/WC/Gateway/
|
807 |
msgid "Issuers empty option"
|
808 |
msgstr "Opzione emittenti vuota"
|
809 |
|
810 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
811 |
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."
|
812 |
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."
|
813 |
|
814 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
815 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
816 |
msgstr "Salta la schermata di pagamento Mollie quando viene selezionato il bonifico bancario"
|
817 |
|
818 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
819 |
msgid "Skip Mollie payment screen"
|
820 |
msgstr "Salta la schermata di pagamento Mollie"
|
821 |
|
@@ -836,7 +1459,7 @@ msgstr "Mollie"
|
|
836 |
msgid "Mollie Payments for WooCommerce"
|
837 |
msgstr "Mollie Payments per WooCommerce"
|
838 |
|
839 |
-
#: src/Mollie/WC/Plugin.php:
|
840 |
msgid "Logs"
|
841 |
msgstr "Log"
|
842 |
|
@@ -846,7 +1469,7 @@ msgstr "Mollie Payments per WooCommerce richiede l’estensione PHP per cURL. Ab
|
|
846 |
|
847 |
#: src/Mollie/WC/Helper/Status.php:116
|
848 |
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
849 |
-
msgstr "Mollie Payments per WooCommerce richiede l’estensione PHP per JSON. Abilita l’estensione
|
850 |
|
851 |
#: src/Mollie/WC/Helper/Status.php:80
|
852 |
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
@@ -856,139 +1479,135 @@ msgstr "Client dell’API Mollie non installato. Assicurati che il plugin sia in
|
|
856 |
#. version, placeholder 3: used WooCommerce version
|
857 |
#: src/Mollie/WC/Helper/Status.php:67
|
858 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
859 |
-
msgstr "Il %s plugin richiede almeno la versione WooCommerce %s, stai utilizzando la versione %s.
|
860 |
|
861 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
862 |
msgid "Debug Log"
|
863 |
msgstr "Log di debug"
|
864 |
|
865 |
-
#:
|
866 |
msgid "French (Belgium)"
|
867 |
msgstr "Francese (Belgio)"
|
868 |
|
869 |
-
#:
|
870 |
msgid "French"
|
871 |
msgstr "Francese"
|
872 |
|
873 |
-
#:
|
874 |
msgid "Spanish"
|
875 |
msgstr "Spagnolo"
|
876 |
|
877 |
-
#:
|
878 |
msgid "German"
|
879 |
msgstr "Tedesco"
|
880 |
|
881 |
-
#:
|
882 |
msgid "English"
|
883 |
msgstr "Inglese"
|
884 |
|
885 |
-
#:
|
886 |
msgid "Flemish (Belgium)"
|
887 |
msgstr "Fiammingo (Belgio)"
|
888 |
|
889 |
-
#:
|
890 |
msgid "Dutch"
|
891 |
msgstr "Olandese"
|
892 |
|
893 |
-
#:
|
894 |
msgid "Detect using browser language"
|
895 |
msgstr "Rileva utilizzando la lingua del browser"
|
896 |
|
897 |
-
#:
|
898 |
msgid "Payment screen language"
|
899 |
msgstr "Lingua della schermata di pagamento"
|
900 |
|
901 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
902 |
msgid "Test API key should start with test_"
|
903 |
msgstr "La chiave API di prova dovrebbe iniziare con test_"
|
904 |
|
905 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
906 |
msgid "Test API key"
|
907 |
msgstr "Chiave API di prova"
|
908 |
|
909 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
910 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
911 |
msgstr "Abilita la modalità di prova se desideri testare il plugin senza utilizzare pagamenti reali."
|
912 |
|
913 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
914 |
msgid "Enable test mode"
|
915 |
msgstr "Abilita modalità di prova"
|
916 |
|
917 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
918 |
msgid "Live API key should start with live_"
|
919 |
msgstr "La chiave API live dovrebbe iniziare con live_"
|
920 |
|
921 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
922 |
#. %s's Will be replaced by a link to the Mollie profile
|
923 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
924 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
925 |
msgstr "La chiave API viene utilizzata per il collegamento a Mollie. Puoi trovare la tua <strong>%s</strong> chiave API nel tuo %sprofilo Mollie%s"
|
926 |
|
927 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
928 |
msgid "Live API key"
|
929 |
msgstr "Chiave API live"
|
930 |
|
931 |
-
#:
|
|
|
932 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
933 |
msgstr "Le seguenti opzioni sono necessarie per utilizzare il plugin e vengono utilizzate da tutte le modalità di pagamento Mollie"
|
934 |
|
935 |
-
#: src/Mollie/WC/
|
936 |
msgid "Mollie settings"
|
937 |
msgstr "Impostazioni Mollie"
|
938 |
|
939 |
-
|
940 |
-
#: src/Mollie/WC/Helper/Settings.php:351
|
941 |
msgid "Log files are saved to <code>%s</code>"
|
942 |
msgstr "I file di log sono archiviati in <code>%s</code>"
|
943 |
|
944 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
945 |
-
msgid "View logs"
|
946 |
-
msgstr "Visualizza log"
|
947 |
-
|
948 |
-
#: src/Mollie/WC/Helper/Settings.php:340
|
949 |
msgid "Log plugin events."
|
950 |
msgstr "Eventi plugin di log."
|
951 |
|
952 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
953 |
msgid "Edit"
|
954 |
msgstr "Modifica"
|
955 |
|
956 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
957 |
msgid "Refresh"
|
958 |
msgstr "Aggiorna"
|
959 |
|
960 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
961 |
#. profile
|
962 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
963 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
964 |
msgstr "Le seguenti modalità di pagamento sono attivate nel tuo %sprofilo Mollie%s:"
|
965 |
|
966 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
967 |
msgid "Gateway disabled"
|
968 |
msgstr "Gateway disabilitato"
|
969 |
|
970 |
-
|
971 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
972 |
msgid "Enabled"
|
973 |
msgstr "Abilitato"
|
974 |
|
975 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
976 |
msgid "Gateway enabled"
|
977 |
msgstr "Gateway abilitato"
|
978 |
|
979 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
980 |
msgid "Connected"
|
981 |
msgstr "Collegato"
|
982 |
|
983 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
984 |
msgid "Mollie status:"
|
985 |
msgstr "Stato Mollie:"
|
986 |
|
987 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
988 |
msgid "Error"
|
989 |
msgstr "Errore"
|
990 |
|
991 |
-
#: src/Mollie/WC/Helper/Data.php:
|
992 |
msgid "Item #%s stock incremented from %s to %s."
|
993 |
msgstr "Articolo #%s giacenza incrementata da %s a %s."
|
994 |
|
@@ -1002,22 +1621,22 @@ msgstr "paysafecard"
|
|
1002 |
|
1003 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1004 |
#. email, placeholder 3: PayPal transaction ID
|
1005 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1006 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1007 |
msgstr "Pagamento completato da <strong>%s</strong> - %s (ID transazione PayPal: %s)"
|
1008 |
|
1009 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1010 |
msgid "PayPal"
|
1011 |
msgstr "PayPal"
|
1012 |
|
|
|
1013 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1014 |
#. drop down
|
1015 |
-
|
1016 |
-
#: src/Mollie/WC/Gateway/Kbc.php:77 src/Mollie/WC/Gateway/Ideal.php:77
|
1017 |
msgid "Select your bank"
|
1018 |
msgstr "Seleziona la tua banca"
|
1019 |
|
1020 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
1021 |
msgid "iDEAL"
|
1022 |
msgstr "iDEAL"
|
1023 |
|
@@ -1026,11 +1645,11 @@ msgid "SEPA Direct Debit"
|
|
1026 |
msgstr "Addebito diretto SEPA"
|
1027 |
|
1028 |
#. translators: Placeholder 1: card holder
|
1029 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1030 |
msgid "Payment completed by <strong>%s</strong>"
|
1031 |
msgstr "Pagamento completato da <strong>%s</strong>"
|
1032 |
|
1033 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1034 |
msgid "Credit card"
|
1035 |
msgstr "Carta di credito"
|
1036 |
|
@@ -1038,193 +1657,206 @@ msgstr "Carta di credito"
|
|
1038 |
msgid "Belfius Direct Net"
|
1039 |
msgstr "Belfius Direct Net"
|
1040 |
|
1041 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1042 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1043 |
msgstr "Il pagamento scadrà il <strong>%s</strong>. Assicurati di effettuare il bonifico per l’importo totale prima di questa data."
|
1044 |
|
1045 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1046 |
msgid "The payment will expire on <strong>%s</strong>."
|
1047 |
msgstr "Il pagamento scadrà il <strong>%s</strong>."
|
1048 |
|
1049 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1050 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1051 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1052 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1053 |
msgstr "Ti preghiamo di fornire il riferimento del pagamento <strong>%s</strong>"
|
1054 |
|
1055 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1056 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1057 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1058 |
msgid "Payment reference: %s"
|
1059 |
msgstr "Riferimento del pagamento: %s"
|
1060 |
|
1061 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1062 |
msgid "BIC: %s"
|
1063 |
msgstr "BIC: %s"
|
1064 |
|
1065 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1066 |
msgid "IBAN: <strong>%s</strong>"
|
1067 |
msgstr "IBAN: <strong>%s</strong>"
|
1068 |
|
1069 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1070 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1071 |
msgid "Beneficiary: %s"
|
1072 |
msgstr "Beneficiario: %s"
|
1073 |
|
1074 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1075 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1076 |
msgstr "Si prega di completare il pagamento trasferendo l'importo totale sul seguente conto bancario:"
|
1077 |
|
1078 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1079 |
msgid "Bank Transfer"
|
1080 |
msgstr "Bonifico bancario"
|
1081 |
|
1082 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
1083 |
msgid "Disabled"
|
1084 |
msgstr "Disabilitato"
|
1085 |
|
1086 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1087 |
-
msgid "Number of
|
1088 |
-
msgstr "Numero di
|
1089 |
|
1090 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
1091 |
msgid "Expiry date"
|
1092 |
msgstr "Data di scadenza"
|
1093 |
|
1094 |
#. translators: Placeholder 1: payment method
|
1095 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1096 |
msgid "Payment completed with <strong>%s</strong>"
|
1097 |
msgstr "Pagamento completato con <strong>%s</strong>"
|
1098 |
|
1099 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1100 |
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."
|
1101 |
-
msgstr "Non abbiamo ricevuto uno stato del pagamento definito. Riceverai un
|
1102 |
|
1103 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1104 |
msgid "We have not received a definite payment status."
|
1105 |
msgstr "Non abbiamo ricevuto uno stato del pagamento definito."
|
1106 |
|
1107 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1108 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1109 |
msgstr "Hai annullato il tuo pagamento. Completa l’ordine con una modalità di pagamento differente."
|
1110 |
|
1111 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1112 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
1113 |
msgid "%s payment expired (%s)."
|
1114 |
msgstr "%s pagamento scaduto (%s)."
|
1115 |
|
1116 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1117 |
-
#: src/Mollie/WC/Payment/Order.php:
|
1118 |
msgid "Order completed using %s payment (%s)."
|
1119 |
msgstr "Ordine completato utilizzando il %s pagamento (%s)."
|
1120 |
|
1121 |
#. translators: Placeholder 1: Payment method title
|
1122 |
-
#: src/Mollie/WC/
|
1123 |
-
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:
|
1124 |
-
#: src/Mollie/WC/
|
|
|
|
|
1125 |
msgid "Could not create %s payment."
|
1126 |
msgstr "Non è stato possibile creare %s il pagamento."
|
1127 |
|
1128 |
-
#: src/Mollie/WC/
|
1129 |
-
#: src/Mollie/WC/
|
1130 |
-
#: src/Mollie/WC/Payment/Order.php:607 src/Mollie/WC/Payment/Order.php:631
|
1131 |
-
#: src/Mollie/WC/Payment/Order.php:668 src/Mollie/WC/Payment/Order.php:709
|
1132 |
-
#: src/Mollie/WC/Payment/Payment.php:237 src/Mollie/WC/Payment/Payment.php:338
|
1133 |
-
#: src/Mollie/WC/Payment/Payment.php:396 src/Mollie/WC/Payment/Payment.php:419
|
1134 |
-
#: src/Mollie/WC/Payment/Payment.php:459 src/Mollie/WC/Payment/Payment.php:500
|
1135 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1136 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1137 |
-
#: src/Mollie/WC/Gateway/Abstract.php:547
|
1138 |
-
#: src/Mollie/WC/Gateway/Abstract.php:822
|
1139 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1120
|
1140 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1141 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1142 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1143 |
-
#: src/Mollie/WC/Gateway/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1144 |
msgid "test mode"
|
1145 |
msgstr "modalità di prova"
|
1146 |
|
1147 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
|
|
1148 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1149 |
-
#: src/Mollie/WC/Gateway/
|
1150 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1151 |
msgid "%s payment started (%s)."
|
1152 |
msgstr "%s pagamento avviato (%s)."
|
1153 |
|
|
|
1154 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1155 |
-
#: src/Mollie/WC/Gateway/
|
1156 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1157 |
msgid "Awaiting payment confirmation."
|
1158 |
msgstr "In attesa della conferma del pagamento."
|
1159 |
|
1160 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1161 |
msgid "Could not load order %s"
|
1162 |
msgstr "Non è stato possibile caricare l’ordine %s"
|
1163 |
|
1164 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1165 |
#. be replaced by a link to the Mollie profile
|
1166 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1167 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1168 |
msgstr "%s non abilitato nel tuo profilo Mollie. Puoi abilitarlo modificando il tuo %sprofilo Mollie%s."
|
1169 |
|
1170 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1171 |
#. setting page
|
1172 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1173 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1174 |
msgstr "Nessuna chiave API fornita. Per prima cosa, ti preghiamo di %simpostare la tua chiave API Mollie%s."
|
1175 |
|
1176 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1177 |
msgid "Gateway Disabled"
|
1178 |
msgstr "Gateway disabilitato"
|
1179 |
|
1180 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1181 |
msgid "Test mode enabled."
|
1182 |
msgstr "Modalità di prova abilitata."
|
1183 |
|
1184 |
-
#: src/Mollie/WC/
|
1185 |
msgid "Hold Stock (minutes)"
|
1186 |
msgstr "Mantieni la giacenza (minuti)"
|
1187 |
|
1188 |
-
#: src/Mollie/WC/
|
1189 |
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."
|
1190 |
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."
|
1191 |
|
1192 |
-
#:
|
|
|
|
|
1193 |
msgid "default"
|
1194 |
msgstr "predefinito"
|
1195 |
|
1196 |
-
#: src/Mollie/WC/
|
1197 |
msgid "Initial order status"
|
1198 |
msgstr "Stato iniziale dell’ordine"
|
1199 |
|
1200 |
-
#:
|
|
|
1201 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1202 |
msgstr "Descrizione del metodo di pagamento che il cliente vedrà sul tuo checkout. Predefinito <code>%s</code>"
|
1203 |
|
1204 |
-
#:
|
|
|
1205 |
msgid "Description"
|
1206 |
msgstr "Descrizione"
|
1207 |
|
1208 |
-
#: src/Mollie/WC/
|
1209 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1210 |
msgstr "Mostra logo sulla pagina del checkout. Predefinito <code>abilitato</code>"
|
1211 |
|
1212 |
-
#:
|
|
|
|
|
1213 |
msgid "Display logo"
|
1214 |
msgstr "Mostra logo"
|
1215 |
|
1216 |
-
#:
|
|
|
1217 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1218 |
-
msgstr "Questo controlla il titolo che l’utente vede durante
|
1219 |
|
1220 |
-
#:
|
|
|
1221 |
msgid "Title"
|
1222 |
msgstr "Titolo"
|
1223 |
|
1224 |
-
|
|
|
|
|
1225 |
msgid "Enable %s"
|
1226 |
msgstr "Abilita %s"
|
1227 |
|
1228 |
-
#:
|
|
|
1229 |
msgid "Enable/Disable"
|
1230 |
msgstr "Abilita/Disabilita"
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in Dutch
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-07-26 13:45+0200\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
+
"Language: nl\n"
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
|
14 |
+
#: src/Mollie/WC/Plugin.php:375
|
15 |
+
msgid "Unpaid order cancelled - time limit reached."
|
16 |
+
msgstr "Ordine non pagato annullato - limite temporale raggiunto."
|
17 |
+
|
18 |
+
#: src/Mollie/WC/Helper/Settings.php:846
|
19 |
+
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"
|
20 |
+
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"
|
21 |
+
|
22 |
+
#: src/Mollie/WC/Helper/Settings.php:254
|
23 |
+
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."
|
24 |
+
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."
|
25 |
+
|
26 |
+
#: src/Mollie/WC/Helper/Settings.php:246
|
27 |
+
msgid "Enable this option if you want to be able to set the number of days after the order will expire."
|
28 |
+
msgstr "Abilita questa opzione se vuoi impostare il numero di giorni dopo i quali l’ordine scadrà."
|
29 |
+
|
30 |
+
#: src/Mollie/WC/Helper/Settings.php:237
|
31 |
+
msgid "%s advanced"
|
32 |
+
msgstr "%s avanzato"
|
33 |
+
|
34 |
+
#: inc/settings/mollie_paypal_button_enabler.php:126
|
35 |
+
msgid "If the product or the cart total amount is under this number, then the button will not show up."
|
36 |
+
msgstr "Se il prodotto o l’importo totale del carrello è inferiore a questo numero, il pulsante non apparirà."
|
37 |
+
|
38 |
+
#: inc/settings/mollie_paypal_button_enabler.php:122
|
39 |
+
msgid "Minimum amount to display button"
|
40 |
+
msgstr "Importo minimo per la visualizzazione del pulsante"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_paypal_button_enabler.php:117
|
43 |
+
msgctxt "Mollie PayPal button Settings"
|
44 |
+
msgid "Polish -- Checkout with PayPal - Silver"
|
45 |
+
msgstr "Polacco -- Checkout con PayPal - Argento"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_paypal_button_enabler.php:116
|
48 |
+
msgctxt "Mollie PayPal button Settings"
|
49 |
+
msgid "Polish -- Checkout with PayPal - Gold"
|
50 |
+
msgstr "Polacco -- Checkout con PayPal - Oro"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_paypal_button_enabler.php:115
|
53 |
+
msgctxt "Mollie PayPal button Settings"
|
54 |
+
msgid "Polish -- Buy with PayPal - Gold"
|
55 |
+
msgstr "Polacco -- Acquisto con PayPal - Oro"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_paypal_button_enabler.php:114
|
58 |
+
msgctxt "Mollie PayPal button Settings"
|
59 |
+
msgid "French -- Checkout with PayPal - Silver"
|
60 |
+
msgstr "Francese -- Checkout con PayPal - Argento"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_paypal_button_enabler.php:113
|
63 |
+
msgctxt "Mollie PayPal button Settings"
|
64 |
+
msgid "French -- Checkout with PayPal - Gold"
|
65 |
+
msgstr "Francese -- Checkout con PayPal - Oro"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_paypal_button_enabler.php:112
|
68 |
+
msgctxt "Mollie PayPal button Settings"
|
69 |
+
msgid "French -- Buy with PayPal - Gold"
|
70 |
+
msgstr "Francese -- Acquisto con PayPal - Oro"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_paypal_button_enabler.php:111
|
73 |
+
msgctxt "Mollie PayPal button Settings"
|
74 |
+
msgid "German -- Checkout with PayPal - Rounded white"
|
75 |
+
msgstr "Tedesco -- Checkout con PayPal - Bianco arrotondato"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_paypal_button_enabler.php:110
|
78 |
+
msgctxt "Mollie PayPal button Settings"
|
79 |
+
msgid "German -- Checkout with PayPal - Pill white"
|
80 |
+
msgstr "Tedesco -- Checkout con PayPal - Pillola colore bianco"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_paypal_button_enabler.php:109
|
83 |
+
msgctxt "Mollie PayPal button Settings"
|
84 |
+
msgid "German -- Checkout with PayPal - Rounded gray"
|
85 |
+
msgstr "Tedesco -- Checkout con PayPal - Grigio arrotondato"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_paypal_button_enabler.php:108
|
88 |
+
msgctxt "Mollie PayPal button Settings"
|
89 |
+
msgid "German -- Checkout with PayPal - Pill gray"
|
90 |
+
msgstr "Tedesco -- Checkout con PayPal - Pillola colore grigio"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_paypal_button_enabler.php:107
|
93 |
+
msgctxt "Mollie PayPal button Settings"
|
94 |
+
msgid "German -- Checkout with PayPal - Rounded golden"
|
95 |
+
msgstr "Tedesco -- Checkout con PayPal - Oro arrotondato"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_paypal_button_enabler.php:106
|
98 |
+
msgctxt "Mollie PayPal button Settings"
|
99 |
+
msgid "German -- Checkout with PayPal - Pill golden"
|
100 |
+
msgstr "Tedesco -- Checkout con PayPal - Pillola color oro"
|
101 |
+
|
102 |
+
#: inc/settings/mollie_paypal_button_enabler.php:105
|
103 |
+
msgctxt "Mollie PayPal button Settings"
|
104 |
+
msgid "German -- Checkout with PayPal - Rounded blue"
|
105 |
+
msgstr "Tedesco -- Checkout con PayPal - Blu arrotondato"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_paypal_button_enabler.php:104
|
108 |
+
msgctxt "Mollie PayPal button Settings"
|
109 |
+
msgid "German -- Checkout with PayPal - Pill blue"
|
110 |
+
msgstr "Tedesco -- Checkout con PayPal - Pillola colore blu"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_paypal_button_enabler.php:103
|
113 |
+
msgctxt "Mollie PayPal button Settings"
|
114 |
+
msgid "German -- Checkout with PayPal - Rounded black"
|
115 |
+
msgstr "Tedesco -- Checkout con PayPal - Nero arrotondato"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_paypal_button_enabler.php:102
|
118 |
+
msgctxt "Mollie PayPal button Settings"
|
119 |
+
msgid "German -- Checkout with PayPal - Pill black"
|
120 |
+
msgstr "Tedesco -- Checkout con PayPal - Pillola colore nero"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_paypal_button_enabler.php:101
|
123 |
+
msgctxt "Mollie PayPal button Settings"
|
124 |
+
msgid "German -- Buy with PayPal - Rounded white"
|
125 |
+
msgstr "Tedesco -- Acquisto con PayPal - Bianco arrotondato"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_paypal_button_enabler.php:100
|
128 |
+
msgctxt "Mollie PayPal button Settings"
|
129 |
+
msgid "German -- Buy with PayPal - Pill white"
|
130 |
+
msgstr "Tedesco -- Acquisto con PayPal - Pillola colore bianco"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_paypal_button_enabler.php:99
|
133 |
+
msgctxt "Mollie PayPal button Settings"
|
134 |
+
msgid "German -- Buy with PayPal - Rounded gray"
|
135 |
+
msgstr "Tedesco -- Acquisto con PayPal - Grigio arrotondato"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_paypal_button_enabler.php:98
|
138 |
+
msgctxt "Mollie PayPal button Settings"
|
139 |
+
msgid "German -- Buy with PayPal - Pill gray"
|
140 |
+
msgstr "Tedesco -- Acquisto con PayPal - Pillola colore grigio"
|
141 |
+
|
142 |
+
#: inc/settings/mollie_paypal_button_enabler.php:97
|
143 |
+
msgctxt "Mollie PayPal button Settings"
|
144 |
+
msgid "German -- Buy with PayPal - Rounded golden"
|
145 |
+
msgstr "Tedesco -- Acquisto con PayPal - Arrotondato dorato"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_paypal_button_enabler.php:96
|
148 |
+
msgctxt "Mollie PayPal button Settings"
|
149 |
+
msgid "German -- Buy with PayPal - Pill golden"
|
150 |
+
msgstr "Tedesco -- Acquisto con PayPal - Pillola color oro"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_paypal_button_enabler.php:95
|
153 |
+
msgctxt "Mollie PayPal button Settings"
|
154 |
+
msgid "German -- Buy with PayPal - Rounded blue"
|
155 |
+
msgstr "Tedesco -- Acquisto con PayPal - Blu arrotondato"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_paypal_button_enabler.php:94
|
158 |
+
msgctxt "Mollie PayPal button Settings"
|
159 |
+
msgid "German -- Buy with PayPal - Pill blue"
|
160 |
+
msgstr "Tedesco -- Acquisto con PayPal - Pillola colore blu"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_paypal_button_enabler.php:93
|
163 |
+
msgctxt "Mollie PayPal button Settings"
|
164 |
+
msgid "German -- Buy with PayPal - Rounded black"
|
165 |
+
msgstr "Tedesco -- Acquisto con PayPal - Nero arrotondato"
|
166 |
+
|
167 |
+
#: inc/settings/mollie_paypal_button_enabler.php:92
|
168 |
+
msgctxt "Mollie PayPal button Settings"
|
169 |
+
msgid "German -- Buy with PayPal - Pill black"
|
170 |
+
msgstr "Tedesco -- Acquisto con PayPal - Pillola colore nero"
|
171 |
+
|
172 |
+
#: inc/settings/mollie_paypal_button_enabler.php:91
|
173 |
+
msgctxt "Mollie PayPal button Settings"
|
174 |
+
msgid "Dutch -- Checkout with PayPal - Rounded white"
|
175 |
+
msgstr "Olandese -- Checkout con PayPal - Bianco arrotondato"
|
176 |
+
|
177 |
+
#: inc/settings/mollie_paypal_button_enabler.php:90
|
178 |
+
msgctxt "Mollie PayPal button Settings"
|
179 |
+
msgid "Dutch -- Checkout with PayPal - Pill white"
|
180 |
+
msgstr "Olandese -- Checkout con PayPal - Pillola colore bianco"
|
181 |
+
|
182 |
+
#: inc/settings/mollie_paypal_button_enabler.php:89
|
183 |
+
msgctxt "Mollie PayPal button Settings"
|
184 |
+
msgid "Dutch -- Checkout with PayPal - Rounded gray"
|
185 |
+
msgstr "Olandese -- Checkout con PayPal - Grigio arrotondato"
|
186 |
+
|
187 |
+
#: inc/settings/mollie_paypal_button_enabler.php:88
|
188 |
+
msgctxt "Mollie PayPal button Settings"
|
189 |
+
msgid "Dutch -- Checkout with PayPal - Pill gray"
|
190 |
+
msgstr "Olandese -- Checkout con PayPal - Pillola colore grigio"
|
191 |
+
|
192 |
+
#: inc/settings/mollie_paypal_button_enabler.php:87
|
193 |
+
msgctxt "Mollie PayPal button Settings"
|
194 |
+
msgid "Dutch -- Checkout with PayPal - Rounded golden"
|
195 |
+
msgstr "Olandese -- Checkout con PayPal - Oro arrotondato"
|
196 |
+
|
197 |
+
#: inc/settings/mollie_paypal_button_enabler.php:86
|
198 |
+
msgctxt "Mollie PayPal button Settings"
|
199 |
+
msgid "Dutch -- Checkout with PayPal - Pill golden"
|
200 |
+
msgstr "Olandese -- Checkout con PayPal - Pillola color oro"
|
201 |
+
|
202 |
+
#: inc/settings/mollie_paypal_button_enabler.php:85
|
203 |
+
msgctxt "Mollie PayPal button Settings"
|
204 |
+
msgid "Dutch -- Checkout with PayPal - Rounded blue"
|
205 |
+
msgstr "Olandese -- Checkout con PayPal - Blu arrotondato"
|
206 |
+
|
207 |
+
#: inc/settings/mollie_paypal_button_enabler.php:84
|
208 |
+
msgctxt "Mollie PayPal button Settings"
|
209 |
+
msgid "Dutch -- Checkout with PayPal - Pill blue"
|
210 |
+
msgstr "Olandese -- Checkout con PayPal - Pillola colore blu"
|
211 |
+
|
212 |
+
#: inc/settings/mollie_paypal_button_enabler.php:83
|
213 |
+
msgctxt "Mollie PayPal button Settings"
|
214 |
+
msgid "Dutch -- Checkout with PayPal - Rounded black"
|
215 |
+
msgstr "Olandese -- Checkout con PayPal - Nero arrotondato"
|
216 |
+
|
217 |
+
#: inc/settings/mollie_paypal_button_enabler.php:82
|
218 |
+
msgctxt "Mollie PayPal button Settings"
|
219 |
+
msgid "Dutch -- Checkout with PayPal - Pill black"
|
220 |
+
msgstr "Olandese -- Checkout con PayPal - Pillola colore nero"
|
221 |
+
|
222 |
+
#: inc/settings/mollie_paypal_button_enabler.php:81
|
223 |
+
msgctxt "Mollie PayPal button Settings"
|
224 |
+
msgid "Dutch -- Buy with PayPal - Rounded white"
|
225 |
+
msgstr "Olandese -- Acquisto con PayPal - Bianco arrotondato"
|
226 |
+
|
227 |
+
#: inc/settings/mollie_paypal_button_enabler.php:80
|
228 |
+
msgctxt "Mollie PayPal button Settings"
|
229 |
+
msgid "Dutch -- Buy with PayPal - Pill white"
|
230 |
+
msgstr "Olandese -- Acquisto con PayPal - Pillola colore bianco"
|
231 |
+
|
232 |
+
#: inc/settings/mollie_paypal_button_enabler.php:79
|
233 |
+
msgctxt "Mollie PayPal button Settings"
|
234 |
+
msgid "Dutch -- Buy with PayPal - Rounded gray"
|
235 |
+
msgstr "Olandese -- Acquisto con PayPal - Grigio arrotondato"
|
236 |
+
|
237 |
+
#: inc/settings/mollie_paypal_button_enabler.php:78
|
238 |
+
msgctxt "Mollie PayPal button Settings"
|
239 |
+
msgid "Dutch -- Buy with PayPal - Pill gray"
|
240 |
+
msgstr "Olandese -- Acquisto con PayPal - Pillola colore grigio"
|
241 |
+
|
242 |
+
#: inc/settings/mollie_paypal_button_enabler.php:77
|
243 |
+
msgctxt "Mollie PayPal button Settings"
|
244 |
+
msgid "Dutch -- Buy with PayPal - Rounded golden"
|
245 |
+
msgstr "Olandese -- Acquisto con PayPal - Oro arrotondato"
|
246 |
+
|
247 |
+
#: inc/settings/mollie_paypal_button_enabler.php:76
|
248 |
+
msgctxt "Mollie PayPal button Settings"
|
249 |
+
msgid "Dutch -- Buy with PayPal - Pill golden"
|
250 |
+
msgstr "Olandese -- Acquisto con PayPal - Pillola color oro"
|
251 |
+
|
252 |
+
#: inc/settings/mollie_paypal_button_enabler.php:75
|
253 |
+
msgctxt "Mollie PayPal button Settings"
|
254 |
+
msgid "Dutch -- Buy with PayPal - Rounded blue"
|
255 |
+
msgstr "Olandese -- Acquisto con PayPal - Blu arrotondato"
|
256 |
+
|
257 |
+
#: inc/settings/mollie_paypal_button_enabler.php:74
|
258 |
+
msgctxt "Mollie PayPal button Settings"
|
259 |
+
msgid "Dutch -- Buy with PayPal - Pill blue"
|
260 |
+
msgstr "Olandese -- Acquisto con PayPal - Pillola colore blu"
|
261 |
+
|
262 |
+
#: inc/settings/mollie_paypal_button_enabler.php:73
|
263 |
+
msgctxt "Mollie PayPal button Settings"
|
264 |
+
msgid "Dutch -- Buy with PayPal - Rounded black"
|
265 |
+
msgstr "Olandese -- Acquisto con PayPal - Nero arrotondato"
|
266 |
+
|
267 |
+
#: inc/settings/mollie_paypal_button_enabler.php:72
|
268 |
+
msgctxt "Mollie PayPal button Settings"
|
269 |
+
msgid "Dutch -- Buy with PayPal - Pill black"
|
270 |
+
msgstr "Olandese -- Acquisto con PayPal - Pillola colore nero"
|
271 |
+
|
272 |
+
#: inc/settings/mollie_paypal_button_enabler.php:71
|
273 |
+
msgctxt "Mollie PayPal button Settings"
|
274 |
+
msgid "English -- Checkout with PayPal - Rounded white"
|
275 |
+
msgstr "Inglese -- Checkout con PayPal - Bianco arrotondato"
|
276 |
+
|
277 |
+
#: inc/settings/mollie_paypal_button_enabler.php:70
|
278 |
+
msgctxt "Mollie PayPal button Settings"
|
279 |
+
msgid "English -- Checkout with PayPal - Pill white"
|
280 |
+
msgstr "Inglese -- Checkout con PayPal - Pillola colore bianco"
|
281 |
+
|
282 |
+
#: inc/settings/mollie_paypal_button_enabler.php:69
|
283 |
+
msgctxt "Mollie PayPal button Settings"
|
284 |
+
msgid "English -- Checkout with PayPal - Rounded gray"
|
285 |
+
msgstr "Inglese -- Checkout con PayPal - Grigio arrotondato"
|
286 |
+
|
287 |
+
#: inc/settings/mollie_paypal_button_enabler.php:68
|
288 |
+
msgctxt "Mollie PayPal button Settings"
|
289 |
+
msgid "English -- Checkout with PayPal - Pill gray"
|
290 |
+
msgstr "Inglese -- Checkout con PayPal - Pillola colore grigio"
|
291 |
+
|
292 |
+
#: inc/settings/mollie_paypal_button_enabler.php:67
|
293 |
+
msgctxt "Mollie PayPal button Settings"
|
294 |
+
msgid "English -- Checkout with PayPal - Rounded golden"
|
295 |
+
msgstr "Inglese -- Checkout con PayPal - Oro arrotondato"
|
296 |
+
|
297 |
+
#: inc/settings/mollie_paypal_button_enabler.php:66
|
298 |
+
msgctxt "Mollie PayPal button Settings"
|
299 |
+
msgid "English -- Checkout with PayPal - Pill golden"
|
300 |
+
msgstr "Inglese -- Checkout con PayPal - Pillola color oro"
|
301 |
+
|
302 |
+
#: inc/settings/mollie_paypal_button_enabler.php:65
|
303 |
+
msgctxt "Mollie PayPal button Settings"
|
304 |
+
msgid "English -- Checkout with PayPal - Rounded blue"
|
305 |
+
msgstr "Inglese -- Checkout con PayPal - Blu arrotondato"
|
306 |
+
|
307 |
+
#: inc/settings/mollie_paypal_button_enabler.php:64
|
308 |
+
msgctxt "Mollie PayPal button Settings"
|
309 |
+
msgid "English -- Checkout with PayPal - Pill blue"
|
310 |
+
msgstr "Inglese -- Checkout con PayPal - Pillola colore blu"
|
311 |
+
|
312 |
+
#: inc/settings/mollie_paypal_button_enabler.php:63
|
313 |
+
msgctxt "Mollie PayPal button Settings"
|
314 |
+
msgid "English -- Checkout with PayPal - Rounded black"
|
315 |
+
msgstr "Inglese -- Checkout con PayPal - Nero arrotondato"
|
316 |
+
|
317 |
+
#: inc/settings/mollie_paypal_button_enabler.php:62
|
318 |
+
msgctxt "Mollie PayPal button Settings"
|
319 |
+
msgid "English -- Checkout with PayPal - Pill black"
|
320 |
+
msgstr "Inglese -- Checkout con PayPal - Pillola colore nero"
|
321 |
+
|
322 |
+
#: inc/settings/mollie_paypal_button_enabler.php:61
|
323 |
+
msgctxt "Mollie PayPal button Settings"
|
324 |
+
msgid "English -- Buy with PayPal - Rounded white"
|
325 |
+
msgstr "Inglese -- Acquisto con PayPal - Bianco arrotondato"
|
326 |
+
|
327 |
+
#: inc/settings/mollie_paypal_button_enabler.php:60
|
328 |
+
msgctxt "Mollie PayPal button Settings"
|
329 |
+
msgid "English -- Buy with PayPal - Pill white"
|
330 |
+
msgstr "Inglese -- Acquisto con PayPal - Pillola colore bianco"
|
331 |
+
|
332 |
+
#: inc/settings/mollie_paypal_button_enabler.php:59
|
333 |
+
msgctxt "Mollie PayPal button Settings"
|
334 |
+
msgid "English -- Buy with PayPal - Rounded gray"
|
335 |
+
msgstr "Inglese -- Acquisto con PayPal - Grigio arrotondato"
|
336 |
+
|
337 |
+
#: inc/settings/mollie_paypal_button_enabler.php:58
|
338 |
+
msgctxt "Mollie PayPal button Settings"
|
339 |
+
msgid "English -- Buy with PayPal - Pill gray"
|
340 |
+
msgstr "Inglese -- Acquisto con PayPal - Pillola colore grigio"
|
341 |
+
|
342 |
+
#: inc/settings/mollie_paypal_button_enabler.php:57
|
343 |
+
msgctxt "Mollie PayPal button Settings"
|
344 |
+
msgid "English -- Buy with PayPal - Rounded golden"
|
345 |
+
msgstr "Inglese -- Acquisto con PayPal - Oro arrotondato"
|
346 |
+
|
347 |
+
#: inc/settings/mollie_paypal_button_enabler.php:56
|
348 |
+
msgctxt "Mollie PayPal button Settings"
|
349 |
+
msgid "English -- Buy with PayPal - Pill golden"
|
350 |
+
msgstr "Inglese -- Acquisto con PayPal - Pillola color oro"
|
351 |
+
|
352 |
+
#: inc/settings/mollie_paypal_button_enabler.php:55
|
353 |
+
msgctxt "Mollie PayPal button Settings"
|
354 |
+
msgid "English -- Buy with PayPal - Rounded blue"
|
355 |
+
msgstr "Inglese -- Acquisto con PayPal - Blu arrotondato"
|
356 |
+
|
357 |
+
#: inc/settings/mollie_paypal_button_enabler.php:54
|
358 |
+
msgctxt "Mollie PayPal button Settings"
|
359 |
+
msgid "English -- Buy with PayPal - Pill blue"
|
360 |
+
msgstr "Inglese -- Acquisto con PayPal - Pillola colore blu"
|
361 |
+
|
362 |
+
#: inc/settings/mollie_paypal_button_enabler.php:46
|
363 |
+
msgctxt "Mollie PayPal Button Settings"
|
364 |
+
msgid "Select the text and the colour of the button."
|
365 |
+
msgstr "Selezionare il testo e il colore del pulsante."
|
366 |
+
|
367 |
+
#: inc/settings/mollie_paypal_button_enabler.php:44
|
368 |
+
msgctxt "Mollie PayPal Button Settings"
|
369 |
+
msgid "Button text language and color"
|
370 |
+
msgstr "Lingua del testo del pulsante e colore"
|
371 |
+
|
372 |
+
#: inc/settings/mollie_paypal_button_enabler.php:35
|
373 |
+
msgid "Enable the PayPal button to be used in the product page."
|
374 |
+
msgstr "Abilita il pulsante PayPal per l’uso nella pagina del prodotto."
|
375 |
+
|
376 |
+
#: inc/settings/mollie_paypal_button_enabler.php:31
|
377 |
+
msgid "Display on product page"
|
378 |
+
msgstr "Visualizza nella pagina del prodotto"
|
379 |
+
|
380 |
+
#: inc/settings/mollie_paypal_button_enabler.php:23
|
381 |
+
msgid "Enable the PayPal button to be used in the cart page."
|
382 |
+
msgstr "Abilita il pulsante PayPal per l’uso nella pagina del carrello."
|
383 |
+
|
384 |
+
#: inc/settings/mollie_paypal_button_enabler.php:19
|
385 |
+
msgid "Display on cart page"
|
386 |
+
msgstr "Visualizza nella pagina del carrello"
|
387 |
+
|
388 |
+
#: inc/settings/mollie_paypal_button_enabler.php:12
|
389 |
+
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"
|
390 |
+
msgstr "%1sIl pulsante PayPal è ottimizzato per i 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"
|
391 |
+
|
392 |
+
#: inc/settings/mollie_paypal_button_enabler.php:7
|
393 |
+
msgid "PayPal button display settings"
|
394 |
+
msgstr "Impostazioni di visualizzazione del pulsante PayPal"
|
395 |
+
|
396 |
+
#: src/Mollie/WC/Helper/Settings.php:159
|
397 |
+
msgid "%s surcharge"
|
398 |
+
msgstr "%s supplemento"
|
399 |
+
|
400 |
+
#: src/Mollie/WC/Helper/Settings.php:125
|
401 |
+
msgid "%s custom logo"
|
402 |
+
msgstr "%s logo personalizzato"
|
403 |
+
|
404 |
+
#: src/Mollie/WC/Helper/Settings.php:107
|
405 |
+
msgid "Sales countries"
|
406 |
+
msgstr "Impostazioni di visualizzazione"
|
407 |
+
|
408 |
+
#: src/Mollie/WC/Helper/Settings.php:61
|
409 |
+
msgid "%s display settings"
|
410 |
+
msgstr "%s dei paesi di vendita"
|
411 |
+
|
412 |
+
#: inc/settings/mollie_advanced_settings.php:124
|
413 |
+
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"
|
414 |
+
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"
|
415 |
+
|
416 |
+
#: inc/settings/mollie_advanced_settings.php:109
|
417 |
+
msgid "API Payment Description"
|
418 |
+
msgstr "Descrizione API Payment"
|
419 |
+
|
420 |
+
#: inc/settings/mollie_advanced_settings.php:99
|
421 |
+
msgid "Click %shere%s to read more about the differences between the Payments and Orders API"
|
422 |
+
msgstr "Clicca %squi%s per avere maggiori informazioni sulle differenze tra Payments e Orders API"
|
423 |
+
|
424 |
+
#: inc/settings/mollie_advanced_settings.php:82
|
425 |
+
msgid "Select API Method"
|
426 |
+
msgstr "Seleziona API Method"
|
427 |
+
|
428 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2645
|
429 |
+
msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb."
|
430 |
+
msgstr "%1$sMollie Payments per WooCommerce%2$s Impossibile caricare il file. Le dimensioni devono essere inferiori a 500kb."
|
431 |
+
|
432 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2606
|
433 |
+
msgid " +%1s%2s + %3s%% Fee"
|
434 |
+
msgstr " +%1s%2s + %3s%% tariffa"
|
435 |
+
|
436 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2589
|
437 |
+
msgid " +%1s%% Fee"
|
438 |
+
msgstr " +%1s%% tariffa"
|
439 |
+
|
440 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2579
|
441 |
+
msgid " +%1s%2s Fee"
|
442 |
+
msgstr " +%1s%2s tariffa"
|
443 |
+
|
444 |
+
#: src/Mollie/WC/Gateway/Abstract.php:138
|
445 |
+
msgid "No custom logo selected"
|
446 |
+
msgstr "Nessun logo personalizzato selezionato"
|
447 |
+
|
448 |
+
#: src/Mollie/WC/Helper/Settings.php:226
|
449 |
+
msgid "Limit the maximum fee added on checkout. Default 0"
|
450 |
+
msgstr "Limita la tariffa massima aggiunta al checkout. Tariffa predefinita 0"
|
451 |
+
|
452 |
+
#: src/Mollie/WC/Helper/Settings.php:223
|
453 |
+
msgid "Payment surcharge limit in %s"
|
454 |
+
msgstr "Limite del supplemento per il pagamento in %s"
|
455 |
+
|
456 |
+
#: src/Mollie/WC/Helper/Settings.php:213
|
457 |
+
msgid "Control the percentage fee added on checkout. Default 0.01"
|
458 |
+
msgstr "Controlla la tariffa percentuale aggiunta al checkout. Tariffa predefinita 0.01"
|
459 |
+
|
460 |
+
#: src/Mollie/WC/Helper/Settings.php:210
|
461 |
+
msgid "Payment surcharge percentage amount %"
|
462 |
+
msgstr "Importo percentuale del supplemento per il pagamento %"
|
463 |
+
|
464 |
+
#: src/Mollie/WC/Helper/Settings.php:200
|
465 |
+
msgid "Control the fee added on checkout. Default 0.01"
|
466 |
+
msgstr "Controlla la tariffa aggiunta al checkout. Tariffa predefinita 0.01"
|
467 |
+
|
468 |
+
#: src/Mollie/WC/Helper/Settings.php:197
|
469 |
+
msgid "Payment surcharge fixed amount in %s"
|
470 |
+
msgstr "Importo fisso del supplemento per il pagamento in %s"
|
471 |
+
|
472 |
+
#: src/Mollie/WC/Helper/Settings.php:190
|
473 |
+
msgid "Choose a payment surcharge for this gateway"
|
474 |
+
msgstr "Scegli un supplemento per il pagamento per questo gateway"
|
475 |
+
|
476 |
+
#: src/Mollie/WC/Helper/Settings.php:184
|
477 |
+
msgid "Fixed fee and percentage"
|
478 |
+
msgstr "Tariffa e percentuale fissa"
|
479 |
+
|
480 |
+
#: src/Mollie/WC/Helper/Settings.php:180
|
481 |
+
msgid "Percentage"
|
482 |
+
msgstr "Percentuale"
|
483 |
+
|
484 |
+
#: src/Mollie/WC/Helper/Settings.php:176
|
485 |
+
msgid "Fixed fee"
|
486 |
+
msgstr "Tariffa fissa"
|
487 |
+
|
488 |
+
#: src/Mollie/WC/Helper/Settings.php:172
|
489 |
+
msgid "No fee"
|
490 |
+
msgstr "Nessuna tariffa"
|
491 |
+
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:166
|
493 |
+
msgid "Payment Surcharge"
|
494 |
+
msgstr "Supplemento per il pagamento"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Helper/Settings.php:150
|
497 |
+
msgid "Upload a custom icon for this gateway. The feature must be enabled."
|
498 |
+
msgstr "Carica un’icona personalizzata per questo gateway. Questa caratteristica deve essere abilitata."
|
499 |
+
|
500 |
+
#: src/Mollie/WC/Helper/Settings.php:143
|
501 |
+
msgid "Upload custom logo"
|
502 |
+
msgstr "Carica logo personalizzato"
|
503 |
+
|
504 |
+
#: src/Mollie/WC/Helper/Settings.php:137
|
505 |
+
msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options."
|
506 |
+
msgstr "Abilita questa caratteristica per aggiungere un logo personalizzato per questo gateway. Questa caratterizza avrà precedenza rispetto alle altre opzioni per il logo."
|
507 |
+
|
508 |
+
#: src/Mollie/WC/Helper/Settings.php:132
|
509 |
+
msgid "Enable custom logo"
|
510 |
+
msgstr "Abilita logo personalizzato"
|
511 |
+
|
512 |
+
#: src/Mollie/WC/Helper/GatewaySurchargeHandler.php:253
|
513 |
+
msgid "Fee"
|
514 |
+
msgstr "Tariffa"
|
515 |
+
|
516 |
+
#: inc/settings/mollie_applepay_settings.php:106
|
517 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:32
|
518 |
+
msgid "Enable the Apple Pay direct buy button on the Product page"
|
519 |
+
msgstr "Abilita il pulsante di acquisto diretto Apple Pay nella pagina del Prodotto"
|
520 |
+
|
521 |
+
#: inc/settings/mollie_applepay_settings.php:103
|
522 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:29
|
523 |
+
msgid "Enable Apple Pay Button on Product page"
|
524 |
+
msgstr "Abilita il Pulsante Apple Pay nella pagina del Prodotto"
|
525 |
+
|
526 |
+
#: inc/settings/mollie_applepay_settings.php:91
|
527 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:21
|
528 |
+
msgid "Enable the Apple Pay direct buy button on the Cart page"
|
529 |
+
msgstr "Abilita il pulsante di acquisto diretto Apple Pay nella pagina del Carrello"
|
530 |
+
|
531 |
+
#: inc/settings/mollie_applepay_settings.php:88
|
532 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:18
|
533 |
+
msgid "Enable Apple Pay Button on Cart page"
|
534 |
+
msgstr "Abilita il Pulsante Apple Pay nella pagina del Carrello"
|
535 |
+
|
536 |
+
#: pluginEnvironmentChecker/EnvironmentChecker.php:49
|
537 |
+
msgid "Validation failed with %1$d errors"
|
538 |
+
msgstr "Convalida non riuscita con %1$d errors"
|
539 |
+
|
540 |
+
#: src/Mollie/WC/Plugin.php:591
|
541 |
+
msgid "Mollie Voucher category"
|
542 |
+
msgstr "Categoria voucher Mollie"
|
543 |
+
|
544 |
+
#: src/Mollie/WC/Plugin.php:531 src/Mollie/WC/Plugin.php:594
|
545 |
+
msgid "Same as default category"
|
546 |
+
msgstr "Identica alla categoria predefinita"
|
547 |
+
|
548 |
+
#: src/Mollie/WC/Plugin.php:464 src/Mollie/WC/Plugin.php:487
|
549 |
+
msgid "Select a voucher category to apply to all products with this category"
|
550 |
+
msgstr "Seleziona una categoria di voucher da applicare a tutti i prodotti con questa categoria"
|
551 |
+
|
552 |
+
#: src/Mollie/WC/Plugin.php:430 src/Mollie/WC/Plugin.php:462
|
553 |
+
#: src/Mollie/WC/Plugin.php:485 src/Mollie/WC/Plugin.php:598
|
554 |
+
msgid "Gift"
|
555 |
+
msgstr "Regalo"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Plugin.php:429 src/Mollie/WC/Plugin.php:461
|
558 |
+
#: src/Mollie/WC/Plugin.php:484 src/Mollie/WC/Plugin.php:597
|
559 |
+
msgid "Eco"
|
560 |
+
msgstr "Eco"
|
561 |
+
|
562 |
+
#: src/Mollie/WC/Plugin.php:428 src/Mollie/WC/Plugin.php:460
|
563 |
+
#: src/Mollie/WC/Plugin.php:483 src/Mollie/WC/Plugin.php:596
|
564 |
+
msgid "Meal"
|
565 |
+
msgstr "Pasto"
|
566 |
+
|
567 |
+
#: src/Mollie/WC/Plugin.php:427 src/Mollie/WC/Plugin.php:459
|
568 |
+
#: src/Mollie/WC/Plugin.php:482 src/Mollie/WC/Plugin.php:595
|
569 |
+
msgid "No Category"
|
570 |
+
msgstr "Nessuna categoria"
|
571 |
+
|
572 |
+
#: src/Mollie/WC/Plugin.php:426 src/Mollie/WC/Plugin.php:458
|
573 |
+
#: src/Mollie/WC/Plugin.php:481
|
574 |
+
msgid "--Please choose an option--"
|
575 |
+
msgstr "--Scegli un’opzione--"
|
576 |
+
|
577 |
+
#: src/Mollie/WC/Plugin.php:423 src/Mollie/WC/Plugin.php:456
|
578 |
+
#: src/Mollie/WC/Plugin.php:478
|
579 |
+
msgid "Mollie Voucher Category"
|
580 |
+
msgstr "Categoria voucher Mollie"
|
581 |
+
|
582 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
583 |
+
msgid "Contact Support"
|
584 |
+
msgstr "Contatta l’assistenza"
|
585 |
+
|
586 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
587 |
+
msgid "Plugin Documentation"
|
588 |
+
msgstr "Documentazione plugin"
|
589 |
+
|
590 |
+
#: src/Mollie/WC/Helper/Settings.php:619
|
591 |
+
msgid "to create a new Mollie account and start receiving payments in a couple of minutes. "
|
592 |
+
msgstr "per creare un nuovo account Mollie e iniziare a ricevere i pagamenti tra qualche minuto."
|
593 |
+
|
594 |
+
#: src/Mollie/WC/Helper/Settings.php:617
|
595 |
+
msgid " Mollie is dedicated to making payments better for WooCommerce. "
|
596 |
+
msgstr "Mollie è destinata a migliorare i pagamenti per WooCommerce."
|
597 |
+
|
598 |
+
#: src/Mollie/WC/Helper/Settings.php:616
|
599 |
+
msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie."
|
600 |
+
msgstr "Semplicemente inseriscili già pronti nel tuo webshop WooCommerce con questo potente plugin sviluppato da Mollie."
|
601 |
+
|
602 |
+
#: src/Mollie/WC/Helper/Settings.php:615
|
603 |
+
msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them."
|
604 |
+
msgstr "Integra velocemente tutti i pagamenti principali in WooCommerce, ovunque ne hai bisogno."
|
605 |
+
|
606 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:147
|
607 |
+
msgid "Advanced"
|
608 |
+
msgstr "Avanzato"
|
609 |
+
|
610 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:143
|
611 |
+
msgid "Apple Pay Button"
|
612 |
+
msgstr "Pulsante Apple Pay"
|
613 |
+
|
614 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:138
|
615 |
+
msgid "General"
|
616 |
+
msgstr "Generale"
|
617 |
+
|
618 |
+
#: src/Mollie/WC/Gateway/Abstract.php:283
|
619 |
+
msgid "Select none"
|
620 |
+
msgstr "Non selezionare nessuno"
|
621 |
+
|
622 |
+
#: src/Mollie/WC/Gateway/Abstract.php:282
|
623 |
+
msgid "Select all"
|
624 |
+
msgstr "Seleziona tutti"
|
625 |
+
|
626 |
+
#: src/Mollie/WC/Gateway/Abstract.php:273
|
627 |
+
msgid "Country"
|
628 |
+
msgstr "Paese"
|
629 |
+
|
630 |
+
#: src/Mollie/WC/Gateway/Abstract.php:272
|
631 |
+
msgid "Choose countries…"
|
632 |
+
msgstr "Scegli paesi…"
|
633 |
+
|
634 |
+
#: src/Mollie/WC/Gateway/Abstract.php:244
|
635 |
+
msgid "Return to payments"
|
636 |
+
msgstr "Ritorna ai pagamenti"
|
637 |
+
|
638 |
+
#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114
|
639 |
+
msgid "Sell to specific countries"
|
640 |
+
msgstr "Effettua la vendita in paesi specifici"
|
641 |
+
|
642 |
+
#: inc/settings/mollie_advanced_settings.php:73
|
643 |
+
msgid "Single Click Payments"
|
644 |
+
msgstr "Pagamenti con un unico clic"
|
645 |
+
|
646 |
+
#: inc/settings/mollie_advanced_settings.php:68
|
647 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%1$s</code>. Required if WooCommerce Subscriptions is being used! Read more about <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> and how it improves your conversion."
|
648 |
+
msgstr "Mollie dovrebbe memorizzare nome e indirizzo email dei clienti per pagamenti con un solo clic? Predefinito <code>%1$s</code>. Richiesto se vengono utilizzati abbonamenti a WooCommerce! Scopri di più su <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> e su come migliora la tua conversione."
|
649 |
+
|
650 |
+
#: inc/settings/mollie_advanced_settings.php:6
|
651 |
+
msgid "Mollie advanced settings"
|
652 |
+
msgstr "Impostazioni avanzate Mollie"
|
653 |
+
|
654 |
+
#: inc/settings/mollie_applepay_settings.php:84
|
655 |
+
msgid "The following options are required to use the Apple Pay Direct Button"
|
656 |
+
msgstr "Le seguenti opzioni sono necessarie per utilizzare il Pulsante Diretto Apple Pay"
|
657 |
+
|
658 |
+
#: inc/settings/mollie_applepay_settings.php:14
|
659 |
+
msgid "The following options are required to use the Apple Pay gateway"
|
660 |
+
msgstr "Le seguenti opzioni sono necessarie per utilizzare il gateway Apple Pay"
|
661 |
|
662 |
+
#: inc/settings/mollie_components_enabler.php:8
|
663 |
+
msgid "Use the Mollie Components for this Gateway. Read more about <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> and how it improves your conversion."
|
664 |
+
msgstr "Utilizza i componenti Mollie Components per questo gateway. Scopri di più su <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> e su come migliora la tua conversione."
|
665 |
+
|
666 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:11
|
667 |
+
msgid "The following options are required to use the Apple Pay button"
|
668 |
+
msgstr "Le seguenti opzioni sono necessarie per utilizzare il pulsante Apple Pay"
|
669 |
+
|
670 |
+
#: inc/settings/mollie_applepay_settings.php:79
|
671 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
672 |
+
msgid "Apple Pay button settings"
|
673 |
+
msgstr "Impostazioni del pulsante Apple Pay"
|
674 |
+
|
675 |
+
#: mollie-payments-for-woocommerce.php:91
|
676 |
+
msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s."
|
677 |
+
msgstr "%1$sMollie Payments per WooCommerce: chiavi API mancanti%2$s Ti preghiamo di%3$s impostare le tue chiavi API qui%4$s."
|
678 |
+
|
679 |
+
#: src/Mollie/WC/Plugin.php:541
|
680 |
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."
|
681 |
+
msgstr "Al fine di elaborarli, tutti i prodotti nell’ordine devono avere una categoria. Per disabilitare il prodotto dalla sezione voucher selezionare “Nessuna categoria”."
|
682 |
|
683 |
+
#: src/Mollie/WC/Plugin.php:524
|
684 |
msgid "Products voucher category"
|
685 |
+
msgstr "Categoria voucher prodotti"
|
686 |
|
687 |
+
#: src/Mollie/WC/Plugin.php:308
|
688 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
689 |
+
msgstr "%1$sMollie Payments per WooCommerce%2$s La modalità di prova è attiva, %3$s disabilitala%4$s prima di implementarla nella produzione."
|
690 |
|
691 |
+
#: src/Mollie/WC/Helper/Settings.php:654 src/Mollie/WC/Plugin.php:391
|
692 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:11
|
693 |
msgid "Mollie Settings"
|
694 |
msgstr "Impostazioni Mollie"
|
695 |
|
697 |
#. drop down
|
698 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:82
|
699 |
msgid "voucher"
|
700 |
+
msgstr "voucher"
|
701 |
|
702 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:66
|
703 |
msgid "Voucher"
|
704 |
+
msgstr "Voucher"
|
705 |
|
706 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
707 |
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"
|
708 |
+
msgstr "Per procedere all’elaborazione, tutti i prodotti nell’ordine devono avere una categoria. Questo selezionatore assegnerà la categoria predefinita per i prodotti dello shop"
|
709 |
|
710 |
+
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:520
|
711 |
msgid "Select the default products category"
|
712 |
msgstr "Seleziona la categoria predefinita dei prodotti"
|
713 |
|
714 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:40
|
715 |
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"
|
716 |
+
msgstr "Abilita questa opzione se si vuole impostare il numero di giorni dopo i quali l’ordine scadrà. Questa azione trasformerà tutte le transazioni in pagamenti anziché ordini"
|
717 |
|
718 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:39
|
719 |
+
#: src/Mollie/WC/Helper/Settings.php:245
|
720 |
msgid "Enable expiry date for payments"
|
721 |
+
msgstr "Abilita data di scadenza per pagamenti"
|
722 |
|
723 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:38
|
724 |
+
#: src/Mollie/WC/Helper/Settings.php:244
|
725 |
msgid "Activate expiry date setting"
|
726 |
+
msgstr "Attiva l’impostazione per la data di scadenza"
|
727 |
|
728 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2178
|
729 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
730 |
msgid " Remainder: %1$s %2$s %3$s."
|
731 |
msgstr " Promemoria: %1$s %2$s %3$s."
|
732 |
|
733 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2166
|
734 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
735 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
736 |
+
msgstr "Mollie - Dettagli della giftcard: %1$s %2$s %3$s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
|
738 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54
|
739 |
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"
|
740 |
+
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"
|
741 |
|
742 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39
|
743 |
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"
|
744 |
+
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"
|
745 |
|
746 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
747 |
msgid "Show Mastercard Icon"
|
748 |
+
msgstr "Mostra l’icona Mastercard"
|
749 |
|
750 |
#: inc/settings/mollie_components.php:94
|
751 |
msgctxt "Mollie Components Settings"
|
752 |
msgid "Transform Text "
|
753 |
+
msgstr "Trasforma testo"
|
754 |
|
755 |
#: inc/settings/mollie_components.php:82
|
756 |
msgctxt "Mollie Components Settings"
|
765 |
#: inc/settings/mollie_components.php:35
|
766 |
msgctxt "Mollie Components Settings"
|
767 |
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
768 |
+
msgstr "Definisce le dimensioni del carattere del componente. Unità ammesse: 'em', 'px', 'rem'."
|
769 |
|
770 |
#: inc/settings/mollie_creditcard_icons_selector.php:51
|
771 |
msgid "Show VPay Icon"
|
772 |
+
msgstr "Mostra l’icona VPay"
|
773 |
|
774 |
#: inc/settings/mollie_creditcard_icons_selector.php:46
|
775 |
msgid "Show Visa Icon"
|
776 |
+
msgstr "Mostra l’icona Visa"
|
777 |
|
778 |
#: inc/settings/mollie_creditcard_icons_selector.php:36
|
779 |
msgid "Show Maestro Icon"
|
780 |
+
msgstr "Mostra l’icona Maestro"
|
781 |
|
782 |
#: inc/settings/mollie_creditcard_icons_selector.php:31
|
783 |
msgid "Show Carte Bancaire Icon"
|
784 |
+
msgstr "Mostra l’icona Carte Bancaire"
|
785 |
|
786 |
#: inc/settings/mollie_creditcard_icons_selector.php:26
|
787 |
msgid "Show Carta Si Icon"
|
788 |
+
msgstr "Mostra l’icona Carta Si"
|
789 |
|
790 |
#: inc/settings/mollie_creditcard_icons_selector.php:21
|
791 |
msgid "Show American Express Icon"
|
792 |
+
msgstr "Mostra l’icona American Express"
|
793 |
|
794 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
795 |
msgid "Show customized creditcard icons on checkout page"
|
796 |
+
msgstr "Mostra le icone personalizzate della carta di credito nella pagina di checkout"
|
797 |
|
798 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
799 |
msgid "Enable Icons Selector"
|
800 |
+
msgstr "Abilita il selezionatore dell’icona"
|
801 |
|
802 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
803 |
msgid "Customize Icons"
|
804 |
+
msgstr "Personalizza le icone"
|
805 |
|
806 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
807 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2129
|
808 |
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)."
|
809 |
+
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)."
|
810 |
|
811 |
+
#: src/Mollie/WC/Gateway/Abstract.php:590
|
812 |
msgid "Failed switching subscriptions, no valid mandate."
|
813 |
+
msgstr "Il cambio di abbonamenti non è riuscito, non c’è un mandato valido."
|
|
|
|
|
|
|
|
|
814 |
|
815 |
#: inc/settings/mollie_components_enabler.php:6
|
816 |
msgid "Enable Mollie Components"
|
941 |
msgid "Base Styles"
|
942 |
msgstr "Stili di base"
|
943 |
|
944 |
+
#: src/Mollie/WC/Plugin.php:950
|
945 |
msgid "An unknown error occurred, please check the card fields."
|
946 |
msgstr "Si è verificato un errore sconosciuto, controllare i campi carta di credito."
|
947 |
|
948 |
+
#: src/Mollie/WC/Plugin.php:943
|
949 |
msgid "Verification Code"
|
950 |
msgstr "Codice di verifica"
|
951 |
|
952 |
+
#: src/Mollie/WC/Plugin.php:939
|
953 |
msgid "Expiry Date"
|
954 |
msgstr "Data di scadenza"
|
955 |
|
956 |
+
#: src/Mollie/WC/Plugin.php:935
|
957 |
msgid "Card Number"
|
958 |
msgstr "Numero carta"
|
959 |
|
960 |
+
#: src/Mollie/WC/Plugin.php:931
|
961 |
msgid "Card Holder"
|
962 |
msgstr "Titolare della carta"
|
963 |
|
964 |
+
#: inc/settings/mollie_components_enabler.php:12
|
965 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
966 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:139
|
967 |
msgid "Mollie Components"
|
968 |
msgstr "Componenti Mollie"
|
969 |
|
970 |
+
#: src/Mollie/WC/Plugin.php:757
|
971 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
972 |
msgstr "%1$s voci cancellate in WooCommerce e su Mollie."
|
973 |
|
974 |
+
#: src/Mollie/WC/Plugin.php:739
|
975 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
976 |
msgstr "%1$s voci rimborsate in WooCommerce e su Mollie."
|
977 |
|
978 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
979 |
msgid "Empty WooCommerce order items or mollie order lines."
|
980 |
+
msgstr "Voci dell’ordine WooCommerce o righe dell’ordine mollie vuote."
|
981 |
|
982 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
983 |
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
984 |
+
msgstr "Impossibile recuperare l’ID voce dell’ordine relativo alla voce remota: %1$s. Prova a effettuare un rimborso in base all’importo."
|
985 |
|
986 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
987 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
988 |
+
msgstr "Una delle voci dell’ordine WooCommerce non ha il meta valore della voce di rimborso associato alla voce dell’ordine Mollie."
|
989 |
|
990 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119
|
991 |
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."
|
992 |
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."
|
993 |
|
994 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145
|
996 |
msgid "Order completed using %1$s payment (%2$s)."
|
997 |
msgstr "Ordine completato utilizzando il %1$s pagamento (%2$s)."
|
998 |
|
1029 |
|
1030 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
1031 |
msgid "Przelewy24"
|
1032 |
+
msgstr "Przelewy24 "
|
1033 |
|
1034 |
+
#: src/Mollie/WC/Helper/Status.php:89
|
1035 |
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."
|
1036 |
msgstr "Mollie Payments per WooCommerce richiede l’estensione JSON per PHP. Abilitala nel tuo server o chiedi al tuo webhoster di abilitarla per te."
|
1037 |
|
1038 |
+
#: src/Mollie/WC/Payment/Order.php:836
|
1039 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
1040 |
+
msgstr "Rimborso dell’importo di %s%s effettuato in WooCommerce e su Mollie.%s ID rimborso: %s. "
|
1041 |
|
1042 |
+
#: src/Mollie/WC/Payment/Order.php:758
|
1043 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
1044 |
+
msgstr "%sx %s rimborsato per %s%s in WooCommerce e su Mollie.%s ID rimborso: %s. "
|
1045 |
|
1046 |
+
#: src/Mollie/WC/Payment/Order.php:742
|
1047 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
1048 |
+
msgstr "%sx %s annullato per %s%s in WooCommerce e su Mollie. "
|
1049 |
|
1050 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1051 |
+
#: src/Mollie/WC/Payment/Order.php:361
|
1052 |
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!"
|
1053 |
+
msgstr "Ordine completato su Mollie per %s ordine (%s). Lo stato completato per un ordine su Mollie non equivale allo stato Completato su WooCommerce!"
|
1054 |
|
1055 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1238
|
1057 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
1058 |
msgstr "%s pagamento riaccreditato tramite Mollie (%s). Stato dell’abbonamento aggiornato, ti preghiamo di rivederlo (e adattare lo stock di prodotti se lo usi)."
|
1059 |
|
|
|
|
|
|
|
|
|
|
|
1060 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
1061 |
msgid "Order"
|
1062 |
msgstr "Ordine"
|
1067 |
msgstr "%s pagamento (%s) annullato."
|
1068 |
|
1069 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1070 |
+
#: src/Mollie/WC/Payment/Order.php:931
|
1071 |
msgid "%s order (%s) expired ."
|
1072 |
msgstr "%s ordine (%s) scaduto."
|
1073 |
|
1074 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1075 |
+
#: src/Mollie/WC/Payment/Order.php:509
|
1076 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
1077 |
+
msgstr "%s ordine scaduto (%s) ma ordine non annullato perché c’è un altro pagamento in sospeso (%s)."
|
1078 |
|
1079 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1080 |
+
#: src/Mollie/WC/Payment/Order.php:444
|
1081 |
msgid "%s order (%s) cancelled ."
|
1082 |
msgstr "%s ordine (%s) annullato."
|
1083 |
|
1084 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1085 |
+
#: src/Mollie/WC/Payment/Order.php:314
|
1086 |
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."
|
1087 |
+
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. "
|
|
|
|
|
|
|
|
|
1088 |
|
1089 |
+
#: inc/settings/mollie_advanced_settings.php:57
|
1090 |
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."
|
1091 |
+
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."
|
1092 |
|
1093 |
+
#: inc/settings/mollie_advanced_settings.php:26
|
1094 |
msgid "Automatically send WordPress language"
|
1095 |
msgstr "Invia automaticamente la lingua di WordPress"
|
1096 |
|
1097 |
+
#: inc/settings/mollie_advanced_settings.php:18
|
1098 |
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."
|
1099 |
+
msgstr "Stato degli ordini quando un pagamento (non un ordine Mollie attraverso la Orders API) viene annullato 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."
|
1100 |
|
1101 |
+
#: src/Mollie/WC/Helper/OrderLines.php:497
|
1102 |
msgid "Shipping"
|
1103 |
msgstr "Spedizione"
|
1104 |
|
1117 |
|
1118 |
#: src/Mollie/WC/Helper/Status.php:131
|
1119 |
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
1120 |
+
msgstr "Mollie Payments per WooCommerce richiede che le funzioni PHP cURL siano disponibili. Assicurati che queste funzioni siano disponibili. "
|
1121 |
|
1122 |
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
1123 |
#. version
|
1125 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
1126 |
msgstr "Mollie Payments per WooCommerce richiede PHP %s o superiore, tu hai PHP %s. Effettua l’aggiornamento e visualizza %squeste FAQ%s"
|
1127 |
|
1128 |
+
#: src/Mollie/WC/Helper/Settings.php:825
|
1129 |
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."
|
1130 |
+
msgstr "Hai il gateway di pagamento Bonifico bancario diretto (BACS) predefinito WooCommerce abilitato in WooCommerce. 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. "
|
1131 |
|
1132 |
+
#: src/Mollie/WC/Helper/Settings.php:801
|
1133 |
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."
|
1134 |
+
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”. "
|
1135 |
|
1136 |
+
#: inc/settings/mollie_advanced_settings.php:54
|
1137 |
msgid "Lithuanian"
|
1138 |
msgstr "Lituano"
|
1139 |
|
1140 |
+
#: inc/settings/mollie_advanced_settings.php:53
|
1141 |
msgid "Latvian"
|
1142 |
msgstr "Lettone"
|
1143 |
|
1144 |
+
#: inc/settings/mollie_advanced_settings.php:52
|
1145 |
msgid "Polish"
|
1146 |
msgstr "Polacco"
|
1147 |
|
1148 |
+
#: inc/settings/mollie_advanced_settings.php:51
|
1149 |
msgid "Hungarian"
|
1150 |
msgstr "Ungherese"
|
1151 |
|
1152 |
+
#: inc/settings/mollie_advanced_settings.php:50
|
1153 |
msgid "Icelandic"
|
1154 |
msgstr "Islandese"
|
1155 |
|
1156 |
+
#: inc/settings/mollie_advanced_settings.php:49
|
1157 |
msgid "Danish"
|
1158 |
msgstr "Danese"
|
1159 |
|
1160 |
+
#: inc/settings/mollie_advanced_settings.php:48
|
1161 |
msgid "Finnish"
|
1162 |
msgstr "Finlandese"
|
1163 |
|
1164 |
+
#: inc/settings/mollie_advanced_settings.php:47
|
1165 |
msgid "Swedish"
|
1166 |
msgstr "Svedese"
|
1167 |
|
1168 |
+
#: inc/settings/mollie_advanced_settings.php:46
|
1169 |
msgid "Norwegian"
|
1170 |
msgstr "Norvegese"
|
1171 |
|
1172 |
+
#: inc/settings/mollie_advanced_settings.php:45
|
1173 |
msgid "Italian"
|
1174 |
msgstr "Italiano"
|
1175 |
|
1176 |
+
#: inc/settings/mollie_advanced_settings.php:44
|
1177 |
msgid "Portuguese"
|
1178 |
msgstr "Portoghese"
|
1179 |
|
1180 |
+
#: inc/settings/mollie_advanced_settings.php:43
|
1181 |
msgid "Catalan"
|
1182 |
msgstr "Catalano"
|
1183 |
|
1184 |
+
#: inc/settings/mollie_advanced_settings.php:41
|
1185 |
msgid "Swiss German"
|
1186 |
msgstr "Tedesco svizzero"
|
1187 |
|
1188 |
+
#: inc/settings/mollie_advanced_settings.php:40
|
1189 |
msgid "Austrian German"
|
1190 |
msgstr "Tedesco austriaco"
|
1191 |
|
1192 |
+
#: src/Mollie/WC/Helper/Api.php:42
|
1193 |
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."
|
1194 |
+
msgstr "Chiave/i API non valida/e. Acquisiscile sulla pagina degli %ssviluppatori nella dashboard Mollie%s. La chiave o le chiavi API devono iniziare con 'live_' o 'test_', essere di almeno 30 caratteri e non possono più contenere caratteri speciali."
|
1195 |
|
1196 |
+
#: src/Mollie/WC/Helper/Api.php:40
|
1197 |
msgid "No API key provided. Please set your Mollie API keys below."
|
1198 |
+
msgstr "Nessuna chiave Api fornita. Ti preghiamo di impostare le tue chiavi API Mollie di seguito."
|
1199 |
|
1200 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
1201 |
msgid "Giropay"
|
1206 |
msgstr "EPS"
|
1207 |
|
1208 |
#. translators: Placeholder 1: Payment method title
|
1209 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:314
|
1210 |
msgid "Could not create %s renewal payment."
|
1211 |
+
msgstr "Non è stato possibile creare %s il pagamento del rinnovo. "
|
1212 |
|
1213 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:271
|
1214 |
msgid "The customer (%s) does not have a valid mandate."
|
1215 |
msgstr "Il cliente (%s) non ha un mandato valido."
|
1216 |
|
1217 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:262
|
1218 |
msgid "The customer (%s) could not be used or found. "
|
1219 |
+
msgstr "Non è stato possibile trovare o utilizzare il cliente (%s)."
|
1220 |
|
1221 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
1222 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
1223 |
#. placeholder 5: refund ID
|
1224 |
+
#: src/Mollie/WC/Payment/Payment.php:511
|
1225 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
1226 |
msgstr "Rimborsato %s%s%s - Pagamento: %s, rimborso: %s"
|
1227 |
|
1228 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1229 |
+
#: src/Mollie/WC/Payment/Object.php:637
|
1230 |
msgid "%s payment failed via Mollie (%s)."
|
1231 |
msgstr "%s pagamento non riuscito tramite Mollie (%s)."
|
1232 |
|
1233 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1145
|
1234 |
msgid "New chargeback %s processed! Order note and order status updated."
|
1235 |
+
msgstr "Nuova riaccredito %s elaborato! Nota dell’ordine e stato dell’ordine aggiornati."
|
1236 |
|
1237 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1009
|
1238 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
1239 |
+
msgstr "Nuovo rimborso %s elaborato nella Dashboard Mollie! Nota dell’ordine aggiunta, ma ordine aggiornato."
|
1240 |
|
1241 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
1242 |
#. Mollie currencies
|
1243 |
+
#: src/Mollie/WC/Gateway/Abstract.php:364
|
1244 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
1245 |
+
msgstr "Valuta negozio corrente %s non supportata da Mollie. Leggi di più sulle %svalute supportate e sui metodi di pagamento.%s"
|
|
|
|
|
|
|
|
|
1246 |
|
1247 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1248 |
+
#: src/Mollie/WC/Payment/Object.php:677
|
|
|
1249 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
1250 |
+
msgstr "Il webhook Mollie ha chiamato, ma il pagamento è stato avviato anche tramite %s, quindi lo stato dell’ordine non è aggiornato. "
|
|
|
|
|
|
|
|
|
|
|
1251 |
|
1252 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1329
|
1253 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1338
|
1254 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
1255 |
+
msgstr "Il tuo pagamento non è riuscito. Completa l’ordine con una modalità di pagamento differente. "
|
1256 |
|
1257 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1258 |
+
#: src/Mollie/WC/Payment/Object.php:603
|
1259 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
1260 |
msgstr "%s pagamento del rinnovo non riuscito tramite Mollie (%s). Dovrai rivedere manualmente il pagamento e adattare gli stock di prodotti se li usi."
|
1261 |
|
1265 |
msgstr "Bancontact"
|
1266 |
|
1267 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1268 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1617
|
1269 |
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."
|
1270 |
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."
|
1271 |
|
1272 |
+
#: src/Mollie/WC/Gateway/Abstract.php:589
|
1273 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
1274 |
+
msgstr "Cambio dell’abbonamento non riuscito, non è stato trovato un mandato valido. Effettua un ordine completamente nuovo per modificare il tuo abbonamento."
|
|
|
|
|
|
|
|
|
1275 |
|
1276 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1277 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1177
|
1278 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
1279 |
+
msgstr "%s pagamento riaccreditato tramite Mollie (%s). Dovrai rivedere manualmente il pagamento (e adattare lo stock di prodotti se lo usi)."
|
1280 |
|
1281 |
+
#: src/Mollie/WC/Gateway/Kbc.php:40
|
1282 |
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."
|
1283 |
+
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."
|
1284 |
|
1285 |
#: src/Mollie/WC/Gateway/Kbc.php:34
|
1286 |
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."
|
1292 |
|
1293 |
#: src/Mollie/WC/Gateway/Ideal.php:41
|
1294 |
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."
|
1295 |
+
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."
|
1296 |
|
1297 |
+
#: src/Mollie/WC/Gateway/Ideal.php:35
|
1298 |
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."
|
1299 |
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."
|
1300 |
|
1301 |
+
#: src/Mollie/WC/Gateway/Ideal.php:33
|
1302 |
msgid "Show iDEAL banks dropdown"
|
1303 |
msgstr "Mostra il menu a tendina delle banche iDEAL"
|
1304 |
|
1305 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:39
|
1306 |
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."
|
1307 |
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."
|
1308 |
|
1314 |
msgid "Show gift cards dropdown"
|
1315 |
msgstr "Mostra menu a tendina delle carte regalo"
|
1316 |
|
1317 |
+
#: src/Mollie/WC/Gateway/Abstract.php:578
|
1318 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
1319 |
msgstr "Ordine completato internamente sulla base di un mandato valido su Mollie."
|
1320 |
|
1321 |
+
#: inc/settings/mollie_advanced_settings.php:16
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1322 |
msgid "Cancelled"
|
1323 |
msgstr "Annullato"
|
1324 |
|
1325 |
+
#: inc/settings/mollie_advanced_settings.php:15
|
1326 |
msgid "Pending"
|
1327 |
msgstr "In sospeso"
|
1328 |
|
1329 |
+
#: inc/settings/mollie_advanced_settings.php:12
|
1330 |
msgid "Order status after cancelled payment"
|
1331 |
msgstr "Stato dell’ordine dopo l’annullamento del pagamento"
|
1332 |
|
1333 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
1334 |
#. placeholder 3: consumer BIC
|
1335 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
1336 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124
|
1337 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
|
|
|
|
1338 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
1339 |
msgstr "Pagamento completato da <strong>%s</strong> (IBAN (ultime 4 cifre): %s, BIC: %s)"
|
1340 |
|
1341 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1653
|
1342 |
msgid "Your order has been cancelled."
|
1343 |
msgstr "Il tuo ordine è stato annullato."
|
1344 |
|
1345 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1626
|
1346 |
msgid ", payment pending."
|
1347 |
msgstr ", pagamento in sospeso."
|
1348 |
|
1349 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1590
|
1350 |
msgid "Order cancelled"
|
1351 |
msgstr "Ordine annullato"
|
1352 |
|
1353 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
1354 |
#. status, placeholder 3: payment ID
|
1355 |
+
#: src/Mollie/WC/Gateway/Abstract.php:895
|
1356 |
msgid "%s payment %s (%s), not processed."
|
1357 |
msgstr "%s pagamento %s (%s), non elaborato."
|
1358 |
|
1359 |
#. translators: Default gift card dropdown description, displayed above issuer
|
1360 |
#. drop down
|
1361 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:74
|
1362 |
msgid "Select your gift card"
|
1363 |
msgstr "Seleziona la tua carta regalo"
|
1364 |
|
1365 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:58
|
1366 |
msgid "Gift cards"
|
1367 |
msgstr "Carte regalo"
|
1368 |
|
1369 |
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
1370 |
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."
|
1371 |
+
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."
|
1372 |
|
1373 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1374 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:165
|
1375 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
1376 |
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."
|
1377 |
|
1378 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1379 |
+
#: src/Mollie/WC/Payment/Payment.php:406
|
1380 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
1381 |
+
msgstr "%s pagamento scaduto (%s) ma ordine non annullato perché c’è un altro pagamento in sospeso (%s)."
|
1382 |
|
1383 |
+
#: src/subscriptions_status_check_functions.php:186
|
1384 |
msgid "There are still some subscriptions left, use the tool again!"
|
1385 |
+
msgstr "Ci sono ancora alcuni abbonamenti, utilizza lo strumento di nuovo!"
|
1386 |
|
1387 |
+
#: src/subscriptions_status_check_functions.php:184
|
1388 |
msgid "No more subscriptions left to process!"
|
1389 |
msgstr "Non ci sono più abbonamenti per l’elaborazione!"
|
1390 |
|
1391 |
+
#: src/subscriptions_status_check_functions.php:171
|
1392 |
msgid "No subscriptions updated in this batch."
|
1393 |
msgstr "Nessun abbonamento aggiornato in questo batch."
|
1394 |
|
1395 |
+
#: src/subscriptions_status_check_functions.php:147
|
1396 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
1397 |
msgstr "Abbonamento non aggiornato perché su Mollie non era presente un mandato valido. Elaborato dallo strumento 'Stato degli abbonamenti Mollie'."
|
1398 |
|
1399 |
+
#: src/subscriptions_status_check_functions.php:133
|
1400 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
1401 |
msgstr "Abbonamento aggiornato su rinnovo Automatico tramite Mollie, stato impostato su Attivo. Elaborato dallo strumento 'Stato degli abbonamenti Mollie'."
|
1402 |
|
1410 |
|
1411 |
#: src/subscriptions_status_check_functions.php:30
|
1412 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
1413 |
+
msgstr "Controlla gli abbonamenti impostati in modo errato su 'Rinnovo manuale’. Leggi prima il"
|
1414 |
|
1415 |
+
#: inc/settings/mollie_advanced_settings.php:65
|
1416 |
msgid "Store customer details at Mollie"
|
1417 |
msgstr "Memorizza dettagli cliente su Mollie"
|
1418 |
|
1419 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1420 |
+
#: src/Mollie/WC/Plugin.php:130
|
1421 |
msgid "%s payment failed (%s)."
|
1422 |
msgstr "%s pagamento non riuscito (%s)."
|
1423 |
|
1424 |
+
#: src/Mollie/WC/Gateway/Kbc.php:59
|
1425 |
msgid "KBC/CBC Payment Button"
|
1426 |
msgstr "Pulsante di pagamento KBC/CBC"
|
1427 |
|
1428 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:37 src/Mollie/WC/Gateway/Ideal.php:39
|
1429 |
+
#: src/Mollie/WC/Gateway/Kbc.php:38
|
1430 |
msgid "Issuers empty option"
|
1431 |
msgstr "Opzione emittenti vuota"
|
1432 |
|
1433 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:58
|
1434 |
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."
|
1435 |
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."
|
1436 |
|
1437 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:57
|
1438 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
1439 |
msgstr "Salta la schermata di pagamento Mollie quando viene selezionato il bonifico bancario"
|
1440 |
|
1441 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:56
|
1442 |
msgid "Skip Mollie payment screen"
|
1443 |
msgstr "Salta la schermata di pagamento Mollie"
|
1444 |
|
1459 |
msgid "Mollie Payments for WooCommerce"
|
1460 |
msgstr "Mollie Payments per WooCommerce"
|
1461 |
|
1462 |
+
#: src/Mollie/WC/Plugin.php:1320
|
1463 |
msgid "Logs"
|
1464 |
msgstr "Log"
|
1465 |
|
1469 |
|
1470 |
#: src/Mollie/WC/Helper/Status.php:116
|
1471 |
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
1472 |
+
msgstr "Mollie Payments per WooCommerce richiede l’estensione PHP per JSON. Abilita l’estensione 'json' nella tua configurazione PHP."
|
1473 |
|
1474 |
#: src/Mollie/WC/Helper/Status.php:80
|
1475 |
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
1479 |
#. version, placeholder 3: used WooCommerce version
|
1480 |
#: src/Mollie/WC/Helper/Status.php:67
|
1481 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
1482 |
+
msgstr "Il %s plugin richiede almeno la versione WooCommerce %s, stai utilizzando la versione %s. Aggiorna il tuo plugin WooCommerce."
|
1483 |
|
1484 |
+
#: src/Mollie/WC/Helper/Settings.php:698
|
1485 |
msgid "Debug Log"
|
1486 |
msgstr "Log di debug"
|
1487 |
|
1488 |
+
#: inc/settings/mollie_advanced_settings.php:38
|
1489 |
msgid "French (Belgium)"
|
1490 |
msgstr "Francese (Belgio)"
|
1491 |
|
1492 |
+
#: inc/settings/mollie_advanced_settings.php:37
|
1493 |
msgid "French"
|
1494 |
msgstr "Francese"
|
1495 |
|
1496 |
+
#: inc/settings/mollie_advanced_settings.php:42
|
1497 |
msgid "Spanish"
|
1498 |
msgstr "Spagnolo"
|
1499 |
|
1500 |
+
#: inc/settings/mollie_advanced_settings.php:39
|
1501 |
msgid "German"
|
1502 |
msgstr "Tedesco"
|
1503 |
|
1504 |
+
#: inc/settings/mollie_advanced_settings.php:34
|
1505 |
msgid "English"
|
1506 |
msgstr "Inglese"
|
1507 |
|
1508 |
+
#: inc/settings/mollie_advanced_settings.php:36
|
1509 |
msgid "Flemish (Belgium)"
|
1510 |
msgstr "Fiammingo (Belgio)"
|
1511 |
|
1512 |
+
#: inc/settings/mollie_advanced_settings.php:35
|
1513 |
msgid "Dutch"
|
1514 |
msgstr "Olandese"
|
1515 |
|
1516 |
+
#: inc/settings/mollie_advanced_settings.php:30
|
1517 |
msgid "Detect using browser language"
|
1518 |
msgstr "Rileva utilizzando la lingua del browser"
|
1519 |
|
1520 |
+
#: inc/settings/mollie_advanced_settings.php:23
|
1521 |
msgid "Payment screen language"
|
1522 |
msgstr "Lingua della schermata di pagamento"
|
1523 |
|
1524 |
+
#: src/Mollie/WC/Helper/Settings.php:694
|
1525 |
msgid "Test API key should start with test_"
|
1526 |
msgstr "La chiave API di prova dovrebbe iniziare con test_"
|
1527 |
|
1528 |
+
#: src/Mollie/WC/Helper/Settings.php:683
|
1529 |
msgid "Test API key"
|
1530 |
msgstr "Chiave API di prova"
|
1531 |
|
1532 |
+
#: src/Mollie/WC/Helper/Settings.php:679
|
1533 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
1534 |
msgstr "Abilita la modalità di prova se desideri testare il plugin senza utilizzare pagamenti reali."
|
1535 |
|
1536 |
+
#: src/Mollie/WC/Helper/Settings.php:676
|
1537 |
msgid "Enable test mode"
|
1538 |
msgstr "Abilita modalità di prova"
|
1539 |
|
1540 |
+
#: src/Mollie/WC/Helper/Settings.php:672
|
1541 |
msgid "Live API key should start with live_"
|
1542 |
msgstr "La chiave API live dovrebbe iniziare con live_"
|
1543 |
|
1544 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
1545 |
#. %s's Will be replaced by a link to the Mollie profile
|
1546 |
+
#: src/Mollie/WC/Helper/Settings.php:666 src/Mollie/WC/Helper/Settings.php:688
|
1547 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
1548 |
msgstr "La chiave API viene utilizzata per il collegamento a Mollie. Puoi trovare la tua <strong>%s</strong> chiave API nel tuo %sprofilo Mollie%s"
|
1549 |
|
1550 |
+
#: src/Mollie/WC/Helper/Settings.php:661
|
1551 |
msgid "Live API key"
|
1552 |
msgstr "Chiave API live"
|
1553 |
|
1554 |
+
#: inc/settings/mollie_advanced_settings.php:8
|
1555 |
+
#: src/Mollie/WC/Helper/Settings.php:657
|
1556 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
1557 |
msgstr "Le seguenti opzioni sono necessarie per utilizzare il plugin e vengono utilizzate da tutte le modalità di pagamento Mollie"
|
1558 |
|
1559 |
+
#: src/Mollie/WC/Plugin.php:1314
|
1560 |
msgid "Mollie settings"
|
1561 |
msgstr "Impostazioni Mollie"
|
1562 |
|
1563 |
+
#: src/Mollie/WC/Helper/Settings.php:641
|
|
|
1564 |
msgid "Log files are saved to <code>%s</code>"
|
1565 |
msgstr "I file di log sono archiviati in <code>%s</code>"
|
1566 |
|
1567 |
+
#: src/Mollie/WC/Helper/Settings.php:635
|
|
|
|
|
|
|
|
|
1568 |
msgid "Log plugin events."
|
1569 |
msgstr "Eventi plugin di log."
|
1570 |
|
1571 |
+
#: src/Mollie/WC/Helper/Settings.php:582
|
1572 |
msgid "Edit"
|
1573 |
msgstr "Modifica"
|
1574 |
|
1575 |
+
#: src/Mollie/WC/Helper/Settings.php:559
|
1576 |
msgid "Refresh"
|
1577 |
msgstr "Aggiorna"
|
1578 |
|
1579 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
1580 |
#. profile
|
1581 |
+
#: src/Mollie/WC/Helper/Settings.php:550
|
1582 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
1583 |
msgstr "Le seguenti modalità di pagamento sono attivate nel tuo %sprofilo Mollie%s:"
|
1584 |
|
1585 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1586 |
msgid "Gateway disabled"
|
1587 |
msgstr "Gateway disabilitato"
|
1588 |
|
1589 |
+
#: inc/settings/mollie_advanced_settings.php:72
|
1590 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1591 |
msgid "Enabled"
|
1592 |
msgstr "Abilitato"
|
1593 |
|
1594 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1595 |
msgid "Gateway enabled"
|
1596 |
msgstr "Gateway abilitato"
|
1597 |
|
1598 |
+
#: src/Mollie/WC/Helper/Settings.php:495
|
1599 |
msgid "Connected"
|
1600 |
msgstr "Collegato"
|
1601 |
|
1602 |
+
#: src/Mollie/WC/Helper/Settings.php:494
|
1603 |
msgid "Mollie status:"
|
1604 |
msgstr "Stato Mollie:"
|
1605 |
|
1606 |
+
#: src/Mollie/WC/Helper/Settings.php:481
|
1607 |
msgid "Error"
|
1608 |
msgstr "Errore"
|
1609 |
|
1610 |
+
#: src/Mollie/WC/Helper/Data.php:477
|
1611 |
msgid "Item #%s stock incremented from %s to %s."
|
1612 |
msgstr "Articolo #%s giacenza incrementata da %s a %s."
|
1613 |
|
1621 |
|
1622 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1623 |
#. email, placeholder 3: PayPal transaction ID
|
1624 |
+
#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695
|
1625 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1626 |
msgstr "Pagamento completato da <strong>%s</strong> - %s (ID transazione PayPal: %s)"
|
1627 |
|
1628 |
+
#: src/Mollie/WC/Gateway/PayPal.php:43
|
1629 |
msgid "PayPal"
|
1630 |
msgstr "PayPal"
|
1631 |
|
1632 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
1633 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1634 |
#. drop down
|
1635 |
+
#: src/Mollie/WC/Gateway/Ideal.php:76 src/Mollie/WC/Gateway/Kbc.php:75
|
|
|
1636 |
msgid "Select your bank"
|
1637 |
msgstr "Seleziona la tua banca"
|
1638 |
|
1639 |
+
#: src/Mollie/WC/Gateway/Ideal.php:60
|
1640 |
msgid "iDEAL"
|
1641 |
msgstr "iDEAL"
|
1642 |
|
1645 |
msgstr "Addebito diretto SEPA"
|
1646 |
|
1647 |
#. translators: Placeholder 1: card holder
|
1648 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:136
|
1649 |
msgid "Payment completed by <strong>%s</strong>"
|
1650 |
msgstr "Pagamento completato da <strong>%s</strong>"
|
1651 |
|
1652 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:84
|
1653 |
msgid "Credit card"
|
1654 |
msgstr "Carta di credito"
|
1655 |
|
1657 |
msgid "Belfius Direct Net"
|
1658 |
msgstr "Belfius Direct Net"
|
1659 |
|
1660 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:235
|
1661 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1662 |
msgstr "Il pagamento scadrà il <strong>%s</strong>. Assicurati di effettuare il bonifico per l’importo totale prima di questa data."
|
1663 |
|
1664 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:228
|
1665 |
msgid "The payment will expire on <strong>%s</strong>."
|
1666 |
msgstr "Il pagamento scadrà il <strong>%s</strong>."
|
1667 |
|
1668 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1669 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1670 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:214
|
1671 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1672 |
msgstr "Ti preghiamo di fornire il riferimento del pagamento <strong>%s</strong>"
|
1673 |
|
1674 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1675 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1676 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:209
|
1677 |
msgid "Payment reference: %s"
|
1678 |
msgstr "Riferimento del pagamento: %s"
|
1679 |
|
1680 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:204
|
1681 |
msgid "BIC: %s"
|
1682 |
msgstr "BIC: %s"
|
1683 |
|
1684 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:203
|
1685 |
msgid "IBAN: <strong>%s</strong>"
|
1686 |
msgstr "IBAN: <strong>%s</strong>"
|
1687 |
|
1688 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1689 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:202
|
1690 |
msgid "Beneficiary: %s"
|
1691 |
msgstr "Beneficiario: %s"
|
1692 |
|
1693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
1694 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1695 |
msgstr "Si prega di completare il pagamento trasferendo l'importo totale sul seguente conto bancario:"
|
1696 |
|
1697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:138
|
1698 |
msgid "Bank Transfer"
|
1699 |
msgstr "Bonifico bancario"
|
1700 |
|
1701 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1702 |
msgid "Disabled"
|
1703 |
msgstr "Disabilitato"
|
1704 |
|
1705 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
1706 |
+
msgid "Number of DAYS after the payment will expire. Default <code>%d</code> days"
|
1707 |
+
msgstr "Numero di GIORNI dopo il quale il pagamento scadrà. Giorni <code>%d</code> predefiniti"
|
1708 |
|
1709 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:45
|
1710 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
1711 |
msgid "Expiry date"
|
1712 |
msgstr "Data di scadenza"
|
1713 |
|
1714 |
#. translators: Placeholder 1: payment method
|
1715 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1542
|
1716 |
msgid "Payment completed with <strong>%s</strong>"
|
1717 |
msgstr "Pagamento completato con <strong>%s</strong>"
|
1718 |
|
1719 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1535
|
1720 |
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."
|
1721 |
+
msgstr "Non abbiamo ricevuto uno stato del pagamento definito. Riceverai un'e-mail non appena riceveremo una conferma della banca/dell’operatore commerciale."
|
1722 |
|
1723 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1530
|
1724 |
msgid "We have not received a definite payment status."
|
1725 |
msgstr "Non abbiamo ricevuto uno stato del pagamento definito."
|
1726 |
|
1727 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1315
|
1728 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1729 |
msgstr "Hai annullato il tuo pagamento. Completa l’ordine con una modalità di pagamento differente."
|
1730 |
|
1731 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1732 |
+
#: src/Mollie/WC/Payment/Payment.php:429
|
1733 |
msgid "%s payment expired (%s)."
|
1734 |
msgstr "%s pagamento scaduto (%s)."
|
1735 |
|
1736 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1737 |
+
#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:249
|
1738 |
msgid "Order completed using %s payment (%s)."
|
1739 |
msgstr "Ordine completato utilizzando il %s pagamento (%s)."
|
1740 |
|
1741 |
#. translators: Placeholder 1: Payment method title
|
1742 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:242
|
1743 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:298
|
1744 |
+
#: src/Mollie/WC/Gateway/Abstract.php:686
|
1745 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78
|
1746 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:122
|
1747 |
msgid "Could not create %s payment."
|
1748 |
msgstr "Non è stato possibile creare %s il pagamento."
|
1749 |
|
1750 |
+
#: src/Mollie/WC/Gateway/Abstract.php:671
|
1751 |
+
#: src/Mollie/WC/Gateway/Abstract.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1752 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1753 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1244
|
1754 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1619
|
1755 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2142
|
1756 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1757 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139
|
1758 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:422
|
1759 |
+
#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642
|
1760 |
+
#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316
|
1761 |
+
#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446
|
1762 |
+
#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936
|
1763 |
+
#: src/Mollie/WC/Payment/Payment.php:251 src/Mollie/WC/Payment/Payment.php:338
|
1764 |
+
#: src/Mollie/WC/Payment/Payment.php:408 src/Mollie/WC/Payment/Payment.php:431
|
1765 |
msgid "test mode"
|
1766 |
msgstr "modalità di prova"
|
1767 |
|
1768 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1769 |
+
#: src/Mollie/WC/Gateway/Abstract.php:669
|
1770 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1771 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:420
|
|
|
1772 |
msgid "%s payment started (%s)."
|
1773 |
msgstr "%s pagamento avviato (%s)."
|
1774 |
|
1775 |
+
#: src/Mollie/WC/Gateway/Abstract.php:659
|
1776 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1777 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:413
|
|
|
1778 |
msgid "Awaiting payment confirmation."
|
1779 |
msgstr "In attesa della conferma del pagamento."
|
1780 |
|
1781 |
+
#: src/Mollie/WC/Gateway/Abstract.php:526
|
1782 |
msgid "Could not load order %s"
|
1783 |
msgstr "Non è stato possibile caricare l’ordine %s"
|
1784 |
|
1785 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1786 |
#. be replaced by a link to the Mollie profile
|
1787 |
+
#: src/Mollie/WC/Gateway/Abstract.php:352
|
1788 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1789 |
msgstr "%s non abilitato nel tuo profilo Mollie. Puoi abilitarlo modificando il tuo %sprofilo Mollie%s."
|
1790 |
|
1791 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1792 |
#. setting page
|
1793 |
+
#: src/Mollie/WC/Gateway/Abstract.php:340
|
1794 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1795 |
msgstr "Nessuna chiave API fornita. Per prima cosa, ti preghiamo di %simpostare la tua chiave API Mollie%s."
|
1796 |
|
1797 |
+
#: src/Mollie/WC/Gateway/Abstract.php:221
|
1798 |
msgid "Gateway Disabled"
|
1799 |
msgstr "Gateway disabilitato"
|
1800 |
|
1801 |
+
#: src/Mollie/WC/Gateway/Abstract.php:338 src/Mollie/WC/Helper/Settings.php:545
|
1802 |
msgid "Test mode enabled."
|
1803 |
msgstr "Modalità di prova abilitata."
|
1804 |
|
1805 |
+
#: src/Mollie/WC/Helper/Settings.php:295
|
1806 |
msgid "Hold Stock (minutes)"
|
1807 |
msgstr "Mantieni la giacenza (minuti)"
|
1808 |
|
1809 |
+
#: src/Mollie/WC/Helper/Settings.php:286
|
1810 |
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."
|
1811 |
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."
|
1812 |
|
1813 |
+
#: inc/settings/mollie_advanced_settings.php:29
|
1814 |
+
#: inc/settings/mollie_advanced_settings.php:90
|
1815 |
+
#: src/Mollie/WC/Helper/Settings.php:275
|
1816 |
msgid "default"
|
1817 |
msgstr "predefinito"
|
1818 |
|
1819 |
+
#: src/Mollie/WC/Helper/Settings.php:267
|
1820 |
msgid "Initial order status"
|
1821 |
msgstr "Stato iniziale dell’ordine"
|
1822 |
|
1823 |
+
#: inc/settings/mollie_applepay_settings.php:63
|
1824 |
+
#: src/Mollie/WC/Helper/Settings.php:84
|
1825 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1826 |
msgstr "Descrizione del metodo di pagamento che il cliente vedrà sul tuo checkout. Predefinito <code>%s</code>"
|
1827 |
|
1828 |
+
#: inc/settings/mollie_applepay_settings.php:60
|
1829 |
+
#: src/Mollie/WC/Helper/Settings.php:81
|
1830 |
msgid "Description"
|
1831 |
msgstr "Descrizione"
|
1832 |
|
1833 |
+
#: src/Mollie/WC/Helper/Settings.php:99
|
1834 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1835 |
msgstr "Mostra logo sulla pagina del checkout. Predefinito <code>abilitato</code>"
|
1836 |
|
1837 |
+
#: inc/settings/mollie_applepay_settings.php:45
|
1838 |
+
#: inc/settings/mollie_applepay_settings.php:48
|
1839 |
+
#: src/Mollie/WC/Helper/Settings.php:94
|
1840 |
msgid "Display logo"
|
1841 |
msgstr "Mostra logo"
|
1842 |
|
1843 |
+
#: inc/settings/mollie_applepay_settings.php:32
|
1844 |
+
#: src/Mollie/WC/Helper/Settings.php:71
|
1845 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1846 |
+
msgstr "Questo controlla il titolo che l’utente vede durante al momento dell’acquisto. Predefinito <code>%s</code>"
|
1847 |
|
1848 |
+
#: inc/settings/mollie_applepay_settings.php:29
|
1849 |
+
#: src/Mollie/WC/Helper/Settings.php:68
|
1850 |
msgid "Title"
|
1851 |
msgstr "Titolo"
|
1852 |
|
1853 |
+
#. translators: Placeholder 1: enabled or disabled
|
1854 |
+
#: inc/settings/mollie_applepay_settings.php:21
|
1855 |
+
#: src/Mollie/WC/Helper/Settings.php:54
|
1856 |
msgid "Enable %s"
|
1857 |
msgstr "Abilita %s"
|
1858 |
|
1859 |
+
#: inc/settings/mollie_applepay_settings.php:19
|
1860 |
+
#: src/Mollie/WC/Helper/Settings.php:48
|
1861 |
msgid "Enable/Disable"
|
1862 |
msgstr "Abilita/Disabilita"
|
languages/mollie-payments-for-woocommerce-nl_BE.mo
CHANGED
Binary file
|
languages/mollie-payments-for-woocommerce-nl_BE.po
CHANGED
@@ -1,33 +1,695 @@
|
|
1 |
-
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in Dutch
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2021-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
-
"Language:
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
|
14 |
-
#: src/Mollie/WC/Plugin.php:
|
15 |
-
msgid "
|
16 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
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."
|
20 |
-
msgstr "Daarvoor moeten alle producten
|
21 |
|
22 |
-
#: src/Mollie/WC/Plugin.php:
|
23 |
msgid "Products voucher category"
|
24 |
-
msgstr "
|
25 |
|
26 |
-
#: src/Mollie/WC/Plugin.php:
|
27 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
28 |
-
msgstr "%1$sMollie-betalingen voor WooCommerce%2$s De testmodus is actief, %3$s
|
29 |
|
30 |
-
#: src/Mollie/WC/Plugin.php:
|
|
|
31 |
msgid "Mollie Settings"
|
32 |
msgstr "Mollie-instellingen"
|
33 |
|
@@ -43,49 +705,43 @@ msgstr "Waardebon"
|
|
43 |
|
44 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
45 |
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"
|
46 |
-
msgstr "Daarvoor moeten alle producten
|
47 |
|
48 |
-
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:
|
49 |
msgid "Select the default products category"
|
50 |
msgstr "Selecteer de categorie standaard producten"
|
51 |
|
52 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
53 |
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"
|
54 |
-
msgstr "Activeer deze optie
|
55 |
|
56 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
57 |
msgid "Enable expiry date for payments"
|
58 |
msgstr "Activeer de vervaldatum voor betalingen"
|
59 |
|
60 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
61 |
msgid "Activate expiry date setting"
|
62 |
msgstr "Activeer instelling vervaldatum"
|
63 |
|
64 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
65 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
66 |
msgid " Remainder: %1$s %2$s %3$s."
|
67 |
-
msgstr " Restant: %1$s %2$s %3$s"
|
68 |
|
69 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
70 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
71 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
72 |
msgstr "Mollie - Details cadeaukaart: %1$s %2$s %3$s."
|
73 |
|
74 |
-
#:
|
75 |
-
msgid "Enable the Apple Pay direct buy button"
|
76 |
-
msgstr "Activeer de Apple Pay direct kopen betaalknop"
|
77 |
-
|
78 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
79 |
-
msgid "Enable Apple Pay Button"
|
80 |
-
msgstr "Activeer de Apple Pay betaalknop"
|
81 |
-
|
82 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:51
|
83 |
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"
|
84 |
-
msgstr "%1$sApple Pay
|
85 |
|
86 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
87 |
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"
|
88 |
-
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
|
89 |
|
90 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
91 |
msgid "Show Mastercard Icon"
|
@@ -104,7 +760,7 @@ msgstr "Lijn tekst uit"
|
|
104 |
#: inc/settings/mollie_components.php:72
|
105 |
msgctxt "Mollie Components Settings"
|
106 |
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
107 |
-
msgstr "
|
108 |
|
109 |
#: inc/settings/mollie_components.php:35
|
110 |
msgctxt "Mollie Components Settings"
|
@@ -137,28 +793,24 @@ msgstr "Toon American Express pictogram"
|
|
137 |
|
138 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
139 |
msgid "Show customized creditcard icons on checkout page"
|
140 |
-
msgstr "Toon aangepaste
|
141 |
|
142 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
143 |
msgid "Enable Icons Selector"
|
144 |
-
msgstr "Activeer
|
145 |
|
146 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
147 |
msgid "Customize Icons"
|
148 |
msgstr "Pas pictogrammen aan"
|
149 |
|
150 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
151 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
152 |
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)."
|
153 |
-
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)."
|
154 |
|
155 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
156 |
msgid "Failed switching subscriptions, no valid mandate."
|
157 |
-
msgstr "
|
158 |
-
|
159 |
-
#: inc/settings/mollie_components_enabler.php:7
|
160 |
-
msgid "Enable the Mollie Components for this Gateway"
|
161 |
-
msgstr "Activeer de Mollie-componenten voor deze gateway"
|
162 |
|
163 |
#: inc/settings/mollie_components_enabler.php:6
|
164 |
msgid "Enable Mollie Components"
|
@@ -289,35 +941,37 @@ msgctxt "Mollie Components Settings"
|
|
289 |
msgid "Base Styles"
|
290 |
msgstr "Basisstijlen"
|
291 |
|
292 |
-
#: src/Mollie/WC/Plugin.php:
|
293 |
msgid "An unknown error occurred, please check the card fields."
|
294 |
msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden."
|
295 |
|
296 |
-
#: src/Mollie/WC/Plugin.php:
|
297 |
msgid "Verification Code"
|
298 |
msgstr "Verificatiecode"
|
299 |
|
300 |
-
#: src/Mollie/WC/Plugin.php:
|
301 |
msgid "Expiry Date"
|
302 |
msgstr "Vervaldatum"
|
303 |
|
304 |
-
#: src/Mollie/WC/Plugin.php:
|
305 |
msgid "Card Number"
|
306 |
msgstr "Kaartnummer"
|
307 |
|
308 |
-
#: src/Mollie/WC/Plugin.php:
|
309 |
msgid "Card Holder"
|
310 |
msgstr "Kaarthouder"
|
311 |
|
|
|
312 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
|
|
313 |
msgid "Mollie Components"
|
314 |
msgstr "Mollie-componenten"
|
315 |
|
316 |
-
#: src/Mollie/WC/Plugin.php:
|
317 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
318 |
msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie."
|
319 |
|
320 |
-
#: src/Mollie/WC/Plugin.php:
|
321 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
322 |
msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie."
|
323 |
|
@@ -327,18 +981,18 @@ msgstr "Lege WooCommerce bestelartikelen of Mollie-bestellijnen."
|
|
327 |
|
328 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
329 |
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
330 |
-
msgstr "Onmogelijk om
|
331 |
|
332 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
333 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
334 |
msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld."
|
335 |
|
336 |
-
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:
|
337 |
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."
|
338 |
-
msgstr "Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag of hoeveelheid van ten minste één bestelregel.
|
339 |
|
340 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
341 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:
|
342 |
msgid "Order completed using %1$s payment (%2$s)."
|
343 |
msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)."
|
344 |
|
@@ -375,39 +1029,34 @@ msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-
|
|
375 |
|
376 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
377 |
msgid "Przelewy24"
|
378 |
-
msgstr "Przelewy24"
|
379 |
|
380 |
-
#:
|
381 |
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."
|
382 |
-
msgstr "Mollie-betalingen voor WooCommerce vereisen
|
383 |
|
384 |
-
#: src/Mollie/WC/Payment/Order.php:
|
385 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
386 |
-
msgstr "Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s."
|
387 |
|
388 |
-
#: src/Mollie/WC/Payment/Order.php:
|
389 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
390 |
-
msgstr "%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s."
|
391 |
|
392 |
-
#: src/Mollie/WC/Payment/Order.php:
|
393 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
394 |
-
msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie."
|
395 |
|
396 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
397 |
-
#: src/Mollie/WC/Payment/Order.php:
|
398 |
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!"
|
399 |
-
msgstr "Bestelling voltooid bij Mollie voor %s bestelling (%s). Ten minste één
|
400 |
|
401 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
402 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
403 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
404 |
-
msgstr "%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet,
|
405 |
|
406 |
-
#: src/Mollie/WC/Helper/Settings.php:623
|
407 |
-
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
408 |
-
msgstr "Om Klarna-betalingen via Mollie te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn. Controleer of dit het geval is."
|
409 |
-
|
410 |
-
#: src/Mollie/WC/Payment/Payment.php:39
|
411 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
412 |
msgid "Order"
|
413 |
msgstr "Bestelling"
|
@@ -418,48 +1067,44 @@ msgid "%s payment (%s) cancelled ."
|
|
418 |
msgstr "%s betaling (%s) geannuleerd."
|
419 |
|
420 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
421 |
-
#: src/Mollie/WC/Payment/Order.php:
|
422 |
msgid "%s order (%s) expired ."
|
423 |
msgstr "%s bestelling (%s) verlopen."
|
424 |
|
425 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
426 |
-
#: src/Mollie/WC/Payment/Order.php:
|
427 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
428 |
-
msgstr "%s bestelling verlopen (%s) maar niet geannuleerd wegens een andere
|
429 |
|
430 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
431 |
-
#: src/Mollie/WC/Payment/Order.php:
|
432 |
msgid "%s order (%s) cancelled ."
|
433 |
msgstr "%s bestelling (%s) geannuleerd."
|
434 |
|
435 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
436 |
-
#: src/Mollie/WC/Payment/Order.php:
|
437 |
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."
|
438 |
-
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
|
439 |
-
|
440 |
-
#: src/Mollie/WC/Helper/Settings.php:648
|
441 |
-
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
442 |
-
msgstr "Om Klarna-betalingen via Mollie te accepteren, dient u WooCommerce 3.0 of hoger gebruiken. Nu gebruikt u versie %s."
|
443 |
|
444 |
-
#:
|
445 |
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."
|
446 |
-
msgstr "Het verzenden van een taal (of locatie) is
|
447 |
|
448 |
-
#:
|
449 |
msgid "Automatically send WordPress language"
|
450 |
msgstr "Automatisch verzenden van WordPress-taal"
|
451 |
|
452 |
-
#:
|
453 |
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."
|
454 |
-
msgstr "Status voor bestellingen
|
455 |
|
456 |
-
#: src/Mollie/WC/Helper/OrderLines.php:
|
457 |
msgid "Shipping"
|
458 |
msgstr "Verzending"
|
459 |
|
460 |
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
461 |
msgid "Klarna Slice it"
|
462 |
-
msgstr "
|
463 |
|
464 |
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
465 |
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
@@ -472,7 +1117,7 @@ msgstr "Klarna betaal later"
|
|
472 |
|
473 |
#: src/Mollie/WC/Helper/Status.php:131
|
474 |
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
475 |
-
msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn."
|
476 |
|
477 |
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
478 |
#. version
|
@@ -480,77 +1125,77 @@ msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschi
|
|
480 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
481 |
msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, jij hebt PHP %s. Installeer de upgrade en bekijk %sdeze FAQ%s"
|
482 |
|
483 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
484 |
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."
|
485 |
-
msgstr "Je hebt de WooCommerce standaard Direct Bank Transfer (BACS) betalingsgateway
|
486 |
|
487 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
488 |
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."
|
489 |
-
msgstr "Je hebt WooCommerce
|
490 |
|
491 |
-
#:
|
492 |
msgid "Lithuanian"
|
493 |
msgstr "Litouws"
|
494 |
|
495 |
-
#:
|
496 |
msgid "Latvian"
|
497 |
msgstr "Lets"
|
498 |
|
499 |
-
#:
|
500 |
msgid "Polish"
|
501 |
msgstr "Pools"
|
502 |
|
503 |
-
#:
|
504 |
msgid "Hungarian"
|
505 |
msgstr "Hongaars"
|
506 |
|
507 |
-
#:
|
508 |
msgid "Icelandic"
|
509 |
msgstr "IJslands"
|
510 |
|
511 |
-
#:
|
512 |
msgid "Danish"
|
513 |
msgstr "Deens"
|
514 |
|
515 |
-
#:
|
516 |
msgid "Finnish"
|
517 |
msgstr "Fins"
|
518 |
|
519 |
-
#:
|
520 |
msgid "Swedish"
|
521 |
msgstr "Zweeds"
|
522 |
|
523 |
-
#:
|
524 |
msgid "Norwegian"
|
525 |
msgstr "Noors"
|
526 |
|
527 |
-
#:
|
528 |
msgid "Italian"
|
529 |
msgstr "Italiaans"
|
530 |
|
531 |
-
#:
|
532 |
msgid "Portuguese"
|
533 |
msgstr "Portugees"
|
534 |
|
535 |
-
#:
|
536 |
msgid "Catalan"
|
537 |
msgstr "Spaans (Catalaans)"
|
538 |
|
539 |
-
#:
|
540 |
msgid "Swiss German"
|
541 |
msgstr "Zwitserduits"
|
542 |
|
543 |
-
#:
|
544 |
msgid "Austrian German"
|
545 |
msgstr "Oostenrijks-Duits"
|
546 |
|
547 |
-
#: src/Mollie/WC/Helper/Api.php:
|
548 |
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."
|
549 |
-
msgstr "Ongeldige API-sleutel(s). Haal deze op
|
550 |
|
551 |
-
#: src/Mollie/WC/Helper/Api.php:
|
552 |
msgid "No API key provided. Please set your Mollie API keys below."
|
553 |
-
msgstr "Geen API-sleutel
|
554 |
|
555 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
556 |
msgid "Giropay"
|
@@ -561,68 +1206,58 @@ msgid "EPS"
|
|
561 |
msgstr "EPS"
|
562 |
|
563 |
#. translators: Placeholder 1: Payment method title
|
564 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
565 |
msgid "Could not create %s renewal payment."
|
566 |
-
msgstr "Kon geen %s betalingshernieuwing aanmaken."
|
567 |
|
568 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
569 |
msgid "The customer (%s) does not have a valid mandate."
|
570 |
msgstr "De klant (%s) heeft geen geldig mandaat."
|
571 |
|
572 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
573 |
msgid "The customer (%s) could not be used or found. "
|
574 |
-
msgstr "De klant (%s) kon niet gebruikt of gevonden worden.
|
575 |
|
576 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
577 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
578 |
#. placeholder 5: refund ID
|
579 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
580 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
581 |
msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s"
|
582 |
|
583 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
584 |
-
#: src/Mollie/WC/Payment/
|
585 |
msgid "%s payment failed via Mollie (%s)."
|
586 |
msgstr "%s betaling mislukt via Mollie (%s)."
|
587 |
|
588 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
589 |
msgid "New chargeback %s processed! Order note and order status updated."
|
590 |
msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt."
|
591 |
|
592 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
593 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
594 |
-
msgstr "Nieuwe terugbetaling %s verwerkt
|
595 |
|
596 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
597 |
#. Mollie currencies
|
598 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
599 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
600 |
-
msgstr "Huidige shopvaluta %s niet ondersteund door Mollie. Lees meer over %sondersteunde valuta's en
|
601 |
-
|
602 |
-
#: mollie-payments-for-woocommerce.php:138
|
603 |
-
msgid "Mollie Payments for WooCommerce 4.0 requires PHP 5.6 or higher. Your PHP version is outdated. Upgrade your PHP version and view %sthis FAQ%s."
|
604 |
-
msgstr "Mollie-betalingen voor WooCommerce 4.0 vereisen PHP 5.6 of hoger. Je PHP-versie is verouderd. Upgrade je PHP-versie en bekijk %sdeze FAQ%s."
|
605 |
|
606 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
607 |
-
#: src/Mollie/WC/Payment/
|
608 |
-
#: src/Mollie/WC/Payment/Payment.php:328 src/Mollie/WC/Payment/Payment.php:491
|
609 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
610 |
-
msgstr "Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de bestellingsstatus is niet geüpdatet."
|
611 |
-
|
612 |
-
#. translators: Placeholder 1: enabled or disabled
|
613 |
-
#: src/Mollie/WC/Helper/Settings.php:465
|
614 |
-
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
615 |
-
msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor Single Click Payments? Standaard <code>%s</code>. Vereist als WooCommerce Abonnementen worden gebruikt!"
|
616 |
|
617 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
618 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
619 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
620 |
-
msgstr "Je betaling is niet gelukt. Vervolledig je bestelling met een andere betaalmethode."
|
621 |
|
622 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
623 |
-
#: src/Mollie/WC/Payment/
|
624 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
625 |
-
msgstr "%s
|
626 |
|
627 |
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
628 |
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
@@ -630,26 +1265,22 @@ msgid "Bancontact"
|
|
630 |
msgstr "Bancontact"
|
631 |
|
632 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
633 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
634 |
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."
|
635 |
-
msgstr "%s betaling nog in behandeling (%s) maar klant is reeds teruggekeerd naar de shop. Status moet in de toekomst automatisch worden bijgewerkt
|
636 |
|
637 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
638 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
639 |
msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats een volledig nieuwe bestelling om je abonnement te wijzigen."
|
640 |
|
641 |
-
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
642 |
-
msgid "ING Home'Pay"
|
643 |
-
msgstr "ING Home'Pay"
|
644 |
-
|
645 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
646 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
647 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
648 |
msgstr "%s betaling teruggevorderd via Mollie (%s). Je moet de betaling handmatig controleren (en productvoorraden aanpassen als je dit gebruikt)."
|
649 |
|
650 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
651 |
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."
|
652 |
-
msgstr "Deze tekst
|
653 |
|
654 |
#: src/Mollie/WC/Gateway/Kbc.php:34
|
655 |
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."
|
@@ -661,17 +1292,17 @@ msgstr "Toon KBC/CBC-banken dropdown"
|
|
661 |
|
662 |
#: src/Mollie/WC/Gateway/Ideal.php:41
|
663 |
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."
|
664 |
-
msgstr "Deze tekst
|
665 |
|
666 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
667 |
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."
|
668 |
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."
|
669 |
|
670 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
671 |
msgid "Show iDEAL banks dropdown"
|
672 |
msgstr "Toon iDEAL-banken dropdown"
|
673 |
|
674 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
675 |
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."
|
676 |
msgstr "Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd."
|
677 |
|
@@ -683,99 +1314,91 @@ msgstr "Als je dit deactiveert, zal een dropdown met verschillende cadeaubonnen
|
|
683 |
msgid "Show gift cards dropdown"
|
684 |
msgstr "Toon cadeaubonnen-dropdown"
|
685 |
|
686 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
687 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
688 |
msgstr "Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie."
|
689 |
|
690 |
-
#:
|
691 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s This version requires WooCommerce 2.2 or newer. Please %3$supdate WooCommerce to version 2.2 or newer »%4$s"
|
692 |
-
msgstr "%1$sMollie-betalingen voor WooCommerce is niet actief.%2$s Deze versie vereist WooCommerce 2.2 of hoger. %3$sUpdate WooCommerce naar versie 2.2 of hoger »%4$s"
|
693 |
-
|
694 |
-
#: mollie-payments-for-woocommerce.php:164
|
695 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for it to work. Please %5$sinstall & activate WooCommerce »%6$s"
|
696 |
-
msgstr "%1$sMollie-betalingen voor WooCommerce is niet actief.%2$s De %3$sWooCommerce-plugin%4$s moet actief zijn om te werken. Installeer %5$s& activeer WooCommerce »%6$s"
|
697 |
-
|
698 |
-
#: src/Mollie/WC/Helper/Settings.php:414
|
699 |
msgid "Cancelled"
|
700 |
msgstr "Geannuleerd"
|
701 |
|
702 |
-
#:
|
703 |
msgid "Pending"
|
704 |
msgstr "In behandeling"
|
705 |
|
706 |
-
#:
|
707 |
msgid "Order status after cancelled payment"
|
708 |
msgstr "Bestelstatus na geannuleerde betaling"
|
709 |
|
710 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
711 |
#. placeholder 3: consumer BIC
|
|
|
|
|
712 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
713 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:185
|
714 |
-
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:121
|
715 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
716 |
msgstr "Betaling voltooid met <strong>%s</strong> (IBAN (ten minste 4 cijfers): %s, BIC: %s)"
|
717 |
|
718 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
719 |
msgid "Your order has been cancelled."
|
720 |
msgstr "Je bestelling is geannuleerd."
|
721 |
|
722 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
723 |
msgid ", payment pending."
|
724 |
msgstr ", betaling in behandeling."
|
725 |
|
726 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
727 |
msgid "Order cancelled"
|
728 |
msgstr "Bestelling geannuleerd"
|
729 |
|
730 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
731 |
#. status, placeholder 3: payment ID
|
732 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
733 |
msgid "%s payment %s (%s), not processed."
|
734 |
msgstr "%s betaling %s (%s), niet verwerkt."
|
735 |
|
736 |
#. translators: Default gift card dropdown description, displayed above issuer
|
737 |
#. drop down
|
738 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
739 |
msgid "Select your gift card"
|
740 |
msgstr "Selecteer je cadeaubon"
|
741 |
|
742 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
743 |
msgid "Gift cards"
|
744 |
msgstr "Cadeaubonnen"
|
745 |
|
746 |
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
747 |
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."
|
748 |
-
msgstr "SEPA-incasso wordt gebruikt voor terugkerende betalingen met WooCommerce-abonnementen, en
|
749 |
|
750 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
751 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
752 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
753 |
msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is."
|
754 |
|
755 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
756 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
757 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
758 |
-
msgstr "%s betaling verlopen (%s) maar niet geannuleerd wegens een andere
|
759 |
|
760 |
-
#: src/subscriptions_status_check_functions.php:
|
761 |
msgid "There are still some subscriptions left, use the tool again!"
|
762 |
msgstr "Er zijn nog enkele abonnementen over, gebruik de tool opnieuw!"
|
763 |
|
764 |
-
#: src/subscriptions_status_check_functions.php:
|
765 |
msgid "No more subscriptions left to process!"
|
766 |
msgstr "Geen abonnementen over om te verwerken!"
|
767 |
|
768 |
-
#: src/subscriptions_status_check_functions.php:
|
769 |
msgid "No subscriptions updated in this batch."
|
770 |
msgstr "Geen abonnementen geüpdatet in deze batch."
|
771 |
|
772 |
-
#: src/subscriptions_status_check_functions.php:
|
773 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
774 |
msgstr "Abonnement niet geüpdatet omdat er geen geldig mandaat was bij Mollie. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
775 |
|
776 |
-
#: src/subscriptions_status_check_functions.php:
|
777 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
778 |
-
msgstr "Abonnement geüpdatet naar Geautomatiseerde vernieuwing via Mollie, status ingesteld op Actief. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
779 |
|
780 |
#: src/subscriptions_status_check_functions.php:36
|
781 |
msgid "Check subscriptions status"
|
@@ -787,35 +1410,35 @@ msgstr "Mollie-abonnementenstatus"
|
|
787 |
|
788 |
#: src/subscriptions_status_check_functions.php:30
|
789 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
790 |
-
msgstr "Controles op abonnementen die verkeerd zijn ingesteld op 'Handmatige vernieuwing'. Lees eerst de
|
791 |
|
792 |
-
#:
|
793 |
msgid "Store customer details at Mollie"
|
794 |
msgstr "Klantgegevens opslaan bij Mollie"
|
795 |
|
796 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
797 |
-
#: src/Mollie/WC/Plugin.php:
|
798 |
msgid "%s payment failed (%s)."
|
799 |
msgstr "%s betaling mislukt (%s)."
|
800 |
|
801 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
802 |
msgid "KBC/CBC Payment Button"
|
803 |
msgstr "KBC/CBC Betaalknop"
|
804 |
|
805 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
806 |
-
#: src/Mollie/WC/Gateway/
|
807 |
msgid "Issuers empty option"
|
808 |
msgstr "Optie uitgevers leeg"
|
809 |
|
810 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
811 |
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."
|
812 |
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."
|
813 |
|
814 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
815 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
816 |
msgstr "Sla Mollie-betaalscherm over wanneer bankoverschrijving is geselecteerd"
|
817 |
|
818 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
819 |
msgid "Skip Mollie payment screen"
|
820 |
msgstr "Mollie-betaalscherm overslaan"
|
821 |
|
@@ -836,17 +1459,17 @@ msgstr "Mollie"
|
|
836 |
msgid "Mollie Payments for WooCommerce"
|
837 |
msgstr "Mollie-betalingen voor WooCommerce"
|
838 |
|
839 |
-
#: src/Mollie/WC/Plugin.php:
|
840 |
msgid "Logs"
|
841 |
msgstr "Logs"
|
842 |
|
843 |
#: src/Mollie/WC/Helper/Status.php:123
|
844 |
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
845 |
-
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL geactiveerd is. Activeer de 'curl'
|
846 |
|
847 |
#: src/Mollie/WC/Helper/Status.php:116
|
848 |
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
849 |
-
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON
|
850 |
|
851 |
#: src/Mollie/WC/Helper/Status.php:80
|
852 |
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
@@ -856,139 +1479,135 @@ msgstr "Mollie API client niet geïnstalleerd. Controleer of de plugin correct i
|
|
856 |
#. version, placeholder 3: used WooCommerce version
|
857 |
#: src/Mollie/WC/Helper/Status.php:67
|
858 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
859 |
-
msgstr "
|
860 |
|
861 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
862 |
msgid "Debug Log"
|
863 |
msgstr "Debug-log"
|
864 |
|
865 |
-
#:
|
866 |
msgid "French (Belgium)"
|
867 |
msgstr "Frans (België)"
|
868 |
|
869 |
-
#:
|
870 |
msgid "French"
|
871 |
msgstr "Frans"
|
872 |
|
873 |
-
#:
|
874 |
msgid "Spanish"
|
875 |
msgstr "Spaans"
|
876 |
|
877 |
-
#:
|
878 |
msgid "German"
|
879 |
msgstr "Duits"
|
880 |
|
881 |
-
#:
|
882 |
msgid "English"
|
883 |
msgstr "Engels"
|
884 |
|
885 |
-
#:
|
886 |
msgid "Flemish (Belgium)"
|
887 |
msgstr "Vlaams (België)"
|
888 |
|
889 |
-
#:
|
890 |
msgid "Dutch"
|
891 |
msgstr "Nederlands"
|
892 |
|
893 |
-
#:
|
894 |
msgid "Detect using browser language"
|
895 |
msgstr "Detecteren met gebruik van browser-taal"
|
896 |
|
897 |
-
#:
|
898 |
msgid "Payment screen language"
|
899 |
msgstr "Taal van betaalscherm"
|
900 |
|
901 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
902 |
msgid "Test API key should start with test_"
|
903 |
msgstr "Test API-sleutel moet beginnen met test_"
|
904 |
|
905 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
906 |
msgid "Test API key"
|
907 |
msgstr "Test API-sleutel"
|
908 |
|
909 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
910 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
911 |
msgstr "Activeer de testmodus als je de plugin wilt testen zonder echte betalingen te gebruiken."
|
912 |
|
913 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
914 |
msgid "Enable test mode"
|
915 |
msgstr "Activeer de testmodus"
|
916 |
|
917 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
918 |
msgid "Live API key should start with live_"
|
919 |
msgstr "Live API-sleutel moet beginnen met live_"
|
920 |
|
921 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
922 |
#. %s's Will be replaced by a link to the Mollie profile
|
923 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
924 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
925 |
msgstr "De API-sleutel wordt gebruikt om verbinding te maken met Mollie. Je vindt je <strong>%s</strong> API-sleutel in je %sMollie-profiel%s"
|
926 |
|
927 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
928 |
msgid "Live API key"
|
929 |
msgstr "Live API-sleutel"
|
930 |
|
931 |
-
#:
|
|
|
932 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
933 |
msgstr "De volgende opties zijn vereist om de plugin te gebruiken en worden door alle Mollie-betaalmethoden gebruikt"
|
934 |
|
935 |
-
#: src/Mollie/WC/
|
936 |
msgid "Mollie settings"
|
937 |
msgstr "Mollie-instellingen"
|
938 |
|
939 |
-
|
940 |
-
#: src/Mollie/WC/Helper/Settings.php:351
|
941 |
msgid "Log files are saved to <code>%s</code>"
|
942 |
msgstr "Logbestanden worden opgeslagen in <code>%s</code>"
|
943 |
|
944 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
945 |
-
msgid "View logs"
|
946 |
-
msgstr "Bekijk logs"
|
947 |
-
|
948 |
-
#: src/Mollie/WC/Helper/Settings.php:340
|
949 |
msgid "Log plugin events."
|
950 |
msgstr "Log plugin-gebeurtenissen"
|
951 |
|
952 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
953 |
msgid "Edit"
|
954 |
msgstr "Bewerken"
|
955 |
|
956 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
957 |
msgid "Refresh"
|
958 |
msgstr "Vernieuwen"
|
959 |
|
960 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
961 |
#. profile
|
962 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
963 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
964 |
msgstr "De volgende betaalmethoden zijn geactiveerd in je %sMollie-profiel%s:"
|
965 |
|
966 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
967 |
msgid "Gateway disabled"
|
968 |
msgstr "Gateway gedeactiveerd"
|
969 |
|
970 |
-
|
971 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
972 |
msgid "Enabled"
|
973 |
msgstr "Geactiveerd"
|
974 |
|
975 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
976 |
msgid "Gateway enabled"
|
977 |
msgstr "Gateway geactiveerd"
|
978 |
|
979 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
980 |
msgid "Connected"
|
981 |
msgstr "Verbonden"
|
982 |
|
983 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
984 |
msgid "Mollie status:"
|
985 |
msgstr "Mollie-status:"
|
986 |
|
987 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
988 |
msgid "Error"
|
989 |
msgstr "Fout"
|
990 |
|
991 |
-
#: src/Mollie/WC/Helper/Data.php:
|
992 |
msgid "Item #%s stock incremented from %s to %s."
|
993 |
msgstr "Item #%s voorraad verhoogd van %s naar %s."
|
994 |
|
@@ -1002,22 +1621,22 @@ msgstr "paysafecard"
|
|
1002 |
|
1003 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1004 |
#. email, placeholder 3: PayPal transaction ID
|
1005 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1006 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1007 |
msgstr "Betaling voltooid met <strong>%s</strong> - %s (PayPal transactie-ID: %s)"
|
1008 |
|
1009 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1010 |
msgid "PayPal"
|
1011 |
msgstr "PayPal"
|
1012 |
|
|
|
1013 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1014 |
#. drop down
|
1015 |
-
|
1016 |
-
#: src/Mollie/WC/Gateway/Kbc.php:77 src/Mollie/WC/Gateway/Ideal.php:77
|
1017 |
msgid "Select your bank"
|
1018 |
msgstr "Selecteer je bank"
|
1019 |
|
1020 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
1021 |
msgid "iDEAL"
|
1022 |
msgstr "iDEAL"
|
1023 |
|
@@ -1026,11 +1645,11 @@ msgid "SEPA Direct Debit"
|
|
1026 |
msgstr "SEPA-incasso"
|
1027 |
|
1028 |
#. translators: Placeholder 1: card holder
|
1029 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1030 |
msgid "Payment completed by <strong>%s</strong>"
|
1031 |
msgstr "Betaling voltooid met <strong>%s</strong>."
|
1032 |
|
1033 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1034 |
msgid "Credit card"
|
1035 |
msgstr "Creditcard"
|
1036 |
|
@@ -1038,193 +1657,206 @@ msgstr "Creditcard"
|
|
1038 |
msgid "Belfius Direct Net"
|
1039 |
msgstr "Belfius Direct Net"
|
1040 |
|
1041 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1042 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1043 |
msgstr "De betaling vervalt op <strong>%s</strong>. Zorg ervoor dat je vóór deze datum het totale bedrag overmaakt."
|
1044 |
|
1045 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1046 |
msgid "The payment will expire on <strong>%s</strong>."
|
1047 |
msgstr "De betaling vervalt op <strong>%s</strong>."
|
1048 |
|
1049 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1050 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1051 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1052 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1053 |
msgstr "Vermeld de betalingsreferentie <strong>%s</strong>"
|
1054 |
|
1055 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1056 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1057 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1058 |
msgid "Payment reference: %s"
|
1059 |
msgstr "Betalingsreferentie: %s."
|
1060 |
|
1061 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1062 |
msgid "BIC: %s"
|
1063 |
msgstr "BIC: %s"
|
1064 |
|
1065 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1066 |
msgid "IBAN: <strong>%s</strong>"
|
1067 |
msgstr "IBAN: <strong>%s</strong>"
|
1068 |
|
1069 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1070 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1071 |
msgid "Beneficiary: %s"
|
1072 |
msgstr "Begunstigde: %s"
|
1073 |
|
1074 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1075 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1076 |
msgstr "Voltooi je betaling door het totale bedrag over te maken naar de volgende bankrekening:"
|
1077 |
|
1078 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1079 |
msgid "Bank Transfer"
|
1080 |
msgstr "Bankoverdracht"
|
1081 |
|
1082 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
1083 |
msgid "Disabled"
|
1084 |
msgstr "Uitgeschakeld"
|
1085 |
|
1086 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1087 |
-
msgid "Number of
|
1088 |
-
msgstr "Aantal
|
1089 |
|
1090 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
1091 |
msgid "Expiry date"
|
1092 |
msgstr "Vervaldatum"
|
1093 |
|
1094 |
#. translators: Placeholder 1: payment method
|
1095 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1096 |
msgid "Payment completed with <strong>%s</strong>"
|
1097 |
msgstr "Betaling voltooid met <strong>%s</strong>"
|
1098 |
|
1099 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1100 |
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."
|
1101 |
msgstr "We hebben geen definitieve betalingsstatus ontvangen. Je ontvangt een e-mail zodra we een bevestiging van de bank/handelaar ontvangen."
|
1102 |
|
1103 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1104 |
msgid "We have not received a definite payment status."
|
1105 |
msgstr "We hebben geen definitieve betalingsstatus ontvangen."
|
1106 |
|
1107 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1108 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1109 |
msgstr "Je hebt je betaling geannuleerd. Vervolledig je bestelling met een andere betaalmethode."
|
1110 |
|
1111 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1112 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
1113 |
msgid "%s payment expired (%s)."
|
1114 |
msgstr "%s betaling verlopen (%s)."
|
1115 |
|
1116 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1117 |
-
#: src/Mollie/WC/Payment/Order.php:
|
1118 |
msgid "Order completed using %s payment (%s)."
|
1119 |
msgstr "Bestelling voltooid met gebruik van %s betaling (%s)."
|
1120 |
|
1121 |
#. translators: Placeholder 1: Payment method title
|
1122 |
-
#: src/Mollie/WC/
|
1123 |
-
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:
|
1124 |
-
#: src/Mollie/WC/
|
|
|
|
|
1125 |
msgid "Could not create %s payment."
|
1126 |
msgstr "Kon geen %s betaling aanmaken."
|
1127 |
|
1128 |
-
#: src/Mollie/WC/
|
1129 |
-
#: src/Mollie/WC/
|
1130 |
-
#: src/Mollie/WC/Payment/Order.php:607 src/Mollie/WC/Payment/Order.php:631
|
1131 |
-
#: src/Mollie/WC/Payment/Order.php:668 src/Mollie/WC/Payment/Order.php:709
|
1132 |
-
#: src/Mollie/WC/Payment/Payment.php:237 src/Mollie/WC/Payment/Payment.php:338
|
1133 |
-
#: src/Mollie/WC/Payment/Payment.php:396 src/Mollie/WC/Payment/Payment.php:419
|
1134 |
-
#: src/Mollie/WC/Payment/Payment.php:459 src/Mollie/WC/Payment/Payment.php:500
|
1135 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1136 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1137 |
-
#: src/Mollie/WC/Gateway/Abstract.php:547
|
1138 |
-
#: src/Mollie/WC/Gateway/Abstract.php:822
|
1139 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1120
|
1140 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1141 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1142 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1143 |
-
#: src/Mollie/WC/Gateway/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1144 |
msgid "test mode"
|
1145 |
msgstr "testmodus"
|
1146 |
|
1147 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
|
|
1148 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1149 |
-
#: src/Mollie/WC/Gateway/
|
1150 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1151 |
msgid "%s payment started (%s)."
|
1152 |
msgstr "%s betaling gestart (%s)."
|
1153 |
|
|
|
1154 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1155 |
-
#: src/Mollie/WC/Gateway/
|
1156 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1157 |
msgid "Awaiting payment confirmation."
|
1158 |
msgstr "In afwachting van betalingsbevestiging"
|
1159 |
|
1160 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1161 |
msgid "Could not load order %s"
|
1162 |
msgstr "Kon bestelling %s niet laden"
|
1163 |
|
1164 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1165 |
#. be replaced by a link to the Mollie profile
|
1166 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1167 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1168 |
-
msgstr "%s niet geactiveerd in je Mollie-profiel. Je kunt het activeren door je %sMollie
|
1169 |
|
1170 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1171 |
#. setting page
|
1172 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1173 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1174 |
-
msgstr "Geen API
|
1175 |
|
1176 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1177 |
msgid "Gateway Disabled"
|
1178 |
msgstr "Gateway gedeactiveerd"
|
1179 |
|
1180 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1181 |
msgid "Test mode enabled."
|
1182 |
msgstr "Testmodus geactiveerd."
|
1183 |
|
1184 |
-
#: src/Mollie/WC/
|
1185 |
msgid "Hold Stock (minutes)"
|
1186 |
msgstr "Houd voorraad aan (minuten)"
|
1187 |
|
1188 |
-
#: src/Mollie/WC/
|
1189 |
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."
|
1190 |
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."
|
1191 |
|
1192 |
-
#:
|
|
|
|
|
1193 |
msgid "default"
|
1194 |
msgstr "standaard"
|
1195 |
|
1196 |
-
#: src/Mollie/WC/
|
1197 |
msgid "Initial order status"
|
1198 |
msgstr "Initiële bestelstatus"
|
1199 |
|
1200 |
-
#:
|
|
|
1201 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1202 |
msgstr "Beschrijving van de betaalmethode die de klant bij je betaalpagina zal zien. Standaard <code>%s</code>"
|
1203 |
|
1204 |
-
#:
|
|
|
1205 |
msgid "Description"
|
1206 |
msgstr "Beschrijving"
|
1207 |
|
1208 |
-
#: src/Mollie/WC/
|
1209 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1210 |
-
msgstr "Toon logo op de betaalpagina. Standaard <code>
|
1211 |
|
1212 |
-
#:
|
|
|
|
|
1213 |
msgid "Display logo"
|
1214 |
msgstr "Toon logo"
|
1215 |
|
1216 |
-
#:
|
|
|
1217 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1218 |
msgstr "Dit controleert de titel die de gebruiker ziet tijdens het betalen. Standaard <code>%s</code>"
|
1219 |
|
1220 |
-
#:
|
|
|
1221 |
msgid "Title"
|
1222 |
msgstr "Titel"
|
1223 |
|
1224 |
-
|
|
|
|
|
1225 |
msgid "Enable %s"
|
1226 |
msgstr "Geactiveerd %s"
|
1227 |
|
1228 |
-
#:
|
|
|
1229 |
msgid "Enable/Disable"
|
1230 |
msgstr "Activeren/Deactiveren"
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in Dutch
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-07-26 13:45+0200\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
+
"Language: nl\n"
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
|
14 |
+
#: src/Mollie/WC/Plugin.php:375
|
15 |
+
msgid "Unpaid order cancelled - time limit reached."
|
16 |
+
msgstr "Onbetaalde bestelling geannuleerd - tijdslimiet bereikt."
|
17 |
+
|
18 |
+
#: src/Mollie/WC/Helper/Settings.php:846
|
19 |
+
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"
|
20 |
+
msgstr "Je hebt Klarna geactiveerd. Zorg ervoor dat alle standaard WooCommerce betaalvelden ingeschakeld en verplicht zijn, zodat je betalingen kunt accepteren. Ga voor meer informatie naar %1sKlarna betaal later documentatie%2s of %3sKlarna Slice it documentatie%4s"
|
21 |
+
|
22 |
+
#: src/Mollie/WC/Helper/Settings.php:254
|
23 |
+
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."
|
24 |
+
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."
|
25 |
+
|
26 |
+
#: src/Mollie/WC/Helper/Settings.php:246
|
27 |
+
msgid "Enable this option if you want to be able to set the number of days after the order will expire."
|
28 |
+
msgstr "Activeer deze optie als je de mogelijkheid wilt hebben om een aantal dagen in te stellen waarna de bestelling vervalt."
|
29 |
+
|
30 |
+
#: src/Mollie/WC/Helper/Settings.php:237
|
31 |
+
msgid "%s advanced"
|
32 |
+
msgstr "%s geavanceerd"
|
33 |
+
|
34 |
+
#: inc/settings/mollie_paypal_button_enabler.php:126
|
35 |
+
msgid "If the product or the cart total amount is under this number, then the button will not show up."
|
36 |
+
msgstr "Als het product of het totaalbedrag van de winkelwagen onder dit getal blijft, dan verschijnt de knop niet."
|
37 |
+
|
38 |
+
#: inc/settings/mollie_paypal_button_enabler.php:122
|
39 |
+
msgid "Minimum amount to display button"
|
40 |
+
msgstr "Minimum bedrag voor de weergave van de knop"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_paypal_button_enabler.php:117
|
43 |
+
msgctxt "Mollie PayPal button Settings"
|
44 |
+
msgid "Polish -- Checkout with PayPal - Silver"
|
45 |
+
msgstr "Pools -- Betalen met PayPal - Zilver"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_paypal_button_enabler.php:116
|
48 |
+
msgctxt "Mollie PayPal button Settings"
|
49 |
+
msgid "Polish -- Checkout with PayPal - Gold"
|
50 |
+
msgstr "Pools -- Betalen met PayPal - Goud"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_paypal_button_enabler.php:115
|
53 |
+
msgctxt "Mollie PayPal button Settings"
|
54 |
+
msgid "Polish -- Buy with PayPal - Gold"
|
55 |
+
msgstr "Pools -- Kopen met PayPal - Goud"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_paypal_button_enabler.php:114
|
58 |
+
msgctxt "Mollie PayPal button Settings"
|
59 |
+
msgid "French -- Checkout with PayPal - Silver"
|
60 |
+
msgstr "Frans -- Betalen met PayPal - Zilver"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_paypal_button_enabler.php:113
|
63 |
+
msgctxt "Mollie PayPal button Settings"
|
64 |
+
msgid "French -- Checkout with PayPal - Gold"
|
65 |
+
msgstr "Frans -- Betalen met PayPal - Goud"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_paypal_button_enabler.php:112
|
68 |
+
msgctxt "Mollie PayPal button Settings"
|
69 |
+
msgid "French -- Buy with PayPal - Gold"
|
70 |
+
msgstr "Frans -- Kopen met PayPal - Goud"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_paypal_button_enabler.php:111
|
73 |
+
msgctxt "Mollie PayPal button Settings"
|
74 |
+
msgid "German -- Checkout with PayPal - Rounded white"
|
75 |
+
msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken wit"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_paypal_button_enabler.php:110
|
78 |
+
msgctxt "Mollie PayPal button Settings"
|
79 |
+
msgid "German -- Checkout with PayPal - Pill white"
|
80 |
+
msgstr "Duits -- Betalen met PayPal - Pilvormig wit"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_paypal_button_enabler.php:109
|
83 |
+
msgctxt "Mollie PayPal button Settings"
|
84 |
+
msgid "German -- Checkout with PayPal - Rounded gray"
|
85 |
+
msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken grijs"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_paypal_button_enabler.php:108
|
88 |
+
msgctxt "Mollie PayPal button Settings"
|
89 |
+
msgid "German -- Checkout with PayPal - Pill gray"
|
90 |
+
msgstr "Duits -- Betalen met PayPal - Pilvormig grijs"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_paypal_button_enabler.php:107
|
93 |
+
msgctxt "Mollie PayPal button Settings"
|
94 |
+
msgid "German -- Checkout with PayPal - Rounded golden"
|
95 |
+
msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken goud"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_paypal_button_enabler.php:106
|
98 |
+
msgctxt "Mollie PayPal button Settings"
|
99 |
+
msgid "German -- Checkout with PayPal - Pill golden"
|
100 |
+
msgstr "Duits -- Betalen met PayPal - Pilvormig goud"
|
101 |
+
|
102 |
+
#: inc/settings/mollie_paypal_button_enabler.php:105
|
103 |
+
msgctxt "Mollie PayPal button Settings"
|
104 |
+
msgid "German -- Checkout with PayPal - Rounded blue"
|
105 |
+
msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken blauw"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_paypal_button_enabler.php:104
|
108 |
+
msgctxt "Mollie PayPal button Settings"
|
109 |
+
msgid "German -- Checkout with PayPal - Pill blue"
|
110 |
+
msgstr "Duits -- Betalen met PayPal - Pilvormig blauw"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_paypal_button_enabler.php:103
|
113 |
+
msgctxt "Mollie PayPal button Settings"
|
114 |
+
msgid "German -- Checkout with PayPal - Rounded black"
|
115 |
+
msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken zwart"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_paypal_button_enabler.php:102
|
118 |
+
msgctxt "Mollie PayPal button Settings"
|
119 |
+
msgid "German -- Checkout with PayPal - Pill black"
|
120 |
+
msgstr "Duits -- Betalen met PayPal - Pilvormig zwart"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_paypal_button_enabler.php:101
|
123 |
+
msgctxt "Mollie PayPal button Settings"
|
124 |
+
msgid "German -- Buy with PayPal - Rounded white"
|
125 |
+
msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken wit"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_paypal_button_enabler.php:100
|
128 |
+
msgctxt "Mollie PayPal button Settings"
|
129 |
+
msgid "German -- Buy with PayPal - Pill white"
|
130 |
+
msgstr "Duits -- Kopen met PayPal - Pilvormig wit"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_paypal_button_enabler.php:99
|
133 |
+
msgctxt "Mollie PayPal button Settings"
|
134 |
+
msgid "German -- Buy with PayPal - Rounded gray"
|
135 |
+
msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken grijs"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_paypal_button_enabler.php:98
|
138 |
+
msgctxt "Mollie PayPal button Settings"
|
139 |
+
msgid "German -- Buy with PayPal - Pill gray"
|
140 |
+
msgstr "Duits -- Kopen met PayPal - Pilvormig grijs"
|
141 |
+
|
142 |
+
#: inc/settings/mollie_paypal_button_enabler.php:97
|
143 |
+
msgctxt "Mollie PayPal button Settings"
|
144 |
+
msgid "German -- Buy with PayPal - Rounded golden"
|
145 |
+
msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken goud"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_paypal_button_enabler.php:96
|
148 |
+
msgctxt "Mollie PayPal button Settings"
|
149 |
+
msgid "German -- Buy with PayPal - Pill golden"
|
150 |
+
msgstr "Duits -- Kopen met PayPal - Pilvormig goud"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_paypal_button_enabler.php:95
|
153 |
+
msgctxt "Mollie PayPal button Settings"
|
154 |
+
msgid "German -- Buy with PayPal - Rounded blue"
|
155 |
+
msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken blauw"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_paypal_button_enabler.php:94
|
158 |
+
msgctxt "Mollie PayPal button Settings"
|
159 |
+
msgid "German -- Buy with PayPal - Pill blue"
|
160 |
+
msgstr "Duits -- Kopen met PayPal - Pilvormig blauw"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_paypal_button_enabler.php:93
|
163 |
+
msgctxt "Mollie PayPal button Settings"
|
164 |
+
msgid "German -- Buy with PayPal - Rounded black"
|
165 |
+
msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken zwart"
|
166 |
+
|
167 |
+
#: inc/settings/mollie_paypal_button_enabler.php:92
|
168 |
+
msgctxt "Mollie PayPal button Settings"
|
169 |
+
msgid "German -- Buy with PayPal - Pill black"
|
170 |
+
msgstr "Duits -- Kopen met PayPal - Pilvormig zwart"
|
171 |
+
|
172 |
+
#: inc/settings/mollie_paypal_button_enabler.php:91
|
173 |
+
msgctxt "Mollie PayPal button Settings"
|
174 |
+
msgid "Dutch -- Checkout with PayPal - Rounded white"
|
175 |
+
msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken wit"
|
176 |
+
|
177 |
+
#: inc/settings/mollie_paypal_button_enabler.php:90
|
178 |
+
msgctxt "Mollie PayPal button Settings"
|
179 |
+
msgid "Dutch -- Checkout with PayPal - Pill white"
|
180 |
+
msgstr "Nederlands -- Betalen met PayPal - Pilvormig wit"
|
181 |
+
|
182 |
+
#: inc/settings/mollie_paypal_button_enabler.php:89
|
183 |
+
msgctxt "Mollie PayPal button Settings"
|
184 |
+
msgid "Dutch -- Checkout with PayPal - Rounded gray"
|
185 |
+
msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken grijs"
|
186 |
+
|
187 |
+
#: inc/settings/mollie_paypal_button_enabler.php:88
|
188 |
+
msgctxt "Mollie PayPal button Settings"
|
189 |
+
msgid "Dutch -- Checkout with PayPal - Pill gray"
|
190 |
+
msgstr "Nederlands -- Betalen met PayPal - Pilvormig grijs"
|
191 |
+
|
192 |
+
#: inc/settings/mollie_paypal_button_enabler.php:87
|
193 |
+
msgctxt "Mollie PayPal button Settings"
|
194 |
+
msgid "Dutch -- Checkout with PayPal - Rounded golden"
|
195 |
+
msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken goud"
|
196 |
+
|
197 |
+
#: inc/settings/mollie_paypal_button_enabler.php:86
|
198 |
+
msgctxt "Mollie PayPal button Settings"
|
199 |
+
msgid "Dutch -- Checkout with PayPal - Pill golden"
|
200 |
+
msgstr "Nederlands -- Betalen met PayPal - Pilvormig goud"
|
201 |
+
|
202 |
+
#: inc/settings/mollie_paypal_button_enabler.php:85
|
203 |
+
msgctxt "Mollie PayPal button Settings"
|
204 |
+
msgid "Dutch -- Checkout with PayPal - Rounded blue"
|
205 |
+
msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken blauw"
|
206 |
+
|
207 |
+
#: inc/settings/mollie_paypal_button_enabler.php:84
|
208 |
+
msgctxt "Mollie PayPal button Settings"
|
209 |
+
msgid "Dutch -- Checkout with PayPal - Pill blue"
|
210 |
+
msgstr "Nederlands -- Betalen met PayPal - Pilvormig blauw"
|
211 |
+
|
212 |
+
#: inc/settings/mollie_paypal_button_enabler.php:83
|
213 |
+
msgctxt "Mollie PayPal button Settings"
|
214 |
+
msgid "Dutch -- Checkout with PayPal - Rounded black"
|
215 |
+
msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken zwart"
|
216 |
+
|
217 |
+
#: inc/settings/mollie_paypal_button_enabler.php:82
|
218 |
+
msgctxt "Mollie PayPal button Settings"
|
219 |
+
msgid "Dutch -- Checkout with PayPal - Pill black"
|
220 |
+
msgstr "Nederlands -- Betalen met PayPal - Pilvormig zwart"
|
221 |
+
|
222 |
+
#: inc/settings/mollie_paypal_button_enabler.php:81
|
223 |
+
msgctxt "Mollie PayPal button Settings"
|
224 |
+
msgid "Dutch -- Buy with PayPal - Rounded white"
|
225 |
+
msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken wit"
|
226 |
+
|
227 |
+
#: inc/settings/mollie_paypal_button_enabler.php:80
|
228 |
+
msgctxt "Mollie PayPal button Settings"
|
229 |
+
msgid "Dutch -- Buy with PayPal - Pill white"
|
230 |
+
msgstr "Nederlands -- Kopen met PayPal - Pilvormig wit"
|
231 |
+
|
232 |
+
#: inc/settings/mollie_paypal_button_enabler.php:79
|
233 |
+
msgctxt "Mollie PayPal button Settings"
|
234 |
+
msgid "Dutch -- Buy with PayPal - Rounded gray"
|
235 |
+
msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken grijs"
|
236 |
+
|
237 |
+
#: inc/settings/mollie_paypal_button_enabler.php:78
|
238 |
+
msgctxt "Mollie PayPal button Settings"
|
239 |
+
msgid "Dutch -- Buy with PayPal - Pill gray"
|
240 |
+
msgstr "Nederlands -- Kopen met PayPal - Pilvormig grijs"
|
241 |
+
|
242 |
+
#: inc/settings/mollie_paypal_button_enabler.php:77
|
243 |
+
msgctxt "Mollie PayPal button Settings"
|
244 |
+
msgid "Dutch -- Buy with PayPal - Rounded golden"
|
245 |
+
msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken goud"
|
246 |
+
|
247 |
+
#: inc/settings/mollie_paypal_button_enabler.php:76
|
248 |
+
msgctxt "Mollie PayPal button Settings"
|
249 |
+
msgid "Dutch -- Buy with PayPal - Pill golden"
|
250 |
+
msgstr "Nederlands -- Kopen met PayPal - Pilvormig goud"
|
251 |
+
|
252 |
+
#: inc/settings/mollie_paypal_button_enabler.php:75
|
253 |
+
msgctxt "Mollie PayPal button Settings"
|
254 |
+
msgid "Dutch -- Buy with PayPal - Rounded blue"
|
255 |
+
msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken blauw"
|
256 |
+
|
257 |
+
#: inc/settings/mollie_paypal_button_enabler.php:74
|
258 |
+
msgctxt "Mollie PayPal button Settings"
|
259 |
+
msgid "Dutch -- Buy with PayPal - Pill blue"
|
260 |
+
msgstr "Nederlands -- Kopen met PayPal - Pilvormig blauw"
|
261 |
+
|
262 |
+
#: inc/settings/mollie_paypal_button_enabler.php:73
|
263 |
+
msgctxt "Mollie PayPal button Settings"
|
264 |
+
msgid "Dutch -- Buy with PayPal - Rounded black"
|
265 |
+
msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken zwart"
|
266 |
+
|
267 |
+
#: inc/settings/mollie_paypal_button_enabler.php:72
|
268 |
+
msgctxt "Mollie PayPal button Settings"
|
269 |
+
msgid "Dutch -- Buy with PayPal - Pill black"
|
270 |
+
msgstr "Nederlands -- Kopen met PayPal - Pilvormig zwart"
|
271 |
+
|
272 |
+
#: inc/settings/mollie_paypal_button_enabler.php:71
|
273 |
+
msgctxt "Mollie PayPal button Settings"
|
274 |
+
msgid "English -- Checkout with PayPal - Rounded white"
|
275 |
+
msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken wit"
|
276 |
+
|
277 |
+
#: inc/settings/mollie_paypal_button_enabler.php:70
|
278 |
+
msgctxt "Mollie PayPal button Settings"
|
279 |
+
msgid "English -- Checkout with PayPal - Pill white"
|
280 |
+
msgstr "Engels -- Betalen met PayPal - Pilvormig wit"
|
281 |
+
|
282 |
+
#: inc/settings/mollie_paypal_button_enabler.php:69
|
283 |
+
msgctxt "Mollie PayPal button Settings"
|
284 |
+
msgid "English -- Checkout with PayPal - Rounded gray"
|
285 |
+
msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken grijs"
|
286 |
+
|
287 |
+
#: inc/settings/mollie_paypal_button_enabler.php:68
|
288 |
+
msgctxt "Mollie PayPal button Settings"
|
289 |
+
msgid "English -- Checkout with PayPal - Pill gray"
|
290 |
+
msgstr "Engels -- Betalen met PayPal - Pilvormig grijs"
|
291 |
+
|
292 |
+
#: inc/settings/mollie_paypal_button_enabler.php:67
|
293 |
+
msgctxt "Mollie PayPal button Settings"
|
294 |
+
msgid "English -- Checkout with PayPal - Rounded golden"
|
295 |
+
msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken goud"
|
296 |
+
|
297 |
+
#: inc/settings/mollie_paypal_button_enabler.php:66
|
298 |
+
msgctxt "Mollie PayPal button Settings"
|
299 |
+
msgid "English -- Checkout with PayPal - Pill golden"
|
300 |
+
msgstr "Engels -- Betalen met PayPal - Pilvormig goud"
|
301 |
+
|
302 |
+
#: inc/settings/mollie_paypal_button_enabler.php:65
|
303 |
+
msgctxt "Mollie PayPal button Settings"
|
304 |
+
msgid "English -- Checkout with PayPal - Rounded blue"
|
305 |
+
msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken blauw"
|
306 |
+
|
307 |
+
#: inc/settings/mollie_paypal_button_enabler.php:64
|
308 |
+
msgctxt "Mollie PayPal button Settings"
|
309 |
+
msgid "English -- Checkout with PayPal - Pill blue"
|
310 |
+
msgstr "Engels -- Betalen met PayPal - Pilvormig blauw"
|
311 |
+
|
312 |
+
#: inc/settings/mollie_paypal_button_enabler.php:63
|
313 |
+
msgctxt "Mollie PayPal button Settings"
|
314 |
+
msgid "English -- Checkout with PayPal - Rounded black"
|
315 |
+
msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken zwart"
|
316 |
+
|
317 |
+
#: inc/settings/mollie_paypal_button_enabler.php:62
|
318 |
+
msgctxt "Mollie PayPal button Settings"
|
319 |
+
msgid "English -- Checkout with PayPal - Pill black"
|
320 |
+
msgstr "Engels -- Betalen met PayPal - Pilvormig zwart"
|
321 |
+
|
322 |
+
#: inc/settings/mollie_paypal_button_enabler.php:61
|
323 |
+
msgctxt "Mollie PayPal button Settings"
|
324 |
+
msgid "English -- Buy with PayPal - Rounded white"
|
325 |
+
msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken wit"
|
326 |
+
|
327 |
+
#: inc/settings/mollie_paypal_button_enabler.php:60
|
328 |
+
msgctxt "Mollie PayPal button Settings"
|
329 |
+
msgid "English -- Buy with PayPal - Pill white"
|
330 |
+
msgstr "Engels -- Kopen met PayPal - Pilvormig wit"
|
331 |
+
|
332 |
+
#: inc/settings/mollie_paypal_button_enabler.php:59
|
333 |
+
msgctxt "Mollie PayPal button Settings"
|
334 |
+
msgid "English -- Buy with PayPal - Rounded gray"
|
335 |
+
msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken grijs"
|
336 |
+
|
337 |
+
#: inc/settings/mollie_paypal_button_enabler.php:58
|
338 |
+
msgctxt "Mollie PayPal button Settings"
|
339 |
+
msgid "English -- Buy with PayPal - Pill gray"
|
340 |
+
msgstr "Engels -- Kopen met PayPal - Pilvormig grijs"
|
341 |
+
|
342 |
+
#: inc/settings/mollie_paypal_button_enabler.php:57
|
343 |
+
msgctxt "Mollie PayPal button Settings"
|
344 |
+
msgid "English -- Buy with PayPal - Rounded golden"
|
345 |
+
msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken goud"
|
346 |
+
|
347 |
+
#: inc/settings/mollie_paypal_button_enabler.php:56
|
348 |
+
msgctxt "Mollie PayPal button Settings"
|
349 |
+
msgid "English -- Buy with PayPal - Pill golden"
|
350 |
+
msgstr "Engels -- Kopen met PayPal - Pilvormig goud"
|
351 |
+
|
352 |
+
#: inc/settings/mollie_paypal_button_enabler.php:55
|
353 |
+
msgctxt "Mollie PayPal button Settings"
|
354 |
+
msgid "English -- Buy with PayPal - Rounded blue"
|
355 |
+
msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken blauw"
|
356 |
+
|
357 |
+
#: inc/settings/mollie_paypal_button_enabler.php:54
|
358 |
+
msgctxt "Mollie PayPal button Settings"
|
359 |
+
msgid "English -- Buy with PayPal - Pill blue"
|
360 |
+
msgstr "Engels -- Kopen met PayPal - Pilvormig blauw"
|
361 |
+
|
362 |
+
#: inc/settings/mollie_paypal_button_enabler.php:46
|
363 |
+
msgctxt "Mollie PayPal Button Settings"
|
364 |
+
msgid "Select the text and the colour of the button."
|
365 |
+
msgstr "Kies de tekst en de kleur van de knop."
|
366 |
+
|
367 |
+
#: inc/settings/mollie_paypal_button_enabler.php:44
|
368 |
+
msgctxt "Mollie PayPal Button Settings"
|
369 |
+
msgid "Button text language and color"
|
370 |
+
msgstr "Knop tekst taal en kleur"
|
371 |
+
|
372 |
+
#: inc/settings/mollie_paypal_button_enabler.php:35
|
373 |
+
msgid "Enable the PayPal button to be used in the product page."
|
374 |
+
msgstr "Activeer de PayPal-knop om te gebruiken op de productpagina."
|
375 |
+
|
376 |
+
#: inc/settings/mollie_paypal_button_enabler.php:31
|
377 |
+
msgid "Display on product page"
|
378 |
+
msgstr "Toon op de productpagina"
|
379 |
+
|
380 |
+
#: inc/settings/mollie_paypal_button_enabler.php:23
|
381 |
+
msgid "Enable the PayPal button to be used in the cart page."
|
382 |
+
msgstr "Activeer de PayPal-knop om te gebruiken op de winkelwagenpagina."
|
383 |
+
|
384 |
+
#: inc/settings/mollie_paypal_button_enabler.php:19
|
385 |
+
msgid "Display on cart page"
|
386 |
+
msgstr "Toon op de winkelwagenpagina"
|
387 |
+
|
388 |
+
#: inc/settings/mollie_paypal_button_enabler.php:12
|
389 |
+
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"
|
390 |
+
msgstr "%1sDe PayPal-knop is geoptimaliseerd voor digitale artikelen. Hij verschijnt alleen als het product niet wordt verzonden. %2sDe adresgegevens van de klant kun je alleen krijgen, als je de transactie hebt uitgevoerd met de %3sOrders API%4s.%5s%6s"
|
391 |
+
|
392 |
+
#: inc/settings/mollie_paypal_button_enabler.php:7
|
393 |
+
msgid "PayPal button display settings"
|
394 |
+
msgstr "PayPal-knop weergave-instellingen"
|
395 |
+
|
396 |
+
#: src/Mollie/WC/Helper/Settings.php:159
|
397 |
+
msgid "%s surcharge"
|
398 |
+
msgstr "%s prijstoeslag"
|
399 |
+
|
400 |
+
#: src/Mollie/WC/Helper/Settings.php:125
|
401 |
+
msgid "%s custom logo"
|
402 |
+
msgstr "%s aangepast logo"
|
403 |
+
|
404 |
+
#: src/Mollie/WC/Helper/Settings.php:107
|
405 |
+
msgid "Sales countries"
|
406 |
+
msgstr "Verkooplanden"
|
407 |
+
|
408 |
+
#: src/Mollie/WC/Helper/Settings.php:61
|
409 |
+
msgid "%s display settings"
|
410 |
+
msgstr "%s weergave-instellingen"
|
411 |
+
|
412 |
+
#: inc/settings/mollie_advanced_settings.php:124
|
413 |
+
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"
|
414 |
+
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"
|
415 |
+
|
416 |
+
#: inc/settings/mollie_advanced_settings.php:109
|
417 |
+
msgid "API Payment Description"
|
418 |
+
msgstr "Beschrijving Betalings-API"
|
419 |
+
|
420 |
+
#: inc/settings/mollie_advanced_settings.php:99
|
421 |
+
msgid "Click %shere%s to read more about the differences between the Payments and Orders API"
|
422 |
+
msgstr "Klik %shier%s voor meer informatie over de verschillen tussen de Betalings-API en Orders API"
|
423 |
+
|
424 |
+
#: inc/settings/mollie_advanced_settings.php:82
|
425 |
+
msgid "Select API Method"
|
426 |
+
msgstr "Selecteer de API-methode"
|
427 |
+
|
428 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2645
|
429 |
+
msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb."
|
430 |
+
msgstr "%1$sMollie-betalingen voor WooCommerce%2$s Bestand uploaden niet mogelijk, de grootte mag niet meer bedragen dan 500 kB."
|
431 |
+
|
432 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2606
|
433 |
+
msgid " +%1s%2s + %3s%% Fee"
|
434 |
+
msgstr " +%1s%2s + %3s%% vergoeding"
|
435 |
+
|
436 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2589
|
437 |
+
msgid " +%1s%% Fee"
|
438 |
+
msgstr " +%1s%% vergoeding"
|
439 |
+
|
440 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2579
|
441 |
+
msgid " +%1s%2s Fee"
|
442 |
+
msgstr " +%1s%2s vergoeding"
|
443 |
+
|
444 |
+
#: src/Mollie/WC/Gateway/Abstract.php:138
|
445 |
+
msgid "No custom logo selected"
|
446 |
+
msgstr "Geen aangepast logo gekozen"
|
447 |
+
|
448 |
+
#: src/Mollie/WC/Helper/Settings.php:226
|
449 |
+
msgid "Limit the maximum fee added on checkout. Default 0"
|
450 |
+
msgstr "Limiet van de maximum vergoeding toegevoegd aan de betaling. Standaard 0"
|
451 |
+
|
452 |
+
#: src/Mollie/WC/Helper/Settings.php:223
|
453 |
+
msgid "Payment surcharge limit in %s"
|
454 |
+
msgstr "Limiet betalingstoeslag in %s"
|
455 |
+
|
456 |
+
#: src/Mollie/WC/Helper/Settings.php:213
|
457 |
+
msgid "Control the percentage fee added on checkout. Default 0.01"
|
458 |
+
msgstr "Controle van de procentuele vergoeding toegevoegd aan de betaling. Standaard 0,01"
|
459 |
+
|
460 |
+
#: src/Mollie/WC/Helper/Settings.php:210
|
461 |
+
msgid "Payment surcharge percentage amount %"
|
462 |
+
msgstr "Betalingstoeslag aantal percentage %"
|
463 |
+
|
464 |
+
#: src/Mollie/WC/Helper/Settings.php:200
|
465 |
+
msgid "Control the fee added on checkout. Default 0.01"
|
466 |
+
msgstr "Controle van de vergoeding toegevoegd aan de betaling. Standaard 0,01"
|
467 |
+
|
468 |
+
#: src/Mollie/WC/Helper/Settings.php:197
|
469 |
+
msgid "Payment surcharge fixed amount in %s"
|
470 |
+
msgstr "Betalingstoeslag vast bedrag in %s"
|
471 |
+
|
472 |
+
#: src/Mollie/WC/Helper/Settings.php:190
|
473 |
+
msgid "Choose a payment surcharge for this gateway"
|
474 |
+
msgstr "Kies een betalingstoeslag voor deze gateway"
|
475 |
+
|
476 |
+
#: src/Mollie/WC/Helper/Settings.php:184
|
477 |
+
msgid "Fixed fee and percentage"
|
478 |
+
msgstr "Vaste vergoeding en percentage"
|
479 |
+
|
480 |
+
#: src/Mollie/WC/Helper/Settings.php:180
|
481 |
+
msgid "Percentage"
|
482 |
+
msgstr "Percentage"
|
483 |
+
|
484 |
+
#: src/Mollie/WC/Helper/Settings.php:176
|
485 |
+
msgid "Fixed fee"
|
486 |
+
msgstr "Vaste vergoeding"
|
487 |
+
|
488 |
+
#: src/Mollie/WC/Helper/Settings.php:172
|
489 |
+
msgid "No fee"
|
490 |
+
msgstr "Geen vergoeding"
|
491 |
+
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:166
|
493 |
+
msgid "Payment Surcharge"
|
494 |
+
msgstr "Betalingstoeslag"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Helper/Settings.php:150
|
497 |
+
msgid "Upload a custom icon for this gateway. The feature must be enabled."
|
498 |
+
msgstr "Upload een aangepast pictogram voor deze gateway. De functie moet geactiveerd zijn."
|
499 |
+
|
500 |
+
#: src/Mollie/WC/Helper/Settings.php:143
|
501 |
+
msgid "Upload custom logo"
|
502 |
+
msgstr "Upload aangepast logo"
|
503 |
+
|
504 |
+
#: src/Mollie/WC/Helper/Settings.php:137
|
505 |
+
msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options."
|
506 |
+
msgstr "Activeer de functie om een aangepast logo toe te voegen voor deze gateway. Deze functie heeft voorrang op andere opties voor het logo."
|
507 |
+
|
508 |
+
#: src/Mollie/WC/Helper/Settings.php:132
|
509 |
+
msgid "Enable custom logo"
|
510 |
+
msgstr "Activeer aangepast logo"
|
511 |
+
|
512 |
+
#: src/Mollie/WC/Helper/GatewaySurchargeHandler.php:253
|
513 |
+
msgid "Fee"
|
514 |
+
msgstr "Vergoeding"
|
515 |
+
|
516 |
+
#: inc/settings/mollie_applepay_settings.php:106
|
517 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:32
|
518 |
+
msgid "Enable the Apple Pay direct buy button on the Product page"
|
519 |
+
msgstr "Activeer de Apple Pay Direct betaalknop op de productpagina"
|
520 |
+
|
521 |
+
#: inc/settings/mollie_applepay_settings.php:103
|
522 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:29
|
523 |
+
msgid "Enable Apple Pay Button on Product page"
|
524 |
+
msgstr "Activeer de Apple Pay knop op de productpagina"
|
525 |
+
|
526 |
+
#: inc/settings/mollie_applepay_settings.php:91
|
527 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:21
|
528 |
+
msgid "Enable the Apple Pay direct buy button on the Cart page"
|
529 |
+
msgstr "Activeer de Apple Pay Direct betaalknop op de winkelwagenpagina"
|
530 |
+
|
531 |
+
#: inc/settings/mollie_applepay_settings.php:88
|
532 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:18
|
533 |
+
msgid "Enable Apple Pay Button on Cart page"
|
534 |
+
msgstr "Activeer de Apple Pay knop op de winkelwagenpagina"
|
535 |
+
|
536 |
+
#: pluginEnvironmentChecker/EnvironmentChecker.php:49
|
537 |
+
msgid "Validation failed with %1$d errors"
|
538 |
+
msgstr "Validatie niet geslaagd met %1$d errors"
|
539 |
+
|
540 |
+
#: src/Mollie/WC/Plugin.php:591
|
541 |
+
msgid "Mollie Voucher category"
|
542 |
+
msgstr "Mollie-waardeboncategorie"
|
543 |
+
|
544 |
+
#: src/Mollie/WC/Plugin.php:531 src/Mollie/WC/Plugin.php:594
|
545 |
+
msgid "Same as default category"
|
546 |
+
msgstr "Zelfde als standaardcategorie"
|
547 |
+
|
548 |
+
#: src/Mollie/WC/Plugin.php:464 src/Mollie/WC/Plugin.php:487
|
549 |
+
msgid "Select a voucher category to apply to all products with this category"
|
550 |
+
msgstr "Selecteer een waardeboncategorie om toe te passen op alle producten met deze categorie"
|
551 |
+
|
552 |
+
#: src/Mollie/WC/Plugin.php:430 src/Mollie/WC/Plugin.php:462
|
553 |
+
#: src/Mollie/WC/Plugin.php:485 src/Mollie/WC/Plugin.php:598
|
554 |
+
msgid "Gift"
|
555 |
+
msgstr "Cadeau"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Plugin.php:429 src/Mollie/WC/Plugin.php:461
|
558 |
+
#: src/Mollie/WC/Plugin.php:484 src/Mollie/WC/Plugin.php:597
|
559 |
+
msgid "Eco"
|
560 |
+
msgstr "Eco"
|
561 |
+
|
562 |
+
#: src/Mollie/WC/Plugin.php:428 src/Mollie/WC/Plugin.php:460
|
563 |
+
#: src/Mollie/WC/Plugin.php:483 src/Mollie/WC/Plugin.php:596
|
564 |
+
msgid "Meal"
|
565 |
+
msgstr "Maaltijd"
|
566 |
+
|
567 |
+
#: src/Mollie/WC/Plugin.php:427 src/Mollie/WC/Plugin.php:459
|
568 |
+
#: src/Mollie/WC/Plugin.php:482 src/Mollie/WC/Plugin.php:595
|
569 |
+
msgid "No Category"
|
570 |
+
msgstr "Geen categorie"
|
571 |
+
|
572 |
+
#: src/Mollie/WC/Plugin.php:426 src/Mollie/WC/Plugin.php:458
|
573 |
+
#: src/Mollie/WC/Plugin.php:481
|
574 |
+
msgid "--Please choose an option--"
|
575 |
+
msgstr "--Kies een optie--"
|
576 |
+
|
577 |
+
#: src/Mollie/WC/Plugin.php:423 src/Mollie/WC/Plugin.php:456
|
578 |
+
#: src/Mollie/WC/Plugin.php:478
|
579 |
+
msgid "Mollie Voucher Category"
|
580 |
+
msgstr "Mollie-waardeboncategorie"
|
581 |
+
|
582 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
583 |
+
msgid "Contact Support"
|
584 |
+
msgstr "Neem contact op met de supportdienst"
|
585 |
+
|
586 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
587 |
+
msgid "Plugin Documentation"
|
588 |
+
msgstr "Plugin-documentatie"
|
589 |
+
|
590 |
+
#: src/Mollie/WC/Helper/Settings.php:619
|
591 |
+
msgid "to create a new Mollie account and start receiving payments in a couple of minutes. "
|
592 |
+
msgstr "om een nieuw Mollie-account aan te maken en betalingen te ontvangen binnen een paar minuten."
|
593 |
+
|
594 |
+
#: src/Mollie/WC/Helper/Settings.php:617
|
595 |
+
msgid " Mollie is dedicated to making payments better for WooCommerce. "
|
596 |
+
msgstr "Mollie wil betalingen voor WooCommerce beter maken."
|
597 |
+
|
598 |
+
#: src/Mollie/WC/Helper/Settings.php:616
|
599 |
+
msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie."
|
600 |
+
msgstr "Plaats ze eenvoudigweg kant-en-klaar in je WooCommerce webshop met deze krachtige plugin van Mollie."
|
601 |
+
|
602 |
+
#: src/Mollie/WC/Helper/Settings.php:615
|
603 |
+
msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them."
|
604 |
+
msgstr "Integreer snel en daar waar nodig alle belangrijke betaalmethodes in WooCommerce."
|
605 |
+
|
606 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:147
|
607 |
+
msgid "Advanced"
|
608 |
+
msgstr "Geavanceerd"
|
609 |
+
|
610 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:143
|
611 |
+
msgid "Apple Pay Button"
|
612 |
+
msgstr "Apple Pay knop"
|
613 |
+
|
614 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:138
|
615 |
+
msgid "General"
|
616 |
+
msgstr "Algemeen"
|
617 |
+
|
618 |
+
#: src/Mollie/WC/Gateway/Abstract.php:283
|
619 |
+
msgid "Select none"
|
620 |
+
msgstr "Selecteer niets"
|
621 |
+
|
622 |
+
#: src/Mollie/WC/Gateway/Abstract.php:282
|
623 |
+
msgid "Select all"
|
624 |
+
msgstr "Selecteer alles"
|
625 |
+
|
626 |
+
#: src/Mollie/WC/Gateway/Abstract.php:273
|
627 |
+
msgid "Country"
|
628 |
+
msgstr "Land"
|
629 |
+
|
630 |
+
#: src/Mollie/WC/Gateway/Abstract.php:272
|
631 |
+
msgid "Choose countries…"
|
632 |
+
msgstr "Selecteer landen…"
|
633 |
+
|
634 |
+
#: src/Mollie/WC/Gateway/Abstract.php:244
|
635 |
+
msgid "Return to payments"
|
636 |
+
msgstr "Ga terug naar betalingen"
|
637 |
+
|
638 |
+
#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114
|
639 |
+
msgid "Sell to specific countries"
|
640 |
+
msgstr "Verkopen aan specifieke landen"
|
641 |
+
|
642 |
+
#: inc/settings/mollie_advanced_settings.php:73
|
643 |
+
msgid "Single Click Payments"
|
644 |
+
msgstr "Betalen met één klik"
|
645 |
+
|
646 |
+
#: inc/settings/mollie_advanced_settings.php:68
|
647 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%1$s</code>. Required if WooCommerce Subscriptions is being used! Read more about <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> and how it improves your conversion."
|
648 |
+
msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor 'Betalen met één klik'? Standaard <code>%1$s</code>. Noodzakelijk als WooCommerce-abonnementen worden gebruikt! Lees meer over <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> en hoe het jouw conversie verbetert."
|
649 |
+
|
650 |
+
#: inc/settings/mollie_advanced_settings.php:6
|
651 |
+
msgid "Mollie advanced settings"
|
652 |
+
msgstr "Geavanceerde Mollie-instellingen"
|
653 |
+
|
654 |
+
#: inc/settings/mollie_applepay_settings.php:84
|
655 |
+
msgid "The following options are required to use the Apple Pay Direct Button"
|
656 |
+
msgstr "De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay Direct knop"
|
657 |
+
|
658 |
+
#: inc/settings/mollie_applepay_settings.php:14
|
659 |
+
msgid "The following options are required to use the Apple Pay gateway"
|
660 |
+
msgstr "De volgende opties zijn noodzakelijk voor het gebruik van de Apple Pay gateway"
|
661 |
|
662 |
+
#: inc/settings/mollie_components_enabler.php:8
|
663 |
+
msgid "Use the Mollie Components for this Gateway. Read more about <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> and how it improves your conversion."
|
664 |
+
msgstr "Gebruik de Mollie-componenten voor deze gateway. Lees meer over <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> en hoe het je conversie verbetert."
|
665 |
+
|
666 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:11
|
667 |
+
msgid "The following options are required to use the Apple Pay button"
|
668 |
+
msgstr "De volgende opties zijn vereist voor het gebruik van de Apple Pay knop"
|
669 |
+
|
670 |
+
#: inc/settings/mollie_applepay_settings.php:79
|
671 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
672 |
+
msgid "Apple Pay button settings"
|
673 |
+
msgstr "Instellingen Apple Pay knop"
|
674 |
+
|
675 |
+
#: mollie-payments-for-woocommerce.php:91
|
676 |
+
msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s."
|
677 |
+
msgstr "%1$sMollie-betalingen voor WooCommerce: API-sleutels ontbreken%2$s Stel%3$s hier je API-sleutels in%4$s."
|
678 |
+
|
679 |
+
#: src/Mollie/WC/Plugin.php:541
|
680 |
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."
|
681 |
+
msgstr "Daarvoor moeten alle producten van de bestelling een categorie hebben. Om het kiezen van een waardebon voor een bepaald product onmogelijk te maken, kies je de optie ''Geen categorie''."
|
682 |
|
683 |
+
#: src/Mollie/WC/Plugin.php:524
|
684 |
msgid "Products voucher category"
|
685 |
+
msgstr "Producten waardeboncategorie"
|
686 |
|
687 |
+
#: src/Mollie/WC/Plugin.php:308
|
688 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
689 |
+
msgstr "%1$sMollie-betalingen voor WooCommerce%2$s De testmodus is actief, %3$s schakel deze uit%4$s voordat hij wordt geïmplementeerd."
|
690 |
|
691 |
+
#: src/Mollie/WC/Helper/Settings.php:654 src/Mollie/WC/Plugin.php:391
|
692 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:11
|
693 |
msgid "Mollie Settings"
|
694 |
msgstr "Mollie-instellingen"
|
695 |
|
705 |
|
706 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
707 |
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"
|
708 |
+
msgstr "Daarvoor moeten alle producten van de bestelling beschikken over een categorie. De keuzeschakelaar zal de standaard categorie toewijzen voor de winkelproducten"
|
709 |
|
710 |
+
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:520
|
711 |
msgid "Select the default products category"
|
712 |
msgstr "Selecteer de categorie standaard producten"
|
713 |
|
714 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:40
|
715 |
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"
|
716 |
+
msgstr "Activeer deze optie als je mogelijkheid wil hebben om een aantal dagen in te stellen waarna de betaling vervalt. Deze zet alle transacties om in betalingen in plaats van bestellingen"
|
717 |
|
718 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:39
|
719 |
+
#: src/Mollie/WC/Helper/Settings.php:245
|
720 |
msgid "Enable expiry date for payments"
|
721 |
msgstr "Activeer de vervaldatum voor betalingen"
|
722 |
|
723 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:38
|
724 |
+
#: src/Mollie/WC/Helper/Settings.php:244
|
725 |
msgid "Activate expiry date setting"
|
726 |
msgstr "Activeer instelling vervaldatum"
|
727 |
|
728 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2178
|
729 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
730 |
msgid " Remainder: %1$s %2$s %3$s."
|
731 |
+
msgstr " Restant: %1$s %2$s %3$s."
|
732 |
|
733 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2166
|
734 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
735 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
736 |
msgstr "Mollie - Details cadeaukaart: %1$s %2$s %3$s."
|
737 |
|
738 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
739 |
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"
|
740 |
+
msgstr "%1$sApple Pay validatiefout%2$s Lees %3$sde pagina met Apple serververeisten%4$s om de Apple Pay knop te laten werken"
|
741 |
|
742 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39
|
743 |
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"
|
744 |
+
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"
|
745 |
|
746 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
747 |
msgid "Show Mastercard Icon"
|
760 |
#: inc/settings/mollie_components.php:72
|
761 |
msgctxt "Mollie Components Settings"
|
762 |
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
763 |
+
msgstr "Voeg vulling toe aan de componenten. De eenheden '16px 16px 16px 16px' en 'em', 'px', 'rem' zijn toegestaan."
|
764 |
|
765 |
#: inc/settings/mollie_components.php:35
|
766 |
msgctxt "Mollie Components Settings"
|
793 |
|
794 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
795 |
msgid "Show customized creditcard icons on checkout page"
|
796 |
+
msgstr "Toon aangepaste creditcardpictogrammen op betaalpagina"
|
797 |
|
798 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
799 |
msgid "Enable Icons Selector"
|
800 |
+
msgstr "Activeer pictogramselectie"
|
801 |
|
802 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
803 |
msgid "Customize Icons"
|
804 |
msgstr "Pas pictogrammen aan"
|
805 |
|
806 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
807 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2129
|
808 |
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)."
|
809 |
+
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)."
|
810 |
|
811 |
+
#: src/Mollie/WC/Gateway/Abstract.php:590
|
812 |
msgid "Failed switching subscriptions, no valid mandate."
|
813 |
+
msgstr "Abonnementen wijzigen mislukt, geen geldig mandaat."
|
|
|
|
|
|
|
|
|
814 |
|
815 |
#: inc/settings/mollie_components_enabler.php:6
|
816 |
msgid "Enable Mollie Components"
|
941 |
msgid "Base Styles"
|
942 |
msgstr "Basisstijlen"
|
943 |
|
944 |
+
#: src/Mollie/WC/Plugin.php:950
|
945 |
msgid "An unknown error occurred, please check the card fields."
|
946 |
msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden."
|
947 |
|
948 |
+
#: src/Mollie/WC/Plugin.php:943
|
949 |
msgid "Verification Code"
|
950 |
msgstr "Verificatiecode"
|
951 |
|
952 |
+
#: src/Mollie/WC/Plugin.php:939
|
953 |
msgid "Expiry Date"
|
954 |
msgstr "Vervaldatum"
|
955 |
|
956 |
+
#: src/Mollie/WC/Plugin.php:935
|
957 |
msgid "Card Number"
|
958 |
msgstr "Kaartnummer"
|
959 |
|
960 |
+
#: src/Mollie/WC/Plugin.php:931
|
961 |
msgid "Card Holder"
|
962 |
msgstr "Kaarthouder"
|
963 |
|
964 |
+
#: inc/settings/mollie_components_enabler.php:12
|
965 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
966 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:139
|
967 |
msgid "Mollie Components"
|
968 |
msgstr "Mollie-componenten"
|
969 |
|
970 |
+
#: src/Mollie/WC/Plugin.php:757
|
971 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
972 |
msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie."
|
973 |
|
974 |
+
#: src/Mollie/WC/Plugin.php:739
|
975 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
976 |
msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie."
|
977 |
|
981 |
|
982 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
983 |
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
984 |
+
msgstr "Onmogelijk om het bestelartikel-id van het afstandsartikel terug te halen: %1$s. Probeer een terugbetaling te doen per bedrag."
|
985 |
|
986 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
987 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
988 |
msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld."
|
989 |
|
990 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119
|
991 |
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."
|
992 |
+
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."
|
993 |
|
994 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145
|
996 |
msgid "Order completed using %1$s payment (%2$s)."
|
997 |
msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)."
|
998 |
|
1029 |
|
1030 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
1031 |
msgid "Przelewy24"
|
1032 |
+
msgstr "Przelewy24 "
|
1033 |
|
1034 |
+
#: src/Mollie/WC/Helper/Status.php:89
|
1035 |
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."
|
1036 |
+
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."
|
1037 |
|
1038 |
+
#: src/Mollie/WC/Payment/Order.php:836
|
1039 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
1040 |
+
msgstr "Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s. "
|
1041 |
|
1042 |
+
#: src/Mollie/WC/Payment/Order.php:758
|
1043 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
1044 |
+
msgstr "%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s. "
|
1045 |
|
1046 |
+
#: src/Mollie/WC/Payment/Order.php:742
|
1047 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
1048 |
+
msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie. "
|
1049 |
|
1050 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1051 |
+
#: src/Mollie/WC/Payment/Order.php:361
|
1052 |
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!"
|
1053 |
+
msgstr "Bestelling voltooid bij Mollie voor %s bestelling (%s). Ten minste één bestellijn voltooid. Let erop: Voltooide status voor een bestelling bij Mollie is niet hetzelfde als Voltooide status in WooCommerce!"
|
1054 |
|
1055 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1238
|
1057 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
1058 |
+
msgstr "%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet, bekijk opnieuw (en pas productvoorraden aan als je dit gebruikt)."
|
1059 |
|
|
|
|
|
|
|
|
|
|
|
1060 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
1061 |
msgid "Order"
|
1062 |
msgstr "Bestelling"
|
1067 |
msgstr "%s betaling (%s) geannuleerd."
|
1068 |
|
1069 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1070 |
+
#: src/Mollie/WC/Payment/Order.php:931
|
1071 |
msgid "%s order (%s) expired ."
|
1072 |
msgstr "%s bestelling (%s) verlopen."
|
1073 |
|
1074 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1075 |
+
#: src/Mollie/WC/Payment/Order.php:509
|
1076 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
1077 |
+
msgstr "%s bestelling verlopen (%s) maar niet geannuleerd wegens een andere betaling die nog in behandeling is (%s)."
|
1078 |
|
1079 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1080 |
+
#: src/Mollie/WC/Payment/Order.php:444
|
1081 |
msgid "%s order (%s) cancelled ."
|
1082 |
msgstr "%s bestelling (%s) geannuleerd."
|
1083 |
|
1084 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1085 |
+
#: src/Mollie/WC/Payment/Order.php:314
|
1086 |
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."
|
1087 |
+
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. "
|
|
|
|
|
|
|
|
|
1088 |
|
1089 |
+
#: inc/settings/mollie_advanced_settings.php:57
|
1090 |
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."
|
1091 |
+
msgstr "Het verzenden van een taal (of locatie) is noodzakelijk. 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 mislukt of als de taal niet wordt ondersteund, valt het terug op Amerikaans-Engels. Je kunt ook een van de op dit moment door Mollie ondersteunde locaties kiezen. Deze wordt dan voor alle klanten gebruikt."
|
1092 |
|
1093 |
+
#: inc/settings/mollie_advanced_settings.php:26
|
1094 |
msgid "Automatically send WordPress language"
|
1095 |
msgstr "Automatisch verzenden van WordPress-taal"
|
1096 |
|
1097 |
+
#: inc/settings/mollie_advanced_settings.php:18
|
1098 |
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."
|
1099 |
+
msgstr "Status voor bestellingen als een betaling (niet een Mollie-bestelling 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. Zet deze op 'Geannuleerd' als je maar één betaalmethode hebt of als je niet wilt dat klanten opnieuw proberen te betalen met een andere betaalmethode. Dit geldt niet voor betalingen voor bestellingen via de nieuwe Orders API en Klarna betalingen."
|
1100 |
|
1101 |
+
#: src/Mollie/WC/Helper/OrderLines.php:497
|
1102 |
msgid "Shipping"
|
1103 |
msgstr "Verzending"
|
1104 |
|
1105 |
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
1106 |
msgid "Klarna Slice it"
|
1107 |
+
msgstr "Klarna Slice it"
|
1108 |
|
1109 |
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
1110 |
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
1117 |
|
1118 |
#: src/Mollie/WC/Helper/Status.php:131
|
1119 |
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
1120 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn. "
|
1121 |
|
1122 |
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
1123 |
#. version
|
1125 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
1126 |
msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, jij hebt PHP %s. Installeer de upgrade en bekijk %sdeze FAQ%s"
|
1127 |
|
1128 |
+
#: src/Mollie/WC/Helper/Settings.php:825
|
1129 |
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."
|
1130 |
+
msgstr "Je hebt de WooCommerce standaard Direct Bank Transfer (BACS) betalingsgateway ingeschakeld in WooCommerce. Mollie adviseert je ten zeerste om alleen Bank Transfer via Mollie te gebruiken en de standaard WooCommerce BACS betalingsgateway uit te schakelen om mogelijke conflicten te voorkomen. "
|
1131 |
|
1132 |
+
#: src/Mollie/WC/Helper/Settings.php:801
|
1133 |
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."
|
1134 |
+
msgstr "Je hebt WooCommerce-abonnementen ingeschakeld, maar niet SEPA-incasso. Schakel SEPA-incasso in als je klanten wilt toestaan abonnementen met iDEAL en/of andere 'eerste' betaalmethoden te betalen. "
|
1135 |
|
1136 |
+
#: inc/settings/mollie_advanced_settings.php:54
|
1137 |
msgid "Lithuanian"
|
1138 |
msgstr "Litouws"
|
1139 |
|
1140 |
+
#: inc/settings/mollie_advanced_settings.php:53
|
1141 |
msgid "Latvian"
|
1142 |
msgstr "Lets"
|
1143 |
|
1144 |
+
#: inc/settings/mollie_advanced_settings.php:52
|
1145 |
msgid "Polish"
|
1146 |
msgstr "Pools"
|
1147 |
|
1148 |
+
#: inc/settings/mollie_advanced_settings.php:51
|
1149 |
msgid "Hungarian"
|
1150 |
msgstr "Hongaars"
|
1151 |
|
1152 |
+
#: inc/settings/mollie_advanced_settings.php:50
|
1153 |
msgid "Icelandic"
|
1154 |
msgstr "IJslands"
|
1155 |
|
1156 |
+
#: inc/settings/mollie_advanced_settings.php:49
|
1157 |
msgid "Danish"
|
1158 |
msgstr "Deens"
|
1159 |
|
1160 |
+
#: inc/settings/mollie_advanced_settings.php:48
|
1161 |
msgid "Finnish"
|
1162 |
msgstr "Fins"
|
1163 |
|
1164 |
+
#: inc/settings/mollie_advanced_settings.php:47
|
1165 |
msgid "Swedish"
|
1166 |
msgstr "Zweeds"
|
1167 |
|
1168 |
+
#: inc/settings/mollie_advanced_settings.php:46
|
1169 |
msgid "Norwegian"
|
1170 |
msgstr "Noors"
|
1171 |
|
1172 |
+
#: inc/settings/mollie_advanced_settings.php:45
|
1173 |
msgid "Italian"
|
1174 |
msgstr "Italiaans"
|
1175 |
|
1176 |
+
#: inc/settings/mollie_advanced_settings.php:44
|
1177 |
msgid "Portuguese"
|
1178 |
msgstr "Portugees"
|
1179 |
|
1180 |
+
#: inc/settings/mollie_advanced_settings.php:43
|
1181 |
msgid "Catalan"
|
1182 |
msgstr "Spaans (Catalaans)"
|
1183 |
|
1184 |
+
#: inc/settings/mollie_advanced_settings.php:41
|
1185 |
msgid "Swiss German"
|
1186 |
msgstr "Zwitserduits"
|
1187 |
|
1188 |
+
#: inc/settings/mollie_advanced_settings.php:40
|
1189 |
msgid "Austrian German"
|
1190 |
msgstr "Oostenrijks-Duits"
|
1191 |
|
1192 |
+
#: src/Mollie/WC/Helper/Api.php:42
|
1193 |
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."
|
1194 |
+
msgstr "Ongeldige API-sleutel(s). Haal deze op van de %sDevelopers-pagina op 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."
|
1195 |
|
1196 |
+
#: src/Mollie/WC/Helper/Api.php:40
|
1197 |
msgid "No API key provided. Please set your Mollie API keys below."
|
1198 |
+
msgstr "Geen API-sleutel geleverd. Stel hieronder je Mollie API-sleutels in."
|
1199 |
|
1200 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
1201 |
msgid "Giropay"
|
1206 |
msgstr "EPS"
|
1207 |
|
1208 |
#. translators: Placeholder 1: Payment method title
|
1209 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:314
|
1210 |
msgid "Could not create %s renewal payment."
|
1211 |
+
msgstr "Kon geen %s betalingshernieuwing aanmaken. "
|
1212 |
|
1213 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:271
|
1214 |
msgid "The customer (%s) does not have a valid mandate."
|
1215 |
msgstr "De klant (%s) heeft geen geldig mandaat."
|
1216 |
|
1217 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:262
|
1218 |
msgid "The customer (%s) could not be used or found. "
|
1219 |
+
msgstr "De klant (%s) kon niet gebruikt of gevonden worden."
|
1220 |
|
1221 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
1222 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
1223 |
#. placeholder 5: refund ID
|
1224 |
+
#: src/Mollie/WC/Payment/Payment.php:511
|
1225 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
1226 |
msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s"
|
1227 |
|
1228 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1229 |
+
#: src/Mollie/WC/Payment/Object.php:637
|
1230 |
msgid "%s payment failed via Mollie (%s)."
|
1231 |
msgstr "%s betaling mislukt via Mollie (%s)."
|
1232 |
|
1233 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1145
|
1234 |
msgid "New chargeback %s processed! Order note and order status updated."
|
1235 |
msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt."
|
1236 |
|
1237 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1009
|
1238 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
1239 |
+
msgstr "Nieuwe terugbetaling %s verwerkt op het Mollie-dashboard. Bestelnota toegevoegd, maar bestelling niet bijgewerkt."
|
1240 |
|
1241 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
1242 |
#. Mollie currencies
|
1243 |
+
#: src/Mollie/WC/Gateway/Abstract.php:364
|
1244 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
1245 |
+
msgstr "Huidige shopvaluta %s wordt niet ondersteund door Mollie. Lees meer over %sondersteunde valuta's en betaalmethodes.%s"
|
|
|
|
|
|
|
|
|
1246 |
|
1247 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1248 |
+
#: src/Mollie/WC/Payment/Object.php:677
|
|
|
1249 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
1250 |
+
msgstr "Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de bestellingsstatus is niet geüpdatet. "
|
|
|
|
|
|
|
|
|
|
|
1251 |
|
1252 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1329
|
1253 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1338
|
1254 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
1255 |
+
msgstr "Je betaling is niet gelukt. Vervolledig je bestelling met een andere betaalmethode. "
|
1256 |
|
1257 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1258 |
+
#: src/Mollie/WC/Payment/Object.php:603
|
1259 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
1260 |
+
msgstr "%s nieuwe betaling mislukt via Mollie (%s). Je moet de betaling handmatig controleren en de productvoorraden aanpassen als je deze gebruikt."
|
1261 |
|
1262 |
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
1263 |
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
1265 |
msgstr "Bancontact"
|
1266 |
|
1267 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1268 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1617
|
1269 |
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."
|
1270 |
+
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, dan kan dit wijzen op een communicatieprobleem tussen de site en Mollie."
|
1271 |
|
1272 |
+
#: src/Mollie/WC/Gateway/Abstract.php:589
|
1273 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
1274 |
msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats een volledig nieuwe bestelling om je abonnement te wijzigen."
|
1275 |
|
|
|
|
|
|
|
|
|
1276 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1277 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1177
|
1278 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
1279 |
msgstr "%s betaling teruggevorderd via Mollie (%s). Je moet de betaling handmatig controleren (en productvoorraden aanpassen als je dit gebruikt)."
|
1280 |
|
1281 |
+
#: src/Mollie/WC/Gateway/Kbc.php:40
|
1282 |
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."
|
1283 |
+
msgstr "Deze tekst krijg je te zien als eerste optie in de KBC/CBC-uitgevers dropdown. Als er niets wordt ingevoerd, wordt 'Kies je bank' weergegeven. Maar alleen als de hierboven genoemde 'Toon KBC/CBC-banken dropdown' is ingeschakeld."
|
1284 |
|
1285 |
#: src/Mollie/WC/Gateway/Kbc.php:34
|
1286 |
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."
|
1292 |
|
1293 |
#: src/Mollie/WC/Gateway/Ideal.php:41
|
1294 |
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."
|
1295 |
+
msgstr "Deze tekst krijg je te zien als eerste optie in de IDEAL-uitgevers dropdown. Als er niets wordt ingevoerd, wordt 'Kies je bank' weergegeven. Maar alleen als de hierboven genoemde 'Toon IDEAL-banken dropdown' is ingeschakeld."
|
1296 |
|
1297 |
+
#: src/Mollie/WC/Gateway/Ideal.php:35
|
1298 |
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."
|
1299 |
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."
|
1300 |
|
1301 |
+
#: src/Mollie/WC/Gateway/Ideal.php:33
|
1302 |
msgid "Show iDEAL banks dropdown"
|
1303 |
msgstr "Toon iDEAL-banken dropdown"
|
1304 |
|
1305 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:39
|
1306 |
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."
|
1307 |
msgstr "Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd."
|
1308 |
|
1314 |
msgid "Show gift cards dropdown"
|
1315 |
msgstr "Toon cadeaubonnen-dropdown"
|
1316 |
|
1317 |
+
#: src/Mollie/WC/Gateway/Abstract.php:578
|
1318 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
1319 |
msgstr "Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie."
|
1320 |
|
1321 |
+
#: inc/settings/mollie_advanced_settings.php:16
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1322 |
msgid "Cancelled"
|
1323 |
msgstr "Geannuleerd"
|
1324 |
|
1325 |
+
#: inc/settings/mollie_advanced_settings.php:15
|
1326 |
msgid "Pending"
|
1327 |
msgstr "In behandeling"
|
1328 |
|
1329 |
+
#: inc/settings/mollie_advanced_settings.php:12
|
1330 |
msgid "Order status after cancelled payment"
|
1331 |
msgstr "Bestelstatus na geannuleerde betaling"
|
1332 |
|
1333 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
1334 |
#. placeholder 3: consumer BIC
|
1335 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
1336 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124
|
1337 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
|
|
|
|
1338 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
1339 |
msgstr "Betaling voltooid met <strong>%s</strong> (IBAN (ten minste 4 cijfers): %s, BIC: %s)"
|
1340 |
|
1341 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1653
|
1342 |
msgid "Your order has been cancelled."
|
1343 |
msgstr "Je bestelling is geannuleerd."
|
1344 |
|
1345 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1626
|
1346 |
msgid ", payment pending."
|
1347 |
msgstr ", betaling in behandeling."
|
1348 |
|
1349 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1590
|
1350 |
msgid "Order cancelled"
|
1351 |
msgstr "Bestelling geannuleerd"
|
1352 |
|
1353 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
1354 |
#. status, placeholder 3: payment ID
|
1355 |
+
#: src/Mollie/WC/Gateway/Abstract.php:895
|
1356 |
msgid "%s payment %s (%s), not processed."
|
1357 |
msgstr "%s betaling %s (%s), niet verwerkt."
|
1358 |
|
1359 |
#. translators: Default gift card dropdown description, displayed above issuer
|
1360 |
#. drop down
|
1361 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:74
|
1362 |
msgid "Select your gift card"
|
1363 |
msgstr "Selecteer je cadeaubon"
|
1364 |
|
1365 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:58
|
1366 |
msgid "Gift cards"
|
1367 |
msgstr "Cadeaubonnen"
|
1368 |
|
1369 |
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
1370 |
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."
|
1371 |
+
msgstr "SEPA-incasso wordt gebruikt voor terugkerende 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' betaalmethodes inschakelen als je SEPA-incasso wilt gebruiken."
|
1372 |
|
1373 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1374 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:165
|
1375 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
1376 |
msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is."
|
1377 |
|
1378 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1379 |
+
#: src/Mollie/WC/Payment/Payment.php:406
|
1380 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
1381 |
+
msgstr "%s betaling verlopen (%s) maar niet geannuleerd wegens een andere betaling die nog in behandeling is (%s)."
|
1382 |
|
1383 |
+
#: src/subscriptions_status_check_functions.php:186
|
1384 |
msgid "There are still some subscriptions left, use the tool again!"
|
1385 |
msgstr "Er zijn nog enkele abonnementen over, gebruik de tool opnieuw!"
|
1386 |
|
1387 |
+
#: src/subscriptions_status_check_functions.php:184
|
1388 |
msgid "No more subscriptions left to process!"
|
1389 |
msgstr "Geen abonnementen over om te verwerken!"
|
1390 |
|
1391 |
+
#: src/subscriptions_status_check_functions.php:171
|
1392 |
msgid "No subscriptions updated in this batch."
|
1393 |
msgstr "Geen abonnementen geüpdatet in deze batch."
|
1394 |
|
1395 |
+
#: src/subscriptions_status_check_functions.php:147
|
1396 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
1397 |
msgstr "Abonnement niet geüpdatet omdat er geen geldig mandaat was bij Mollie. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
1398 |
|
1399 |
+
#: src/subscriptions_status_check_functions.php:133
|
1400 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
1401 |
+
msgstr "Abonnement geüpdatet naar 'Geautomatiseerde vernieuwing' via Mollie, status ingesteld op 'Actief'. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
1402 |
|
1403 |
#: src/subscriptions_status_check_functions.php:36
|
1404 |
msgid "Check subscriptions status"
|
1410 |
|
1411 |
#: src/subscriptions_status_check_functions.php:30
|
1412 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
1413 |
+
msgstr "Controles op abonnementen die verkeerd zijn ingesteld op 'Handmatige vernieuwing'. Lees eerst de"
|
1414 |
|
1415 |
+
#: inc/settings/mollie_advanced_settings.php:65
|
1416 |
msgid "Store customer details at Mollie"
|
1417 |
msgstr "Klantgegevens opslaan bij Mollie"
|
1418 |
|
1419 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1420 |
+
#: src/Mollie/WC/Plugin.php:130
|
1421 |
msgid "%s payment failed (%s)."
|
1422 |
msgstr "%s betaling mislukt (%s)."
|
1423 |
|
1424 |
+
#: src/Mollie/WC/Gateway/Kbc.php:59
|
1425 |
msgid "KBC/CBC Payment Button"
|
1426 |
msgstr "KBC/CBC Betaalknop"
|
1427 |
|
1428 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:37 src/Mollie/WC/Gateway/Ideal.php:39
|
1429 |
+
#: src/Mollie/WC/Gateway/Kbc.php:38
|
1430 |
msgid "Issuers empty option"
|
1431 |
msgstr "Optie uitgevers leeg"
|
1432 |
|
1433 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:58
|
1434 |
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."
|
1435 |
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."
|
1436 |
|
1437 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:57
|
1438 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
1439 |
msgstr "Sla Mollie-betaalscherm over wanneer bankoverschrijving is geselecteerd"
|
1440 |
|
1441 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:56
|
1442 |
msgid "Skip Mollie payment screen"
|
1443 |
msgstr "Mollie-betaalscherm overslaan"
|
1444 |
|
1459 |
msgid "Mollie Payments for WooCommerce"
|
1460 |
msgstr "Mollie-betalingen voor WooCommerce"
|
1461 |
|
1462 |
+
#: src/Mollie/WC/Plugin.php:1320
|
1463 |
msgid "Logs"
|
1464 |
msgstr "Logs"
|
1465 |
|
1466 |
#: src/Mollie/WC/Helper/Status.php:123
|
1467 |
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
1468 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL geactiveerd is. Activeer de extensie 'curl' in je PHP-configuratie."
|
1469 |
|
1470 |
#: src/Mollie/WC/Helper/Status.php:116
|
1471 |
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
1472 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON is ingeschakeld. Schakel de extensie 'json' in je PHP-configuratie in."
|
1473 |
|
1474 |
#: src/Mollie/WC/Helper/Status.php:80
|
1475 |
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
1479 |
#. version, placeholder 3: used WooCommerce version
|
1480 |
#: src/Mollie/WC/Helper/Status.php:67
|
1481 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
1482 |
+
msgstr "Voor de %s plugin is ten minste WooCommerce versie %s verplicht, jij gebruikt versie %s. Update je WooCommerce plugin."
|
1483 |
|
1484 |
+
#: src/Mollie/WC/Helper/Settings.php:698
|
1485 |
msgid "Debug Log"
|
1486 |
msgstr "Debug-log"
|
1487 |
|
1488 |
+
#: inc/settings/mollie_advanced_settings.php:38
|
1489 |
msgid "French (Belgium)"
|
1490 |
msgstr "Frans (België)"
|
1491 |
|
1492 |
+
#: inc/settings/mollie_advanced_settings.php:37
|
1493 |
msgid "French"
|
1494 |
msgstr "Frans"
|
1495 |
|
1496 |
+
#: inc/settings/mollie_advanced_settings.php:42
|
1497 |
msgid "Spanish"
|
1498 |
msgstr "Spaans"
|
1499 |
|
1500 |
+
#: inc/settings/mollie_advanced_settings.php:39
|
1501 |
msgid "German"
|
1502 |
msgstr "Duits"
|
1503 |
|
1504 |
+
#: inc/settings/mollie_advanced_settings.php:34
|
1505 |
msgid "English"
|
1506 |
msgstr "Engels"
|
1507 |
|
1508 |
+
#: inc/settings/mollie_advanced_settings.php:36
|
1509 |
msgid "Flemish (Belgium)"
|
1510 |
msgstr "Vlaams (België)"
|
1511 |
|
1512 |
+
#: inc/settings/mollie_advanced_settings.php:35
|
1513 |
msgid "Dutch"
|
1514 |
msgstr "Nederlands"
|
1515 |
|
1516 |
+
#: inc/settings/mollie_advanced_settings.php:30
|
1517 |
msgid "Detect using browser language"
|
1518 |
msgstr "Detecteren met gebruik van browser-taal"
|
1519 |
|
1520 |
+
#: inc/settings/mollie_advanced_settings.php:23
|
1521 |
msgid "Payment screen language"
|
1522 |
msgstr "Taal van betaalscherm"
|
1523 |
|
1524 |
+
#: src/Mollie/WC/Helper/Settings.php:694
|
1525 |
msgid "Test API key should start with test_"
|
1526 |
msgstr "Test API-sleutel moet beginnen met test_"
|
1527 |
|
1528 |
+
#: src/Mollie/WC/Helper/Settings.php:683
|
1529 |
msgid "Test API key"
|
1530 |
msgstr "Test API-sleutel"
|
1531 |
|
1532 |
+
#: src/Mollie/WC/Helper/Settings.php:679
|
1533 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
1534 |
msgstr "Activeer de testmodus als je de plugin wilt testen zonder echte betalingen te gebruiken."
|
1535 |
|
1536 |
+
#: src/Mollie/WC/Helper/Settings.php:676
|
1537 |
msgid "Enable test mode"
|
1538 |
msgstr "Activeer de testmodus"
|
1539 |
|
1540 |
+
#: src/Mollie/WC/Helper/Settings.php:672
|
1541 |
msgid "Live API key should start with live_"
|
1542 |
msgstr "Live API-sleutel moet beginnen met live_"
|
1543 |
|
1544 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
1545 |
#. %s's Will be replaced by a link to the Mollie profile
|
1546 |
+
#: src/Mollie/WC/Helper/Settings.php:666 src/Mollie/WC/Helper/Settings.php:688
|
1547 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
1548 |
msgstr "De API-sleutel wordt gebruikt om verbinding te maken met Mollie. Je vindt je <strong>%s</strong> API-sleutel in je %sMollie-profiel%s"
|
1549 |
|
1550 |
+
#: src/Mollie/WC/Helper/Settings.php:661
|
1551 |
msgid "Live API key"
|
1552 |
msgstr "Live API-sleutel"
|
1553 |
|
1554 |
+
#: inc/settings/mollie_advanced_settings.php:8
|
1555 |
+
#: src/Mollie/WC/Helper/Settings.php:657
|
1556 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
1557 |
msgstr "De volgende opties zijn vereist om de plugin te gebruiken en worden door alle Mollie-betaalmethoden gebruikt"
|
1558 |
|
1559 |
+
#: src/Mollie/WC/Plugin.php:1314
|
1560 |
msgid "Mollie settings"
|
1561 |
msgstr "Mollie-instellingen"
|
1562 |
|
1563 |
+
#: src/Mollie/WC/Helper/Settings.php:641
|
|
|
1564 |
msgid "Log files are saved to <code>%s</code>"
|
1565 |
msgstr "Logbestanden worden opgeslagen in <code>%s</code>"
|
1566 |
|
1567 |
+
#: src/Mollie/WC/Helper/Settings.php:635
|
|
|
|
|
|
|
|
|
1568 |
msgid "Log plugin events."
|
1569 |
msgstr "Log plugin-gebeurtenissen"
|
1570 |
|
1571 |
+
#: src/Mollie/WC/Helper/Settings.php:582
|
1572 |
msgid "Edit"
|
1573 |
msgstr "Bewerken"
|
1574 |
|
1575 |
+
#: src/Mollie/WC/Helper/Settings.php:559
|
1576 |
msgid "Refresh"
|
1577 |
msgstr "Vernieuwen"
|
1578 |
|
1579 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
1580 |
#. profile
|
1581 |
+
#: src/Mollie/WC/Helper/Settings.php:550
|
1582 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
1583 |
msgstr "De volgende betaalmethoden zijn geactiveerd in je %sMollie-profiel%s:"
|
1584 |
|
1585 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1586 |
msgid "Gateway disabled"
|
1587 |
msgstr "Gateway gedeactiveerd"
|
1588 |
|
1589 |
+
#: inc/settings/mollie_advanced_settings.php:72
|
1590 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1591 |
msgid "Enabled"
|
1592 |
msgstr "Geactiveerd"
|
1593 |
|
1594 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1595 |
msgid "Gateway enabled"
|
1596 |
msgstr "Gateway geactiveerd"
|
1597 |
|
1598 |
+
#: src/Mollie/WC/Helper/Settings.php:495
|
1599 |
msgid "Connected"
|
1600 |
msgstr "Verbonden"
|
1601 |
|
1602 |
+
#: src/Mollie/WC/Helper/Settings.php:494
|
1603 |
msgid "Mollie status:"
|
1604 |
msgstr "Mollie-status:"
|
1605 |
|
1606 |
+
#: src/Mollie/WC/Helper/Settings.php:481
|
1607 |
msgid "Error"
|
1608 |
msgstr "Fout"
|
1609 |
|
1610 |
+
#: src/Mollie/WC/Helper/Data.php:477
|
1611 |
msgid "Item #%s stock incremented from %s to %s."
|
1612 |
msgstr "Item #%s voorraad verhoogd van %s naar %s."
|
1613 |
|
1621 |
|
1622 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1623 |
#. email, placeholder 3: PayPal transaction ID
|
1624 |
+
#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695
|
1625 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1626 |
msgstr "Betaling voltooid met <strong>%s</strong> - %s (PayPal transactie-ID: %s)"
|
1627 |
|
1628 |
+
#: src/Mollie/WC/Gateway/PayPal.php:43
|
1629 |
msgid "PayPal"
|
1630 |
msgstr "PayPal"
|
1631 |
|
1632 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
1633 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1634 |
#. drop down
|
1635 |
+
#: src/Mollie/WC/Gateway/Ideal.php:76 src/Mollie/WC/Gateway/Kbc.php:75
|
|
|
1636 |
msgid "Select your bank"
|
1637 |
msgstr "Selecteer je bank"
|
1638 |
|
1639 |
+
#: src/Mollie/WC/Gateway/Ideal.php:60
|
1640 |
msgid "iDEAL"
|
1641 |
msgstr "iDEAL"
|
1642 |
|
1645 |
msgstr "SEPA-incasso"
|
1646 |
|
1647 |
#. translators: Placeholder 1: card holder
|
1648 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:136
|
1649 |
msgid "Payment completed by <strong>%s</strong>"
|
1650 |
msgstr "Betaling voltooid met <strong>%s</strong>."
|
1651 |
|
1652 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:84
|
1653 |
msgid "Credit card"
|
1654 |
msgstr "Creditcard"
|
1655 |
|
1657 |
msgid "Belfius Direct Net"
|
1658 |
msgstr "Belfius Direct Net"
|
1659 |
|
1660 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:235
|
1661 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1662 |
msgstr "De betaling vervalt op <strong>%s</strong>. Zorg ervoor dat je vóór deze datum het totale bedrag overmaakt."
|
1663 |
|
1664 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:228
|
1665 |
msgid "The payment will expire on <strong>%s</strong>."
|
1666 |
msgstr "De betaling vervalt op <strong>%s</strong>."
|
1667 |
|
1668 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1669 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1670 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:214
|
1671 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1672 |
msgstr "Vermeld de betalingsreferentie <strong>%s</strong>"
|
1673 |
|
1674 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1675 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1676 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:209
|
1677 |
msgid "Payment reference: %s"
|
1678 |
msgstr "Betalingsreferentie: %s."
|
1679 |
|
1680 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:204
|
1681 |
msgid "BIC: %s"
|
1682 |
msgstr "BIC: %s"
|
1683 |
|
1684 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:203
|
1685 |
msgid "IBAN: <strong>%s</strong>"
|
1686 |
msgstr "IBAN: <strong>%s</strong>"
|
1687 |
|
1688 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1689 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:202
|
1690 |
msgid "Beneficiary: %s"
|
1691 |
msgstr "Begunstigde: %s"
|
1692 |
|
1693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
1694 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1695 |
msgstr "Voltooi je betaling door het totale bedrag over te maken naar de volgende bankrekening:"
|
1696 |
|
1697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:138
|
1698 |
msgid "Bank Transfer"
|
1699 |
msgstr "Bankoverdracht"
|
1700 |
|
1701 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1702 |
msgid "Disabled"
|
1703 |
msgstr "Uitgeschakeld"
|
1704 |
|
1705 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
1706 |
+
msgid "Number of DAYS after the payment will expire. Default <code>%d</code> days"
|
1707 |
+
msgstr "Aantal DAGEN nadat de betaling vervalt. Standaard <code>%d</code> dagen"
|
1708 |
|
1709 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:45
|
1710 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
1711 |
msgid "Expiry date"
|
1712 |
msgstr "Vervaldatum"
|
1713 |
|
1714 |
#. translators: Placeholder 1: payment method
|
1715 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1542
|
1716 |
msgid "Payment completed with <strong>%s</strong>"
|
1717 |
msgstr "Betaling voltooid met <strong>%s</strong>"
|
1718 |
|
1719 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1535
|
1720 |
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."
|
1721 |
msgstr "We hebben geen definitieve betalingsstatus ontvangen. Je ontvangt een e-mail zodra we een bevestiging van de bank/handelaar ontvangen."
|
1722 |
|
1723 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1530
|
1724 |
msgid "We have not received a definite payment status."
|
1725 |
msgstr "We hebben geen definitieve betalingsstatus ontvangen."
|
1726 |
|
1727 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1315
|
1728 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1729 |
msgstr "Je hebt je betaling geannuleerd. Vervolledig je bestelling met een andere betaalmethode."
|
1730 |
|
1731 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1732 |
+
#: src/Mollie/WC/Payment/Payment.php:429
|
1733 |
msgid "%s payment expired (%s)."
|
1734 |
msgstr "%s betaling verlopen (%s)."
|
1735 |
|
1736 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1737 |
+
#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:249
|
1738 |
msgid "Order completed using %s payment (%s)."
|
1739 |
msgstr "Bestelling voltooid met gebruik van %s betaling (%s)."
|
1740 |
|
1741 |
#. translators: Placeholder 1: Payment method title
|
1742 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:242
|
1743 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:298
|
1744 |
+
#: src/Mollie/WC/Gateway/Abstract.php:686
|
1745 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78
|
1746 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:122
|
1747 |
msgid "Could not create %s payment."
|
1748 |
msgstr "Kon geen %s betaling aanmaken."
|
1749 |
|
1750 |
+
#: src/Mollie/WC/Gateway/Abstract.php:671
|
1751 |
+
#: src/Mollie/WC/Gateway/Abstract.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1752 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1753 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1244
|
1754 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1619
|
1755 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2142
|
1756 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1757 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139
|
1758 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:422
|
1759 |
+
#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642
|
1760 |
+
#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316
|
1761 |
+
#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446
|
1762 |
+
#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936
|
1763 |
+
#: src/Mollie/WC/Payment/Payment.php:251 src/Mollie/WC/Payment/Payment.php:338
|
1764 |
+
#: src/Mollie/WC/Payment/Payment.php:408 src/Mollie/WC/Payment/Payment.php:431
|
1765 |
msgid "test mode"
|
1766 |
msgstr "testmodus"
|
1767 |
|
1768 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1769 |
+
#: src/Mollie/WC/Gateway/Abstract.php:669
|
1770 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1771 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:420
|
|
|
1772 |
msgid "%s payment started (%s)."
|
1773 |
msgstr "%s betaling gestart (%s)."
|
1774 |
|
1775 |
+
#: src/Mollie/WC/Gateway/Abstract.php:659
|
1776 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1777 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:413
|
|
|
1778 |
msgid "Awaiting payment confirmation."
|
1779 |
msgstr "In afwachting van betalingsbevestiging"
|
1780 |
|
1781 |
+
#: src/Mollie/WC/Gateway/Abstract.php:526
|
1782 |
msgid "Could not load order %s"
|
1783 |
msgstr "Kon bestelling %s niet laden"
|
1784 |
|
1785 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1786 |
#. be replaced by a link to the Mollie profile
|
1787 |
+
#: src/Mollie/WC/Gateway/Abstract.php:352
|
1788 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1789 |
+
msgstr "%s niet geactiveerd in je Mollie-profiel. Je kunt het activeren door je %sMollie-profiel te bewerken%s."
|
1790 |
|
1791 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1792 |
#. setting page
|
1793 |
+
#: src/Mollie/WC/Gateway/Abstract.php:340
|
1794 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1795 |
+
msgstr "Geen API-sleutel geleverd. Stel eerst %sje Mollie API-sleutel%s in."
|
1796 |
|
1797 |
+
#: src/Mollie/WC/Gateway/Abstract.php:221
|
1798 |
msgid "Gateway Disabled"
|
1799 |
msgstr "Gateway gedeactiveerd"
|
1800 |
|
1801 |
+
#: src/Mollie/WC/Gateway/Abstract.php:338 src/Mollie/WC/Helper/Settings.php:545
|
1802 |
msgid "Test mode enabled."
|
1803 |
msgstr "Testmodus geactiveerd."
|
1804 |
|
1805 |
+
#: src/Mollie/WC/Helper/Settings.php:295
|
1806 |
msgid "Hold Stock (minutes)"
|
1807 |
msgstr "Houd voorraad aan (minuten)"
|
1808 |
|
1809 |
+
#: src/Mollie/WC/Helper/Settings.php:286
|
1810 |
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."
|
1811 |
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."
|
1812 |
|
1813 |
+
#: inc/settings/mollie_advanced_settings.php:29
|
1814 |
+
#: inc/settings/mollie_advanced_settings.php:90
|
1815 |
+
#: src/Mollie/WC/Helper/Settings.php:275
|
1816 |
msgid "default"
|
1817 |
msgstr "standaard"
|
1818 |
|
1819 |
+
#: src/Mollie/WC/Helper/Settings.php:267
|
1820 |
msgid "Initial order status"
|
1821 |
msgstr "Initiële bestelstatus"
|
1822 |
|
1823 |
+
#: inc/settings/mollie_applepay_settings.php:63
|
1824 |
+
#: src/Mollie/WC/Helper/Settings.php:84
|
1825 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1826 |
msgstr "Beschrijving van de betaalmethode die de klant bij je betaalpagina zal zien. Standaard <code>%s</code>"
|
1827 |
|
1828 |
+
#: inc/settings/mollie_applepay_settings.php:60
|
1829 |
+
#: src/Mollie/WC/Helper/Settings.php:81
|
1830 |
msgid "Description"
|
1831 |
msgstr "Beschrijving"
|
1832 |
|
1833 |
+
#: src/Mollie/WC/Helper/Settings.php:99
|
1834 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1835 |
+
msgstr "Toon logo op de betaalpagina. Standaard <code>geactiveerd</code>"
|
1836 |
|
1837 |
+
#: inc/settings/mollie_applepay_settings.php:45
|
1838 |
+
#: inc/settings/mollie_applepay_settings.php:48
|
1839 |
+
#: src/Mollie/WC/Helper/Settings.php:94
|
1840 |
msgid "Display logo"
|
1841 |
msgstr "Toon logo"
|
1842 |
|
1843 |
+
#: inc/settings/mollie_applepay_settings.php:32
|
1844 |
+
#: src/Mollie/WC/Helper/Settings.php:71
|
1845 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1846 |
msgstr "Dit controleert de titel die de gebruiker ziet tijdens het betalen. Standaard <code>%s</code>"
|
1847 |
|
1848 |
+
#: inc/settings/mollie_applepay_settings.php:29
|
1849 |
+
#: src/Mollie/WC/Helper/Settings.php:68
|
1850 |
msgid "Title"
|
1851 |
msgstr "Titel"
|
1852 |
|
1853 |
+
#. translators: Placeholder 1: enabled or disabled
|
1854 |
+
#: inc/settings/mollie_applepay_settings.php:21
|
1855 |
+
#: src/Mollie/WC/Helper/Settings.php:54
|
1856 |
msgid "Enable %s"
|
1857 |
msgstr "Geactiveerd %s"
|
1858 |
|
1859 |
+
#: inc/settings/mollie_applepay_settings.php:19
|
1860 |
+
#: src/Mollie/WC/Helper/Settings.php:48
|
1861 |
msgid "Enable/Disable"
|
1862 |
msgstr "Activeren/Deactiveren"
|
languages/mollie-payments-for-woocommerce-nl_BE_formal.mo
ADDED
Binary file
|
languages/mollie-payments-for-woocommerce-nl_BE_formal.po
ADDED
@@ -0,0 +1,1862 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Stable (latest release) in Dutch
|
2 |
+
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-07-26 13:45+0200\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
+
"Language: nl\n"
|
12 |
+
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
+
|
14 |
+
#: src/Mollie/WC/Plugin.php:375
|
15 |
+
msgid "Unpaid order cancelled - time limit reached."
|
16 |
+
msgstr "Onbetaalde bestelling geannuleerd - tijdslimiet bereikt."
|
17 |
+
|
18 |
+
#: src/Mollie/WC/Helper/Settings.php:846
|
19 |
+
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"
|
20 |
+
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 Slice it documentatie%4s"
|
21 |
+
|
22 |
+
#: src/Mollie/WC/Helper/Settings.php:254
|
23 |
+
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."
|
24 |
+
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."
|
25 |
+
|
26 |
+
#: src/Mollie/WC/Helper/Settings.php:246
|
27 |
+
msgid "Enable this option if you want to be able to set the number of days after the order will expire."
|
28 |
+
msgstr "Activeer deze optie als u de mogelijkheid wilt hebben om een aantal dagen in te stellen waarna de bestelling vervalt."
|
29 |
+
|
30 |
+
#: src/Mollie/WC/Helper/Settings.php:237
|
31 |
+
msgid "%s advanced"
|
32 |
+
msgstr "%s geavanceerd"
|
33 |
+
|
34 |
+
#: inc/settings/mollie_paypal_button_enabler.php:126
|
35 |
+
msgid "If the product or the cart total amount is under this number, then the button will not show up."
|
36 |
+
msgstr "Als het product of het totaalbedrag van de winkelwagen onder dit getal blijft, dan verschijnt de knop niet."
|
37 |
+
|
38 |
+
#: inc/settings/mollie_paypal_button_enabler.php:122
|
39 |
+
msgid "Minimum amount to display button"
|
40 |
+
msgstr "Minimum bedrag voor de weergave van de knop"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_paypal_button_enabler.php:117
|
43 |
+
msgctxt "Mollie PayPal button Settings"
|
44 |
+
msgid "Polish -- Checkout with PayPal - Silver"
|
45 |
+
msgstr "Pools -- Betalen met PayPal - Zilver"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_paypal_button_enabler.php:116
|
48 |
+
msgctxt "Mollie PayPal button Settings"
|
49 |
+
msgid "Polish -- Checkout with PayPal - Gold"
|
50 |
+
msgstr "Pools -- Betalen met PayPal - Goud"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_paypal_button_enabler.php:115
|
53 |
+
msgctxt "Mollie PayPal button Settings"
|
54 |
+
msgid "Polish -- Buy with PayPal - Gold"
|
55 |
+
msgstr "Pools -- Kopen met PayPal - Goud"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_paypal_button_enabler.php:114
|
58 |
+
msgctxt "Mollie PayPal button Settings"
|
59 |
+
msgid "French -- Checkout with PayPal - Silver"
|
60 |
+
msgstr "Frans -- Betalen met PayPal - Zilver"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_paypal_button_enabler.php:113
|
63 |
+
msgctxt "Mollie PayPal button Settings"
|
64 |
+
msgid "French -- Checkout with PayPal - Gold"
|
65 |
+
msgstr "Frans -- Betalen met PayPal - Goud"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_paypal_button_enabler.php:112
|
68 |
+
msgctxt "Mollie PayPal button Settings"
|
69 |
+
msgid "French -- Buy with PayPal - Gold"
|
70 |
+
msgstr "Frans -- Kopen met PayPal - Goud"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_paypal_button_enabler.php:111
|
73 |
+
msgctxt "Mollie PayPal button Settings"
|
74 |
+
msgid "German -- Checkout with PayPal - Rounded white"
|
75 |
+
msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken wit"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_paypal_button_enabler.php:110
|
78 |
+
msgctxt "Mollie PayPal button Settings"
|
79 |
+
msgid "German -- Checkout with PayPal - Pill white"
|
80 |
+
msgstr "Duits -- Betalen met PayPal - Pilvormig wit"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_paypal_button_enabler.php:109
|
83 |
+
msgctxt "Mollie PayPal button Settings"
|
84 |
+
msgid "German -- Checkout with PayPal - Rounded gray"
|
85 |
+
msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken grijs"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_paypal_button_enabler.php:108
|
88 |
+
msgctxt "Mollie PayPal button Settings"
|
89 |
+
msgid "German -- Checkout with PayPal - Pill gray"
|
90 |
+
msgstr "Duits -- Betalen met PayPal - Pilvormig grijs"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_paypal_button_enabler.php:107
|
93 |
+
msgctxt "Mollie PayPal button Settings"
|
94 |
+
msgid "German -- Checkout with PayPal - Rounded golden"
|
95 |
+
msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken goud"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_paypal_button_enabler.php:106
|
98 |
+
msgctxt "Mollie PayPal button Settings"
|
99 |
+
msgid "German -- Checkout with PayPal - Pill golden"
|
100 |
+
msgstr "Duits -- Betalen met PayPal - Pilvormig goud"
|
101 |
+
|
102 |
+
#: inc/settings/mollie_paypal_button_enabler.php:105
|
103 |
+
msgctxt "Mollie PayPal button Settings"
|
104 |
+
msgid "German -- Checkout with PayPal - Rounded blue"
|
105 |
+
msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken blauw"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_paypal_button_enabler.php:104
|
108 |
+
msgctxt "Mollie PayPal button Settings"
|
109 |
+
msgid "German -- Checkout with PayPal - Pill blue"
|
110 |
+
msgstr "Duits -- Betalen met PayPal - Pilvormig blauw"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_paypal_button_enabler.php:103
|
113 |
+
msgctxt "Mollie PayPal button Settings"
|
114 |
+
msgid "German -- Checkout with PayPal - Rounded black"
|
115 |
+
msgstr "Duits -- Betalen met PayPal - Afgeronde hoeken zwart"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_paypal_button_enabler.php:102
|
118 |
+
msgctxt "Mollie PayPal button Settings"
|
119 |
+
msgid "German -- Checkout with PayPal - Pill black"
|
120 |
+
msgstr "Duits -- Betalen met PayPal - Pilvormig zwart"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_paypal_button_enabler.php:101
|
123 |
+
msgctxt "Mollie PayPal button Settings"
|
124 |
+
msgid "German -- Buy with PayPal - Rounded white"
|
125 |
+
msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken wit"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_paypal_button_enabler.php:100
|
128 |
+
msgctxt "Mollie PayPal button Settings"
|
129 |
+
msgid "German -- Buy with PayPal - Pill white"
|
130 |
+
msgstr "Duits -- Kopen met PayPal - Pilvormig wit"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_paypal_button_enabler.php:99
|
133 |
+
msgctxt "Mollie PayPal button Settings"
|
134 |
+
msgid "German -- Buy with PayPal - Rounded gray"
|
135 |
+
msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken grijs"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_paypal_button_enabler.php:98
|
138 |
+
msgctxt "Mollie PayPal button Settings"
|
139 |
+
msgid "German -- Buy with PayPal - Pill gray"
|
140 |
+
msgstr "Duits -- Kopen met PayPal - Pilvormig grijs"
|
141 |
+
|
142 |
+
#: inc/settings/mollie_paypal_button_enabler.php:97
|
143 |
+
msgctxt "Mollie PayPal button Settings"
|
144 |
+
msgid "German -- Buy with PayPal - Rounded golden"
|
145 |
+
msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken goud"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_paypal_button_enabler.php:96
|
148 |
+
msgctxt "Mollie PayPal button Settings"
|
149 |
+
msgid "German -- Buy with PayPal - Pill golden"
|
150 |
+
msgstr "Duits -- Kopen met PayPal - Pilvormig goud"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_paypal_button_enabler.php:95
|
153 |
+
msgctxt "Mollie PayPal button Settings"
|
154 |
+
msgid "German -- Buy with PayPal - Rounded blue"
|
155 |
+
msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken blauw"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_paypal_button_enabler.php:94
|
158 |
+
msgctxt "Mollie PayPal button Settings"
|
159 |
+
msgid "German -- Buy with PayPal - Pill blue"
|
160 |
+
msgstr "Duits -- Kopen met PayPal - Pilvormig blauw"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_paypal_button_enabler.php:93
|
163 |
+
msgctxt "Mollie PayPal button Settings"
|
164 |
+
msgid "German -- Buy with PayPal - Rounded black"
|
165 |
+
msgstr "Duits -- Kopen met PayPal - Afgeronde hoeken zwart"
|
166 |
+
|
167 |
+
#: inc/settings/mollie_paypal_button_enabler.php:92
|
168 |
+
msgctxt "Mollie PayPal button Settings"
|
169 |
+
msgid "German -- Buy with PayPal - Pill black"
|
170 |
+
msgstr "Duits -- Kopen met PayPal - Pilvormig zwart"
|
171 |
+
|
172 |
+
#: inc/settings/mollie_paypal_button_enabler.php:91
|
173 |
+
msgctxt "Mollie PayPal button Settings"
|
174 |
+
msgid "Dutch -- Checkout with PayPal - Rounded white"
|
175 |
+
msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken wit"
|
176 |
+
|
177 |
+
#: inc/settings/mollie_paypal_button_enabler.php:90
|
178 |
+
msgctxt "Mollie PayPal button Settings"
|
179 |
+
msgid "Dutch -- Checkout with PayPal - Pill white"
|
180 |
+
msgstr "Nederlands -- Betalen met PayPal - Pilvormig wit"
|
181 |
+
|
182 |
+
#: inc/settings/mollie_paypal_button_enabler.php:89
|
183 |
+
msgctxt "Mollie PayPal button Settings"
|
184 |
+
msgid "Dutch -- Checkout with PayPal - Rounded gray"
|
185 |
+
msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken grijs"
|
186 |
+
|
187 |
+
#: inc/settings/mollie_paypal_button_enabler.php:88
|
188 |
+
msgctxt "Mollie PayPal button Settings"
|
189 |
+
msgid "Dutch -- Checkout with PayPal - Pill gray"
|
190 |
+
msgstr "Nederlands -- Betalen met PayPal - Pilvormig grijs"
|
191 |
+
|
192 |
+
#: inc/settings/mollie_paypal_button_enabler.php:87
|
193 |
+
msgctxt "Mollie PayPal button Settings"
|
194 |
+
msgid "Dutch -- Checkout with PayPal - Rounded golden"
|
195 |
+
msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken goud"
|
196 |
+
|
197 |
+
#: inc/settings/mollie_paypal_button_enabler.php:86
|
198 |
+
msgctxt "Mollie PayPal button Settings"
|
199 |
+
msgid "Dutch -- Checkout with PayPal - Pill golden"
|
200 |
+
msgstr "Nederlands -- Betalen met PayPal - Pilvormig goud"
|
201 |
+
|
202 |
+
#: inc/settings/mollie_paypal_button_enabler.php:85
|
203 |
+
msgctxt "Mollie PayPal button Settings"
|
204 |
+
msgid "Dutch -- Checkout with PayPal - Rounded blue"
|
205 |
+
msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken blauw"
|
206 |
+
|
207 |
+
#: inc/settings/mollie_paypal_button_enabler.php:84
|
208 |
+
msgctxt "Mollie PayPal button Settings"
|
209 |
+
msgid "Dutch -- Checkout with PayPal - Pill blue"
|
210 |
+
msgstr "Nederlands -- Betalen met PayPal - Pilvormig blauw"
|
211 |
+
|
212 |
+
#: inc/settings/mollie_paypal_button_enabler.php:83
|
213 |
+
msgctxt "Mollie PayPal button Settings"
|
214 |
+
msgid "Dutch -- Checkout with PayPal - Rounded black"
|
215 |
+
msgstr "Nederlands -- Betalen met PayPal - Afgeronde hoeken zwart"
|
216 |
+
|
217 |
+
#: inc/settings/mollie_paypal_button_enabler.php:82
|
218 |
+
msgctxt "Mollie PayPal button Settings"
|
219 |
+
msgid "Dutch -- Checkout with PayPal - Pill black"
|
220 |
+
msgstr "Nederlands -- Betalen met PayPal - Pilvormig zwart"
|
221 |
+
|
222 |
+
#: inc/settings/mollie_paypal_button_enabler.php:81
|
223 |
+
msgctxt "Mollie PayPal button Settings"
|
224 |
+
msgid "Dutch -- Buy with PayPal - Rounded white"
|
225 |
+
msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken wit"
|
226 |
+
|
227 |
+
#: inc/settings/mollie_paypal_button_enabler.php:80
|
228 |
+
msgctxt "Mollie PayPal button Settings"
|
229 |
+
msgid "Dutch -- Buy with PayPal - Pill white"
|
230 |
+
msgstr "Nederlands -- Kopen met PayPal - Pilvormig wit"
|
231 |
+
|
232 |
+
#: inc/settings/mollie_paypal_button_enabler.php:79
|
233 |
+
msgctxt "Mollie PayPal button Settings"
|
234 |
+
msgid "Dutch -- Buy with PayPal - Rounded gray"
|
235 |
+
msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken grijs"
|
236 |
+
|
237 |
+
#: inc/settings/mollie_paypal_button_enabler.php:78
|
238 |
+
msgctxt "Mollie PayPal button Settings"
|
239 |
+
msgid "Dutch -- Buy with PayPal - Pill gray"
|
240 |
+
msgstr "Nederlands -- Kopen met PayPal - Pilvormig grijs"
|
241 |
+
|
242 |
+
#: inc/settings/mollie_paypal_button_enabler.php:77
|
243 |
+
msgctxt "Mollie PayPal button Settings"
|
244 |
+
msgid "Dutch -- Buy with PayPal - Rounded golden"
|
245 |
+
msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken goud"
|
246 |
+
|
247 |
+
#: inc/settings/mollie_paypal_button_enabler.php:76
|
248 |
+
msgctxt "Mollie PayPal button Settings"
|
249 |
+
msgid "Dutch -- Buy with PayPal - Pill golden"
|
250 |
+
msgstr "Nederlands -- Kopen met PayPal - Pilvormig goud"
|
251 |
+
|
252 |
+
#: inc/settings/mollie_paypal_button_enabler.php:75
|
253 |
+
msgctxt "Mollie PayPal button Settings"
|
254 |
+
msgid "Dutch -- Buy with PayPal - Rounded blue"
|
255 |
+
msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken blauw"
|
256 |
+
|
257 |
+
#: inc/settings/mollie_paypal_button_enabler.php:74
|
258 |
+
msgctxt "Mollie PayPal button Settings"
|
259 |
+
msgid "Dutch -- Buy with PayPal - Pill blue"
|
260 |
+
msgstr "Nederlands -- Kopen met PayPal - Pilvormig blauw"
|
261 |
+
|
262 |
+
#: inc/settings/mollie_paypal_button_enabler.php:73
|
263 |
+
msgctxt "Mollie PayPal button Settings"
|
264 |
+
msgid "Dutch -- Buy with PayPal - Rounded black"
|
265 |
+
msgstr "Nederlands -- Kopen met PayPal - Afgeronde hoeken zwart"
|
266 |
+
|
267 |
+
#: inc/settings/mollie_paypal_button_enabler.php:72
|
268 |
+
msgctxt "Mollie PayPal button Settings"
|
269 |
+
msgid "Dutch -- Buy with PayPal - Pill black"
|
270 |
+
msgstr "Nederlands -- Kopen met PayPal - Pilvormig zwart"
|
271 |
+
|
272 |
+
#: inc/settings/mollie_paypal_button_enabler.php:71
|
273 |
+
msgctxt "Mollie PayPal button Settings"
|
274 |
+
msgid "English -- Checkout with PayPal - Rounded white"
|
275 |
+
msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken wit"
|
276 |
+
|
277 |
+
#: inc/settings/mollie_paypal_button_enabler.php:70
|
278 |
+
msgctxt "Mollie PayPal button Settings"
|
279 |
+
msgid "English -- Checkout with PayPal - Pill white"
|
280 |
+
msgstr "Engels -- Betalen met PayPal - Pilvormig wit"
|
281 |
+
|
282 |
+
#: inc/settings/mollie_paypal_button_enabler.php:69
|
283 |
+
msgctxt "Mollie PayPal button Settings"
|
284 |
+
msgid "English -- Checkout with PayPal - Rounded gray"
|
285 |
+
msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken grijs"
|
286 |
+
|
287 |
+
#: inc/settings/mollie_paypal_button_enabler.php:68
|
288 |
+
msgctxt "Mollie PayPal button Settings"
|
289 |
+
msgid "English -- Checkout with PayPal - Pill gray"
|
290 |
+
msgstr "Engels -- Betalen met PayPal - Pilvormig grijs"
|
291 |
+
|
292 |
+
#: inc/settings/mollie_paypal_button_enabler.php:67
|
293 |
+
msgctxt "Mollie PayPal button Settings"
|
294 |
+
msgid "English -- Checkout with PayPal - Rounded golden"
|
295 |
+
msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken goud"
|
296 |
+
|
297 |
+
#: inc/settings/mollie_paypal_button_enabler.php:66
|
298 |
+
msgctxt "Mollie PayPal button Settings"
|
299 |
+
msgid "English -- Checkout with PayPal - Pill golden"
|
300 |
+
msgstr "Engels -- Betalen met PayPal - Pilvormig goud"
|
301 |
+
|
302 |
+
#: inc/settings/mollie_paypal_button_enabler.php:65
|
303 |
+
msgctxt "Mollie PayPal button Settings"
|
304 |
+
msgid "English -- Checkout with PayPal - Rounded blue"
|
305 |
+
msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken blauw"
|
306 |
+
|
307 |
+
#: inc/settings/mollie_paypal_button_enabler.php:64
|
308 |
+
msgctxt "Mollie PayPal button Settings"
|
309 |
+
msgid "English -- Checkout with PayPal - Pill blue"
|
310 |
+
msgstr "Engels -- Betalen met PayPal - Pilvormig blauw"
|
311 |
+
|
312 |
+
#: inc/settings/mollie_paypal_button_enabler.php:63
|
313 |
+
msgctxt "Mollie PayPal button Settings"
|
314 |
+
msgid "English -- Checkout with PayPal - Rounded black"
|
315 |
+
msgstr "Engels -- Betalen met PayPal - Afgeronde hoeken zwart"
|
316 |
+
|
317 |
+
#: inc/settings/mollie_paypal_button_enabler.php:62
|
318 |
+
msgctxt "Mollie PayPal button Settings"
|
319 |
+
msgid "English -- Checkout with PayPal - Pill black"
|
320 |
+
msgstr "Engels -- Betalen met PayPal - Pilvormig zwart"
|
321 |
+
|
322 |
+
#: inc/settings/mollie_paypal_button_enabler.php:61
|
323 |
+
msgctxt "Mollie PayPal button Settings"
|
324 |
+
msgid "English -- Buy with PayPal - Rounded white"
|
325 |
+
msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken wit"
|
326 |
+
|
327 |
+
#: inc/settings/mollie_paypal_button_enabler.php:60
|
328 |
+
msgctxt "Mollie PayPal button Settings"
|
329 |
+
msgid "English -- Buy with PayPal - Pill white"
|
330 |
+
msgstr "Engels -- Kopen met PayPal - Pilvormig wit"
|
331 |
+
|
332 |
+
#: inc/settings/mollie_paypal_button_enabler.php:59
|
333 |
+
msgctxt "Mollie PayPal button Settings"
|
334 |
+
msgid "English -- Buy with PayPal - Rounded gray"
|
335 |
+
msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken grijs"
|
336 |
+
|
337 |
+
#: inc/settings/mollie_paypal_button_enabler.php:58
|
338 |
+
msgctxt "Mollie PayPal button Settings"
|
339 |
+
msgid "English -- Buy with PayPal - Pill gray"
|
340 |
+
msgstr "Engels -- Kopen met PayPal - Pilvormig grijs"
|
341 |
+
|
342 |
+
#: inc/settings/mollie_paypal_button_enabler.php:57
|
343 |
+
msgctxt "Mollie PayPal button Settings"
|
344 |
+
msgid "English -- Buy with PayPal - Rounded golden"
|
345 |
+
msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken goud"
|
346 |
+
|
347 |
+
#: inc/settings/mollie_paypal_button_enabler.php:56
|
348 |
+
msgctxt "Mollie PayPal button Settings"
|
349 |
+
msgid "English -- Buy with PayPal - Pill golden"
|
350 |
+
msgstr "Engels -- Kopen met PayPal - Pilvormig goud"
|
351 |
+
|
352 |
+
#: inc/settings/mollie_paypal_button_enabler.php:55
|
353 |
+
msgctxt "Mollie PayPal button Settings"
|
354 |
+
msgid "English -- Buy with PayPal - Rounded blue"
|
355 |
+
msgstr "Engels -- Kopen met PayPal - Afgeronde hoeken blauw"
|
356 |
+
|
357 |
+
#: inc/settings/mollie_paypal_button_enabler.php:54
|
358 |
+
msgctxt "Mollie PayPal button Settings"
|
359 |
+
msgid "English -- Buy with PayPal - Pill blue"
|
360 |
+
msgstr "Engels -- Kopen met PayPal - Pilvormig blauw"
|
361 |
+
|
362 |
+
#: inc/settings/mollie_paypal_button_enabler.php:46
|
363 |
+
msgctxt "Mollie PayPal Button Settings"
|
364 |
+
msgid "Select the text and the colour of the button."
|
365 |
+
msgstr "Kies de tekst en de kleur van de knop."
|
366 |
+
|
367 |
+
#: inc/settings/mollie_paypal_button_enabler.php:44
|
368 |
+
msgctxt "Mollie PayPal Button Settings"
|
369 |
+
msgid "Button text language and color"
|
370 |
+
msgstr "Knop tekst taal en kleur"
|
371 |
+
|
372 |
+
#: inc/settings/mollie_paypal_button_enabler.php:35
|
373 |
+
msgid "Enable the PayPal button to be used in the product page."
|
374 |
+
msgstr "Activeer de PayPal-knop om te gebruiken op de productpagina."
|
375 |
+
|
376 |
+
#: inc/settings/mollie_paypal_button_enabler.php:31
|
377 |
+
msgid "Display on product page"
|
378 |
+
msgstr "Toon op de productpagina"
|
379 |
+
|
380 |
+
#: inc/settings/mollie_paypal_button_enabler.php:23
|
381 |
+
msgid "Enable the PayPal button to be used in the cart page."
|
382 |
+
msgstr "Activeer de PayPal-knop om te gebruiken op de winkelwagenpagina."
|
383 |
+
|
384 |
+
#: inc/settings/mollie_paypal_button_enabler.php:19
|
385 |
+
msgid "Display on cart page"
|
386 |
+
msgstr "Toon op de winkelwagenpagina"
|
387 |
+
|
388 |
+
#: inc/settings/mollie_paypal_button_enabler.php:12
|
389 |
+
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"
|
390 |
+
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"
|
391 |
+
|
392 |
+
#: inc/settings/mollie_paypal_button_enabler.php:7
|
393 |
+
msgid "PayPal button display settings"
|
394 |
+
msgstr "PayPal-knop weergave-instellingen"
|
395 |
+
|
396 |
+
#: src/Mollie/WC/Helper/Settings.php:159
|
397 |
+
msgid "%s surcharge"
|
398 |
+
msgstr "%s prijstoeslag"
|
399 |
+
|
400 |
+
#: src/Mollie/WC/Helper/Settings.php:125
|
401 |
+
msgid "%s custom logo"
|
402 |
+
msgstr "%s aangepast logo"
|
403 |
+
|
404 |
+
#: src/Mollie/WC/Helper/Settings.php:107
|
405 |
+
msgid "Sales countries"
|
406 |
+
msgstr "Verkooplanden"
|
407 |
+
|
408 |
+
#: src/Mollie/WC/Helper/Settings.php:61
|
409 |
+
msgid "%s display settings"
|
410 |
+
msgstr "%s weergave-instellingen"
|
411 |
+
|
412 |
+
#: inc/settings/mollie_advanced_settings.php:124
|
413 |
+
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"
|
414 |
+
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"
|
415 |
+
|
416 |
+
#: inc/settings/mollie_advanced_settings.php:109
|
417 |
+
msgid "API Payment Description"
|
418 |
+
msgstr "Beschrijving Betalings-API"
|
419 |
+
|
420 |
+
#: inc/settings/mollie_advanced_settings.php:99
|
421 |
+
msgid "Click %shere%s to read more about the differences between the Payments and Orders API"
|
422 |
+
msgstr "Klik %shier%s voor meer informatie over de verschillen tussen de Betalings-API en Orders API"
|
423 |
+
|
424 |
+
#: inc/settings/mollie_advanced_settings.php:82
|
425 |
+
msgid "Select API Method"
|
426 |
+
msgstr "Selecteer de API-methode"
|
427 |
+
|
428 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2645
|
429 |
+
msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb."
|
430 |
+
msgstr "%1$sMollie-betalingen voor WooCommerce%2$s Bestand uploaden niet mogelijk. De grootte mag niet meer bedragen dan 500 kB."
|
431 |
+
|
432 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2606
|
433 |
+
msgid " +%1s%2s + %3s%% Fee"
|
434 |
+
msgstr " +%1s%2s + %3s%% vergoeding"
|
435 |
+
|
436 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2589
|
437 |
+
msgid " +%1s%% Fee"
|
438 |
+
msgstr " +%1s%% vergoeding"
|
439 |
+
|
440 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2579
|
441 |
+
msgid " +%1s%2s Fee"
|
442 |
+
msgstr " +%1s%2s vergoeding"
|
443 |
+
|
444 |
+
#: src/Mollie/WC/Gateway/Abstract.php:138
|
445 |
+
msgid "No custom logo selected"
|
446 |
+
msgstr "Geen aangepast logo gekozen"
|
447 |
+
|
448 |
+
#: src/Mollie/WC/Helper/Settings.php:226
|
449 |
+
msgid "Limit the maximum fee added on checkout. Default 0"
|
450 |
+
msgstr "Limiet van de maximum vergoeding toegevoegd aan de betaling. Standaard 0"
|
451 |
+
|
452 |
+
#: src/Mollie/WC/Helper/Settings.php:223
|
453 |
+
msgid "Payment surcharge limit in %s"
|
454 |
+
msgstr "Limiet betalingstoeslag in %s"
|
455 |
+
|
456 |
+
#: src/Mollie/WC/Helper/Settings.php:213
|
457 |
+
msgid "Control the percentage fee added on checkout. Default 0.01"
|
458 |
+
msgstr "Controle van de procentuele vergoeding toegevoegd aan de betaling. Standaard 0,01"
|
459 |
+
|
460 |
+
#: src/Mollie/WC/Helper/Settings.php:210
|
461 |
+
msgid "Payment surcharge percentage amount %"
|
462 |
+
msgstr "Betalingstoeslag aantal percentage %"
|
463 |
+
|
464 |
+
#: src/Mollie/WC/Helper/Settings.php:200
|
465 |
+
msgid "Control the fee added on checkout. Default 0.01"
|
466 |
+
msgstr "Controle van de vergoeding toegevoegd aan de betaling. Standaard 0,01"
|
467 |
+
|
468 |
+
#: src/Mollie/WC/Helper/Settings.php:197
|
469 |
+
msgid "Payment surcharge fixed amount in %s"
|
470 |
+
msgstr "Betalingstoeslag vast bedrag in %s"
|
471 |
+
|
472 |
+
#: src/Mollie/WC/Helper/Settings.php:190
|
473 |
+
msgid "Choose a payment surcharge for this gateway"
|
474 |
+
msgstr "Kies een betalingstoeslag voor deze gateway"
|
475 |
+
|
476 |
+
#: src/Mollie/WC/Helper/Settings.php:184
|
477 |
+
msgid "Fixed fee and percentage"
|
478 |
+
msgstr "Vaste vergoeding en percentage"
|
479 |
+
|
480 |
+
#: src/Mollie/WC/Helper/Settings.php:180
|
481 |
+
msgid "Percentage"
|
482 |
+
msgstr "Percentage"
|
483 |
+
|
484 |
+
#: src/Mollie/WC/Helper/Settings.php:176
|
485 |
+
msgid "Fixed fee"
|
486 |
+
msgstr "Vaste vergoeding"
|
487 |
+
|
488 |
+
#: src/Mollie/WC/Helper/Settings.php:172
|
489 |
+
msgid "No fee"
|
490 |
+
msgstr "Geen vergoeding"
|
491 |
+
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:166
|
493 |
+
msgid "Payment Surcharge"
|
494 |
+
msgstr "Betalingstoeslag"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Helper/Settings.php:150
|
497 |
+
msgid "Upload a custom icon for this gateway. The feature must be enabled."
|
498 |
+
msgstr "Upload een aangepast pictogram voor deze gateway. De functie moet geactiveerd zijn."
|
499 |
+
|
500 |
+
#: src/Mollie/WC/Helper/Settings.php:143
|
501 |
+
msgid "Upload custom logo"
|
502 |
+
msgstr "Upload aangepast logo"
|
503 |
+
|
504 |
+
#: src/Mollie/WC/Helper/Settings.php:137
|
505 |
+
msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options."
|
506 |
+
msgstr "Activeer de functie om een aangepast logo toe te voegen voor deze gateway. Deze functie heeft voorrang op andere opties voor het logo."
|
507 |
+
|
508 |
+
#: src/Mollie/WC/Helper/Settings.php:132
|
509 |
+
msgid "Enable custom logo"
|
510 |
+
msgstr "Activeer aangepast logo"
|
511 |
+
|
512 |
+
#: src/Mollie/WC/Helper/GatewaySurchargeHandler.php:253
|
513 |
+
msgid "Fee"
|
514 |
+
msgstr "Vergoeding"
|
515 |
+
|
516 |
+
#: inc/settings/mollie_applepay_settings.php:106
|
517 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:32
|
518 |
+
msgid "Enable the Apple Pay direct buy button on the Product page"
|
519 |
+
msgstr "Activeer de Apple Pay Direct betaalknop op de productpagina"
|
520 |
+
|
521 |
+
#: inc/settings/mollie_applepay_settings.php:103
|
522 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:29
|
523 |
+
msgid "Enable Apple Pay Button on Product page"
|
524 |
+
msgstr "Activeer de Apple Pay knop op de productpagina"
|
525 |
+
|
526 |
+
#: inc/settings/mollie_applepay_settings.php:91
|
527 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:21
|
528 |
+
msgid "Enable the Apple Pay direct buy button on the Cart page"
|
529 |
+
msgstr "Activeer de Apple Pay Direct betaalknop op de winkelwagenpagina"
|
530 |
+
|
531 |
+
#: inc/settings/mollie_applepay_settings.php:88
|
532 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:18
|
533 |
+
msgid "Enable Apple Pay Button on Cart page"
|
534 |
+
msgstr "Activeer de Apple Pay knop op de winkelwagenpagina"
|
535 |
+
|
536 |
+
#: pluginEnvironmentChecker/EnvironmentChecker.php:49
|
537 |
+
msgid "Validation failed with %1$d errors"
|
538 |
+
msgstr "Validatie niet geslaagd met %1$d errors"
|
539 |
+
|
540 |
+
#: src/Mollie/WC/Plugin.php:591
|
541 |
+
msgid "Mollie Voucher category"
|
542 |
+
msgstr "Mollie-waardeboncategorie"
|
543 |
+
|
544 |
+
#: src/Mollie/WC/Plugin.php:531 src/Mollie/WC/Plugin.php:594
|
545 |
+
msgid "Same as default category"
|
546 |
+
msgstr "Zelfde als standaardcategorie"
|
547 |
+
|
548 |
+
#: src/Mollie/WC/Plugin.php:464 src/Mollie/WC/Plugin.php:487
|
549 |
+
msgid "Select a voucher category to apply to all products with this category"
|
550 |
+
msgstr "Selecteer een waardeboncategorie om toe te passen op alle producten met deze categorie"
|
551 |
+
|
552 |
+
#: src/Mollie/WC/Plugin.php:430 src/Mollie/WC/Plugin.php:462
|
553 |
+
#: src/Mollie/WC/Plugin.php:485 src/Mollie/WC/Plugin.php:598
|
554 |
+
msgid "Gift"
|
555 |
+
msgstr "Cadeau"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Plugin.php:429 src/Mollie/WC/Plugin.php:461
|
558 |
+
#: src/Mollie/WC/Plugin.php:484 src/Mollie/WC/Plugin.php:597
|
559 |
+
msgid "Eco"
|
560 |
+
msgstr "Eco"
|
561 |
+
|
562 |
+
#: src/Mollie/WC/Plugin.php:428 src/Mollie/WC/Plugin.php:460
|
563 |
+
#: src/Mollie/WC/Plugin.php:483 src/Mollie/WC/Plugin.php:596
|
564 |
+
msgid "Meal"
|
565 |
+
msgstr "Maaltijd"
|
566 |
+
|
567 |
+
#: src/Mollie/WC/Plugin.php:427 src/Mollie/WC/Plugin.php:459
|
568 |
+
#: src/Mollie/WC/Plugin.php:482 src/Mollie/WC/Plugin.php:595
|
569 |
+
msgid "No Category"
|
570 |
+
msgstr "Geen categorie"
|
571 |
+
|
572 |
+
#: src/Mollie/WC/Plugin.php:426 src/Mollie/WC/Plugin.php:458
|
573 |
+
#: src/Mollie/WC/Plugin.php:481
|
574 |
+
msgid "--Please choose an option--"
|
575 |
+
msgstr "--Kies een optie--"
|
576 |
+
|
577 |
+
#: src/Mollie/WC/Plugin.php:423 src/Mollie/WC/Plugin.php:456
|
578 |
+
#: src/Mollie/WC/Plugin.php:478
|
579 |
+
msgid "Mollie Voucher Category"
|
580 |
+
msgstr "Mollie-waardeboncategorie"
|
581 |
+
|
582 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
583 |
+
msgid "Contact Support"
|
584 |
+
msgstr "Neem contact op met de supportdienst"
|
585 |
+
|
586 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
587 |
+
msgid "Plugin Documentation"
|
588 |
+
msgstr "Plugin-documentatie"
|
589 |
+
|
590 |
+
#: src/Mollie/WC/Helper/Settings.php:619
|
591 |
+
msgid "to create a new Mollie account and start receiving payments in a couple of minutes. "
|
592 |
+
msgstr "om een nieuw Mollie-account aan te maken en betalingen te ontvangen binnen een paar minuten. "
|
593 |
+
|
594 |
+
#: src/Mollie/WC/Helper/Settings.php:617
|
595 |
+
msgid " Mollie is dedicated to making payments better for WooCommerce. "
|
596 |
+
msgstr " Mollie wil betalingen voor WooCommerce beter maken. "
|
597 |
+
|
598 |
+
#: src/Mollie/WC/Helper/Settings.php:616
|
599 |
+
msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie."
|
600 |
+
msgstr " Plaats ze eenvoudigweg kant-en-klaar in uw WooCommerce webshop met deze krachtige plugin van Mollie."
|
601 |
+
|
602 |
+
#: src/Mollie/WC/Helper/Settings.php:615
|
603 |
+
msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them."
|
604 |
+
msgstr "Integreer snel en daar waar nodig alle belangrijke betaalmethodes in WooCommerce."
|
605 |
+
|
606 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:147
|
607 |
+
msgid "Advanced"
|
608 |
+
msgstr "Geavanceerd"
|
609 |
+
|
610 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:143
|
611 |
+
msgid "Apple Pay Button"
|
612 |
+
msgstr "Apple Pay knop"
|
613 |
+
|
614 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:138
|
615 |
+
msgid "General"
|
616 |
+
msgstr "Algemeen"
|
617 |
+
|
618 |
+
#: src/Mollie/WC/Gateway/Abstract.php:283
|
619 |
+
msgid "Select none"
|
620 |
+
msgstr "Selecteer niets"
|
621 |
+
|
622 |
+
#: src/Mollie/WC/Gateway/Abstract.php:282
|
623 |
+
msgid "Select all"
|
624 |
+
msgstr "Selecteer alles"
|
625 |
+
|
626 |
+
#: src/Mollie/WC/Gateway/Abstract.php:273
|
627 |
+
msgid "Country"
|
628 |
+
msgstr "Land"
|
629 |
+
|
630 |
+
#: src/Mollie/WC/Gateway/Abstract.php:272
|
631 |
+
msgid "Choose countries…"
|
632 |
+
msgstr "Selecteer landen…"
|
633 |
+
|
634 |
+
#: src/Mollie/WC/Gateway/Abstract.php:244
|
635 |
+
msgid "Return to payments"
|
636 |
+
msgstr "Ga terug naar betalingen"
|
637 |
+
|
638 |
+
#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114
|
639 |
+
msgid "Sell to specific countries"
|
640 |
+
msgstr "Verkopen aan specifieke landen"
|
641 |
+
|
642 |
+
#: inc/settings/mollie_advanced_settings.php:73
|
643 |
+
msgid "Single Click Payments"
|
644 |
+
msgstr "Single Click betalingen"
|
645 |
+
|
646 |
+
#: inc/settings/mollie_advanced_settings.php:68
|
647 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%1$s</code>. Required if WooCommerce Subscriptions is being used! Read more about <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> and how it improves your conversion."
|
648 |
+
msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor Single Click betalingen? Standaard <code>%1$s</code>. Vereist als WooCommerce-abonnementen worden gebruikt! Lees meer over <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> en hoe het uw conversie verbetert."
|
649 |
+
|
650 |
+
#: inc/settings/mollie_advanced_settings.php:6
|
651 |
+
msgid "Mollie advanced settings"
|
652 |
+
msgstr "Geavanceerde Mollie-instellingen"
|
653 |
+
|
654 |
+
#: inc/settings/mollie_applepay_settings.php:84
|
655 |
+
msgid "The following options are required to use the Apple Pay Direct Button"
|
656 |
+
msgstr "De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay Direct knop"
|
657 |
+
|
658 |
+
#: inc/settings/mollie_applepay_settings.php:14
|
659 |
+
msgid "The following options are required to use the Apple Pay gateway"
|
660 |
+
msgstr "De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay gateway"
|
661 |
+
|
662 |
+
#: inc/settings/mollie_components_enabler.php:8
|
663 |
+
msgid "Use the Mollie Components for this Gateway. Read more about <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> and how it improves your conversion."
|
664 |
+
msgstr "Gebruik de Mollie-componenten voor deze gateway. Lees meer over <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> en hoe het uw conversie verbetert."
|
665 |
+
|
666 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:11
|
667 |
+
msgid "The following options are required to use the Apple Pay button"
|
668 |
+
msgstr "De volgende opties zijn vereist om gebruik te kunnen maken van de Apple Pay knop"
|
669 |
+
|
670 |
+
#: inc/settings/mollie_applepay_settings.php:79
|
671 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
672 |
+
msgid "Apple Pay button settings"
|
673 |
+
msgstr "Instellingen van Apple Pay knop"
|
674 |
+
|
675 |
+
#: mollie-payments-for-woocommerce.php:91
|
676 |
+
msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s."
|
677 |
+
msgstr "%1$sMollie-betalingen voor WooCommerce: API-sleutels ontbreken%2$s Gelieve%3$s uw API-sleutels hier in te stellen%4$s."
|
678 |
+
|
679 |
+
#: src/Mollie/WC/Plugin.php:541
|
680 |
+
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."
|
681 |
+
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."
|
682 |
+
|
683 |
+
#: src/Mollie/WC/Plugin.php:524
|
684 |
+
msgid "Products voucher category"
|
685 |
+
msgstr "Producten waardebon categorie"
|
686 |
+
|
687 |
+
#: src/Mollie/WC/Plugin.php:308
|
688 |
+
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
689 |
+
msgstr "%1$sMollie-betalingen voor WooCommerce%2$s De testmodus is actief, %3$s schakel deze uit%4$s voordat hij wordt geïmplementeerd."
|
690 |
+
|
691 |
+
#: src/Mollie/WC/Helper/Settings.php:654 src/Mollie/WC/Plugin.php:391
|
692 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:11
|
693 |
+
msgid "Mollie Settings"
|
694 |
+
msgstr "Mollie-instellingen"
|
695 |
+
|
696 |
+
#. translators: Default gift card dropdown description, displayed above issuer
|
697 |
+
#. drop down
|
698 |
+
#: src/Mollie/WC/Gateway/Mealvoucher.php:82
|
699 |
+
msgid "voucher"
|
700 |
+
msgstr "waardebon"
|
701 |
+
|
702 |
+
#: src/Mollie/WC/Gateway/Mealvoucher.php:66
|
703 |
+
msgid "Voucher"
|
704 |
+
msgstr "Waardebon"
|
705 |
+
|
706 |
+
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
707 |
+
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"
|
708 |
+
msgstr "Daarvoor moeten alle producten uit de bestelling een categorie hebben. De keuzeschakelaar zal de standaard categorie toewijzen voor de winkelproducten"
|
709 |
+
|
710 |
+
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:520
|
711 |
+
msgid "Select the default products category"
|
712 |
+
msgstr "Selecteer de categorie standaard producten"
|
713 |
+
|
714 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:40
|
715 |
+
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"
|
716 |
+
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"
|
717 |
+
|
718 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:39
|
719 |
+
#: src/Mollie/WC/Helper/Settings.php:245
|
720 |
+
msgid "Enable expiry date for payments"
|
721 |
+
msgstr "Activeer de vervaldatum voor betalingen"
|
722 |
+
|
723 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:38
|
724 |
+
#: src/Mollie/WC/Helper/Settings.php:244
|
725 |
+
msgid "Activate expiry date setting"
|
726 |
+
msgstr "Activeer instelling vervaldatum"
|
727 |
+
|
728 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2178
|
729 |
+
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
730 |
+
msgid " Remainder: %1$s %2$s %3$s."
|
731 |
+
msgstr " Restant: %1$s %2$s %3$s."
|
732 |
+
|
733 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2166
|
734 |
+
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
735 |
+
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
736 |
+
msgstr "Mollie - Details cadeaukaart: %1$s %2$s %3$s."
|
737 |
+
|
738 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54
|
739 |
+
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"
|
740 |
+
msgstr "%1$sApple Pay validatiefout%2$s Lees %3$sde pagina met Apple serververeisten%4$s om de Apple Pay knop te laten werken"
|
741 |
+
|
742 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39
|
743 |
+
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"
|
744 |
+
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"
|
745 |
+
|
746 |
+
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
747 |
+
msgid "Show Mastercard Icon"
|
748 |
+
msgstr "Toon Mastercard pictogram"
|
749 |
+
|
750 |
+
#: inc/settings/mollie_components.php:94
|
751 |
+
msgctxt "Mollie Components Settings"
|
752 |
+
msgid "Transform Text "
|
753 |
+
msgstr "Wijzig tekst "
|
754 |
+
|
755 |
+
#: inc/settings/mollie_components.php:82
|
756 |
+
msgctxt "Mollie Components Settings"
|
757 |
+
msgid "Align Text"
|
758 |
+
msgstr "Lijn tekst uit"
|
759 |
+
|
760 |
+
#: inc/settings/mollie_components.php:72
|
761 |
+
msgctxt "Mollie Components Settings"
|
762 |
+
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
763 |
+
msgstr "Voeg vulling toe aan de componenten. Tot de toegestane eenheden behoren '16px 16px 16px 16px' en 'em', 'px', 'rem'."
|
764 |
+
|
765 |
+
#: inc/settings/mollie_components.php:35
|
766 |
+
msgctxt "Mollie Components Settings"
|
767 |
+
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
768 |
+
msgstr "Bepaalt de lettergrootte van het component. Toegestane eenheden: 'em', 'px', 'rem'."
|
769 |
+
|
770 |
+
#: inc/settings/mollie_creditcard_icons_selector.php:51
|
771 |
+
msgid "Show VPay Icon"
|
772 |
+
msgstr "Toon Vpay pictogram"
|
773 |
+
|
774 |
+
#: inc/settings/mollie_creditcard_icons_selector.php:46
|
775 |
+
msgid "Show Visa Icon"
|
776 |
+
msgstr "Toon Visa pictogram"
|
777 |
+
|
778 |
+
#: inc/settings/mollie_creditcard_icons_selector.php:36
|
779 |
+
msgid "Show Maestro Icon"
|
780 |
+
msgstr "Toon Maestro pictogram"
|
781 |
+
|
782 |
+
#: inc/settings/mollie_creditcard_icons_selector.php:31
|
783 |
+
msgid "Show Carte Bancaire Icon"
|
784 |
+
msgstr "Toon Carte Bancaire pictogram"
|
785 |
+
|
786 |
+
#: inc/settings/mollie_creditcard_icons_selector.php:26
|
787 |
+
msgid "Show Carta Si Icon"
|
788 |
+
msgstr "Toon Carta Si pictogram"
|
789 |
+
|
790 |
+
#: inc/settings/mollie_creditcard_icons_selector.php:21
|
791 |
+
msgid "Show American Express Icon"
|
792 |
+
msgstr "Toon American Express pictogram"
|
793 |
+
|
794 |
+
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
795 |
+
msgid "Show customized creditcard icons on checkout page"
|
796 |
+
msgstr "Toon aangepaste creditcardpictogrammen op betaalpagina"
|
797 |
+
|
798 |
+
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
799 |
+
msgid "Enable Icons Selector"
|
800 |
+
msgstr "Activeer pictogramselectie"
|
801 |
+
|
802 |
+
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
803 |
+
msgid "Customize Icons"
|
804 |
+
msgstr "Pas pictogrammen aan"
|
805 |
+
|
806 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
807 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2129
|
808 |
+
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)."
|
809 |
+
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)."
|
810 |
+
|
811 |
+
#: src/Mollie/WC/Gateway/Abstract.php:590
|
812 |
+
msgid "Failed switching subscriptions, no valid mandate."
|
813 |
+
msgstr "Abonnementen wijzigen mislukt, geen geldig mandaat."
|
814 |
+
|
815 |
+
#: inc/settings/mollie_components_enabler.php:6
|
816 |
+
msgid "Enable Mollie Components"
|
817 |
+
msgstr "Activeer Mollie-componenten"
|
818 |
+
|
819 |
+
#: inc/settings/mollie_components.php:157
|
820 |
+
msgctxt "Mollie Components Settings"
|
821 |
+
msgid "Background Color for invalid input."
|
822 |
+
msgstr "Achtergrondkleur voor ongeldige invoer."
|
823 |
+
|
824 |
+
#: inc/settings/mollie_components.php:146
|
825 |
+
msgctxt "Mollie Components Settings"
|
826 |
+
msgid "Text Color for invalid input."
|
827 |
+
msgstr "Tekstkleur voor ongeldige invoer."
|
828 |
+
|
829 |
+
#: inc/settings/mollie_components.php:136
|
830 |
+
msgctxt "Mollie Components Settings"
|
831 |
+
msgid "Invalid Status Styles"
|
832 |
+
msgstr "Ongeldige statusstijlen"
|
833 |
+
|
834 |
+
#: inc/settings/mollie_components.php:122
|
835 |
+
msgctxt "Mollie Components Settings"
|
836 |
+
msgid "Full Size Kana"
|
837 |
+
msgstr "Volledige grootte Kana"
|
838 |
+
|
839 |
+
#: inc/settings/mollie_components.php:117
|
840 |
+
msgctxt "Mollie Components Settings"
|
841 |
+
msgid "Full Width"
|
842 |
+
msgstr "Volledige breedte"
|
843 |
+
|
844 |
+
#: inc/settings/mollie_components.php:112
|
845 |
+
msgctxt "Mollie Components Settings"
|
846 |
+
msgid "Lowercase"
|
847 |
+
msgstr "Kleine letters"
|
848 |
+
|
849 |
+
#: inc/settings/mollie_components.php:107
|
850 |
+
msgctxt "Mollie Components Settings"
|
851 |
+
msgid "Uppercase"
|
852 |
+
msgstr "Hoofdletters"
|
853 |
+
|
854 |
+
#: inc/settings/mollie_components.php:102
|
855 |
+
msgctxt "Mollie Components Settings"
|
856 |
+
msgid "Capitalize"
|
857 |
+
msgstr "In hoofdletters schrijven"
|
858 |
+
|
859 |
+
#: inc/settings/mollie_components.php:97
|
860 |
+
msgctxt "Mollie Components Settings"
|
861 |
+
msgid "None"
|
862 |
+
msgstr "Geen"
|
863 |
+
|
864 |
+
#: inc/settings/mollie_components.php:88
|
865 |
+
msgctxt "Mollie Components Settings"
|
866 |
+
msgid "Justify"
|
867 |
+
msgstr "Uitvullen"
|
868 |
+
|
869 |
+
#: inc/settings/mollie_components.php:87
|
870 |
+
msgctxt "Mollie Components Settings"
|
871 |
+
msgid "Center"
|
872 |
+
msgstr "Centreren"
|
873 |
+
|
874 |
+
#: inc/settings/mollie_components.php:86
|
875 |
+
msgctxt "Mollie Components Settings"
|
876 |
+
msgid "Right"
|
877 |
+
msgstr "Rechts"
|
878 |
+
|
879 |
+
#: inc/settings/mollie_components.php:85
|
880 |
+
msgctxt "Mollie Components Settings"
|
881 |
+
msgid "Left"
|
882 |
+
msgstr "Links"
|
883 |
+
|
884 |
+
#: inc/settings/mollie_components.php:71
|
885 |
+
msgctxt "Mollie Components Settings"
|
886 |
+
msgid "Padding"
|
887 |
+
msgstr "Vulling"
|
888 |
+
|
889 |
+
#: inc/settings/mollie_components.php:62
|
890 |
+
msgctxt "Mollie Components Settings"
|
891 |
+
msgid "Line Height"
|
892 |
+
msgstr "Regelhoogte"
|
893 |
+
|
894 |
+
#: inc/settings/mollie_components.php:56
|
895 |
+
msgctxt "Mollie Components Settings"
|
896 |
+
msgid "Letter Spacing"
|
897 |
+
msgstr "Letterafstand"
|
898 |
+
|
899 |
+
#: inc/settings/mollie_components.php:50
|
900 |
+
msgctxt "Mollie Components Settings"
|
901 |
+
msgid "Bold"
|
902 |
+
msgstr "Vet"
|
903 |
+
|
904 |
+
#: inc/settings/mollie_components.php:49
|
905 |
+
msgctxt "Mollie Components Settings"
|
906 |
+
msgid "Regular"
|
907 |
+
msgstr "Standaard"
|
908 |
+
|
909 |
+
#: inc/settings/mollie_components.php:48
|
910 |
+
msgctxt "Mollie Components Settings"
|
911 |
+
msgid "Lighter"
|
912 |
+
msgstr "Lichter"
|
913 |
+
|
914 |
+
#: inc/settings/mollie_components.php:45
|
915 |
+
msgctxt "Mollie Components Settings"
|
916 |
+
msgid "Font Weight"
|
917 |
+
msgstr "Lettergewicht"
|
918 |
+
|
919 |
+
#: inc/settings/mollie_components.php:34
|
920 |
+
msgctxt "Mollie Components Settings"
|
921 |
+
msgid "Font Size"
|
922 |
+
msgstr "Lettergrootte"
|
923 |
+
|
924 |
+
#: inc/settings/mollie_components.php:28
|
925 |
+
msgctxt "Mollie Components Settings"
|
926 |
+
msgid "Placeholder Color"
|
927 |
+
msgstr "Kleur van de plaatshouder"
|
928 |
+
|
929 |
+
#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145
|
930 |
+
msgctxt "Mollie Components Settings"
|
931 |
+
msgid "Text Color"
|
932 |
+
msgstr "Tekstkleur"
|
933 |
+
|
934 |
+
#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156
|
935 |
+
msgctxt "Mollie Components Settings"
|
936 |
+
msgid "Background Color"
|
937 |
+
msgstr "Achtergrondkleur"
|
938 |
+
|
939 |
+
#: inc/settings/mollie_components.php:7
|
940 |
+
msgctxt "Mollie Components Settings"
|
941 |
+
msgid "Base Styles"
|
942 |
+
msgstr "Basisstijlen"
|
943 |
+
|
944 |
+
#: src/Mollie/WC/Plugin.php:950
|
945 |
+
msgid "An unknown error occurred, please check the card fields."
|
946 |
+
msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden."
|
947 |
+
|
948 |
+
#: src/Mollie/WC/Plugin.php:943
|
949 |
+
msgid "Verification Code"
|
950 |
+
msgstr "Verificatiecode"
|
951 |
+
|
952 |
+
#: src/Mollie/WC/Plugin.php:939
|
953 |
+
msgid "Expiry Date"
|
954 |
+
msgstr "Vervaldatum"
|
955 |
+
|
956 |
+
#: src/Mollie/WC/Plugin.php:935
|
957 |
+
msgid "Card Number"
|
958 |
+
msgstr "Kaartnummer"
|
959 |
+
|
960 |
+
#: src/Mollie/WC/Plugin.php:931
|
961 |
+
msgid "Card Holder"
|
962 |
+
msgstr "Kaarthouder"
|
963 |
+
|
964 |
+
#: inc/settings/mollie_components_enabler.php:12
|
965 |
+
#: src/Mollie/WC/Settings/Page/Components.php:10
|
966 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:139
|
967 |
+
msgid "Mollie Components"
|
968 |
+
msgstr "Mollie-componenten"
|
969 |
+
|
970 |
+
#: src/Mollie/WC/Plugin.php:757
|
971 |
+
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
972 |
+
msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie."
|
973 |
+
|
974 |
+
#: src/Mollie/WC/Plugin.php:739
|
975 |
+
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
976 |
+
msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie."
|
977 |
+
|
978 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
979 |
+
msgid "Empty WooCommerce order items or mollie order lines."
|
980 |
+
msgstr "Lege WooCommerce-bestelartikelen of Mollie-bestellijnen."
|
981 |
+
|
982 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
983 |
+
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
984 |
+
msgstr "Onmogelijk om het bestelartikel-id van het afstandsartikel terug te halen: %1$s Probeer een terugbetaling te doen per bedrag."
|
985 |
+
|
986 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
987 |
+
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
988 |
+
msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld."
|
989 |
+
|
990 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119
|
991 |
+
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."
|
992 |
+
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."
|
993 |
+
|
994 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145
|
996 |
+
msgid "Order completed using %1$s payment (%2$s)."
|
997 |
+
msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)."
|
998 |
+
|
999 |
+
#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer
|
1000 |
+
#. Account number
|
1001 |
+
#: src/Mollie/WC/Gateway/MyBank.php:73
|
1002 |
+
msgid "Payment completed by <strong>%1$s</strong> - %2$s"
|
1003 |
+
msgstr "Betaling voltooid met <strong>%1$s</strong> - %2$s"
|
1004 |
+
|
1005 |
+
#: src/Mollie/WC/Gateway/MyBank.php:44
|
1006 |
+
msgid "To accept payments via MyBank"
|
1007 |
+
msgstr "Om betalingen te accepteren via MyBank"
|
1008 |
+
|
1009 |
+
#: src/Mollie/WC/Gateway/MyBank.php:36
|
1010 |
+
msgid "MyBank"
|
1011 |
+
msgstr "MyBank"
|
1012 |
+
|
1013 |
+
#: src/Mollie/WC/Gateway/Applepay.php:54
|
1014 |
+
msgid "To accept payments via Apple Pay"
|
1015 |
+
msgstr "Om betalingen te accepteren via Apple Pay"
|
1016 |
+
|
1017 |
+
#: src/Mollie/WC/Gateway/Applepay.php:46
|
1018 |
+
msgid "Apple Pay"
|
1019 |
+
msgstr "Apple Pay"
|
1020 |
+
|
1021 |
+
#. translators: Placeholder 1: customer billing email
|
1022 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:64
|
1023 |
+
msgid "Payment completed by <strong>%s</strong>."
|
1024 |
+
msgstr "Betaling voltooid met <strong>%s</strong>."
|
1025 |
+
|
1026 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
1027 |
+
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
1028 |
+
msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail van de klant vereist."
|
1029 |
+
|
1030 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
1031 |
+
msgid "Przelewy24"
|
1032 |
+
msgstr "Przelewy24"
|
1033 |
+
|
1034 |
+
#: src/Mollie/WC/Helper/Status.php:89
|
1035 |
+
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."
|
1036 |
+
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."
|
1037 |
+
|
1038 |
+
#: src/Mollie/WC/Payment/Order.php:836
|
1039 |
+
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
1040 |
+
msgstr "Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s."
|
1041 |
+
|
1042 |
+
#: src/Mollie/WC/Payment/Order.php:758
|
1043 |
+
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
1044 |
+
msgstr "%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s."
|
1045 |
+
|
1046 |
+
#: src/Mollie/WC/Payment/Order.php:742
|
1047 |
+
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
1048 |
+
msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie."
|
1049 |
+
|
1050 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1051 |
+
#: src/Mollie/WC/Payment/Order.php:361
|
1052 |
+
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!"
|
1053 |
+
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!"
|
1054 |
+
|
1055 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1238
|
1057 |
+
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
1058 |
+
msgstr "%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet, bekijk opnieuw (en pas productvoorraden aan als u dit gebruikt)."
|
1059 |
+
|
1060 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
1061 |
+
msgid "Order"
|
1062 |
+
msgstr "Bestelling"
|
1063 |
+
|
1064 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1065 |
+
#: src/Mollie/WC/Payment/Payment.php:336
|
1066 |
+
msgid "%s payment (%s) cancelled ."
|
1067 |
+
msgstr "%s betaling (%s) geannuleerd."
|
1068 |
+
|
1069 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1070 |
+
#: src/Mollie/WC/Payment/Order.php:931
|
1071 |
+
msgid "%s order (%s) expired ."
|
1072 |
+
msgstr "%s bestelling (%s) verlopen."
|
1073 |
+
|
1074 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1075 |
+
#: src/Mollie/WC/Payment/Order.php:509
|
1076 |
+
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
1077 |
+
msgstr "%s bestelling verlopen (%s) maar niet geannuleerd wegens een andere betaling die nog in behandeling is (%s)."
|
1078 |
+
|
1079 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1080 |
+
#: src/Mollie/WC/Payment/Order.php:444
|
1081 |
+
msgid "%s order (%s) cancelled ."
|
1082 |
+
msgstr "%s bestelling (%s) geannuleerd."
|
1083 |
+
|
1084 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1085 |
+
#: src/Mollie/WC/Payment/Order.php:314
|
1086 |
+
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."
|
1087 |
+
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."
|
1088 |
+
|
1089 |
+
#: inc/settings/mollie_advanced_settings.php:57
|
1090 |
+
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."
|
1091 |
+
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."
|
1092 |
+
|
1093 |
+
#: inc/settings/mollie_advanced_settings.php:26
|
1094 |
+
msgid "Automatically send WordPress language"
|
1095 |
+
msgstr "Automatisch verzenden van WordPress-taal"
|
1096 |
+
|
1097 |
+
#: inc/settings/mollie_advanced_settings.php:18
|
1098 |
+
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."
|
1099 |
+
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."
|
1100 |
+
|
1101 |
+
#: src/Mollie/WC/Helper/OrderLines.php:497
|
1102 |
+
msgid "Shipping"
|
1103 |
+
msgstr "Verzending"
|
1104 |
+
|
1105 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
1106 |
+
msgid "Klarna Slice it"
|
1107 |
+
msgstr "Klarna Slice it"
|
1108 |
+
|
1109 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
1110 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
1111 |
+
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
1112 |
+
msgstr "Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn."
|
1113 |
+
|
1114 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
1115 |
+
msgid "Klarna Pay later"
|
1116 |
+
msgstr "Klarna betaal later"
|
1117 |
+
|
1118 |
+
#: src/Mollie/WC/Helper/Status.php:131
|
1119 |
+
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
1120 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn."
|
1121 |
+
|
1122 |
+
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
1123 |
+
#. version
|
1124 |
+
#: src/Mollie/WC/Helper/Status.php:104
|
1125 |
+
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
1126 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, u hebt PHP %s. Installeer de upgrade en bekijk %sdeze FAQ%s"
|
1127 |
+
|
1128 |
+
#: src/Mollie/WC/Helper/Settings.php:825
|
1129 |
+
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."
|
1130 |
+
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."
|
1131 |
+
|
1132 |
+
#: src/Mollie/WC/Helper/Settings.php:801
|
1133 |
+
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."
|
1134 |
+
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."
|
1135 |
+
|
1136 |
+
#: inc/settings/mollie_advanced_settings.php:54
|
1137 |
+
msgid "Lithuanian"
|
1138 |
+
msgstr "Litouws"
|
1139 |
+
|
1140 |
+
#: inc/settings/mollie_advanced_settings.php:53
|
1141 |
+
msgid "Latvian"
|
1142 |
+
msgstr "Lets"
|
1143 |
+
|
1144 |
+
#: inc/settings/mollie_advanced_settings.php:52
|
1145 |
+
msgid "Polish"
|
1146 |
+
msgstr "Pools"
|
1147 |
+
|
1148 |
+
#: inc/settings/mollie_advanced_settings.php:51
|
1149 |
+
msgid "Hungarian"
|
1150 |
+
msgstr "Hongaars"
|
1151 |
+
|
1152 |
+
#: inc/settings/mollie_advanced_settings.php:50
|
1153 |
+
msgid "Icelandic"
|
1154 |
+
msgstr "IJslands"
|
1155 |
+
|
1156 |
+
#: inc/settings/mollie_advanced_settings.php:49
|
1157 |
+
msgid "Danish"
|
1158 |
+
msgstr "Deens"
|
1159 |
+
|
1160 |
+
#: inc/settings/mollie_advanced_settings.php:48
|
1161 |
+
msgid "Finnish"
|
1162 |
+
msgstr "Fins"
|
1163 |
+
|
1164 |
+
#: inc/settings/mollie_advanced_settings.php:47
|
1165 |
+
msgid "Swedish"
|
1166 |
+
msgstr "Zweeds"
|
1167 |
+
|
1168 |
+
#: inc/settings/mollie_advanced_settings.php:46
|
1169 |
+
msgid "Norwegian"
|
1170 |
+
msgstr "Noors"
|
1171 |
+
|
1172 |
+
#: inc/settings/mollie_advanced_settings.php:45
|
1173 |
+
msgid "Italian"
|
1174 |
+
msgstr "Italiaans"
|
1175 |
+
|
1176 |
+
#: inc/settings/mollie_advanced_settings.php:44
|
1177 |
+
msgid "Portuguese"
|
1178 |
+
msgstr "Portugees"
|
1179 |
+
|
1180 |
+
#: inc/settings/mollie_advanced_settings.php:43
|
1181 |
+
msgid "Catalan"
|
1182 |
+
msgstr "Spaans (Catalaans)"
|
1183 |
+
|
1184 |
+
#: inc/settings/mollie_advanced_settings.php:41
|
1185 |
+
msgid "Swiss German"
|
1186 |
+
msgstr "Zwitserduits"
|
1187 |
+
|
1188 |
+
#: inc/settings/mollie_advanced_settings.php:40
|
1189 |
+
msgid "Austrian German"
|
1190 |
+
msgstr "Oostenrijks-Duits"
|
1191 |
+
|
1192 |
+
#: src/Mollie/WC/Helper/Api.php:42
|
1193 |
+
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."
|
1194 |
+
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."
|
1195 |
+
|
1196 |
+
#: src/Mollie/WC/Helper/Api.php:40
|
1197 |
+
msgid "No API key provided. Please set your Mollie API keys below."
|
1198 |
+
msgstr "Geen API-sleutel geleverd. Stel uw Mollie API-sleutels hieronder in."
|
1199 |
+
|
1200 |
+
#: src/Mollie/WC/Gateway/Giropay.php:29
|
1201 |
+
msgid "Giropay"
|
1202 |
+
msgstr "Giropay"
|
1203 |
+
|
1204 |
+
#: src/Mollie/WC/Gateway/EPS.php:29
|
1205 |
+
msgid "EPS"
|
1206 |
+
msgstr "EPS"
|
1207 |
+
|
1208 |
+
#. translators: Placeholder 1: Payment method title
|
1209 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:314
|
1210 |
+
msgid "Could not create %s renewal payment."
|
1211 |
+
msgstr "Kon geen %s betalingshernieuwing aanmaken."
|
1212 |
+
|
1213 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:271
|
1214 |
+
msgid "The customer (%s) does not have a valid mandate."
|
1215 |
+
msgstr "De klant (%s) heeft geen geldig mandaat."
|
1216 |
+
|
1217 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:262
|
1218 |
+
msgid "The customer (%s) could not be used or found. "
|
1219 |
+
msgstr "De klant (%s) kon niet gebruikt of gevonden worden. "
|
1220 |
+
|
1221 |
+
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
1222 |
+
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
1223 |
+
#. placeholder 5: refund ID
|
1224 |
+
#: src/Mollie/WC/Payment/Payment.php:511
|
1225 |
+
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
1226 |
+
msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s"
|
1227 |
+
|
1228 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1229 |
+
#: src/Mollie/WC/Payment/Object.php:637
|
1230 |
+
msgid "%s payment failed via Mollie (%s)."
|
1231 |
+
msgstr "%s betaling mislukt via Mollie (%s)."
|
1232 |
+
|
1233 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1145
|
1234 |
+
msgid "New chargeback %s processed! Order note and order status updated."
|
1235 |
+
msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt."
|
1236 |
+
|
1237 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1009
|
1238 |
+
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
1239 |
+
msgstr "Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, maar bestelling niet bijgewerkt."
|
1240 |
+
|
1241 |
+
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
1242 |
+
#. Mollie currencies
|
1243 |
+
#: src/Mollie/WC/Gateway/Abstract.php:364
|
1244 |
+
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
1245 |
+
msgstr "Huidige shopvaluta %s niet ondersteund door Mollie. Lees meer over %sondersteunde valuta's en betaalmethodes.%s "
|
1246 |
+
|
1247 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1248 |
+
#: src/Mollie/WC/Payment/Object.php:677
|
1249 |
+
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
1250 |
+
msgstr "Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de bestellingsstatus is niet bijgewerkt."
|
1251 |
+
|
1252 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1329
|
1253 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1338
|
1254 |
+
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
1255 |
+
msgstr "Uw betaling is niet gelukt. Vervolledig uw bestelling met een andere betaalmethode."
|
1256 |
+
|
1257 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1258 |
+
#: src/Mollie/WC/Payment/Object.php:603
|
1259 |
+
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
1260 |
+
msgstr "%s vernieuwing van betaling mislukt via Mollie (%s). U moet de betaling handmatig controleren en productvoorraden aanpassen als u deze gebruikt."
|
1261 |
+
|
1262 |
+
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
1263 |
+
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
1264 |
+
msgid "Bancontact"
|
1265 |
+
msgstr "Bancontact"
|
1266 |
+
|
1267 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1268 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1617
|
1269 |
+
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."
|
1270 |
+
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."
|
1271 |
+
|
1272 |
+
#: src/Mollie/WC/Gateway/Abstract.php:589
|
1273 |
+
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
1274 |
+
msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats een volledig nieuwe bestelling om uw abonnement te wijzigen."
|
1275 |
+
|
1276 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1277 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1177
|
1278 |
+
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
1279 |
+
msgstr "%s betaling teruggevorderd via Mollie (%s). U moet de betaling handmatig controleren (en productvoorraden aanpassen als u dit gebruikt)."
|
1280 |
+
|
1281 |
+
#: src/Mollie/WC/Gateway/Kbc.php:40
|
1282 |
+
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."
|
1283 |
+
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."
|
1284 |
+
|
1285 |
+
#: src/Mollie/WC/Gateway/Kbc.php:34
|
1286 |
+
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."
|
1287 |
+
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."
|
1288 |
+
|
1289 |
+
#: src/Mollie/WC/Gateway/Kbc.php:32
|
1290 |
+
msgid "Show KBC/CBC banks dropdown"
|
1291 |
+
msgstr "Toon KBC/CBC-banken dropdown"
|
1292 |
+
|
1293 |
+
#: src/Mollie/WC/Gateway/Ideal.php:41
|
1294 |
+
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."
|
1295 |
+
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."
|
1296 |
+
|
1297 |
+
#: src/Mollie/WC/Gateway/Ideal.php:35
|
1298 |
+
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."
|
1299 |
+
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."
|
1300 |
+
|
1301 |
+
#: src/Mollie/WC/Gateway/Ideal.php:33
|
1302 |
+
msgid "Show iDEAL banks dropdown"
|
1303 |
+
msgstr "Toon iDEAL-banken dropdown"
|
1304 |
+
|
1305 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:39
|
1306 |
+
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."
|
1307 |
+
msgstr "Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd."
|
1308 |
+
|
1309 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
1310 |
+
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."
|
1311 |
+
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."
|
1312 |
+
|
1313 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
1314 |
+
msgid "Show gift cards dropdown"
|
1315 |
+
msgstr "Toon cadeaubonnen-dropdown"
|
1316 |
+
|
1317 |
+
#: src/Mollie/WC/Gateway/Abstract.php:578
|
1318 |
+
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
1319 |
+
msgstr "Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie."
|
1320 |
+
|
1321 |
+
#: inc/settings/mollie_advanced_settings.php:16
|
1322 |
+
msgid "Cancelled"
|
1323 |
+
msgstr "Geannuleerd"
|
1324 |
+
|
1325 |
+
#: inc/settings/mollie_advanced_settings.php:15
|
1326 |
+
msgid "Pending"
|
1327 |
+
msgstr "In behandeling"
|
1328 |
+
|
1329 |
+
#: inc/settings/mollie_advanced_settings.php:12
|
1330 |
+
msgid "Order status after cancelled payment"
|
1331 |
+
msgstr "Bestelstatus na geannuleerde betaling"
|
1332 |
+
|
1333 |
+
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
1334 |
+
#. placeholder 3: consumer BIC
|
1335 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
1336 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124
|
1337 |
+
#: src/Mollie/WC/Gateway/Sofort.php:64
|
1338 |
+
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
1339 |
+
msgstr "Betaling voltooid met <strong>%s</strong> (IBAN (ten minste 4 cijfers): %s, BIC: %s)"
|
1340 |
+
|
1341 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1653
|
1342 |
+
msgid "Your order has been cancelled."
|
1343 |
+
msgstr "Uw bestelling is geannuleerd."
|
1344 |
+
|
1345 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1626
|
1346 |
+
msgid ", payment pending."
|
1347 |
+
msgstr ", betaling in behandeling."
|
1348 |
+
|
1349 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1590
|
1350 |
+
msgid "Order cancelled"
|
1351 |
+
msgstr "Bestelling geannuleerd"
|
1352 |
+
|
1353 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
1354 |
+
#. status, placeholder 3: payment ID
|
1355 |
+
#: src/Mollie/WC/Gateway/Abstract.php:895
|
1356 |
+
msgid "%s payment %s (%s), not processed."
|
1357 |
+
msgstr "%s betaling %s (%s), niet verwerkt."
|
1358 |
+
|
1359 |
+
#. translators: Default gift card dropdown description, displayed above issuer
|
1360 |
+
#. drop down
|
1361 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:74
|
1362 |
+
msgid "Select your gift card"
|
1363 |
+
msgstr "Selecteer uw cadeaubon"
|
1364 |
+
|
1365 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:58
|
1366 |
+
msgid "Gift cards"
|
1367 |
+
msgstr "Cadeaubonnen"
|
1368 |
+
|
1369 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
1370 |
+
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."
|
1371 |
+
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."
|
1372 |
+
|
1373 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1374 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:165
|
1375 |
+
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
1376 |
+
msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is."
|
1377 |
+
|
1378 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1379 |
+
#: src/Mollie/WC/Payment/Payment.php:406
|
1380 |
+
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
1381 |
+
msgstr "%s betaling verlopen (%s) maar niet geannuleerd door een andere betaling die nog in behandeling is (%s)."
|
1382 |
+
|
1383 |
+
#: src/subscriptions_status_check_functions.php:186
|
1384 |
+
msgid "There are still some subscriptions left, use the tool again!"
|
1385 |
+
msgstr "Er zijn nog enkele abonnementen over, gebruik de tool opnieuw!"
|
1386 |
+
|
1387 |
+
#: src/subscriptions_status_check_functions.php:184
|
1388 |
+
msgid "No more subscriptions left to process!"
|
1389 |
+
msgstr "Geen abonnementen over om te verwerken!"
|
1390 |
+
|
1391 |
+
#: src/subscriptions_status_check_functions.php:171
|
1392 |
+
msgid "No subscriptions updated in this batch."
|
1393 |
+
msgstr "Geen abonnementen geüpdatet in deze batch."
|
1394 |
+
|
1395 |
+
#: src/subscriptions_status_check_functions.php:147
|
1396 |
+
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
1397 |
+
msgstr "Abonnement niet geüpdatet omdat er geen geldig mandaat was bij Mollie. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
1398 |
+
|
1399 |
+
#: src/subscriptions_status_check_functions.php:133
|
1400 |
+
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
1401 |
+
msgstr "Abonnement geüpdatet naar 'Geautomatiseerde vernieuwing' via Mollie, status ingesteld op 'Actief'. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
1402 |
+
|
1403 |
+
#: src/subscriptions_status_check_functions.php:36
|
1404 |
+
msgid "Check subscriptions status"
|
1405 |
+
msgstr "Controleer abonnementenstatus"
|
1406 |
+
|
1407 |
+
#: src/subscriptions_status_check_functions.php:35
|
1408 |
+
msgid "Mollie Subscriptions Status"
|
1409 |
+
msgstr "Mollie-abonnementenstatus"
|
1410 |
+
|
1411 |
+
#: src/subscriptions_status_check_functions.php:30
|
1412 |
+
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
1413 |
+
msgstr "Controles op abonnementen die verkeerd zijn ingesteld op 'Handmatige vernieuwing'. Lees eerst de "
|
1414 |
+
|
1415 |
+
#: inc/settings/mollie_advanced_settings.php:65
|
1416 |
+
msgid "Store customer details at Mollie"
|
1417 |
+
msgstr "Klantgegevens opslaan bij Mollie"
|
1418 |
+
|
1419 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1420 |
+
#: src/Mollie/WC/Plugin.php:130
|
1421 |
+
msgid "%s payment failed (%s)."
|
1422 |
+
msgstr "%s betaling mislukt (%s)."
|
1423 |
+
|
1424 |
+
#: src/Mollie/WC/Gateway/Kbc.php:59
|
1425 |
+
msgid "KBC/CBC Payment Button"
|
1426 |
+
msgstr "KBC/CBC betaalknop"
|
1427 |
+
|
1428 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:37 src/Mollie/WC/Gateway/Ideal.php:39
|
1429 |
+
#: src/Mollie/WC/Gateway/Kbc.php:38
|
1430 |
+
msgid "Issuers empty option"
|
1431 |
+
msgstr "Optie uitgevers leeg"
|
1432 |
+
|
1433 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:58
|
1434 |
+
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."
|
1435 |
+
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."
|
1436 |
+
|
1437 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:57
|
1438 |
+
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
1439 |
+
msgstr "Sla Mollie-betaalscherm over wanneer bankoverschrijving is geselecteerd"
|
1440 |
+
|
1441 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:56
|
1442 |
+
msgid "Skip Mollie payment screen"
|
1443 |
+
msgstr "Mollie-betaalscherm overslaan"
|
1444 |
+
|
1445 |
+
#. Description of the plugin
|
1446 |
+
msgid "Accept payments in WooCommerce with the official Mollie plugin"
|
1447 |
+
msgstr "Accepteer betalingen in WooCommerce met de officiële Mollie-plugin"
|
1448 |
+
|
1449 |
+
#. Plugin URI of the plugin
|
1450 |
+
#. Author URI of the plugin
|
1451 |
+
msgid "https://www.mollie.com"
|
1452 |
+
msgstr "https://www.mollie.com"
|
1453 |
+
|
1454 |
+
#. Author of the plugin
|
1455 |
+
msgid "Mollie"
|
1456 |
+
msgstr "Mollie"
|
1457 |
+
|
1458 |
+
#. Plugin Name of the plugin
|
1459 |
+
msgid "Mollie Payments for WooCommerce"
|
1460 |
+
msgstr "Mollie-betalingen voor WooCommerce"
|
1461 |
+
|
1462 |
+
#: src/Mollie/WC/Plugin.php:1320
|
1463 |
+
msgid "Logs"
|
1464 |
+
msgstr "Logs"
|
1465 |
+
|
1466 |
+
#: src/Mollie/WC/Helper/Status.php:123
|
1467 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
1468 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL geactiveerd is. Activeer de extensie 'curl' in uw PHP-configuratie."
|
1469 |
+
|
1470 |
+
#: src/Mollie/WC/Helper/Status.php:116
|
1471 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
1472 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON geactiveerd is. Activeer de extensie 'json' in uw PHP-configuratie."
|
1473 |
+
|
1474 |
+
#: src/Mollie/WC/Helper/Status.php:80
|
1475 |
+
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
1476 |
+
msgstr "Mollie API client niet geïnstalleerd. Controleer of de plugin correct is geïnstalleerd."
|
1477 |
+
|
1478 |
+
#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce
|
1479 |
+
#. version, placeholder 3: used WooCommerce version
|
1480 |
+
#: src/Mollie/WC/Helper/Status.php:67
|
1481 |
+
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
1482 |
+
msgstr "De %s plugin vereist ten minste WooCommerce versie %s, u gebruikt versie %s. Update uw WooCommerce plugin."
|
1483 |
+
|
1484 |
+
#: src/Mollie/WC/Helper/Settings.php:698
|
1485 |
+
msgid "Debug Log"
|
1486 |
+
msgstr "Debug-log"
|
1487 |
+
|
1488 |
+
#: inc/settings/mollie_advanced_settings.php:38
|
1489 |
+
msgid "French (Belgium)"
|
1490 |
+
msgstr "Frans (België)"
|
1491 |
+
|
1492 |
+
#: inc/settings/mollie_advanced_settings.php:37
|
1493 |
+
msgid "French"
|
1494 |
+
msgstr "Frans"
|
1495 |
+
|
1496 |
+
#: inc/settings/mollie_advanced_settings.php:42
|
1497 |
+
msgid "Spanish"
|
1498 |
+
msgstr "Spaans"
|
1499 |
+
|
1500 |
+
#: inc/settings/mollie_advanced_settings.php:39
|
1501 |
+
msgid "German"
|
1502 |
+
msgstr "Duits"
|
1503 |
+
|
1504 |
+
#: inc/settings/mollie_advanced_settings.php:34
|
1505 |
+
msgid "English"
|
1506 |
+
msgstr "Engels"
|
1507 |
+
|
1508 |
+
#: inc/settings/mollie_advanced_settings.php:36
|
1509 |
+
msgid "Flemish (Belgium)"
|
1510 |
+
msgstr "Vlaams (België)"
|
1511 |
+
|
1512 |
+
#: inc/settings/mollie_advanced_settings.php:35
|
1513 |
+
msgid "Dutch"
|
1514 |
+
msgstr "Nederlands"
|
1515 |
+
|
1516 |
+
#: inc/settings/mollie_advanced_settings.php:30
|
1517 |
+
msgid "Detect using browser language"
|
1518 |
+
msgstr "Detecteren met gebruik van browsertaal"
|
1519 |
+
|
1520 |
+
#: inc/settings/mollie_advanced_settings.php:23
|
1521 |
+
msgid "Payment screen language"
|
1522 |
+
msgstr "Taal van betaalscherm"
|
1523 |
+
|
1524 |
+
#: src/Mollie/WC/Helper/Settings.php:694
|
1525 |
+
msgid "Test API key should start with test_"
|
1526 |
+
msgstr "Test API-sleutel moet beginnen met test_"
|
1527 |
+
|
1528 |
+
#: src/Mollie/WC/Helper/Settings.php:683
|
1529 |
+
msgid "Test API key"
|
1530 |
+
msgstr "Test API-sleutel"
|
1531 |
+
|
1532 |
+
#: src/Mollie/WC/Helper/Settings.php:679
|
1533 |
+
msgid "Enable test mode if you want to test the plugin without using real payments."
|
1534 |
+
msgstr "Activeer de testmodus als u de plugin wilt testen zonder echte betalingen te gebruiken."
|
1535 |
+
|
1536 |
+
#: src/Mollie/WC/Helper/Settings.php:676
|
1537 |
+
msgid "Enable test mode"
|
1538 |
+
msgstr "Activeer de testmodus"
|
1539 |
+
|
1540 |
+
#: src/Mollie/WC/Helper/Settings.php:672
|
1541 |
+
msgid "Live API key should start with live_"
|
1542 |
+
msgstr "Live API-sleutel moet beginnen met live_"
|
1543 |
+
|
1544 |
+
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
1545 |
+
#. %s's Will be replaced by a link to the Mollie profile
|
1546 |
+
#: src/Mollie/WC/Helper/Settings.php:666 src/Mollie/WC/Helper/Settings.php:688
|
1547 |
+
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
1548 |
+
msgstr "De API-sleutel wordt gebruikt om verbinding te maken met Mollie. U vindt uw <strong>%s</strong> API-sleutel in uw %sMollie-profiel%s"
|
1549 |
+
|
1550 |
+
#: src/Mollie/WC/Helper/Settings.php:661
|
1551 |
+
msgid "Live API key"
|
1552 |
+
msgstr "Live API-sleutel"
|
1553 |
+
|
1554 |
+
#: inc/settings/mollie_advanced_settings.php:8
|
1555 |
+
#: src/Mollie/WC/Helper/Settings.php:657
|
1556 |
+
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
1557 |
+
msgstr "De volgende opties zijn vereist om de plugin te gebruiken en worden door alle Mollie-betaalmethodes gebruikt"
|
1558 |
+
|
1559 |
+
#: src/Mollie/WC/Plugin.php:1314
|
1560 |
+
msgid "Mollie settings"
|
1561 |
+
msgstr "Mollie-instellingen"
|
1562 |
+
|
1563 |
+
#: src/Mollie/WC/Helper/Settings.php:641
|
1564 |
+
msgid "Log files are saved to <code>%s</code>"
|
1565 |
+
msgstr "Logbestanden worden opgeslagen in <code>%s</code>"
|
1566 |
+
|
1567 |
+
#: src/Mollie/WC/Helper/Settings.php:635
|
1568 |
+
msgid "Log plugin events."
|
1569 |
+
msgstr "Log plugin-gebeurtenissen."
|
1570 |
+
|
1571 |
+
#: src/Mollie/WC/Helper/Settings.php:582
|
1572 |
+
msgid "Edit"
|
1573 |
+
msgstr "Bewerken"
|
1574 |
+
|
1575 |
+
#: src/Mollie/WC/Helper/Settings.php:559
|
1576 |
+
msgid "Refresh"
|
1577 |
+
msgstr "Vernieuwen"
|
1578 |
+
|
1579 |
+
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
1580 |
+
#. profile
|
1581 |
+
#: src/Mollie/WC/Helper/Settings.php:550
|
1582 |
+
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
1583 |
+
msgstr "De volgende betaalmethodes zijn geactiveerd in uw %sMollie-profiel%s:"
|
1584 |
+
|
1585 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1586 |
+
msgid "Gateway disabled"
|
1587 |
+
msgstr "Gateway gedeactiveerd"
|
1588 |
+
|
1589 |
+
#: inc/settings/mollie_advanced_settings.php:72
|
1590 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1591 |
+
msgid "Enabled"
|
1592 |
+
msgstr "Geactiveerd"
|
1593 |
+
|
1594 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1595 |
+
msgid "Gateway enabled"
|
1596 |
+
msgstr "Gateway geactiveerd"
|
1597 |
+
|
1598 |
+
#: src/Mollie/WC/Helper/Settings.php:495
|
1599 |
+
msgid "Connected"
|
1600 |
+
msgstr "Verbonden"
|
1601 |
+
|
1602 |
+
#: src/Mollie/WC/Helper/Settings.php:494
|
1603 |
+
msgid "Mollie status:"
|
1604 |
+
msgstr "Mollie-status:"
|
1605 |
+
|
1606 |
+
#: src/Mollie/WC/Helper/Settings.php:481
|
1607 |
+
msgid "Error"
|
1608 |
+
msgstr "Fout"
|
1609 |
+
|
1610 |
+
#: src/Mollie/WC/Helper/Data.php:477
|
1611 |
+
msgid "Item #%s stock incremented from %s to %s."
|
1612 |
+
msgstr "Item #%s voorraad verhoogd van %s naar %s."
|
1613 |
+
|
1614 |
+
#: src/Mollie/WC/Gateway/Sofort.php:33
|
1615 |
+
msgid "SOFORT Banking"
|
1616 |
+
msgstr "SOFORT Banking"
|
1617 |
+
|
1618 |
+
#: src/Mollie/WC/Gateway/Paysafecard.php:20
|
1619 |
+
msgid "paysafecard"
|
1620 |
+
msgstr "paysafecard"
|
1621 |
+
|
1622 |
+
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1623 |
+
#. email, placeholder 3: PayPal transaction ID
|
1624 |
+
#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695
|
1625 |
+
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1626 |
+
msgstr "Betaling voltooid met <strong>%s</strong> - %s (PayPal transactie-ID: %s)"
|
1627 |
+
|
1628 |
+
#: src/Mollie/WC/Gateway/PayPal.php:43
|
1629 |
+
msgid "PayPal"
|
1630 |
+
msgstr "PayPal"
|
1631 |
+
|
1632 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
1633 |
+
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1634 |
+
#. drop down
|
1635 |
+
#: src/Mollie/WC/Gateway/Ideal.php:76 src/Mollie/WC/Gateway/Kbc.php:75
|
1636 |
+
msgid "Select your bank"
|
1637 |
+
msgstr "Selecteer uw bank"
|
1638 |
+
|
1639 |
+
#: src/Mollie/WC/Gateway/Ideal.php:60
|
1640 |
+
msgid "iDEAL"
|
1641 |
+
msgstr "iDEAL"
|
1642 |
+
|
1643 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:42
|
1644 |
+
msgid "SEPA Direct Debit"
|
1645 |
+
msgstr "SEPA-incasso"
|
1646 |
+
|
1647 |
+
#. translators: Placeholder 1: card holder
|
1648 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:136
|
1649 |
+
msgid "Payment completed by <strong>%s</strong>"
|
1650 |
+
msgstr "Betaling voltooid met <strong>%s</strong>."
|
1651 |
+
|
1652 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:84
|
1653 |
+
msgid "Credit card"
|
1654 |
+
msgstr "Creditcard"
|
1655 |
+
|
1656 |
+
#: src/Mollie/WC/Gateway/Belfius.php:33
|
1657 |
+
msgid "Belfius Direct Net"
|
1658 |
+
msgstr "Belfius Direct Net"
|
1659 |
+
|
1660 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:235
|
1661 |
+
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1662 |
+
msgstr "De betaling vervalt op <strong>%s</strong>. Zorg ervoor dat u vóór deze datum het totale bedrag overmaakt."
|
1663 |
+
|
1664 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:228
|
1665 |
+
msgid "The payment will expire on <strong>%s</strong>."
|
1666 |
+
msgstr "De betaling vervalt op <strong>%s</strong>."
|
1667 |
+
|
1668 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1669 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1670 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:214
|
1671 |
+
msgid "Please provide the payment reference <strong>%s</strong>"
|
1672 |
+
msgstr "Vermeld de betalingsreferentie <strong>%s</strong>"
|
1673 |
+
|
1674 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1675 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1676 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:209
|
1677 |
+
msgid "Payment reference: %s"
|
1678 |
+
msgstr "Betalingsreferentie: %s."
|
1679 |
+
|
1680 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:204
|
1681 |
+
msgid "BIC: %s"
|
1682 |
+
msgstr "BIC: %s"
|
1683 |
+
|
1684 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:203
|
1685 |
+
msgid "IBAN: <strong>%s</strong>"
|
1686 |
+
msgstr "IBAN: <strong>%s</strong>"
|
1687 |
+
|
1688 |
+
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1689 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:202
|
1690 |
+
msgid "Beneficiary: %s"
|
1691 |
+
msgstr "Begunstigde: %s"
|
1692 |
+
|
1693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
1694 |
+
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1695 |
+
msgstr "Voltooi uw betaling door het totale bedrag over te maken naar de volgende bankrekening:"
|
1696 |
+
|
1697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:138
|
1698 |
+
msgid "Bank Transfer"
|
1699 |
+
msgstr "Bankoverdracht"
|
1700 |
+
|
1701 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1702 |
+
msgid "Disabled"
|
1703 |
+
msgstr "Uitgeschakeld"
|
1704 |
+
|
1705 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
1706 |
+
msgid "Number of DAYS after the payment will expire. Default <code>%d</code> days"
|
1707 |
+
msgstr "Aantal DAGEN nadat de betaling vervalt. Standaard <code>%d</code> dagen."
|
1708 |
+
|
1709 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:45
|
1710 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
1711 |
+
msgid "Expiry date"
|
1712 |
+
msgstr "Vervaldatum"
|
1713 |
+
|
1714 |
+
#. translators: Placeholder 1: payment method
|
1715 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1542
|
1716 |
+
msgid "Payment completed with <strong>%s</strong>"
|
1717 |
+
msgstr "Betaling voltooid met <strong>%s</strong>"
|
1718 |
+
|
1719 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1535
|
1720 |
+
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."
|
1721 |
+
msgstr "We hebben geen definitieve betalingsstatus ontvangen. U ontvangt een e-mail zodra we een bevestiging van de bank/handelaar ontvangen."
|
1722 |
+
|
1723 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1530
|
1724 |
+
msgid "We have not received a definite payment status."
|
1725 |
+
msgstr "We hebben geen definitieve betalingsstatus ontvangen."
|
1726 |
+
|
1727 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1315
|
1728 |
+
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1729 |
+
msgstr "U hebt uw betaling geannuleerd. Vervolledig uw bestelling met een andere betaalmethode."
|
1730 |
+
|
1731 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1732 |
+
#: src/Mollie/WC/Payment/Payment.php:429
|
1733 |
+
msgid "%s payment expired (%s)."
|
1734 |
+
msgstr "%s betaling verlopen (%s)."
|
1735 |
+
|
1736 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1737 |
+
#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:249
|
1738 |
+
msgid "Order completed using %s payment (%s)."
|
1739 |
+
msgstr "Bestelling voltooid met gebruik van %s betaling (%s)."
|
1740 |
+
|
1741 |
+
#. translators: Placeholder 1: Payment method title
|
1742 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:242
|
1743 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:298
|
1744 |
+
#: src/Mollie/WC/Gateway/Abstract.php:686
|
1745 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78
|
1746 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:122
|
1747 |
+
msgid "Could not create %s payment."
|
1748 |
+
msgstr "Kon geen %s betaling aanmaken."
|
1749 |
+
|
1750 |
+
#: src/Mollie/WC/Gateway/Abstract.php:671
|
1751 |
+
#: src/Mollie/WC/Gateway/Abstract.php:898
|
1752 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1753 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1244
|
1754 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1619
|
1755 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2142
|
1756 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1757 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139
|
1758 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:422
|
1759 |
+
#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642
|
1760 |
+
#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316
|
1761 |
+
#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446
|
1762 |
+
#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936
|
1763 |
+
#: src/Mollie/WC/Payment/Payment.php:251 src/Mollie/WC/Payment/Payment.php:338
|
1764 |
+
#: src/Mollie/WC/Payment/Payment.php:408 src/Mollie/WC/Payment/Payment.php:431
|
1765 |
+
msgid "test mode"
|
1766 |
+
msgstr "testmodus"
|
1767 |
+
|
1768 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1769 |
+
#: src/Mollie/WC/Gateway/Abstract.php:669
|
1770 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1771 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:420
|
1772 |
+
msgid "%s payment started (%s)."
|
1773 |
+
msgstr "%s betaling gestart (%s)."
|
1774 |
+
|
1775 |
+
#: src/Mollie/WC/Gateway/Abstract.php:659
|
1776 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1777 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:413
|
1778 |
+
msgid "Awaiting payment confirmation."
|
1779 |
+
msgstr "In afwachting van betalingsbevestiging."
|
1780 |
+
|
1781 |
+
#: src/Mollie/WC/Gateway/Abstract.php:526
|
1782 |
+
msgid "Could not load order %s"
|
1783 |
+
msgstr "Kon bestelling niet laden %s"
|
1784 |
+
|
1785 |
+
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1786 |
+
#. be replaced by a link to the Mollie profile
|
1787 |
+
#: src/Mollie/WC/Gateway/Abstract.php:352
|
1788 |
+
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1789 |
+
msgstr "%s niet geactiveerd in uw Mollie-profiel. U kunt het activeren door uw %sMollie-profiel%s te bewerken."
|
1790 |
+
|
1791 |
+
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1792 |
+
#. setting page
|
1793 |
+
#: src/Mollie/WC/Gateway/Abstract.php:340
|
1794 |
+
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1795 |
+
msgstr "Geen API-sleutel geleverd. Stel eerst %suw Mollie API-sleutel%s in."
|
1796 |
+
|
1797 |
+
#: src/Mollie/WC/Gateway/Abstract.php:221
|
1798 |
+
msgid "Gateway Disabled"
|
1799 |
+
msgstr "Gateway gedeactiveerd"
|
1800 |
+
|
1801 |
+
#: src/Mollie/WC/Gateway/Abstract.php:338 src/Mollie/WC/Helper/Settings.php:545
|
1802 |
+
msgid "Test mode enabled."
|
1803 |
+
msgstr "Testmodus geactiveerd."
|
1804 |
+
|
1805 |
+
#: src/Mollie/WC/Helper/Settings.php:295
|
1806 |
+
msgid "Hold Stock (minutes)"
|
1807 |
+
msgstr "Houd voorraad aan (minuten)"
|
1808 |
+
|
1809 |
+
#: src/Mollie/WC/Helper/Settings.php:286
|
1810 |
+
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."
|
1811 |
+
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."
|
1812 |
+
|
1813 |
+
#: inc/settings/mollie_advanced_settings.php:29
|
1814 |
+
#: inc/settings/mollie_advanced_settings.php:90
|
1815 |
+
#: src/Mollie/WC/Helper/Settings.php:275
|
1816 |
+
msgid "default"
|
1817 |
+
msgstr "standaard"
|
1818 |
+
|
1819 |
+
#: src/Mollie/WC/Helper/Settings.php:267
|
1820 |
+
msgid "Initial order status"
|
1821 |
+
msgstr "Initiële bestelstatus"
|
1822 |
+
|
1823 |
+
#: inc/settings/mollie_applepay_settings.php:63
|
1824 |
+
#: src/Mollie/WC/Helper/Settings.php:84
|
1825 |
+
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1826 |
+
msgstr "Beschrijving van de betaalmethode die de klant bij uw betaalpagina zal zien. Standaard <code>%s</code>"
|
1827 |
+
|
1828 |
+
#: inc/settings/mollie_applepay_settings.php:60
|
1829 |
+
#: src/Mollie/WC/Helper/Settings.php:81
|
1830 |
+
msgid "Description"
|
1831 |
+
msgstr "Beschrijving"
|
1832 |
+
|
1833 |
+
#: src/Mollie/WC/Helper/Settings.php:99
|
1834 |
+
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1835 |
+
msgstr "Toon logo op de betaalpagina. Standaard <code>geactiveerd</code>"
|
1836 |
+
|
1837 |
+
#: inc/settings/mollie_applepay_settings.php:45
|
1838 |
+
#: inc/settings/mollie_applepay_settings.php:48
|
1839 |
+
#: src/Mollie/WC/Helper/Settings.php:94
|
1840 |
+
msgid "Display logo"
|
1841 |
+
msgstr "Toon logo"
|
1842 |
+
|
1843 |
+
#: inc/settings/mollie_applepay_settings.php:32
|
1844 |
+
#: src/Mollie/WC/Helper/Settings.php:71
|
1845 |
+
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1846 |
+
msgstr "Dit controleert de titel die de gebruiker ziet tijdens het betalen. Standaard <code>%s</code>"
|
1847 |
+
|
1848 |
+
#: inc/settings/mollie_applepay_settings.php:29
|
1849 |
+
#: src/Mollie/WC/Helper/Settings.php:68
|
1850 |
+
msgid "Title"
|
1851 |
+
msgstr "Titel"
|
1852 |
+
|
1853 |
+
#. translators: Placeholder 1: enabled or disabled
|
1854 |
+
#: inc/settings/mollie_applepay_settings.php:21
|
1855 |
+
#: src/Mollie/WC/Helper/Settings.php:54
|
1856 |
+
msgid "Enable %s"
|
1857 |
+
msgstr "Activeren %s"
|
1858 |
+
|
1859 |
+
#: inc/settings/mollie_applepay_settings.php:19
|
1860 |
+
#: src/Mollie/WC/Helper/Settings.php:48
|
1861 |
+
msgid "Enable/Disable"
|
1862 |
+
msgstr "Activeren/Deactiveren"
|
languages/mollie-payments-for-woocommerce-nl_NL.mo
CHANGED
Binary file
|
languages/mollie-payments-for-woocommerce-nl_NL.po
CHANGED
@@ -2,35 +2,694 @@
|
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2021-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator:
|
11 |
"Language: nl\n"
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
-
"POT-Creation-Date: \n"
|
14 |
-
"Last-Translator: \n"
|
15 |
-
"Language-Team: \n"
|
16 |
|
17 |
-
#: src/Mollie/WC/Plugin.php:
|
18 |
-
msgid "
|
19 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
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."
|
23 |
-
msgstr "
|
24 |
|
25 |
-
#: src/Mollie/WC/Plugin.php:
|
26 |
msgid "Products voucher category"
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#: src/Mollie/WC/Plugin.php:
|
30 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
31 |
-
msgstr "%1$sMollie
|
32 |
|
33 |
-
#: src/Mollie/WC/Plugin.php:
|
|
|
34 |
msgid "Mollie Settings"
|
35 |
msgstr "Mollie-instellingen"
|
36 |
|
@@ -46,53 +705,47 @@ msgstr "Waardebon"
|
|
46 |
|
47 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
48 |
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"
|
49 |
-
msgstr "
|
50 |
|
51 |
-
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:
|
52 |
msgid "Select the default products category"
|
53 |
-
msgstr "
|
54 |
|
55 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
56 |
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"
|
57 |
-
msgstr "
|
58 |
|
59 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
60 |
msgid "Enable expiry date for payments"
|
61 |
-
msgstr "
|
62 |
|
63 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
64 |
msgid "Activate expiry date setting"
|
65 |
-
msgstr "
|
66 |
|
67 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
68 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
69 |
msgid " Remainder: %1$s %2$s %3$s."
|
70 |
-
msgstr "
|
71 |
|
72 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
73 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
74 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
75 |
-
msgstr "Mollie -
|
76 |
-
|
77 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:7
|
78 |
-
msgid "Enable the Apple Pay direct buy button"
|
79 |
-
msgstr "Activeer de Apple Pay direct kopen betaalknop"
|
80 |
-
|
81 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
82 |
-
msgid "Enable Apple Pay Button"
|
83 |
-
msgstr "Activeer de Apple Pay betaalknop"
|
84 |
|
85 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
86 |
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"
|
87 |
-
msgstr "%1$sApple Pay
|
88 |
|
89 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
90 |
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"
|
91 |
-
msgstr "%1$sServer voldoet niet aan Apple vereisten%2$s
|
92 |
|
93 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
94 |
msgid "Show Mastercard Icon"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: inc/settings/mollie_components.php:94
|
98 |
msgctxt "Mollie Components Settings"
|
@@ -107,75 +760,71 @@ msgstr "Lijn tekst uit"
|
|
107 |
#: inc/settings/mollie_components.php:72
|
108 |
msgctxt "Mollie Components Settings"
|
109 |
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
110 |
-
msgstr "Voeg vulling toe aan de componenten.
|
111 |
|
112 |
#: inc/settings/mollie_components.php:35
|
113 |
msgctxt "Mollie Components Settings"
|
114 |
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
115 |
-
msgstr "Bepaalt de lettergrootte van het component.
|
116 |
|
117 |
#: inc/settings/mollie_creditcard_icons_selector.php:51
|
118 |
msgid "Show VPay Icon"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: inc/settings/mollie_creditcard_icons_selector.php:46
|
122 |
msgid "Show Visa Icon"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: inc/settings/mollie_creditcard_icons_selector.php:36
|
126 |
msgid "Show Maestro Icon"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: inc/settings/mollie_creditcard_icons_selector.php:31
|
130 |
msgid "Show Carte Bancaire Icon"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: inc/settings/mollie_creditcard_icons_selector.php:26
|
134 |
msgid "Show Carta Si Icon"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: inc/settings/mollie_creditcard_icons_selector.php:21
|
138 |
msgid "Show American Express Icon"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
142 |
msgid "Show customized creditcard icons on checkout page"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
146 |
msgid "Enable Icons Selector"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
150 |
msgid "Customize Icons"
|
151 |
msgstr "Pas pictogrammen aan"
|
152 |
|
153 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
154 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
155 |
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)."
|
156 |
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)."
|
157 |
|
158 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
159 |
msgid "Failed switching subscriptions, no valid mandate."
|
160 |
-
msgstr "
|
161 |
-
|
162 |
-
#: inc/settings/mollie_components_enabler.php:7
|
163 |
-
msgid "Enable the Mollie Components for this Gateway"
|
164 |
-
msgstr "Activeer de Mollie-componenten voor deze gateway"
|
165 |
|
166 |
#: inc/settings/mollie_components_enabler.php:6
|
167 |
msgid "Enable Mollie Components"
|
168 |
-
msgstr "
|
169 |
|
170 |
#: inc/settings/mollie_components.php:157
|
171 |
msgctxt "Mollie Components Settings"
|
172 |
msgid "Background Color for invalid input."
|
173 |
-
msgstr "Achtergrondkleur voor ongeldige invoer"
|
174 |
|
175 |
#: inc/settings/mollie_components.php:146
|
176 |
msgctxt "Mollie Components Settings"
|
177 |
msgid "Text Color for invalid input."
|
178 |
-
msgstr "Tekstkleur voor ongeldige invoer"
|
179 |
|
180 |
#: inc/settings/mollie_components.php:136
|
181 |
msgctxt "Mollie Components Settings"
|
@@ -215,12 +864,12 @@ msgstr "Geen"
|
|
215 |
#: inc/settings/mollie_components.php:88
|
216 |
msgctxt "Mollie Components Settings"
|
217 |
msgid "Justify"
|
218 |
-
msgstr "
|
219 |
|
220 |
#: inc/settings/mollie_components.php:87
|
221 |
msgctxt "Mollie Components Settings"
|
222 |
msgid "Center"
|
223 |
-
msgstr "
|
224 |
|
225 |
#: inc/settings/mollie_components.php:86
|
226 |
msgctxt "Mollie Components Settings"
|
@@ -292,41 +941,43 @@ msgctxt "Mollie Components Settings"
|
|
292 |
msgid "Base Styles"
|
293 |
msgstr "Basisstijlen"
|
294 |
|
295 |
-
#: src/Mollie/WC/Plugin.php:
|
296 |
msgid "An unknown error occurred, please check the card fields."
|
297 |
msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden."
|
298 |
|
299 |
-
#: src/Mollie/WC/Plugin.php:
|
300 |
msgid "Verification Code"
|
301 |
msgstr "Verificatiecode"
|
302 |
|
303 |
-
#: src/Mollie/WC/Plugin.php:
|
304 |
msgid "Expiry Date"
|
305 |
msgstr "Vervaldatum"
|
306 |
|
307 |
-
#: src/Mollie/WC/Plugin.php:
|
308 |
msgid "Card Number"
|
309 |
msgstr "Kaartnummer"
|
310 |
|
311 |
-
#: src/Mollie/WC/Plugin.php:
|
312 |
msgid "Card Holder"
|
313 |
msgstr "Kaarthouder"
|
314 |
|
|
|
315 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
|
|
316 |
msgid "Mollie Components"
|
317 |
msgstr "Mollie-componenten"
|
318 |
|
319 |
-
#: src/Mollie/WC/Plugin.php:
|
320 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
321 |
msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie."
|
322 |
|
323 |
-
#: src/Mollie/WC/Plugin.php:
|
324 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
325 |
msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie."
|
326 |
|
327 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
328 |
msgid "Empty WooCommerce order items or mollie order lines."
|
329 |
-
msgstr "Lege WooCommerce bestelartikelen of Mollie-
|
330 |
|
331 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
332 |
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
@@ -336,12 +987,12 @@ msgstr "Onmogelijk om de bestelartikel-id van het afstandsartikel terug te halen
|
|
336 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
337 |
msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld."
|
338 |
|
339 |
-
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:
|
340 |
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."
|
341 |
-
msgstr "Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag of hoeveelheid van ten minste één bestelregel.
|
342 |
|
343 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
344 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:
|
345 |
msgid "Order completed using %1$s payment (%2$s)."
|
346 |
msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)."
|
347 |
|
@@ -374,43 +1025,38 @@ msgstr "Betaling voltooid met <strong>%s</strong>."
|
|
374 |
|
375 |
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
376 |
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
377 |
-
msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail van de klant
|
378 |
|
379 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
380 |
msgid "Przelewy24"
|
381 |
msgstr "Przelewy24 "
|
382 |
|
383 |
-
#:
|
384 |
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."
|
385 |
-
msgstr "Mollie-betalingen voor WooCommerce
|
386 |
|
387 |
-
#: src/Mollie/WC/Payment/Order.php:
|
388 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
389 |
msgstr "Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s. "
|
390 |
|
391 |
-
#: src/Mollie/WC/Payment/Order.php:
|
392 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
393 |
msgstr "%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s. "
|
394 |
|
395 |
-
#: src/Mollie/WC/Payment/Order.php:
|
396 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
397 |
msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie. "
|
398 |
|
399 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
400 |
-
#: src/Mollie/WC/Payment/Order.php:
|
401 |
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!"
|
402 |
-
msgstr "Bestelling voltooid bij Mollie voor %s bestelling (%s). Ten minste één
|
403 |
|
404 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
405 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
406 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
407 |
-
msgstr "%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet,
|
408 |
|
409 |
-
#: src/Mollie/WC/Helper/Settings.php:623
|
410 |
-
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
411 |
-
msgstr "Om Klarna-betalingen via Mollie te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn. Controleer dit."
|
412 |
-
|
413 |
-
#: src/Mollie/WC/Payment/Payment.php:39
|
414 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
415 |
msgid "Order"
|
416 |
msgstr "Bestelling"
|
@@ -421,53 +1067,49 @@ msgid "%s payment (%s) cancelled ."
|
|
421 |
msgstr "%s betaling (%s) geannuleerd."
|
422 |
|
423 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
424 |
-
#: src/Mollie/WC/Payment/Order.php:
|
425 |
msgid "%s order (%s) expired ."
|
426 |
msgstr "%s bestelling (%s) verlopen."
|
427 |
|
428 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
429 |
-
#: src/Mollie/WC/Payment/Order.php:
|
430 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
431 |
-
msgstr "%s bestelling verlopen (%s) maar niet geannuleerd door een andere
|
432 |
|
433 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
434 |
-
#: src/Mollie/WC/Payment/Order.php:
|
435 |
msgid "%s order (%s) cancelled ."
|
436 |
msgstr "%s bestelling (%s) geannuleerd."
|
437 |
|
438 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
439 |
-
#: src/Mollie/WC/Payment/Order.php:
|
440 |
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."
|
441 |
-
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.
|
442 |
-
|
443 |
-
#: src/Mollie/WC/Helper/Settings.php:648
|
444 |
-
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
445 |
-
msgstr "Om Klarna-betalingen via Mollie te accepteren, moet je WooCommerce 3.0 of hoger gebruiken. Nu gebruik je versie %s. "
|
446 |
|
447 |
-
#:
|
448 |
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."
|
449 |
-
msgstr "Het verzenden van een taal (of locatie) is noodzakelijk. 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
|
450 |
|
451 |
-
#:
|
452 |
msgid "Automatically send WordPress language"
|
453 |
msgstr "Automatisch verzenden van WordPress-taal"
|
454 |
|
455 |
-
#:
|
456 |
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."
|
457 |
-
msgstr "Status voor bestellingen wanneer een betaling (niet een Mollie-
|
458 |
|
459 |
-
#: src/Mollie/WC/Helper/OrderLines.php:
|
460 |
msgid "Shipping"
|
461 |
msgstr "Verzending"
|
462 |
|
463 |
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
464 |
msgid "Klarna Slice it"
|
465 |
-
msgstr "
|
466 |
|
467 |
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
468 |
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
469 |
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
470 |
-
msgstr "Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-afrekenvelden
|
471 |
|
472 |
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
473 |
msgid "Klarna Pay later"
|
@@ -483,77 +1125,77 @@ msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschi
|
|
483 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
484 |
msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, jij hebt PHP %s. Installeer de upgrade en bekijk %sdeze FAQ%s"
|
485 |
|
486 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
487 |
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."
|
488 |
-
msgstr "Je hebt de WooCommerce standaard Direct Bank Transfer (BACS) betalingsgateway
|
489 |
|
490 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
491 |
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."
|
492 |
-
msgstr "Je hebt WooCommerce
|
493 |
|
494 |
-
#:
|
495 |
msgid "Lithuanian"
|
496 |
msgstr "Litouws"
|
497 |
|
498 |
-
#:
|
499 |
msgid "Latvian"
|
500 |
msgstr "Lets"
|
501 |
|
502 |
-
#:
|
503 |
msgid "Polish"
|
504 |
msgstr "Pools"
|
505 |
|
506 |
-
#:
|
507 |
msgid "Hungarian"
|
508 |
msgstr "Hongaars"
|
509 |
|
510 |
-
#:
|
511 |
msgid "Icelandic"
|
512 |
-
msgstr "
|
513 |
|
514 |
-
#:
|
515 |
msgid "Danish"
|
516 |
msgstr "Deens"
|
517 |
|
518 |
-
#:
|
519 |
msgid "Finnish"
|
520 |
msgstr "Fins"
|
521 |
|
522 |
-
#:
|
523 |
msgid "Swedish"
|
524 |
msgstr "Zweeds"
|
525 |
|
526 |
-
#:
|
527 |
msgid "Norwegian"
|
528 |
msgstr "Noors"
|
529 |
|
530 |
-
#:
|
531 |
msgid "Italian"
|
532 |
msgstr "Italiaans"
|
533 |
|
534 |
-
#:
|
535 |
msgid "Portuguese"
|
536 |
msgstr "Portugees"
|
537 |
|
538 |
-
#:
|
539 |
msgid "Catalan"
|
540 |
-
msgstr "
|
541 |
|
542 |
-
#:
|
543 |
msgid "Swiss German"
|
544 |
msgstr "Zwitserduits"
|
545 |
|
546 |
-
#:
|
547 |
msgid "Austrian German"
|
548 |
msgstr "Oostenrijks-Duits"
|
549 |
|
550 |
-
#: src/Mollie/WC/Helper/Api.php:
|
551 |
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."
|
552 |
-
msgstr "Ongeldige API-sleutel(s). Haal deze op
|
553 |
|
554 |
-
#: src/Mollie/WC/Helper/Api.php:
|
555 |
msgid "No API key provided. Please set your Mollie API keys below."
|
556 |
-
msgstr "Geen API-sleutel geleverd.
|
557 |
|
558 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
559 |
msgid "Giropay"
|
@@ -564,68 +1206,58 @@ msgid "EPS"
|
|
564 |
msgstr "EPS"
|
565 |
|
566 |
#. translators: Placeholder 1: Payment method title
|
567 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
568 |
msgid "Could not create %s renewal payment."
|
569 |
-
msgstr "Kon geen %s
|
570 |
|
571 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
572 |
msgid "The customer (%s) does not have a valid mandate."
|
573 |
msgstr "De klant (%s) heeft geen geldig mandaat."
|
574 |
|
575 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
576 |
msgid "The customer (%s) could not be used or found. "
|
577 |
msgstr "De klant (%s) kon niet gebruikt of gevonden worden."
|
578 |
|
579 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
580 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
581 |
#. placeholder 5: refund ID
|
582 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
583 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
584 |
msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s"
|
585 |
|
586 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
587 |
-
#: src/Mollie/WC/Payment/
|
588 |
msgid "%s payment failed via Mollie (%s)."
|
589 |
msgstr "%s betaling mislukt via Mollie (%s)."
|
590 |
|
591 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
592 |
msgid "New chargeback %s processed! Order note and order status updated."
|
593 |
msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt."
|
594 |
|
595 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
596 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
597 |
-
msgstr "Nieuwe terugbetaling %s verwerkt in Mollie
|
598 |
|
599 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
600 |
#. Mollie currencies
|
601 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
602 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
603 |
-
msgstr "Huidige shopvaluta %s niet ondersteund door Mollie. Lees meer over %sondersteunde valuta's en betaalmethoden.%s"
|
604 |
-
|
605 |
-
#: mollie-payments-for-woocommerce.php:138
|
606 |
-
msgid "Mollie Payments for WooCommerce 4.0 requires PHP 5.6 or higher. Your PHP version is outdated. Upgrade your PHP version and view %sthis FAQ%s."
|
607 |
-
msgstr "Mollie-betalingen voor WooCommerce 4.0 vereisen PHP 5.6 of hoger. Je PHP-versie is verouderd. Upgrade je PHP-versie en bekijk %sdeze FAQ%s."
|
608 |
|
609 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
610 |
-
#: src/Mollie/WC/Payment/
|
611 |
-
#: src/Mollie/WC/Payment/Payment.php:328 src/Mollie/WC/Payment/Payment.php:491
|
612 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
613 |
-
msgstr "Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de
|
614 |
-
|
615 |
-
#. translators: Placeholder 1: enabled or disabled
|
616 |
-
#: src/Mollie/WC/Helper/Settings.php:465
|
617 |
-
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
618 |
-
msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor Single Click Payments? Standaard <code>%s</code>. Vereist als WooCommerce Abonnementen worden gebruikt!"
|
619 |
|
620 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
621 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
622 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
623 |
-
msgstr "Je betaling is
|
624 |
|
625 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
626 |
-
#: src/Mollie/WC/Payment/
|
627 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
628 |
-
msgstr "%s
|
629 |
|
630 |
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
631 |
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
@@ -633,152 +1265,140 @@ msgid "Bancontact"
|
|
633 |
msgstr "Bancontact"
|
634 |
|
635 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
636 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
637 |
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."
|
638 |
-
msgstr "%s betaling nog in behandeling (%s) maar klant is
|
639 |
|
640 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
641 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
642 |
-
msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats een
|
643 |
-
|
644 |
-
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
645 |
-
msgid "ING Home'Pay"
|
646 |
-
msgstr "ING Home'Pay"
|
647 |
|
648 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
649 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
650 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
651 |
msgstr "%s betaling teruggevorderd via Mollie (%s). Je moet de betaling handmatig controleren (en productvoorraden aanpassen als je dit gebruikt)."
|
652 |
|
653 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
654 |
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."
|
655 |
-
msgstr "Deze tekst
|
656 |
|
657 |
#: src/Mollie/WC/Gateway/Kbc.php:34
|
658 |
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."
|
659 |
-
msgstr "Als je dit
|
660 |
|
661 |
#: src/Mollie/WC/Gateway/Kbc.php:32
|
662 |
msgid "Show KBC/CBC banks dropdown"
|
663 |
-
msgstr "
|
664 |
|
665 |
#: src/Mollie/WC/Gateway/Ideal.php:41
|
666 |
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."
|
667 |
-
msgstr "Deze tekst
|
668 |
|
669 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
670 |
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."
|
671 |
-
msgstr "Als je dit
|
672 |
|
673 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
674 |
msgid "Show iDEAL banks dropdown"
|
675 |
-
msgstr "
|
676 |
|
677 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
678 |
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."
|
679 |
-
msgstr "Deze tekst
|
680 |
|
681 |
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
682 |
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."
|
683 |
-
msgstr "Als je
|
684 |
|
685 |
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
686 |
msgid "Show gift cards dropdown"
|
687 |
-
msgstr "
|
688 |
|
689 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
690 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
691 |
-
msgstr "Bestelling intern voltooid
|
692 |
-
|
693 |
-
#: mollie-payments-for-woocommerce.php:182
|
694 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s This version requires WooCommerce 2.2 or newer. Please %3$supdate WooCommerce to version 2.2 or newer »%4$s"
|
695 |
-
msgstr "%1$sMollie-betalingen voor WooCommerce is niet actief.%2$s Deze versie vereist WooCommerce 2.2 of hoger. %3$sUpdate WooCommerce naar versie 2.2 of hoger »%4$s"
|
696 |
|
697 |
-
#:
|
698 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for it to work. Please %5$sinstall & activate WooCommerce »%6$s"
|
699 |
-
msgstr "%1$sMollie-betalingen voor WooCommerce is niet actief.%2$s De %3$sWooCommerce-plugin%4$s moet actief zijn om te werken. Installeer %5$s& activeer WooCommerce »%6$s"
|
700 |
-
|
701 |
-
#: src/Mollie/WC/Helper/Settings.php:414
|
702 |
msgid "Cancelled"
|
703 |
msgstr "Geannuleerd"
|
704 |
|
705 |
-
#:
|
706 |
msgid "Pending"
|
707 |
msgstr "In behandeling"
|
708 |
|
709 |
-
#:
|
710 |
msgid "Order status after cancelled payment"
|
711 |
msgstr "Bestelstatus na geannuleerde betaling"
|
712 |
|
713 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
714 |
#. placeholder 3: consumer BIC
|
|
|
|
|
715 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
716 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:185
|
717 |
-
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:121
|
718 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
719 |
-
msgstr "Betaling voltooid met <strong>%s</strong> (IBAN (
|
720 |
|
721 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
722 |
msgid "Your order has been cancelled."
|
723 |
-
msgstr "
|
724 |
|
725 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
726 |
msgid ", payment pending."
|
727 |
msgstr ", betaling in behandeling."
|
728 |
|
729 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
730 |
msgid "Order cancelled"
|
731 |
msgstr "Bestelling geannuleerd"
|
732 |
|
733 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
734 |
#. status, placeholder 3: payment ID
|
735 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
736 |
msgid "%s payment %s (%s), not processed."
|
737 |
msgstr "%s betaling %s (%s), niet verwerkt."
|
738 |
|
739 |
#. translators: Default gift card dropdown description, displayed above issuer
|
740 |
#. drop down
|
741 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
742 |
msgid "Select your gift card"
|
743 |
-
msgstr "
|
744 |
|
745 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
746 |
msgid "Gift cards"
|
747 |
msgstr "Cadeaubonnen"
|
748 |
|
749 |
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
750 |
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."
|
751 |
-
msgstr "SEPA-incasso wordt gebruikt voor terugkerende betalingen met WooCommerce-abonnementen, en
|
752 |
|
753 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
754 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
755 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
756 |
-
msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, omdat
|
757 |
|
758 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
759 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
760 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
761 |
-
msgstr "%s betaling verlopen (%s) maar niet geannuleerd door een andere
|
762 |
|
763 |
-
#: src/subscriptions_status_check_functions.php:
|
764 |
msgid "There are still some subscriptions left, use the tool again!"
|
765 |
-
msgstr "Er zijn nog
|
766 |
|
767 |
-
#: src/subscriptions_status_check_functions.php:
|
768 |
msgid "No more subscriptions left to process!"
|
769 |
-
msgstr "Geen abonnementen over om te verwerken!"
|
770 |
|
771 |
-
#: src/subscriptions_status_check_functions.php:
|
772 |
msgid "No subscriptions updated in this batch."
|
773 |
msgstr "Geen abonnementen geüpdatet in deze batch."
|
774 |
|
775 |
-
#: src/subscriptions_status_check_functions.php:
|
776 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
777 |
-
msgstr "Abonnement niet geüpdatet omdat er geen geldig mandaat was
|
778 |
|
779 |
-
#: src/subscriptions_status_check_functions.php:
|
780 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
781 |
-
msgstr "Abonnement geüpdatet naar Geautomatiseerde vernieuwing via Mollie, status ingesteld op Actief. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
782 |
|
783 |
#: src/subscriptions_status_check_functions.php:36
|
784 |
msgid "Check subscriptions status"
|
@@ -792,33 +1412,33 @@ msgstr "Mollie-abonnementenstatus"
|
|
792 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
793 |
msgstr "Controles op abonnementen die verkeerd zijn ingesteld op 'Handmatige vernieuwing'. Lees eerst de"
|
794 |
|
795 |
-
#:
|
796 |
msgid "Store customer details at Mollie"
|
797 |
-
msgstr "Klantgegevens opslaan bij Mollie"
|
798 |
|
799 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
800 |
-
#: src/Mollie/WC/Plugin.php:
|
801 |
msgid "%s payment failed (%s)."
|
802 |
msgstr "%s betaling mislukt (%s)."
|
803 |
|
804 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
805 |
msgid "KBC/CBC Payment Button"
|
806 |
-
msgstr "KBC/CBC
|
807 |
|
808 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
809 |
-
#: src/Mollie/WC/Gateway/
|
810 |
msgid "Issuers empty option"
|
811 |
msgstr "Optie uitgevers leeg"
|
812 |
|
813 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
814 |
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."
|
815 |
-
msgstr "
|
816 |
|
817 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
818 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
819 |
-
msgstr "Sla Mollie-betaalscherm over wanneer bankoverschrijving is
|
820 |
|
821 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
822 |
msgid "Skip Mollie payment screen"
|
823 |
msgstr "Mollie-betaalscherm overslaan"
|
824 |
|
@@ -839,17 +1459,17 @@ msgstr "Mollie"
|
|
839 |
msgid "Mollie Payments for WooCommerce"
|
840 |
msgstr "Mollie-betalingen voor WooCommerce"
|
841 |
|
842 |
-
#: src/Mollie/WC/Plugin.php:
|
843 |
msgid "Logs"
|
844 |
msgstr "Logs"
|
845 |
|
846 |
#: src/Mollie/WC/Helper/Status.php:123
|
847 |
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
848 |
-
msgstr "Mollie-betalingen voor WooCommerce
|
849 |
|
850 |
#: src/Mollie/WC/Helper/Status.php:116
|
851 |
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
852 |
-
msgstr "Mollie-betalingen voor WooCommerce
|
853 |
|
854 |
#: src/Mollie/WC/Helper/Status.php:80
|
855 |
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
@@ -859,141 +1479,137 @@ msgstr "Mollie API client niet geïnstalleerd. Controleer of de plugin correct i
|
|
859 |
#. version, placeholder 3: used WooCommerce version
|
860 |
#: src/Mollie/WC/Helper/Status.php:67
|
861 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
862 |
-
msgstr "
|
863 |
|
864 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
865 |
msgid "Debug Log"
|
866 |
msgstr "Debug-log"
|
867 |
|
868 |
-
#:
|
869 |
msgid "French (Belgium)"
|
870 |
msgstr "Frans (België)"
|
871 |
|
872 |
-
#:
|
873 |
msgid "French"
|
874 |
msgstr "Frans"
|
875 |
|
876 |
-
#:
|
877 |
msgid "Spanish"
|
878 |
msgstr "Spaans"
|
879 |
|
880 |
-
#:
|
881 |
msgid "German"
|
882 |
msgstr "Duits"
|
883 |
|
884 |
-
#:
|
885 |
msgid "English"
|
886 |
msgstr "Engels"
|
887 |
|
888 |
-
#:
|
889 |
msgid "Flemish (Belgium)"
|
890 |
msgstr "Vlaams (België)"
|
891 |
|
892 |
-
#:
|
893 |
msgid "Dutch"
|
894 |
msgstr "Nederlands"
|
895 |
|
896 |
-
#:
|
897 |
msgid "Detect using browser language"
|
898 |
msgstr "Detecteren met gebruik van browser-taal"
|
899 |
|
900 |
-
#:
|
901 |
msgid "Payment screen language"
|
902 |
msgstr "Taal van betaalscherm"
|
903 |
|
904 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
905 |
msgid "Test API key should start with test_"
|
906 |
msgstr "Test API-sleutel moet beginnen met test_"
|
907 |
|
908 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
909 |
msgid "Test API key"
|
910 |
msgstr "Test API-sleutel"
|
911 |
|
912 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
913 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
914 |
-
msgstr "
|
915 |
|
916 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
917 |
msgid "Enable test mode"
|
918 |
-
msgstr "
|
919 |
|
920 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
921 |
msgid "Live API key should start with live_"
|
922 |
msgstr "Live API-sleutel moet beginnen met live_"
|
923 |
|
924 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
925 |
#. %s's Will be replaced by a link to the Mollie profile
|
926 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
927 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
928 |
msgstr "De API-sleutel wordt gebruikt om verbinding te maken met Mollie. Je vindt je <strong>%s</strong> API-sleutel in je %sMollie-profiel%s"
|
929 |
|
930 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
931 |
msgid "Live API key"
|
932 |
msgstr "Live API-sleutel"
|
933 |
|
934 |
-
#:
|
|
|
935 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
936 |
-
msgstr "De volgende opties zijn
|
937 |
|
938 |
-
#: src/Mollie/WC/
|
939 |
msgid "Mollie settings"
|
940 |
msgstr "Mollie-instellingen"
|
941 |
|
942 |
-
|
943 |
-
#: src/Mollie/WC/Helper/Settings.php:351
|
944 |
msgid "Log files are saved to <code>%s</code>"
|
945 |
msgstr "Logbestanden worden opgeslagen in <code>%s</code>"
|
946 |
|
947 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
948 |
-
msgid "View logs"
|
949 |
-
msgstr "Bekijk logs"
|
950 |
-
|
951 |
-
#: src/Mollie/WC/Helper/Settings.php:340
|
952 |
msgid "Log plugin events."
|
953 |
-
msgstr "Log plugin-gebeurtenissen"
|
954 |
|
955 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
956 |
msgid "Edit"
|
957 |
msgstr "Bewerken"
|
958 |
|
959 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
960 |
msgid "Refresh"
|
961 |
msgstr "Vernieuwen"
|
962 |
|
963 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
964 |
#. profile
|
965 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
966 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
967 |
-
msgstr "De volgende betaalmethoden zijn
|
968 |
|
969 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
970 |
msgid "Gateway disabled"
|
971 |
-
msgstr "Gateway
|
972 |
|
973 |
-
|
974 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
975 |
msgid "Enabled"
|
976 |
-
msgstr "
|
977 |
|
978 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
979 |
msgid "Gateway enabled"
|
980 |
-
msgstr "Gateway
|
981 |
|
982 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
983 |
msgid "Connected"
|
984 |
msgstr "Verbonden"
|
985 |
|
986 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
987 |
msgid "Mollie status:"
|
988 |
msgstr "Mollie-status:"
|
989 |
|
990 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
991 |
msgid "Error"
|
992 |
msgstr "Fout"
|
993 |
|
994 |
-
#: src/Mollie/WC/Helper/Data.php:
|
995 |
msgid "Item #%s stock incremented from %s to %s."
|
996 |
-
msgstr "
|
997 |
|
998 |
#: src/Mollie/WC/Gateway/Sofort.php:33
|
999 |
msgid "SOFORT Banking"
|
@@ -1005,22 +1621,22 @@ msgstr "paysafecard"
|
|
1005 |
|
1006 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1007 |
#. email, placeholder 3: PayPal transaction ID
|
1008 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1009 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1010 |
msgstr "Betaling voltooid met <strong>%s</strong> - %s (PayPal transactie-ID: %s)"
|
1011 |
|
1012 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1013 |
msgid "PayPal"
|
1014 |
msgstr "PayPal"
|
1015 |
|
|
|
1016 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1017 |
#. drop down
|
1018 |
-
|
1019 |
-
#: src/Mollie/WC/Gateway/Kbc.php:77 src/Mollie/WC/Gateway/Ideal.php:77
|
1020 |
msgid "Select your bank"
|
1021 |
-
msgstr "
|
1022 |
|
1023 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
1024 |
msgid "iDEAL"
|
1025 |
msgstr "iDEAL"
|
1026 |
|
@@ -1029,11 +1645,11 @@ msgid "SEPA Direct Debit"
|
|
1029 |
msgstr "SEPA-incasso"
|
1030 |
|
1031 |
#. translators: Placeholder 1: card holder
|
1032 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1033 |
msgid "Payment completed by <strong>%s</strong>"
|
1034 |
msgstr "Betaling voltooid met <strong>%s</strong>."
|
1035 |
|
1036 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1037 |
msgid "Credit card"
|
1038 |
msgstr "Creditcard"
|
1039 |
|
@@ -1041,193 +1657,206 @@ msgstr "Creditcard"
|
|
1041 |
msgid "Belfius Direct Net"
|
1042 |
msgstr "Belfius Direct Net"
|
1043 |
|
1044 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1045 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1046 |
msgstr "De betaling vervalt op <strong>%s</strong>. Zorg ervoor dat je vóór deze datum het totale bedrag overmaakt."
|
1047 |
|
1048 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1049 |
msgid "The payment will expire on <strong>%s</strong>."
|
1050 |
msgstr "De betaling vervalt op <strong>%s</strong>."
|
1051 |
|
1052 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1053 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1054 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1055 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1056 |
msgstr "Vermeld de betalingsreferentie <strong>%s</strong>"
|
1057 |
|
1058 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1059 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1060 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1061 |
msgid "Payment reference: %s"
|
1062 |
msgstr "Betalingsreferentie: %s."
|
1063 |
|
1064 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1065 |
msgid "BIC: %s"
|
1066 |
msgstr "BIC: %s"
|
1067 |
|
1068 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1069 |
msgid "IBAN: <strong>%s</strong>"
|
1070 |
msgstr "IBAN: <strong>%s</strong>"
|
1071 |
|
1072 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1073 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1074 |
msgid "Beneficiary: %s"
|
1075 |
msgstr "Begunstigde: %s"
|
1076 |
|
1077 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1078 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1079 |
msgstr "Voltooi je betaling door het totale bedrag over te maken naar de volgende bankrekening:"
|
1080 |
|
1081 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1082 |
msgid "Bank Transfer"
|
1083 |
msgstr "Bankoverdracht"
|
1084 |
|
1085 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
1086 |
msgid "Disabled"
|
1087 |
msgstr "Uitgeschakeld"
|
1088 |
|
1089 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1090 |
-
msgid "Number of
|
1091 |
-
msgstr "Aantal
|
1092 |
|
1093 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
1094 |
msgid "Expiry date"
|
1095 |
msgstr "Vervaldatum"
|
1096 |
|
1097 |
#. translators: Placeholder 1: payment method
|
1098 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1099 |
msgid "Payment completed with <strong>%s</strong>"
|
1100 |
msgstr "Betaling voltooid met <strong>%s</strong>"
|
1101 |
|
1102 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1103 |
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."
|
1104 |
-
msgstr "We hebben geen definitieve betalingsstatus ontvangen. Je ontvangt een e-mail zodra we een bevestiging van de bank/
|
1105 |
|
1106 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1107 |
msgid "We have not received a definite payment status."
|
1108 |
msgstr "We hebben geen definitieve betalingsstatus ontvangen."
|
1109 |
|
1110 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1111 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1112 |
-
msgstr "Je hebt je betaling geannuleerd.
|
1113 |
|
1114 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1115 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
1116 |
msgid "%s payment expired (%s)."
|
1117 |
msgstr "%s betaling verlopen (%s)."
|
1118 |
|
1119 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1120 |
-
#: src/Mollie/WC/Payment/Order.php:
|
1121 |
msgid "Order completed using %s payment (%s)."
|
1122 |
msgstr "Bestelling voltooid met gebruik van %s betaling (%s)."
|
1123 |
|
1124 |
#. translators: Placeholder 1: Payment method title
|
1125 |
-
#: src/Mollie/WC/
|
1126 |
-
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:
|
1127 |
-
#: src/Mollie/WC/
|
|
|
|
|
1128 |
msgid "Could not create %s payment."
|
1129 |
msgstr "Kon geen %s betaling aanmaken."
|
1130 |
|
1131 |
-
#: src/Mollie/WC/
|
1132 |
-
#: src/Mollie/WC/
|
1133 |
-
#: src/Mollie/WC/Payment/Order.php:607 src/Mollie/WC/Payment/Order.php:631
|
1134 |
-
#: src/Mollie/WC/Payment/Order.php:668 src/Mollie/WC/Payment/Order.php:709
|
1135 |
-
#: src/Mollie/WC/Payment/Payment.php:237 src/Mollie/WC/Payment/Payment.php:338
|
1136 |
-
#: src/Mollie/WC/Payment/Payment.php:396 src/Mollie/WC/Payment/Payment.php:419
|
1137 |
-
#: src/Mollie/WC/Payment/Payment.php:459 src/Mollie/WC/Payment/Payment.php:500
|
1138 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1139 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1140 |
-
#: src/Mollie/WC/Gateway/Abstract.php:547
|
1141 |
-
#: src/Mollie/WC/Gateway/Abstract.php:822
|
1142 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1120
|
1143 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1144 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1145 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1146 |
-
#: src/Mollie/WC/Gateway/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1147 |
msgid "test mode"
|
1148 |
msgstr "testmodus"
|
1149 |
|
1150 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
|
|
1151 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1152 |
-
#: src/Mollie/WC/Gateway/
|
1153 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1154 |
msgid "%s payment started (%s)."
|
1155 |
msgstr "%s betaling gestart (%s)."
|
1156 |
|
|
|
1157 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1158 |
-
#: src/Mollie/WC/Gateway/
|
1159 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1160 |
msgid "Awaiting payment confirmation."
|
1161 |
msgstr "In afwachting van betalingsbevestiging"
|
1162 |
|
1163 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1164 |
msgid "Could not load order %s"
|
1165 |
msgstr "Kon bestelling %s niet laden"
|
1166 |
|
1167 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1168 |
#. be replaced by a link to the Mollie profile
|
1169 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1170 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1171 |
-
msgstr "%s niet
|
1172 |
|
1173 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1174 |
#. setting page
|
1175 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1176 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1177 |
-
msgstr "Geen API
|
1178 |
|
1179 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1180 |
msgid "Gateway Disabled"
|
1181 |
-
msgstr "Gateway
|
1182 |
|
1183 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1184 |
msgid "Test mode enabled."
|
1185 |
-
msgstr "Testmodus
|
1186 |
|
1187 |
-
#: src/Mollie/WC/
|
1188 |
msgid "Hold Stock (minutes)"
|
1189 |
msgstr "Houd voorraad aan (minuten)"
|
1190 |
|
1191 |
-
#: src/Mollie/WC/
|
1192 |
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."
|
1193 |
-
msgstr "Sommige betaalmethoden
|
1194 |
|
1195 |
-
#:
|
|
|
|
|
1196 |
msgid "default"
|
1197 |
msgstr "standaard"
|
1198 |
|
1199 |
-
#: src/Mollie/WC/
|
1200 |
msgid "Initial order status"
|
1201 |
msgstr "Initiële bestelstatus"
|
1202 |
|
1203 |
-
#:
|
|
|
1204 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1205 |
-
msgstr "Beschrijving van de betaalmethode die de klant
|
1206 |
|
1207 |
-
#:
|
|
|
1208 |
msgid "Description"
|
1209 |
msgstr "Beschrijving"
|
1210 |
|
1211 |
-
#: src/Mollie/WC/
|
1212 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1213 |
-
msgstr "
|
1214 |
|
1215 |
-
#:
|
|
|
|
|
1216 |
msgid "Display logo"
|
1217 |
-
msgstr "
|
1218 |
|
1219 |
-
#:
|
|
|
1220 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1221 |
msgstr "Dit controleert de titel die de gebruiker ziet tijdens het betalen. Standaard <code>%s</code>"
|
1222 |
|
1223 |
-
#:
|
|
|
1224 |
msgid "Title"
|
1225 |
msgstr "Titel"
|
1226 |
|
1227 |
-
|
|
|
|
|
1228 |
msgid "Enable %s"
|
1229 |
-
msgstr "
|
1230 |
|
1231 |
-
#:
|
|
|
1232 |
msgid "Enable/Disable"
|
1233 |
-
msgstr "
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-07-26 13:45+0200\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
"Language: nl\n"
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
|
|
|
|
|
|
13 |
|
14 |
+
#: src/Mollie/WC/Plugin.php:375
|
15 |
+
msgid "Unpaid order cancelled - time limit reached."
|
16 |
+
msgstr "Onbetaald of geannuleerd - tijdslimiet bereikt."
|
17 |
+
|
18 |
+
#: src/Mollie/WC/Helper/Settings.php:846
|
19 |
+
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"
|
20 |
+
msgstr "Je hebt Klarna ingeschakeld. Zorg ervoor dat alle standaard WooCommerce betaalvelden zijn ingeschakeld en verplicht zijn, zodat je betalingen kunt accepteren. Ga voor meer informatie naar %1sKlarna betaal later documentatie%2s of %3sKlarna Slice it documentatie%4s"
|
21 |
+
|
22 |
+
#: src/Mollie/WC/Helper/Settings.php:254
|
23 |
+
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."
|
24 |
+
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."
|
25 |
+
|
26 |
+
#: src/Mollie/WC/Helper/Settings.php:246
|
27 |
+
msgid "Enable this option if you want to be able to set the number of days after the order will expire."
|
28 |
+
msgstr "Schakel deze optie in wanneer je de mogelijkheid wilt hebben om een aantal dagen in te stellen waarna de bestelling vervalt."
|
29 |
+
|
30 |
+
#: src/Mollie/WC/Helper/Settings.php:237
|
31 |
+
msgid "%s advanced"
|
32 |
+
msgstr "%s geavanceerd"
|
33 |
+
|
34 |
+
#: inc/settings/mollie_paypal_button_enabler.php:126
|
35 |
+
msgid "If the product or the cart total amount is under this number, then the button will not show up."
|
36 |
+
msgstr "Wanneer het product of het totale bedrag van de winkelwagen beneden dit getal blijft, verschijnt de betaalknop niet."
|
37 |
+
|
38 |
+
#: inc/settings/mollie_paypal_button_enabler.php:122
|
39 |
+
msgid "Minimum amount to display button"
|
40 |
+
msgstr "Minimum bedrag voor de weergave van de knop."
|
41 |
+
|
42 |
+
#: inc/settings/mollie_paypal_button_enabler.php:117
|
43 |
+
msgctxt "Mollie PayPal button Settings"
|
44 |
+
msgid "Polish -- Checkout with PayPal - Silver"
|
45 |
+
msgstr "Pools -- Betalen met PayPal - zilver"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_paypal_button_enabler.php:116
|
48 |
+
msgctxt "Mollie PayPal button Settings"
|
49 |
+
msgid "Polish -- Checkout with PayPal - Gold"
|
50 |
+
msgstr "Pools -- Betalen met PayPal - goud"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_paypal_button_enabler.php:115
|
53 |
+
msgctxt "Mollie PayPal button Settings"
|
54 |
+
msgid "Polish -- Buy with PayPal - Gold"
|
55 |
+
msgstr "Pools -- Kopen met PayPal - goud"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_paypal_button_enabler.php:114
|
58 |
+
msgctxt "Mollie PayPal button Settings"
|
59 |
+
msgid "French -- Checkout with PayPal - Silver"
|
60 |
+
msgstr "Frans -- Betalen met PayPal - zilver"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_paypal_button_enabler.php:113
|
63 |
+
msgctxt "Mollie PayPal button Settings"
|
64 |
+
msgid "French -- Checkout with PayPal - Gold"
|
65 |
+
msgstr "Frans -- Betalen met PayPal - goud"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_paypal_button_enabler.php:112
|
68 |
+
msgctxt "Mollie PayPal button Settings"
|
69 |
+
msgid "French -- Buy with PayPal - Gold"
|
70 |
+
msgstr "Frans -- Kopen met PayPal - goud"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_paypal_button_enabler.php:111
|
73 |
+
msgctxt "Mollie PayPal button Settings"
|
74 |
+
msgid "German -- Checkout with PayPal - Rounded white"
|
75 |
+
msgstr "Duits -- Betalen met PayPal - afgeronde hoeken wit"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_paypal_button_enabler.php:110
|
78 |
+
msgctxt "Mollie PayPal button Settings"
|
79 |
+
msgid "German -- Checkout with PayPal - Pill white"
|
80 |
+
msgstr "Duits -- Betalen met PayPal - pilvormig wit"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_paypal_button_enabler.php:109
|
83 |
+
msgctxt "Mollie PayPal button Settings"
|
84 |
+
msgid "German -- Checkout with PayPal - Rounded gray"
|
85 |
+
msgstr "Duits -- Betalen met PayPal - afgeronde hoeken grijs"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_paypal_button_enabler.php:108
|
88 |
+
msgctxt "Mollie PayPal button Settings"
|
89 |
+
msgid "German -- Checkout with PayPal - Pill gray"
|
90 |
+
msgstr "Duits -- Betalen met PayPal - pilvormig grijs"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_paypal_button_enabler.php:107
|
93 |
+
msgctxt "Mollie PayPal button Settings"
|
94 |
+
msgid "German -- Checkout with PayPal - Rounded golden"
|
95 |
+
msgstr "Duits -- Betalen met PayPal - afgeronde hoeken goud"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_paypal_button_enabler.php:106
|
98 |
+
msgctxt "Mollie PayPal button Settings"
|
99 |
+
msgid "German -- Checkout with PayPal - Pill golden"
|
100 |
+
msgstr "Duits -- Betalen met PayPal - pilvormig goud"
|
101 |
+
|
102 |
+
#: inc/settings/mollie_paypal_button_enabler.php:105
|
103 |
+
msgctxt "Mollie PayPal button Settings"
|
104 |
+
msgid "German -- Checkout with PayPal - Rounded blue"
|
105 |
+
msgstr "Duits -- Betalen met PayPal - afgeronde hoeken blauw"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_paypal_button_enabler.php:104
|
108 |
+
msgctxt "Mollie PayPal button Settings"
|
109 |
+
msgid "German -- Checkout with PayPal - Pill blue"
|
110 |
+
msgstr "Duits -- Betalen met PayPal - pilvormig blauw"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_paypal_button_enabler.php:103
|
113 |
+
msgctxt "Mollie PayPal button Settings"
|
114 |
+
msgid "German -- Checkout with PayPal - Rounded black"
|
115 |
+
msgstr "Duits -- Betalen met PayPal - afgeronde hoeken zwart"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_paypal_button_enabler.php:102
|
118 |
+
msgctxt "Mollie PayPal button Settings"
|
119 |
+
msgid "German -- Checkout with PayPal - Pill black"
|
120 |
+
msgstr "Duits -- Betalen met PayPal - pilvormig zwart"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_paypal_button_enabler.php:101
|
123 |
+
msgctxt "Mollie PayPal button Settings"
|
124 |
+
msgid "German -- Buy with PayPal - Rounded white"
|
125 |
+
msgstr "Duits -- Kopen met PayPal - afgeronde hoeken wit"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_paypal_button_enabler.php:100
|
128 |
+
msgctxt "Mollie PayPal button Settings"
|
129 |
+
msgid "German -- Buy with PayPal - Pill white"
|
130 |
+
msgstr "Duits -- Kopen met PayPal - pilvormig wit"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_paypal_button_enabler.php:99
|
133 |
+
msgctxt "Mollie PayPal button Settings"
|
134 |
+
msgid "German -- Buy with PayPal - Rounded gray"
|
135 |
+
msgstr "Duits -- Kopen met PayPal - afgeronde hoeken grijs"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_paypal_button_enabler.php:98
|
138 |
+
msgctxt "Mollie PayPal button Settings"
|
139 |
+
msgid "German -- Buy with PayPal - Pill gray"
|
140 |
+
msgstr "Duits -- Kopen met PayPal - pilvormig grijs"
|
141 |
+
|
142 |
+
#: inc/settings/mollie_paypal_button_enabler.php:97
|
143 |
+
msgctxt "Mollie PayPal button Settings"
|
144 |
+
msgid "German -- Buy with PayPal - Rounded golden"
|
145 |
+
msgstr "Duits -- Kopen met PayPal - afgeronde hoeken goud"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_paypal_button_enabler.php:96
|
148 |
+
msgctxt "Mollie PayPal button Settings"
|
149 |
+
msgid "German -- Buy with PayPal - Pill golden"
|
150 |
+
msgstr "Duits -- Kopen met PayPal - pilvormig goud"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_paypal_button_enabler.php:95
|
153 |
+
msgctxt "Mollie PayPal button Settings"
|
154 |
+
msgid "German -- Buy with PayPal - Rounded blue"
|
155 |
+
msgstr "Duits -- Kopen met PayPal - afgeronde hoeken blauw"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_paypal_button_enabler.php:94
|
158 |
+
msgctxt "Mollie PayPal button Settings"
|
159 |
+
msgid "German -- Buy with PayPal - Pill blue"
|
160 |
+
msgstr "Duits -- Kopen met PayPal - pilvormig blauw"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_paypal_button_enabler.php:93
|
163 |
+
msgctxt "Mollie PayPal button Settings"
|
164 |
+
msgid "German -- Buy with PayPal - Rounded black"
|
165 |
+
msgstr "Duits -- Kopen met PayPal - zwarte cirkel"
|
166 |
+
|
167 |
+
#: inc/settings/mollie_paypal_button_enabler.php:92
|
168 |
+
msgctxt "Mollie PayPal button Settings"
|
169 |
+
msgid "German -- Buy with PayPal - Pill black"
|
170 |
+
msgstr "Duits -- Kopen met PayPal - pilvormig zwart"
|
171 |
+
|
172 |
+
#: inc/settings/mollie_paypal_button_enabler.php:91
|
173 |
+
msgctxt "Mollie PayPal button Settings"
|
174 |
+
msgid "Dutch -- Checkout with PayPal - Rounded white"
|
175 |
+
msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken wit"
|
176 |
+
|
177 |
+
#: inc/settings/mollie_paypal_button_enabler.php:90
|
178 |
+
msgctxt "Mollie PayPal button Settings"
|
179 |
+
msgid "Dutch -- Checkout with PayPal - Pill white"
|
180 |
+
msgstr "Duits -- Betalen met PayPal - pilvormig wit"
|
181 |
+
|
182 |
+
#: inc/settings/mollie_paypal_button_enabler.php:89
|
183 |
+
msgctxt "Mollie PayPal button Settings"
|
184 |
+
msgid "Dutch -- Checkout with PayPal - Rounded gray"
|
185 |
+
msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken grijs"
|
186 |
+
|
187 |
+
#: inc/settings/mollie_paypal_button_enabler.php:88
|
188 |
+
msgctxt "Mollie PayPal button Settings"
|
189 |
+
msgid "Dutch -- Checkout with PayPal - Pill gray"
|
190 |
+
msgstr "Nederlands -- Betalen met PayPal - pilvormig grijs"
|
191 |
+
|
192 |
+
#: inc/settings/mollie_paypal_button_enabler.php:87
|
193 |
+
msgctxt "Mollie PayPal button Settings"
|
194 |
+
msgid "Dutch -- Checkout with PayPal - Rounded golden"
|
195 |
+
msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken goud"
|
196 |
+
|
197 |
+
#: inc/settings/mollie_paypal_button_enabler.php:86
|
198 |
+
msgctxt "Mollie PayPal button Settings"
|
199 |
+
msgid "Dutch -- Checkout with PayPal - Pill golden"
|
200 |
+
msgstr "Nederlands -- Betalen met PayPal - pilvormig goud"
|
201 |
+
|
202 |
+
#: inc/settings/mollie_paypal_button_enabler.php:85
|
203 |
+
msgctxt "Mollie PayPal button Settings"
|
204 |
+
msgid "Dutch -- Checkout with PayPal - Rounded blue"
|
205 |
+
msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken blauw"
|
206 |
+
|
207 |
+
#: inc/settings/mollie_paypal_button_enabler.php:84
|
208 |
+
msgctxt "Mollie PayPal button Settings"
|
209 |
+
msgid "Dutch -- Checkout with PayPal - Pill blue"
|
210 |
+
msgstr "Nederlands -- Betalen met PayPal - pilvormig blauw"
|
211 |
+
|
212 |
+
#: inc/settings/mollie_paypal_button_enabler.php:83
|
213 |
+
msgctxt "Mollie PayPal button Settings"
|
214 |
+
msgid "Dutch -- Checkout with PayPal - Rounded black"
|
215 |
+
msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken zwart"
|
216 |
+
|
217 |
+
#: inc/settings/mollie_paypal_button_enabler.php:82
|
218 |
+
msgctxt "Mollie PayPal button Settings"
|
219 |
+
msgid "Dutch -- Checkout with PayPal - Pill black"
|
220 |
+
msgstr "Nederlands -- Betalen met PayPal - pilvormig zwart"
|
221 |
+
|
222 |
+
#: inc/settings/mollie_paypal_button_enabler.php:81
|
223 |
+
msgctxt "Mollie PayPal button Settings"
|
224 |
+
msgid "Dutch -- Buy with PayPal - Rounded white"
|
225 |
+
msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken wit"
|
226 |
+
|
227 |
+
#: inc/settings/mollie_paypal_button_enabler.php:80
|
228 |
+
msgctxt "Mollie PayPal button Settings"
|
229 |
+
msgid "Dutch -- Buy with PayPal - Pill white"
|
230 |
+
msgstr "Nederlands -- Kopen met PayPal - pilvormig wit"
|
231 |
+
|
232 |
+
#: inc/settings/mollie_paypal_button_enabler.php:79
|
233 |
+
msgctxt "Mollie PayPal button Settings"
|
234 |
+
msgid "Dutch -- Buy with PayPal - Rounded gray"
|
235 |
+
msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken grijs"
|
236 |
+
|
237 |
+
#: inc/settings/mollie_paypal_button_enabler.php:78
|
238 |
+
msgctxt "Mollie PayPal button Settings"
|
239 |
+
msgid "Dutch -- Buy with PayPal - Pill gray"
|
240 |
+
msgstr "Nederlands -- Kopen met PayPal - pilvormig grijs"
|
241 |
+
|
242 |
+
#: inc/settings/mollie_paypal_button_enabler.php:77
|
243 |
+
msgctxt "Mollie PayPal button Settings"
|
244 |
+
msgid "Dutch -- Buy with PayPal - Rounded golden"
|
245 |
+
msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken goud"
|
246 |
+
|
247 |
+
#: inc/settings/mollie_paypal_button_enabler.php:76
|
248 |
+
msgctxt "Mollie PayPal button Settings"
|
249 |
+
msgid "Dutch -- Buy with PayPal - Pill golden"
|
250 |
+
msgstr "Nederlands -- Kopen met PayPal - pilvormig goud"
|
251 |
+
|
252 |
+
#: inc/settings/mollie_paypal_button_enabler.php:75
|
253 |
+
msgctxt "Mollie PayPal button Settings"
|
254 |
+
msgid "Dutch -- Buy with PayPal - Rounded blue"
|
255 |
+
msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken blauw"
|
256 |
+
|
257 |
+
#: inc/settings/mollie_paypal_button_enabler.php:74
|
258 |
+
msgctxt "Mollie PayPal button Settings"
|
259 |
+
msgid "Dutch -- Buy with PayPal - Pill blue"
|
260 |
+
msgstr "Nederlands -- Kopen met PayPal - pilvormig blauw"
|
261 |
+
|
262 |
+
#: inc/settings/mollie_paypal_button_enabler.php:73
|
263 |
+
msgctxt "Mollie PayPal button Settings"
|
264 |
+
msgid "Dutch -- Buy with PayPal - Rounded black"
|
265 |
+
msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken zwart"
|
266 |
+
|
267 |
+
#: inc/settings/mollie_paypal_button_enabler.php:72
|
268 |
+
msgctxt "Mollie PayPal button Settings"
|
269 |
+
msgid "Dutch -- Buy with PayPal - Pill black"
|
270 |
+
msgstr "Nederlands -- Kopen met PayPal - pilvormig zwart"
|
271 |
+
|
272 |
+
#: inc/settings/mollie_paypal_button_enabler.php:71
|
273 |
+
msgctxt "Mollie PayPal button Settings"
|
274 |
+
msgid "English -- Checkout with PayPal - Rounded white"
|
275 |
+
msgstr "Engels -- Betalen met PayPal - afgeronde hoeken wit"
|
276 |
+
|
277 |
+
#: inc/settings/mollie_paypal_button_enabler.php:70
|
278 |
+
msgctxt "Mollie PayPal button Settings"
|
279 |
+
msgid "English -- Checkout with PayPal - Pill white"
|
280 |
+
msgstr "Engels -- Betalen met PayPal - pilvormig wit"
|
281 |
+
|
282 |
+
#: inc/settings/mollie_paypal_button_enabler.php:69
|
283 |
+
msgctxt "Mollie PayPal button Settings"
|
284 |
+
msgid "English -- Checkout with PayPal - Rounded gray"
|
285 |
+
msgstr "Engels -- Betalen met PayPal - afgeronde hoeken grijs"
|
286 |
+
|
287 |
+
#: inc/settings/mollie_paypal_button_enabler.php:68
|
288 |
+
msgctxt "Mollie PayPal button Settings"
|
289 |
+
msgid "English -- Checkout with PayPal - Pill gray"
|
290 |
+
msgstr "Engels -- Betalen met PayPal - pilvormig grijs"
|
291 |
+
|
292 |
+
#: inc/settings/mollie_paypal_button_enabler.php:67
|
293 |
+
msgctxt "Mollie PayPal button Settings"
|
294 |
+
msgid "English -- Checkout with PayPal - Rounded golden"
|
295 |
+
msgstr "Engels -- Betalen met PayPal - afgeronde hoeken goud"
|
296 |
+
|
297 |
+
#: inc/settings/mollie_paypal_button_enabler.php:66
|
298 |
+
msgctxt "Mollie PayPal button Settings"
|
299 |
+
msgid "English -- Checkout with PayPal - Pill golden"
|
300 |
+
msgstr "Engels -- Betalen met PayPal - pilvormig goud"
|
301 |
+
|
302 |
+
#: inc/settings/mollie_paypal_button_enabler.php:65
|
303 |
+
msgctxt "Mollie PayPal button Settings"
|
304 |
+
msgid "English -- Checkout with PayPal - Rounded blue"
|
305 |
+
msgstr "Engels -- Betalen met PayPal - afgeronde hoeken blauw"
|
306 |
+
|
307 |
+
#: inc/settings/mollie_paypal_button_enabler.php:64
|
308 |
+
msgctxt "Mollie PayPal button Settings"
|
309 |
+
msgid "English -- Checkout with PayPal - Pill blue"
|
310 |
+
msgstr "Engels -- Betalen met PayPal - pilvormig blauw"
|
311 |
+
|
312 |
+
#: inc/settings/mollie_paypal_button_enabler.php:63
|
313 |
+
msgctxt "Mollie PayPal button Settings"
|
314 |
+
msgid "English -- Checkout with PayPal - Rounded black"
|
315 |
+
msgstr "Engels -- Betalen met PayPal - afgeronde hoeken zwart"
|
316 |
+
|
317 |
+
#: inc/settings/mollie_paypal_button_enabler.php:62
|
318 |
+
msgctxt "Mollie PayPal button Settings"
|
319 |
+
msgid "English -- Checkout with PayPal - Pill black"
|
320 |
+
msgstr "Engels -- Betalen met PayPal - pilvormig zwart"
|
321 |
+
|
322 |
+
#: inc/settings/mollie_paypal_button_enabler.php:61
|
323 |
+
msgctxt "Mollie PayPal button Settings"
|
324 |
+
msgid "English -- Buy with PayPal - Rounded white"
|
325 |
+
msgstr "Engels -- Kopen met PayPal - afgeronde hoeken wit"
|
326 |
+
|
327 |
+
#: inc/settings/mollie_paypal_button_enabler.php:60
|
328 |
+
msgctxt "Mollie PayPal button Settings"
|
329 |
+
msgid "English -- Buy with PayPal - Pill white"
|
330 |
+
msgstr "Engels -- Kopen met PayPal - pilvormig wit"
|
331 |
+
|
332 |
+
#: inc/settings/mollie_paypal_button_enabler.php:59
|
333 |
+
msgctxt "Mollie PayPal button Settings"
|
334 |
+
msgid "English -- Buy with PayPal - Rounded gray"
|
335 |
+
msgstr "Engels -- Kopen met PayPal - afgeronde hoeken grijs"
|
336 |
+
|
337 |
+
#: inc/settings/mollie_paypal_button_enabler.php:58
|
338 |
+
msgctxt "Mollie PayPal button Settings"
|
339 |
+
msgid "English -- Buy with PayPal - Pill gray"
|
340 |
+
msgstr "Engels -- Kopen met PayPal - pilvormig grijs"
|
341 |
+
|
342 |
+
#: inc/settings/mollie_paypal_button_enabler.php:57
|
343 |
+
msgctxt "Mollie PayPal button Settings"
|
344 |
+
msgid "English -- Buy with PayPal - Rounded golden"
|
345 |
+
msgstr "Engels -- Kopen met PayPal - afgeronde hoeken goud"
|
346 |
+
|
347 |
+
#: inc/settings/mollie_paypal_button_enabler.php:56
|
348 |
+
msgctxt "Mollie PayPal button Settings"
|
349 |
+
msgid "English -- Buy with PayPal - Pill golden"
|
350 |
+
msgstr "Engels -- Kopen met PayPal - pilvormig goud"
|
351 |
+
|
352 |
+
#: inc/settings/mollie_paypal_button_enabler.php:55
|
353 |
+
msgctxt "Mollie PayPal button Settings"
|
354 |
+
msgid "English -- Buy with PayPal - Rounded blue"
|
355 |
+
msgstr "Engels -- Kopen met PayPal - afgeronde hoeken blauw"
|
356 |
+
|
357 |
+
#: inc/settings/mollie_paypal_button_enabler.php:54
|
358 |
+
msgctxt "Mollie PayPal button Settings"
|
359 |
+
msgid "English -- Buy with PayPal - Pill blue"
|
360 |
+
msgstr "Engels -- Kopen met PayPal - pilvormig blauw"
|
361 |
+
|
362 |
+
#: inc/settings/mollie_paypal_button_enabler.php:46
|
363 |
+
msgctxt "Mollie PayPal Button Settings"
|
364 |
+
msgid "Select the text and the colour of the button."
|
365 |
+
msgstr "Kies de tekst en de kleur van de knop."
|
366 |
+
|
367 |
+
#: inc/settings/mollie_paypal_button_enabler.php:44
|
368 |
+
msgctxt "Mollie PayPal Button Settings"
|
369 |
+
msgid "Button text language and color"
|
370 |
+
msgstr "Knop tekst taal en kleur"
|
371 |
+
|
372 |
+
#: inc/settings/mollie_paypal_button_enabler.php:35
|
373 |
+
msgid "Enable the PayPal button to be used in the product page."
|
374 |
+
msgstr "Schakel de PayPal knop in om te gebruiken op de productpagina."
|
375 |
+
|
376 |
+
#: inc/settings/mollie_paypal_button_enabler.php:31
|
377 |
+
msgid "Display on product page"
|
378 |
+
msgstr "Laat zien op de productpagina"
|
379 |
+
|
380 |
+
#: inc/settings/mollie_paypal_button_enabler.php:23
|
381 |
+
msgid "Enable the PayPal button to be used in the cart page."
|
382 |
+
msgstr "Schakel de PayPal knop in om deze te gebruiken op de winkelwagenpagina."
|
383 |
+
|
384 |
+
#: inc/settings/mollie_paypal_button_enabler.php:19
|
385 |
+
msgid "Display on cart page"
|
386 |
+
msgstr "Laat zien op de winkelwagenpagina"
|
387 |
+
|
388 |
+
#: inc/settings/mollie_paypal_button_enabler.php:12
|
389 |
+
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"
|
390 |
+
msgstr "%1sDe PayPal knop is geoptimaliseerd voor digitale artikelen. Hij verschijnt alleen wanneer het product niet wordt verzonden. %2sDe adresgegevens van de klant kun je alleen krijgen, wanneer je de transactie hebt uitgevoerd met de %3sBestellingen API%4s.%5s%6s"
|
391 |
+
|
392 |
+
#: inc/settings/mollie_paypal_button_enabler.php:7
|
393 |
+
msgid "PayPal button display settings"
|
394 |
+
msgstr "PayPal knop weergave-instellingen"
|
395 |
+
|
396 |
+
#: src/Mollie/WC/Helper/Settings.php:159
|
397 |
+
msgid "%s surcharge"
|
398 |
+
msgstr "%s prijstoeslag"
|
399 |
+
|
400 |
+
#: src/Mollie/WC/Helper/Settings.php:125
|
401 |
+
msgid "%s custom logo"
|
402 |
+
msgstr "%s aangepast logo"
|
403 |
+
|
404 |
+
#: src/Mollie/WC/Helper/Settings.php:107
|
405 |
+
msgid "Sales countries"
|
406 |
+
msgstr "Verkooplanden"
|
407 |
+
|
408 |
+
#: src/Mollie/WC/Helper/Settings.php:61
|
409 |
+
msgid "%s display settings"
|
410 |
+
msgstr "%s weergave-instellingen"
|
411 |
+
|
412 |
+
#: inc/settings/mollie_advanced_settings.php:124
|
413 |
+
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"
|
414 |
+
msgstr "Kies uit de beschikbare variabelen de beschrijving die je voor deze transactie wilt gebruiken.%sLet op: dit werkt alleen wanneer de methode is ingesteld op Betalingen API).%s"
|
415 |
+
|
416 |
+
#: inc/settings/mollie_advanced_settings.php:109
|
417 |
+
msgid "API Payment Description"
|
418 |
+
msgstr "Beschrijving Betalingen API"
|
419 |
+
|
420 |
+
#: inc/settings/mollie_advanced_settings.php:99
|
421 |
+
msgid "Click %shere%s to read more about the differences between the Payments and Orders API"
|
422 |
+
msgstr "Klik %shier%s voor meer informatie over de verschillen tussen de Betalingen en Bestellingen API"
|
423 |
+
|
424 |
+
#: inc/settings/mollie_advanced_settings.php:82
|
425 |
+
msgid "Select API Method"
|
426 |
+
msgstr "Kies de API methode"
|
427 |
+
|
428 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2645
|
429 |
+
msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb."
|
430 |
+
msgstr "%1$sMollie-betalingen voor WooCommerce%2$s Uploaden bestand niet mogelijk, de grootte mag niet meer bedragen dan 500 kB."
|
431 |
+
|
432 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2606
|
433 |
+
msgid " +%1s%2s + %3s%% Fee"
|
434 |
+
msgstr " +%1s%2s + %3s%% vergoeding"
|
435 |
+
|
436 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2589
|
437 |
+
msgid " +%1s%% Fee"
|
438 |
+
msgstr " +%1s%% vergoeding"
|
439 |
+
|
440 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2579
|
441 |
+
msgid " +%1s%2s Fee"
|
442 |
+
msgstr " +%1s%2s vergoeding"
|
443 |
+
|
444 |
+
#: src/Mollie/WC/Gateway/Abstract.php:138
|
445 |
+
msgid "No custom logo selected"
|
446 |
+
msgstr "Geen aangepast logo gekozen"
|
447 |
+
|
448 |
+
#: src/Mollie/WC/Helper/Settings.php:226
|
449 |
+
msgid "Limit the maximum fee added on checkout. Default 0"
|
450 |
+
msgstr "Limiet van de maximum vergoeding toegevoegd aan de betaling. Standaard 0"
|
451 |
+
|
452 |
+
#: src/Mollie/WC/Helper/Settings.php:223
|
453 |
+
msgid "Payment surcharge limit in %s"
|
454 |
+
msgstr "Limiet betalingstoeslag in %s"
|
455 |
+
|
456 |
+
#: src/Mollie/WC/Helper/Settings.php:213
|
457 |
+
msgid "Control the percentage fee added on checkout. Default 0.01"
|
458 |
+
msgstr "Controle van de procentuele vergoeding toegevoegd aan de betaling. Standaard 0.01"
|
459 |
+
|
460 |
+
#: src/Mollie/WC/Helper/Settings.php:210
|
461 |
+
msgid "Payment surcharge percentage amount %"
|
462 |
+
msgstr "Hoogte % prijstoeslag betaling"
|
463 |
+
|
464 |
+
#: src/Mollie/WC/Helper/Settings.php:200
|
465 |
+
msgid "Control the fee added on checkout. Default 0.01"
|
466 |
+
msgstr "Controle van de vergoeding toegevoegd aan de betaling. Standaard 0.01"
|
467 |
+
|
468 |
+
#: src/Mollie/WC/Helper/Settings.php:197
|
469 |
+
msgid "Payment surcharge fixed amount in %s"
|
470 |
+
msgstr "Betalingstoeslag vast bedrag in %s"
|
471 |
+
|
472 |
+
#: src/Mollie/WC/Helper/Settings.php:190
|
473 |
+
msgid "Choose a payment surcharge for this gateway"
|
474 |
+
msgstr "Kies een betalingstoeslag voor deze gateway"
|
475 |
+
|
476 |
+
#: src/Mollie/WC/Helper/Settings.php:184
|
477 |
+
msgid "Fixed fee and percentage"
|
478 |
+
msgstr "Vaste vergoeding en percentage"
|
479 |
+
|
480 |
+
#: src/Mollie/WC/Helper/Settings.php:180
|
481 |
+
msgid "Percentage"
|
482 |
+
msgstr "Percentage"
|
483 |
+
|
484 |
+
#: src/Mollie/WC/Helper/Settings.php:176
|
485 |
+
msgid "Fixed fee"
|
486 |
+
msgstr "Vaste vergoeding"
|
487 |
+
|
488 |
+
#: src/Mollie/WC/Helper/Settings.php:172
|
489 |
+
msgid "No fee"
|
490 |
+
msgstr "Geen vergoeding"
|
491 |
+
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:166
|
493 |
+
msgid "Payment Surcharge"
|
494 |
+
msgstr "Betalingstoeslag"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Helper/Settings.php:150
|
497 |
+
msgid "Upload a custom icon for this gateway. The feature must be enabled."
|
498 |
+
msgstr "Upload een aangepast pictogram voor deze gateway. De functie moet ingeschakeld zijn."
|
499 |
+
|
500 |
+
#: src/Mollie/WC/Helper/Settings.php:143
|
501 |
+
msgid "Upload custom logo"
|
502 |
+
msgstr "Upload aangepast logo"
|
503 |
+
|
504 |
+
#: src/Mollie/WC/Helper/Settings.php:137
|
505 |
+
msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options."
|
506 |
+
msgstr "Schakel de functie in om een aangepast logo toe te voegen aan deze gateway. Deze functie is de eerste keus ten opzichte van andere opties voor het logo."
|
507 |
+
|
508 |
+
#: src/Mollie/WC/Helper/Settings.php:132
|
509 |
+
msgid "Enable custom logo"
|
510 |
+
msgstr "Schakel aangepast logo in"
|
511 |
+
|
512 |
+
#: src/Mollie/WC/Helper/GatewaySurchargeHandler.php:253
|
513 |
+
msgid "Fee"
|
514 |
+
msgstr "Vergoeding"
|
515 |
+
|
516 |
+
#: inc/settings/mollie_applepay_settings.php:106
|
517 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:32
|
518 |
+
msgid "Enable the Apple Pay direct buy button on the Product page"
|
519 |
+
msgstr "Schakel de Apple Pay direct-kopen-knop in op de productpagina"
|
520 |
+
|
521 |
+
#: inc/settings/mollie_applepay_settings.php:103
|
522 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:29
|
523 |
+
msgid "Enable Apple Pay Button on Product page"
|
524 |
+
msgstr "Schakel de Apple Pay knop in op de productpagina"
|
525 |
+
|
526 |
+
#: inc/settings/mollie_applepay_settings.php:91
|
527 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:21
|
528 |
+
msgid "Enable the Apple Pay direct buy button on the Cart page"
|
529 |
+
msgstr "Schakel de Apple Pay direct-kopen-knop in op de winkelwagenpagina"
|
530 |
+
|
531 |
+
#: inc/settings/mollie_applepay_settings.php:88
|
532 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:18
|
533 |
+
msgid "Enable Apple Pay Button on Cart page"
|
534 |
+
msgstr "Schakel de Apple Pay knop in op de winkelwagenpagina"
|
535 |
+
|
536 |
+
#: pluginEnvironmentChecker/EnvironmentChecker.php:49
|
537 |
+
msgid "Validation failed with %1$d errors"
|
538 |
+
msgstr "Validatie mislukt met %1$d errors"
|
539 |
+
|
540 |
+
#: src/Mollie/WC/Plugin.php:591
|
541 |
+
msgid "Mollie Voucher category"
|
542 |
+
msgstr "Mollie-waardeboncategorie"
|
543 |
+
|
544 |
+
#: src/Mollie/WC/Plugin.php:531 src/Mollie/WC/Plugin.php:594
|
545 |
+
msgid "Same as default category"
|
546 |
+
msgstr "Zelfde als standaardcategorie"
|
547 |
+
|
548 |
+
#: src/Mollie/WC/Plugin.php:464 src/Mollie/WC/Plugin.php:487
|
549 |
+
msgid "Select a voucher category to apply to all products with this category"
|
550 |
+
msgstr "Kies een waardeboncategorie om alle producten met deze categorie te gebruiken"
|
551 |
+
|
552 |
+
#: src/Mollie/WC/Plugin.php:430 src/Mollie/WC/Plugin.php:462
|
553 |
+
#: src/Mollie/WC/Plugin.php:485 src/Mollie/WC/Plugin.php:598
|
554 |
+
msgid "Gift"
|
555 |
+
msgstr "Cadeau"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Plugin.php:429 src/Mollie/WC/Plugin.php:461
|
558 |
+
#: src/Mollie/WC/Plugin.php:484 src/Mollie/WC/Plugin.php:597
|
559 |
+
msgid "Eco"
|
560 |
+
msgstr "Eco"
|
561 |
+
|
562 |
+
#: src/Mollie/WC/Plugin.php:428 src/Mollie/WC/Plugin.php:460
|
563 |
+
#: src/Mollie/WC/Plugin.php:483 src/Mollie/WC/Plugin.php:596
|
564 |
+
msgid "Meal"
|
565 |
+
msgstr "Maaltijd"
|
566 |
+
|
567 |
+
#: src/Mollie/WC/Plugin.php:427 src/Mollie/WC/Plugin.php:459
|
568 |
+
#: src/Mollie/WC/Plugin.php:482 src/Mollie/WC/Plugin.php:595
|
569 |
+
msgid "No Category"
|
570 |
+
msgstr "Geen categorie"
|
571 |
+
|
572 |
+
#: src/Mollie/WC/Plugin.php:426 src/Mollie/WC/Plugin.php:458
|
573 |
+
#: src/Mollie/WC/Plugin.php:481
|
574 |
+
msgid "--Please choose an option--"
|
575 |
+
msgstr "--Kies een optie--"
|
576 |
+
|
577 |
+
#: src/Mollie/WC/Plugin.php:423 src/Mollie/WC/Plugin.php:456
|
578 |
+
#: src/Mollie/WC/Plugin.php:478
|
579 |
+
msgid "Mollie Voucher Category"
|
580 |
+
msgstr "Mollie-waardeboncategorie"
|
581 |
+
|
582 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
583 |
+
msgid "Contact Support"
|
584 |
+
msgstr "Neem contact op met onze support afdeling"
|
585 |
+
|
586 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
587 |
+
msgid "Plugin Documentation"
|
588 |
+
msgstr "Plugin documentatie"
|
589 |
+
|
590 |
+
#: src/Mollie/WC/Helper/Settings.php:619
|
591 |
+
msgid "to create a new Mollie account and start receiving payments in a couple of minutes. "
|
592 |
+
msgstr "om een nieuw Mollie-account aan te maken en binnen enkele minuten betalingen te ontvangen."
|
593 |
+
|
594 |
+
#: src/Mollie/WC/Helper/Settings.php:617
|
595 |
+
msgid " Mollie is dedicated to making payments better for WooCommerce. "
|
596 |
+
msgstr "Mollie, om betalingen van WooCommere te verbeteren."
|
597 |
+
|
598 |
+
#: src/Mollie/WC/Helper/Settings.php:616
|
599 |
+
msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie."
|
600 |
+
msgstr "Drop ze gewoon kant en klaar in je WooCommerce webshop met deze krachtige plugin van Mollie."
|
601 |
+
|
602 |
+
#: src/Mollie/WC/Helper/Settings.php:615
|
603 |
+
msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them."
|
604 |
+
msgstr "Integreer snel en daar waar je ze nodig hebt al jouw belangrijkste betalingsmethodes in WooCommerce."
|
605 |
+
|
606 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:147
|
607 |
+
msgid "Advanced"
|
608 |
+
msgstr "Geavanceerd"
|
609 |
+
|
610 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:143
|
611 |
+
msgid "Apple Pay Button"
|
612 |
+
msgstr "Apple Pay knop"
|
613 |
+
|
614 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:138
|
615 |
+
msgid "General"
|
616 |
+
msgstr "Algemeen"
|
617 |
+
|
618 |
+
#: src/Mollie/WC/Gateway/Abstract.php:283
|
619 |
+
msgid "Select none"
|
620 |
+
msgstr "Kies geen"
|
621 |
+
|
622 |
+
#: src/Mollie/WC/Gateway/Abstract.php:282
|
623 |
+
msgid "Select all"
|
624 |
+
msgstr "Kies alles"
|
625 |
+
|
626 |
+
#: src/Mollie/WC/Gateway/Abstract.php:273
|
627 |
+
msgid "Country"
|
628 |
+
msgstr "Land"
|
629 |
+
|
630 |
+
#: src/Mollie/WC/Gateway/Abstract.php:272
|
631 |
+
msgid "Choose countries…"
|
632 |
+
msgstr "Kies landen…"
|
633 |
+
|
634 |
+
#: src/Mollie/WC/Gateway/Abstract.php:244
|
635 |
+
msgid "Return to payments"
|
636 |
+
msgstr "Ga terug naar betalingen"
|
637 |
+
|
638 |
+
#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114
|
639 |
+
msgid "Sell to specific countries"
|
640 |
+
msgstr "Verkoop aan bepaalde landen"
|
641 |
+
|
642 |
+
#: inc/settings/mollie_advanced_settings.php:73
|
643 |
+
msgid "Single Click Payments"
|
644 |
+
msgstr "Betalen met één klik"
|
645 |
+
|
646 |
+
#: inc/settings/mollie_advanced_settings.php:68
|
647 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%1$s</code>. Required if WooCommerce Subscriptions is being used! Read more about <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> and how it improves your conversion."
|
648 |
+
msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor 'Betalen met één klik'? Standaard <code>%1$s</code>. Noodzakelijk als WooCommerce-abonnementen worden gebruikt! Lees meer over <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> en hoe het jouw conversie verbetert."
|
649 |
+
|
650 |
+
#: inc/settings/mollie_advanced_settings.php:6
|
651 |
+
msgid "Mollie advanced settings"
|
652 |
+
msgstr "Geavanceerde Mollie-instellingen"
|
653 |
+
|
654 |
+
#: inc/settings/mollie_applepay_settings.php:84
|
655 |
+
msgid "The following options are required to use the Apple Pay Direct Button"
|
656 |
+
msgstr "De volgende opties zijn noodzakelijk voor het gebruik van de Apple Pay direct-betalen-knop"
|
657 |
+
|
658 |
+
#: inc/settings/mollie_applepay_settings.php:14
|
659 |
+
msgid "The following options are required to use the Apple Pay gateway"
|
660 |
+
msgstr "De volgende opties zijn noodzakelijk voor het gebruik van de Apple Pay gateway"
|
661 |
|
662 |
+
#: inc/settings/mollie_components_enabler.php:8
|
663 |
+
msgid "Use the Mollie Components for this Gateway. Read more about <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> and how it improves your conversion."
|
664 |
+
msgstr "Gebruik de Mollie-componenten voor deze gateway. Lees meer over <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> en hoe het je conversie verbetert."
|
665 |
+
|
666 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:11
|
667 |
+
msgid "The following options are required to use the Apple Pay button"
|
668 |
+
msgstr "De volgende opties zijn vereist voor het gebruik van de Apple Pay knop"
|
669 |
+
|
670 |
+
#: inc/settings/mollie_applepay_settings.php:79
|
671 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
672 |
+
msgid "Apple Pay button settings"
|
673 |
+
msgstr "Instellingen Apple Pay knop"
|
674 |
+
|
675 |
+
#: mollie-payments-for-woocommerce.php:91
|
676 |
+
msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s."
|
677 |
+
msgstr "%1$sMollie Payments voor WooCommerce: API-sleutels ontbreken%2$s stel%3$s hier je API-sleutels in%4$s."
|
678 |
+
|
679 |
+
#: src/Mollie/WC/Plugin.php:541
|
680 |
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."
|
681 |
+
msgstr "Om hiervoor te kunnen zorgen moeten alle producten van de bestelling een categorie hebben. Om het kiezen van een waardebon voor een bepaald product onmogelijk te maken kies je de optie ''Geen categorie''."
|
682 |
|
683 |
+
#: src/Mollie/WC/Plugin.php:524
|
684 |
msgid "Products voucher category"
|
685 |
+
msgstr "Producten waardeboncategorie"
|
686 |
|
687 |
+
#: src/Mollie/WC/Plugin.php:308
|
688 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
689 |
+
msgstr "%1$sMollie Payments voor WooCommerce%2$s de testmodus is actief, %3$s schakel deze uit%4$s voordat hij wordt geïmplementeerd."
|
690 |
|
691 |
+
#: src/Mollie/WC/Helper/Settings.php:654 src/Mollie/WC/Plugin.php:391
|
692 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:11
|
693 |
msgid "Mollie Settings"
|
694 |
msgstr "Mollie-instellingen"
|
695 |
|
705 |
|
706 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
707 |
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"
|
708 |
+
msgstr "Om hiervoor te kunnen zorgen moeten alle producten van de bestelling een categorie hebben. De keuzeschakelaar zal de standaard categorie toewijzen voor de winkelproducten"
|
709 |
|
710 |
+
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:520
|
711 |
msgid "Select the default products category"
|
712 |
+
msgstr "Kies de standaard productencategorie"
|
713 |
|
714 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:40
|
715 |
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"
|
716 |
+
msgstr "Schakel deze optie in wanneer je de mogelijkheid wilt hebben om een aantal dagen in te stellen waarna de betaling vervalt. Deze zet alle transacties om in betalingen in plaats van bestellingen"
|
717 |
|
718 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:39
|
719 |
+
#: src/Mollie/WC/Helper/Settings.php:245
|
720 |
msgid "Enable expiry date for payments"
|
721 |
+
msgstr "Schakel vervaldatum voor betalingen in"
|
722 |
|
723 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:38
|
724 |
+
#: src/Mollie/WC/Helper/Settings.php:244
|
725 |
msgid "Activate expiry date setting"
|
726 |
+
msgstr "Schakel instellingen vervaldatum in"
|
727 |
|
728 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2178
|
729 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
730 |
msgid " Remainder: %1$s %2$s %3$s."
|
731 |
+
msgstr " Overige: %1$s %2$s %3$s."
|
732 |
|
733 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2166
|
734 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
735 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
736 |
+
msgstr "Mollie - gegevens cadeaubon: %1$s %2$s %3$s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
|
738 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54
|
739 |
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"
|
740 |
+
msgstr "%1$sApple Pay validatiefout%2$s Lees %3$sde pagina met Apple serververeisten%4$s om de Apple Pay knop te laten werken"
|
741 |
|
742 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39
|
743 |
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"
|
744 |
+
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"
|
745 |
|
746 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
747 |
msgid "Show Mastercard Icon"
|
748 |
+
msgstr "Laat Mastercard pictogram zien"
|
749 |
|
750 |
#: inc/settings/mollie_components.php:94
|
751 |
msgctxt "Mollie Components Settings"
|
760 |
#: inc/settings/mollie_components.php:72
|
761 |
msgctxt "Mollie Components Settings"
|
762 |
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
763 |
+
msgstr "Voeg vulling toe aan de componenten. '16px 16px 16px 16px' en 'em', 'px', 'rem' eenheden zijn toegestaan."
|
764 |
|
765 |
#: inc/settings/mollie_components.php:35
|
766 |
msgctxt "Mollie Components Settings"
|
767 |
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
768 |
+
msgstr "Bepaalt de lettergrootte van het component. 'em', 'px', 'rem' eenheden zijn toegestaan."
|
769 |
|
770 |
#: inc/settings/mollie_creditcard_icons_selector.php:51
|
771 |
msgid "Show VPay Icon"
|
772 |
+
msgstr "Laat VPay pictogram zien"
|
773 |
|
774 |
#: inc/settings/mollie_creditcard_icons_selector.php:46
|
775 |
msgid "Show Visa Icon"
|
776 |
+
msgstr "Laat Visa pictogram zien"
|
777 |
|
778 |
#: inc/settings/mollie_creditcard_icons_selector.php:36
|
779 |
msgid "Show Maestro Icon"
|
780 |
+
msgstr "Laat Maestro pictogram zien"
|
781 |
|
782 |
#: inc/settings/mollie_creditcard_icons_selector.php:31
|
783 |
msgid "Show Carte Bancaire Icon"
|
784 |
+
msgstr "Laat Carte Bancaire pictogram zien"
|
785 |
|
786 |
#: inc/settings/mollie_creditcard_icons_selector.php:26
|
787 |
msgid "Show Carta Si Icon"
|
788 |
+
msgstr "Laat Carta Si pictogram zien"
|
789 |
|
790 |
#: inc/settings/mollie_creditcard_icons_selector.php:21
|
791 |
msgid "Show American Express Icon"
|
792 |
+
msgstr "Laat American Express pictogram zien"
|
793 |
|
794 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
795 |
msgid "Show customized creditcard icons on checkout page"
|
796 |
+
msgstr "Laat aangepaste creditcardpictogrammen op de checkout pagina zien"
|
797 |
|
798 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
799 |
msgid "Enable Icons Selector"
|
800 |
+
msgstr "Schakel picotogramselectie in"
|
801 |
|
802 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
803 |
msgid "Customize Icons"
|
804 |
msgstr "Pas pictogrammen aan"
|
805 |
|
806 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
807 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2129
|
808 |
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)."
|
809 |
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)."
|
810 |
|
811 |
+
#: src/Mollie/WC/Gateway/Abstract.php:590
|
812 |
msgid "Failed switching subscriptions, no valid mandate."
|
813 |
+
msgstr "Abonnementen switchen mislukt, geen geldig mandaat"
|
|
|
|
|
|
|
|
|
814 |
|
815 |
#: inc/settings/mollie_components_enabler.php:6
|
816 |
msgid "Enable Mollie Components"
|
817 |
+
msgstr "Schakel Mollie-componenten in"
|
818 |
|
819 |
#: inc/settings/mollie_components.php:157
|
820 |
msgctxt "Mollie Components Settings"
|
821 |
msgid "Background Color for invalid input."
|
822 |
+
msgstr "Achtergrondkleur voor ongeldige invoer."
|
823 |
|
824 |
#: inc/settings/mollie_components.php:146
|
825 |
msgctxt "Mollie Components Settings"
|
826 |
msgid "Text Color for invalid input."
|
827 |
+
msgstr "Tekstkleur voor ongeldige invoer."
|
828 |
|
829 |
#: inc/settings/mollie_components.php:136
|
830 |
msgctxt "Mollie Components Settings"
|
864 |
#: inc/settings/mollie_components.php:88
|
865 |
msgctxt "Mollie Components Settings"
|
866 |
msgid "Justify"
|
867 |
+
msgstr "Rechtvaardigen"
|
868 |
|
869 |
#: inc/settings/mollie_components.php:87
|
870 |
msgctxt "Mollie Components Settings"
|
871 |
msgid "Center"
|
872 |
+
msgstr "Centrum"
|
873 |
|
874 |
#: inc/settings/mollie_components.php:86
|
875 |
msgctxt "Mollie Components Settings"
|
941 |
msgid "Base Styles"
|
942 |
msgstr "Basisstijlen"
|
943 |
|
944 |
+
#: src/Mollie/WC/Plugin.php:950
|
945 |
msgid "An unknown error occurred, please check the card fields."
|
946 |
msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden."
|
947 |
|
948 |
+
#: src/Mollie/WC/Plugin.php:943
|
949 |
msgid "Verification Code"
|
950 |
msgstr "Verificatiecode"
|
951 |
|
952 |
+
#: src/Mollie/WC/Plugin.php:939
|
953 |
msgid "Expiry Date"
|
954 |
msgstr "Vervaldatum"
|
955 |
|
956 |
+
#: src/Mollie/WC/Plugin.php:935
|
957 |
msgid "Card Number"
|
958 |
msgstr "Kaartnummer"
|
959 |
|
960 |
+
#: src/Mollie/WC/Plugin.php:931
|
961 |
msgid "Card Holder"
|
962 |
msgstr "Kaarthouder"
|
963 |
|
964 |
+
#: inc/settings/mollie_components_enabler.php:12
|
965 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
966 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:139
|
967 |
msgid "Mollie Components"
|
968 |
msgstr "Mollie-componenten"
|
969 |
|
970 |
+
#: src/Mollie/WC/Plugin.php:757
|
971 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
972 |
msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie."
|
973 |
|
974 |
+
#: src/Mollie/WC/Plugin.php:739
|
975 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
976 |
msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie."
|
977 |
|
978 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
979 |
msgid "Empty WooCommerce order items or mollie order lines."
|
980 |
+
msgstr "Lege WooCommerce bestelartikelen of Mollie-bestelregels."
|
981 |
|
982 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
983 |
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
987 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
988 |
msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld."
|
989 |
|
990 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119
|
991 |
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."
|
992 |
+
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."
|
993 |
|
994 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145
|
996 |
msgid "Order completed using %1$s payment (%2$s)."
|
997 |
msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)."
|
998 |
|
1025 |
|
1026 |
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
1027 |
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
1028 |
+
msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail van de klant noodzakelijk."
|
1029 |
|
1030 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
1031 |
msgid "Przelewy24"
|
1032 |
msgstr "Przelewy24 "
|
1033 |
|
1034 |
+
#: src/Mollie/WC/Helper/Status.php:89
|
1035 |
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."
|
1036 |
+
msgstr "Voor Mollie-betalingen voor WooCommerce is de JSON extensie voor PHP verplicht. Schakel dit in op je server of vraag je webhost om dit voor jou te doen."
|
1037 |
|
1038 |
+
#: src/Mollie/WC/Payment/Order.php:836
|
1039 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
1040 |
msgstr "Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s. "
|
1041 |
|
1042 |
+
#: src/Mollie/WC/Payment/Order.php:758
|
1043 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
1044 |
msgstr "%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s. "
|
1045 |
|
1046 |
+
#: src/Mollie/WC/Payment/Order.php:742
|
1047 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
1048 |
msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie. "
|
1049 |
|
1050 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1051 |
+
#: src/Mollie/WC/Payment/Order.php:361
|
1052 |
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!"
|
1053 |
+
msgstr "Bestelling voltooid bij Mollie voor %s bestelling (%s). Ten minste één bestelregel voltooid. Let op: een voltooide status voor een bestelling bij Mollie is niet hetzelfde als een voltooide status in WooCommerce!"
|
1054 |
|
1055 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1238
|
1057 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
1058 |
+
msgstr "%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet, bekijk opnieuw (en pas productvoorraden aan als je dit gebruikt)."
|
1059 |
|
|
|
|
|
|
|
|
|
|
|
1060 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
1061 |
msgid "Order"
|
1062 |
msgstr "Bestelling"
|
1067 |
msgstr "%s betaling (%s) geannuleerd."
|
1068 |
|
1069 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1070 |
+
#: src/Mollie/WC/Payment/Order.php:931
|
1071 |
msgid "%s order (%s) expired ."
|
1072 |
msgstr "%s bestelling (%s) verlopen."
|
1073 |
|
1074 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1075 |
+
#: src/Mollie/WC/Payment/Order.php:509
|
1076 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
1077 |
+
msgstr "%s bestelling verlopen (%s) maar niet geannuleerd door een andere betaling die nog in behandeling is (%s)."
|
1078 |
|
1079 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1080 |
+
#: src/Mollie/WC/Payment/Order.php:444
|
1081 |
msgid "%s order (%s) cancelled ."
|
1082 |
msgstr "%s bestelling (%s) geannuleerd."
|
1083 |
|
1084 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1085 |
+
#: src/Mollie/WC/Payment/Order.php:314
|
1086 |
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."
|
1087 |
+
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. Verwerk de bestelling via het Mollie-dashboard, zodat je afzonderlijke bestelregels af kunt handelen. "
|
|
|
|
|
|
|
|
|
1088 |
|
1089 |
+
#: inc/settings/mollie_advanced_settings.php:57
|
1090 |
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."
|
1091 |
+
msgstr "Het verzenden van een taal (of locatie) is noodzakelijk. 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 mislukt, of als de taal niet wordt ondersteund, valt het terug op Amerikaans-Engels. Je kunt ook een van de op dit moment door Mollie ondersteunde locaties kiezen. Deze worden dan voor alle klanten gebruikt."
|
1092 |
|
1093 |
+
#: inc/settings/mollie_advanced_settings.php:26
|
1094 |
msgid "Automatically send WordPress language"
|
1095 |
msgstr "Automatisch verzenden van WordPress-taal"
|
1096 |
|
1097 |
+
#: inc/settings/mollie_advanced_settings.php:18
|
1098 |
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."
|
1099 |
+
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. Zet deze op 'Geannuleerd' als je maar één betaalmethode hebt of als je niet wilt dat klanten opnieuw proberen te betalen met een andere betaalmethode. Dit geldt niet voor betalingen voor bestellingen via de nieuwe Bestellingen API en Klarna betalingen."
|
1100 |
|
1101 |
+
#: src/Mollie/WC/Helper/OrderLines.php:497
|
1102 |
msgid "Shipping"
|
1103 |
msgstr "Verzending"
|
1104 |
|
1105 |
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
1106 |
msgid "Klarna Slice it"
|
1107 |
+
msgstr "Klarna Slice it"
|
1108 |
|
1109 |
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
1110 |
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
1111 |
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
1112 |
+
msgstr "Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-afrekenvelden zijn ingeschakeld en verplicht zijn."
|
1113 |
|
1114 |
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
1115 |
msgid "Klarna Pay later"
|
1125 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
1126 |
msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, jij hebt PHP %s. Installeer de upgrade en bekijk %sdeze FAQ%s"
|
1127 |
|
1128 |
+
#: src/Mollie/WC/Helper/Settings.php:825
|
1129 |
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."
|
1130 |
+
msgstr "Je hebt de WooCommerce standaard Direct Bank Transfer (BACS) betalingsgateway ingeschakeld in WooCommerce. Mollie adviseert je dringend om alleen Bank Transfer via Mollie te gebruiken en de standaard WooCommerce BACS betalingsgateway uit te schakelen om mogelijke conflicten te voorkomen. "
|
1131 |
|
1132 |
+
#: src/Mollie/WC/Helper/Settings.php:801
|
1133 |
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."
|
1134 |
+
msgstr "Je hebt WooCommerce-abonnementen ingeschakeld, maar niet SEPA-incasso. Schakel SEPA-incasso in als je klanten wilt toestaan abonnementen met iDEAL en/of andere 'eerste' betaalmethoden te betalen. "
|
1135 |
|
1136 |
+
#: inc/settings/mollie_advanced_settings.php:54
|
1137 |
msgid "Lithuanian"
|
1138 |
msgstr "Litouws"
|
1139 |
|
1140 |
+
#: inc/settings/mollie_advanced_settings.php:53
|
1141 |
msgid "Latvian"
|
1142 |
msgstr "Lets"
|
1143 |
|
1144 |
+
#: inc/settings/mollie_advanced_settings.php:52
|
1145 |
msgid "Polish"
|
1146 |
msgstr "Pools"
|
1147 |
|
1148 |
+
#: inc/settings/mollie_advanced_settings.php:51
|
1149 |
msgid "Hungarian"
|
1150 |
msgstr "Hongaars"
|
1151 |
|
1152 |
+
#: inc/settings/mollie_advanced_settings.php:50
|
1153 |
msgid "Icelandic"
|
1154 |
+
msgstr "IJslands"
|
1155 |
|
1156 |
+
#: inc/settings/mollie_advanced_settings.php:49
|
1157 |
msgid "Danish"
|
1158 |
msgstr "Deens"
|
1159 |
|
1160 |
+
#: inc/settings/mollie_advanced_settings.php:48
|
1161 |
msgid "Finnish"
|
1162 |
msgstr "Fins"
|
1163 |
|
1164 |
+
#: inc/settings/mollie_advanced_settings.php:47
|
1165 |
msgid "Swedish"
|
1166 |
msgstr "Zweeds"
|
1167 |
|
1168 |
+
#: inc/settings/mollie_advanced_settings.php:46
|
1169 |
msgid "Norwegian"
|
1170 |
msgstr "Noors"
|
1171 |
|
1172 |
+
#: inc/settings/mollie_advanced_settings.php:45
|
1173 |
msgid "Italian"
|
1174 |
msgstr "Italiaans"
|
1175 |
|
1176 |
+
#: inc/settings/mollie_advanced_settings.php:44
|
1177 |
msgid "Portuguese"
|
1178 |
msgstr "Portugees"
|
1179 |
|
1180 |
+
#: inc/settings/mollie_advanced_settings.php:43
|
1181 |
msgid "Catalan"
|
1182 |
+
msgstr "Catalaans"
|
1183 |
|
1184 |
+
#: inc/settings/mollie_advanced_settings.php:41
|
1185 |
msgid "Swiss German"
|
1186 |
msgstr "Zwitserduits"
|
1187 |
|
1188 |
+
#: inc/settings/mollie_advanced_settings.php:40
|
1189 |
msgid "Austrian German"
|
1190 |
msgstr "Oostenrijks-Duits"
|
1191 |
|
1192 |
+
#: src/Mollie/WC/Helper/Api.php:42
|
1193 |
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."
|
1194 |
+
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."
|
1195 |
|
1196 |
+
#: src/Mollie/WC/Helper/Api.php:40
|
1197 |
msgid "No API key provided. Please set your Mollie API keys below."
|
1198 |
+
msgstr "Geen API-sleutel geleverd. Stel hieronder je Mollie API-sleutels in."
|
1199 |
|
1200 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
1201 |
msgid "Giropay"
|
1206 |
msgstr "EPS"
|
1207 |
|
1208 |
#. translators: Placeholder 1: Payment method title
|
1209 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:314
|
1210 |
msgid "Could not create %s renewal payment."
|
1211 |
+
msgstr "Kon geen %s nieuwe betaling aanmaken. "
|
1212 |
|
1213 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:271
|
1214 |
msgid "The customer (%s) does not have a valid mandate."
|
1215 |
msgstr "De klant (%s) heeft geen geldig mandaat."
|
1216 |
|
1217 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:262
|
1218 |
msgid "The customer (%s) could not be used or found. "
|
1219 |
msgstr "De klant (%s) kon niet gebruikt of gevonden worden."
|
1220 |
|
1221 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
1222 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
1223 |
#. placeholder 5: refund ID
|
1224 |
+
#: src/Mollie/WC/Payment/Payment.php:511
|
1225 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
1226 |
msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s"
|
1227 |
|
1228 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1229 |
+
#: src/Mollie/WC/Payment/Object.php:637
|
1230 |
msgid "%s payment failed via Mollie (%s)."
|
1231 |
msgstr "%s betaling mislukt via Mollie (%s)."
|
1232 |
|
1233 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1145
|
1234 |
msgid "New chargeback %s processed! Order note and order status updated."
|
1235 |
msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt."
|
1236 |
|
1237 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1009
|
1238 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
1239 |
+
msgstr "Nieuwe terugbetaling %s verwerkt in het Mollie-dashboard. Bestelnota toegevoegd, maar bestelling niet geüpdatet."
|
1240 |
|
1241 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
1242 |
#. Mollie currencies
|
1243 |
+
#: src/Mollie/WC/Gateway/Abstract.php:364
|
1244 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
1245 |
+
msgstr "Huidige shopvaluta %s wordt niet ondersteund door Mollie. Lees meer over %sondersteunde valuta's en betaalmethoden.%s"
|
|
|
|
|
|
|
|
|
1246 |
|
1247 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1248 |
+
#: src/Mollie/WC/Payment/Object.php:677
|
|
|
1249 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
1250 |
+
msgstr "Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de bestelstatus is niet geüpdatet. "
|
|
|
|
|
|
|
|
|
|
|
1251 |
|
1252 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1329
|
1253 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1338
|
1254 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
1255 |
+
msgstr "Je betaling is mislukt. Rond je bestelling af met een andere betaalmethode. "
|
1256 |
|
1257 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1258 |
+
#: src/Mollie/WC/Payment/Object.php:603
|
1259 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
1260 |
+
msgstr "%s nieuwe betaling mislukt via Mollie (%s). Je moet de betaling handmatig controleren en de productvoorraden aanpassen als je deze gebruikt."
|
1261 |
|
1262 |
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
1263 |
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
1265 |
msgstr "Bancontact"
|
1266 |
|
1267 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1268 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1617
|
1269 |
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."
|
1270 |
+
msgstr "%s de betaling is nog steeds in behandeling (%s) maar de klant is al teruggekeerd naar de shop. De status moet in de toekomst automatisch worden bijgewerkt. Als dat niet gebeurt, kan het zijn dat er een communicatieprobleem is tussen de site en Mollie."
|
1271 |
|
1272 |
+
#: src/Mollie/WC/Gateway/Abstract.php:589
|
1273 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
1274 |
+
msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats een hele nieuwe bestelling om je abonnement te wijzigen."
|
|
|
|
|
|
|
|
|
1275 |
|
1276 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1277 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1177
|
1278 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
1279 |
msgstr "%s betaling teruggevorderd via Mollie (%s). Je moet de betaling handmatig controleren (en productvoorraden aanpassen als je dit gebruikt)."
|
1280 |
|
1281 |
+
#: src/Mollie/WC/Gateway/Kbc.php:40
|
1282 |
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."
|
1283 |
+
msgstr "Deze tekst krijg je te zien als eerste optie in de KBC/CBC-uitgevers drop-down, als er niets wordt ingevoerd, wordt 'Kies je bank' weergegeven. Maar alleen als de hierboven genoemde 'Toon KBC/CBC-banken dropdown' is ingeschakeld."
|
1284 |
|
1285 |
#: src/Mollie/WC/Gateway/Kbc.php:34
|
1286 |
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."
|
1287 |
+
msgstr "Als je dit inschakelt, krijg je geen dropdown met verschillende KBC/CBC-banken te zien in de WooCommerce- checkout, dus gebruikers zullen na de checkout een KBC/CBC-bank kiezen op de Mollie-betaalpagina."
|
1288 |
|
1289 |
#: src/Mollie/WC/Gateway/Kbc.php:32
|
1290 |
msgid "Show KBC/CBC banks dropdown"
|
1291 |
+
msgstr "Laat KBC/CBC-banken dropdown zien"
|
1292 |
|
1293 |
#: src/Mollie/WC/Gateway/Ideal.php:41
|
1294 |
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."
|
1295 |
+
msgstr "Deze tekst krijg je te zien als eerste optie in de IDEAL-uitgevers dropdown, als er niets wordt ingevoerd, wordt 'Kies je bank' weergegeven. Maar alleen als de hierboven genoemde 'Toon IDEAL-banken dropdown' is ingeschakeld."
|
1296 |
|
1297 |
+
#: src/Mollie/WC/Gateway/Ideal.php:35
|
1298 |
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."
|
1299 |
+
msgstr "Als je dit inschakelt, krijg je geen dropdown met verschillende IDEAL-banken te zien in de WooCommerce- checkout, dus gebruikers zullen na de checkout een IDEAL-bank kiezen op de Mollie-betaalpagina."
|
1300 |
|
1301 |
+
#: src/Mollie/WC/Gateway/Ideal.php:33
|
1302 |
msgid "Show iDEAL banks dropdown"
|
1303 |
+
msgstr "Laat iDEAL-banken dropdown zien"
|
1304 |
|
1305 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:39
|
1306 |
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."
|
1307 |
+
msgstr "Deze tekst krijg je te zien als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is ingeschakeld."
|
1308 |
|
1309 |
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
1310 |
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."
|
1311 |
+
msgstr "Als je deze inschakelt, krijg je geen dropdown met verschillende cadeaubonnen te zien in de WooCommerce- checkout, dus gebruikers zullen na de checkout een cadeaubon kiezen op de Mollie-betaalpagina."
|
1312 |
|
1313 |
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
1314 |
msgid "Show gift cards dropdown"
|
1315 |
+
msgstr "Laat cadeaubonnen-dropdown zien"
|
1316 |
|
1317 |
+
#: src/Mollie/WC/Gateway/Abstract.php:578
|
1318 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
1319 |
+
msgstr "Bestelling intern voltooid doordat er bij Mollie een bestaand geldig mandaat is."
|
|
|
|
|
|
|
|
|
1320 |
|
1321 |
+
#: inc/settings/mollie_advanced_settings.php:16
|
|
|
|
|
|
|
|
|
1322 |
msgid "Cancelled"
|
1323 |
msgstr "Geannuleerd"
|
1324 |
|
1325 |
+
#: inc/settings/mollie_advanced_settings.php:15
|
1326 |
msgid "Pending"
|
1327 |
msgstr "In behandeling"
|
1328 |
|
1329 |
+
#: inc/settings/mollie_advanced_settings.php:12
|
1330 |
msgid "Order status after cancelled payment"
|
1331 |
msgstr "Bestelstatus na geannuleerde betaling"
|
1332 |
|
1333 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
1334 |
#. placeholder 3: consumer BIC
|
1335 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
1336 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124
|
1337 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
|
|
|
|
1338 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
1339 |
+
msgstr "Betaling voltooid met <strong>%s</strong> (IBAN (ten minste 4 cijfers): %s, BIC: %s)"
|
1340 |
|
1341 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1653
|
1342 |
msgid "Your order has been cancelled."
|
1343 |
+
msgstr "Jouw bestelling is geannuleerd."
|
1344 |
|
1345 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1626
|
1346 |
msgid ", payment pending."
|
1347 |
msgstr ", betaling in behandeling."
|
1348 |
|
1349 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1590
|
1350 |
msgid "Order cancelled"
|
1351 |
msgstr "Bestelling geannuleerd"
|
1352 |
|
1353 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
1354 |
#. status, placeholder 3: payment ID
|
1355 |
+
#: src/Mollie/WC/Gateway/Abstract.php:895
|
1356 |
msgid "%s payment %s (%s), not processed."
|
1357 |
msgstr "%s betaling %s (%s), niet verwerkt."
|
1358 |
|
1359 |
#. translators: Default gift card dropdown description, displayed above issuer
|
1360 |
#. drop down
|
1361 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:74
|
1362 |
msgid "Select your gift card"
|
1363 |
+
msgstr "Kies je cadeaubon"
|
1364 |
|
1365 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:58
|
1366 |
msgid "Gift cards"
|
1367 |
msgstr "Cadeaubonnen"
|
1368 |
|
1369 |
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
1370 |
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."
|
1371 |
+
msgstr "SEPA-incasso wordt gebruikt voor terugkerende 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 inschakelen als je SEPA-incasso wilt gebruiken."
|
1372 |
|
1373 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1374 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:165
|
1375 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
1376 |
+
msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, omdat het verwerken van een SEPA-incassobetaling wat tijd kost."
|
1377 |
|
1378 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1379 |
+
#: src/Mollie/WC/Payment/Payment.php:406
|
1380 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
1381 |
+
msgstr "%s betaling verlopen (%s) maar niet geannuleerd door een andere betaling die nog in behandeling is (%s)."
|
1382 |
|
1383 |
+
#: src/subscriptions_status_check_functions.php:186
|
1384 |
msgid "There are still some subscriptions left, use the tool again!"
|
1385 |
+
msgstr "Er zijn nog enkele abonnementen over, gebruik de tool opnieuw!"
|
1386 |
|
1387 |
+
#: src/subscriptions_status_check_functions.php:184
|
1388 |
msgid "No more subscriptions left to process!"
|
1389 |
+
msgstr "Geen abonnementen meer over om te verwerken!"
|
1390 |
|
1391 |
+
#: src/subscriptions_status_check_functions.php:171
|
1392 |
msgid "No subscriptions updated in this batch."
|
1393 |
msgstr "Geen abonnementen geüpdatet in deze batch."
|
1394 |
|
1395 |
+
#: src/subscriptions_status_check_functions.php:147
|
1396 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
1397 |
+
msgstr "Abonnement niet geüpdatet omdat er bij Mollie geen geldig mandaat was. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
1398 |
|
1399 |
+
#: src/subscriptions_status_check_functions.php:133
|
1400 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
1401 |
+
msgstr "Abonnement geüpdatet naar 'Geautomatiseerde vernieuwing' via Mollie, status ingesteld op 'Actief'. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
1402 |
|
1403 |
#: src/subscriptions_status_check_functions.php:36
|
1404 |
msgid "Check subscriptions status"
|
1412 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
1413 |
msgstr "Controles op abonnementen die verkeerd zijn ingesteld op 'Handmatige vernieuwing'. Lees eerst de"
|
1414 |
|
1415 |
+
#: inc/settings/mollie_advanced_settings.php:65
|
1416 |
msgid "Store customer details at Mollie"
|
1417 |
+
msgstr "'Klantgegevens opslaan' bij Mollie"
|
1418 |
|
1419 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1420 |
+
#: src/Mollie/WC/Plugin.php:130
|
1421 |
msgid "%s payment failed (%s)."
|
1422 |
msgstr "%s betaling mislukt (%s)."
|
1423 |
|
1424 |
+
#: src/Mollie/WC/Gateway/Kbc.php:59
|
1425 |
msgid "KBC/CBC Payment Button"
|
1426 |
+
msgstr "KBC/CBC betaalknop"
|
1427 |
|
1428 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:37 src/Mollie/WC/Gateway/Ideal.php:39
|
1429 |
+
#: src/Mollie/WC/Gateway/Kbc.php:38
|
1430 |
msgid "Issuers empty option"
|
1431 |
msgstr "Optie uitgevers leeg"
|
1432 |
|
1433 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:58
|
1434 |
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."
|
1435 |
+
msgstr "Schakel deze optie in 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."
|
1436 |
|
1437 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:57
|
1438 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
1439 |
+
msgstr "Sla het Mollie-betaalscherm over wanneer bankoverschrijving is gekozen."
|
1440 |
|
1441 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:56
|
1442 |
msgid "Skip Mollie payment screen"
|
1443 |
msgstr "Mollie-betaalscherm overslaan"
|
1444 |
|
1459 |
msgid "Mollie Payments for WooCommerce"
|
1460 |
msgstr "Mollie-betalingen voor WooCommerce"
|
1461 |
|
1462 |
+
#: src/Mollie/WC/Plugin.php:1320
|
1463 |
msgid "Logs"
|
1464 |
msgstr "Logs"
|
1465 |
|
1466 |
#: src/Mollie/WC/Helper/Status.php:123
|
1467 |
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
1468 |
+
msgstr "Mollie-betalingen voor WooCommerce stellen verplicht dat de PHP-extensie cURL is ingeschakeld. Schakel de 'curl' extensie in je PHP-configuratie in."
|
1469 |
|
1470 |
#: src/Mollie/WC/Helper/Status.php:116
|
1471 |
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
1472 |
+
msgstr "Mollie-betalingen voor WooCommerce stellen verplicht dat de PHP-extensie JSON is ingeschakeld. Schakel de 'json' extensie in je PHP-configuratie in."
|
1473 |
|
1474 |
#: src/Mollie/WC/Helper/Status.php:80
|
1475 |
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
1479 |
#. version, placeholder 3: used WooCommerce version
|
1480 |
#: src/Mollie/WC/Helper/Status.php:67
|
1481 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
1482 |
+
msgstr "Voor de %s plugin is ten minste WooCommerce versie %sverplicht, jij gebruikt versie %s. Update je WooCommerce plugin."
|
1483 |
|
1484 |
+
#: src/Mollie/WC/Helper/Settings.php:698
|
1485 |
msgid "Debug Log"
|
1486 |
msgstr "Debug-log"
|
1487 |
|
1488 |
+
#: inc/settings/mollie_advanced_settings.php:38
|
1489 |
msgid "French (Belgium)"
|
1490 |
msgstr "Frans (België)"
|
1491 |
|
1492 |
+
#: inc/settings/mollie_advanced_settings.php:37
|
1493 |
msgid "French"
|
1494 |
msgstr "Frans"
|
1495 |
|
1496 |
+
#: inc/settings/mollie_advanced_settings.php:42
|
1497 |
msgid "Spanish"
|
1498 |
msgstr "Spaans"
|
1499 |
|
1500 |
+
#: inc/settings/mollie_advanced_settings.php:39
|
1501 |
msgid "German"
|
1502 |
msgstr "Duits"
|
1503 |
|
1504 |
+
#: inc/settings/mollie_advanced_settings.php:34
|
1505 |
msgid "English"
|
1506 |
msgstr "Engels"
|
1507 |
|
1508 |
+
#: inc/settings/mollie_advanced_settings.php:36
|
1509 |
msgid "Flemish (Belgium)"
|
1510 |
msgstr "Vlaams (België)"
|
1511 |
|
1512 |
+
#: inc/settings/mollie_advanced_settings.php:35
|
1513 |
msgid "Dutch"
|
1514 |
msgstr "Nederlands"
|
1515 |
|
1516 |
+
#: inc/settings/mollie_advanced_settings.php:30
|
1517 |
msgid "Detect using browser language"
|
1518 |
msgstr "Detecteren met gebruik van browser-taal"
|
1519 |
|
1520 |
+
#: inc/settings/mollie_advanced_settings.php:23
|
1521 |
msgid "Payment screen language"
|
1522 |
msgstr "Taal van betaalscherm"
|
1523 |
|
1524 |
+
#: src/Mollie/WC/Helper/Settings.php:694
|
1525 |
msgid "Test API key should start with test_"
|
1526 |
msgstr "Test API-sleutel moet beginnen met test_"
|
1527 |
|
1528 |
+
#: src/Mollie/WC/Helper/Settings.php:683
|
1529 |
msgid "Test API key"
|
1530 |
msgstr "Test API-sleutel"
|
1531 |
|
1532 |
+
#: src/Mollie/WC/Helper/Settings.php:679
|
1533 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
1534 |
+
msgstr "Schakel de testmodus in als je de plugin wilt testen zonder echte betalingen te gebruiken."
|
1535 |
|
1536 |
+
#: src/Mollie/WC/Helper/Settings.php:676
|
1537 |
msgid "Enable test mode"
|
1538 |
+
msgstr "Schakel de testmodus in"
|
1539 |
|
1540 |
+
#: src/Mollie/WC/Helper/Settings.php:672
|
1541 |
msgid "Live API key should start with live_"
|
1542 |
msgstr "Live API-sleutel moet beginnen met live_"
|
1543 |
|
1544 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
1545 |
#. %s's Will be replaced by a link to the Mollie profile
|
1546 |
+
#: src/Mollie/WC/Helper/Settings.php:666 src/Mollie/WC/Helper/Settings.php:688
|
1547 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
1548 |
msgstr "De API-sleutel wordt gebruikt om verbinding te maken met Mollie. Je vindt je <strong>%s</strong> API-sleutel in je %sMollie-profiel%s"
|
1549 |
|
1550 |
+
#: src/Mollie/WC/Helper/Settings.php:661
|
1551 |
msgid "Live API key"
|
1552 |
msgstr "Live API-sleutel"
|
1553 |
|
1554 |
+
#: inc/settings/mollie_advanced_settings.php:8
|
1555 |
+
#: src/Mollie/WC/Helper/Settings.php:657
|
1556 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
1557 |
+
msgstr "De volgende opties zijn noodzakelijk om de plugin te gebruiken en worden door alle Mollie-betaalmethoden gebruikt"
|
1558 |
|
1559 |
+
#: src/Mollie/WC/Plugin.php:1314
|
1560 |
msgid "Mollie settings"
|
1561 |
msgstr "Mollie-instellingen"
|
1562 |
|
1563 |
+
#: src/Mollie/WC/Helper/Settings.php:641
|
|
|
1564 |
msgid "Log files are saved to <code>%s</code>"
|
1565 |
msgstr "Logbestanden worden opgeslagen in <code>%s</code>"
|
1566 |
|
1567 |
+
#: src/Mollie/WC/Helper/Settings.php:635
|
|
|
|
|
|
|
|
|
1568 |
msgid "Log plugin events."
|
1569 |
+
msgstr "Log plugin-gebeurtenissen."
|
1570 |
|
1571 |
+
#: src/Mollie/WC/Helper/Settings.php:582
|
1572 |
msgid "Edit"
|
1573 |
msgstr "Bewerken"
|
1574 |
|
1575 |
+
#: src/Mollie/WC/Helper/Settings.php:559
|
1576 |
msgid "Refresh"
|
1577 |
msgstr "Vernieuwen"
|
1578 |
|
1579 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
1580 |
#. profile
|
1581 |
+
#: src/Mollie/WC/Helper/Settings.php:550
|
1582 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
1583 |
+
msgstr "De volgende betaalmethoden zijn ingeschakeld in je %sMollie-profiel%s:"
|
1584 |
|
1585 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1586 |
msgid "Gateway disabled"
|
1587 |
+
msgstr "Gateway uitgeschakeld"
|
1588 |
|
1589 |
+
#: inc/settings/mollie_advanced_settings.php:72
|
1590 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1591 |
msgid "Enabled"
|
1592 |
+
msgstr "Ingeschakeld"
|
1593 |
|
1594 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1595 |
msgid "Gateway enabled"
|
1596 |
+
msgstr "Gateway ingeschakeld"
|
1597 |
|
1598 |
+
#: src/Mollie/WC/Helper/Settings.php:495
|
1599 |
msgid "Connected"
|
1600 |
msgstr "Verbonden"
|
1601 |
|
1602 |
+
#: src/Mollie/WC/Helper/Settings.php:494
|
1603 |
msgid "Mollie status:"
|
1604 |
msgstr "Mollie-status:"
|
1605 |
|
1606 |
+
#: src/Mollie/WC/Helper/Settings.php:481
|
1607 |
msgid "Error"
|
1608 |
msgstr "Fout"
|
1609 |
|
1610 |
+
#: src/Mollie/WC/Helper/Data.php:477
|
1611 |
msgid "Item #%s stock incremented from %s to %s."
|
1612 |
+
msgstr "Artikel #%s voorraad verhoogd van %s naar %s."
|
1613 |
|
1614 |
#: src/Mollie/WC/Gateway/Sofort.php:33
|
1615 |
msgid "SOFORT Banking"
|
1621 |
|
1622 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1623 |
#. email, placeholder 3: PayPal transaction ID
|
1624 |
+
#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695
|
1625 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1626 |
msgstr "Betaling voltooid met <strong>%s</strong> - %s (PayPal transactie-ID: %s)"
|
1627 |
|
1628 |
+
#: src/Mollie/WC/Gateway/PayPal.php:43
|
1629 |
msgid "PayPal"
|
1630 |
msgstr "PayPal"
|
1631 |
|
1632 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
1633 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1634 |
#. drop down
|
1635 |
+
#: src/Mollie/WC/Gateway/Ideal.php:76 src/Mollie/WC/Gateway/Kbc.php:75
|
|
|
1636 |
msgid "Select your bank"
|
1637 |
+
msgstr "Kies je bank"
|
1638 |
|
1639 |
+
#: src/Mollie/WC/Gateway/Ideal.php:60
|
1640 |
msgid "iDEAL"
|
1641 |
msgstr "iDEAL"
|
1642 |
|
1645 |
msgstr "SEPA-incasso"
|
1646 |
|
1647 |
#. translators: Placeholder 1: card holder
|
1648 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:136
|
1649 |
msgid "Payment completed by <strong>%s</strong>"
|
1650 |
msgstr "Betaling voltooid met <strong>%s</strong>."
|
1651 |
|
1652 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:84
|
1653 |
msgid "Credit card"
|
1654 |
msgstr "Creditcard"
|
1655 |
|
1657 |
msgid "Belfius Direct Net"
|
1658 |
msgstr "Belfius Direct Net"
|
1659 |
|
1660 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:235
|
1661 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1662 |
msgstr "De betaling vervalt op <strong>%s</strong>. Zorg ervoor dat je vóór deze datum het totale bedrag overmaakt."
|
1663 |
|
1664 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:228
|
1665 |
msgid "The payment will expire on <strong>%s</strong>."
|
1666 |
msgstr "De betaling vervalt op <strong>%s</strong>."
|
1667 |
|
1668 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1669 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1670 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:214
|
1671 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1672 |
msgstr "Vermeld de betalingsreferentie <strong>%s</strong>"
|
1673 |
|
1674 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1675 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1676 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:209
|
1677 |
msgid "Payment reference: %s"
|
1678 |
msgstr "Betalingsreferentie: %s."
|
1679 |
|
1680 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:204
|
1681 |
msgid "BIC: %s"
|
1682 |
msgstr "BIC: %s"
|
1683 |
|
1684 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:203
|
1685 |
msgid "IBAN: <strong>%s</strong>"
|
1686 |
msgstr "IBAN: <strong>%s</strong>"
|
1687 |
|
1688 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1689 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:202
|
1690 |
msgid "Beneficiary: %s"
|
1691 |
msgstr "Begunstigde: %s"
|
1692 |
|
1693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
1694 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1695 |
msgstr "Voltooi je betaling door het totale bedrag over te maken naar de volgende bankrekening:"
|
1696 |
|
1697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:138
|
1698 |
msgid "Bank Transfer"
|
1699 |
msgstr "Bankoverdracht"
|
1700 |
|
1701 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1702 |
msgid "Disabled"
|
1703 |
msgstr "Uitgeschakeld"
|
1704 |
|
1705 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
1706 |
+
msgid "Number of DAYS after the payment will expire. Default <code>%d</code> days"
|
1707 |
+
msgstr "Aantal DAGEN nadat de betaling vervalt. Standaard <code>%d</code> dagen"
|
1708 |
|
1709 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:45
|
1710 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
1711 |
msgid "Expiry date"
|
1712 |
msgstr "Vervaldatum"
|
1713 |
|
1714 |
#. translators: Placeholder 1: payment method
|
1715 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1542
|
1716 |
msgid "Payment completed with <strong>%s</strong>"
|
1717 |
msgstr "Betaling voltooid met <strong>%s</strong>"
|
1718 |
|
1719 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1535
|
1720 |
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."
|
1721 |
+
msgstr "We hebben geen definitieve betalingsstatus ontvangen. Je ontvangt een e-mail zodra we een bevestiging van de bank/verkoper ontvangen."
|
1722 |
|
1723 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1530
|
1724 |
msgid "We have not received a definite payment status."
|
1725 |
msgstr "We hebben geen definitieve betalingsstatus ontvangen."
|
1726 |
|
1727 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1315
|
1728 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1729 |
+
msgstr "Je hebt je betaling geannuleerd. Rond je bestelling af met een andere een andere betaalmethode."
|
1730 |
|
1731 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1732 |
+
#: src/Mollie/WC/Payment/Payment.php:429
|
1733 |
msgid "%s payment expired (%s)."
|
1734 |
msgstr "%s betaling verlopen (%s)."
|
1735 |
|
1736 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1737 |
+
#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:249
|
1738 |
msgid "Order completed using %s payment (%s)."
|
1739 |
msgstr "Bestelling voltooid met gebruik van %s betaling (%s)."
|
1740 |
|
1741 |
#. translators: Placeholder 1: Payment method title
|
1742 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:242
|
1743 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:298
|
1744 |
+
#: src/Mollie/WC/Gateway/Abstract.php:686
|
1745 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78
|
1746 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:122
|
1747 |
msgid "Could not create %s payment."
|
1748 |
msgstr "Kon geen %s betaling aanmaken."
|
1749 |
|
1750 |
+
#: src/Mollie/WC/Gateway/Abstract.php:671
|
1751 |
+
#: src/Mollie/WC/Gateway/Abstract.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1752 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1753 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1244
|
1754 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1619
|
1755 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2142
|
1756 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1757 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139
|
1758 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:422
|
1759 |
+
#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642
|
1760 |
+
#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316
|
1761 |
+
#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446
|
1762 |
+
#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936
|
1763 |
+
#: src/Mollie/WC/Payment/Payment.php:251 src/Mollie/WC/Payment/Payment.php:338
|
1764 |
+
#: src/Mollie/WC/Payment/Payment.php:408 src/Mollie/WC/Payment/Payment.php:431
|
1765 |
msgid "test mode"
|
1766 |
msgstr "testmodus"
|
1767 |
|
1768 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1769 |
+
#: src/Mollie/WC/Gateway/Abstract.php:669
|
1770 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1771 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:420
|
|
|
1772 |
msgid "%s payment started (%s)."
|
1773 |
msgstr "%s betaling gestart (%s)."
|
1774 |
|
1775 |
+
#: src/Mollie/WC/Gateway/Abstract.php:659
|
1776 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1777 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:413
|
|
|
1778 |
msgid "Awaiting payment confirmation."
|
1779 |
msgstr "In afwachting van betalingsbevestiging"
|
1780 |
|
1781 |
+
#: src/Mollie/WC/Gateway/Abstract.php:526
|
1782 |
msgid "Could not load order %s"
|
1783 |
msgstr "Kon bestelling %s niet laden"
|
1784 |
|
1785 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1786 |
#. be replaced by a link to the Mollie profile
|
1787 |
+
#: src/Mollie/WC/Gateway/Abstract.php:352
|
1788 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1789 |
+
msgstr "%s niet ingeschakeld in je Mollie-profiel. Je kunt het inschakelen door je %sMollie-profiel%s te bewerken."
|
1790 |
|
1791 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1792 |
#. setting page
|
1793 |
+
#: src/Mollie/WC/Gateway/Abstract.php:340
|
1794 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1795 |
+
msgstr "Geen API-sleutel geleverd. Stel eerst %sje Mollie API-sleutel%s in."
|
1796 |
|
1797 |
+
#: src/Mollie/WC/Gateway/Abstract.php:221
|
1798 |
msgid "Gateway Disabled"
|
1799 |
+
msgstr "Gateway uitgeschakeld"
|
1800 |
|
1801 |
+
#: src/Mollie/WC/Gateway/Abstract.php:338 src/Mollie/WC/Helper/Settings.php:545
|
1802 |
msgid "Test mode enabled."
|
1803 |
+
msgstr "Testmodus ingeschakeld."
|
1804 |
|
1805 |
+
#: src/Mollie/WC/Helper/Settings.php:295
|
1806 |
msgid "Hold Stock (minutes)"
|
1807 |
msgstr "Houd voorraad aan (minuten)"
|
1808 |
|
1809 |
+
#: src/Mollie/WC/Helper/Settings.php:286
|
1810 |
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."
|
1811 |
+
msgstr "Sommige betaalmethoden hebben een paar uur nodig 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."
|
1812 |
|
1813 |
+
#: inc/settings/mollie_advanced_settings.php:29
|
1814 |
+
#: inc/settings/mollie_advanced_settings.php:90
|
1815 |
+
#: src/Mollie/WC/Helper/Settings.php:275
|
1816 |
msgid "default"
|
1817 |
msgstr "standaard"
|
1818 |
|
1819 |
+
#: src/Mollie/WC/Helper/Settings.php:267
|
1820 |
msgid "Initial order status"
|
1821 |
msgstr "Initiële bestelstatus"
|
1822 |
|
1823 |
+
#: inc/settings/mollie_applepay_settings.php:63
|
1824 |
+
#: src/Mollie/WC/Helper/Settings.php:84
|
1825 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1826 |
+
msgstr "Beschrijving van de betaalmethode die de klant op je betaalpagina zal zien. Standaard <code>%s</code>"
|
1827 |
|
1828 |
+
#: inc/settings/mollie_applepay_settings.php:60
|
1829 |
+
#: src/Mollie/WC/Helper/Settings.php:81
|
1830 |
msgid "Description"
|
1831 |
msgstr "Beschrijving"
|
1832 |
|
1833 |
+
#: src/Mollie/WC/Helper/Settings.php:99
|
1834 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1835 |
+
msgstr "Laat logo op de betaalpagina zien. Standaard <code>ingeschakeld</code>"
|
1836 |
|
1837 |
+
#: inc/settings/mollie_applepay_settings.php:45
|
1838 |
+
#: inc/settings/mollie_applepay_settings.php:48
|
1839 |
+
#: src/Mollie/WC/Helper/Settings.php:94
|
1840 |
msgid "Display logo"
|
1841 |
+
msgstr "Laat logo zien"
|
1842 |
|
1843 |
+
#: inc/settings/mollie_applepay_settings.php:32
|
1844 |
+
#: src/Mollie/WC/Helper/Settings.php:71
|
1845 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1846 |
msgstr "Dit controleert de titel die de gebruiker ziet tijdens het betalen. Standaard <code>%s</code>"
|
1847 |
|
1848 |
+
#: inc/settings/mollie_applepay_settings.php:29
|
1849 |
+
#: src/Mollie/WC/Helper/Settings.php:68
|
1850 |
msgid "Title"
|
1851 |
msgstr "Titel"
|
1852 |
|
1853 |
+
#. translators: Placeholder 1: enabled or disabled
|
1854 |
+
#: inc/settings/mollie_applepay_settings.php:21
|
1855 |
+
#: src/Mollie/WC/Helper/Settings.php:54
|
1856 |
msgid "Enable %s"
|
1857 |
+
msgstr "Ingeschakeld %s"
|
1858 |
|
1859 |
+
#: inc/settings/mollie_applepay_settings.php:19
|
1860 |
+
#: src/Mollie/WC/Helper/Settings.php:48
|
1861 |
msgid "Enable/Disable"
|
1862 |
+
msgstr "Inschakelen/uitschakelen"
|
languages/mollie-payments-for-woocommerce-nl_NL_formal.mo
CHANGED
Binary file
|
languages/mollie-payments-for-woocommerce-nl_NL_formal.po
CHANGED
@@ -2,35 +2,694 @@
|
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2021-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator:
|
11 |
"Language: nl\n"
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
13 |
-
"POT-Creation-Date: \n"
|
14 |
-
"Last-Translator: \n"
|
15 |
-
"Language-Team: \n"
|
16 |
|
17 |
-
#: src/Mollie/WC/Plugin.php:
|
18 |
-
msgid "
|
19 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
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."
|
23 |
-
msgstr "Om
|
24 |
|
25 |
-
#: src/Mollie/WC/Plugin.php:
|
26 |
msgid "Products voucher category"
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#: src/Mollie/WC/Plugin.php:
|
30 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
31 |
-
msgstr "%1$sMollie
|
32 |
|
33 |
-
#: src/Mollie/WC/Plugin.php:
|
|
|
34 |
msgid "Mollie Settings"
|
35 |
msgstr "Mollie-instellingen"
|
36 |
|
@@ -46,49 +705,43 @@ msgstr "Waardebon"
|
|
46 |
|
47 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
48 |
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"
|
49 |
-
msgstr "Om
|
50 |
|
51 |
-
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:
|
52 |
msgid "Select the default products category"
|
53 |
-
msgstr "Selecteer de
|
54 |
|
55 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
56 |
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"
|
57 |
-
msgstr "Activeer deze optie wanneer u de mogelijkheid wilt
|
58 |
|
59 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
60 |
msgid "Enable expiry date for payments"
|
61 |
msgstr "Activeer de vervaldatum voor betalingen"
|
62 |
|
63 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
64 |
msgid "Activate expiry date setting"
|
65 |
-
msgstr "Activeer
|
66 |
|
67 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
68 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
69 |
msgid " Remainder: %1$s %2$s %3$s."
|
70 |
-
msgstr "
|
71 |
|
72 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
73 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
74 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
75 |
-
msgstr "Mollie -
|
76 |
-
|
77 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:7
|
78 |
-
msgid "Enable the Apple Pay direct buy button"
|
79 |
-
msgstr "Activeer de Apple Pay direct kopen betaalknop"
|
80 |
-
|
81 |
-
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
82 |
-
msgid "Enable Apple Pay Button"
|
83 |
-
msgstr "Activeer de Apple Pay betaalknop"
|
84 |
|
85 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
86 |
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"
|
87 |
-
msgstr "%1$sApple Pay
|
88 |
|
89 |
-
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:
|
90 |
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"
|
91 |
-
msgstr "%1$sServer voldoet niet aan Apple vereisten%2$s Raadpleeg %3$sde pagina met Apple serververeisten%4$s om
|
92 |
|
93 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
94 |
msgid "Show Mastercard Icon"
|
@@ -97,7 +750,7 @@ msgstr "Toon Mastercard pictogram"
|
|
97 |
#: inc/settings/mollie_components.php:94
|
98 |
msgctxt "Mollie Components Settings"
|
99 |
msgid "Transform Text "
|
100 |
-
msgstr "
|
101 |
|
102 |
#: inc/settings/mollie_components.php:82
|
103 |
msgctxt "Mollie Components Settings"
|
@@ -107,16 +760,16 @@ msgstr "Lijn tekst uit"
|
|
107 |
#: inc/settings/mollie_components.php:72
|
108 |
msgctxt "Mollie Components Settings"
|
109 |
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
110 |
-
msgstr "Voeg vulling toe aan de componenten.
|
111 |
|
112 |
#: inc/settings/mollie_components.php:35
|
113 |
msgctxt "Mollie Components Settings"
|
114 |
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
115 |
-
msgstr "
|
116 |
|
117 |
#: inc/settings/mollie_creditcard_icons_selector.php:51
|
118 |
msgid "Show VPay Icon"
|
119 |
-
msgstr "Toon
|
120 |
|
121 |
#: inc/settings/mollie_creditcard_icons_selector.php:46
|
122 |
msgid "Show Visa Icon"
|
@@ -140,28 +793,24 @@ msgstr "Toon American Express pictogram"
|
|
140 |
|
141 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
142 |
msgid "Show customized creditcard icons on checkout page"
|
143 |
-
msgstr "Toon aangepaste
|
144 |
|
145 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
146 |
msgid "Enable Icons Selector"
|
147 |
-
msgstr "Activeer
|
148 |
|
149 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
150 |
msgid "Customize Icons"
|
151 |
msgstr "Pas pictogrammen aan"
|
152 |
|
153 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
154 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
155 |
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)."
|
156 |
-
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)."
|
157 |
|
158 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
159 |
msgid "Failed switching subscriptions, no valid mandate."
|
160 |
-
msgstr "
|
161 |
-
|
162 |
-
#: inc/settings/mollie_components_enabler.php:7
|
163 |
-
msgid "Enable the Mollie Components for this Gateway"
|
164 |
-
msgstr "Activeer de Mollie-componenten voor deze gateway"
|
165 |
|
166 |
#: inc/settings/mollie_components_enabler.php:6
|
167 |
msgid "Enable Mollie Components"
|
@@ -170,12 +819,12 @@ msgstr "Activeer Mollie-componenten"
|
|
170 |
#: inc/settings/mollie_components.php:157
|
171 |
msgctxt "Mollie Components Settings"
|
172 |
msgid "Background Color for invalid input."
|
173 |
-
msgstr "Achtergrondkleur voor ongeldige invoer"
|
174 |
|
175 |
#: inc/settings/mollie_components.php:146
|
176 |
msgctxt "Mollie Components Settings"
|
177 |
msgid "Text Color for invalid input."
|
178 |
-
msgstr "Tekstkleur voor ongeldige invoer"
|
179 |
|
180 |
#: inc/settings/mollie_components.php:136
|
181 |
msgctxt "Mollie Components Settings"
|
@@ -292,56 +941,58 @@ msgctxt "Mollie Components Settings"
|
|
292 |
msgid "Base Styles"
|
293 |
msgstr "Basisstijlen"
|
294 |
|
295 |
-
#: src/Mollie/WC/Plugin.php:
|
296 |
msgid "An unknown error occurred, please check the card fields."
|
297 |
msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden."
|
298 |
|
299 |
-
#: src/Mollie/WC/Plugin.php:
|
300 |
msgid "Verification Code"
|
301 |
msgstr "Verificatiecode"
|
302 |
|
303 |
-
#: src/Mollie/WC/Plugin.php:
|
304 |
msgid "Expiry Date"
|
305 |
msgstr "Vervaldatum"
|
306 |
|
307 |
-
#: src/Mollie/WC/Plugin.php:
|
308 |
msgid "Card Number"
|
309 |
msgstr "Kaartnummer"
|
310 |
|
311 |
-
#: src/Mollie/WC/Plugin.php:
|
312 |
msgid "Card Holder"
|
313 |
msgstr "Kaarthouder"
|
314 |
|
|
|
315 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
|
|
316 |
msgid "Mollie Components"
|
317 |
msgstr "Mollie-componenten"
|
318 |
|
319 |
-
#: src/Mollie/WC/Plugin.php:
|
320 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
321 |
msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie."
|
322 |
|
323 |
-
#: src/Mollie/WC/Plugin.php:
|
324 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
325 |
msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie."
|
326 |
|
327 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
328 |
msgid "Empty WooCommerce order items or mollie order lines."
|
329 |
-
msgstr "Lege WooCommerce bestelartikelen of Mollie-
|
330 |
|
331 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
332 |
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
333 |
-
msgstr "Onmogelijk om de bestelartikel-
|
334 |
|
335 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
336 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
337 |
msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld."
|
338 |
|
339 |
-
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:
|
340 |
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."
|
341 |
-
msgstr "Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag of hoeveelheid van ten minste één bestelregel.
|
342 |
|
343 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
344 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:
|
345 |
msgid "Order completed using %1$s payment (%2$s)."
|
346 |
msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)."
|
347 |
|
@@ -374,43 +1025,38 @@ msgstr "Betaling voltooid met <strong>%s</strong>."
|
|
374 |
|
375 |
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
376 |
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
377 |
-
msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail van de klant
|
378 |
|
379 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
380 |
msgid "Przelewy24"
|
381 |
msgstr "Przelewy24"
|
382 |
|
383 |
-
#:
|
384 |
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."
|
385 |
-
msgstr "Mollie-betalingen voor WooCommerce vereisen de JSON extensie voor PHP. Activeer dit op uw server of vraag uw
|
386 |
|
387 |
-
#: src/Mollie/WC/Payment/Order.php:
|
388 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
389 |
msgstr "Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s."
|
390 |
|
391 |
-
#: src/Mollie/WC/Payment/Order.php:
|
392 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
393 |
msgstr "%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s."
|
394 |
|
395 |
-
#: src/Mollie/WC/Payment/Order.php:
|
396 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
397 |
msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie."
|
398 |
|
399 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
400 |
-
#: src/Mollie/WC/Payment/Order.php:
|
401 |
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!"
|
402 |
-
msgstr "Bestelling voltooid bij Mollie voor %s bestelling (%s). Ten minste één
|
403 |
|
404 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
405 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
406 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
407 |
msgstr "%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet, gelieve te beoordelen (en productvoorraden aan te passen als u dit gebruikt)."
|
408 |
|
409 |
-
#: src/Mollie/WC/Helper/Settings.php:623
|
410 |
-
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
411 |
-
msgstr "Om Klarna-betalingen via Mollie te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn. Wij verzoeken u dit te controleren."
|
412 |
-
|
413 |
-
#: src/Mollie/WC/Payment/Payment.php:39
|
414 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
415 |
msgid "Order"
|
416 |
msgstr "Bestelling"
|
@@ -421,53 +1067,49 @@ msgid "%s payment (%s) cancelled ."
|
|
421 |
msgstr "%s betaling (%s) geannuleerd."
|
422 |
|
423 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
424 |
-
#: src/Mollie/WC/Payment/Order.php:
|
425 |
msgid "%s order (%s) expired ."
|
426 |
msgstr "%s bestelling (%s) verlopen."
|
427 |
|
428 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
429 |
-
#: src/Mollie/WC/Payment/Order.php:
|
430 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
431 |
-
msgstr "%s bestelling verlopen (%s) maar niet geannuleerd
|
432 |
|
433 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
434 |
-
#: src/Mollie/WC/Payment/Order.php:
|
435 |
msgid "%s order (%s) cancelled ."
|
436 |
msgstr "%s bestelling (%s) geannuleerd."
|
437 |
|
438 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
439 |
-
#: src/Mollie/WC/Payment/Order.php:
|
440 |
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."
|
441 |
-
msgstr "Bestelling geautoriseerd met gebruik van %s betaling (%s). Om de betaling te ontvangen,
|
442 |
-
|
443 |
-
#: src/Mollie/WC/Helper/Settings.php:648
|
444 |
-
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
445 |
-
msgstr "Om Klarna-betalingen via Mollie te accepteren, dient u WooCommerce 3.0 of hoger gebruiken. Nu gebruikt u versie %s."
|
446 |
|
447 |
-
#:
|
448 |
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."
|
449 |
-
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
|
450 |
|
451 |
-
#:
|
452 |
msgid "Automatically send WordPress language"
|
453 |
msgstr "Automatisch verzenden van WordPress-taal"
|
454 |
|
455 |
-
#:
|
456 |
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."
|
457 |
-
msgstr "Status voor bestellingen wanneer een betaling (niet een Mollie-
|
458 |
|
459 |
-
#: src/Mollie/WC/Helper/OrderLines.php:
|
460 |
msgid "Shipping"
|
461 |
msgstr "Verzending"
|
462 |
|
463 |
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
464 |
msgid "Klarna Slice it"
|
465 |
-
msgstr "
|
466 |
|
467 |
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
468 |
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
469 |
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
470 |
-
msgstr "Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en
|
471 |
|
472 |
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
473 |
msgid "Klarna Pay later"
|
@@ -483,77 +1125,77 @@ msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschi
|
|
483 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
484 |
msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, u heeft PHP %s. Installeer de upgrade en bekijk %sdeze FAQ%s"
|
485 |
|
486 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
487 |
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."
|
488 |
-
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
|
489 |
|
490 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
491 |
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."
|
492 |
-
msgstr "U heeft WooCommerce
|
493 |
|
494 |
-
#:
|
495 |
msgid "Lithuanian"
|
496 |
msgstr "Litouws"
|
497 |
|
498 |
-
#:
|
499 |
msgid "Latvian"
|
500 |
msgstr "Lets"
|
501 |
|
502 |
-
#:
|
503 |
msgid "Polish"
|
504 |
msgstr "Pools"
|
505 |
|
506 |
-
#:
|
507 |
msgid "Hungarian"
|
508 |
msgstr "Hongaars"
|
509 |
|
510 |
-
#:
|
511 |
msgid "Icelandic"
|
512 |
-
msgstr "
|
513 |
|
514 |
-
#:
|
515 |
msgid "Danish"
|
516 |
msgstr "Deens"
|
517 |
|
518 |
-
#:
|
519 |
msgid "Finnish"
|
520 |
msgstr "Fins"
|
521 |
|
522 |
-
#:
|
523 |
msgid "Swedish"
|
524 |
msgstr "Zweeds"
|
525 |
|
526 |
-
#:
|
527 |
msgid "Norwegian"
|
528 |
msgstr "Noors"
|
529 |
|
530 |
-
#:
|
531 |
msgid "Italian"
|
532 |
msgstr "Italiaans"
|
533 |
|
534 |
-
#:
|
535 |
msgid "Portuguese"
|
536 |
msgstr "Portugees"
|
537 |
|
538 |
-
#:
|
539 |
msgid "Catalan"
|
540 |
msgstr "Catalaans"
|
541 |
|
542 |
-
#:
|
543 |
msgid "Swiss German"
|
544 |
msgstr "Zwitserduits"
|
545 |
|
546 |
-
#:
|
547 |
msgid "Austrian German"
|
548 |
msgstr "Oostenrijks-Duits"
|
549 |
|
550 |
-
#: src/Mollie/WC/Helper/Api.php:
|
551 |
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."
|
552 |
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."
|
553 |
|
554 |
-
#: src/Mollie/WC/Helper/Api.php:
|
555 |
msgid "No API key provided. Please set your Mollie API keys below."
|
556 |
-
msgstr "Geen API-sleutel verschaft.
|
557 |
|
558 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
559 |
msgid "Giropay"
|
@@ -564,66 +1206,56 @@ msgid "EPS"
|
|
564 |
msgstr "EPS"
|
565 |
|
566 |
#. translators: Placeholder 1: Payment method title
|
567 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
568 |
msgid "Could not create %s renewal payment."
|
569 |
-
msgstr "Kon geen %s
|
570 |
|
571 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
572 |
msgid "The customer (%s) does not have a valid mandate."
|
573 |
-
msgstr "De klant (%s)
|
574 |
|
575 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
576 |
msgid "The customer (%s) could not be used or found. "
|
577 |
-
msgstr "De klant (%s) kon niet gebruikt of gevonden
|
578 |
|
579 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
580 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
581 |
#. placeholder 5: refund ID
|
582 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
583 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
584 |
msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s"
|
585 |
|
586 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
587 |
-
#: src/Mollie/WC/Payment/
|
588 |
msgid "%s payment failed via Mollie (%s)."
|
589 |
msgstr "%s betaling mislukt via Mollie (%s)."
|
590 |
|
591 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
592 |
msgid "New chargeback %s processed! Order note and order status updated."
|
593 |
msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt."
|
594 |
|
595 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
596 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
597 |
msgstr "Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, maar bestelling niet geüpdatet."
|
598 |
|
599 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
600 |
#. Mollie currencies
|
601 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
602 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
603 |
msgstr "Huidige shopvaluta %s niet ondersteund door Mollie. Lees meer over %sondersteunde valuta's en betaalmethoden.%s "
|
604 |
|
605 |
-
#: mollie-payments-for-woocommerce.php:138
|
606 |
-
msgid "Mollie Payments for WooCommerce 4.0 requires PHP 5.6 or higher. Your PHP version is outdated. Upgrade your PHP version and view %sthis FAQ%s."
|
607 |
-
msgstr "Mollie-betalingen voor WooCommerce 4.0 vereisen PHP 5.6 of hoger. Uw PHP-versie is verouderd. Upgrade uw PHP-versie en bekijk %sdeze FAQ%s."
|
608 |
-
|
609 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
610 |
-
#: src/Mollie/WC/Payment/
|
611 |
-
#: src/Mollie/WC/Payment/Payment.php:328 src/Mollie/WC/Payment/Payment.php:491
|
612 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
613 |
-
msgstr "Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de
|
614 |
-
|
615 |
-
#. translators: Placeholder 1: enabled or disabled
|
616 |
-
#: src/Mollie/WC/Helper/Settings.php:465
|
617 |
-
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
618 |
-
msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor Single Click Payments? Standaard <code>%s</code>. Vereist als WooCommerce Abonnementen worden gebruikt!"
|
619 |
|
620 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
621 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
622 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
623 |
-
msgstr "Uw betaling is
|
624 |
|
625 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
626 |
-
#: src/Mollie/WC/Payment/
|
627 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
628 |
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."
|
629 |
|
@@ -633,30 +1265,26 @@ msgid "Bancontact"
|
|
633 |
msgstr "Bancontact"
|
634 |
|
635 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
636 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
637 |
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."
|
638 |
-
msgstr "%s betaling nog
|
639 |
|
640 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
641 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
642 |
-
msgstr "Overschakelen naar abonnement
|
643 |
-
|
644 |
-
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
645 |
-
msgid "ING Home'Pay"
|
646 |
-
msgstr "ING Home'Pay"
|
647 |
|
648 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
649 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
650 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
651 |
msgstr "%s betaling teruggevorderd via Mollie (%s). U dient de betaling handmatig te controleren (en productvoorraden aan te passen als u dit gebruikt)."
|
652 |
|
653 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
654 |
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."
|
655 |
-
msgstr "Deze tekst wordt weergegeven als eerste optie in de KBC/CBC-uitgevers drop-down, als er niets wordt ingevoerd, wordt
|
656 |
|
657 |
#: src/Mollie/WC/Gateway/Kbc.php:34
|
658 |
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."
|
659 |
-
msgstr "Als u dit deactiveert, zal
|
660 |
|
661 |
#: src/Mollie/WC/Gateway/Kbc.php:32
|
662 |
msgid "Show KBC/CBC banks dropdown"
|
@@ -664,119 +1292,111 @@ msgstr "Toon KBC/CBC-banken dropdown"
|
|
664 |
|
665 |
#: src/Mollie/WC/Gateway/Ideal.php:41
|
666 |
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."
|
667 |
-
msgstr "Deze tekst wordt weergegeven als eerste optie in de iDEAL-uitgevers
|
668 |
|
669 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
670 |
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."
|
671 |
-
msgstr "Als u dit deactiveert, zal
|
672 |
|
673 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
674 |
msgid "Show iDEAL banks dropdown"
|
675 |
msgstr "Toon iDEAL-banken dropdown"
|
676 |
|
677 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
678 |
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."
|
679 |
msgstr "Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd."
|
680 |
|
681 |
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
682 |
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."
|
683 |
-
msgstr "Als u dit deactiveert, zal
|
684 |
|
685 |
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
686 |
msgid "Show gift cards dropdown"
|
687 |
msgstr "Toon cadeaubonnen-dropdown"
|
688 |
|
689 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
690 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
691 |
-
msgstr "Bestelling intern voltooid
|
692 |
-
|
693 |
-
#: mollie-payments-for-woocommerce.php:182
|
694 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s This version requires WooCommerce 2.2 or newer. Please %3$supdate WooCommerce to version 2.2 or newer »%4$s"
|
695 |
-
msgstr "%1$sMollie-betalingen voor WooCommerce is niet actief.%2$s Deze versie vereist WooCommerce 2.2 of hoger. Update %3$sWooCommerce naar versie 2.2 of hoger »%4$s"
|
696 |
|
697 |
-
#:
|
698 |
-
msgid "%1$sMollie Payments for WooCommerce is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for it to work. Please %5$sinstall & activate WooCommerce »%6$s"
|
699 |
-
msgstr "%1$sMollie-betalingen voor WooCommerce is niet actief.%2$s De %3$sWooCommerce-plugin%4$s moet actief zijn om te werken. %5$sInstalleer & activeer WooCommerce »%6$s"
|
700 |
-
|
701 |
-
#: src/Mollie/WC/Helper/Settings.php:414
|
702 |
msgid "Cancelled"
|
703 |
msgstr "Geannuleerd"
|
704 |
|
705 |
-
#:
|
706 |
msgid "Pending"
|
707 |
msgstr "In behandeling"
|
708 |
|
709 |
-
#:
|
710 |
msgid "Order status after cancelled payment"
|
711 |
msgstr "Bestelstatus na geannuleerde betaling"
|
712 |
|
713 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
714 |
#. placeholder 3: consumer BIC
|
|
|
|
|
715 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
716 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:185
|
717 |
-
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:121
|
718 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
719 |
-
msgstr "Betaling voltooid met <strong>%s</strong> (IBAN (
|
720 |
|
721 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
722 |
msgid "Your order has been cancelled."
|
723 |
msgstr "Uw bestelling is geannuleerd."
|
724 |
|
725 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
726 |
msgid ", payment pending."
|
727 |
msgstr ", betaling in behandeling."
|
728 |
|
729 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
730 |
msgid "Order cancelled"
|
731 |
-
msgstr "
|
732 |
|
733 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
734 |
#. status, placeholder 3: payment ID
|
735 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
736 |
msgid "%s payment %s (%s), not processed."
|
737 |
msgstr "%s betaling %s (%s), niet verwerkt."
|
738 |
|
739 |
#. translators: Default gift card dropdown description, displayed above issuer
|
740 |
#. drop down
|
741 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
742 |
msgid "Select your gift card"
|
743 |
msgstr "Selecteer uw cadeaubon"
|
744 |
|
745 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
746 |
msgid "Gift cards"
|
747 |
msgstr "Cadeaubonnen"
|
748 |
|
749 |
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
750 |
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."
|
751 |
-
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
|
752 |
|
753 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
754 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:
|
755 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
756 |
-
msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling
|
757 |
|
758 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
759 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
760 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
761 |
-
msgstr "%s betaling verlopen (%s) maar niet geannuleerd
|
762 |
|
763 |
-
#: src/subscriptions_status_check_functions.php:
|
764 |
msgid "There are still some subscriptions left, use the tool again!"
|
765 |
msgstr "Er zijn nog enkele abonnementen over, gebruik de tool opnieuw!"
|
766 |
|
767 |
-
#: src/subscriptions_status_check_functions.php:
|
768 |
msgid "No more subscriptions left to process!"
|
769 |
-
msgstr "Geen abonnementen over om te verwerken!"
|
770 |
|
771 |
-
#: src/subscriptions_status_check_functions.php:
|
772 |
msgid "No subscriptions updated in this batch."
|
773 |
msgstr "Geen abonnementen geüpdatet in deze batch."
|
774 |
|
775 |
-
#: src/subscriptions_status_check_functions.php:
|
776 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
777 |
-
msgstr "Abonnement niet geüpdatet omdat er geen geldig mandaat was bij Mollie. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
778 |
|
779 |
-
#: src/subscriptions_status_check_functions.php:
|
780 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
781 |
msgstr "Abonnement geüpdatet naar Geautomatiseerde vernieuwing via Mollie, status ingesteld op Actief. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
782 |
|
@@ -792,33 +1412,33 @@ msgstr "Mollie-abonnementenstatus"
|
|
792 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
793 |
msgstr "Controles op abonnementen die verkeerd zijn ingesteld op 'Handmatige vernieuwing'. Lees eerst de "
|
794 |
|
795 |
-
#:
|
796 |
msgid "Store customer details at Mollie"
|
797 |
msgstr "Klantgegevens opslaan bij Mollie"
|
798 |
|
799 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
800 |
-
#: src/Mollie/WC/Plugin.php:
|
801 |
msgid "%s payment failed (%s)."
|
802 |
msgstr "%s betaling mislukt (%s)."
|
803 |
|
804 |
-
#: src/Mollie/WC/Gateway/Kbc.php:
|
805 |
msgid "KBC/CBC Payment Button"
|
806 |
-
msgstr "KBC/CBC
|
807 |
|
808 |
-
#: src/Mollie/WC/Gateway/Giftcard.php:
|
809 |
-
#: src/Mollie/WC/Gateway/
|
810 |
msgid "Issuers empty option"
|
811 |
msgstr "Optie uitgevers leeg"
|
812 |
|
813 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
814 |
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."
|
815 |
-
msgstr "Activeer deze optie als u het doorsturen van uw gebruiker naar het Mollie-betaalscherm wilt overslaan. In plaats daarvan stuurt
|
816 |
|
817 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
818 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
819 |
-
msgstr "Sla Mollie-betaalscherm over wanneer bankoverschrijving is
|
820 |
|
821 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
822 |
msgid "Skip Mollie payment screen"
|
823 |
msgstr "Mollie-betaalscherm overslaan"
|
824 |
|
@@ -839,13 +1459,13 @@ msgstr "Mollie"
|
|
839 |
msgid "Mollie Payments for WooCommerce"
|
840 |
msgstr "Mollie-betalingen voor WooCommerce"
|
841 |
|
842 |
-
#: src/Mollie/WC/Plugin.php:
|
843 |
msgid "Logs"
|
844 |
msgstr "Logs"
|
845 |
|
846 |
#: src/Mollie/WC/Helper/Status.php:123
|
847 |
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
848 |
-
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL geactiveerd
|
849 |
|
850 |
#: src/Mollie/WC/Helper/Status.php:116
|
851 |
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
@@ -861,139 +1481,135 @@ msgstr "Mollie API client niet geïnstalleerd. Controleer of de plugin correct i
|
|
861 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
862 |
msgstr "De %s plugin vereist ten minste WooCommerce versie %s, u gebruikt versie %s. Update uw WooCommerce plugin."
|
863 |
|
864 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
865 |
msgid "Debug Log"
|
866 |
msgstr "Debug-log"
|
867 |
|
868 |
-
#:
|
869 |
msgid "French (Belgium)"
|
870 |
msgstr "Frans (België)"
|
871 |
|
872 |
-
#:
|
873 |
msgid "French"
|
874 |
msgstr "Frans"
|
875 |
|
876 |
-
#:
|
877 |
msgid "Spanish"
|
878 |
msgstr "Spaans"
|
879 |
|
880 |
-
#:
|
881 |
msgid "German"
|
882 |
msgstr "Duits"
|
883 |
|
884 |
-
#:
|
885 |
msgid "English"
|
886 |
msgstr "Engels"
|
887 |
|
888 |
-
#:
|
889 |
msgid "Flemish (Belgium)"
|
890 |
msgstr "Vlaams (België)"
|
891 |
|
892 |
-
#:
|
893 |
msgid "Dutch"
|
894 |
msgstr "Nederlands"
|
895 |
|
896 |
-
#:
|
897 |
msgid "Detect using browser language"
|
898 |
msgstr "Detecteren met gebruik van browser-taal"
|
899 |
|
900 |
-
#:
|
901 |
msgid "Payment screen language"
|
902 |
msgstr "Taal van betaalscherm"
|
903 |
|
904 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
905 |
msgid "Test API key should start with test_"
|
906 |
msgstr "Test API-sleutel moet beginnen met test_"
|
907 |
|
908 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
909 |
msgid "Test API key"
|
910 |
msgstr "Test API-sleutel"
|
911 |
|
912 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
913 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
914 |
-
msgstr "Activeer de testmodus
|
915 |
|
916 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
917 |
msgid "Enable test mode"
|
918 |
msgstr "Activeer de testmodus"
|
919 |
|
920 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
921 |
msgid "Live API key should start with live_"
|
922 |
msgstr "Live API-sleutel moet beginnen met live_"
|
923 |
|
924 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
925 |
#. %s's Will be replaced by a link to the Mollie profile
|
926 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
927 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
928 |
msgstr "De API-sleutel wordt gebruikt om verbinding te maken met Mollie. U vindt uw <strong>%s</strong> API-sleutel in uw %sMollie-profiel%s"
|
929 |
|
930 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
931 |
msgid "Live API key"
|
932 |
msgstr "Live API-sleutel"
|
933 |
|
934 |
-
#:
|
|
|
935 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
936 |
msgstr "De volgende opties zijn vereist om de plugin te gebruiken en worden door alle Mollie-betaalmethoden gebruikt"
|
937 |
|
938 |
-
#: src/Mollie/WC/
|
939 |
msgid "Mollie settings"
|
940 |
msgstr "Mollie-instellingen"
|
941 |
|
942 |
-
|
943 |
-
#: src/Mollie/WC/Helper/Settings.php:351
|
944 |
msgid "Log files are saved to <code>%s</code>"
|
945 |
msgstr "Logbestanden worden opgeslagen in <code>%s</code>"
|
946 |
|
947 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
948 |
-
msgid "View logs"
|
949 |
-
msgstr "Bekijk logs"
|
950 |
-
|
951 |
-
#: src/Mollie/WC/Helper/Settings.php:340
|
952 |
msgid "Log plugin events."
|
953 |
-
msgstr "Log plugin-gebeurtenissen"
|
954 |
|
955 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
956 |
msgid "Edit"
|
957 |
msgstr "Bewerken"
|
958 |
|
959 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
960 |
msgid "Refresh"
|
961 |
msgstr "Vernieuwen"
|
962 |
|
963 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
964 |
#. profile
|
965 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
966 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
967 |
msgstr "De volgende betaalmethoden zijn geactiveerd in uw %sMollie-profiel%s:"
|
968 |
|
969 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
970 |
msgid "Gateway disabled"
|
971 |
msgstr "Gateway gedeactiveerd"
|
972 |
|
973 |
-
|
974 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
975 |
msgid "Enabled"
|
976 |
msgstr "Geactiveerd"
|
977 |
|
978 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
979 |
msgid "Gateway enabled"
|
980 |
msgstr "Gateway geactiveerd"
|
981 |
|
982 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
983 |
msgid "Connected"
|
984 |
msgstr "Verbonden"
|
985 |
|
986 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
987 |
msgid "Mollie status:"
|
988 |
msgstr "Mollie-status:"
|
989 |
|
990 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
991 |
msgid "Error"
|
992 |
msgstr "Fout"
|
993 |
|
994 |
-
#: src/Mollie/WC/Helper/Data.php:
|
995 |
msgid "Item #%s stock incremented from %s to %s."
|
996 |
-
msgstr "
|
997 |
|
998 |
#: src/Mollie/WC/Gateway/Sofort.php:33
|
999 |
msgid "SOFORT Banking"
|
@@ -1005,22 +1621,22 @@ msgstr "paysafecard"
|
|
1005 |
|
1006 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1007 |
#. email, placeholder 3: PayPal transaction ID
|
1008 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1009 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1010 |
msgstr "Betaling voltooid met <strong>%s</strong> - %s (PayPal transactie-ID: %s)"
|
1011 |
|
1012 |
-
#: src/Mollie/WC/Gateway/PayPal.php:
|
1013 |
msgid "PayPal"
|
1014 |
msgstr "PayPal"
|
1015 |
|
|
|
1016 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1017 |
#. drop down
|
1018 |
-
|
1019 |
-
#: src/Mollie/WC/Gateway/Kbc.php:77 src/Mollie/WC/Gateway/Ideal.php:77
|
1020 |
msgid "Select your bank"
|
1021 |
msgstr "Selecteer uw bank"
|
1022 |
|
1023 |
-
#: src/Mollie/WC/Gateway/Ideal.php:
|
1024 |
msgid "iDEAL"
|
1025 |
msgstr "iDEAL"
|
1026 |
|
@@ -1029,11 +1645,11 @@ msgid "SEPA Direct Debit"
|
|
1029 |
msgstr "SEPA-incasso"
|
1030 |
|
1031 |
#. translators: Placeholder 1: card holder
|
1032 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1033 |
msgid "Payment completed by <strong>%s</strong>"
|
1034 |
msgstr "Betaling voltooid met <strong>%s</strong>."
|
1035 |
|
1036 |
-
#: src/Mollie/WC/Gateway/Creditcard.php:
|
1037 |
msgid "Credit card"
|
1038 |
msgstr "Creditcard"
|
1039 |
|
@@ -1041,193 +1657,206 @@ msgstr "Creditcard"
|
|
1041 |
msgid "Belfius Direct Net"
|
1042 |
msgstr "Belfius Direct Net"
|
1043 |
|
1044 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1045 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1046 |
msgstr "De betaling vervalt op <strong>%s</strong>. Zorg ervoor dat u vóór deze datum het totale bedrag overmaakt."
|
1047 |
|
1048 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1049 |
msgid "The payment will expire on <strong>%s</strong>."
|
1050 |
msgstr "De betaling vervalt op <strong>%s</strong>."
|
1051 |
|
1052 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1053 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1054 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1055 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1056 |
msgstr "Vermeld de betalingsreferentie <strong>%s</strong>"
|
1057 |
|
1058 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1059 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1060 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1061 |
msgid "Payment reference: %s"
|
1062 |
msgstr "Betalingsreferentie: %s."
|
1063 |
|
1064 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1065 |
msgid "BIC: %s"
|
1066 |
msgstr "BIC: %s"
|
1067 |
|
1068 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1069 |
msgid "IBAN: <strong>%s</strong>"
|
1070 |
msgstr "IBAN: <strong>%s</strong>"
|
1071 |
|
1072 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1073 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1074 |
msgid "Beneficiary: %s"
|
1075 |
msgstr "Begunstigde: %s"
|
1076 |
|
1077 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1078 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1079 |
msgstr "Voltooi uw betaling door het totale bedrag over te maken naar de volgende bankrekening:"
|
1080 |
|
1081 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1082 |
msgid "Bank Transfer"
|
1083 |
msgstr "Bankoverdracht"
|
1084 |
|
1085 |
-
#: src/Mollie/WC/Helper/Settings.php:
|
1086 |
msgid "Disabled"
|
1087 |
-
msgstr "
|
1088 |
|
1089 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
1090 |
-
msgid "Number of
|
1091 |
-
msgstr "Aantal
|
1092 |
|
1093 |
-
#: src/Mollie/WC/Gateway/BankTransfer.php:
|
|
|
1094 |
msgid "Expiry date"
|
1095 |
msgstr "Vervaldatum"
|
1096 |
|
1097 |
#. translators: Placeholder 1: payment method
|
1098 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1099 |
msgid "Payment completed with <strong>%s</strong>"
|
1100 |
msgstr "Betaling voltooid met <strong>%s</strong>"
|
1101 |
|
1102 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1103 |
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."
|
1104 |
-
msgstr "We hebben geen definitieve betalingsstatus ontvangen. U ontvangt een e-mail zodra we een bevestiging van de bank/
|
1105 |
|
1106 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1107 |
msgid "We have not received a definite payment status."
|
1108 |
msgstr "We hebben geen definitieve betalingsstatus ontvangen."
|
1109 |
|
1110 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1111 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1112 |
msgstr "U heeft uw betaling geannuleerd. Vervolledig uw bestelling met een andere betaalmethode."
|
1113 |
|
1114 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1115 |
-
#: src/Mollie/WC/Payment/Payment.php:
|
1116 |
msgid "%s payment expired (%s)."
|
1117 |
msgstr "%s betaling verlopen (%s)."
|
1118 |
|
1119 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1120 |
-
#: src/Mollie/WC/Payment/Order.php:
|
1121 |
msgid "Order completed using %s payment (%s)."
|
1122 |
msgstr "Bestelling voltooid met gebruik van %s betaling (%s)."
|
1123 |
|
1124 |
#. translators: Placeholder 1: Payment method title
|
1125 |
-
#: src/Mollie/WC/
|
1126 |
-
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:
|
1127 |
-
#: src/Mollie/WC/
|
|
|
|
|
1128 |
msgid "Could not create %s payment."
|
1129 |
msgstr "Kon geen %s betaling aanmaken."
|
1130 |
|
1131 |
-
#: src/Mollie/WC/
|
1132 |
-
#: src/Mollie/WC/
|
1133 |
-
#: src/Mollie/WC/Payment/Order.php:607 src/Mollie/WC/Payment/Order.php:631
|
1134 |
-
#: src/Mollie/WC/Payment/Order.php:668 src/Mollie/WC/Payment/Order.php:709
|
1135 |
-
#: src/Mollie/WC/Payment/Payment.php:237 src/Mollie/WC/Payment/Payment.php:338
|
1136 |
-
#: src/Mollie/WC/Payment/Payment.php:396 src/Mollie/WC/Payment/Payment.php:419
|
1137 |
-
#: src/Mollie/WC/Payment/Payment.php:459 src/Mollie/WC/Payment/Payment.php:500
|
1138 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1139 |
-
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1140 |
-
#: src/Mollie/WC/Gateway/Abstract.php:547
|
1141 |
-
#: src/Mollie/WC/Gateway/Abstract.php:822
|
1142 |
-
#: src/Mollie/WC/Gateway/Abstract.php:1120
|
1143 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1144 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1145 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1146 |
-
#: src/Mollie/WC/Gateway/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1147 |
msgid "test mode"
|
1148 |
msgstr "testmodus"
|
1149 |
|
1150 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
|
|
1151 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1152 |
-
#: src/Mollie/WC/Gateway/
|
1153 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1154 |
msgid "%s payment started (%s)."
|
1155 |
msgstr "%s betaling gestart (%s)."
|
1156 |
|
|
|
1157 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1158 |
-
#: src/Mollie/WC/Gateway/
|
1159 |
-
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1160 |
msgid "Awaiting payment confirmation."
|
1161 |
msgstr "In afwachting van betalingsbevestiging"
|
1162 |
|
1163 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1164 |
msgid "Could not load order %s"
|
1165 |
msgstr "Kon bestelling %s niet laden"
|
1166 |
|
1167 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1168 |
#. be replaced by a link to the Mollie profile
|
1169 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1170 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1171 |
msgstr "%s niet geactiveerd in uw Mollie-profiel. U kunt het activeren door uw %sMollie profiel%s te bewerken."
|
1172 |
|
1173 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1174 |
#. setting page
|
1175 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1176 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1177 |
-
msgstr "Geen API-sleutel verschaft.
|
1178 |
|
1179 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1180 |
msgid "Gateway Disabled"
|
1181 |
msgstr "Gateway gedeactiveerd"
|
1182 |
|
1183 |
-
#: src/Mollie/WC/Gateway/Abstract.php:
|
1184 |
msgid "Test mode enabled."
|
1185 |
msgstr "Testmodus geactiveerd."
|
1186 |
|
1187 |
-
#: src/Mollie/WC/
|
1188 |
msgid "Hold Stock (minutes)"
|
1189 |
msgstr "Houd voorraad aan (minuten)"
|
1190 |
|
1191 |
-
#: src/Mollie/WC/
|
1192 |
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."
|
1193 |
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."
|
1194 |
|
1195 |
-
#:
|
|
|
|
|
1196 |
msgid "default"
|
1197 |
msgstr "standaard"
|
1198 |
|
1199 |
-
#: src/Mollie/WC/
|
1200 |
msgid "Initial order status"
|
1201 |
msgstr "Initiële bestelstatus"
|
1202 |
|
1203 |
-
#:
|
|
|
1204 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1205 |
-
msgstr "Beschrijving van de betaalmethode die de klant
|
1206 |
|
1207 |
-
#:
|
|
|
1208 |
msgid "Description"
|
1209 |
msgstr "Beschrijving"
|
1210 |
|
1211 |
-
#: src/Mollie/WC/
|
1212 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1213 |
msgstr "Toon logo op de betaalpagina. Standaard <code>geactiveerd</code>"
|
1214 |
|
1215 |
-
#:
|
|
|
|
|
1216 |
msgid "Display logo"
|
1217 |
msgstr "Toon logo"
|
1218 |
|
1219 |
-
#:
|
|
|
1220 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1221 |
-
msgstr "Dit controleert de titel die de gebruiker
|
1222 |
|
1223 |
-
#:
|
|
|
1224 |
msgid "Title"
|
1225 |
msgstr "Titel"
|
1226 |
|
1227 |
-
|
|
|
|
|
1228 |
msgid "Enable %s"
|
1229 |
-
msgstr "
|
1230 |
|
1231 |
-
#:
|
|
|
1232 |
msgid "Enable/Disable"
|
1233 |
-
msgstr "Activeren/
|
2 |
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-07-26 13:45+0200\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/3.0.0-alpha.2\n"
|
11 |
"Language: nl\n"
|
12 |
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Stable (latest release)\n"
|
|
|
|
|
|
|
13 |
|
14 |
+
#: src/Mollie/WC/Plugin.php:375
|
15 |
+
msgid "Unpaid order cancelled - time limit reached."
|
16 |
+
msgstr "Onbetaald of geannuleerd - tijdslimiet bereikt."
|
17 |
+
|
18 |
+
#: src/Mollie/WC/Helper/Settings.php:846
|
19 |
+
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"
|
20 |
+
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 %1sKlarna betaal later documentatie%2s of %3sKlarna Slice it documentatie%4s"
|
21 |
+
|
22 |
+
#: src/Mollie/WC/Helper/Settings.php:254
|
23 |
+
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."
|
24 |
+
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."
|
25 |
+
|
26 |
+
#: src/Mollie/WC/Helper/Settings.php:246
|
27 |
+
msgid "Enable this option if you want to be able to set the number of days after the order will expire."
|
28 |
+
msgstr "Activeer deze optie wanneer u de mogelijkheid wilt hebben om een aantal dagen in te stellen waarna de bestelling komt te vervallen."
|
29 |
+
|
30 |
+
#: src/Mollie/WC/Helper/Settings.php:237
|
31 |
+
msgid "%s advanced"
|
32 |
+
msgstr "%s geavanceerd"
|
33 |
+
|
34 |
+
#: inc/settings/mollie_paypal_button_enabler.php:126
|
35 |
+
msgid "If the product or the cart total amount is under this number, then the button will not show up."
|
36 |
+
msgstr "Wanneer het product of het totale bedrag van de winkelwagen beneden dit getal blijft, verschijnt de betaalknop niet."
|
37 |
+
|
38 |
+
#: inc/settings/mollie_paypal_button_enabler.php:122
|
39 |
+
msgid "Minimum amount to display button"
|
40 |
+
msgstr "Minimum bedrag voor de weergave van de knop."
|
41 |
+
|
42 |
+
#: inc/settings/mollie_paypal_button_enabler.php:117
|
43 |
+
msgctxt "Mollie PayPal button Settings"
|
44 |
+
msgid "Polish -- Checkout with PayPal - Silver"
|
45 |
+
msgstr "Pools -- Betalen met PayPal - zilver"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_paypal_button_enabler.php:116
|
48 |
+
msgctxt "Mollie PayPal button Settings"
|
49 |
+
msgid "Polish -- Checkout with PayPal - Gold"
|
50 |
+
msgstr "Pools -- Betalen met PayPal - goud"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_paypal_button_enabler.php:115
|
53 |
+
msgctxt "Mollie PayPal button Settings"
|
54 |
+
msgid "Polish -- Buy with PayPal - Gold"
|
55 |
+
msgstr "Pools -- Kopen met PayPal - goud"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_paypal_button_enabler.php:114
|
58 |
+
msgctxt "Mollie PayPal button Settings"
|
59 |
+
msgid "French -- Checkout with PayPal - Silver"
|
60 |
+
msgstr "Frans -- Betalen met PayPal - zilver"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_paypal_button_enabler.php:113
|
63 |
+
msgctxt "Mollie PayPal button Settings"
|
64 |
+
msgid "French -- Checkout with PayPal - Gold"
|
65 |
+
msgstr "Frans -- Betalen met PayPal - goud"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_paypal_button_enabler.php:112
|
68 |
+
msgctxt "Mollie PayPal button Settings"
|
69 |
+
msgid "French -- Buy with PayPal - Gold"
|
70 |
+
msgstr "Frans -- Kopen met PayPal - goud"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_paypal_button_enabler.php:111
|
73 |
+
msgctxt "Mollie PayPal button Settings"
|
74 |
+
msgid "German -- Checkout with PayPal - Rounded white"
|
75 |
+
msgstr "Duits -- Betalen met PayPal - afgeronde hoeken wit"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_paypal_button_enabler.php:110
|
78 |
+
msgctxt "Mollie PayPal button Settings"
|
79 |
+
msgid "German -- Checkout with PayPal - Pill white"
|
80 |
+
msgstr "Duits -- Betalen met PayPal - pilvormig wit"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_paypal_button_enabler.php:109
|
83 |
+
msgctxt "Mollie PayPal button Settings"
|
84 |
+
msgid "German -- Checkout with PayPal - Rounded gray"
|
85 |
+
msgstr "Duits -- Betalen met PayPal - afgeronde hoeken grijs"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_paypal_button_enabler.php:108
|
88 |
+
msgctxt "Mollie PayPal button Settings"
|
89 |
+
msgid "German -- Checkout with PayPal - Pill gray"
|
90 |
+
msgstr "Duits -- Betalen met PayPal - pilvormig grijs"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_paypal_button_enabler.php:107
|
93 |
+
msgctxt "Mollie PayPal button Settings"
|
94 |
+
msgid "German -- Checkout with PayPal - Rounded golden"
|
95 |
+
msgstr "Duits -- Betalen met PayPal - afgeronde hoeken goud"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_paypal_button_enabler.php:106
|
98 |
+
msgctxt "Mollie PayPal button Settings"
|
99 |
+
msgid "German -- Checkout with PayPal - Pill golden"
|
100 |
+
msgstr "Duits -- Betalen met PayPal - pilvormig goud"
|
101 |
+
|
102 |
+
#: inc/settings/mollie_paypal_button_enabler.php:105
|
103 |
+
msgctxt "Mollie PayPal button Settings"
|
104 |
+
msgid "German -- Checkout with PayPal - Rounded blue"
|
105 |
+
msgstr "Duits -- Betalen met PayPal - afgeronde hoeken blauw"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_paypal_button_enabler.php:104
|
108 |
+
msgctxt "Mollie PayPal button Settings"
|
109 |
+
msgid "German -- Checkout with PayPal - Pill blue"
|
110 |
+
msgstr "Duits -- Betalen met PayPal - pilvormig blauw"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_paypal_button_enabler.php:103
|
113 |
+
msgctxt "Mollie PayPal button Settings"
|
114 |
+
msgid "German -- Checkout with PayPal - Rounded black"
|
115 |
+
msgstr "Duits -- Betalen met PayPal - afgeronde hoeken zwart"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_paypal_button_enabler.php:102
|
118 |
+
msgctxt "Mollie PayPal button Settings"
|
119 |
+
msgid "German -- Checkout with PayPal - Pill black"
|
120 |
+
msgstr "Duits -- Betalen met PayPal - pilvormig zwart"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_paypal_button_enabler.php:101
|
123 |
+
msgctxt "Mollie PayPal button Settings"
|
124 |
+
msgid "German -- Buy with PayPal - Rounded white"
|
125 |
+
msgstr "Duits -- Kopen met PayPal - afgeronde hoeken wit"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_paypal_button_enabler.php:100
|
128 |
+
msgctxt "Mollie PayPal button Settings"
|
129 |
+
msgid "German -- Buy with PayPal - Pill white"
|
130 |
+
msgstr "Duits -- Kopen met PayPal - pilvormig wit"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_paypal_button_enabler.php:99
|
133 |
+
msgctxt "Mollie PayPal button Settings"
|
134 |
+
msgid "German -- Buy with PayPal - Rounded gray"
|
135 |
+
msgstr "Duits -- Kopen met PayPal - afgeronde hoeken grijs"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_paypal_button_enabler.php:98
|
138 |
+
msgctxt "Mollie PayPal button Settings"
|
139 |
+
msgid "German -- Buy with PayPal - Pill gray"
|
140 |
+
msgstr "Duits -- Kopen met PayPal - pilvormig grijs"
|
141 |
+
|
142 |
+
#: inc/settings/mollie_paypal_button_enabler.php:97
|
143 |
+
msgctxt "Mollie PayPal button Settings"
|
144 |
+
msgid "German -- Buy with PayPal - Rounded golden"
|
145 |
+
msgstr "Duits -- Kopen met PayPal - afgeronde hoeken goud"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_paypal_button_enabler.php:96
|
148 |
+
msgctxt "Mollie PayPal button Settings"
|
149 |
+
msgid "German -- Buy with PayPal - Pill golden"
|
150 |
+
msgstr "Duits -- Kopen met PayPal - pilvormig goud"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_paypal_button_enabler.php:95
|
153 |
+
msgctxt "Mollie PayPal button Settings"
|
154 |
+
msgid "German -- Buy with PayPal - Rounded blue"
|
155 |
+
msgstr "Duits -- Kopen met PayPal - afgeronde hoeken blauw"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_paypal_button_enabler.php:94
|
158 |
+
msgctxt "Mollie PayPal button Settings"
|
159 |
+
msgid "German -- Buy with PayPal - Pill blue"
|
160 |
+
msgstr "Duits -- Kopen met PayPal - pilvormig blauw"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_paypal_button_enabler.php:93
|
163 |
+
msgctxt "Mollie PayPal button Settings"
|
164 |
+
msgid "German -- Buy with PayPal - Rounded black"
|
165 |
+
msgstr "Duits -- Kopen met PayPal - zwarte cirkel"
|
166 |
+
|
167 |
+
#: inc/settings/mollie_paypal_button_enabler.php:92
|
168 |
+
msgctxt "Mollie PayPal button Settings"
|
169 |
+
msgid "German -- Buy with PayPal - Pill black"
|
170 |
+
msgstr "Duits -- Kopen met PayPal - pilvormig zwart"
|
171 |
+
|
172 |
+
#: inc/settings/mollie_paypal_button_enabler.php:91
|
173 |
+
msgctxt "Mollie PayPal button Settings"
|
174 |
+
msgid "Dutch -- Checkout with PayPal - Rounded white"
|
175 |
+
msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken wit"
|
176 |
+
|
177 |
+
#: inc/settings/mollie_paypal_button_enabler.php:90
|
178 |
+
msgctxt "Mollie PayPal button Settings"
|
179 |
+
msgid "Dutch -- Checkout with PayPal - Pill white"
|
180 |
+
msgstr "Duits -- Betalen met PayPal - pilvormig wit"
|
181 |
+
|
182 |
+
#: inc/settings/mollie_paypal_button_enabler.php:89
|
183 |
+
msgctxt "Mollie PayPal button Settings"
|
184 |
+
msgid "Dutch -- Checkout with PayPal - Rounded gray"
|
185 |
+
msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken grijs"
|
186 |
+
|
187 |
+
#: inc/settings/mollie_paypal_button_enabler.php:88
|
188 |
+
msgctxt "Mollie PayPal button Settings"
|
189 |
+
msgid "Dutch -- Checkout with PayPal - Pill gray"
|
190 |
+
msgstr "Nederlands -- Betalen met PayPal - pilvormig grijs"
|
191 |
+
|
192 |
+
#: inc/settings/mollie_paypal_button_enabler.php:87
|
193 |
+
msgctxt "Mollie PayPal button Settings"
|
194 |
+
msgid "Dutch -- Checkout with PayPal - Rounded golden"
|
195 |
+
msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken goud"
|
196 |
+
|
197 |
+
#: inc/settings/mollie_paypal_button_enabler.php:86
|
198 |
+
msgctxt "Mollie PayPal button Settings"
|
199 |
+
msgid "Dutch -- Checkout with PayPal - Pill golden"
|
200 |
+
msgstr "Nederlands -- Betalen met PayPal - pilvormig goud"
|
201 |
+
|
202 |
+
#: inc/settings/mollie_paypal_button_enabler.php:85
|
203 |
+
msgctxt "Mollie PayPal button Settings"
|
204 |
+
msgid "Dutch -- Checkout with PayPal - Rounded blue"
|
205 |
+
msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken blauw"
|
206 |
+
|
207 |
+
#: inc/settings/mollie_paypal_button_enabler.php:84
|
208 |
+
msgctxt "Mollie PayPal button Settings"
|
209 |
+
msgid "Dutch -- Checkout with PayPal - Pill blue"
|
210 |
+
msgstr "Nederlands -- Betalen met PayPal - pilvormig blauw"
|
211 |
+
|
212 |
+
#: inc/settings/mollie_paypal_button_enabler.php:83
|
213 |
+
msgctxt "Mollie PayPal button Settings"
|
214 |
+
msgid "Dutch -- Checkout with PayPal - Rounded black"
|
215 |
+
msgstr "Nederlands -- Betalen met PayPal - afgeronde hoeken zwart"
|
216 |
+
|
217 |
+
#: inc/settings/mollie_paypal_button_enabler.php:82
|
218 |
+
msgctxt "Mollie PayPal button Settings"
|
219 |
+
msgid "Dutch -- Checkout with PayPal - Pill black"
|
220 |
+
msgstr "Nederlands -- Betalen met PayPal - pilvormig zwart"
|
221 |
+
|
222 |
+
#: inc/settings/mollie_paypal_button_enabler.php:81
|
223 |
+
msgctxt "Mollie PayPal button Settings"
|
224 |
+
msgid "Dutch -- Buy with PayPal - Rounded white"
|
225 |
+
msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken wit"
|
226 |
+
|
227 |
+
#: inc/settings/mollie_paypal_button_enabler.php:80
|
228 |
+
msgctxt "Mollie PayPal button Settings"
|
229 |
+
msgid "Dutch -- Buy with PayPal - Pill white"
|
230 |
+
msgstr "Nederlands -- Kopen met PayPal - pilvormig wit"
|
231 |
+
|
232 |
+
#: inc/settings/mollie_paypal_button_enabler.php:79
|
233 |
+
msgctxt "Mollie PayPal button Settings"
|
234 |
+
msgid "Dutch -- Buy with PayPal - Rounded gray"
|
235 |
+
msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken grijs"
|
236 |
+
|
237 |
+
#: inc/settings/mollie_paypal_button_enabler.php:78
|
238 |
+
msgctxt "Mollie PayPal button Settings"
|
239 |
+
msgid "Dutch -- Buy with PayPal - Pill gray"
|
240 |
+
msgstr "Nederlands -- Kopen met PayPal - pilvormig grijs"
|
241 |
+
|
242 |
+
#: inc/settings/mollie_paypal_button_enabler.php:77
|
243 |
+
msgctxt "Mollie PayPal button Settings"
|
244 |
+
msgid "Dutch -- Buy with PayPal - Rounded golden"
|
245 |
+
msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken goud"
|
246 |
+
|
247 |
+
#: inc/settings/mollie_paypal_button_enabler.php:76
|
248 |
+
msgctxt "Mollie PayPal button Settings"
|
249 |
+
msgid "Dutch -- Buy with PayPal - Pill golden"
|
250 |
+
msgstr "Nederlands -- Kopen met PayPal - pilvormig goud"
|
251 |
+
|
252 |
+
#: inc/settings/mollie_paypal_button_enabler.php:75
|
253 |
+
msgctxt "Mollie PayPal button Settings"
|
254 |
+
msgid "Dutch -- Buy with PayPal - Rounded blue"
|
255 |
+
msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken blauw"
|
256 |
+
|
257 |
+
#: inc/settings/mollie_paypal_button_enabler.php:74
|
258 |
+
msgctxt "Mollie PayPal button Settings"
|
259 |
+
msgid "Dutch -- Buy with PayPal - Pill blue"
|
260 |
+
msgstr "Nederlands -- Kopen met PayPal - pilvormig blauw"
|
261 |
+
|
262 |
+
#: inc/settings/mollie_paypal_button_enabler.php:73
|
263 |
+
msgctxt "Mollie PayPal button Settings"
|
264 |
+
msgid "Dutch -- Buy with PayPal - Rounded black"
|
265 |
+
msgstr "Nederlands -- Kopen met PayPal - afgeronde hoeken zwart"
|
266 |
+
|
267 |
+
#: inc/settings/mollie_paypal_button_enabler.php:72
|
268 |
+
msgctxt "Mollie PayPal button Settings"
|
269 |
+
msgid "Dutch -- Buy with PayPal - Pill black"
|
270 |
+
msgstr "Nederlands -- Kopen met PayPal - pilvormig zwart"
|
271 |
+
|
272 |
+
#: inc/settings/mollie_paypal_button_enabler.php:71
|
273 |
+
msgctxt "Mollie PayPal button Settings"
|
274 |
+
msgid "English -- Checkout with PayPal - Rounded white"
|
275 |
+
msgstr "Engels -- Betalen met PayPal - afgeronde hoeken wit"
|
276 |
+
|
277 |
+
#: inc/settings/mollie_paypal_button_enabler.php:70
|
278 |
+
msgctxt "Mollie PayPal button Settings"
|
279 |
+
msgid "English -- Checkout with PayPal - Pill white"
|
280 |
+
msgstr "Engels -- Betalen met PayPal - pilvormig wit"
|
281 |
+
|
282 |
+
#: inc/settings/mollie_paypal_button_enabler.php:69
|
283 |
+
msgctxt "Mollie PayPal button Settings"
|
284 |
+
msgid "English -- Checkout with PayPal - Rounded gray"
|
285 |
+
msgstr "Engels -- Betalen met PayPal - afgeronde hoeken grijs"
|
286 |
+
|
287 |
+
#: inc/settings/mollie_paypal_button_enabler.php:68
|
288 |
+
msgctxt "Mollie PayPal button Settings"
|
289 |
+
msgid "English -- Checkout with PayPal - Pill gray"
|
290 |
+
msgstr "Engels -- Betalen met PayPal - pilvormig grijs"
|
291 |
+
|
292 |
+
#: inc/settings/mollie_paypal_button_enabler.php:67
|
293 |
+
msgctxt "Mollie PayPal button Settings"
|
294 |
+
msgid "English -- Checkout with PayPal - Rounded golden"
|
295 |
+
msgstr "Engels -- Betalen met PayPal - afgeronde hoeken goud"
|
296 |
+
|
297 |
+
#: inc/settings/mollie_paypal_button_enabler.php:66
|
298 |
+
msgctxt "Mollie PayPal button Settings"
|
299 |
+
msgid "English -- Checkout with PayPal - Pill golden"
|
300 |
+
msgstr "Engels -- Betalen met PayPal - pilvormig goud"
|
301 |
+
|
302 |
+
#: inc/settings/mollie_paypal_button_enabler.php:65
|
303 |
+
msgctxt "Mollie PayPal button Settings"
|
304 |
+
msgid "English -- Checkout with PayPal - Rounded blue"
|
305 |
+
msgstr "Engels -- Betalen met PayPal - afgeronde hoeken blauw"
|
306 |
+
|
307 |
+
#: inc/settings/mollie_paypal_button_enabler.php:64
|
308 |
+
msgctxt "Mollie PayPal button Settings"
|
309 |
+
msgid "English -- Checkout with PayPal - Pill blue"
|
310 |
+
msgstr "Engels -- Betalen met PayPal - pilvormig blauw"
|
311 |
+
|
312 |
+
#: inc/settings/mollie_paypal_button_enabler.php:63
|
313 |
+
msgctxt "Mollie PayPal button Settings"
|
314 |
+
msgid "English -- Checkout with PayPal - Rounded black"
|
315 |
+
msgstr "Engels -- Betalen met PayPal - afgeronde hoeken zwart"
|
316 |
+
|
317 |
+
#: inc/settings/mollie_paypal_button_enabler.php:62
|
318 |
+
msgctxt "Mollie PayPal button Settings"
|
319 |
+
msgid "English -- Checkout with PayPal - Pill black"
|
320 |
+
msgstr "Engels -- Betalen met PayPal - pilvormig zwart"
|
321 |
+
|
322 |
+
#: inc/settings/mollie_paypal_button_enabler.php:61
|
323 |
+
msgctxt "Mollie PayPal button Settings"
|
324 |
+
msgid "English -- Buy with PayPal - Rounded white"
|
325 |
+
msgstr "Engels -- Kopen met PayPal - afgeronde hoeken wit"
|
326 |
+
|
327 |
+
#: inc/settings/mollie_paypal_button_enabler.php:60
|
328 |
+
msgctxt "Mollie PayPal button Settings"
|
329 |
+
msgid "English -- Buy with PayPal - Pill white"
|
330 |
+
msgstr "Engels -- Kopen met PayPal - pilvormig wit"
|
331 |
+
|
332 |
+
#: inc/settings/mollie_paypal_button_enabler.php:59
|
333 |
+
msgctxt "Mollie PayPal button Settings"
|
334 |
+
msgid "English -- Buy with PayPal - Rounded gray"
|
335 |
+
msgstr "Engels -- Kopen met PayPal - afgeronde hoeken grijs"
|
336 |
+
|
337 |
+
#: inc/settings/mollie_paypal_button_enabler.php:58
|
338 |
+
msgctxt "Mollie PayPal button Settings"
|
339 |
+
msgid "English -- Buy with PayPal - Pill gray"
|
340 |
+
msgstr "Engels -- Kopen met PayPal - pilvormig grijs"
|
341 |
+
|
342 |
+
#: inc/settings/mollie_paypal_button_enabler.php:57
|
343 |
+
msgctxt "Mollie PayPal button Settings"
|
344 |
+
msgid "English -- Buy with PayPal - Rounded golden"
|
345 |
+
msgstr "Engels -- Kopen met PayPal - afgeronde hoeken goud"
|
346 |
+
|
347 |
+
#: inc/settings/mollie_paypal_button_enabler.php:56
|
348 |
+
msgctxt "Mollie PayPal button Settings"
|
349 |
+
msgid "English -- Buy with PayPal - Pill golden"
|
350 |
+
msgstr "Engels -- Kopen met PayPal - pilvormig goud"
|
351 |
+
|
352 |
+
#: inc/settings/mollie_paypal_button_enabler.php:55
|
353 |
+
msgctxt "Mollie PayPal button Settings"
|
354 |
+
msgid "English -- Buy with PayPal - Rounded blue"
|
355 |
+
msgstr "Engels -- Kopen met PayPal - afgeronde hoeken blauw"
|
356 |
+
|
357 |
+
#: inc/settings/mollie_paypal_button_enabler.php:54
|
358 |
+
msgctxt "Mollie PayPal button Settings"
|
359 |
+
msgid "English -- Buy with PayPal - Pill blue"
|
360 |
+
msgstr "Engels -- Kopen met PayPal - pilvormig blauw"
|
361 |
+
|
362 |
+
#: inc/settings/mollie_paypal_button_enabler.php:46
|
363 |
+
msgctxt "Mollie PayPal Button Settings"
|
364 |
+
msgid "Select the text and the colour of the button."
|
365 |
+
msgstr "Selecteer de tekst en de kleur van de knop."
|
366 |
+
|
367 |
+
#: inc/settings/mollie_paypal_button_enabler.php:44
|
368 |
+
msgctxt "Mollie PayPal Button Settings"
|
369 |
+
msgid "Button text language and color"
|
370 |
+
msgstr "Knop tekst taal en kleur"
|
371 |
+
|
372 |
+
#: inc/settings/mollie_paypal_button_enabler.php:35
|
373 |
+
msgid "Enable the PayPal button to be used in the product page."
|
374 |
+
msgstr "Activeer de PayPal knop om te gebruiken op de productpagina."
|
375 |
+
|
376 |
+
#: inc/settings/mollie_paypal_button_enabler.php:31
|
377 |
+
msgid "Display on product page"
|
378 |
+
msgstr "Toon op de productpagina"
|
379 |
+
|
380 |
+
#: inc/settings/mollie_paypal_button_enabler.php:23
|
381 |
+
msgid "Enable the PayPal button to be used in the cart page."
|
382 |
+
msgstr "Activeer de PayPal knop om deze te gebruiken op de winkelwagenpagina."
|
383 |
+
|
384 |
+
#: inc/settings/mollie_paypal_button_enabler.php:19
|
385 |
+
msgid "Display on cart page"
|
386 |
+
msgstr "Toon op de winkelwagenpagina"
|
387 |
+
|
388 |
+
#: inc/settings/mollie_paypal_button_enabler.php:12
|
389 |
+
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"
|
390 |
+
msgstr "%1sDe PayPal knop is geoptimaliseerd voor digitale artikelen. Hij verschijnt alleen wanneer het product niet wordt verzonden. %2sU kunt alleen de adresgegevens van de klant verkrijgen, wanneer u de transactie hebt uitgevoerd met de %3sBestellingen API%4s.%5s%6s"
|
391 |
+
|
392 |
+
#: inc/settings/mollie_paypal_button_enabler.php:7
|
393 |
+
msgid "PayPal button display settings"
|
394 |
+
msgstr "PayPal knop weergave-instellingen"
|
395 |
+
|
396 |
+
#: src/Mollie/WC/Helper/Settings.php:159
|
397 |
+
msgid "%s surcharge"
|
398 |
+
msgstr "%s prijstoeslag"
|
399 |
+
|
400 |
+
#: src/Mollie/WC/Helper/Settings.php:125
|
401 |
+
msgid "%s custom logo"
|
402 |
+
msgstr "%s aangepast logo"
|
403 |
+
|
404 |
+
#: src/Mollie/WC/Helper/Settings.php:107
|
405 |
+
msgid "Sales countries"
|
406 |
+
msgstr "Verkooplanden"
|
407 |
+
|
408 |
+
#: src/Mollie/WC/Helper/Settings.php:61
|
409 |
+
msgid "%s display settings"
|
410 |
+
msgstr "%s weergave-instellingen"
|
411 |
+
|
412 |
+
#: inc/settings/mollie_advanced_settings.php:124
|
413 |
+
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"
|
414 |
+
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"
|
415 |
+
|
416 |
+
#: inc/settings/mollie_advanced_settings.php:109
|
417 |
+
msgid "API Payment Description"
|
418 |
+
msgstr "Beschrijving Betalingen API"
|
419 |
+
|
420 |
+
#: inc/settings/mollie_advanced_settings.php:99
|
421 |
+
msgid "Click %shere%s to read more about the differences between the Payments and Orders API"
|
422 |
+
msgstr "Klik %shier%s voor meer informatie over de verschillen tussen de Betalingen en Bestellingen API"
|
423 |
+
|
424 |
+
#: inc/settings/mollie_advanced_settings.php:82
|
425 |
+
msgid "Select API Method"
|
426 |
+
msgstr "Selecteer de API methode"
|
427 |
+
|
428 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2645
|
429 |
+
msgid "%1$sMollie Payments for WooCommerce%2$s Unable to upload the file. Size must be under 500kb."
|
430 |
+
msgstr "%1$sMollie-betalingen voor WooCommerce%2$s Uploaden bestand niet mogelijk, de grootte mag niet meer bedragen dan 500 kB."
|
431 |
+
|
432 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2606
|
433 |
+
msgid " +%1s%2s + %3s%% Fee"
|
434 |
+
msgstr " +%1s%2s + %3s%% vergoeding"
|
435 |
+
|
436 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2589
|
437 |
+
msgid " +%1s%% Fee"
|
438 |
+
msgstr " +%1s%% vergoeding"
|
439 |
+
|
440 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2579
|
441 |
+
msgid " +%1s%2s Fee"
|
442 |
+
msgstr " +%1s%2s vergoeding"
|
443 |
+
|
444 |
+
#: src/Mollie/WC/Gateway/Abstract.php:138
|
445 |
+
msgid "No custom logo selected"
|
446 |
+
msgstr "Geen aangepast logo gekozen"
|
447 |
+
|
448 |
+
#: src/Mollie/WC/Helper/Settings.php:226
|
449 |
+
msgid "Limit the maximum fee added on checkout. Default 0"
|
450 |
+
msgstr "Limiet van de maximum vergoeding toegevoegd aan de betaling. Standaard 0"
|
451 |
+
|
452 |
+
#: src/Mollie/WC/Helper/Settings.php:223
|
453 |
+
msgid "Payment surcharge limit in %s"
|
454 |
+
msgstr "Limiet betalingstoeslag in %s"
|
455 |
+
|
456 |
+
#: src/Mollie/WC/Helper/Settings.php:213
|
457 |
+
msgid "Control the percentage fee added on checkout. Default 0.01"
|
458 |
+
msgstr "Controle van de procentuele vergoeding toegevoegd aan de betaling. Standaard 0.01"
|
459 |
+
|
460 |
+
#: src/Mollie/WC/Helper/Settings.php:210
|
461 |
+
msgid "Payment surcharge percentage amount %"
|
462 |
+
msgstr "Hoogte % prijstoeslag betaling"
|
463 |
+
|
464 |
+
#: src/Mollie/WC/Helper/Settings.php:200
|
465 |
+
msgid "Control the fee added on checkout. Default 0.01"
|
466 |
+
msgstr "Controle van de vergoeding toegevoegd aan de betaling. Standaard 0.01"
|
467 |
+
|
468 |
+
#: src/Mollie/WC/Helper/Settings.php:197
|
469 |
+
msgid "Payment surcharge fixed amount in %s"
|
470 |
+
msgstr "Betalingstoeslag vast bedrag in %s"
|
471 |
+
|
472 |
+
#: src/Mollie/WC/Helper/Settings.php:190
|
473 |
+
msgid "Choose a payment surcharge for this gateway"
|
474 |
+
msgstr "Selecteer een betalingstoeslag voor deze gateway"
|
475 |
+
|
476 |
+
#: src/Mollie/WC/Helper/Settings.php:184
|
477 |
+
msgid "Fixed fee and percentage"
|
478 |
+
msgstr "Vaste vergoeding en percentage"
|
479 |
+
|
480 |
+
#: src/Mollie/WC/Helper/Settings.php:180
|
481 |
+
msgid "Percentage"
|
482 |
+
msgstr "Percentage"
|
483 |
+
|
484 |
+
#: src/Mollie/WC/Helper/Settings.php:176
|
485 |
+
msgid "Fixed fee"
|
486 |
+
msgstr "Vaste vergoeding"
|
487 |
+
|
488 |
+
#: src/Mollie/WC/Helper/Settings.php:172
|
489 |
+
msgid "No fee"
|
490 |
+
msgstr "Geen vergoeding"
|
491 |
+
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:166
|
493 |
+
msgid "Payment Surcharge"
|
494 |
+
msgstr "Betalingstoeslag"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Helper/Settings.php:150
|
497 |
+
msgid "Upload a custom icon for this gateway. The feature must be enabled."
|
498 |
+
msgstr "Upload een aangepast pictogram voor deze gateway. De functie moet geactiveerd zijn."
|
499 |
+
|
500 |
+
#: src/Mollie/WC/Helper/Settings.php:143
|
501 |
+
msgid "Upload custom logo"
|
502 |
+
msgstr "Upload aangepast logo"
|
503 |
+
|
504 |
+
#: src/Mollie/WC/Helper/Settings.php:137
|
505 |
+
msgid "Enable the feature to add a custom logo for this gateway. This feature will have precedence over other logo options."
|
506 |
+
msgstr "Activeer de functie om een aangepast logo toe te voegen aan deze gateway. Deze functie is preferent aan andere opties voor het logo."
|
507 |
+
|
508 |
+
#: src/Mollie/WC/Helper/Settings.php:132
|
509 |
+
msgid "Enable custom logo"
|
510 |
+
msgstr "Activeer aangepast logo"
|
511 |
+
|
512 |
+
#: src/Mollie/WC/Helper/GatewaySurchargeHandler.php:253
|
513 |
+
msgid "Fee"
|
514 |
+
msgstr "Vergoeding"
|
515 |
+
|
516 |
+
#: inc/settings/mollie_applepay_settings.php:106
|
517 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:32
|
518 |
+
msgid "Enable the Apple Pay direct buy button on the Product page"
|
519 |
+
msgstr "Activeer de Apple Pay direct-kopen-knop op de productpagina"
|
520 |
+
|
521 |
+
#: inc/settings/mollie_applepay_settings.php:103
|
522 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:29
|
523 |
+
msgid "Enable Apple Pay Button on Product page"
|
524 |
+
msgstr "Activeer de Apple Pay knop op de productpagina"
|
525 |
+
|
526 |
+
#: inc/settings/mollie_applepay_settings.php:91
|
527 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:21
|
528 |
+
msgid "Enable the Apple Pay direct buy button on the Cart page"
|
529 |
+
msgstr "Activeer de Apple Pay direct-kopen-knop op de winkelwagenpagina"
|
530 |
+
|
531 |
+
#: inc/settings/mollie_applepay_settings.php:88
|
532 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:18
|
533 |
+
msgid "Enable Apple Pay Button on Cart page"
|
534 |
+
msgstr "Activeer de Apple Pay knop op de winkelwagenpagina"
|
535 |
+
|
536 |
+
#: pluginEnvironmentChecker/EnvironmentChecker.php:49
|
537 |
+
msgid "Validation failed with %1$d errors"
|
538 |
+
msgstr "Validatie niet geslaagd met %1$d errors"
|
539 |
+
|
540 |
+
#: src/Mollie/WC/Plugin.php:591
|
541 |
+
msgid "Mollie Voucher category"
|
542 |
+
msgstr "Mollie-waardeboncategorie"
|
543 |
+
|
544 |
+
#: src/Mollie/WC/Plugin.php:531 src/Mollie/WC/Plugin.php:594
|
545 |
+
msgid "Same as default category"
|
546 |
+
msgstr "Zelfde als standaardcategorie"
|
547 |
+
|
548 |
+
#: src/Mollie/WC/Plugin.php:464 src/Mollie/WC/Plugin.php:487
|
549 |
+
msgid "Select a voucher category to apply to all products with this category"
|
550 |
+
msgstr "Selecteer een waardeboncategorie om alle producten met deze categorie te gebruiken"
|
551 |
+
|
552 |
+
#: src/Mollie/WC/Plugin.php:430 src/Mollie/WC/Plugin.php:462
|
553 |
+
#: src/Mollie/WC/Plugin.php:485 src/Mollie/WC/Plugin.php:598
|
554 |
+
msgid "Gift"
|
555 |
+
msgstr "Cadeau"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Plugin.php:429 src/Mollie/WC/Plugin.php:461
|
558 |
+
#: src/Mollie/WC/Plugin.php:484 src/Mollie/WC/Plugin.php:597
|
559 |
+
msgid "Eco"
|
560 |
+
msgstr "Eco"
|
561 |
+
|
562 |
+
#: src/Mollie/WC/Plugin.php:428 src/Mollie/WC/Plugin.php:460
|
563 |
+
#: src/Mollie/WC/Plugin.php:483 src/Mollie/WC/Plugin.php:596
|
564 |
+
msgid "Meal"
|
565 |
+
msgstr "Maaltijd"
|
566 |
+
|
567 |
+
#: src/Mollie/WC/Plugin.php:427 src/Mollie/WC/Plugin.php:459
|
568 |
+
#: src/Mollie/WC/Plugin.php:482 src/Mollie/WC/Plugin.php:595
|
569 |
+
msgid "No Category"
|
570 |
+
msgstr "Geen categorie"
|
571 |
+
|
572 |
+
#: src/Mollie/WC/Plugin.php:426 src/Mollie/WC/Plugin.php:458
|
573 |
+
#: src/Mollie/WC/Plugin.php:481
|
574 |
+
msgid "--Please choose an option--"
|
575 |
+
msgstr "--Selecteer een optie--"
|
576 |
+
|
577 |
+
#: src/Mollie/WC/Plugin.php:423 src/Mollie/WC/Plugin.php:456
|
578 |
+
#: src/Mollie/WC/Plugin.php:478
|
579 |
+
msgid "Mollie Voucher Category"
|
580 |
+
msgstr "Mollie-waardeboncategorie"
|
581 |
+
|
582 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
583 |
+
msgid "Contact Support"
|
584 |
+
msgstr "Neem contact op met onze support afdeling"
|
585 |
+
|
586 |
+
#: src/Mollie/WC/Helper/Settings.php:626
|
587 |
+
msgid "Plugin Documentation"
|
588 |
+
msgstr "Plugin documentatie"
|
589 |
+
|
590 |
+
#: src/Mollie/WC/Helper/Settings.php:619
|
591 |
+
msgid "to create a new Mollie account and start receiving payments in a couple of minutes. "
|
592 |
+
msgstr "om een nieuw Mollie-account aan te maken en binnen enkele minuten betalingen te ontvangen. "
|
593 |
+
|
594 |
+
#: src/Mollie/WC/Helper/Settings.php:617
|
595 |
+
msgid " Mollie is dedicated to making payments better for WooCommerce. "
|
596 |
+
msgstr " Mollie, om betalingen van WooCommerce te verbeteren. "
|
597 |
+
|
598 |
+
#: src/Mollie/WC/Helper/Settings.php:616
|
599 |
+
msgid " Simply drop them ready-made into your WooCommerce webshop with this powerful plugin by Mollie."
|
600 |
+
msgstr " Drop deze eenvoudig kant en klaar in uw WooCommerce webshop met deze krachtige plugin van Mollie."
|
601 |
+
|
602 |
+
#: src/Mollie/WC/Helper/Settings.php:615
|
603 |
+
msgid "Quickly integrate all major payment methods in WooCommerce, wherever you need them."
|
604 |
+
msgstr "Integreer snel en daar waar nodig al uw belangrijkste betalingsmethodes in WooCommerce."
|
605 |
+
|
606 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:147
|
607 |
+
msgid "Advanced"
|
608 |
+
msgstr "Geavanceerd"
|
609 |
+
|
610 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:143
|
611 |
+
msgid "Apple Pay Button"
|
612 |
+
msgstr "Apple Pay knop"
|
613 |
+
|
614 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:138
|
615 |
+
msgid "General"
|
616 |
+
msgstr "Algemeen"
|
617 |
+
|
618 |
+
#: src/Mollie/WC/Gateway/Abstract.php:283
|
619 |
+
msgid "Select none"
|
620 |
+
msgstr "Selecteer geen"
|
621 |
+
|
622 |
+
#: src/Mollie/WC/Gateway/Abstract.php:282
|
623 |
+
msgid "Select all"
|
624 |
+
msgstr "Selecteer alles"
|
625 |
+
|
626 |
+
#: src/Mollie/WC/Gateway/Abstract.php:273
|
627 |
+
msgid "Country"
|
628 |
+
msgstr "Land"
|
629 |
+
|
630 |
+
#: src/Mollie/WC/Gateway/Abstract.php:272
|
631 |
+
msgid "Choose countries…"
|
632 |
+
msgstr "Selecteer landen…"
|
633 |
+
|
634 |
+
#: src/Mollie/WC/Gateway/Abstract.php:244
|
635 |
+
msgid "Return to payments"
|
636 |
+
msgstr "Ga terug naar betalingen"
|
637 |
+
|
638 |
+
#: src/Mollie/WC/Gateway/Abstract.php:260 src/Mollie/WC/Helper/Settings.php:114
|
639 |
+
msgid "Sell to specific countries"
|
640 |
+
msgstr "Verkoop aan bepaalde landen"
|
641 |
+
|
642 |
+
#: inc/settings/mollie_advanced_settings.php:73
|
643 |
+
msgid "Single Click Payments"
|
644 |
+
msgstr "Betalen met één klik"
|
645 |
+
|
646 |
+
#: inc/settings/mollie_advanced_settings.php:68
|
647 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%1$s</code>. Required if WooCommerce Subscriptions is being used! Read more about <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> and how it improves your conversion."
|
648 |
+
msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor 'Betalen met één klik'? Standaard <code>%1$s</code>. Vereist als WooCommerce-abonnementen worden gebruikt! Lees meer over <a href=\"https://help.mollie.com/hc/en-us/articles/115000671249-What-are-single-click-payments-and-how-does-it-work-\">%2$s</a> en hoe het uw conversie verbetert."
|
649 |
+
|
650 |
+
#: inc/settings/mollie_advanced_settings.php:6
|
651 |
+
msgid "Mollie advanced settings"
|
652 |
+
msgstr "Geavanceerde Mollie-instellingen"
|
653 |
+
|
654 |
+
#: inc/settings/mollie_applepay_settings.php:84
|
655 |
+
msgid "The following options are required to use the Apple Pay Direct Button"
|
656 |
+
msgstr "De volgende opties zijn vereist voor het gebruik van de Apple Pay direct-betalen-knop"
|
657 |
+
|
658 |
+
#: inc/settings/mollie_applepay_settings.php:14
|
659 |
+
msgid "The following options are required to use the Apple Pay gateway"
|
660 |
+
msgstr "De volgende opties zijn vereist voor het gebruik van de Apple Pay gateway"
|
661 |
|
662 |
+
#: inc/settings/mollie_components_enabler.php:8
|
663 |
+
msgid "Use the Mollie Components for this Gateway. Read more about <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> and how it improves your conversion."
|
664 |
+
msgstr "Gebruik de Mollie-componenten voor deze gateway. Lees meer over <a href=\"https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components\">%s</a> en hoe het uw conversie verbetert."
|
665 |
+
|
666 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:11
|
667 |
+
msgid "The following options are required to use the Apple Pay button"
|
668 |
+
msgstr "De volgende opties zijn vereist voor het gebruik van de Apple Pay knop"
|
669 |
+
|
670 |
+
#: inc/settings/mollie_applepay_settings.php:79
|
671 |
+
#: inc/settings/mollie_apple_pay_button_enabler.php:6
|
672 |
+
msgid "Apple Pay button settings"
|
673 |
+
msgstr "Instellingen Apple Pay knop"
|
674 |
+
|
675 |
+
#: mollie-payments-for-woocommerce.php:91
|
676 |
+
msgid "%1$sMollie Payments for WooCommerce: API keys missing%2$s Please%3$s set your API keys here%4$s."
|
677 |
+
msgstr "%1$sMollie-betalingen voor WooCommerce: API-sleutels ontbreken%2$s stel%3$s hier uw API-sleutels in%4$s."
|
678 |
+
|
679 |
+
#: src/Mollie/WC/Plugin.php:541
|
680 |
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."
|
681 |
+
msgstr "Om hiervoor te kunnen zorgen dienen alle producten van de bestelling te beschikken over een categorie. Om het selecteren van een waardebon voor een bepaald product te deactiveren kiest u de optie ''Geen categorie''."
|
682 |
|
683 |
+
#: src/Mollie/WC/Plugin.php:524
|
684 |
msgid "Products voucher category"
|
685 |
+
msgstr "Producten waardeboncategorie"
|
686 |
|
687 |
+
#: src/Mollie/WC/Plugin.php:308
|
688 |
msgid "%1$sMollie Payments for WooCommerce%2$s The test mode is active, %3$s disable it%4$s before deploying into production."
|
689 |
+
msgstr "%1$sMollie Payments voor WooCommerce%2$s de testmodus is actief, %3$s deactiveer deze%4$s voordat hij wordt geïmplementeerd."
|
690 |
|
691 |
+
#: src/Mollie/WC/Helper/Settings.php:654 src/Mollie/WC/Plugin.php:391
|
692 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:11
|
693 |
msgid "Mollie Settings"
|
694 |
msgstr "Mollie-instellingen"
|
695 |
|
705 |
|
706 |
#: src/Mollie/WC/Gateway/Mealvoucher.php:46
|
707 |
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"
|
708 |
+
msgstr "Om hiervoor te kunnen zorgen moeten alle producten van de bestelling beschikken over een categorie. De keuzeschakelaar zal de standaard categorie toewijzen voor de winkelproducten"
|
709 |
|
710 |
+
#: src/Mollie/WC/Gateway/Mealvoucher.php:35 src/Mollie/WC/Plugin.php:520
|
711 |
msgid "Select the default products category"
|
712 |
+
msgstr "Selecteer de standaard productencategorie"
|
713 |
|
714 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:40
|
715 |
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"
|
716 |
+
msgstr "Activeer deze optie wanneer u de mogelijkheid wilt hebben om een aantal dagen in te stellen waarna de betaling vervalt. Deze zet alle transacties om in betalingen in plaats van bestellingen"
|
717 |
|
718 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:39
|
719 |
+
#: src/Mollie/WC/Helper/Settings.php:245
|
720 |
msgid "Enable expiry date for payments"
|
721 |
msgstr "Activeer de vervaldatum voor betalingen"
|
722 |
|
723 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:38
|
724 |
+
#: src/Mollie/WC/Helper/Settings.php:244
|
725 |
msgid "Activate expiry date setting"
|
726 |
+
msgstr "Activeer instellingen vervaldatum"
|
727 |
|
728 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2178
|
729 |
msgctxt "Placeholder 1: remainder method, Placeholder 2: amount value, Placeholder 3: currency"
|
730 |
msgid " Remainder: %1$s %2$s %3$s."
|
731 |
+
msgstr " Overige: %1$s %2$s %3$s."
|
732 |
|
733 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2166
|
734 |
msgctxt "Placeholder 1: giftcard issuer, Placeholder 2: amount value, Placeholder 3: currency"
|
735 |
msgid "Mollie - Giftcard details: %1$s %2$s %3$s."
|
736 |
+
msgstr "Mollie - gegevens cadeaubon: %1$s %2$s %3$s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
|
738 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:54
|
739 |
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"
|
740 |
+
msgstr "%1$sApple Pay validatiefout%2$s Raadpleeg %3$sde pagina met Apple serververeisten%4$s om de Apple Pay knop te laten werken"
|
741 |
|
742 |
+
#: src/Mollie/WC/Helper/ApplePayDirectHandler.php:39
|
743 |
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"
|
744 |
+
msgstr "%1$sServer voldoet niet aan Apple vereisten%2$s Raadpleeg %3$sde pagina met Apple serververeisten%4$s om de Apple Pay knop te laten werken"
|
745 |
|
746 |
#: inc/settings/mollie_creditcard_icons_selector.php:41
|
747 |
msgid "Show Mastercard Icon"
|
750 |
#: inc/settings/mollie_components.php:94
|
751 |
msgctxt "Mollie Components Settings"
|
752 |
msgid "Transform Text "
|
753 |
+
msgstr "Wijzig tekst "
|
754 |
|
755 |
#: inc/settings/mollie_components.php:82
|
756 |
msgctxt "Mollie Components Settings"
|
760 |
#: inc/settings/mollie_components.php:72
|
761 |
msgctxt "Mollie Components Settings"
|
762 |
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
763 |
+
msgstr "Voeg vulling toe aan de componenten. '16px 16px 16px 16px' en 'em', 'px', 'rem' eenheden zijn toegestaan."
|
764 |
|
765 |
#: inc/settings/mollie_components.php:35
|
766 |
msgctxt "Mollie Components Settings"
|
767 |
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
768 |
+
msgstr "Bepaalt de lettergrootte van het component. 'em', 'px', 'rem' eenheden zijn toegestaan."
|
769 |
|
770 |
#: inc/settings/mollie_creditcard_icons_selector.php:51
|
771 |
msgid "Show VPay Icon"
|
772 |
+
msgstr "Toon VPay pictogram"
|
773 |
|
774 |
#: inc/settings/mollie_creditcard_icons_selector.php:46
|
775 |
msgid "Show Visa Icon"
|
793 |
|
794 |
#: inc/settings/mollie_creditcard_icons_selector.php:13
|
795 |
msgid "Show customized creditcard icons on checkout page"
|
796 |
+
msgstr "Toon aangepaste creditcardpictogrammen op de checkout pagina"
|
797 |
|
798 |
#: inc/settings/mollie_creditcard_icons_selector.php:12
|
799 |
msgid "Enable Icons Selector"
|
800 |
+
msgstr "Activeer picotogramselectie"
|
801 |
|
802 |
#: inc/settings/mollie_creditcard_icons_selector.php:5
|
803 |
msgid "Customize Icons"
|
804 |
msgstr "Pas pictogrammen aan"
|
805 |
|
806 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
807 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2129
|
808 |
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)."
|
809 |
+
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)."
|
810 |
|
811 |
+
#: src/Mollie/WC/Gateway/Abstract.php:590
|
812 |
msgid "Failed switching subscriptions, no valid mandate."
|
813 |
+
msgstr "Abonnementen switchen mislukt, geen geldig mandaat"
|
|
|
|
|
|
|
|
|
814 |
|
815 |
#: inc/settings/mollie_components_enabler.php:6
|
816 |
msgid "Enable Mollie Components"
|
819 |
#: inc/settings/mollie_components.php:157
|
820 |
msgctxt "Mollie Components Settings"
|
821 |
msgid "Background Color for invalid input."
|
822 |
+
msgstr "Achtergrondkleur voor ongeldige invoer."
|
823 |
|
824 |
#: inc/settings/mollie_components.php:146
|
825 |
msgctxt "Mollie Components Settings"
|
826 |
msgid "Text Color for invalid input."
|
827 |
+
msgstr "Tekstkleur voor ongeldige invoer."
|
828 |
|
829 |
#: inc/settings/mollie_components.php:136
|
830 |
msgctxt "Mollie Components Settings"
|
941 |
msgid "Base Styles"
|
942 |
msgstr "Basisstijlen"
|
943 |
|
944 |
+
#: src/Mollie/WC/Plugin.php:950
|
945 |
msgid "An unknown error occurred, please check the card fields."
|
946 |
msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden."
|
947 |
|
948 |
+
#: src/Mollie/WC/Plugin.php:943
|
949 |
msgid "Verification Code"
|
950 |
msgstr "Verificatiecode"
|
951 |
|
952 |
+
#: src/Mollie/WC/Plugin.php:939
|
953 |
msgid "Expiry Date"
|
954 |
msgstr "Vervaldatum"
|
955 |
|
956 |
+
#: src/Mollie/WC/Plugin.php:935
|
957 |
msgid "Card Number"
|
958 |
msgstr "Kaartnummer"
|
959 |
|
960 |
+
#: src/Mollie/WC/Plugin.php:931
|
961 |
msgid "Card Holder"
|
962 |
msgstr "Kaarthouder"
|
963 |
|
964 |
+
#: inc/settings/mollie_components_enabler.php:12
|
965 |
#: src/Mollie/WC/Settings/Page/Components.php:10
|
966 |
+
#: src/Mollie/WC/Settings/Page/Mollie.php:139
|
967 |
msgid "Mollie Components"
|
968 |
msgstr "Mollie-componenten"
|
969 |
|
970 |
+
#: src/Mollie/WC/Plugin.php:757
|
971 |
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
972 |
msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie."
|
973 |
|
974 |
+
#: src/Mollie/WC/Plugin.php:739
|
975 |
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
976 |
msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie."
|
977 |
|
978 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
979 |
msgid "Empty WooCommerce order items or mollie order lines."
|
980 |
+
msgstr "Lege WooCommerce bestelartikelen of Mollie-bestelregels."
|
981 |
|
982 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
983 |
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
984 |
+
msgstr "Onmogelijk om de bestelartikel-id met betrekking tot het afstandsartikel terug te halen: %1$s Probeer een terugbetaling te doen per bedrag."
|
985 |
|
986 |
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
987 |
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
988 |
msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld."
|
989 |
|
990 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:119
|
991 |
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."
|
992 |
+
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."
|
993 |
|
994 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:145
|
996 |
msgid "Order completed using %1$s payment (%2$s)."
|
997 |
msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)."
|
998 |
|
1025 |
|
1026 |
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
1027 |
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
1028 |
+
msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail van de klant verplicht."
|
1029 |
|
1030 |
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
1031 |
msgid "Przelewy24"
|
1032 |
msgstr "Przelewy24"
|
1033 |
|
1034 |
+
#: src/Mollie/WC/Helper/Status.php:89
|
1035 |
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."
|
1036 |
+
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."
|
1037 |
|
1038 |
+
#: src/Mollie/WC/Payment/Order.php:836
|
1039 |
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
1040 |
msgstr "Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s."
|
1041 |
|
1042 |
+
#: src/Mollie/WC/Payment/Order.php:758
|
1043 |
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
1044 |
msgstr "%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s."
|
1045 |
|
1046 |
+
#: src/Mollie/WC/Payment/Order.php:742
|
1047 |
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
1048 |
msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie."
|
1049 |
|
1050 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1051 |
+
#: src/Mollie/WC/Payment/Order.php:361
|
1052 |
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!"
|
1053 |
+
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!"
|
1054 |
|
1055 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1238
|
1057 |
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it)."
|
1058 |
msgstr "%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet, gelieve te beoordelen (en productvoorraden aan te passen als u dit gebruikt)."
|
1059 |
|
|
|
|
|
|
|
|
|
|
|
1060 |
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
1061 |
msgid "Order"
|
1062 |
msgstr "Bestelling"
|
1067 |
msgstr "%s betaling (%s) geannuleerd."
|
1068 |
|
1069 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1070 |
+
#: src/Mollie/WC/Payment/Order.php:931
|
1071 |
msgid "%s order (%s) expired ."
|
1072 |
msgstr "%s bestelling (%s) verlopen."
|
1073 |
|
1074 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1075 |
+
#: src/Mollie/WC/Payment/Order.php:509
|
1076 |
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
1077 |
+
msgstr "%s bestelling verlopen (%s) maar niet geannuleerd door een andere betaling die nog in behandeling is (%s)."
|
1078 |
|
1079 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1080 |
+
#: src/Mollie/WC/Payment/Order.php:444
|
1081 |
msgid "%s order (%s) cancelled ."
|
1082 |
msgstr "%s bestelling (%s) geannuleerd."
|
1083 |
|
1084 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1085 |
+
#: src/Mollie/WC/Payment/Order.php:314
|
1086 |
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."
|
1087 |
+
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."
|
|
|
|
|
|
|
|
|
1088 |
|
1089 |
+
#: inc/settings/mollie_advanced_settings.php:57
|
1090 |
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."
|
1091 |
+
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."
|
1092 |
|
1093 |
+
#: inc/settings/mollie_advanced_settings.php:26
|
1094 |
msgid "Automatically send WordPress language"
|
1095 |
msgstr "Automatisch verzenden van WordPress-taal"
|
1096 |
|
1097 |
+
#: inc/settings/mollie_advanced_settings.php:18
|
1098 |
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."
|
1099 |
+
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."
|
1100 |
|
1101 |
+
#: src/Mollie/WC/Helper/OrderLines.php:497
|
1102 |
msgid "Shipping"
|
1103 |
msgstr "Verzending"
|
1104 |
|
1105 |
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
1106 |
msgid "Klarna Slice it"
|
1107 |
+
msgstr "Klarna Slice it"
|
1108 |
|
1109 |
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
1110 |
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
1111 |
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
1112 |
+
msgstr "Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-afrekenvelden zijn geactiveerd en verplicht zijn gesteld."
|
1113 |
|
1114 |
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
1115 |
msgid "Klarna Pay later"
|
1125 |
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
1126 |
msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, u heeft PHP %s. Installeer de upgrade en bekijk %sdeze FAQ%s"
|
1127 |
|
1128 |
+
#: src/Mollie/WC/Helper/Settings.php:825
|
1129 |
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."
|
1130 |
+
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."
|
1131 |
|
1132 |
+
#: src/Mollie/WC/Helper/Settings.php:801
|
1133 |
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."
|
1134 |
+
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."
|
1135 |
|
1136 |
+
#: inc/settings/mollie_advanced_settings.php:54
|
1137 |
msgid "Lithuanian"
|
1138 |
msgstr "Litouws"
|
1139 |
|
1140 |
+
#: inc/settings/mollie_advanced_settings.php:53
|
1141 |
msgid "Latvian"
|
1142 |
msgstr "Lets"
|
1143 |
|
1144 |
+
#: inc/settings/mollie_advanced_settings.php:52
|
1145 |
msgid "Polish"
|
1146 |
msgstr "Pools"
|
1147 |
|
1148 |
+
#: inc/settings/mollie_advanced_settings.php:51
|
1149 |
msgid "Hungarian"
|
1150 |
msgstr "Hongaars"
|
1151 |
|
1152 |
+
#: inc/settings/mollie_advanced_settings.php:50
|
1153 |
msgid "Icelandic"
|
1154 |
+
msgstr "IJslands"
|
1155 |
|
1156 |
+
#: inc/settings/mollie_advanced_settings.php:49
|
1157 |
msgid "Danish"
|
1158 |
msgstr "Deens"
|
1159 |
|
1160 |
+
#: inc/settings/mollie_advanced_settings.php:48
|
1161 |
msgid "Finnish"
|
1162 |
msgstr "Fins"
|
1163 |
|
1164 |
+
#: inc/settings/mollie_advanced_settings.php:47
|
1165 |
msgid "Swedish"
|
1166 |
msgstr "Zweeds"
|
1167 |
|
1168 |
+
#: inc/settings/mollie_advanced_settings.php:46
|
1169 |
msgid "Norwegian"
|
1170 |
msgstr "Noors"
|
1171 |
|
1172 |
+
#: inc/settings/mollie_advanced_settings.php:45
|
1173 |
msgid "Italian"
|
1174 |
msgstr "Italiaans"
|
1175 |
|
1176 |
+
#: inc/settings/mollie_advanced_settings.php:44
|
1177 |
msgid "Portuguese"
|
1178 |
msgstr "Portugees"
|
1179 |
|
1180 |
+
#: inc/settings/mollie_advanced_settings.php:43
|
1181 |
msgid "Catalan"
|
1182 |
msgstr "Catalaans"
|
1183 |
|
1184 |
+
#: inc/settings/mollie_advanced_settings.php:41
|
1185 |
msgid "Swiss German"
|
1186 |
msgstr "Zwitserduits"
|
1187 |
|
1188 |
+
#: inc/settings/mollie_advanced_settings.php:40
|
1189 |
msgid "Austrian German"
|
1190 |
msgstr "Oostenrijks-Duits"
|
1191 |
|
1192 |
+
#: src/Mollie/WC/Helper/Api.php:42
|
1193 |
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."
|
1194 |
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."
|
1195 |
|
1196 |
+
#: src/Mollie/WC/Helper/Api.php:40
|
1197 |
msgid "No API key provided. Please set your Mollie API keys below."
|
1198 |
+
msgstr "Geen API-sleutel verschaft. Stel hieronder uw Mollie API-sleutels in."
|
1199 |
|
1200 |
#: src/Mollie/WC/Gateway/Giropay.php:29
|
1201 |
msgid "Giropay"
|
1206 |
msgstr "EPS"
|
1207 |
|
1208 |
#. translators: Placeholder 1: Payment method title
|
1209 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:314
|
1210 |
msgid "Could not create %s renewal payment."
|
1211 |
+
msgstr "Kon geen %s nieuwe betaling aanmaken."
|
1212 |
|
1213 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:271
|
1214 |
msgid "The customer (%s) does not have a valid mandate."
|
1215 |
+
msgstr "De klant (%s) beschikt niet over een geldig mandaat."
|
1216 |
|
1217 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:262
|
1218 |
msgid "The customer (%s) could not be used or found. "
|
1219 |
+
msgstr "De klant (%s) kon niet worden gebruikt of gevonden. "
|
1220 |
|
1221 |
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
1222 |
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
1223 |
#. placeholder 5: refund ID
|
1224 |
+
#: src/Mollie/WC/Payment/Payment.php:511
|
1225 |
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
1226 |
msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s"
|
1227 |
|
1228 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1229 |
+
#: src/Mollie/WC/Payment/Object.php:637
|
1230 |
msgid "%s payment failed via Mollie (%s)."
|
1231 |
msgstr "%s betaling mislukt via Mollie (%s)."
|
1232 |
|
1233 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1145
|
1234 |
msgid "New chargeback %s processed! Order note and order status updated."
|
1235 |
msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt."
|
1236 |
|
1237 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1009
|
1238 |
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
1239 |
msgstr "Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, maar bestelling niet geüpdatet."
|
1240 |
|
1241 |
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
1242 |
#. Mollie currencies
|
1243 |
+
#: src/Mollie/WC/Gateway/Abstract.php:364
|
1244 |
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
1245 |
msgstr "Huidige shopvaluta %s niet ondersteund door Mollie. Lees meer over %sondersteunde valuta's en betaalmethoden.%s "
|
1246 |
|
|
|
|
|
|
|
|
|
1247 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1248 |
+
#: src/Mollie/WC/Payment/Object.php:677
|
|
|
1249 |
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
1250 |
+
msgstr "Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de bestelstatus is niet geüpdatet."
|
|
|
|
|
|
|
|
|
|
|
1251 |
|
1252 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1329
|
1253 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1338
|
1254 |
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
1255 |
+
msgstr "Uw betaling is mislukt. Vervolledig uw bestelling met een andere betaalmethode."
|
1256 |
|
1257 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1258 |
+
#: src/Mollie/WC/Payment/Object.php:603
|
1259 |
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
1260 |
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."
|
1261 |
|
1265 |
msgstr "Bancontact"
|
1266 |
|
1267 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1268 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1617
|
1269 |
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."
|
1270 |
+
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."
|
1271 |
|
1272 |
+
#: src/Mollie/WC/Gateway/Abstract.php:589
|
1273 |
msgid "Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription."
|
1274 |
+
msgstr "Overschakelen naar abonnement is niet geslaagd, geen geldig mandaat gevonden. Plaats een volledig nieuwe bestelling om uw abonnement te wijzigen."
|
|
|
|
|
|
|
|
|
1275 |
|
1276 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1277 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1177
|
1278 |
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it)."
|
1279 |
msgstr "%s betaling teruggevorderd via Mollie (%s). U dient de betaling handmatig te controleren (en productvoorraden aan te passen als u dit gebruikt)."
|
1280 |
|
1281 |
+
#: src/Mollie/WC/Gateway/Kbc.php:40
|
1282 |
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."
|
1283 |
+
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."
|
1284 |
|
1285 |
#: src/Mollie/WC/Gateway/Kbc.php:34
|
1286 |
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."
|
1287 |
+
msgstr "Als u dit deactiveert, zal er geen dropdown met verschillende KBC/CBC-banken in de WooCommerce- checkout worden getoond, dus gebruikers zullen na de checkout een KBC/CBC-bank selecteren op de Mollie-betaalpagina."
|
1288 |
|
1289 |
#: src/Mollie/WC/Gateway/Kbc.php:32
|
1290 |
msgid "Show KBC/CBC banks dropdown"
|
1292 |
|
1293 |
#: src/Mollie/WC/Gateway/Ideal.php:41
|
1294 |
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."
|
1295 |
+
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."
|
1296 |
|
1297 |
+
#: src/Mollie/WC/Gateway/Ideal.php:35
|
1298 |
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."
|
1299 |
+
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."
|
1300 |
|
1301 |
+
#: src/Mollie/WC/Gateway/Ideal.php:33
|
1302 |
msgid "Show iDEAL banks dropdown"
|
1303 |
msgstr "Toon iDEAL-banken dropdown"
|
1304 |
|
1305 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:39
|
1306 |
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."
|
1307 |
msgstr "Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd."
|
1308 |
|
1309 |
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
1310 |
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."
|
1311 |
+
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."
|
1312 |
|
1313 |
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
1314 |
msgid "Show gift cards dropdown"
|
1315 |
msgstr "Toon cadeaubonnen-dropdown"
|
1316 |
|
1317 |
+
#: src/Mollie/WC/Gateway/Abstract.php:578
|
1318 |
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
1319 |
+
msgstr "Bestelling intern voltooid doordat er bij Mollie een bestaand geldig mandaat aanwezig is."
|
|
|
|
|
|
|
|
|
1320 |
|
1321 |
+
#: inc/settings/mollie_advanced_settings.php:16
|
|
|
|
|
|
|
|
|
1322 |
msgid "Cancelled"
|
1323 |
msgstr "Geannuleerd"
|
1324 |
|
1325 |
+
#: inc/settings/mollie_advanced_settings.php:15
|
1326 |
msgid "Pending"
|
1327 |
msgstr "In behandeling"
|
1328 |
|
1329 |
+
#: inc/settings/mollie_advanced_settings.php:12
|
1330 |
msgid "Order status after cancelled payment"
|
1331 |
msgstr "Bestelstatus na geannuleerde betaling"
|
1332 |
|
1333 |
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
1334 |
#. placeholder 3: consumer BIC
|
1335 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
1336 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80 src/Mollie/WC/Gateway/Ideal.php:124
|
1337 |
#: src/Mollie/WC/Gateway/Sofort.php:64
|
|
|
|
|
1338 |
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
1339 |
+
msgstr "Betaling voltooid met <strong>%s</strong> (IBAN (ten minste 4 cijfers): %s, BIC: %s)"
|
1340 |
|
1341 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1653
|
1342 |
msgid "Your order has been cancelled."
|
1343 |
msgstr "Uw bestelling is geannuleerd."
|
1344 |
|
1345 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1626
|
1346 |
msgid ", payment pending."
|
1347 |
msgstr ", betaling in behandeling."
|
1348 |
|
1349 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1590
|
1350 |
msgid "Order cancelled"
|
1351 |
+
msgstr "Bestelling geannuleerd"
|
1352 |
|
1353 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
1354 |
#. status, placeholder 3: payment ID
|
1355 |
+
#: src/Mollie/WC/Gateway/Abstract.php:895
|
1356 |
msgid "%s payment %s (%s), not processed."
|
1357 |
msgstr "%s betaling %s (%s), niet verwerkt."
|
1358 |
|
1359 |
#. translators: Default gift card dropdown description, displayed above issuer
|
1360 |
#. drop down
|
1361 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:74
|
1362 |
msgid "Select your gift card"
|
1363 |
msgstr "Selecteer uw cadeaubon"
|
1364 |
|
1365 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:58
|
1366 |
msgid "Gift cards"
|
1367 |
msgstr "Cadeaubonnen"
|
1368 |
|
1369 |
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
1370 |
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."
|
1371 |
+
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."
|
1372 |
|
1373 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1374 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:165
|
1375 |
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
1376 |
+
msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling niet slaagt, omdat het verwerken van een SEPA-incassobetaling enige tijd in beslag neemt."
|
1377 |
|
1378 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1379 |
+
#: src/Mollie/WC/Payment/Payment.php:406
|
1380 |
msgid "%s payment expired (%s) but not cancelled because of another pending payment (%s)."
|
1381 |
+
msgstr "%s betaling verlopen (%s) maar niet geannuleerd door een andere betaling die nog in behandeling is (%s)."
|
1382 |
|
1383 |
+
#: src/subscriptions_status_check_functions.php:186
|
1384 |
msgid "There are still some subscriptions left, use the tool again!"
|
1385 |
msgstr "Er zijn nog enkele abonnementen over, gebruik de tool opnieuw!"
|
1386 |
|
1387 |
+
#: src/subscriptions_status_check_functions.php:184
|
1388 |
msgid "No more subscriptions left to process!"
|
1389 |
+
msgstr "Geen abonnementen meer over om te verwerken!"
|
1390 |
|
1391 |
+
#: src/subscriptions_status_check_functions.php:171
|
1392 |
msgid "No subscriptions updated in this batch."
|
1393 |
msgstr "Geen abonnementen geüpdatet in deze batch."
|
1394 |
|
1395 |
+
#: src/subscriptions_status_check_functions.php:147
|
1396 |
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
1397 |
+
msgstr "Abonnement niet geüpdatet omdat er geen geldig mandaat aanwezig was bij Mollie. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
1398 |
|
1399 |
+
#: src/subscriptions_status_check_functions.php:133
|
1400 |
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
1401 |
msgstr "Abonnement geüpdatet naar Geautomatiseerde vernieuwing via Mollie, status ingesteld op Actief. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
1402 |
|
1412 |
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
1413 |
msgstr "Controles op abonnementen die verkeerd zijn ingesteld op 'Handmatige vernieuwing'. Lees eerst de "
|
1414 |
|
1415 |
+
#: inc/settings/mollie_advanced_settings.php:65
|
1416 |
msgid "Store customer details at Mollie"
|
1417 |
msgstr "Klantgegevens opslaan bij Mollie"
|
1418 |
|
1419 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1420 |
+
#: src/Mollie/WC/Plugin.php:130
|
1421 |
msgid "%s payment failed (%s)."
|
1422 |
msgstr "%s betaling mislukt (%s)."
|
1423 |
|
1424 |
+
#: src/Mollie/WC/Gateway/Kbc.php:59
|
1425 |
msgid "KBC/CBC Payment Button"
|
1426 |
+
msgstr "KBC/CBC betaalknop"
|
1427 |
|
1428 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:37 src/Mollie/WC/Gateway/Ideal.php:39
|
1429 |
+
#: src/Mollie/WC/Gateway/Kbc.php:38
|
1430 |
msgid "Issuers empty option"
|
1431 |
msgstr "Optie uitgevers leeg"
|
1432 |
|
1433 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:58
|
1434 |
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."
|
1435 |
+
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."
|
1436 |
|
1437 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:57
|
1438 |
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
1439 |
+
msgstr "Sla het Mollie-betaalscherm over wanneer er voor bankoverschrijving is gekozen."
|
1440 |
|
1441 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:56
|
1442 |
msgid "Skip Mollie payment screen"
|
1443 |
msgstr "Mollie-betaalscherm overslaan"
|
1444 |
|
1459 |
msgid "Mollie Payments for WooCommerce"
|
1460 |
msgstr "Mollie-betalingen voor WooCommerce"
|
1461 |
|
1462 |
+
#: src/Mollie/WC/Plugin.php:1320
|
1463 |
msgid "Logs"
|
1464 |
msgstr "Logs"
|
1465 |
|
1466 |
#: src/Mollie/WC/Helper/Status.php:123
|
1467 |
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
1468 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL is geactiveerd. Activeer de 'curl' extensie in uw PHP-configuratie."
|
1469 |
|
1470 |
#: src/Mollie/WC/Helper/Status.php:116
|
1471 |
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
1481 |
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
1482 |
msgstr "De %s plugin vereist ten minste WooCommerce versie %s, u gebruikt versie %s. Update uw WooCommerce plugin."
|
1483 |
|
1484 |
+
#: src/Mollie/WC/Helper/Settings.php:698
|
1485 |
msgid "Debug Log"
|
1486 |
msgstr "Debug-log"
|
1487 |
|
1488 |
+
#: inc/settings/mollie_advanced_settings.php:38
|
1489 |
msgid "French (Belgium)"
|
1490 |
msgstr "Frans (België)"
|
1491 |
|
1492 |
+
#: inc/settings/mollie_advanced_settings.php:37
|
1493 |
msgid "French"
|
1494 |
msgstr "Frans"
|
1495 |
|
1496 |
+
#: inc/settings/mollie_advanced_settings.php:42
|
1497 |
msgid "Spanish"
|
1498 |
msgstr "Spaans"
|
1499 |
|
1500 |
+
#: inc/settings/mollie_advanced_settings.php:39
|
1501 |
msgid "German"
|
1502 |
msgstr "Duits"
|
1503 |
|
1504 |
+
#: inc/settings/mollie_advanced_settings.php:34
|
1505 |
msgid "English"
|
1506 |
msgstr "Engels"
|
1507 |
|
1508 |
+
#: inc/settings/mollie_advanced_settings.php:36
|
1509 |
msgid "Flemish (Belgium)"
|
1510 |
msgstr "Vlaams (België)"
|
1511 |
|
1512 |
+
#: inc/settings/mollie_advanced_settings.php:35
|
1513 |
msgid "Dutch"
|
1514 |
msgstr "Nederlands"
|
1515 |
|
1516 |
+
#: inc/settings/mollie_advanced_settings.php:30
|
1517 |
msgid "Detect using browser language"
|
1518 |
msgstr "Detecteren met gebruik van browser-taal"
|
1519 |
|
1520 |
+
#: inc/settings/mollie_advanced_settings.php:23
|
1521 |
msgid "Payment screen language"
|
1522 |
msgstr "Taal van betaalscherm"
|
1523 |
|
1524 |
+
#: src/Mollie/WC/Helper/Settings.php:694
|
1525 |
msgid "Test API key should start with test_"
|
1526 |
msgstr "Test API-sleutel moet beginnen met test_"
|
1527 |
|
1528 |
+
#: src/Mollie/WC/Helper/Settings.php:683
|
1529 |
msgid "Test API key"
|
1530 |
msgstr "Test API-sleutel"
|
1531 |
|
1532 |
+
#: src/Mollie/WC/Helper/Settings.php:679
|
1533 |
msgid "Enable test mode if you want to test the plugin without using real payments."
|
1534 |
+
msgstr "Activeer de testmodus wanneer u de plugin wilt testen zonder gebruik te maken van echte betalingen."
|
1535 |
|
1536 |
+
#: src/Mollie/WC/Helper/Settings.php:676
|
1537 |
msgid "Enable test mode"
|
1538 |
msgstr "Activeer de testmodus"
|
1539 |
|
1540 |
+
#: src/Mollie/WC/Helper/Settings.php:672
|
1541 |
msgid "Live API key should start with live_"
|
1542 |
msgstr "Live API-sleutel moet beginnen met live_"
|
1543 |
|
1544 |
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
1545 |
#. %s's Will be replaced by a link to the Mollie profile
|
1546 |
+
#: src/Mollie/WC/Helper/Settings.php:666 src/Mollie/WC/Helper/Settings.php:688
|
1547 |
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
1548 |
msgstr "De API-sleutel wordt gebruikt om verbinding te maken met Mollie. U vindt uw <strong>%s</strong> API-sleutel in uw %sMollie-profiel%s"
|
1549 |
|
1550 |
+
#: src/Mollie/WC/Helper/Settings.php:661
|
1551 |
msgid "Live API key"
|
1552 |
msgstr "Live API-sleutel"
|
1553 |
|
1554 |
+
#: inc/settings/mollie_advanced_settings.php:8
|
1555 |
+
#: src/Mollie/WC/Helper/Settings.php:657
|
1556 |
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
1557 |
msgstr "De volgende opties zijn vereist om de plugin te gebruiken en worden door alle Mollie-betaalmethoden gebruikt"
|
1558 |
|
1559 |
+
#: src/Mollie/WC/Plugin.php:1314
|
1560 |
msgid "Mollie settings"
|
1561 |
msgstr "Mollie-instellingen"
|
1562 |
|
1563 |
+
#: src/Mollie/WC/Helper/Settings.php:641
|
|
|
1564 |
msgid "Log files are saved to <code>%s</code>"
|
1565 |
msgstr "Logbestanden worden opgeslagen in <code>%s</code>"
|
1566 |
|
1567 |
+
#: src/Mollie/WC/Helper/Settings.php:635
|
|
|
|
|
|
|
|
|
1568 |
msgid "Log plugin events."
|
1569 |
+
msgstr "Log plugin-gebeurtenissen."
|
1570 |
|
1571 |
+
#: src/Mollie/WC/Helper/Settings.php:582
|
1572 |
msgid "Edit"
|
1573 |
msgstr "Bewerken"
|
1574 |
|
1575 |
+
#: src/Mollie/WC/Helper/Settings.php:559
|
1576 |
msgid "Refresh"
|
1577 |
msgstr "Vernieuwen"
|
1578 |
|
1579 |
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
1580 |
#. profile
|
1581 |
+
#: src/Mollie/WC/Helper/Settings.php:550
|
1582 |
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
1583 |
msgstr "De volgende betaalmethoden zijn geactiveerd in uw %sMollie-profiel%s:"
|
1584 |
|
1585 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1586 |
msgid "Gateway disabled"
|
1587 |
msgstr "Gateway gedeactiveerd"
|
1588 |
|
1589 |
+
#: inc/settings/mollie_advanced_settings.php:72
|
1590 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1591 |
msgid "Enabled"
|
1592 |
msgstr "Geactiveerd"
|
1593 |
|
1594 |
+
#: src/Mollie/WC/Helper/Settings.php:538
|
1595 |
msgid "Gateway enabled"
|
1596 |
msgstr "Gateway geactiveerd"
|
1597 |
|
1598 |
+
#: src/Mollie/WC/Helper/Settings.php:495
|
1599 |
msgid "Connected"
|
1600 |
msgstr "Verbonden"
|
1601 |
|
1602 |
+
#: src/Mollie/WC/Helper/Settings.php:494
|
1603 |
msgid "Mollie status:"
|
1604 |
msgstr "Mollie-status:"
|
1605 |
|
1606 |
+
#: src/Mollie/WC/Helper/Settings.php:481
|
1607 |
msgid "Error"
|
1608 |
msgstr "Fout"
|
1609 |
|
1610 |
+
#: src/Mollie/WC/Helper/Data.php:477
|
1611 |
msgid "Item #%s stock incremented from %s to %s."
|
1612 |
+
msgstr "Artikel #%s voorraad verhoogd van %s naar %s."
|
1613 |
|
1614 |
#: src/Mollie/WC/Gateway/Sofort.php:33
|
1615 |
msgid "SOFORT Banking"
|
1621 |
|
1622 |
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
1623 |
#. email, placeholder 3: PayPal transaction ID
|
1624 |
+
#: src/Mollie/WC/Gateway/PayPal.php:74 src/Mollie/WC/Payment/Object.php:695
|
1625 |
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
1626 |
msgstr "Betaling voltooid met <strong>%s</strong> - %s (PayPal transactie-ID: %s)"
|
1627 |
|
1628 |
+
#: src/Mollie/WC/Gateway/PayPal.php:43
|
1629 |
msgid "PayPal"
|
1630 |
msgstr "PayPal"
|
1631 |
|
1632 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
1633 |
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
1634 |
#. drop down
|
1635 |
+
#: src/Mollie/WC/Gateway/Ideal.php:76 src/Mollie/WC/Gateway/Kbc.php:75
|
|
|
1636 |
msgid "Select your bank"
|
1637 |
msgstr "Selecteer uw bank"
|
1638 |
|
1639 |
+
#: src/Mollie/WC/Gateway/Ideal.php:60
|
1640 |
msgid "iDEAL"
|
1641 |
msgstr "iDEAL"
|
1642 |
|
1645 |
msgstr "SEPA-incasso"
|
1646 |
|
1647 |
#. translators: Placeholder 1: card holder
|
1648 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:136
|
1649 |
msgid "Payment completed by <strong>%s</strong>"
|
1650 |
msgstr "Betaling voltooid met <strong>%s</strong>."
|
1651 |
|
1652 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:84
|
1653 |
msgid "Credit card"
|
1654 |
msgstr "Creditcard"
|
1655 |
|
1657 |
msgid "Belfius Direct Net"
|
1658 |
msgstr "Belfius Direct Net"
|
1659 |
|
1660 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:235
|
1661 |
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
1662 |
msgstr "De betaling vervalt op <strong>%s</strong>. Zorg ervoor dat u vóór deze datum het totale bedrag overmaakt."
|
1663 |
|
1664 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:228
|
1665 |
msgid "The payment will expire on <strong>%s</strong>."
|
1666 |
msgstr "De betaling vervalt op <strong>%s</strong>."
|
1667 |
|
1668 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1669 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1670 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:214
|
1671 |
msgid "Please provide the payment reference <strong>%s</strong>"
|
1672 |
msgstr "Vermeld de betalingsreferentie <strong>%s</strong>"
|
1673 |
|
1674 |
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
1675 |
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
1676 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:209
|
1677 |
msgid "Payment reference: %s"
|
1678 |
msgstr "Betalingsreferentie: %s."
|
1679 |
|
1680 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:204
|
1681 |
msgid "BIC: %s"
|
1682 |
msgstr "BIC: %s"
|
1683 |
|
1684 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:203
|
1685 |
msgid "IBAN: <strong>%s</strong>"
|
1686 |
msgstr "IBAN: <strong>%s</strong>"
|
1687 |
|
1688 |
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
1689 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:202
|
1690 |
msgid "Beneficiary: %s"
|
1691 |
msgstr "Begunstigde: %s"
|
1692 |
|
1693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
1694 |
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
1695 |
msgstr "Voltooi uw betaling door het totale bedrag over te maken naar de volgende bankrekening:"
|
1696 |
|
1697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:138
|
1698 |
msgid "Bank Transfer"
|
1699 |
msgstr "Bankoverdracht"
|
1700 |
|
1701 |
+
#: src/Mollie/WC/Helper/Settings.php:539
|
1702 |
msgid "Disabled"
|
1703 |
+
msgstr "Gedeactiveerd"
|
1704 |
|
1705 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
1706 |
+
msgid "Number of DAYS after the payment will expire. Default <code>%d</code> days"
|
1707 |
+
msgstr "Aantal DAGEN nadat de betaling vervalt. Standaard <code>%d</code> dagen."
|
1708 |
|
1709 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:45
|
1710 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
1711 |
msgid "Expiry date"
|
1712 |
msgstr "Vervaldatum"
|
1713 |
|
1714 |
#. translators: Placeholder 1: payment method
|
1715 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1542
|
1716 |
msgid "Payment completed with <strong>%s</strong>"
|
1717 |
msgstr "Betaling voltooid met <strong>%s</strong>"
|
1718 |
|
1719 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1535
|
1720 |
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."
|
1721 |
+
msgstr "We hebben geen definitieve betalingsstatus ontvangen. U ontvangt een e-mail zodra we een bevestiging van de bank/verkoper ontvangen."
|
1722 |
|
1723 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1530
|
1724 |
msgid "We have not received a definite payment status."
|
1725 |
msgstr "We hebben geen definitieve betalingsstatus ontvangen."
|
1726 |
|
1727 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1315
|
1728 |
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
1729 |
msgstr "U heeft uw betaling geannuleerd. Vervolledig uw bestelling met een andere betaalmethode."
|
1730 |
|
1731 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1732 |
+
#: src/Mollie/WC/Payment/Payment.php:429
|
1733 |
msgid "%s payment expired (%s)."
|
1734 |
msgstr "%s betaling verlopen (%s)."
|
1735 |
|
1736 |
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1737 |
+
#: src/Mollie/WC/Payment/Order.php:262 src/Mollie/WC/Payment/Payment.php:249
|
1738 |
msgid "Order completed using %s payment (%s)."
|
1739 |
msgstr "Bestelling voltooid met gebruik van %s betaling (%s)."
|
1740 |
|
1741 |
#. translators: Placeholder 1: Payment method title
|
1742 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:242
|
1743 |
+
#: src/Mollie/WC/ApplePayButton/AjaxRequests.php:298
|
1744 |
+
#: src/Mollie/WC/Gateway/Abstract.php:686
|
1745 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:78
|
1746 |
+
#: src/Mollie/WC/PayPalButton/AjaxRequests.php:122
|
1747 |
msgid "Could not create %s payment."
|
1748 |
msgstr "Kon geen %s betaling aanmaken."
|
1749 |
|
1750 |
+
#: src/Mollie/WC/Gateway/Abstract.php:671
|
1751 |
+
#: src/Mollie/WC/Gateway/Abstract.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1752 |
#: src/Mollie/WC/Gateway/Abstract.php:1182
|
1753 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1244
|
1754 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1619
|
1755 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2142
|
1756 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1757 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:139
|
1758 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:422
|
1759 |
+
#: src/Mollie/WC/Payment/Object.php:608 src/Mollie/WC/Payment/Object.php:642
|
1760 |
+
#: src/Mollie/WC/Payment/Order.php:264 src/Mollie/WC/Payment/Order.php:316
|
1761 |
+
#: src/Mollie/WC/Payment/Order.php:363 src/Mollie/WC/Payment/Order.php:446
|
1762 |
+
#: src/Mollie/WC/Payment/Order.php:511 src/Mollie/WC/Payment/Order.php:936
|
1763 |
+
#: src/Mollie/WC/Payment/Payment.php:251 src/Mollie/WC/Payment/Payment.php:338
|
1764 |
+
#: src/Mollie/WC/Payment/Payment.php:408 src/Mollie/WC/Payment/Payment.php:431
|
1765 |
msgid "test mode"
|
1766 |
msgstr "testmodus"
|
1767 |
|
1768 |
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1769 |
+
#: src/Mollie/WC/Gateway/Abstract.php:669
|
1770 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1771 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:420
|
|
|
1772 |
msgid "%s payment started (%s)."
|
1773 |
msgstr "%s betaling gestart (%s)."
|
1774 |
|
1775 |
+
#: src/Mollie/WC/Gateway/Abstract.php:659
|
1776 |
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1777 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:413
|
|
|
1778 |
msgid "Awaiting payment confirmation."
|
1779 |
msgstr "In afwachting van betalingsbevestiging"
|
1780 |
|
1781 |
+
#: src/Mollie/WC/Gateway/Abstract.php:526
|
1782 |
msgid "Could not load order %s"
|
1783 |
msgstr "Kon bestelling %s niet laden"
|
1784 |
|
1785 |
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1786 |
#. be replaced by a link to the Mollie profile
|
1787 |
+
#: src/Mollie/WC/Gateway/Abstract.php:352
|
1788 |
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1789 |
msgstr "%s niet geactiveerd in uw Mollie-profiel. U kunt het activeren door uw %sMollie profiel%s te bewerken."
|
1790 |
|
1791 |
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1792 |
#. setting page
|
1793 |
+
#: src/Mollie/WC/Gateway/Abstract.php:340
|
1794 |
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1795 |
+
msgstr "Geen API-sleutel verschaft. Stel eerst %suw Mollie API-sleutel%s in."
|
1796 |
|
1797 |
+
#: src/Mollie/WC/Gateway/Abstract.php:221
|
1798 |
msgid "Gateway Disabled"
|
1799 |
msgstr "Gateway gedeactiveerd"
|
1800 |
|
1801 |
+
#: src/Mollie/WC/Gateway/Abstract.php:338 src/Mollie/WC/Helper/Settings.php:545
|
1802 |
msgid "Test mode enabled."
|
1803 |
msgstr "Testmodus geactiveerd."
|
1804 |
|
1805 |
+
#: src/Mollie/WC/Helper/Settings.php:295
|
1806 |
msgid "Hold Stock (minutes)"
|
1807 |
msgstr "Houd voorraad aan (minuten)"
|
1808 |
|
1809 |
+
#: src/Mollie/WC/Helper/Settings.php:286
|
1810 |
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."
|
1811 |
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."
|
1812 |
|
1813 |
+
#: inc/settings/mollie_advanced_settings.php:29
|
1814 |
+
#: inc/settings/mollie_advanced_settings.php:90
|
1815 |
+
#: src/Mollie/WC/Helper/Settings.php:275
|
1816 |
msgid "default"
|
1817 |
msgstr "standaard"
|
1818 |
|
1819 |
+
#: src/Mollie/WC/Helper/Settings.php:267
|
1820 |
msgid "Initial order status"
|
1821 |
msgstr "Initiële bestelstatus"
|
1822 |
|
1823 |
+
#: inc/settings/mollie_applepay_settings.php:63
|
1824 |
+
#: src/Mollie/WC/Helper/Settings.php:84
|
1825 |
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1826 |
+
msgstr "Beschrijving van de betaalmethode die de klant op uw betaalpagina te zien krijgt. Standaard <code>%s</code>"
|
1827 |
|
1828 |
+
#: inc/settings/mollie_applepay_settings.php:60
|
1829 |
+
#: src/Mollie/WC/Helper/Settings.php:81
|
1830 |
msgid "Description"
|
1831 |
msgstr "Beschrijving"
|
1832 |
|
1833 |
+
#: src/Mollie/WC/Helper/Settings.php:99
|
1834 |
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1835 |
msgstr "Toon logo op de betaalpagina. Standaard <code>geactiveerd</code>"
|
1836 |
|
1837 |
+
#: inc/settings/mollie_applepay_settings.php:45
|
1838 |
+
#: inc/settings/mollie_applepay_settings.php:48
|
1839 |
+
#: src/Mollie/WC/Helper/Settings.php:94
|
1840 |
msgid "Display logo"
|
1841 |
msgstr "Toon logo"
|
1842 |
|
1843 |
+
#: inc/settings/mollie_applepay_settings.php:32
|
1844 |
+
#: src/Mollie/WC/Helper/Settings.php:71
|
1845 |
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1846 |
+
msgstr "Dit controleert de titel die de gebruiker tijdens het betalen te zien krijgt. Standaard <code>%s</code>"
|
1847 |
|
1848 |
+
#: inc/settings/mollie_applepay_settings.php:29
|
1849 |
+
#: src/Mollie/WC/Helper/Settings.php:68
|
1850 |
msgid "Title"
|
1851 |
msgstr "Titel"
|
1852 |
|
1853 |
+
#. translators: Placeholder 1: enabled or disabled
|
1854 |
+
#: inc/settings/mollie_applepay_settings.php:21
|
1855 |
+
#: src/Mollie/WC/Helper/Settings.php:54
|
1856 |
msgid "Enable %s"
|
1857 |
+
msgstr "Activeren %s"
|
1858 |
|
1859 |
+
#: inc/settings/mollie_applepay_settings.php:19
|
1860 |
+
#: src/Mollie/WC/Helper/Settings.php:48
|
1861 |
msgid "Enable/Disable"
|
1862 |
+
msgstr "Activeren/deactiveren"
|
mollie-payments-for-woocommerce.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Mollie Payments for WooCommerce
|
4 |
* Plugin URI: https://www.mollie.com
|
5 |
* Description: Accept payments in WooCommerce with the official Mollie plugin
|
6 |
-
* Version: 6.
|
7 |
* Author: Mollie
|
8 |
* Author URI: https://www.mollie.com
|
9 |
* Requires at least: 5.0
|
@@ -12,7 +12,7 @@
|
|
12 |
* Domain Path: /languages
|
13 |
* License: GPLv2 or later
|
14 |
* WC requires at least: 3.0
|
15 |
-
* WC tested up to: 5.
|
16 |
* Requires PHP: 7.2
|
17 |
*/
|
18 |
|
@@ -36,7 +36,6 @@ if (!defined('M4W_PLUGIN_URL')) {
|
|
36 |
function mollie_wc_plugin_activation_hook()
|
37 |
{
|
38 |
require_once __DIR__ . '/inc/functions.php';
|
39 |
-
require_once __DIR__ . '/src/subscriptions_status_check_functions.php';
|
40 |
|
41 |
if (!mollie_wc_plugin_autoload()) {
|
42 |
return;
|
@@ -127,7 +126,6 @@ $bootstrap = Closure::bind(
|
|
127 |
'plugins_loaded',
|
128 |
function () {
|
129 |
require_once __DIR__ . '/inc/functions.php';
|
130 |
-
require_once __DIR__ . '/src/subscriptions_status_check_functions.php';
|
131 |
|
132 |
if (!mollie_wc_plugin_autoload()) {
|
133 |
return;
|
3 |
* Plugin Name: Mollie Payments for WooCommerce
|
4 |
* Plugin URI: https://www.mollie.com
|
5 |
* Description: Accept payments in WooCommerce with the official Mollie plugin
|
6 |
+
* Version: 6.6.0
|
7 |
* Author: Mollie
|
8 |
* Author URI: https://www.mollie.com
|
9 |
* Requires at least: 5.0
|
12 |
* Domain Path: /languages
|
13 |
* License: GPLv2 or later
|
14 |
* WC requires at least: 3.0
|
15 |
+
* WC tested up to: 5.6
|
16 |
* Requires PHP: 7.2
|
17 |
*/
|
18 |
|
36 |
function mollie_wc_plugin_activation_hook()
|
37 |
{
|
38 |
require_once __DIR__ . '/inc/functions.php';
|
|
|
39 |
|
40 |
if (!mollie_wc_plugin_autoload()) {
|
41 |
return;
|
126 |
'plugins_loaded',
|
127 |
function () {
|
128 |
require_once __DIR__ . '/inc/functions.php';
|
|
|
129 |
|
130 |
if (!mollie_wc_plugin_autoload()) {
|
131 |
return;
|
public/js/applepayDirect.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/public/js/",n(n.s="fmef")}({OiFV:function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));var o=function(){var e=window.ApplePaySession,t=document.querySelector("#mollie-applepayDirect-button");if(!(t&&e&&e.canMakePayments()))return!1;var n=document.createElement("button");return n.setAttribute("id","mollie_applepay_button"),n.classList.add("apple-pay-button"),n.classList.add("apple-pay-button-black"),t.appendChild(n),!0}},fmef:function(e,t,n){"use strict";n.r(t);var o=n("nxB1"),r=n("OiFV"),a=n("uXQx");!function(e){var t=e._,n=e.mollieApplePayDirectData,i=e.jQuery;if(!t.isEmpty(n)){var c=n.product,u=c.id,l=c.needShipping,p=void 0===l||l,s=c.isVariation,d=void 0!==s&&s,f=c.price,m=n.shop,y=m.countryCode,v=m.currencyCode,h=void 0===v?"EUR":v,b=m.totalLabel,g=void 0===b?"":b,_=n.ajaxUrl;if(u&&f&&y&&_&&Object(r.a)()){var S=document.getElementById("_wpnonce").value,w=u,j=1,O=[],P=[],C="";if(document.querySelector("input.qty").addEventListener("change",(function(e){j=e.currentTarget.value})),d){var x=document.querySelector("#mollie_applepay_button");i(".single_variation_wrap").on("show_variation",(function(e,t){t.variation_id&&(w=t.variation_id),x.disabled=!1,x.classList.remove("buttonDisabled")})),x.disabled=!0,x.classList.add("buttonDisabled")}var A=j*f;document.querySelector("#mollie_applepay_button").addEventListener("click",(function(e){var t=new ApplePaySession(3,Object(a.a)(y,h,g,A));t.begin(),p&&(t.onshippingmethodselected=function(e){var n=this;i.ajax({url:_,method:"POST",data:{action:"mollie_apple_pay_update_shipping_method",shippingMethod:e.shippingMethod,productId:
|
1 |
+
!function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/public/js/",n(n.s="fmef")}({OiFV:function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));var o=function(){var e=window.ApplePaySession,t=document.querySelector("#mollie-applepayDirect-button");if(!(t&&e&&e.canMakePayments()))return!1;var n=document.createElement("button");return n.setAttribute("id","mollie_applepay_button"),n.classList.add("apple-pay-button"),n.classList.add("apple-pay-button-black"),t.appendChild(n),!0}},fmef:function(e,t,n){"use strict";n.r(t);var o=n("nxB1"),r=n("OiFV"),a=n("uXQx");!function(e){var t=e._,n=e.mollieApplePayDirectData,i=e.jQuery;if(!t.isEmpty(n)){var c=n.product,u=c.id,l=c.needShipping,p=void 0===l||l,s=c.isVariation,d=void 0!==s&&s,f=c.price,m=n.shop,y=m.countryCode,v=m.currencyCode,h=void 0===v?"EUR":v,b=m.totalLabel,g=void 0===b?"":b,_=n.ajaxUrl;if(u&&f&&y&&_&&Object(r.a)()){var S=document.getElementById("_wpnonce").value,w=u,j=1,O=[],P=[],C="";if(document.querySelector("input.qty").addEventListener("change",(function(e){j=e.currentTarget.value})),d){var x=document.querySelector("#mollie_applepay_button");i(".single_variation_wrap").on("show_variation",(function(e,t){t.variation_id&&(w=t.variation_id),x.disabled=!1,x.classList.remove("buttonDisabled")})),x.disabled=!0,x.classList.add("buttonDisabled")}var A=j*f;document.querySelector("#mollie_applepay_button").addEventListener("click",(function(e){var t=new ApplePaySession(3,Object(a.a)(y,h,g,A));t.begin(),p&&(t.onshippingmethodselected=function(e){var n=this;i.ajax({url:_,method:"POST",data:{action:"mollie_apple_pay_update_shipping_method",shippingMethod:e.shippingMethod,productId:w,callerPage:"productDetail",productQuantity:j,simplifiedContact:O,nonce:S},complete:function(e,t){},success:function(t,r,a){var i=t.data;P=e.shippingMethod,!1===t.success&&(i.errors=Object(o.a)(i.errors)),n.completeShippingMethodSelection(i)},error:function(e,n,o){console.warn(n,o),t.abort()}})},t.onshippingcontactselected=function(e){var n=this;i.ajax({url:_,method:"POST",data:{action:"mollie_apple_pay_update_shipping_contact",productId:w,callerPage:"productDetail",productQuantity:j,simplifiedContact:e.shippingContact,needShipping:p,nonce:S},complete:function(e,t){},success:function(t,r,a){var i=t.data;O=e.shippingContact,!1===t.success&&(i.errors=Object(o.a)(i.errors)),i.newShippingMethods&&(P=i.newShippingMethods[0]),n.completeShippingContactSelection(i)},error:function(e,n,o){console.warn(n,o),t.abort()}})}),t.onvalidatemerchant=function(e){i.ajax({url:_,method:"POST",data:{action:"mollie_apple_pay_validation",validationUrl:e.validationURL,nonce:S},complete:function(e,t){},success:function(e,n,o){!0===e.success?t.completeMerchantValidation(JSON.parse(e.data)):(console.warn(e.data),t.abort())},error:function(e,n,o){console.warn(n,o),t.abort()}})},t.onpaymentauthorized=function(e){i.ajax({url:_,method:"POST",data:{action:"mollie_apple_pay_create_order",productId:w,productQuantity:j,shippingContact:e.payment.shippingContact,billingContact:e.payment.billingContact,token:e.payment.token,shippingMethod:P,"mollie-payments-for-woocommerce_issuer_applepay":"applepay",nonce:S},complete:function(e,t){},success:function(e,n,r){var a=e.data;!0===e.success?(C=a.returnUrl,t.completePayment(a.responseToApple),window.location.href=C):(a.errors=Object(o.a)(a.errors),t.completePayment(a))},error:function(e,n,o){console.warn(n,o),t.abort()}})}}))}}}(window)},nxB1:function(e,t,n){"use strict";function o(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return r(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var o=0,a=function(){};return{s:a,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,c=!0,u=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return c=e.done,e},e:function(e){u=!0,i=e},f:function(){try{c||null==n.return||n.return()}finally{if(u)throw i}}}}function r(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,o=new Array(t);n<t;n++)o[n]=e[n];return o}function a(e){var t,n=[],r=o(e);try{for(r.s();!(t=r.n()).done;){var a=t.value,i=a.contactField,c=void 0===i?null:i,u=a.code,l=void 0===u?null:u,p=a.message,s=c?new ApplePayError(l,c,void 0===p?null:p):new ApplePayError(l);n.push(s)}}catch(e){r.e(e)}finally{r.f()}return n}n.d(t,"a",(function(){return a}))},uXQx:function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));var o=function(e,t,n,o){return{countryCode:e,currencyCode:t,supportedNetworks:["amex","maestro","masterCard","visa","vPay"],merchantCapabilities:["supports3DS"],shippingType:"shipping",requiredBillingContactFields:["postalAddress","email"],requiredShippingContactFields:["postalAddress","email"],total:{label:n,amount:o,type:"final"}}}}});
|
public/js/babel-polyfill.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(t){var n={};function r(e){if(n[e])return n[e].exports;var i=n[e]={i:e,l:!1,exports:{}};return t[e].call(i.exports,i,i.exports,r),i.l=!0,i.exports}r.m=t,r.c=n,r.d=function(t,n,e){r.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:e})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,n){if(1&n&&(t=r(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(r.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var i in t)r.d(e,i,function(n){return t[n]}.bind(null,i));return e},r.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(n,"a",n),n},r.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},r.p="/public/js/",r(r.s="55Il")}({"+Xmh":function(t,n,r){r("jm62"),t.exports=r("g3g5").Object.getOwnPropertyDescriptors},"+auO":function(t,n,r){var e=r("XKFU"),i=r("lvtm");e(e.S,"Math",{cbrt:function(t){return i(t=+t)*Math.pow(Math.abs(t),1/3)}})},"+lvF":function(t,n,r){t.exports=r("VTer")("native-function-to-string",Function.toString)},"+oPb":function(t,n,r){"use strict";r("OGtf")("blink",(function(t){return function(){return t(this,"blink","","")}}))},"+rLv":function(t,n,r){var e=r("dyZX").document;t.exports=e&&e.documentElement},"/8Fb":function(t,n,r){var e=r("XKFU"),i=r("UExd")(!0);e(e.S,"Object",{entries:function(t){return i(t)}})},"/KAi":function(t,n,r){var e=r("XKFU"),i=r("dyZX").isFinite;e(e.S,"Number",{isFinite:function(t){return"number"==typeof t&&i(t)}})},"/SS/":function(t,n,r){var e=r("XKFU");e(e.S,"Object",{setPrototypeOf:r("i5dc").set})},"/e88":function(t,n){t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},"0/R4":function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},"0E+W":function(t,n,r){r("elZq")("Array")},"0LDn":function(t,n,r){"use strict";r("OGtf")("italics",(function(t){return function(){return t(this,"i","","")}}))},"0YWM":function(t,n,r){var e=r("EemH"),i=r("OP3Y"),o=r("aagx"),u=r("XKFU"),c=r("0/R4"),a=r("y3w9");u(u.S,"Reflect",{get:function t(n,r){var u,f,s=arguments.length<3?n:arguments[2];return a(n)===s?n[r]:(u=e.f(n,r))?o(u,"value")?u.value:void 0!==u.get?u.get.call(s):void 0:c(f=i(n))?t(f,r,s):void 0}})},"0l/t":function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(2);e(e.P+e.F*!r("LyE8")([].filter,!0),"Array",{filter:function(t){return i(this,t,arguments[1])}})},"0mN4":function(t,n,r){"use strict";r("OGtf")("fixed",(function(t){return function(){return t(this,"tt","","")}}))},"0sh+":function(t,n,r){var e=r("quPj"),i=r("vhPU");t.exports=function(t,n,r){if(e(n))throw TypeError("String#"+r+" doesn't accept regex!");return String(i(t))}},"11IZ":function(t,n,r){var e=r("dyZX").parseFloat,i=r("qncB").trim;t.exports=1/e(r("/e88")+"-0")!=-1/0?function(t){var n=i(String(t),3),r=e(n);return 0===r&&"-"==n.charAt(0)?-0:r}:e},"1MBn":function(t,n,r){var e=r("DVgA"),i=r("JiEa"),o=r("UqcF");t.exports=function(t){var n=e(t),r=i.f;if(r)for(var u,c=r(t),a=o.f,f=0;c.length>f;)a.call(t,u=c[f++])&&n.push(u);return n}},"1TsA":function(t,n){t.exports=function(t,n){return{value:n,done:!!t}}},"1sa7":function(t,n){t.exports=Math.log1p||function(t){return(t=+t)>-1e-8&&t<1e-8?t-t*t/2:Math.log(1+t)}},"25dN":function(t,n,r){var e=r("XKFU");e(e.S,"Object",{is:r("g6HL")})},"2GTP":function(t,n,r){var e=r("eaoh");t.exports=function(t,n,r){if(e(t),void 0===n)return t;switch(r){case 1:return function(r){return t.call(n,r)};case 2:return function(r,e){return t.call(n,r,e)};case 3:return function(r,e,i){return t.call(n,r,e,i)}}return function(){return t.apply(n,arguments)}}},"2OiF":function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},"2Spj":function(t,n,r){var e=r("XKFU");e(e.P,"Function",{bind:r("8MEG")})},"2atp":function(t,n,r){var e=r("XKFU"),i=Math.atanh;e(e.S+e.F*!(i&&1/i(-0)<0),"Math",{atanh:function(t){return 0==(t=+t)?t:Math.log((1+t)/(1-t))/2}})},"2faE":function(t,n,r){var e=r("5K7Z"),i=r("eUtF"),o=r("G8Mo"),u=Object.defineProperty;n.f=r("jmDH")?Object.defineProperty:function(t,n,r){if(e(t),n=o(n,!0),e(r),i)try{return u(t,n,r)}catch(t){}if("get"in r||"set"in r)throw TypeError("Accessors not supported!");return"value"in r&&(t[n]=r.value),t}},"3Lyj":function(t,n,r){var e=r("KroJ");t.exports=function(t,n,r){for(var i in n)e(t,i,n[i],r);return t}},"3xty":function(t,n,r){var e=r("XKFU"),i=r("2OiF"),o=r("y3w9"),u=(r("dyZX").Reflect||{}).apply,c=Function.apply;e(e.S+e.F*!r("eeVq")((function(){u((function(){}))})),"Reflect",{apply:function(t,n,r){var e=i(t),a=o(r);return u?u(e,n,a):c.call(e,n,a)}})},"4LiD":function(t,n,r){"use strict";var e=r("dyZX"),i=r("XKFU"),o=r("KroJ"),u=r("3Lyj"),c=r("Z6vF"),a=r("SlkY"),f=r("9gX7"),s=r("0/R4"),l=r("eeVq"),h=r("XMVh"),v=r("fyDq"),p=r("Xbzi");t.exports=function(t,n,r,y,g,d){var x=e[t],m=x,b=g?"set":"add",w=m&&m.prototype,F={},S=function(t){var n=w[t];o(w,t,"delete"==t||"has"==t?function(t){return!(d&&!s(t))&&n.call(this,0===t?0:t)}:"get"==t?function(t){return d&&!s(t)?void 0:n.call(this,0===t?0:t)}:"add"==t?function(t){return n.call(this,0===t?0:t),this}:function(t,r){return n.call(this,0===t?0:t,r),this})};if("function"==typeof m&&(d||w.forEach&&!l((function(){(new m).entries().next()})))){var E=new m,O=E[b](d?{}:-0,1)!=E,U=l((function(){E.has(1)})),_=h((function(t){new m(t)})),P=!d&&l((function(){for(var t=new m,n=5;n--;)t[b](n,n);return!t.has(-0)}));_||((m=n((function(n,r){f(n,m,t);var e=p(new x,n,m);return null!=r&&a(r,g,e[b],e),e}))).prototype=w,w.constructor=m),(U||P)&&(S("delete"),S("has"),g&&S("get")),(P||O)&&S(b),d&&w.clear&&delete w.clear}else m=y.getConstructor(n,t,g,b),u(m.prototype,r),c.NEED=!0;return v(m,t),F[t]=m,i(i.G+i.W+i.F*(m!=x),F),d||y.setStrong(m,t,g),m}},"4R4u":function(t,n){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},"55Il":function(t,n,r){"use strict";r("g2aq");var e,i=(e=r("VsWn"))&&e.__esModule?e:{default:e};i.default._babelPolyfill&&"undefined"!=typeof console&&console.warn&&console.warn("@babel/polyfill is loaded more than once on this page. This is probably not desirable/intended and may have consequences if different versions of the polyfills are applied sequentially. If you do need to load the polyfill more than once, use @babel/polyfill/noConflict instead to bypass the warning."),i.default._babelPolyfill=!0},"5K7Z":function(t,n,r){var e=r("93I4");t.exports=function(t){if(!e(t))throw TypeError(t+" is not an object!");return t}},"5Pf0":function(t,n,r){var e=r("S/j/"),i=r("OP3Y");r("Xtr8")("getPrototypeOf",(function(){return function(t){return i(e(t))}}))},"5T2Y":function(t,n){var r=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=r)},"694e":function(t,n,r){var e=r("EemH"),i=r("XKFU"),o=r("y3w9");i(i.S,"Reflect",{getOwnPropertyDescriptor:function(t,n){return e.f(o(t),n)}})},"69bn":function(t,n,r){var e=r("y3w9"),i=r("2OiF"),o=r("K0xU")("species");t.exports=function(t,n){var r,u=e(t).constructor;return void 0===u||null==(r=e(u)[o])?n:i(r)}},"6AQ9":function(t,n,r){"use strict";var e=r("XKFU"),i=r("8a7r");e(e.S+e.F*r("eeVq")((function(){function t(){}return!(Array.of.call(t)instanceof t)})),"Array",{of:function(){for(var t=0,n=arguments.length,r=new("function"==typeof this?this:Array)(n);n>t;)i(r,t,arguments[t++]);return r.length=n,r}})},"6FMO":function(t,n,r){var e=r("0/R4"),i=r("EWmC"),o=r("K0xU")("species");t.exports=function(t){var n;return i(t)&&("function"!=typeof(n=t.constructor)||n!==Array&&!i(n.prototype)||(n=void 0),e(n)&&null===(n=n[o])&&(n=void 0)),void 0===n?Array:n}},"6VaU":function(t,n,r){"use strict";var e=r("XKFU"),i=r("xF/b"),o=r("S/j/"),u=r("ne8i"),c=r("2OiF"),a=r("zRwo");e(e.P,"Array",{flatMap:function(t){var n,r,e=o(this);return c(t),n=u(e.length),r=a(e,0),i(r,e,e,n,0,1,t,arguments[1]),r}}),r("nGyu")("flatMap")},"7DDg":function(t,n,r){"use strict";if(r("nh4g")){var e=r("LQAc"),i=r("dyZX"),o=r("eeVq"),u=r("XKFU"),c=r("D4iV"),a=r("7Qtz"),f=r("m0Pp"),s=r("9gX7"),l=r("RjD/"),h=r("Mukb"),v=r("3Lyj"),p=r("RYi7"),y=r("ne8i"),g=r("Cfrj"),d=r("d/Gc"),x=r("apmT"),m=r("aagx"),b=r("I8a+"),w=r("0/R4"),F=r("S/j/"),S=r("M6Qj"),E=r("Kuth"),O=r("OP3Y"),U=r("kJMx").f,_=r("J+6e"),P=r("ylqs"),M=r("K0xU"),K=r("CkkT"),j=r("w2a5"),X=r("69bn"),A=r("yt8O"),I=r("hPIQ"),L=r("XMVh"),R=r("elZq"),T=r("Nr18"),N=r("upKx"),k=r("hswa"),D=r("EemH"),V=k.f,C=D.f,q=i.RangeError,Z=i.TypeError,W=i.Uint8Array,G=Array.prototype,Y=a.ArrayBuffer,B=a.DataView,z=K(0),J=K(2),H=K(3),Q=K(4),$=K(5),tt=K(6),nt=j(!0),rt=j(!1),et=A.values,it=A.keys,ot=A.entries,ut=G.lastIndexOf,ct=G.reduce,at=G.reduceRight,ft=G.join,st=G.sort,lt=G.slice,ht=G.toString,vt=G.toLocaleString,pt=M("iterator"),yt=M("toStringTag"),gt=P("typed_constructor"),dt=P("def_constructor"),xt=c.CONSTR,mt=c.TYPED,bt=c.VIEW,wt=K(1,(function(t,n){return Ut(X(t,t[dt]),n)})),Ft=o((function(){return 1===new W(new Uint16Array([1]).buffer)[0]})),St=!!W&&!!W.prototype.set&&o((function(){new W(1).set({})})),Et=function(t,n){var r=p(t);if(r<0||r%n)throw q("Wrong offset!");return r},Ot=function(t){if(w(t)&&mt in t)return t;throw Z(t+" is not a typed array!")},Ut=function(t,n){if(!w(t)||!(gt in t))throw Z("It is not a typed array constructor!");return new t(n)},_t=function(t,n){return Pt(X(t,t[dt]),n)},Pt=function(t,n){for(var r=0,e=n.length,i=Ut(t,e);e>r;)i[r]=n[r++];return i},Mt=function(t,n,r){V(t,n,{get:function(){return this._d[r]}})},Kt=function(t){var n,r,e,i,o,u,c=F(t),a=arguments.length,s=a>1?arguments[1]:void 0,l=void 0!==s,h=_(c);if(null!=h&&!S(h)){for(u=h.call(c),e=[],n=0;!(o=u.next()).done;n++)e.push(o.value);c=e}for(l&&a>2&&(s=f(s,arguments[2],2)),n=0,r=y(c.length),i=Ut(this,r);r>n;n++)i[n]=l?s(c[n],n):c[n];return i},jt=function(){for(var t=0,n=arguments.length,r=Ut(this,n);n>t;)r[t]=arguments[t++];return r},Xt=!!W&&o((function(){vt.call(new W(1))})),At=function(){return vt.apply(Xt?lt.call(Ot(this)):Ot(this),arguments)},It={copyWithin:function(t,n){return N.call(Ot(this),t,n,arguments.length>2?arguments[2]:void 0)},every:function(t){return Q(Ot(this),t,arguments.length>1?arguments[1]:void 0)},fill:function(t){return T.apply(Ot(this),arguments)},filter:function(t){return _t(this,J(Ot(this),t,arguments.length>1?arguments[1]:void 0))},find:function(t){return $(Ot(this),t,arguments.length>1?arguments[1]:void 0)},findIndex:function(t){return tt(Ot(this),t,arguments.length>1?arguments[1]:void 0)},forEach:function(t){z(Ot(this),t,arguments.length>1?arguments[1]:void 0)},indexOf:function(t){return rt(Ot(this),t,arguments.length>1?arguments[1]:void 0)},includes:function(t){return nt(Ot(this),t,arguments.length>1?arguments[1]:void 0)},join:function(t){return ft.apply(Ot(this),arguments)},lastIndexOf:function(t){return ut.apply(Ot(this),arguments)},map:function(t){return wt(Ot(this),t,arguments.length>1?arguments[1]:void 0)},reduce:function(t){return ct.apply(Ot(this),arguments)},reduceRight:function(t){return at.apply(Ot(this),arguments)},reverse:function(){for(var t,n=Ot(this).length,r=Math.floor(n/2),e=0;e<r;)t=this[e],this[e++]=this[--n],this[n]=t;return this},some:function(t){return H(Ot(this),t,arguments.length>1?arguments[1]:void 0)},sort:function(t){return st.call(Ot(this),t)},subarray:function(t,n){var r=Ot(this),e=r.length,i=d(t,e);return new(X(r,r[dt]))(r.buffer,r.byteOffset+i*r.BYTES_PER_ELEMENT,y((void 0===n?e:d(n,e))-i))}},Lt=function(t,n){return _t(this,lt.call(Ot(this),t,n))},Rt=function(t){Ot(this);var n=Et(arguments[1],1),r=this.length,e=F(t),i=y(e.length),o=0;if(i+n>r)throw q("Wrong length!");for(;o<i;)this[n+o]=e[o++]},Tt={entries:function(){return ot.call(Ot(this))},keys:function(){return it.call(Ot(this))},values:function(){return et.call(Ot(this))}},Nt=function(t,n){return w(t)&&t[mt]&&"symbol"!=typeof n&&n in t&&String(+n)==String(n)},kt=function(t,n){return Nt(t,n=x(n,!0))?l(2,t[n]):C(t,n)},Dt=function(t,n,r){return!(Nt(t,n=x(n,!0))&&w(r)&&m(r,"value"))||m(r,"get")||m(r,"set")||r.configurable||m(r,"writable")&&!r.writable||m(r,"enumerable")&&!r.enumerable?V(t,n,r):(t[n]=r.value,t)};xt||(D.f=kt,k.f=Dt),u(u.S+u.F*!xt,"Object",{getOwnPropertyDescriptor:kt,defineProperty:Dt}),o((function(){ht.call({})}))&&(ht=vt=function(){return ft.call(this)});var Vt=v({},It);v(Vt,Tt),h(Vt,pt,Tt.values),v(Vt,{slice:Lt,set:Rt,constructor:function(){},toString:ht,toLocaleString:At}),Mt(Vt,"buffer","b"),Mt(Vt,"byteOffset","o"),Mt(Vt,"byteLength","l"),Mt(Vt,"length","e"),V(Vt,yt,{get:function(){return this[mt]}}),t.exports=function(t,n,r,a){var f=t+((a=!!a)?"Clamped":"")+"Array",l="get"+t,v="set"+t,p=i[f],d=p||{},x=p&&O(p),m=!p||!c.ABV,F={},S=p&&p.prototype,_=function(t,r){V(t,r,{get:function(){return function(t,r){var e=t._d;return e.v[l](r*n+e.o,Ft)}(this,r)},set:function(t){return function(t,r,e){var i=t._d;a&&(e=(e=Math.round(e))<0?0:e>255?255:255&e),i.v[v](r*n+i.o,e,Ft)}(this,r,t)},enumerable:!0})};m?(p=r((function(t,r,e,i){s(t,p,f,"_d");var o,u,c,a,l=0,v=0;if(w(r)){if(!(r instanceof Y||"ArrayBuffer"==(a=b(r))||"SharedArrayBuffer"==a))return mt in r?Pt(p,r):Kt.call(p,r);o=r,v=Et(e,n);var d=r.byteLength;if(void 0===i){if(d%n)throw q("Wrong length!");if((u=d-v)<0)throw q("Wrong length!")}else if((u=y(i)*n)+v>d)throw q("Wrong length!");c=u/n}else c=g(r),o=new Y(u=c*n);for(h(t,"_d",{b:o,o:v,l:u,e:c,v:new B(o)});l<c;)_(t,l++)})),S=p.prototype=E(Vt),h(S,"constructor",p)):o((function(){p(1)}))&&o((function(){new p(-1)}))&&L((function(t){new p,new p(null),new p(1.5),new p(t)}),!0)||(p=r((function(t,r,e,i){var o;return s(t,p,f),w(r)?r instanceof Y||"ArrayBuffer"==(o=b(r))||"SharedArrayBuffer"==o?void 0!==i?new d(r,Et(e,n),i):void 0!==e?new d(r,Et(e,n)):new d(r):mt in r?Pt(p,r):Kt.call(p,r):new d(g(r))})),z(x!==Function.prototype?U(d).concat(U(x)):U(d),(function(t){t in p||h(p,t,d[t])})),p.prototype=S,e||(S.constructor=p));var P=S[pt],M=!!P&&("values"==P.name||null==P.name),K=Tt.values;h(p,gt,!0),h(S,mt,f),h(S,bt,!0),h(S,dt,p),(a?new p(1)[yt]==f:yt in S)||V(S,yt,{get:function(){return f}}),F[f]=p,u(u.G+u.W+u.F*(p!=d),F),u(u.S,f,{BYTES_PER_ELEMENT:n}),u(u.S+u.F*o((function(){d.of.call(p,1)})),f,{from:Kt,of:jt}),"BYTES_PER_ELEMENT"in S||h(S,"BYTES_PER_ELEMENT",n),u(u.P,f,It),R(f),u(u.P+u.F*St,f,{set:Rt}),u(u.P+u.F*!M,f,Tt),e||S.toString==ht||(S.toString=ht),u(u.P+u.F*o((function(){new p(1).slice()})),f,{slice:Lt}),u(u.P+u.F*(o((function(){return[1,2].toLocaleString()!=new p([1,2]).toLocaleString()}))||!o((function(){S.toLocaleString.call([1,2])}))),f,{toLocaleString:At}),I[f]=M?P:K,e||M||h(S,pt,K)}}else t.exports=function(){}},"7PI8":function(t,n,r){var e=r("Y7ZC");e(e.G,{global:r("5T2Y")})},"7Qtz":function(t,n,r){"use strict";var e=r("dyZX"),i=r("nh4g"),o=r("LQAc"),u=r("D4iV"),c=r("Mukb"),a=r("3Lyj"),f=r("eeVq"),s=r("9gX7"),l=r("RYi7"),h=r("ne8i"),v=r("Cfrj"),p=r("kJMx").f,y=r("hswa").f,g=r("Nr18"),d=r("fyDq"),x=e.ArrayBuffer,m=e.DataView,b=e.Math,w=e.RangeError,F=e.Infinity,S=x,E=b.abs,O=b.pow,U=b.floor,_=b.log,P=b.LN2,M=i?"_b":"buffer",K=i?"_l":"byteLength",j=i?"_o":"byteOffset";function X(t,n,r){var e,i,o,u=new Array(r),c=8*r-n-1,a=(1<<c)-1,f=a>>1,s=23===n?O(2,-24)-O(2,-77):0,l=0,h=t<0||0===t&&1/t<0?1:0;for((t=E(t))!=t||t===F?(i=t!=t?1:0,e=a):(e=U(_(t)/P),t*(o=O(2,-e))<1&&(e--,o*=2),(t+=e+f>=1?s/o:s*O(2,1-f))*o>=2&&(e++,o/=2),e+f>=a?(i=0,e=a):e+f>=1?(i=(t*o-1)*O(2,n),e+=f):(i=t*O(2,f-1)*O(2,n),e=0));n>=8;u[l++]=255&i,i/=256,n-=8);for(e=e<<n|i,c+=n;c>0;u[l++]=255&e,e/=256,c-=8);return u[--l]|=128*h,u}function A(t,n,r){var e,i=8*r-n-1,o=(1<<i)-1,u=o>>1,c=i-7,a=r-1,f=t[a--],s=127&f;for(f>>=7;c>0;s=256*s+t[a],a--,c-=8);for(e=s&(1<<-c)-1,s>>=-c,c+=n;c>0;e=256*e+t[a],a--,c-=8);if(0===s)s=1-u;else{if(s===o)return e?NaN:f?-F:F;e+=O(2,n),s-=u}return(f?-1:1)*e*O(2,s-n)}function I(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]}function L(t){return[255&t]}function R(t){return[255&t,t>>8&255]}function T(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]}function N(t){return X(t,52,8)}function k(t){return X(t,23,4)}function D(t,n,r){y(t.prototype,n,{get:function(){return this[r]}})}function V(t,n,r,e){var i=v(+r);if(i+n>t[K])throw w("Wrong index!");var o=t[M]._b,u=i+t[j],c=o.slice(u,u+n);return e?c:c.reverse()}function C(t,n,r,e,i,o){var u=v(+r);if(u+n>t[K])throw w("Wrong index!");for(var c=t[M]._b,a=u+t[j],f=e(+i),s=0;s<n;s++)c[a+s]=f[o?s:n-s-1]}if(u.ABV){if(!f((function(){x(1)}))||!f((function(){new x(-1)}))||f((function(){return new x,new x(1.5),new x(NaN),"ArrayBuffer"!=x.name}))){for(var q,Z=(x=function(t){return s(this,x),new S(v(t))}).prototype=S.prototype,W=p(S),G=0;W.length>G;)(q=W[G++])in x||c(x,q,S[q]);o||(Z.constructor=x)}var Y=new m(new x(2)),B=m.prototype.setInt8;Y.setInt8(0,2147483648),Y.setInt8(1,2147483649),!Y.getInt8(0)&&Y.getInt8(1)||a(m.prototype,{setInt8:function(t,n){B.call(this,t,n<<24>>24)},setUint8:function(t,n){B.call(this,t,n<<24>>24)}},!0)}else x=function(t){s(this,x,"ArrayBuffer");var n=v(t);this._b=g.call(new Array(n),0),this[K]=n},m=function(t,n,r){s(this,m,"DataView"),s(t,x,"DataView");var e=t[K],i=l(n);if(i<0||i>e)throw w("Wrong offset!");if(i+(r=void 0===r?e-i:h(r))>e)throw w("Wrong length!");this[M]=t,this[j]=i,this[K]=r},i&&(D(x,"byteLength","_l"),D(m,"buffer","_b"),D(m,"byteLength","_l"),D(m,"byteOffset","_o")),a(m.prototype,{getInt8:function(t){return V(this,1,t)[0]<<24>>24},getUint8:function(t){return V(this,1,t)[0]},getInt16:function(t){var n=V(this,2,t,arguments[1]);return(n[1]<<8|n[0])<<16>>16},getUint16:function(t){var n=V(this,2,t,arguments[1]);return n[1]<<8|n[0]},getInt32:function(t){return I(V(this,4,t,arguments[1]))},getUint32:function(t){return I(V(this,4,t,arguments[1]))>>>0},getFloat32:function(t){return A(V(this,4,t,arguments[1]),23,4)},getFloat64:function(t){return A(V(this,8,t,arguments[1]),52,8)},setInt8:function(t,n){C(this,1,t,L,n)},setUint8:function(t,n){C(this,1,t,L,n)},setInt16:function(t,n){C(this,2,t,R,n,arguments[2])},setUint16:function(t,n){C(this,2,t,R,n,arguments[2])},setInt32:function(t,n){C(this,4,t,T,n,arguments[2])},setUint32:function(t,n){C(this,4,t,T,n,arguments[2])},setFloat32:function(t,n){C(this,4,t,k,n,arguments[2])},setFloat64:function(t,n){C(this,8,t,N,n,arguments[2])}});d(x,"ArrayBuffer"),d(m,"DataView"),c(m.prototype,u.VIEW,!0),n.ArrayBuffer=x,n.DataView=m},"7VC1":function(t,n,r){"use strict";var e=r("XKFU"),i=r("Lgjv"),o=r("ol8x"),u=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(o);e(e.P+e.F*u,"String",{padEnd:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0,!1)}})},"7h0T":function(t,n,r){var e=r("XKFU");e(e.S,"Number",{isNaN:function(t){return t!=t}})},"8+KV":function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(0),o=r("LyE8")([].forEach,!0);e(e.P+e.F*!o,"Array",{forEach:function(t){return i(this,t,arguments[1])}})},"84bF":function(t,n,r){"use strict";r("OGtf")("small",(function(t){return function(){return t(this,"small","","")}}))},"8MEG":function(t,n,r){"use strict";var e=r("2OiF"),i=r("0/R4"),o=r("MfQN"),u=[].slice,c={},a=function(t,n,r){if(!(n in c)){for(var e=[],i=0;i<n;i++)e[i]="a["+i+"]";c[n]=Function("F,a","return new F("+e.join(",")+")")}return c[n](t,r)};t.exports=Function.bind||function(t){var n=e(this),r=u.call(arguments,1),c=function(){var e=r.concat(u.call(arguments));return this instanceof c?a(n,e.length,e):o(n,e,t)};return i(n.prototype)&&(c.prototype=n.prototype),c}},"8a7r":function(t,n,r){"use strict";var e=r("hswa"),i=r("RjD/");t.exports=function(t,n,r){n in t?e.f(t,n,i(0,r)):t[n]=r}},"91GP":function(t,n,r){var e=r("XKFU");e(e.S+e.F,"Object",{assign:r("czNK")})},"93I4":function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},"9AAn":function(t,n,r){"use strict";var e=r("wmvG"),i=r("s5qY");t.exports=r("4LiD")("Map",(function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}}),{get:function(t){var n=e.getEntry(i(this,"Map"),t);return n&&n.v},set:function(t,n){return e.def(i(this,"Map"),0===t?0:t,n)}},e,!0)},"9P93":function(t,n,r){var e=r("XKFU"),i=Math.imul;e(e.S+e.F*r("eeVq")((function(){return-5!=i(4294967295,5)||2!=i.length})),"Math",{imul:function(t,n){var r=+t,e=+n,i=65535&r,o=65535&e;return 0|i*o+((65535&r>>>16)*o+i*(65535&e>>>16)<<16>>>0)}})},"9VmF":function(t,n,r){"use strict";var e=r("XKFU"),i=r("ne8i"),o=r("0sh+"),u="".startsWith;e(e.P+e.F*r("UUeW")("startsWith"),"String",{startsWith:function(t){var n=o(this,t,"startsWith"),r=i(Math.min(arguments.length>1?arguments[1]:void 0,n.length)),e=String(t);return u?u.call(n,e,r):n.slice(r,r+e.length)===e}})},"9XZr":function(t,n,r){"use strict";var e=r("XKFU"),i=r("Lgjv"),o=r("ol8x"),u=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(o);e(e.P+e.F*u,"String",{padStart:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0,!0)}})},"9gX7":function(t,n){t.exports=function(t,n,r,e){if(!(t instanceof n)||void 0!==e&&e in t)throw TypeError(r+": incorrect invocation!");return t}},"9rMk":function(t,n,r){var e=r("XKFU");e(e.S,"Reflect",{has:function(t,n){return n in t}})},A2zW:function(t,n,r){"use strict";var e=r("XKFU"),i=r("RYi7"),o=r("vvmO"),u=r("l0Rn"),c=1..toFixed,a=Math.floor,f=[0,0,0,0,0,0],s="Number.toFixed: incorrect invocation!",l=function(t,n){for(var r=-1,e=n;++r<6;)e+=t*f[r],f[r]=e%1e7,e=a(e/1e7)},h=function(t){for(var n=6,r=0;--n>=0;)r+=f[n],f[n]=a(r/t),r=r%t*1e7},v=function(){for(var t=6,n="";--t>=0;)if(""!==n||0===t||0!==f[t]){var r=String(f[t]);n=""===n?r:n+u.call("0",7-r.length)+r}return n},p=function(t,n,r){return 0===n?r:n%2==1?p(t,n-1,r*t):p(t*t,n/2,r)};e(e.P+e.F*(!!c&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!r("eeVq")((function(){c.call({})}))),"Number",{toFixed:function(t){var n,r,e,c,a=o(this,s),f=i(t),y="",g="0";if(f<0||f>20)throw RangeError(s);if(a!=a)return"NaN";if(a<=-1e21||a>=1e21)return String(a);if(a<0&&(y="-",a=-a),a>1e-21)if(r=(n=function(t){for(var n=0,r=t;r>=4096;)n+=12,r/=4096;for(;r>=2;)n+=1,r/=2;return n}(a*p(2,69,1))-69)<0?a*p(2,-n,1):a/p(2,n,1),r*=4503599627370496,(n=52-n)>0){for(l(0,r),e=f;e>=7;)l(1e7,0),e-=7;for(l(p(10,e,1),0),e=n-1;e>=23;)h(1<<23),e-=23;h(1<<e),l(1,1),h(2),g=v()}else l(0,r),l(1<<-n,0),g=v()+u.call("0",f);return g=f>0?y+((c=g.length)<=f?"0."+u.call("0",f-c)+g:g.slice(0,c-f)+"."+g.slice(c-f)):y+g}})},A5AN:function(t,n,r){"use strict";var e=r("AvRE")(!0);t.exports=function(t,n,r){return n+(r?e(t,n).length:1)}},Afnz:function(t,n,r){"use strict";var e=r("LQAc"),i=r("XKFU"),o=r("KroJ"),u=r("Mukb"),c=r("hPIQ"),a=r("QaDb"),f=r("fyDq"),s=r("OP3Y"),l=r("K0xU")("iterator"),h=!([].keys&&"next"in[].keys()),v=function(){return this};t.exports=function(t,n,r,p,y,g,d){a(r,n,p);var x,m,b,w=function(t){if(!h&&t in O)return O[t];switch(t){case"keys":case"values":return function(){return new r(this,t)}}return function(){return new r(this,t)}},F=n+" Iterator",S="values"==y,E=!1,O=t.prototype,U=O[l]||O["@@iterator"]||y&&O[y],_=U||w(y),P=y?S?w("entries"):_:void 0,M="Array"==n&&O.entries||U;if(M&&(b=s(M.call(new t)))!==Object.prototype&&b.next&&(f(b,F,!0),e||"function"==typeof b[l]||u(b,l,v)),S&&U&&"values"!==U.name&&(E=!0,_=function(){return U.call(this)}),e&&!d||!h&&!E&&O[l]||u(O,l,_),c[n]=_,c[F]=v,y)if(x={values:S?_:w("values"),keys:g?_:w("keys"),entries:P},d)for(m in x)m in O||o(O,m,x[m]);else i(i.P+i.F*(h||E),n,x);return x}},AphP:function(t,n,r){"use strict";var e=r("XKFU"),i=r("S/j/"),o=r("apmT");e(e.P+e.F*r("eeVq")((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})})),"Date",{toJSON:function(t){var n=i(this),r=o(n);return"number"!=typeof r||isFinite(r)?n.toISOString():null}})},AvRE:function(t,n,r){var e=r("RYi7"),i=r("vhPU");t.exports=function(t){return function(n,r){var o,u,c=String(i(n)),a=e(r),f=c.length;return a<0||a>=f?t?"":void 0:(o=c.charCodeAt(a))<55296||o>56319||a+1===f||(u=c.charCodeAt(a+1))<56320||u>57343?t?c.charAt(a):o:t?c.slice(a,a+2):u-56320+(o-55296<<10)+65536}}},"B+OT":function(t,n){var r={}.hasOwnProperty;t.exports=function(t,n){return r.call(t,n)}},BC7C:function(t,n,r){var e=r("XKFU");e(e.S,"Math",{fround:r("kcoS")})},"BJ/l":function(t,n,r){var e=r("XKFU");e(e.S,"Math",{log1p:r("1sa7")})},BP8U:function(t,n,r){var e=r("XKFU"),i=r("PKUr");e(e.S+e.F*(Number.parseInt!=i),"Number",{parseInt:i})},Btvt:function(t,n,r){"use strict";var e=r("I8a+"),i={};i[r("K0xU")("toStringTag")]="z",i+""!="[object z]"&&r("KroJ")(Object.prototype,"toString",(function(){return"[object "+e(this)+"]"}),!0)},"C/va":function(t,n,r){"use strict";var e=r("y3w9");t.exports=function(){var t=e(this),n="";return t.global&&(n+="g"),t.ignoreCase&&(n+="i"),t.multiline&&(n+="m"),t.unicode&&(n+="u"),t.sticky&&(n+="y"),n}},CX2u:function(t,n,r){"use strict";var e=r("XKFU"),i=r("g3g5"),o=r("dyZX"),u=r("69bn"),c=r("vKrd");e(e.P+e.R,"Promise",{finally:function(t){var n=u(this,i.Promise||o.Promise),r="function"==typeof t;return this.then(r?function(r){return c(n,t()).then((function(){return r}))}:t,r?function(r){return c(n,t()).then((function(){throw r}))}:t)}})},Cfrj:function(t,n,r){var e=r("RYi7"),i=r("ne8i");t.exports=function(t){if(void 0===t)return 0;var n=e(t),r=i(n);if(n!==r)throw RangeError("Wrong length!");return r}},CkkT:function(t,n,r){var e=r("m0Pp"),i=r("Ymqv"),o=r("S/j/"),u=r("ne8i"),c=r("zRwo");t.exports=function(t,n){var r=1==t,a=2==t,f=3==t,s=4==t,l=6==t,h=5==t||l,v=n||c;return function(n,c,p){for(var y,g,d=o(n),x=i(d),m=e(c,p,3),b=u(x.length),w=0,F=r?v(n,b):a?v(n,0):void 0;b>w;w++)if((h||w in x)&&(g=m(y=x[w],w,d),t))if(r)F[w]=g;else if(g)switch(t){case 3:return!0;case 5:return y;case 6:return w;case 2:F.push(y)}else if(s)return!1;return l?-1:f||s?s:F}}},CyHz:function(t,n,r){var e=r("XKFU");e(e.S,"Math",{sign:r("lvtm")})},D4iV:function(t,n,r){for(var e,i=r("dyZX"),o=r("Mukb"),u=r("ylqs"),c=u("typed_array"),a=u("view"),f=!(!i.ArrayBuffer||!i.DataView),s=f,l=0,h="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");l<9;)(e=i[h[l++]])?(o(e.prototype,c,!0),o(e.prototype,a,!0)):s=!1;t.exports={ABV:f,CONSTR:s,TYPED:c,VIEW:a}},DNiP:function(t,n,r){"use strict";var e=r("XKFU"),i=r("eyMr");e(e.P+e.F*!r("LyE8")([].reduce,!0),"Array",{reduce:function(t){return i(this,t,arguments.length,arguments[1],!1)}})},DVgA:function(t,n,r){var e=r("zhAb"),i=r("4R4u");t.exports=Object.keys||function(t){return e(t,i)}},DW2E:function(t,n,r){var e=r("0/R4"),i=r("Z6vF").onFreeze;r("Xtr8")("freeze",(function(t){return function(n){return t&&e(n)?t(i(n)):n}}))},EK0E:function(t,n,r){"use strict";var e,i=r("dyZX"),o=r("CkkT")(0),u=r("KroJ"),c=r("Z6vF"),a=r("czNK"),f=r("ZD67"),s=r("0/R4"),l=r("s5qY"),h=r("s5qY"),v=!i.ActiveXObject&&"ActiveXObject"in i,p=c.getWeak,y=Object.isExtensible,g=f.ufstore,d=function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},x={get:function(t){if(s(t)){var n=p(t);return!0===n?g(l(this,"WeakMap")).get(t):n?n[this._i]:void 0}},set:function(t,n){return f.def(l(this,"WeakMap"),t,n)}},m=t.exports=r("4LiD")("WeakMap",d,x,f,!0,!0);h&&v&&(a((e=f.getConstructor(d,"WeakMap")).prototype,x),c.NEED=!0,o(["delete","has","get","set"],(function(t){var n=m.prototype,r=n[t];u(n,t,(function(n,i){if(s(n)&&!y(n)){this._f||(this._f=new e);var o=this._f[t](n,i);return"set"==t?this:o}return r.call(this,n,i)}))})))},EWmC:function(t,n,r){var e=r("LZWt");t.exports=Array.isArray||function(t){return"Array"==e(t)}},EemH:function(t,n,r){var e=r("UqcF"),i=r("RjD/"),o=r("aCFj"),u=r("apmT"),c=r("aagx"),a=r("xpql"),f=Object.getOwnPropertyDescriptor;n.f=r("nh4g")?f:function(t,n){if(t=o(t),n=u(n,!0),a)try{return f(t,n)}catch(t){}if(c(t,n))return i(!e.f.call(t,n),t[n])}},"Ew+T":function(t,n,r){var e=r("XKFU"),i=r("GZEu");e(e.G+e.B,{setImmediate:i.set,clearImmediate:i.clear})},FDph:function(t,n,r){r("Z2Ku"),t.exports=r("g3g5").Array.includes},FEjr:function(t,n,r){"use strict";r("OGtf")("strike",(function(t){return function(){return t(this,"strike","","")}}))},FJW5:function(t,n,r){var e=r("hswa"),i=r("y3w9"),o=r("DVgA");t.exports=r("nh4g")?Object.defineProperties:function(t,n){i(t);for(var r,u=o(n),c=u.length,a=0;c>a;)e.f(t,r=u[a++],n[r]);return t}},FLlr:function(t,n,r){var e=r("XKFU");e(e.P,"String",{repeat:r("l0Rn")})},Faw5:function(t,n,r){r("7DDg")("Int16",2,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},FlsD:function(t,n,r){var e=r("0/R4");r("Xtr8")("isExtensible",(function(t){return function(n){return!!e(n)&&(!t||t(n))}}))},FxUG:function(t,n,r){r("R5XZ"),r("Ew+T"),r("rGqo"),t.exports=r("g3g5")},G8Mo:function(t,n,r){var e=r("93I4");t.exports=function(t,n){if(!e(t))return t;var r,i;if(n&&"function"==typeof(r=t.toString)&&!e(i=r.call(t)))return i;if("function"==typeof(r=t.valueOf)&&!e(i=r.call(t)))return i;if(!n&&"function"==typeof(r=t.toString)&&!e(i=r.call(t)))return i;throw TypeError("Can't convert object to primitive value")}},GNAe:function(t,n,r){var e=r("XKFU"),i=r("PKUr");e(e.G+e.F*(parseInt!=i),{parseInt:i})},GZEu:function(t,n,r){var e,i,o,u=r("m0Pp"),c=r("MfQN"),a=r("+rLv"),f=r("Iw71"),s=r("dyZX"),l=s.process,h=s.setImmediate,v=s.clearImmediate,p=s.MessageChannel,y=s.Dispatch,g=0,d={},x=function(){var t=+this;if(d.hasOwnProperty(t)){var n=d[t];delete d[t],n()}},m=function(t){x.call(t.data)};h&&v||(h=function(t){for(var n=[],r=1;arguments.length>r;)n.push(arguments[r++]);return d[++g]=function(){c("function"==typeof t?t:Function(t),n)},e(g),g},v=function(t){delete d[t]},"process"==r("LZWt")(l)?e=function(t){l.nextTick(u(x,t,1))}:y&&y.now?e=function(t){y.now(u(x,t,1))}:p?(o=(i=new p).port2,i.port1.onmessage=m,e=u(o.postMessage,o,1)):s.addEventListener&&"function"==typeof postMessage&&!s.importScripts?(e=function(t){s.postMessage(t+"","*")},s.addEventListener("message",m,!1)):e="onreadystatechange"in f("script")?function(t){a.appendChild(f("script")).onreadystatechange=function(){a.removeChild(this),x.call(t)}}:function(t){setTimeout(u(x,t,1),0)}),t.exports={set:h,clear:v}},H6hf:function(t,n,r){var e=r("y3w9");t.exports=function(t,n,r,i){try{return i?n(e(r)[0],r[1]):n(r)}catch(n){var o=t.return;throw void 0!==o&&e(o.call(t)),n}}},"HAE/":function(t,n,r){var e=r("XKFU");e(e.S+e.F*!r("nh4g"),"Object",{defineProperty:r("hswa").f})},HEwt:function(t,n,r){"use strict";var e=r("m0Pp"),i=r("XKFU"),o=r("S/j/"),u=r("H6hf"),c=r("M6Qj"),a=r("ne8i"),f=r("8a7r"),s=r("J+6e");i(i.S+i.F*!r("XMVh")((function(t){Array.from(t)})),"Array",{from:function(t){var n,r,i,l,h=o(t),v="function"==typeof this?this:Array,p=arguments.length,y=p>1?arguments[1]:void 0,g=void 0!==y,d=0,x=s(h);if(g&&(y=e(y,p>2?arguments[2]:void 0,2)),null==x||v==Array&&c(x))for(r=new v(n=a(h.length));n>d;d++)f(r,d,g?y(h[d],d):h[d]);else for(l=x.call(h),r=new v;!(i=l.next()).done;d++)f(r,d,g?u(l,y,[i.value,d],!0):i.value);return r.length=d,r}})},Hsns:function(t,n,r){var e=r("93I4"),i=r("5T2Y").document,o=e(i)&&e(i.createElement);t.exports=function(t){return o?i.createElement(t):{}}},I5cv:function(t,n,r){var e=r("XKFU"),i=r("Kuth"),o=r("2OiF"),u=r("y3w9"),c=r("0/R4"),a=r("eeVq"),f=r("8MEG"),s=(r("dyZX").Reflect||{}).construct,l=a((function(){function t(){}return!(s((function(){}),[],t)instanceof t)})),h=!a((function(){s((function(){}))}));e(e.S+e.F*(l||h),"Reflect",{construct:function(t,n){o(t),u(n);var r=arguments.length<3?t:o(arguments[2]);if(h&&!l)return s(t,n,r);if(t==r){switch(n.length){case 0:return new t;case 1:return new t(n[0]);case 2:return new t(n[0],n[1]);case 3:return new t(n[0],n[1],n[2]);case 4:return new t(n[0],n[1],n[2],n[3])}var e=[null];return e.push.apply(e,n),new(f.apply(t,e))}var a=r.prototype,v=i(c(a)?a:Object.prototype),p=Function.apply.call(t,v,n);return c(p)?p:v}})},I74W:function(t,n,r){"use strict";r("qncB")("trimLeft",(function(t){return function(){return t(this,1)}}),"trimStart")},I78e:function(t,n,r){"use strict";var e=r("XKFU"),i=r("+rLv"),o=r("LZWt"),u=r("d/Gc"),c=r("ne8i"),a=[].slice;e(e.P+e.F*r("eeVq")((function(){i&&a.call(i)})),"Array",{slice:function(t,n){var r=c(this.length),e=o(this);if(n=void 0===n?r:n,"Array"==e)return a.call(this,t,n);for(var i=u(t,r),f=u(n,r),s=c(f-i),l=new Array(s),h=0;h<s;h++)l[h]="String"==e?this.charAt(i+h):this[i+h];return l}})},"I8a+":function(t,n,r){var e=r("LZWt"),i=r("K0xU")("toStringTag"),o="Arguments"==e(function(){return arguments}());t.exports=function(t){var n,r,u;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,n){try{return t[n]}catch(t){}}(n=Object(t),i))?r:o?e(n):"Object"==(u=e(n))&&"function"==typeof n.callee?"Arguments":u}},INYr:function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(6),o="findIndex",u=!0;o in[]&&Array(1)[o]((function(){u=!1})),e(e.P+e.F*u,"Array",{findIndex:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),r("nGyu")(o)},"IU+Z":function(t,n,r){"use strict";r("sMXx");var e=r("KroJ"),i=r("Mukb"),o=r("eeVq"),u=r("vhPU"),c=r("K0xU"),a=r("Ugos"),f=c("species"),s=!o((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")})),l=function(){var t=/(?:)/,n=t.exec;t.exec=function(){return n.apply(this,arguments)};var r="ab".split(t);return 2===r.length&&"a"===r[0]&&"b"===r[1]}();t.exports=function(t,n,r){var h=c(t),v=!o((function(){var n={};return n[h]=function(){return 7},7!=""[t](n)})),p=v?!o((function(){var n=!1,r=/a/;return r.exec=function(){return n=!0,null},"split"===t&&(r.constructor={},r.constructor[f]=function(){return r}),r[h](""),!n})):void 0;if(!v||!p||"replace"===t&&!s||"split"===t&&!l){var y=/./[h],g=r(u,h,""[t],(function(t,n,r,e,i){return n.exec===a?v&&!i?{done:!0,value:y.call(n,r,e)}:{done:!0,value:t.call(r,n,e)}:{done:!1}})),d=g[0],x=g[1];e(String.prototype,t,d),i(RegExp.prototype,h,2==n?function(t,n){return x.call(t,this,n)}:function(t){return x.call(t,this)})}}},IXt9:function(t,n,r){"use strict";var e=r("0/R4"),i=r("OP3Y"),o=r("K0xU")("hasInstance"),u=Function.prototype;o in u||r("hswa").f(u,o,{value:function(t){if("function"!=typeof this||!e(t))return!1;if(!e(this.prototype))return t instanceof this;for(;t=i(t);)if(this.prototype===t)return!0;return!1}})},IlFx:function(t,n,r){var e=r("XKFU"),i=r("y3w9"),o=Object.isExtensible;e(e.S,"Reflect",{isExtensible:function(t){return i(t),!o||o(t)}})},Iw71:function(t,n,r){var e=r("0/R4"),i=r("dyZX").document,o=e(i)&&e(i.createElement);t.exports=function(t){return o?i.createElement(t):{}}},Izvi:function(t,n,r){r("I74W"),t.exports=r("g3g5").String.trimLeft},"J+6e":function(t,n,r){var e=r("I8a+"),i=r("K0xU")("iterator"),o=r("hPIQ");t.exports=r("g3g5").getIteratorMethod=function(t){if(null!=t)return t[i]||t["@@iterator"]||o[e(t)]}},JCqj:function(t,n,r){"use strict";r("OGtf")("sup",(function(t){return function(){return t(this,"sup","","")}}))},JbTB:function(t,n,r){r("/8Fb"),t.exports=r("g3g5").Object.entries},Jcmo:function(t,n,r){var e=r("XKFU"),i=Math.exp;e(e.S,"Math",{cosh:function(t){return(i(t=+t)+i(-t))/2}})},JduL:function(t,n,r){r("Xtr8")("getOwnPropertyNames",(function(){return r("e7yV").f}))},"Ji/l":function(t,n,r){var e=r("XKFU");e(e.G+e.W+e.F*!r("D4iV").ABV,{DataView:r("7Qtz").DataView})},JiEa:function(t,n){n.f=Object.getOwnPropertySymbols},K0xU:function(t,n,r){var e=r("VTer")("wks"),i=r("ylqs"),o=r("dyZX").Symbol,u="function"==typeof o;(t.exports=function(t){return e[t]||(e[t]=u&&o[t]||(u?o:i)("Symbol."+t))}).store=e},KKXr:function(t,n,r){"use strict";var e=r("quPj"),i=r("y3w9"),o=r("69bn"),u=r("A5AN"),c=r("ne8i"),a=r("Xxuz"),f=r("Ugos"),s=r("eeVq"),l=Math.min,h=[].push,v="length",p=!s((function(){RegExp(4294967295,"y")}));r("IU+Z")("split",2,(function(t,n,r,s){var y;return y="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1)[v]||2!="ab".split(/(?:ab)*/)[v]||4!=".".split(/(.?)(.?)/)[v]||".".split(/()()/)[v]>1||"".split(/.?/)[v]?function(t,n){var i=String(this);if(void 0===t&&0===n)return[];if(!e(t))return r.call(i,t,n);for(var o,u,c,a=[],s=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),l=0,p=void 0===n?4294967295:n>>>0,y=new RegExp(t.source,s+"g");(o=f.call(y,i))&&!((u=y.lastIndex)>l&&(a.push(i.slice(l,o.index)),o[v]>1&&o.index<i[v]&&h.apply(a,o.slice(1)),c=o[0][v],l=u,a[v]>=p));)y.lastIndex===o.index&&y.lastIndex++;return l===i[v]?!c&&y.test("")||a.push(""):a.push(i.slice(l)),a[v]>p?a.slice(0,p):a}:"0".split(void 0,0)[v]?function(t,n){return void 0===t&&0===n?[]:r.call(this,t,n)}:r,[function(r,e){var i=t(this),o=null==r?void 0:r[n];return void 0!==o?o.call(r,i,e):y.call(String(i),r,e)},function(t,n){var e=s(y,t,this,n,y!==r);if(e.done)return e.value;var f=i(t),h=String(this),v=o(f,RegExp),g=f.unicode,d=(f.ignoreCase?"i":"")+(f.multiline?"m":"")+(f.unicode?"u":"")+(p?"y":"g"),x=new v(p?f:"^(?:"+f.source+")",d),m=void 0===n?4294967295:n>>>0;if(0===m)return[];if(0===h.length)return null===a(x,h)?[h]:[];for(var b=0,w=0,F=[];w<h.length;){x.lastIndex=p?w:0;var S,E=a(x,p?h:h.slice(w));if(null===E||(S=l(c(x.lastIndex+(p?0:w)),h.length))===b)w=u(h,w,g);else{if(F.push(h.slice(b,w)),F.length===m)return F;for(var O=1;O<=E.length-1;O++)if(F.push(E[O]),F.length===m)return F;w=b=S}}return F.push(h.slice(b)),F}]}))},KUxP:function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},KroJ:function(t,n,r){var e=r("dyZX"),i=r("Mukb"),o=r("aagx"),u=r("ylqs")("src"),c=r("+lvF"),a=(""+c).split("toString");r("g3g5").inspectSource=function(t){return c.call(t)},(t.exports=function(t,n,r,c){var f="function"==typeof r;f&&(o(r,"name")||i(r,"name",n)),t[n]!==r&&(f&&(o(r,u)||i(r,u,t[n]?""+t[n]:a.join(String(n)))),t===e?t[n]=r:c?t[n]?t[n]=r:i(t,n,r):(delete t[n],i(t,n,r)))})(Function.prototype,"toString",(function(){return"function"==typeof this&&this[u]||c.call(this)}))},Kuth:function(t,n,r){var e=r("y3w9"),i=r("FJW5"),o=r("4R4u"),u=r("YTvA")("IE_PROTO"),c=function(){},a=function(){var t,n=r("Iw71")("iframe"),e=o.length;for(n.style.display="none",r("+rLv").appendChild(n),n.src="javascript:",(t=n.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),a=t.F;e--;)delete a.prototype[o[e]];return a()};t.exports=Object.create||function(t,n){var r;return null!==t?(c.prototype=e(t),r=new c,c.prototype=null,r[u]=t):r=a(),void 0===n?r:i(r,n)}},L9s1:function(t,n,r){"use strict";var e=r("XKFU"),i=r("0sh+");e(e.P+e.F*r("UUeW")("includes"),"String",{includes:function(t){return!!~i(this,t,"includes").indexOf(t,arguments.length>1?arguments[1]:void 0)}})},LK8F:function(t,n,r){var e=r("XKFU");e(e.S,"Array",{isArray:r("EWmC")})},LQAc:function(t,n){t.exports=!1},LTTk:function(t,n,r){var e=r("XKFU"),i=r("OP3Y"),o=r("y3w9");e(e.S,"Reflect",{getPrototypeOf:function(t){return i(o(t))}})},LVwc:function(t,n){var r=Math.expm1;t.exports=!r||r(10)>22025.465794806718||r(10)<22025.465794806718||-2e-17!=r(-2e-17)?function(t){return 0==(t=+t)?t:t>-1e-6&&t<1e-6?t+t*t/2:Math.exp(t)-1}:r},LZWt:function(t,n){var r={}.toString;t.exports=function(t){return r.call(t).slice(8,-1)}},Lgjv:function(t,n,r){var e=r("ne8i"),i=r("l0Rn"),o=r("vhPU");t.exports=function(t,n,r,u){var c=String(o(t)),a=c.length,f=void 0===r?" ":String(r),s=e(n);if(s<=a||""==f)return c;var l=s-a,h=i.call(f,Math.ceil(l/f.length));return h.length>l&&(h=h.slice(0,l)),u?h+c:c+h}},Ljet:function(t,n,r){var e=r("XKFU");e(e.S,"Number",{EPSILON:Math.pow(2,-52)})},LyE8:function(t,n,r){"use strict";var e=r("eeVq");t.exports=function(t,n){return!!t&&e((function(){n?t.call(null,(function(){}),1):t.call(null)}))}},M6Qj:function(t,n,r){var e=r("hPIQ"),i=r("K0xU")("iterator"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(e.Array===t||o[i]===t)}},MfQN:function(t,n){t.exports=function(t,n,r){var e=void 0===r;switch(n.length){case 0:return e?t():t.call(r);case 1:return e?t(n[0]):t.call(r,n[0]);case 2:return e?t(n[0],n[1]):t.call(r,n[0],n[1]);case 3:return e?t(n[0],n[1],n[2]):t.call(r,n[0],n[1],n[2]);case 4:return e?t(n[0],n[1],n[2],n[3]):t.call(r,n[0],n[1],n[2],n[3])}return t.apply(r,n)}},MtdB:function(t,n,r){var e=r("XKFU");e(e.S,"Math",{clz32:function(t){return(t>>>=0)?31-Math.floor(Math.log(t+.5)*Math.LOG2E):32}})},Mukb:function(t,n,r){var e=r("hswa"),i=r("RjD/");t.exports=r("nh4g")?function(t,n,r){return e.f(t,n,i(1,r))}:function(t,n,r){return t[n]=r,t}},N8g3:function(t,n,r){n.f=r("K0xU")},NO8f:function(t,n,r){r("7DDg")("Uint8",1,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},NegM:function(t,n,r){var e=r("2faE"),i=r("rr1i");t.exports=r("jmDH")?function(t,n,r){return e.f(t,n,i(1,r))}:function(t,n,r){return t[n]=r,t}},Nr18:function(t,n,r){"use strict";var e=r("S/j/"),i=r("d/Gc"),o=r("ne8i");t.exports=function(t){for(var n=e(this),r=o(n.length),u=arguments.length,c=i(u>1?arguments[1]:void 0,r),a=u>2?arguments[2]:void 0,f=void 0===a?r:i(a,r);f>c;)n[c++]=t;return n}},Nz9U:function(t,n,r){"use strict";var e=r("XKFU"),i=r("aCFj"),o=[].join;e(e.P+e.F*(r("Ymqv")!=Object||!r("LyE8")(o)),"Array",{join:function(t){return o.call(i(this),void 0===t?",":t)}})},OEbY:function(t,n,r){r("nh4g")&&"g"!=/./g.flags&&r("hswa").f(RegExp.prototype,"flags",{configurable:!0,get:r("C/va")})},OG14:function(t,n,r){"use strict";var e=r("y3w9"),i=r("g6HL"),o=r("Xxuz");r("IU+Z")("search",1,(function(t,n,r,u){return[function(r){var e=t(this),i=null==r?void 0:r[n];return void 0!==i?i.call(r,e):new RegExp(r)[n](String(e))},function(t){var n=u(r,t,this);if(n.done)return n.value;var c=e(t),a=String(this),f=c.lastIndex;i(f,0)||(c.lastIndex=0);var s=o(c,a);return i(c.lastIndex,f)||(c.lastIndex=f),null===s?-1:s.index}]}))},OGtf:function(t,n,r){var e=r("XKFU"),i=r("eeVq"),o=r("vhPU"),u=/"/g,c=function(t,n,r,e){var i=String(o(t)),c="<"+n;return""!==r&&(c+=" "+r+'="'+String(e).replace(u,""")+'"'),c+">"+i+"</"+n+">"};t.exports=function(t,n){var r={};r[t]=n(c),e(e.P+e.F*i((function(){var n=""[t]('"');return n!==n.toLowerCase()||n.split('"').length>3})),"String",r)}},OP3Y:function(t,n,r){var e=r("aagx"),i=r("S/j/"),o=r("YTvA")("IE_PROTO"),u=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=i(t),e(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?u:null}},OnI7:function(t,n,r){var e=r("dyZX"),i=r("g3g5"),o=r("LQAc"),u=r("N8g3"),c=r("hswa").f;t.exports=function(t){var n=i.Symbol||(i.Symbol=o?{}:e.Symbol||{});"_"==t.charAt(0)||t in n||c(n,t,{value:u.f(t)})}},Oyvg:function(t,n,r){var e=r("dyZX"),i=r("Xbzi"),o=r("hswa").f,u=r("kJMx").f,c=r("quPj"),a=r("C/va"),f=e.RegExp,s=f,l=f.prototype,h=/a/g,v=/a/g,p=new f(h)!==h;if(r("nh4g")&&(!p||r("eeVq")((function(){return v[r("K0xU")("match")]=!1,f(h)!=h||f(v)==v||"/a/i"!=f(h,"i")})))){f=function(t,n){var r=this instanceof f,e=c(t),o=void 0===n;return!r&&e&&t.constructor===f&&o?t:i(p?new s(e&&!o?t.source:t,n):s((e=t instanceof f)?t.source:t,e&&o?a.call(t):n),r?this:l,f)};for(var y=function(t){t in f||o(f,t,{configurable:!0,get:function(){return s[t]},set:function(n){s[t]=n}})},g=u(s),d=0;g.length>d;)y(g[d++]);l.constructor=f,f.prototype=l,r("KroJ")(e,"RegExp",f)}r("elZq")("RegExp")},PKUr:function(t,n,r){var e=r("dyZX").parseInt,i=r("qncB").trim,o=r("/e88"),u=/^[-+]?0[xX]/;t.exports=8!==e(o+"08")||22!==e(o+"0x16")?function(t,n){var r=i(String(t),3);return e(r,n>>>0||(u.test(r)?16:10))}:e},QNwp:function(t,n,r){r("7VC1"),t.exports=r("g3g5").String.padEnd},QaDb:function(t,n,r){"use strict";var e=r("Kuth"),i=r("RjD/"),o=r("fyDq"),u={};r("Mukb")(u,r("K0xU")("iterator"),(function(){return this})),t.exports=function(t,n,r){t.prototype=e(u,{next:i(1,r)}),o(t,n+" Iterator")}},R5XZ:function(t,n,r){var e=r("dyZX"),i=r("XKFU"),o=r("ol8x"),u=[].slice,c=/MSIE .\./.test(o),a=function(t){return function(n,r){var e=arguments.length>2,i=!!e&&u.call(arguments,2);return t(e?function(){("function"==typeof n?n:Function(n)).apply(this,i)}:n,r)}};i(i.G+i.B+i.F*c,{setTimeout:a(e.setTimeout),setInterval:a(e.setInterval)})},RW0V:function(t,n,r){var e=r("S/j/"),i=r("DVgA");r("Xtr8")("keys",(function(){return function(t){return i(e(t))}}))},RYi7:function(t,n){var r=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?e:r)(t)}},"RjD/":function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},"S/j/":function(t,n,r){var e=r("vhPU");t.exports=function(t){return Object(e(t))}},SMB2:function(t,n,r){"use strict";r("OGtf")("bold",(function(t){return function(){return t(this,"b","","")}}))},SPin:function(t,n,r){"use strict";var e=r("XKFU"),i=r("eyMr");e(e.P+e.F*!r("LyE8")([].reduceRight,!0),"Array",{reduceRight:function(t){return i(this,t,arguments.length,arguments[1],!0)}})},SRfc:function(t,n,r){"use strict";var e=r("y3w9"),i=r("ne8i"),o=r("A5AN"),u=r("Xxuz");r("IU+Z")("match",1,(function(t,n,r,c){return[function(r){var e=t(this),i=null==r?void 0:r[n];return void 0!==i?i.call(r,e):new RegExp(r)[n](String(e))},function(t){var n=c(r,t,this);if(n.done)return n.value;var a=e(t),f=String(this);if(!a.global)return u(a,f);var s=a.unicode;a.lastIndex=0;for(var l,h=[],v=0;null!==(l=u(a,f));){var p=String(l[0]);h[v]=p,""===p&&(a.lastIndex=o(f,i(a.lastIndex),s)),v++}return 0===v?null:h}]}))},SlkY:function(t,n,r){var e=r("m0Pp"),i=r("H6hf"),o=r("M6Qj"),u=r("y3w9"),c=r("ne8i"),a=r("J+6e"),f={},s={};(n=t.exports=function(t,n,r,l,h){var v,p,y,g,d=h?function(){return t}:a(t),x=e(r,l,n?2:1),m=0;if("function"!=typeof d)throw TypeError(t+" is not iterable!");if(o(d)){for(v=c(t.length);v>m;m++)if((g=n?x(u(p=t[m])[0],p[1]):x(t[m]))===f||g===s)return g}else for(y=d.call(t);!(p=y.next()).done;)if((g=i(y,x,p.value,n))===f||g===s)return g}).BREAK=f,n.RETURN=s},T39b:function(t,n,r){"use strict";var e=r("wmvG"),i=r("s5qY");t.exports=r("4LiD")("Set",(function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}}),{add:function(t){return e.def(i(this,"Set"),t=0===t?0:t,t)}},e)},TIpR:function(t,n,r){"use strict";r("VRzm"),r("CX2u"),t.exports=r("g3g5").Promise.finally},Tdpu:function(t,n,r){r("7DDg")("Float64",8,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},Tze0:function(t,n,r){"use strict";r("qncB")("trim",(function(t){return function(){return t(this,3)}}))},U2t9:function(t,n,r){var e=r("XKFU"),i=Math.asinh;e(e.S+e.F*!(i&&1/i(0)>0),"Math",{asinh:function t(n){return isFinite(n=+n)&&0!=n?n<0?-t(-n):Math.log(n+Math.sqrt(n*n+1)):n}})},UExd:function(t,n,r){var e=r("nh4g"),i=r("DVgA"),o=r("aCFj"),u=r("UqcF").f;t.exports=function(t){return function(n){for(var r,c=o(n),a=i(c),f=a.length,s=0,l=[];f>s;)r=a[s++],e&&!u.call(c,r)||l.push(t?[r,c[r]]:c[r]);return l}}},UUeW:function(t,n,r){var e=r("K0xU")("match");t.exports=function(t){var n=/./;try{"/./"[t](n)}catch(r){try{return n[e]=!1,!"/./"[t](n)}catch(t){}}return!0}},Ugos:function(t,n,r){"use strict";var e,i,o=r("C/va"),u=RegExp.prototype.exec,c=String.prototype.replace,a=u,f=(e=/a/,i=/b*/g,u.call(e,"a"),u.call(i,"a"),0!==e.lastIndex||0!==i.lastIndex),s=void 0!==/()??/.exec("")[1];(f||s)&&(a=function(t){var n,r,e,i,a=this;return s&&(r=new RegExp("^"+a.source+"$(?!\\s)",o.call(a))),f&&(n=a.lastIndex),e=u.call(a,t),f&&e&&(a.lastIndex=a.global?e.index+e[0].length:n),s&&e&&e.length>1&&c.call(e[0],r,(function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(e[i]=void 0)})),e}),t.exports=a},UqcF:function(t,n){n.f={}.propertyIsEnumerable},"V+eJ":function(t,n,r){"use strict";var e=r("XKFU"),i=r("w2a5")(!1),o=[].indexOf,u=!!o&&1/[1].indexOf(1,-0)<0;e(e.P+e.F*(u||!r("LyE8")(o)),"Array",{indexOf:function(t){return u?o.apply(this,arguments)||0:i(this,t,arguments[1])}})},"V/DX":function(t,n,r){var e=r("0/R4");r("Xtr8")("isSealed",(function(t){return function(n){return!e(n)||!!t&&t(n)}}))},VKir:function(t,n,r){"use strict";var e=r("XKFU"),i=r("eeVq"),o=r("vvmO"),u=1..toPrecision;e(e.P+e.F*(i((function(){return"1"!==u.call(1,void 0)}))||!i((function(){u.call({})}))),"Number",{toPrecision:function(t){var n=o(this,"Number#toPrecision: incorrect invocation!");return void 0===t?u.call(n):u.call(n,t)}})},VRzm:function(t,n,r){"use strict";var e,i,o,u,c=r("LQAc"),a=r("dyZX"),f=r("m0Pp"),s=r("I8a+"),l=r("XKFU"),h=r("0/R4"),v=r("2OiF"),p=r("9gX7"),y=r("SlkY"),g=r("69bn"),d=r("GZEu").set,x=r("gHnn")(),m=r("pbhE"),b=r("nICZ"),w=r("ol8x"),F=r("vKrd"),S=a.TypeError,E=a.process,O=E&&E.versions,U=O&&O.v8||"",_=a.Promise,P="process"==s(E),M=function(){},K=i=m.f,j=!!function(){try{var t=_.resolve(1),n=(t.constructor={})[r("K0xU")("species")]=function(t){t(M,M)};return(P||"function"==typeof PromiseRejectionEvent)&&t.then(M)instanceof n&&0!==U.indexOf("6.6")&&-1===w.indexOf("Chrome/66")}catch(t){}}(),X=function(t){var n;return!(!h(t)||"function"!=typeof(n=t.then))&&n},A=function(t,n){if(!t._n){t._n=!0;var r=t._c;x((function(){for(var e=t._v,i=1==t._s,o=0,u=function(n){var r,o,u,c=i?n.ok:n.fail,a=n.resolve,f=n.reject,s=n.domain;try{c?(i||(2==t._h&&R(t),t._h=1),!0===c?r=e:(s&&s.enter(),r=c(e),s&&(s.exit(),u=!0)),r===n.promise?f(S("Promise-chain cycle")):(o=X(r))?o.call(r,a,f):a(r)):f(e)}catch(t){s&&!u&&s.exit(),f(t)}};r.length>o;)u(r[o++]);t._c=[],t._n=!1,n&&!t._h&&I(t)}))}},I=function(t){d.call(a,(function(){var n,r,e,i=t._v,o=L(t);if(o&&(n=b((function(){P?E.emit("unhandledRejection",i,t):(r=a.onunhandledrejection)?r({promise:t,reason:i}):(e=a.console)&&e.error&&e.error("Unhandled promise rejection",i)})),t._h=P||L(t)?2:1),t._a=void 0,o&&n.e)throw n.v}))},L=function(t){return 1!==t._h&&0===(t._a||t._c).length},R=function(t){d.call(a,(function(){var n;P?E.emit("rejectionHandled",t):(n=a.onrejectionhandled)&&n({promise:t,reason:t._v})}))},T=function(t){var n=this;n._d||(n._d=!0,(n=n._w||n)._v=t,n._s=2,n._a||(n._a=n._c.slice()),A(n,!0))},N=function(t){var n,r=this;if(!r._d){r._d=!0,r=r._w||r;try{if(r===t)throw S("Promise can't be resolved itself");(n=X(t))?x((function(){var e={_w:r,_d:!1};try{n.call(t,f(N,e,1),f(T,e,1))}catch(t){T.call(e,t)}})):(r._v=t,r._s=1,A(r,!1))}catch(t){T.call({_w:r,_d:!1},t)}}};j||(_=function(t){p(this,_,"Promise","_h"),v(t),e.call(this);try{t(f(N,this,1),f(T,this,1))}catch(t){T.call(this,t)}},(e=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=r("3Lyj")(_.prototype,{then:function(t,n){var r=K(g(this,_));return r.ok="function"!=typeof t||t,r.fail="function"==typeof n&&n,r.domain=P?E.domain:void 0,this._c.push(r),this._a&&this._a.push(r),this._s&&A(this,!1),r.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new e;this.promise=t,this.resolve=f(N,t,1),this.reject=f(T,t,1)},m.f=K=function(t){return t===_||t===u?new o(t):i(t)}),l(l.G+l.W+l.F*!j,{Promise:_}),r("fyDq")(_,"Promise"),r("elZq")("Promise"),u=r("g3g5").Promise,l(l.S+l.F*!j,"Promise",{reject:function(t){var n=K(this);return(0,n.reject)(t),n.promise}}),l(l.S+l.F*(c||!j),"Promise",{resolve:function(t){return F(c&&this===u?_:this,t)}}),l(l.S+l.F*!(j&&r("XMVh")((function(t){_.all(t).catch(M)}))),"Promise",{all:function(t){var n=this,r=K(n),e=r.resolve,i=r.reject,o=b((function(){var r=[],o=0,u=1;y(t,!1,(function(t){var c=o++,a=!1;r.push(void 0),u++,n.resolve(t).then((function(t){a||(a=!0,r[c]=t,--u||e(r))}),i)})),--u||e(r)}));return o.e&&i(o.v),r.promise},race:function(t){var n=this,r=K(n),e=r.reject,i=b((function(){y(t,!1,(function(t){n.resolve(t).then(r.resolve,e)}))}));return i.e&&e(i.v),r.promise}})},VTer:function(t,n,r){var e=r("g3g5"),i=r("dyZX"),o=i["__core-js_shared__"]||(i["__core-js_shared__"]={});(t.exports=function(t,n){return o[t]||(o[t]=void 0!==n?n:{})})("versions",[]).push({version:e.version,mode:r("LQAc")?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},Vd3H:function(t,n,r){"use strict";var e=r("XKFU"),i=r("2OiF"),o=r("S/j/"),u=r("eeVq"),c=[].sort,a=[1,2,3];e(e.P+e.F*(u((function(){a.sort(void 0)}))||!u((function(){a.sort(null)}))||!r("LyE8")(c)),"Array",{sort:function(t){return void 0===t?c.call(o(this)):c.call(o(this),i(t))}})},VpUO:function(t,n,r){var e=r("XKFU"),i=r("d/Gc"),o=String.fromCharCode,u=String.fromCodePoint;e(e.S+e.F*(!!u&&1!=u.length),"String",{fromCodePoint:function(t){for(var n,r=[],e=arguments.length,u=0;e>u;){if(n=+arguments[u++],i(n,1114111)!==n)throw RangeError(n+" is not a valid code point");r.push(n<65536?o(n):o(55296+((n-=65536)>>10),n%1024+56320))}return r.join("")}})},VsWn:function(t,n,r){r("7PI8"),t.exports=r("WEpk").global},W9dy:function(t,n,r){r("ioFf"),r("hHhE"),r("HAE/"),r("WLL4"),r("mYba"),r("5Pf0"),r("RW0V"),r("JduL"),r("DW2E"),r("z2o2"),r("mura"),r("Zshi"),r("V/DX"),r("FlsD"),r("91GP"),r("25dN"),r("/SS/"),r("Btvt"),r("2Spj"),r("f3/d"),r("IXt9"),r("GNAe"),r("tyy+"),r("xfY5"),r("A2zW"),r("VKir"),r("Ljet"),r("/KAi"),r("fN96"),r("7h0T"),r("sbF8"),r("h/M4"),r("knhD"),r("XfKG"),r("BP8U"),r("fyVe"),r("U2t9"),r("2atp"),r("+auO"),r("MtdB"),r("Jcmo"),r("nzyx"),r("BC7C"),r("x8ZO"),r("9P93"),r("eHKK"),r("BJ/l"),r("pp/T"),r("CyHz"),r("bBoP"),r("x8Yj"),r("hLT2"),r("VpUO"),r("eI33"),r("Tze0"),r("XfO3"),r("oDIu"),r("rvZc"),r("L9s1"),r("FLlr"),r("9VmF"),r("hEkN"),r("nIY7"),r("+oPb"),r("SMB2"),r("0mN4"),r("bDcW"),r("nsiH"),r("0LDn"),r("tUrg"),r("84bF"),r("FEjr"),r("Zz4T"),r("JCqj"),r("eM6i"),r("AphP"),r("jqX0"),r("h7Nl"),r("yM4b"),r("LK8F"),r("HEwt"),r("6AQ9"),r("Nz9U"),r("I78e"),r("Vd3H"),r("8+KV"),r("bWfx"),r("0l/t"),r("dZ+Y"),r("YJVH"),r("DNiP"),r("SPin"),r("V+eJ"),r("mGWK"),r("dE+T"),r("bHtr"),r("dRSK"),r("INYr"),r("0E+W"),r("yt8O"),r("Oyvg"),r("sMXx"),r("a1Th"),r("OEbY"),r("SRfc"),r("pIFo"),r("OG14"),r("KKXr"),r("VRzm"),r("9AAn"),r("T39b"),r("EK0E"),r("wCsR"),r("xm80"),r("Ji/l"),r("sFw1"),r("NO8f"),r("aqI/"),r("Faw5"),r("r1bV"),r("tuSo"),r("nCnK"),r("Y9lz"),r("Tdpu"),r("3xty"),r("I5cv"),r("iMoV"),r("uhZd"),r("f/aN"),r("0YWM"),r("694e"),r("LTTk"),r("9rMk"),r("IlFx"),r("xpiv"),r("oZ/O"),r("klPD"),r("knU9"),t.exports=r("g3g5")},WEpk:function(t,n){var r=t.exports={version:"2.6.12"};"number"==typeof __e&&(__e=r)},WLL4:function(t,n,r){var e=r("XKFU");e(e.S+e.F*!r("nh4g"),"Object",{defineProperties:r("FJW5")})},XKFU:function(t,n,r){var e=r("dyZX"),i=r("g3g5"),o=r("Mukb"),u=r("KroJ"),c=r("m0Pp"),a=function(t,n,r){var f,s,l,h,v=t&a.F,p=t&a.G,y=t&a.S,g=t&a.P,d=t&a.B,x=p?e:y?e[n]||(e[n]={}):(e[n]||{}).prototype,m=p?i:i[n]||(i[n]={}),b=m.prototype||(m.prototype={});for(f in p&&(r=n),r)l=((s=!v&&x&&void 0!==x[f])?x:r)[f],h=d&&s?c(l,e):g&&"function"==typeof l?c(Function.call,l):l,x&&u(x,f,l,t&a.U),m[f]!=l&&o(m,f,h),g&&b[f]!=l&&(b[f]=l)};e.core=i,a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},XMVh:function(t,n,r){var e=r("K0xU")("iterator"),i=!1;try{var o=[7][e]();o.return=function(){i=!0},Array.from(o,(function(){throw 2}))}catch(t){}t.exports=function(t,n){if(!n&&!i)return!1;var r=!1;try{var o=[7],u=o[e]();u.next=function(){return{done:r=!0}},o[e]=function(){return u},t(o)}catch(t){}return r}},Xbzi:function(t,n,r){var e=r("0/R4"),i=r("i5dc").set;t.exports=function(t,n,r){var o,u=n.constructor;return u!==r&&"function"==typeof u&&(o=u.prototype)!==r.prototype&&e(o)&&i&&i(t,o),t}},XfKG:function(t,n,r){var e=r("XKFU"),i=r("11IZ");e(e.S+e.F*(Number.parseFloat!=i),"Number",{parseFloat:i})},XfO3:function(t,n,r){"use strict";var e=r("AvRE")(!0);r("Afnz")(String,"String",(function(t){this._t=String(t),this._i=0}),(function(){var t,n=this._t,r=this._i;return r>=n.length?{value:void 0,done:!0}:(t=e(n,r),this._i+=t.length,{value:t,done:!1})}))},Xtr8:function(t,n,r){var e=r("XKFU"),i=r("g3g5"),o=r("eeVq");t.exports=function(t,n){var r=(i.Object||{})[t]||Object[t],u={};u[t]=n(r),e(e.S+e.F*o((function(){r(1)})),"Object",u)}},Xxuz:function(t,n,r){"use strict";var e=r("I8a+"),i=RegExp.prototype.exec;t.exports=function(t,n){var r=t.exec;if("function"==typeof r){var o=r.call(t,n);if("object"!=typeof o)throw new TypeError("RegExp exec method returned something other than an Object or null");return o}if("RegExp"!==e(t))throw new TypeError("RegExp#exec called on incompatible receiver");return i.call(t,n)}},Y7ZC:function(t,n,r){var e=r("5T2Y"),i=r("WEpk"),o=r("2GTP"),u=r("NegM"),c=r("B+OT"),a=function(t,n,r){var f,s,l,h=t&a.F,v=t&a.G,p=t&a.S,y=t&a.P,g=t&a.B,d=t&a.W,x=v?i:i[n]||(i[n]={}),m=x.prototype,b=v?e:p?e[n]:(e[n]||{}).prototype;for(f in v&&(r=n),r)(s=!h&&b&&void 0!==b[f])&&c(x,f)||(l=s?b[f]:r[f],x[f]=v&&"function"!=typeof b[f]?r[f]:g&&s?o(l,e):d&&b[f]==l?function(t){var n=function(n,r,e){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(n);case 2:return new t(n,r)}return new t(n,r,e)}return t.apply(this,arguments)};return n.prototype=t.prototype,n}(l):y&&"function"==typeof l?o(Function.call,l):l,y&&((x.virtual||(x.virtual={}))[f]=l,t&a.R&&m&&!m[f]&&u(m,f,l)))};a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},Y9lz:function(t,n,r){r("7DDg")("Float32",4,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},YJVH:function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(4);e(e.P+e.F*!r("LyE8")([].every,!0),"Array",{every:function(t){return i(this,t,arguments[1])}})},YTvA:function(t,n,r){var e=r("VTer")("keys"),i=r("ylqs");t.exports=function(t){return e[t]||(e[t]=i(t))}},Ymqv:function(t,n,r){var e=r("LZWt");t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==e(t)?t.split(""):Object(t)}},Yp8f:function(t,n,r){r("6VaU"),t.exports=r("g3g5").Array.flatMap},Z2Ku:function(t,n,r){"use strict";var e=r("XKFU"),i=r("w2a5")(!0);e(e.P,"Array",{includes:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),r("nGyu")("includes")},Z6vF:function(t,n,r){var e=r("ylqs")("meta"),i=r("0/R4"),o=r("aagx"),u=r("hswa").f,c=0,a=Object.isExtensible||function(){return!0},f=!r("eeVq")((function(){return a(Object.preventExtensions({}))})),s=function(t){u(t,e,{value:{i:"O"+ ++c,w:{}}})},l=t.exports={KEY:e,NEED:!1,fastKey:function(t,n){if(!i(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!o(t,e)){if(!a(t))return"F";if(!n)return"E";s(t)}return t[e].i},getWeak:function(t,n){if(!o(t,e)){if(!a(t))return!0;if(!n)return!1;s(t)}return t[e].w},onFreeze:function(t){return f&&l.NEED&&a(t)&&!o(t,e)&&s(t),t}}},ZD67:function(t,n,r){"use strict";var e=r("3Lyj"),i=r("Z6vF").getWeak,o=r("y3w9"),u=r("0/R4"),c=r("9gX7"),a=r("SlkY"),f=r("CkkT"),s=r("aagx"),l=r("s5qY"),h=f(5),v=f(6),p=0,y=function(t){return t._l||(t._l=new g)},g=function(){this.a=[]},d=function(t,n){return h(t.a,(function(t){return t[0]===n}))};g.prototype={get:function(t){var n=d(this,t);if(n)return n[1]},has:function(t){return!!d(this,t)},set:function(t,n){var r=d(this,t);r?r[1]=n:this.a.push([t,n])},delete:function(t){var n=v(this.a,(function(n){return n[0]===t}));return~n&&this.a.splice(n,1),!!~n}},t.exports={getConstructor:function(t,n,r,o){var f=t((function(t,e){c(t,f,n,"_i"),t._t=n,t._i=p++,t._l=void 0,null!=e&&a(e,r,t[o],t)}));return e(f.prototype,{delete:function(t){if(!u(t))return!1;var r=i(t);return!0===r?y(l(this,n)).delete(t):r&&s(r,this._i)&&delete r[this._i]},has:function(t){if(!u(t))return!1;var r=i(t);return!0===r?y(l(this,n)).has(t):r&&s(r,this._i)}}),f},def:function(t,n,r){var e=i(o(n),!0);return!0===e?y(t).set(n,r):e[t._i]=r,t},ufstore:y}},Zshi:function(t,n,r){var e=r("0/R4");r("Xtr8")("isFrozen",(function(t){return function(n){return!e(n)||!!t&&t(n)}}))},Zz4T:function(t,n,r){"use strict";r("OGtf")("sub",(function(t){return function(){return t(this,"sub","","")}}))},a1Th:function(t,n,r){"use strict";r("OEbY");var e=r("y3w9"),i=r("C/va"),o=r("nh4g"),u=/./.toString,c=function(t){r("KroJ")(RegExp.prototype,"toString",t,!0)};r("eeVq")((function(){return"/a/b"!=u.call({source:"a",flags:"b"})}))?c((function(){var t=e(this);return"/".concat(t.source,"/","flags"in t?t.flags:!o&&t instanceof RegExp?i.call(t):void 0)})):"toString"!=u.name&&c((function(){return u.call(this)}))},aCFj:function(t,n,r){var e=r("Ymqv"),i=r("vhPU");t.exports=function(t){return e(i(t))}},aagx:function(t,n){var r={}.hasOwnProperty;t.exports=function(t,n){return r.call(t,n)}},apmT:function(t,n,r){var e=r("0/R4");t.exports=function(t,n){if(!e(t))return t;var r,i;if(n&&"function"==typeof(r=t.toString)&&!e(i=r.call(t)))return i;if("function"==typeof(r=t.valueOf)&&!e(i=r.call(t)))return i;if(!n&&"function"==typeof(r=t.toString)&&!e(i=r.call(t)))return i;throw TypeError("Can't convert object to primitive value")}},"aqI/":function(t,n,r){r("7DDg")("Uint8",1,(function(t){return function(n,r,e){return t(this,n,r,e)}}),!0)},bBoP:function(t,n,r){var e=r("XKFU"),i=r("LVwc"),o=Math.exp;e(e.S+e.F*r("eeVq")((function(){return-2e-17!=!Math.sinh(-2e-17)})),"Math",{sinh:function(t){return Math.abs(t=+t)<1?(i(t)-i(-t))/2:(o(t-1)-o(-t-1))*(Math.E/2)}})},bDcW:function(t,n,r){"use strict";r("OGtf")("fontcolor",(function(t){return function(n){return t(this,"font","color",n)}}))},bHtr:function(t,n,r){var e=r("XKFU");e(e.P,"Array",{fill:r("Nr18")}),r("nGyu")("fill")},bWfx:function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(1);e(e.P+e.F*!r("LyE8")([].map,!0),"Array",{map:function(t){return i(this,t,arguments[1])}})},czNK:function(t,n,r){"use strict";var e=r("nh4g"),i=r("DVgA"),o=r("JiEa"),u=r("UqcF"),c=r("S/j/"),a=r("Ymqv"),f=Object.assign;t.exports=!f||r("eeVq")((function(){var t={},n={},r=Symbol(),e="abcdefghijklmnopqrst";return t[r]=7,e.split("").forEach((function(t){n[t]=t})),7!=f({},t)[r]||Object.keys(f({},n)).join("")!=e}))?function(t,n){for(var r=c(t),f=arguments.length,s=1,l=o.f,h=u.f;f>s;)for(var v,p=a(arguments[s++]),y=l?i(p).concat(l(p)):i(p),g=y.length,d=0;g>d;)v=y[d++],e&&!h.call(p,v)||(r[v]=p[v]);return r}:f},"d/Gc":function(t,n,r){var e=r("RYi7"),i=Math.max,o=Math.min;t.exports=function(t,n){return(t=e(t))<0?i(t+n,0):o(t,n)}},"dE+T":function(t,n,r){var e=r("XKFU");e(e.P,"Array",{copyWithin:r("upKx")}),r("nGyu")("copyWithin")},dRSK:function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(5),o=!0;"find"in[]&&Array(1).find((function(){o=!1})),e(e.P+e.F*o,"Array",{find:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),r("nGyu")("find")},"dZ+Y":function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(3);e(e.P+e.F*!r("LyE8")([].some,!0),"Array",{some:function(t){return i(this,t,arguments[1])}})},dyZX:function(t,n){var r=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=r)},e7yV:function(t,n,r){var e=r("aCFj"),i=r("kJMx").f,o={}.toString,u="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return u&&"[object Window]"==o.call(t)?function(t){try{return i(t)}catch(t){return u.slice()}}(t):i(e(t))}},eHKK:function(t,n,r){var e=r("XKFU");e(e.S,"Math",{log10:function(t){return Math.log(t)*Math.LOG10E}})},eI33:function(t,n,r){var e=r("XKFU"),i=r("aCFj"),o=r("ne8i");e(e.S,"String",{raw:function(t){for(var n=i(t.raw),r=o(n.length),e=arguments.length,u=[],c=0;r>c;)u.push(String(n[c++])),c<e&&u.push(String(arguments[c]));return u.join("")}})},eM6i:function(t,n,r){var e=r("XKFU");e(e.S,"Date",{now:function(){return(new Date).getTime()}})},eUtF:function(t,n,r){t.exports=!r("jmDH")&&!r("KUxP")((function(){return 7!=Object.defineProperty(r("Hsns")("div"),"a",{get:function(){return 7}}).a}))},eaoh:function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},eeVq:function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},elZq:function(t,n,r){"use strict";var e=r("dyZX"),i=r("hswa"),o=r("nh4g"),u=r("K0xU")("species");t.exports=function(t){var n=e[t];o&&n&&!n[u]&&i.f(n,u,{configurable:!0,get:function(){return this}})}},eyMr:function(t,n,r){var e=r("2OiF"),i=r("S/j/"),o=r("Ymqv"),u=r("ne8i");t.exports=function(t,n,r,c,a){e(n);var f=i(t),s=o(f),l=u(f.length),h=a?l-1:0,v=a?-1:1;if(r<2)for(;;){if(h in s){c=s[h],h+=v;break}if(h+=v,a?h<0:l<=h)throw TypeError("Reduce of empty array with no initial value")}for(;a?h>=0:l>h;h+=v)h in s&&(c=n(c,s[h],h,f));return c}},"f/aN":function(t,n,r){"use strict";var e=r("XKFU"),i=r("y3w9"),o=function(t){this._t=i(t),this._i=0;var n,r=this._k=[];for(n in t)r.push(n)};r("QaDb")(o,"Object",(function(){var t,n=this._k;do{if(this._i>=n.length)return{value:void 0,done:!0}}while(!((t=n[this._i++])in this._t));return{value:t,done:!1}})),e(e.S,"Reflect",{enumerate:function(t){return new o(t)}})},"f3/d":function(t,n,r){var e=r("hswa").f,i=Function.prototype,o=/^\s*function ([^ (]*)/;"name"in i||r("nh4g")&&e(i,"name",{configurable:!0,get:function(){try{return(""+this).match(o)[1]}catch(t){return""}}})},fA63:function(t,n,r){"use strict";r("qncB")("trimRight",(function(t){return function(){return t(this,2)}}),"trimEnd")},fN96:function(t,n,r){var e=r("XKFU");e(e.S,"Number",{isInteger:r("nBIS")})},fyDq:function(t,n,r){var e=r("hswa").f,i=r("aagx"),o=r("K0xU")("toStringTag");t.exports=function(t,n,r){t&&!i(t=r?t:t.prototype,o)&&e(t,o,{configurable:!0,value:n})}},fyVe:function(t,n,r){var e=r("XKFU"),i=r("1sa7"),o=Math.sqrt,u=Math.acosh;e(e.S+e.F*!(u&&710==Math.floor(u(Number.MAX_VALUE))&&u(1/0)==1/0),"Math",{acosh:function(t){return(t=+t)<1?NaN:t>94906265.62425156?Math.log(t)+Math.LN2:i(t-1+o(t-1)*o(t+1))}})},g2aq:function(t,n,r){"use strict";r("W9dy"),r("FDph"),r("Yp8f"),r("wYy3"),r("QNwp"),r("Izvi"),r("ln0Z"),r("wDwx"),r("+Xmh"),r("zFFn"),r("JbTB"),r("TIpR"),r("FxUG"),r("ls82")},g3g5:function(t,n){var r=t.exports={version:"2.6.12"};"number"==typeof __e&&(__e=r)},g4EE:function(t,n,r){"use strict";var e=r("y3w9"),i=r("apmT");t.exports=function(t){if("string"!==t&&"number"!==t&&"default"!==t)throw TypeError("Incorrect hint");return i(e(this),"number"!=t)}},g6HL:function(t,n){t.exports=Object.is||function(t,n){return t===n?0!==t||1/t==1/n:t!=t&&n!=n}},gHnn:function(t,n,r){var e=r("dyZX"),i=r("GZEu").set,o=e.MutationObserver||e.WebKitMutationObserver,u=e.process,c=e.Promise,a="process"==r("LZWt")(u);t.exports=function(){var t,n,r,f=function(){var e,i;for(a&&(e=u.domain)&&e.exit();t;){i=t.fn,t=t.next;try{i()}catch(e){throw t?r():n=void 0,e}}n=void 0,e&&e.enter()};if(a)r=function(){u.nextTick(f)};else if(!o||e.navigator&&e.navigator.standalone)if(c&&c.resolve){var s=c.resolve(void 0);r=function(){s.then(f)}}else r=function(){i.call(e,f)};else{var l=!0,h=document.createTextNode("");new o(f).observe(h,{characterData:!0}),r=function(){h.data=l=!l}}return function(e){var i={fn:e,next:void 0};n&&(n.next=i),t||(t=i,r()),n=i}}},"h/M4":function(t,n,r){var e=r("XKFU");e(e.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},h7Nl:function(t,n,r){var e=Date.prototype,i=e.toString,o=e.getTime;new Date(NaN)+""!="Invalid Date"&&r("KroJ")(e,"toString",(function(){var t=o.call(this);return t==t?i.call(this):"Invalid Date"}))},hEkN:function(t,n,r){"use strict";r("OGtf")("anchor",(function(t){return function(n){return t(this,"a","name",n)}}))},hHhE:function(t,n,r){var e=r("XKFU");e(e.S,"Object",{create:r("Kuth")})},hLT2:function(t,n,r){var e=r("XKFU");e(e.S,"Math",{trunc:function(t){return(t>0?Math.floor:Math.ceil)(t)}})},hPIQ:function(t,n){t.exports={}},hhXQ:function(t,n,r){var e=r("XKFU"),i=r("UExd")(!1);e(e.S,"Object",{values:function(t){return i(t)}})},hswa:function(t,n,r){var e=r("y3w9"),i=r("xpql"),o=r("apmT"),u=Object.defineProperty;n.f=r("nh4g")?Object.defineProperty:function(t,n,r){if(e(t),n=o(n,!0),e(r),i)try{return u(t,n,r)}catch(t){}if("get"in r||"set"in r)throw TypeError("Accessors not supported!");return"value"in r&&(t[n]=r.value),t}},i5dc:function(t,n,r){var e=r("0/R4"),i=r("y3w9"),o=function(t,n){if(i(t),!e(n)&&null!==n)throw TypeError(n+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,n,e){try{(e=r("m0Pp")(Function.call,r("EemH").f(Object.prototype,"__proto__").set,2))(t,[]),n=!(t instanceof Array)}catch(t){n=!0}return function(t,r){return o(t,r),n?t.__proto__=r:e(t,r),t}}({},!1):void 0),check:o}},iMoV:function(t,n,r){var e=r("hswa"),i=r("XKFU"),o=r("y3w9"),u=r("apmT");i(i.S+i.F*r("eeVq")((function(){Reflect.defineProperty(e.f({},1,{value:1}),1,{value:2})})),"Reflect",{defineProperty:function(t,n,r){o(t),n=u(n,!0),o(r);try{return e.f(t,n,r),!0}catch(t){return!1}}})},ioFf:function(t,n,r){"use strict";var e=r("dyZX"),i=r("aagx"),o=r("nh4g"),u=r("XKFU"),c=r("KroJ"),a=r("Z6vF").KEY,f=r("eeVq"),s=r("VTer"),l=r("fyDq"),h=r("ylqs"),v=r("K0xU"),p=r("N8g3"),y=r("OnI7"),g=r("1MBn"),d=r("EWmC"),x=r("y3w9"),m=r("0/R4"),b=r("S/j/"),w=r("aCFj"),F=r("apmT"),S=r("RjD/"),E=r("Kuth"),O=r("e7yV"),U=r("EemH"),_=r("JiEa"),P=r("hswa"),M=r("DVgA"),K=U.f,j=P.f,X=O.f,A=e.Symbol,I=e.JSON,L=I&&I.stringify,R=v("_hidden"),T=v("toPrimitive"),N={}.propertyIsEnumerable,k=s("symbol-registry"),D=s("symbols"),V=s("op-symbols"),C=Object.prototype,q="function"==typeof A&&!!_.f,Z=e.QObject,W=!Z||!Z.prototype||!Z.prototype.findChild,G=o&&f((function(){return 7!=E(j({},"a",{get:function(){return j(this,"a",{value:7}).a}})).a}))?function(t,n,r){var e=K(C,n);e&&delete C[n],j(t,n,r),e&&t!==C&&j(C,n,e)}:j,Y=function(t){var n=D[t]=E(A.prototype);return n._k=t,n},B=q&&"symbol"==typeof A.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof A},z=function(t,n,r){return t===C&&z(V,n,r),x(t),n=F(n,!0),x(r),i(D,n)?(r.enumerable?(i(t,R)&&t[R][n]&&(t[R][n]=!1),r=E(r,{enumerable:S(0,!1)})):(i(t,R)||j(t,R,S(1,{})),t[R][n]=!0),G(t,n,r)):j(t,n,r)},J=function(t,n){x(t);for(var r,e=g(n=w(n)),i=0,o=e.length;o>i;)z(t,r=e[i++],n[r]);return t},H=function(t){var n=N.call(this,t=F(t,!0));return!(this===C&&i(D,t)&&!i(V,t))&&(!(n||!i(this,t)||!i(D,t)||i(this,R)&&this[R][t])||n)},Q=function(t,n){if(t=w(t),n=F(n,!0),t!==C||!i(D,n)||i(V,n)){var r=K(t,n);return!r||!i(D,n)||i(t,R)&&t[R][n]||(r.enumerable=!0),r}},$=function(t){for(var n,r=X(w(t)),e=[],o=0;r.length>o;)i(D,n=r[o++])||n==R||n==a||e.push(n);return e},tt=function(t){for(var n,r=t===C,e=X(r?V:w(t)),o=[],u=0;e.length>u;)!i(D,n=e[u++])||r&&!i(C,n)||o.push(D[n]);return o};q||(c((A=function(){if(this instanceof A)throw TypeError("Symbol is not a constructor!");var t=h(arguments.length>0?arguments[0]:void 0),n=function(r){this===C&&n.call(V,r),i(this,R)&&i(this[R],t)&&(this[R][t]=!1),G(this,t,S(1,r))};return o&&W&&G(C,t,{configurable:!0,set:n}),Y(t)}).prototype,"toString",(function(){return this._k})),U.f=Q,P.f=z,r("kJMx").f=O.f=$,r("UqcF").f=H,_.f=tt,o&&!r("LQAc")&&c(C,"propertyIsEnumerable",H,!0),p.f=function(t){return Y(v(t))}),u(u.G+u.W+u.F*!q,{Symbol:A});for(var nt="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),rt=0;nt.length>rt;)v(nt[rt++]);for(var et=M(v.store),it=0;et.length>it;)y(et[it++]);u(u.S+u.F*!q,"Symbol",{for:function(t){return i(k,t+="")?k[t]:k[t]=A(t)},keyFor:function(t){if(!B(t))throw TypeError(t+" is not a symbol!");for(var n in k)if(k[n]===t)return n},useSetter:function(){W=!0},useSimple:function(){W=!1}}),u(u.S+u.F*!q,"Object",{create:function(t,n){return void 0===n?E(t):J(E(t),n)},defineProperty:z,defineProperties:J,getOwnPropertyDescriptor:Q,getOwnPropertyNames:$,getOwnPropertySymbols:tt});var ot=f((function(){_.f(1)}));u(u.S+u.F*ot,"Object",{getOwnPropertySymbols:function(t){return _.f(b(t))}}),I&&u(u.S+u.F*(!q||f((function(){var t=A();return"[null]"!=L([t])||"{}"!=L({a:t})||"{}"!=L(Object(t))}))),"JSON",{stringify:function(t){for(var n,r,e=[t],i=1;arguments.length>i;)e.push(arguments[i++]);if(r=n=e[1],(m(n)||void 0!==t)&&!B(t))return d(n)||(n=function(t,n){if("function"==typeof r&&(n=r.call(this,t,n)),!B(n))return n}),e[1]=n,L.apply(I,e)}}),A.prototype[T]||r("Mukb")(A.prototype,T,A.prototype.valueOf),l(A,"Symbol"),l(Math,"Math",!0),l(e.JSON,"JSON",!0)},jm62:function(t,n,r){var e=r("XKFU"),i=r("mQtv"),o=r("aCFj"),u=r("EemH"),c=r("8a7r");e(e.S,"Object",{getOwnPropertyDescriptors:function(t){for(var n,r,e=o(t),a=u.f,f=i(e),s={},l=0;f.length>l;)void 0!==(r=a(e,n=f[l++]))&&c(s,n,r);return s}})},jmDH:function(t,n,r){t.exports=!r("KUxP")((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},jqX0:function(t,n,r){var e=r("XKFU"),i=r("jtBr");e(e.P+e.F*(Date.prototype.toISOString!==i),"Date",{toISOString:i})},jtBr:function(t,n,r){"use strict";var e=r("eeVq"),i=Date.prototype.getTime,o=Date.prototype.toISOString,u=function(t){return t>9?t:"0"+t};t.exports=e((function(){return"0385-07-25T07:06:39.999Z"!=o.call(new Date(-50000000000001))}))||!e((function(){o.call(new Date(NaN))}))?function(){if(!isFinite(i.call(this)))throw RangeError("Invalid time value");var t=this,n=t.getUTCFullYear(),r=t.getUTCMilliseconds(),e=n<0?"-":n>9999?"+":"";return e+("00000"+Math.abs(n)).slice(e?-6:-4)+"-"+u(t.getUTCMonth()+1)+"-"+u(t.getUTCDate())+"T"+u(t.getUTCHours())+":"+u(t.getUTCMinutes())+":"+u(t.getUTCSeconds())+"."+(r>99?r:"0"+u(r))+"Z"}:o},kJMx:function(t,n,r){var e=r("zhAb"),i=r("4R4u").concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return e(t,i)}},kcoS:function(t,n,r){var e=r("lvtm"),i=Math.pow,o=i(2,-52),u=i(2,-23),c=i(2,127)*(2-u),a=i(2,-126);t.exports=Math.fround||function(t){var n,r,i=Math.abs(t),f=e(t);return i<a?f*(i/a/u+1/o-1/o)*a*u:(r=(n=(1+u/o)*i)-(n-i))>c||r!=r?f*(1/0):f*r}},klPD:function(t,n,r){var e=r("hswa"),i=r("EemH"),o=r("OP3Y"),u=r("aagx"),c=r("XKFU"),a=r("RjD/"),f=r("y3w9"),s=r("0/R4");c(c.S,"Reflect",{set:function t(n,r,c){var l,h,v=arguments.length<4?n:arguments[3],p=i.f(f(n),r);if(!p){if(s(h=o(n)))return t(h,r,c,v);p=a(0)}if(u(p,"value")){if(!1===p.writable||!s(v))return!1;if(l=i.f(v,r)){if(l.get||l.set||!1===l.writable)return!1;l.value=c,e.f(v,r,l)}else e.f(v,r,a(0,c));return!0}return void 0!==p.set&&(p.set.call(v,c),!0)}})},knU9:function(t,n,r){var e=r("XKFU"),i=r("i5dc");i&&e(e.S,"Reflect",{setPrototypeOf:function(t,n){i.check(t,n);try{return i.set(t,n),!0}catch(t){return!1}}})},knhD:function(t,n,r){var e=r("XKFU");e(e.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},l0Rn:function(t,n,r){"use strict";var e=r("RYi7"),i=r("vhPU");t.exports=function(t){var n=String(i(this)),r="",o=e(t);if(o<0||o==1/0)throw RangeError("Count can't be negative");for(;o>0;(o>>>=1)&&(n+=n))1&o&&(r+=n);return r}},ln0Z:function(t,n,r){r("fA63"),t.exports=r("g3g5").String.trimRight},ls82:function(t,n,r){var e=function(t){"use strict";var n=Object.prototype,r=n.hasOwnProperty,e="function"==typeof Symbol?Symbol:{},i=e.iterator||"@@iterator",o=e.asyncIterator||"@@asyncIterator",u=e.toStringTag||"@@toStringTag";function c(t,n,r){return Object.defineProperty(t,n,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[n]}try{c({},"")}catch(t){c=function(t,n,r){return t[n]=r}}function a(t,n,r,e){var i=n&&n.prototype instanceof l?n:l,o=Object.create(i.prototype),u=new S(e||[]);return o._invoke=function(t,n,r){var e="suspendedStart";return function(i,o){if("executing"===e)throw new Error("Generator is already running");if("completed"===e){if("throw"===i)throw o;return O()}for(r.method=i,r.arg=o;;){var u=r.delegate;if(u){var c=b(u,r);if(c){if(c===s)continue;return c}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===e)throw e="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);e="executing";var a=f(t,n,r);if("normal"===a.type){if(e=r.done?"completed":"suspendedYield",a.arg===s)continue;return{value:a.arg,done:r.done}}"throw"===a.type&&(e="completed",r.method="throw",r.arg=a.arg)}}}(t,r,u),o}function f(t,n,r){try{return{type:"normal",arg:t.call(n,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=a;var s={};function l(){}function h(){}function v(){}var p={};p[i]=function(){return this};var y=Object.getPrototypeOf,g=y&&y(y(E([])));g&&g!==n&&r.call(g,i)&&(p=g);var d=v.prototype=l.prototype=Object.create(p);function x(t){["next","throw","return"].forEach((function(n){c(t,n,(function(t){return this._invoke(n,t)}))}))}function m(t,n){var e;this._invoke=function(i,o){function u(){return new n((function(e,u){!function e(i,o,u,c){var a=f(t[i],t,o);if("throw"!==a.type){var s=a.arg,l=s.value;return l&&"object"==typeof l&&r.call(l,"__await")?n.resolve(l.__await).then((function(t){e("next",t,u,c)}),(function(t){e("throw",t,u,c)})):n.resolve(l).then((function(t){s.value=t,u(s)}),(function(t){return e("throw",t,u,c)}))}c(a.arg)}(i,o,e,u)}))}return e=e?e.then(u,u):u()}}function b(t,n){var r=t.iterator[n.method];if(void 0===r){if(n.delegate=null,"throw"===n.method){if(t.iterator.return&&(n.method="return",n.arg=void 0,b(t,n),"throw"===n.method))return s;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return s}var e=f(r,t.iterator,n.arg);if("throw"===e.type)return n.method="throw",n.arg=e.arg,n.delegate=null,s;var i=e.arg;return i?i.done?(n[t.resultName]=i.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=void 0),n.delegate=null,s):i:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,s)}function w(t){var n={tryLoc:t[0]};1 in t&&(n.catchLoc=t[1]),2 in t&&(n.finallyLoc=t[2],n.afterLoc=t[3]),this.tryEntries.push(n)}function F(t){var n=t.completion||{};n.type="normal",delete n.arg,t.completion=n}function S(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(w,this),this.reset(!0)}function E(t){if(t){var n=t[i];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var e=-1,o=function n(){for(;++e<t.length;)if(r.call(t,e))return n.value=t[e],n.done=!1,n;return n.value=void 0,n.done=!0,n};return o.next=o}}return{next:O}}function O(){return{value:void 0,done:!0}}return h.prototype=d.constructor=v,v.constructor=h,h.displayName=c(v,u,"GeneratorFunction"),t.isGeneratorFunction=function(t){var n="function"==typeof t&&t.constructor;return!!n&&(n===h||"GeneratorFunction"===(n.displayName||n.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,v):(t.__proto__=v,c(t,u,"GeneratorFunction")),t.prototype=Object.create(d),t},t.awrap=function(t){return{__await:t}},x(m.prototype),m.prototype[o]=function(){return this},t.AsyncIterator=m,t.async=function(n,r,e,i,o){void 0===o&&(o=Promise);var u=new m(a(n,r,e,i),o);return t.isGeneratorFunction(r)?u:u.next().then((function(t){return t.done?t.value:u.next()}))},x(d),c(d,u,"Generator"),d[i]=function(){return this},d.toString=function(){return"[object Generator]"},t.keys=function(t){var n=[];for(var r in t)n.push(r);return n.reverse(),function r(){for(;n.length;){var e=n.pop();if(e in t)return r.value=e,r.done=!1,r}return r.done=!0,r}},t.values=E,S.prototype={constructor:S,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(F),!t)for(var n in this)"t"===n.charAt(0)&&r.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var n=this;function e(r,e){return u.type="throw",u.arg=t,n.next=r,e&&(n.method="next",n.arg=void 0),!!e}for(var i=this.tryEntries.length-1;i>=0;--i){var o=this.tryEntries[i],u=o.completion;if("root"===o.tryLoc)return e("end");if(o.tryLoc<=this.prev){var c=r.call(o,"catchLoc"),a=r.call(o,"finallyLoc");if(c&&a){if(this.prev<o.catchLoc)return e(o.catchLoc,!0);if(this.prev<o.finallyLoc)return e(o.finallyLoc)}else if(c){if(this.prev<o.catchLoc)return e(o.catchLoc,!0)}else{if(!a)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return e(o.finallyLoc)}}}},abrupt:function(t,n){for(var e=this.tryEntries.length-1;e>=0;--e){var i=this.tryEntries[e];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var o=i;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=n&&n<=o.finallyLoc&&(o=null);var u=o?o.completion:{};return u.type=t,u.arg=n,o?(this.method="next",this.next=o.finallyLoc,s):this.complete(u)},complete:function(t,n){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&n&&(this.next=n),s},finish:function(t){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),F(r),s}},catch:function(t){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.tryLoc===t){var e=r.completion;if("throw"===e.type){var i=e.arg;F(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:E(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=void 0),s}},t}(t.exports);try{regeneratorRuntime=e}catch(t){Function("r","regeneratorRuntime = r")(e)}},lvtm:function(t,n){t.exports=Math.sign||function(t){return 0==(t=+t)||t!=t?t:t<0?-1:1}},m0Pp:function(t,n,r){var e=r("2OiF");t.exports=function(t,n,r){if(e(t),void 0===n)return t;switch(r){case 1:return function(r){return t.call(n,r)};case 2:return function(r,e){return t.call(n,r,e)};case 3:return function(r,e,i){return t.call(n,r,e,i)}}return function(){return t.apply(n,arguments)}}},mGWK:function(t,n,r){"use strict";var e=r("XKFU"),i=r("aCFj"),o=r("RYi7"),u=r("ne8i"),c=[].lastIndexOf,a=!!c&&1/[1].lastIndexOf(1,-0)<0;e(e.P+e.F*(a||!r("LyE8")(c)),"Array",{lastIndexOf:function(t){if(a)return c.apply(this,arguments)||0;var n=i(this),r=u(n.length),e=r-1;for(arguments.length>1&&(e=Math.min(e,o(arguments[1]))),e<0&&(e=r+e);e>=0;e--)if(e in n&&n[e]===t)return e||0;return-1}})},mQtv:function(t,n,r){var e=r("kJMx"),i=r("JiEa"),o=r("y3w9"),u=r("dyZX").Reflect;t.exports=u&&u.ownKeys||function(t){var n=e.f(o(t)),r=i.f;return r?n.concat(r(t)):n}},mYba:function(t,n,r){var e=r("aCFj"),i=r("EemH").f;r("Xtr8")("getOwnPropertyDescriptor",(function(){return function(t,n){return i(e(t),n)}}))},mura:function(t,n,r){var e=r("0/R4"),i=r("Z6vF").onFreeze;r("Xtr8")("preventExtensions",(function(t){return function(n){return t&&e(n)?t(i(n)):n}}))},nBIS:function(t,n,r){var e=r("0/R4"),i=Math.floor;t.exports=function(t){return!e(t)&&isFinite(t)&&i(t)===t}},nCnK:function(t,n,r){r("7DDg")("Uint32",4,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},nGyu:function(t,n,r){var e=r("K0xU")("unscopables"),i=Array.prototype;null==i[e]&&r("Mukb")(i,e,{}),t.exports=function(t){i[e][t]=!0}},nICZ:function(t,n){t.exports=function(t){try{return{e:!1,v:t()}}catch(t){return{e:!0,v:t}}}},nIY7:function(t,n,r){"use strict";r("OGtf")("big",(function(t){return function(){return t(this,"big","","")}}))},ne8i:function(t,n,r){var e=r("RYi7"),i=Math.min;t.exports=function(t){return t>0?i(e(t),9007199254740991):0}},nh4g:function(t,n,r){t.exports=!r("eeVq")((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},nsiH:function(t,n,r){"use strict";r("OGtf")("fontsize",(function(t){return function(n){return t(this,"font","size",n)}}))},nzyx:function(t,n,r){var e=r("XKFU"),i=r("LVwc");e(e.S+e.F*(i!=Math.expm1),"Math",{expm1:i})},oDIu:function(t,n,r){"use strict";var e=r("XKFU"),i=r("AvRE")(!1);e(e.P,"String",{codePointAt:function(t){return i(this,t)}})},"oZ/O":function(t,n,r){var e=r("XKFU"),i=r("y3w9"),o=Object.preventExtensions;e(e.S,"Reflect",{preventExtensions:function(t){i(t);try{return o&&o(t),!0}catch(t){return!1}}})},ol8x:function(t,n,r){var e=r("dyZX").navigator;t.exports=e&&e.userAgent||""},pIFo:function(t,n,r){"use strict";var e=r("y3w9"),i=r("S/j/"),o=r("ne8i"),u=r("RYi7"),c=r("A5AN"),a=r("Xxuz"),f=Math.max,s=Math.min,l=Math.floor,h=/\$([$&`']|\d\d?|<[^>]*>)/g,v=/\$([$&`']|\d\d?)/g;r("IU+Z")("replace",2,(function(t,n,r,p){return[function(e,i){var o=t(this),u=null==e?void 0:e[n];return void 0!==u?u.call(e,o,i):r.call(String(o),e,i)},function(t,n){var i=p(r,t,this,n);if(i.done)return i.value;var l=e(t),h=String(this),v="function"==typeof n;v||(n=String(n));var g=l.global;if(g){var d=l.unicode;l.lastIndex=0}for(var x=[];;){var m=a(l,h);if(null===m)break;if(x.push(m),!g)break;""===String(m[0])&&(l.lastIndex=c(h,o(l.lastIndex),d))}for(var b,w="",F=0,S=0;S<x.length;S++){m=x[S];for(var E=String(m[0]),O=f(s(u(m.index),h.length),0),U=[],_=1;_<m.length;_++)U.push(void 0===(b=m[_])?b:String(b));var P=m.groups;if(v){var M=[E].concat(U,O,h);void 0!==P&&M.push(P);var K=String(n.apply(void 0,M))}else K=y(E,h,O,U,P,n);O>=F&&(w+=h.slice(F,O)+K,F=O+E.length)}return w+h.slice(F)}];function y(t,n,e,o,u,c){var a=e+t.length,f=o.length,s=v;return void 0!==u&&(u=i(u),s=h),r.call(c,s,(function(r,i){var c;switch(i.charAt(0)){case"$":return"$";case"&":return t;case"`":return n.slice(0,e);case"'":return n.slice(a);case"<":c=u[i.slice(1,-1)];break;default:var s=+i;if(0===s)return r;if(s>f){var h=l(s/10);return 0===h?r:h<=f?void 0===o[h-1]?i.charAt(1):o[h-1]+i.charAt(1):r}c=o[s-1]}return void 0===c?"":c}))}}))},pbhE:function(t,n,r){"use strict";var e=r("2OiF");function i(t){var n,r;this.promise=new t((function(t,e){if(void 0!==n||void 0!==r)throw TypeError("Bad Promise constructor");n=t,r=e})),this.resolve=e(n),this.reject=e(r)}t.exports.f=function(t){return new i(t)}},"pp/T":function(t,n,r){var e=r("XKFU");e(e.S,"Math",{log2:function(t){return Math.log(t)/Math.LN2}})},qncB:function(t,n,r){var e=r("XKFU"),i=r("vhPU"),o=r("eeVq"),u=r("/e88"),c="["+u+"]",a=RegExp("^"+c+c+"*"),f=RegExp(c+c+"*$"),s=function(t,n,r){var i={},c=o((function(){return!!u[t]()||"
"!="
"[t]()})),a=i[t]=c?n(l):u[t];r&&(i[r]=a),e(e.P+e.F*c,"String",i)},l=s.trim=function(t,n){return t=String(i(t)),1&n&&(t=t.replace(a,"")),2&n&&(t=t.replace(f,"")),t};t.exports=s},quPj:function(t,n,r){var e=r("0/R4"),i=r("LZWt"),o=r("K0xU")("match");t.exports=function(t){var n;return e(t)&&(void 0!==(n=t[o])?!!n:"RegExp"==i(t))}},r1bV:function(t,n,r){r("7DDg")("Uint16",2,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},rE2o:function(t,n,r){r("OnI7")("asyncIterator")},rGqo:function(t,n,r){for(var e=r("yt8O"),i=r("DVgA"),o=r("KroJ"),u=r("dyZX"),c=r("Mukb"),a=r("hPIQ"),f=r("K0xU"),s=f("iterator"),l=f("toStringTag"),h=a.Array,v={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},p=i(v),y=0;y<p.length;y++){var g,d=p[y],x=v[d],m=u[d],b=m&&m.prototype;if(b&&(b[s]||c(b,s,h),b[l]||c(b,l,d),a[d]=h,x))for(g in e)b[g]||o(b,g,e[g],!0)}},rr1i:function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},rvZc:function(t,n,r){"use strict";var e=r("XKFU"),i=r("ne8i"),o=r("0sh+"),u="".endsWith;e(e.P+e.F*r("UUeW")("endsWith"),"String",{endsWith:function(t){var n=o(this,t,"endsWith"),r=arguments.length>1?arguments[1]:void 0,e=i(n.length),c=void 0===r?e:Math.min(i(r),e),a=String(t);return u?u.call(n,a,c):n.slice(c-a.length,c)===a}})},s5qY:function(t,n,r){var e=r("0/R4");t.exports=function(t,n){if(!e(t)||t._t!==n)throw TypeError("Incompatible receiver, "+n+" required!");return t}},sFw1:function(t,n,r){r("7DDg")("Int8",1,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},sMXx:function(t,n,r){"use strict";var e=r("Ugos");r("XKFU")({target:"RegExp",proto:!0,forced:e!==/./.exec},{exec:e})},sbF8:function(t,n,r){var e=r("XKFU"),i=r("nBIS"),o=Math.abs;e(e.S,"Number",{isSafeInteger:function(t){return i(t)&&o(t)<=9007199254740991}})},tUrg:function(t,n,r){"use strict";r("OGtf")("link",(function(t){return function(n){return t(this,"a","href",n)}}))},tuSo:function(t,n,r){r("7DDg")("Int32",4,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},"tyy+":function(t,n,r){var e=r("XKFU"),i=r("11IZ");e(e.G+e.F*(parseFloat!=i),{parseFloat:i})},uhZd:function(t,n,r){var e=r("XKFU"),i=r("EemH").f,o=r("y3w9");e(e.S,"Reflect",{deleteProperty:function(t,n){var r=i(o(t),n);return!(r&&!r.configurable)&&delete t[n]}})},upKx:function(t,n,r){"use strict";var e=r("S/j/"),i=r("d/Gc"),o=r("ne8i");t.exports=[].copyWithin||function(t,n){var r=e(this),u=o(r.length),c=i(t,u),a=i(n,u),f=arguments.length>2?arguments[2]:void 0,s=Math.min((void 0===f?u:i(f,u))-a,u-c),l=1;for(a<c&&c<a+s&&(l=-1,a+=s-1,c+=s-1);s-- >0;)a in r?r[c]=r[a]:delete r[c],c+=l,a+=l;return r}},vKrd:function(t,n,r){var e=r("y3w9"),i=r("0/R4"),o=r("pbhE");t.exports=function(t,n){if(e(t),i(n)&&n.constructor===t)return n;var r=o.f(t);return(0,r.resolve)(n),r.promise}},vhPU:function(t,n){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},vvmO:function(t,n,r){var e=r("LZWt");t.exports=function(t,n){if("number"!=typeof t&&"Number"!=e(t))throw TypeError(n);return+t}},w2a5:function(t,n,r){var e=r("aCFj"),i=r("ne8i"),o=r("d/Gc");t.exports=function(t){return function(n,r,u){var c,a=e(n),f=i(a.length),s=o(u,f);if(t&&r!=r){for(;f>s;)if((c=a[s++])!=c)return!0}else for(;f>s;s++)if((t||s in a)&&a[s]===r)return t||s||0;return!t&&-1}}},wCsR:function(t,n,r){"use strict";var e=r("ZD67"),i=r("s5qY");r("4LiD")("WeakSet",(function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}}),{add:function(t){return e.def(i(this,"WeakSet"),t,!0)}},e,!1,!0)},wDwx:function(t,n,r){r("rE2o"),t.exports=r("N8g3").f("asyncIterator")},wYy3:function(t,n,r){r("9XZr"),t.exports=r("g3g5").String.padStart},wmvG:function(t,n,r){"use strict";var e=r("hswa").f,i=r("Kuth"),o=r("3Lyj"),u=r("m0Pp"),c=r("9gX7"),a=r("SlkY"),f=r("Afnz"),s=r("1TsA"),l=r("elZq"),h=r("nh4g"),v=r("Z6vF").fastKey,p=r("s5qY"),y=h?"_s":"size",g=function(t,n){var r,e=v(n);if("F"!==e)return t._i[e];for(r=t._f;r;r=r.n)if(r.k==n)return r};t.exports={getConstructor:function(t,n,r,f){var s=t((function(t,e){c(t,s,n,"_i"),t._t=n,t._i=i(null),t._f=void 0,t._l=void 0,t[y]=0,null!=e&&a(e,r,t[f],t)}));return o(s.prototype,{clear:function(){for(var t=p(this,n),r=t._i,e=t._f;e;e=e.n)e.r=!0,e.p&&(e.p=e.p.n=void 0),delete r[e.i];t._f=t._l=void 0,t[y]=0},delete:function(t){var r=p(this,n),e=g(r,t);if(e){var i=e.n,o=e.p;delete r._i[e.i],e.r=!0,o&&(o.n=i),i&&(i.p=o),r._f==e&&(r._f=i),r._l==e&&(r._l=o),r[y]--}return!!e},forEach:function(t){p(this,n);for(var r,e=u(t,arguments.length>1?arguments[1]:void 0,3);r=r?r.n:this._f;)for(e(r.v,r.k,this);r&&r.r;)r=r.p},has:function(t){return!!g(p(this,n),t)}}),h&&e(s.prototype,"size",{get:function(){return p(this,n)[y]}}),s},def:function(t,n,r){var e,i,o=g(t,n);return o?o.v=r:(t._l=o={i:i=v(n,!0),k:n,v:r,p:e=t._l,n:void 0,r:!1},t._f||(t._f=o),e&&(e.n=o),t[y]++,"F"!==i&&(t._i[i]=o)),t},getEntry:g,setStrong:function(t,n,r){f(t,n,(function(t,r){this._t=p(t,n),this._k=r,this._l=void 0}),(function(){for(var t=this._k,n=this._l;n&&n.r;)n=n.p;return this._t&&(this._l=n=n?n.n:this._t._f)?s(0,"keys"==t?n.k:"values"==t?n.v:[n.k,n.v]):(this._t=void 0,s(1))}),r?"entries":"values",!r,!0),l(n)}}},x8Yj:function(t,n,r){var e=r("XKFU"),i=r("LVwc"),o=Math.exp;e(e.S,"Math",{tanh:function(t){var n=i(t=+t),r=i(-t);return n==1/0?1:r==1/0?-1:(n-r)/(o(t)+o(-t))}})},x8ZO:function(t,n,r){var e=r("XKFU"),i=Math.abs;e(e.S,"Math",{hypot:function(t,n){for(var r,e,o=0,u=0,c=arguments.length,a=0;u<c;)a<(r=i(arguments[u++]))?(o=o*(e=a/r)*e+1,a=r):o+=r>0?(e=r/a)*e:r;return a===1/0?1/0:a*Math.sqrt(o)}})},"xF/b":function(t,n,r){"use strict";var e=r("EWmC"),i=r("0/R4"),o=r("ne8i"),u=r("m0Pp"),c=r("K0xU")("isConcatSpreadable");t.exports=function t(n,r,a,f,s,l,h,v){for(var p,y,g=s,d=0,x=!!h&&u(h,v,3);d<f;){if(d in a){if(p=x?x(a[d],d,r):a[d],y=!1,i(p)&&(y=void 0!==(y=p[c])?!!y:e(p)),y&&l>0)g=t(n,r,p,o(p.length),g,l-1)-1;else{if(g>=9007199254740991)throw TypeError();n[g]=p}g++}d++}return g}},xfY5:function(t,n,r){"use strict";var e=r("dyZX"),i=r("aagx"),o=r("LZWt"),u=r("Xbzi"),c=r("apmT"),a=r("eeVq"),f=r("kJMx").f,s=r("EemH").f,l=r("hswa").f,h=r("qncB").trim,v=e.Number,p=v,y=v.prototype,g="Number"==o(r("Kuth")(y)),d="trim"in String.prototype,x=function(t){var n=c(t,!1);if("string"==typeof n&&n.length>2){var r,e,i,o=(n=d?n.trim():h(n,3)).charCodeAt(0);if(43===o||45===o){if(88===(r=n.charCodeAt(2))||120===r)return NaN}else if(48===o){switch(n.charCodeAt(1)){case 66:case 98:e=2,i=49;break;case 79:case 111:e=8,i=55;break;default:return+n}for(var u,a=n.slice(2),f=0,s=a.length;f<s;f++)if((u=a.charCodeAt(f))<48||u>i)return NaN;return parseInt(a,e)}}return+n};if(!v(" 0o1")||!v("0b1")||v("+0x1")){v=function(t){var n=arguments.length<1?0:t,r=this;return r instanceof v&&(g?a((function(){y.valueOf.call(r)})):"Number"!=o(r))?u(new p(x(n)),r,v):x(n)};for(var m,b=r("nh4g")?f(p):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),w=0;b.length>w;w++)i(p,m=b[w])&&!i(v,m)&&l(v,m,s(p,m));v.prototype=y,y.constructor=v,r("KroJ")(e,"Number",v)}},xm80:function(t,n,r){"use strict";var e=r("XKFU"),i=r("D4iV"),o=r("7Qtz"),u=r("y3w9"),c=r("d/Gc"),a=r("ne8i"),f=r("0/R4"),s=r("dyZX").ArrayBuffer,l=r("69bn"),h=o.ArrayBuffer,v=o.DataView,p=i.ABV&&s.isView,y=h.prototype.slice,g=i.VIEW;e(e.G+e.W+e.F*(s!==h),{ArrayBuffer:h}),e(e.S+e.F*!i.CONSTR,"ArrayBuffer",{isView:function(t){return p&&p(t)||f(t)&&g in t}}),e(e.P+e.U+e.F*r("eeVq")((function(){return!new h(2).slice(1,void 0).byteLength})),"ArrayBuffer",{slice:function(t,n){if(void 0!==y&&void 0===n)return y.call(u(this),t);for(var r=u(this).byteLength,e=c(t,r),i=c(void 0===n?r:n,r),o=new(l(this,h))(a(i-e)),f=new v(this),s=new v(o),p=0;e<i;)s.setUint8(p++,f.getUint8(e++));return o}}),r("elZq")("ArrayBuffer")},xpiv:function(t,n,r){var e=r("XKFU");e(e.S,"Reflect",{ownKeys:r("mQtv")})},xpql:function(t,n,r){t.exports=!r("nh4g")&&!r("eeVq")((function(){return 7!=Object.defineProperty(r("Iw71")("div"),"a",{get:function(){return 7}}).a}))},y3w9:function(t,n,r){var e=r("0/R4");t.exports=function(t){if(!e(t))throw TypeError(t+" is not an object!");return t}},yM4b:function(t,n,r){var e=r("K0xU")("toPrimitive"),i=Date.prototype;e in i||r("Mukb")(i,e,r("g4EE"))},ylqs:function(t,n){var r=0,e=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++r+e).toString(36))}},yt8O:function(t,n,r){"use strict";var e=r("nGyu"),i=r("1TsA"),o=r("hPIQ"),u=r("aCFj");t.exports=r("Afnz")(Array,"Array",(function(t,n){this._t=u(t),this._i=0,this._k=n}),(function(){var t=this._t,n=this._k,r=this._i++;return!t||r>=t.length?(this._t=void 0,i(1)):i(0,"keys"==n?r:"values"==n?t[r]:[r,t[r]])}),"values"),o.Arguments=o.Array,e("keys"),e("values"),e("entries")},z2o2:function(t,n,r){var e=r("0/R4"),i=r("Z6vF").onFreeze;r("Xtr8")("seal",(function(t){return function(n){return t&&e(n)?t(i(n)):n}}))},zFFn:function(t,n,r){r("hhXQ"),t.exports=r("g3g5").Object.values},zRwo:function(t,n,r){var e=r("6FMO");t.exports=function(t,n){return new(e(t))(n)}},zhAb:function(t,n,r){var e=r("aagx"),i=r("aCFj"),o=r("w2a5")(!1),u=r("YTvA")("IE_PROTO");t.exports=function(t,n){var r,c=i(t),a=0,f=[];for(r in c)r!=u&&e(c,r)&&f.push(r);for(;n.length>a;)e(c,r=n[a++])&&(~o(f,r)||f.push(r));return f}}});
|
1 |
+
!function(t){var n={};function r(e){if(n[e])return n[e].exports;var i=n[e]={i:e,l:!1,exports:{}};return t[e].call(i.exports,i,i.exports,r),i.l=!0,i.exports}r.m=t,r.c=n,r.d=function(t,n,e){r.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:e})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,n){if(1&n&&(t=r(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(r.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var i in t)r.d(e,i,function(n){return t[n]}.bind(null,i));return e},r.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(n,"a",n),n},r.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},r.p="/public/js/",r(r.s="55Il")}({"+Xmh":function(t,n,r){r("jm62"),t.exports=r("g3g5").Object.getOwnPropertyDescriptors},"+auO":function(t,n,r){var e=r("XKFU"),i=r("lvtm");e(e.S,"Math",{cbrt:function(t){return i(t=+t)*Math.pow(Math.abs(t),1/3)}})},"+lvF":function(t,n,r){t.exports=r("VTer")("native-function-to-string",Function.toString)},"+oPb":function(t,n,r){"use strict";r("OGtf")("blink",(function(t){return function(){return t(this,"blink","","")}}))},"+rLv":function(t,n,r){var e=r("dyZX").document;t.exports=e&&e.documentElement},"/8Fb":function(t,n,r){var e=r("XKFU"),i=r("UExd")(!0);e(e.S,"Object",{entries:function(t){return i(t)}})},"/KAi":function(t,n,r){var e=r("XKFU"),i=r("dyZX").isFinite;e(e.S,"Number",{isFinite:function(t){return"number"==typeof t&&i(t)}})},"/SS/":function(t,n,r){var e=r("XKFU");e(e.S,"Object",{setPrototypeOf:r("i5dc").set})},"/e88":function(t,n){t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},"0/R4":function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},"0E+W":function(t,n,r){r("elZq")("Array")},"0LDn":function(t,n,r){"use strict";r("OGtf")("italics",(function(t){return function(){return t(this,"i","","")}}))},"0YWM":function(t,n,r){var e=r("EemH"),i=r("OP3Y"),o=r("aagx"),u=r("XKFU"),c=r("0/R4"),a=r("y3w9");u(u.S,"Reflect",{get:function t(n,r){var u,f,s=arguments.length<3?n:arguments[2];return a(n)===s?n[r]:(u=e.f(n,r))?o(u,"value")?u.value:void 0!==u.get?u.get.call(s):void 0:c(f=i(n))?t(f,r,s):void 0}})},"0l/t":function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(2);e(e.P+e.F*!r("LyE8")([].filter,!0),"Array",{filter:function(t){return i(this,t,arguments[1])}})},"0mN4":function(t,n,r){"use strict";r("OGtf")("fixed",(function(t){return function(){return t(this,"tt","","")}}))},"0sh+":function(t,n,r){var e=r("quPj"),i=r("vhPU");t.exports=function(t,n,r){if(e(n))throw TypeError("String#"+r+" doesn't accept regex!");return String(i(t))}},"11IZ":function(t,n,r){var e=r("dyZX").parseFloat,i=r("qncB").trim;t.exports=1/e(r("/e88")+"-0")!=-1/0?function(t){var n=i(String(t),3),r=e(n);return 0===r&&"-"==n.charAt(0)?-0:r}:e},"1MBn":function(t,n,r){var e=r("DVgA"),i=r("JiEa"),o=r("UqcF");t.exports=function(t){var n=e(t),r=i.f;if(r)for(var u,c=r(t),a=o.f,f=0;c.length>f;)a.call(t,u=c[f++])&&n.push(u);return n}},"1TsA":function(t,n){t.exports=function(t,n){return{value:n,done:!!t}}},"1sa7":function(t,n){t.exports=Math.log1p||function(t){return(t=+t)>-1e-8&&t<1e-8?t-t*t/2:Math.log(1+t)}},"25dN":function(t,n,r){var e=r("XKFU");e(e.S,"Object",{is:r("g6HL")})},"2GTP":function(t,n,r){var e=r("eaoh");t.exports=function(t,n,r){if(e(t),void 0===n)return t;switch(r){case 1:return function(r){return t.call(n,r)};case 2:return function(r,e){return t.call(n,r,e)};case 3:return function(r,e,i){return t.call(n,r,e,i)}}return function(){return t.apply(n,arguments)}}},"2OiF":function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},"2Spj":function(t,n,r){var e=r("XKFU");e(e.P,"Function",{bind:r("8MEG")})},"2atp":function(t,n,r){var e=r("XKFU"),i=Math.atanh;e(e.S+e.F*!(i&&1/i(-0)<0),"Math",{atanh:function(t){return 0==(t=+t)?t:Math.log((1+t)/(1-t))/2}})},"2faE":function(t,n,r){var e=r("5K7Z"),i=r("eUtF"),o=r("G8Mo"),u=Object.defineProperty;n.f=r("jmDH")?Object.defineProperty:function(t,n,r){if(e(t),n=o(n,!0),e(r),i)try{return u(t,n,r)}catch(t){}if("get"in r||"set"in r)throw TypeError("Accessors not supported!");return"value"in r&&(t[n]=r.value),t}},"3Lyj":function(t,n,r){var e=r("KroJ");t.exports=function(t,n,r){for(var i in n)e(t,i,n[i],r);return t}},"3xty":function(t,n,r){var e=r("XKFU"),i=r("2OiF"),o=r("y3w9"),u=(r("dyZX").Reflect||{}).apply,c=Function.apply;e(e.S+e.F*!r("eeVq")((function(){u((function(){}))})),"Reflect",{apply:function(t,n,r){var e=i(t),a=o(r);return u?u(e,n,a):c.call(e,n,a)}})},"4LiD":function(t,n,r){"use strict";var e=r("dyZX"),i=r("XKFU"),o=r("KroJ"),u=r("3Lyj"),c=r("Z6vF"),a=r("SlkY"),f=r("9gX7"),s=r("0/R4"),l=r("eeVq"),h=r("XMVh"),v=r("fyDq"),p=r("Xbzi");t.exports=function(t,n,r,y,g,d){var x=e[t],m=x,b=g?"set":"add",w=m&&m.prototype,F={},S=function(t){var n=w[t];o(w,t,"delete"==t||"has"==t?function(t){return!(d&&!s(t))&&n.call(this,0===t?0:t)}:"get"==t?function(t){return d&&!s(t)?void 0:n.call(this,0===t?0:t)}:"add"==t?function(t){return n.call(this,0===t?0:t),this}:function(t,r){return n.call(this,0===t?0:t,r),this})};if("function"==typeof m&&(d||w.forEach&&!l((function(){(new m).entries().next()})))){var E=new m,O=E[b](d?{}:-0,1)!=E,U=l((function(){E.has(1)})),_=h((function(t){new m(t)})),P=!d&&l((function(){for(var t=new m,n=5;n--;)t[b](n,n);return!t.has(-0)}));_||((m=n((function(n,r){f(n,m,t);var e=p(new x,n,m);return null!=r&&a(r,g,e[b],e),e}))).prototype=w,w.constructor=m),(U||P)&&(S("delete"),S("has"),g&&S("get")),(P||O)&&S(b),d&&w.clear&&delete w.clear}else m=y.getConstructor(n,t,g,b),u(m.prototype,r),c.NEED=!0;return v(m,t),F[t]=m,i(i.G+i.W+i.F*(m!=x),F),d||y.setStrong(m,t,g),m}},"4R4u":function(t,n){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},"55Il":function(t,n,r){"use strict";r("g2aq");var e,i=(e=r("VsWn"))&&e.__esModule?e:{default:e};i.default._babelPolyfill&&"undefined"!=typeof console&&console.warn&&console.warn("@babel/polyfill is loaded more than once on this page. This is probably not desirable/intended and may have consequences if different versions of the polyfills are applied sequentially. If you do need to load the polyfill more than once, use @babel/polyfill/noConflict instead to bypass the warning."),i.default._babelPolyfill=!0},"5K7Z":function(t,n,r){var e=r("93I4");t.exports=function(t){if(!e(t))throw TypeError(t+" is not an object!");return t}},"5Pf0":function(t,n,r){var e=r("S/j/"),i=r("OP3Y");r("Xtr8")("getPrototypeOf",(function(){return function(t){return i(e(t))}}))},"5T2Y":function(t,n){var r=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=r)},"694e":function(t,n,r){var e=r("EemH"),i=r("XKFU"),o=r("y3w9");i(i.S,"Reflect",{getOwnPropertyDescriptor:function(t,n){return e.f(o(t),n)}})},"69bn":function(t,n,r){var e=r("y3w9"),i=r("2OiF"),o=r("K0xU")("species");t.exports=function(t,n){var r,u=e(t).constructor;return void 0===u||null==(r=e(u)[o])?n:i(r)}},"6AQ9":function(t,n,r){"use strict";var e=r("XKFU"),i=r("8a7r");e(e.S+e.F*r("eeVq")((function(){function t(){}return!(Array.of.call(t)instanceof t)})),"Array",{of:function(){for(var t=0,n=arguments.length,r=new("function"==typeof this?this:Array)(n);n>t;)i(r,t,arguments[t++]);return r.length=n,r}})},"6FMO":function(t,n,r){var e=r("0/R4"),i=r("EWmC"),o=r("K0xU")("species");t.exports=function(t){var n;return i(t)&&("function"!=typeof(n=t.constructor)||n!==Array&&!i(n.prototype)||(n=void 0),e(n)&&null===(n=n[o])&&(n=void 0)),void 0===n?Array:n}},"6VaU":function(t,n,r){"use strict";var e=r("XKFU"),i=r("xF/b"),o=r("S/j/"),u=r("ne8i"),c=r("2OiF"),a=r("zRwo");e(e.P,"Array",{flatMap:function(t){var n,r,e=o(this);return c(t),n=u(e.length),r=a(e,0),i(r,e,e,n,0,1,t,arguments[1]),r}}),r("nGyu")("flatMap")},"7DDg":function(t,n,r){"use strict";if(r("nh4g")){var e=r("LQAc"),i=r("dyZX"),o=r("eeVq"),u=r("XKFU"),c=r("D4iV"),a=r("7Qtz"),f=r("m0Pp"),s=r("9gX7"),l=r("RjD/"),h=r("Mukb"),v=r("3Lyj"),p=r("RYi7"),y=r("ne8i"),g=r("Cfrj"),d=r("d/Gc"),x=r("apmT"),m=r("aagx"),b=r("I8a+"),w=r("0/R4"),F=r("S/j/"),S=r("M6Qj"),E=r("Kuth"),O=r("OP3Y"),U=r("kJMx").f,_=r("J+6e"),P=r("ylqs"),M=r("K0xU"),K=r("CkkT"),j=r("w2a5"),X=r("69bn"),A=r("yt8O"),I=r("hPIQ"),T=r("XMVh"),L=r("elZq"),R=r("Nr18"),N=r("upKx"),k=r("hswa"),D=r("EemH"),V=k.f,C=D.f,q=i.RangeError,Z=i.TypeError,W=i.Uint8Array,G=Array.prototype,Y=a.ArrayBuffer,B=a.DataView,z=K(0),J=K(2),H=K(3),Q=K(4),$=K(5),tt=K(6),nt=j(!0),rt=j(!1),et=A.values,it=A.keys,ot=A.entries,ut=G.lastIndexOf,ct=G.reduce,at=G.reduceRight,ft=G.join,st=G.sort,lt=G.slice,ht=G.toString,vt=G.toLocaleString,pt=M("iterator"),yt=M("toStringTag"),gt=P("typed_constructor"),dt=P("def_constructor"),xt=c.CONSTR,mt=c.TYPED,bt=c.VIEW,wt=K(1,(function(t,n){return Ut(X(t,t[dt]),n)})),Ft=o((function(){return 1===new W(new Uint16Array([1]).buffer)[0]})),St=!!W&&!!W.prototype.set&&o((function(){new W(1).set({})})),Et=function(t,n){var r=p(t);if(r<0||r%n)throw q("Wrong offset!");return r},Ot=function(t){if(w(t)&&mt in t)return t;throw Z(t+" is not a typed array!")},Ut=function(t,n){if(!w(t)||!(gt in t))throw Z("It is not a typed array constructor!");return new t(n)},_t=function(t,n){return Pt(X(t,t[dt]),n)},Pt=function(t,n){for(var r=0,e=n.length,i=Ut(t,e);e>r;)i[r]=n[r++];return i},Mt=function(t,n,r){V(t,n,{get:function(){return this._d[r]}})},Kt=function(t){var n,r,e,i,o,u,c=F(t),a=arguments.length,s=a>1?arguments[1]:void 0,l=void 0!==s,h=_(c);if(null!=h&&!S(h)){for(u=h.call(c),e=[],n=0;!(o=u.next()).done;n++)e.push(o.value);c=e}for(l&&a>2&&(s=f(s,arguments[2],2)),n=0,r=y(c.length),i=Ut(this,r);r>n;n++)i[n]=l?s(c[n],n):c[n];return i},jt=function(){for(var t=0,n=arguments.length,r=Ut(this,n);n>t;)r[t]=arguments[t++];return r},Xt=!!W&&o((function(){vt.call(new W(1))})),At=function(){return vt.apply(Xt?lt.call(Ot(this)):Ot(this),arguments)},It={copyWithin:function(t,n){return N.call(Ot(this),t,n,arguments.length>2?arguments[2]:void 0)},every:function(t){return Q(Ot(this),t,arguments.length>1?arguments[1]:void 0)},fill:function(t){return R.apply(Ot(this),arguments)},filter:function(t){return _t(this,J(Ot(this),t,arguments.length>1?arguments[1]:void 0))},find:function(t){return $(Ot(this),t,arguments.length>1?arguments[1]:void 0)},findIndex:function(t){return tt(Ot(this),t,arguments.length>1?arguments[1]:void 0)},forEach:function(t){z(Ot(this),t,arguments.length>1?arguments[1]:void 0)},indexOf:function(t){return rt(Ot(this),t,arguments.length>1?arguments[1]:void 0)},includes:function(t){return nt(Ot(this),t,arguments.length>1?arguments[1]:void 0)},join:function(t){return ft.apply(Ot(this),arguments)},lastIndexOf:function(t){return ut.apply(Ot(this),arguments)},map:function(t){return wt(Ot(this),t,arguments.length>1?arguments[1]:void 0)},reduce:function(t){return ct.apply(Ot(this),arguments)},reduceRight:function(t){return at.apply(Ot(this),arguments)},reverse:function(){for(var t,n=Ot(this).length,r=Math.floor(n/2),e=0;e<r;)t=this[e],this[e++]=this[--n],this[n]=t;return this},some:function(t){return H(Ot(this),t,arguments.length>1?arguments[1]:void 0)},sort:function(t){return st.call(Ot(this),t)},subarray:function(t,n){var r=Ot(this),e=r.length,i=d(t,e);return new(X(r,r[dt]))(r.buffer,r.byteOffset+i*r.BYTES_PER_ELEMENT,y((void 0===n?e:d(n,e))-i))}},Tt=function(t,n){return _t(this,lt.call(Ot(this),t,n))},Lt=function(t){Ot(this);var n=Et(arguments[1],1),r=this.length,e=F(t),i=y(e.length),o=0;if(i+n>r)throw q("Wrong length!");for(;o<i;)this[n+o]=e[o++]},Rt={entries:function(){return ot.call(Ot(this))},keys:function(){return it.call(Ot(this))},values:function(){return et.call(Ot(this))}},Nt=function(t,n){return w(t)&&t[mt]&&"symbol"!=typeof n&&n in t&&String(+n)==String(n)},kt=function(t,n){return Nt(t,n=x(n,!0))?l(2,t[n]):C(t,n)},Dt=function(t,n,r){return!(Nt(t,n=x(n,!0))&&w(r)&&m(r,"value"))||m(r,"get")||m(r,"set")||r.configurable||m(r,"writable")&&!r.writable||m(r,"enumerable")&&!r.enumerable?V(t,n,r):(t[n]=r.value,t)};xt||(D.f=kt,k.f=Dt),u(u.S+u.F*!xt,"Object",{getOwnPropertyDescriptor:kt,defineProperty:Dt}),o((function(){ht.call({})}))&&(ht=vt=function(){return ft.call(this)});var Vt=v({},It);v(Vt,Rt),h(Vt,pt,Rt.values),v(Vt,{slice:Tt,set:Lt,constructor:function(){},toString:ht,toLocaleString:At}),Mt(Vt,"buffer","b"),Mt(Vt,"byteOffset","o"),Mt(Vt,"byteLength","l"),Mt(Vt,"length","e"),V(Vt,yt,{get:function(){return this[mt]}}),t.exports=function(t,n,r,a){var f=t+((a=!!a)?"Clamped":"")+"Array",l="get"+t,v="set"+t,p=i[f],d=p||{},x=p&&O(p),m=!p||!c.ABV,F={},S=p&&p.prototype,_=function(t,r){V(t,r,{get:function(){return function(t,r){var e=t._d;return e.v[l](r*n+e.o,Ft)}(this,r)},set:function(t){return function(t,r,e){var i=t._d;a&&(e=(e=Math.round(e))<0?0:e>255?255:255&e),i.v[v](r*n+i.o,e,Ft)}(this,r,t)},enumerable:!0})};m?(p=r((function(t,r,e,i){s(t,p,f,"_d");var o,u,c,a,l=0,v=0;if(w(r)){if(!(r instanceof Y||"ArrayBuffer"==(a=b(r))||"SharedArrayBuffer"==a))return mt in r?Pt(p,r):Kt.call(p,r);o=r,v=Et(e,n);var d=r.byteLength;if(void 0===i){if(d%n)throw q("Wrong length!");if((u=d-v)<0)throw q("Wrong length!")}else if((u=y(i)*n)+v>d)throw q("Wrong length!");c=u/n}else c=g(r),o=new Y(u=c*n);for(h(t,"_d",{b:o,o:v,l:u,e:c,v:new B(o)});l<c;)_(t,l++)})),S=p.prototype=E(Vt),h(S,"constructor",p)):o((function(){p(1)}))&&o((function(){new p(-1)}))&&T((function(t){new p,new p(null),new p(1.5),new p(t)}),!0)||(p=r((function(t,r,e,i){var o;return s(t,p,f),w(r)?r instanceof Y||"ArrayBuffer"==(o=b(r))||"SharedArrayBuffer"==o?void 0!==i?new d(r,Et(e,n),i):void 0!==e?new d(r,Et(e,n)):new d(r):mt in r?Pt(p,r):Kt.call(p,r):new d(g(r))})),z(x!==Function.prototype?U(d).concat(U(x)):U(d),(function(t){t in p||h(p,t,d[t])})),p.prototype=S,e||(S.constructor=p));var P=S[pt],M=!!P&&("values"==P.name||null==P.name),K=Rt.values;h(p,gt,!0),h(S,mt,f),h(S,bt,!0),h(S,dt,p),(a?new p(1)[yt]==f:yt in S)||V(S,yt,{get:function(){return f}}),F[f]=p,u(u.G+u.W+u.F*(p!=d),F),u(u.S,f,{BYTES_PER_ELEMENT:n}),u(u.S+u.F*o((function(){d.of.call(p,1)})),f,{from:Kt,of:jt}),"BYTES_PER_ELEMENT"in S||h(S,"BYTES_PER_ELEMENT",n),u(u.P,f,It),L(f),u(u.P+u.F*St,f,{set:Lt}),u(u.P+u.F*!M,f,Rt),e||S.toString==ht||(S.toString=ht),u(u.P+u.F*o((function(){new p(1).slice()})),f,{slice:Tt}),u(u.P+u.F*(o((function(){return[1,2].toLocaleString()!=new p([1,2]).toLocaleString()}))||!o((function(){S.toLocaleString.call([1,2])}))),f,{toLocaleString:At}),I[f]=M?P:K,e||M||h(S,pt,K)}}else t.exports=function(){}},"7PI8":function(t,n,r){var e=r("Y7ZC");e(e.G,{global:r("5T2Y")})},"7Qtz":function(t,n,r){"use strict";var e=r("dyZX"),i=r("nh4g"),o=r("LQAc"),u=r("D4iV"),c=r("Mukb"),a=r("3Lyj"),f=r("eeVq"),s=r("9gX7"),l=r("RYi7"),h=r("ne8i"),v=r("Cfrj"),p=r("kJMx").f,y=r("hswa").f,g=r("Nr18"),d=r("fyDq"),x=e.ArrayBuffer,m=e.DataView,b=e.Math,w=e.RangeError,F=e.Infinity,S=x,E=b.abs,O=b.pow,U=b.floor,_=b.log,P=b.LN2,M=i?"_b":"buffer",K=i?"_l":"byteLength",j=i?"_o":"byteOffset";function X(t,n,r){var e,i,o,u=new Array(r),c=8*r-n-1,a=(1<<c)-1,f=a>>1,s=23===n?O(2,-24)-O(2,-77):0,l=0,h=t<0||0===t&&1/t<0?1:0;for((t=E(t))!=t||t===F?(i=t!=t?1:0,e=a):(e=U(_(t)/P),t*(o=O(2,-e))<1&&(e--,o*=2),(t+=e+f>=1?s/o:s*O(2,1-f))*o>=2&&(e++,o/=2),e+f>=a?(i=0,e=a):e+f>=1?(i=(t*o-1)*O(2,n),e+=f):(i=t*O(2,f-1)*O(2,n),e=0));n>=8;u[l++]=255&i,i/=256,n-=8);for(e=e<<n|i,c+=n;c>0;u[l++]=255&e,e/=256,c-=8);return u[--l]|=128*h,u}function A(t,n,r){var e,i=8*r-n-1,o=(1<<i)-1,u=o>>1,c=i-7,a=r-1,f=t[a--],s=127&f;for(f>>=7;c>0;s=256*s+t[a],a--,c-=8);for(e=s&(1<<-c)-1,s>>=-c,c+=n;c>0;e=256*e+t[a],a--,c-=8);if(0===s)s=1-u;else{if(s===o)return e?NaN:f?-F:F;e+=O(2,n),s-=u}return(f?-1:1)*e*O(2,s-n)}function I(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]}function T(t){return[255&t]}function L(t){return[255&t,t>>8&255]}function R(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]}function N(t){return X(t,52,8)}function k(t){return X(t,23,4)}function D(t,n,r){y(t.prototype,n,{get:function(){return this[r]}})}function V(t,n,r,e){var i=v(+r);if(i+n>t[K])throw w("Wrong index!");var o=t[M]._b,u=i+t[j],c=o.slice(u,u+n);return e?c:c.reverse()}function C(t,n,r,e,i,o){var u=v(+r);if(u+n>t[K])throw w("Wrong index!");for(var c=t[M]._b,a=u+t[j],f=e(+i),s=0;s<n;s++)c[a+s]=f[o?s:n-s-1]}if(u.ABV){if(!f((function(){x(1)}))||!f((function(){new x(-1)}))||f((function(){return new x,new x(1.5),new x(NaN),"ArrayBuffer"!=x.name}))){for(var q,Z=(x=function(t){return s(this,x),new S(v(t))}).prototype=S.prototype,W=p(S),G=0;W.length>G;)(q=W[G++])in x||c(x,q,S[q]);o||(Z.constructor=x)}var Y=new m(new x(2)),B=m.prototype.setInt8;Y.setInt8(0,2147483648),Y.setInt8(1,2147483649),!Y.getInt8(0)&&Y.getInt8(1)||a(m.prototype,{setInt8:function(t,n){B.call(this,t,n<<24>>24)},setUint8:function(t,n){B.call(this,t,n<<24>>24)}},!0)}else x=function(t){s(this,x,"ArrayBuffer");var n=v(t);this._b=g.call(new Array(n),0),this[K]=n},m=function(t,n,r){s(this,m,"DataView"),s(t,x,"DataView");var e=t[K],i=l(n);if(i<0||i>e)throw w("Wrong offset!");if(i+(r=void 0===r?e-i:h(r))>e)throw w("Wrong length!");this[M]=t,this[j]=i,this[K]=r},i&&(D(x,"byteLength","_l"),D(m,"buffer","_b"),D(m,"byteLength","_l"),D(m,"byteOffset","_o")),a(m.prototype,{getInt8:function(t){return V(this,1,t)[0]<<24>>24},getUint8:function(t){return V(this,1,t)[0]},getInt16:function(t){var n=V(this,2,t,arguments[1]);return(n[1]<<8|n[0])<<16>>16},getUint16:function(t){var n=V(this,2,t,arguments[1]);return n[1]<<8|n[0]},getInt32:function(t){return I(V(this,4,t,arguments[1]))},getUint32:function(t){return I(V(this,4,t,arguments[1]))>>>0},getFloat32:function(t){return A(V(this,4,t,arguments[1]),23,4)},getFloat64:function(t){return A(V(this,8,t,arguments[1]),52,8)},setInt8:function(t,n){C(this,1,t,T,n)},setUint8:function(t,n){C(this,1,t,T,n)},setInt16:function(t,n){C(this,2,t,L,n,arguments[2])},setUint16:function(t,n){C(this,2,t,L,n,arguments[2])},setInt32:function(t,n){C(this,4,t,R,n,arguments[2])},setUint32:function(t,n){C(this,4,t,R,n,arguments[2])},setFloat32:function(t,n){C(this,4,t,k,n,arguments[2])},setFloat64:function(t,n){C(this,8,t,N,n,arguments[2])}});d(x,"ArrayBuffer"),d(m,"DataView"),c(m.prototype,u.VIEW,!0),n.ArrayBuffer=x,n.DataView=m},"7VC1":function(t,n,r){"use strict";var e=r("XKFU"),i=r("Lgjv"),o=r("ol8x"),u=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(o);e(e.P+e.F*u,"String",{padEnd:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0,!1)}})},"7h0T":function(t,n,r){var e=r("XKFU");e(e.S,"Number",{isNaN:function(t){return t!=t}})},"8+KV":function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(0),o=r("LyE8")([].forEach,!0);e(e.P+e.F*!o,"Array",{forEach:function(t){return i(this,t,arguments[1])}})},"84bF":function(t,n,r){"use strict";r("OGtf")("small",(function(t){return function(){return t(this,"small","","")}}))},"8MEG":function(t,n,r){"use strict";var e=r("2OiF"),i=r("0/R4"),o=r("MfQN"),u=[].slice,c={},a=function(t,n,r){if(!(n in c)){for(var e=[],i=0;i<n;i++)e[i]="a["+i+"]";c[n]=Function("F,a","return new F("+e.join(",")+")")}return c[n](t,r)};t.exports=Function.bind||function(t){var n=e(this),r=u.call(arguments,1),c=function(){var e=r.concat(u.call(arguments));return this instanceof c?a(n,e.length,e):o(n,e,t)};return i(n.prototype)&&(c.prototype=n.prototype),c}},"8a7r":function(t,n,r){"use strict";var e=r("hswa"),i=r("RjD/");t.exports=function(t,n,r){n in t?e.f(t,n,i(0,r)):t[n]=r}},"91GP":function(t,n,r){var e=r("XKFU");e(e.S+e.F,"Object",{assign:r("czNK")})},"93I4":function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},"9AAn":function(t,n,r){"use strict";var e=r("wmvG"),i=r("s5qY");t.exports=r("4LiD")("Map",(function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}}),{get:function(t){var n=e.getEntry(i(this,"Map"),t);return n&&n.v},set:function(t,n){return e.def(i(this,"Map"),0===t?0:t,n)}},e,!0)},"9P93":function(t,n,r){var e=r("XKFU"),i=Math.imul;e(e.S+e.F*r("eeVq")((function(){return-5!=i(4294967295,5)||2!=i.length})),"Math",{imul:function(t,n){var r=+t,e=+n,i=65535&r,o=65535&e;return 0|i*o+((65535&r>>>16)*o+i*(65535&e>>>16)<<16>>>0)}})},"9VmF":function(t,n,r){"use strict";var e=r("XKFU"),i=r("ne8i"),o=r("0sh+"),u="".startsWith;e(e.P+e.F*r("UUeW")("startsWith"),"String",{startsWith:function(t){var n=o(this,t,"startsWith"),r=i(Math.min(arguments.length>1?arguments[1]:void 0,n.length)),e=String(t);return u?u.call(n,e,r):n.slice(r,r+e.length)===e}})},"9XZr":function(t,n,r){"use strict";var e=r("XKFU"),i=r("Lgjv"),o=r("ol8x"),u=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(o);e(e.P+e.F*u,"String",{padStart:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0,!0)}})},"9gX7":function(t,n){t.exports=function(t,n,r,e){if(!(t instanceof n)||void 0!==e&&e in t)throw TypeError(r+": incorrect invocation!");return t}},"9rMk":function(t,n,r){var e=r("XKFU");e(e.S,"Reflect",{has:function(t,n){return n in t}})},A2zW:function(t,n,r){"use strict";var e=r("XKFU"),i=r("RYi7"),o=r("vvmO"),u=r("l0Rn"),c=1..toFixed,a=Math.floor,f=[0,0,0,0,0,0],s="Number.toFixed: incorrect invocation!",l=function(t,n){for(var r=-1,e=n;++r<6;)e+=t*f[r],f[r]=e%1e7,e=a(e/1e7)},h=function(t){for(var n=6,r=0;--n>=0;)r+=f[n],f[n]=a(r/t),r=r%t*1e7},v=function(){for(var t=6,n="";--t>=0;)if(""!==n||0===t||0!==f[t]){var r=String(f[t]);n=""===n?r:n+u.call("0",7-r.length)+r}return n},p=function(t,n,r){return 0===n?r:n%2==1?p(t,n-1,r*t):p(t*t,n/2,r)};e(e.P+e.F*(!!c&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!r("eeVq")((function(){c.call({})}))),"Number",{toFixed:function(t){var n,r,e,c,a=o(this,s),f=i(t),y="",g="0";if(f<0||f>20)throw RangeError(s);if(a!=a)return"NaN";if(a<=-1e21||a>=1e21)return String(a);if(a<0&&(y="-",a=-a),a>1e-21)if(r=(n=function(t){for(var n=0,r=t;r>=4096;)n+=12,r/=4096;for(;r>=2;)n+=1,r/=2;return n}(a*p(2,69,1))-69)<0?a*p(2,-n,1):a/p(2,n,1),r*=4503599627370496,(n=52-n)>0){for(l(0,r),e=f;e>=7;)l(1e7,0),e-=7;for(l(p(10,e,1),0),e=n-1;e>=23;)h(1<<23),e-=23;h(1<<e),l(1,1),h(2),g=v()}else l(0,r),l(1<<-n,0),g=v()+u.call("0",f);return g=f>0?y+((c=g.length)<=f?"0."+u.call("0",f-c)+g:g.slice(0,c-f)+"."+g.slice(c-f)):y+g}})},A5AN:function(t,n,r){"use strict";var e=r("AvRE")(!0);t.exports=function(t,n,r){return n+(r?e(t,n).length:1)}},Afnz:function(t,n,r){"use strict";var e=r("LQAc"),i=r("XKFU"),o=r("KroJ"),u=r("Mukb"),c=r("hPIQ"),a=r("QaDb"),f=r("fyDq"),s=r("OP3Y"),l=r("K0xU")("iterator"),h=!([].keys&&"next"in[].keys()),v=function(){return this};t.exports=function(t,n,r,p,y,g,d){a(r,n,p);var x,m,b,w=function(t){if(!h&&t in O)return O[t];switch(t){case"keys":case"values":return function(){return new r(this,t)}}return function(){return new r(this,t)}},F=n+" Iterator",S="values"==y,E=!1,O=t.prototype,U=O[l]||O["@@iterator"]||y&&O[y],_=U||w(y),P=y?S?w("entries"):_:void 0,M="Array"==n&&O.entries||U;if(M&&(b=s(M.call(new t)))!==Object.prototype&&b.next&&(f(b,F,!0),e||"function"==typeof b[l]||u(b,l,v)),S&&U&&"values"!==U.name&&(E=!0,_=function(){return U.call(this)}),e&&!d||!h&&!E&&O[l]||u(O,l,_),c[n]=_,c[F]=v,y)if(x={values:S?_:w("values"),keys:g?_:w("keys"),entries:P},d)for(m in x)m in O||o(O,m,x[m]);else i(i.P+i.F*(h||E),n,x);return x}},AphP:function(t,n,r){"use strict";var e=r("XKFU"),i=r("S/j/"),o=r("apmT");e(e.P+e.F*r("eeVq")((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})})),"Date",{toJSON:function(t){var n=i(this),r=o(n);return"number"!=typeof r||isFinite(r)?n.toISOString():null}})},AvRE:function(t,n,r){var e=r("RYi7"),i=r("vhPU");t.exports=function(t){return function(n,r){var o,u,c=String(i(n)),a=e(r),f=c.length;return a<0||a>=f?t?"":void 0:(o=c.charCodeAt(a))<55296||o>56319||a+1===f||(u=c.charCodeAt(a+1))<56320||u>57343?t?c.charAt(a):o:t?c.slice(a,a+2):u-56320+(o-55296<<10)+65536}}},"B+OT":function(t,n){var r={}.hasOwnProperty;t.exports=function(t,n){return r.call(t,n)}},BC7C:function(t,n,r){var e=r("XKFU");e(e.S,"Math",{fround:r("kcoS")})},"BJ/l":function(t,n,r){var e=r("XKFU");e(e.S,"Math",{log1p:r("1sa7")})},BP8U:function(t,n,r){var e=r("XKFU"),i=r("PKUr");e(e.S+e.F*(Number.parseInt!=i),"Number",{parseInt:i})},Btvt:function(t,n,r){"use strict";var e=r("I8a+"),i={};i[r("K0xU")("toStringTag")]="z",i+""!="[object z]"&&r("KroJ")(Object.prototype,"toString",(function(){return"[object "+e(this)+"]"}),!0)},"C/va":function(t,n,r){"use strict";var e=r("y3w9");t.exports=function(){var t=e(this),n="";return t.global&&(n+="g"),t.ignoreCase&&(n+="i"),t.multiline&&(n+="m"),t.unicode&&(n+="u"),t.sticky&&(n+="y"),n}},CX2u:function(t,n,r){"use strict";var e=r("XKFU"),i=r("g3g5"),o=r("dyZX"),u=r("69bn"),c=r("vKrd");e(e.P+e.R,"Promise",{finally:function(t){var n=u(this,i.Promise||o.Promise),r="function"==typeof t;return this.then(r?function(r){return c(n,t()).then((function(){return r}))}:t,r?function(r){return c(n,t()).then((function(){throw r}))}:t)}})},Cfrj:function(t,n,r){var e=r("RYi7"),i=r("ne8i");t.exports=function(t){if(void 0===t)return 0;var n=e(t),r=i(n);if(n!==r)throw RangeError("Wrong length!");return r}},CkkT:function(t,n,r){var e=r("m0Pp"),i=r("Ymqv"),o=r("S/j/"),u=r("ne8i"),c=r("zRwo");t.exports=function(t,n){var r=1==t,a=2==t,f=3==t,s=4==t,l=6==t,h=5==t||l,v=n||c;return function(n,c,p){for(var y,g,d=o(n),x=i(d),m=e(c,p,3),b=u(x.length),w=0,F=r?v(n,b):a?v(n,0):void 0;b>w;w++)if((h||w in x)&&(g=m(y=x[w],w,d),t))if(r)F[w]=g;else if(g)switch(t){case 3:return!0;case 5:return y;case 6:return w;case 2:F.push(y)}else if(s)return!1;return l?-1:f||s?s:F}}},CyHz:function(t,n,r){var e=r("XKFU");e(e.S,"Math",{sign:r("lvtm")})},D4iV:function(t,n,r){for(var e,i=r("dyZX"),o=r("Mukb"),u=r("ylqs"),c=u("typed_array"),a=u("view"),f=!(!i.ArrayBuffer||!i.DataView),s=f,l=0,h="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");l<9;)(e=i[h[l++]])?(o(e.prototype,c,!0),o(e.prototype,a,!0)):s=!1;t.exports={ABV:f,CONSTR:s,TYPED:c,VIEW:a}},DNiP:function(t,n,r){"use strict";var e=r("XKFU"),i=r("eyMr");e(e.P+e.F*!r("LyE8")([].reduce,!0),"Array",{reduce:function(t){return i(this,t,arguments.length,arguments[1],!1)}})},DVgA:function(t,n,r){var e=r("zhAb"),i=r("4R4u");t.exports=Object.keys||function(t){return e(t,i)}},DW2E:function(t,n,r){var e=r("0/R4"),i=r("Z6vF").onFreeze;r("Xtr8")("freeze",(function(t){return function(n){return t&&e(n)?t(i(n)):n}}))},EK0E:function(t,n,r){"use strict";var e,i=r("dyZX"),o=r("CkkT")(0),u=r("KroJ"),c=r("Z6vF"),a=r("czNK"),f=r("ZD67"),s=r("0/R4"),l=r("s5qY"),h=r("s5qY"),v=!i.ActiveXObject&&"ActiveXObject"in i,p=c.getWeak,y=Object.isExtensible,g=f.ufstore,d=function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},x={get:function(t){if(s(t)){var n=p(t);return!0===n?g(l(this,"WeakMap")).get(t):n?n[this._i]:void 0}},set:function(t,n){return f.def(l(this,"WeakMap"),t,n)}},m=t.exports=r("4LiD")("WeakMap",d,x,f,!0,!0);h&&v&&(a((e=f.getConstructor(d,"WeakMap")).prototype,x),c.NEED=!0,o(["delete","has","get","set"],(function(t){var n=m.prototype,r=n[t];u(n,t,(function(n,i){if(s(n)&&!y(n)){this._f||(this._f=new e);var o=this._f[t](n,i);return"set"==t?this:o}return r.call(this,n,i)}))})))},EWmC:function(t,n,r){var e=r("LZWt");t.exports=Array.isArray||function(t){return"Array"==e(t)}},EemH:function(t,n,r){var e=r("UqcF"),i=r("RjD/"),o=r("aCFj"),u=r("apmT"),c=r("aagx"),a=r("xpql"),f=Object.getOwnPropertyDescriptor;n.f=r("nh4g")?f:function(t,n){if(t=o(t),n=u(n,!0),a)try{return f(t,n)}catch(t){}if(c(t,n))return i(!e.f.call(t,n),t[n])}},"Ew+T":function(t,n,r){var e=r("XKFU"),i=r("GZEu");e(e.G+e.B,{setImmediate:i.set,clearImmediate:i.clear})},FDph:function(t,n,r){r("Z2Ku"),t.exports=r("g3g5").Array.includes},FEjr:function(t,n,r){"use strict";r("OGtf")("strike",(function(t){return function(){return t(this,"strike","","")}}))},FJW5:function(t,n,r){var e=r("hswa"),i=r("y3w9"),o=r("DVgA");t.exports=r("nh4g")?Object.defineProperties:function(t,n){i(t);for(var r,u=o(n),c=u.length,a=0;c>a;)e.f(t,r=u[a++],n[r]);return t}},FLlr:function(t,n,r){var e=r("XKFU");e(e.P,"String",{repeat:r("l0Rn")})},Faw5:function(t,n,r){r("7DDg")("Int16",2,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},FlsD:function(t,n,r){var e=r("0/R4");r("Xtr8")("isExtensible",(function(t){return function(n){return!!e(n)&&(!t||t(n))}}))},FxUG:function(t,n,r){r("R5XZ"),r("Ew+T"),r("rGqo"),t.exports=r("g3g5")},G8Mo:function(t,n,r){var e=r("93I4");t.exports=function(t,n){if(!e(t))return t;var r,i;if(n&&"function"==typeof(r=t.toString)&&!e(i=r.call(t)))return i;if("function"==typeof(r=t.valueOf)&&!e(i=r.call(t)))return i;if(!n&&"function"==typeof(r=t.toString)&&!e(i=r.call(t)))return i;throw TypeError("Can't convert object to primitive value")}},GNAe:function(t,n,r){var e=r("XKFU"),i=r("PKUr");e(e.G+e.F*(parseInt!=i),{parseInt:i})},GZEu:function(t,n,r){var e,i,o,u=r("m0Pp"),c=r("MfQN"),a=r("+rLv"),f=r("Iw71"),s=r("dyZX"),l=s.process,h=s.setImmediate,v=s.clearImmediate,p=s.MessageChannel,y=s.Dispatch,g=0,d={},x=function(){var t=+this;if(d.hasOwnProperty(t)){var n=d[t];delete d[t],n()}},m=function(t){x.call(t.data)};h&&v||(h=function(t){for(var n=[],r=1;arguments.length>r;)n.push(arguments[r++]);return d[++g]=function(){c("function"==typeof t?t:Function(t),n)},e(g),g},v=function(t){delete d[t]},"process"==r("LZWt")(l)?e=function(t){l.nextTick(u(x,t,1))}:y&&y.now?e=function(t){y.now(u(x,t,1))}:p?(o=(i=new p).port2,i.port1.onmessage=m,e=u(o.postMessage,o,1)):s.addEventListener&&"function"==typeof postMessage&&!s.importScripts?(e=function(t){s.postMessage(t+"","*")},s.addEventListener("message",m,!1)):e="onreadystatechange"in f("script")?function(t){a.appendChild(f("script")).onreadystatechange=function(){a.removeChild(this),x.call(t)}}:function(t){setTimeout(u(x,t,1),0)}),t.exports={set:h,clear:v}},H6hf:function(t,n,r){var e=r("y3w9");t.exports=function(t,n,r,i){try{return i?n(e(r)[0],r[1]):n(r)}catch(n){var o=t.return;throw void 0!==o&&e(o.call(t)),n}}},"HAE/":function(t,n,r){var e=r("XKFU");e(e.S+e.F*!r("nh4g"),"Object",{defineProperty:r("hswa").f})},HEwt:function(t,n,r){"use strict";var e=r("m0Pp"),i=r("XKFU"),o=r("S/j/"),u=r("H6hf"),c=r("M6Qj"),a=r("ne8i"),f=r("8a7r"),s=r("J+6e");i(i.S+i.F*!r("XMVh")((function(t){Array.from(t)})),"Array",{from:function(t){var n,r,i,l,h=o(t),v="function"==typeof this?this:Array,p=arguments.length,y=p>1?arguments[1]:void 0,g=void 0!==y,d=0,x=s(h);if(g&&(y=e(y,p>2?arguments[2]:void 0,2)),null==x||v==Array&&c(x))for(r=new v(n=a(h.length));n>d;d++)f(r,d,g?y(h[d],d):h[d]);else for(l=x.call(h),r=new v;!(i=l.next()).done;d++)f(r,d,g?u(l,y,[i.value,d],!0):i.value);return r.length=d,r}})},Hsns:function(t,n,r){var e=r("93I4"),i=r("5T2Y").document,o=e(i)&&e(i.createElement);t.exports=function(t){return o?i.createElement(t):{}}},I5cv:function(t,n,r){var e=r("XKFU"),i=r("Kuth"),o=r("2OiF"),u=r("y3w9"),c=r("0/R4"),a=r("eeVq"),f=r("8MEG"),s=(r("dyZX").Reflect||{}).construct,l=a((function(){function t(){}return!(s((function(){}),[],t)instanceof t)})),h=!a((function(){s((function(){}))}));e(e.S+e.F*(l||h),"Reflect",{construct:function(t,n){o(t),u(n);var r=arguments.length<3?t:o(arguments[2]);if(h&&!l)return s(t,n,r);if(t==r){switch(n.length){case 0:return new t;case 1:return new t(n[0]);case 2:return new t(n[0],n[1]);case 3:return new t(n[0],n[1],n[2]);case 4:return new t(n[0],n[1],n[2],n[3])}var e=[null];return e.push.apply(e,n),new(f.apply(t,e))}var a=r.prototype,v=i(c(a)?a:Object.prototype),p=Function.apply.call(t,v,n);return c(p)?p:v}})},I74W:function(t,n,r){"use strict";r("qncB")("trimLeft",(function(t){return function(){return t(this,1)}}),"trimStart")},I78e:function(t,n,r){"use strict";var e=r("XKFU"),i=r("+rLv"),o=r("LZWt"),u=r("d/Gc"),c=r("ne8i"),a=[].slice;e(e.P+e.F*r("eeVq")((function(){i&&a.call(i)})),"Array",{slice:function(t,n){var r=c(this.length),e=o(this);if(n=void 0===n?r:n,"Array"==e)return a.call(this,t,n);for(var i=u(t,r),f=u(n,r),s=c(f-i),l=new Array(s),h=0;h<s;h++)l[h]="String"==e?this.charAt(i+h):this[i+h];return l}})},"I8a+":function(t,n,r){var e=r("LZWt"),i=r("K0xU")("toStringTag"),o="Arguments"==e(function(){return arguments}());t.exports=function(t){var n,r,u;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,n){try{return t[n]}catch(t){}}(n=Object(t),i))?r:o?e(n):"Object"==(u=e(n))&&"function"==typeof n.callee?"Arguments":u}},INYr:function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(6),o="findIndex",u=!0;o in[]&&Array(1)[o]((function(){u=!1})),e(e.P+e.F*u,"Array",{findIndex:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),r("nGyu")(o)},"IU+Z":function(t,n,r){"use strict";r("sMXx");var e=r("KroJ"),i=r("Mukb"),o=r("eeVq"),u=r("vhPU"),c=r("K0xU"),a=r("Ugos"),f=c("species"),s=!o((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")})),l=function(){var t=/(?:)/,n=t.exec;t.exec=function(){return n.apply(this,arguments)};var r="ab".split(t);return 2===r.length&&"a"===r[0]&&"b"===r[1]}();t.exports=function(t,n,r){var h=c(t),v=!o((function(){var n={};return n[h]=function(){return 7},7!=""[t](n)})),p=v?!o((function(){var n=!1,r=/a/;return r.exec=function(){return n=!0,null},"split"===t&&(r.constructor={},r.constructor[f]=function(){return r}),r[h](""),!n})):void 0;if(!v||!p||"replace"===t&&!s||"split"===t&&!l){var y=/./[h],g=r(u,h,""[t],(function(t,n,r,e,i){return n.exec===a?v&&!i?{done:!0,value:y.call(n,r,e)}:{done:!0,value:t.call(r,n,e)}:{done:!1}})),d=g[0],x=g[1];e(String.prototype,t,d),i(RegExp.prototype,h,2==n?function(t,n){return x.call(t,this,n)}:function(t){return x.call(t,this)})}}},IXt9:function(t,n,r){"use strict";var e=r("0/R4"),i=r("OP3Y"),o=r("K0xU")("hasInstance"),u=Function.prototype;o in u||r("hswa").f(u,o,{value:function(t){if("function"!=typeof this||!e(t))return!1;if(!e(this.prototype))return t instanceof this;for(;t=i(t);)if(this.prototype===t)return!0;return!1}})},IlFx:function(t,n,r){var e=r("XKFU"),i=r("y3w9"),o=Object.isExtensible;e(e.S,"Reflect",{isExtensible:function(t){return i(t),!o||o(t)}})},Iw71:function(t,n,r){var e=r("0/R4"),i=r("dyZX").document,o=e(i)&&e(i.createElement);t.exports=function(t){return o?i.createElement(t):{}}},Izvi:function(t,n,r){r("I74W"),t.exports=r("g3g5").String.trimLeft},"J+6e":function(t,n,r){var e=r("I8a+"),i=r("K0xU")("iterator"),o=r("hPIQ");t.exports=r("g3g5").getIteratorMethod=function(t){if(null!=t)return t[i]||t["@@iterator"]||o[e(t)]}},JCqj:function(t,n,r){"use strict";r("OGtf")("sup",(function(t){return function(){return t(this,"sup","","")}}))},JbTB:function(t,n,r){r("/8Fb"),t.exports=r("g3g5").Object.entries},Jcmo:function(t,n,r){var e=r("XKFU"),i=Math.exp;e(e.S,"Math",{cosh:function(t){return(i(t=+t)+i(-t))/2}})},JduL:function(t,n,r){r("Xtr8")("getOwnPropertyNames",(function(){return r("e7yV").f}))},"Ji/l":function(t,n,r){var e=r("XKFU");e(e.G+e.W+e.F*!r("D4iV").ABV,{DataView:r("7Qtz").DataView})},JiEa:function(t,n){n.f=Object.getOwnPropertySymbols},K0xU:function(t,n,r){var e=r("VTer")("wks"),i=r("ylqs"),o=r("dyZX").Symbol,u="function"==typeof o;(t.exports=function(t){return e[t]||(e[t]=u&&o[t]||(u?o:i)("Symbol."+t))}).store=e},KKXr:function(t,n,r){"use strict";var e=r("quPj"),i=r("y3w9"),o=r("69bn"),u=r("A5AN"),c=r("ne8i"),a=r("Xxuz"),f=r("Ugos"),s=r("eeVq"),l=Math.min,h=[].push,v="length",p=!s((function(){RegExp(4294967295,"y")}));r("IU+Z")("split",2,(function(t,n,r,s){var y;return y="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1)[v]||2!="ab".split(/(?:ab)*/)[v]||4!=".".split(/(.?)(.?)/)[v]||".".split(/()()/)[v]>1||"".split(/.?/)[v]?function(t,n){var i=String(this);if(void 0===t&&0===n)return[];if(!e(t))return r.call(i,t,n);for(var o,u,c,a=[],s=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),l=0,p=void 0===n?4294967295:n>>>0,y=new RegExp(t.source,s+"g");(o=f.call(y,i))&&!((u=y.lastIndex)>l&&(a.push(i.slice(l,o.index)),o[v]>1&&o.index<i[v]&&h.apply(a,o.slice(1)),c=o[0][v],l=u,a[v]>=p));)y.lastIndex===o.index&&y.lastIndex++;return l===i[v]?!c&&y.test("")||a.push(""):a.push(i.slice(l)),a[v]>p?a.slice(0,p):a}:"0".split(void 0,0)[v]?function(t,n){return void 0===t&&0===n?[]:r.call(this,t,n)}:r,[function(r,e){var i=t(this),o=null==r?void 0:r[n];return void 0!==o?o.call(r,i,e):y.call(String(i),r,e)},function(t,n){var e=s(y,t,this,n,y!==r);if(e.done)return e.value;var f=i(t),h=String(this),v=o(f,RegExp),g=f.unicode,d=(f.ignoreCase?"i":"")+(f.multiline?"m":"")+(f.unicode?"u":"")+(p?"y":"g"),x=new v(p?f:"^(?:"+f.source+")",d),m=void 0===n?4294967295:n>>>0;if(0===m)return[];if(0===h.length)return null===a(x,h)?[h]:[];for(var b=0,w=0,F=[];w<h.length;){x.lastIndex=p?w:0;var S,E=a(x,p?h:h.slice(w));if(null===E||(S=l(c(x.lastIndex+(p?0:w)),h.length))===b)w=u(h,w,g);else{if(F.push(h.slice(b,w)),F.length===m)return F;for(var O=1;O<=E.length-1;O++)if(F.push(E[O]),F.length===m)return F;w=b=S}}return F.push(h.slice(b)),F}]}))},KUxP:function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},KroJ:function(t,n,r){var e=r("dyZX"),i=r("Mukb"),o=r("aagx"),u=r("ylqs")("src"),c=r("+lvF"),a=(""+c).split("toString");r("g3g5").inspectSource=function(t){return c.call(t)},(t.exports=function(t,n,r,c){var f="function"==typeof r;f&&(o(r,"name")||i(r,"name",n)),t[n]!==r&&(f&&(o(r,u)||i(r,u,t[n]?""+t[n]:a.join(String(n)))),t===e?t[n]=r:c?t[n]?t[n]=r:i(t,n,r):(delete t[n],i(t,n,r)))})(Function.prototype,"toString",(function(){return"function"==typeof this&&this[u]||c.call(this)}))},Kuth:function(t,n,r){var e=r("y3w9"),i=r("FJW5"),o=r("4R4u"),u=r("YTvA")("IE_PROTO"),c=function(){},a=function(){var t,n=r("Iw71")("iframe"),e=o.length;for(n.style.display="none",r("+rLv").appendChild(n),n.src="javascript:",(t=n.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),a=t.F;e--;)delete a.prototype[o[e]];return a()};t.exports=Object.create||function(t,n){var r;return null!==t?(c.prototype=e(t),r=new c,c.prototype=null,r[u]=t):r=a(),void 0===n?r:i(r,n)}},L9s1:function(t,n,r){"use strict";var e=r("XKFU"),i=r("0sh+");e(e.P+e.F*r("UUeW")("includes"),"String",{includes:function(t){return!!~i(this,t,"includes").indexOf(t,arguments.length>1?arguments[1]:void 0)}})},LK8F:function(t,n,r){var e=r("XKFU");e(e.S,"Array",{isArray:r("EWmC")})},LQAc:function(t,n){t.exports=!1},LTTk:function(t,n,r){var e=r("XKFU"),i=r("OP3Y"),o=r("y3w9");e(e.S,"Reflect",{getPrototypeOf:function(t){return i(o(t))}})},LVwc:function(t,n){var r=Math.expm1;t.exports=!r||r(10)>22025.465794806718||r(10)<22025.465794806718||-2e-17!=r(-2e-17)?function(t){return 0==(t=+t)?t:t>-1e-6&&t<1e-6?t+t*t/2:Math.exp(t)-1}:r},LZWt:function(t,n){var r={}.toString;t.exports=function(t){return r.call(t).slice(8,-1)}},Lgjv:function(t,n,r){var e=r("ne8i"),i=r("l0Rn"),o=r("vhPU");t.exports=function(t,n,r,u){var c=String(o(t)),a=c.length,f=void 0===r?" ":String(r),s=e(n);if(s<=a||""==f)return c;var l=s-a,h=i.call(f,Math.ceil(l/f.length));return h.length>l&&(h=h.slice(0,l)),u?h+c:c+h}},Ljet:function(t,n,r){var e=r("XKFU");e(e.S,"Number",{EPSILON:Math.pow(2,-52)})},LyE8:function(t,n,r){"use strict";var e=r("eeVq");t.exports=function(t,n){return!!t&&e((function(){n?t.call(null,(function(){}),1):t.call(null)}))}},M6Qj:function(t,n,r){var e=r("hPIQ"),i=r("K0xU")("iterator"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(e.Array===t||o[i]===t)}},MfQN:function(t,n){t.exports=function(t,n,r){var e=void 0===r;switch(n.length){case 0:return e?t():t.call(r);case 1:return e?t(n[0]):t.call(r,n[0]);case 2:return e?t(n[0],n[1]):t.call(r,n[0],n[1]);case 3:return e?t(n[0],n[1],n[2]):t.call(r,n[0],n[1],n[2]);case 4:return e?t(n[0],n[1],n[2],n[3]):t.call(r,n[0],n[1],n[2],n[3])}return t.apply(r,n)}},MtdB:function(t,n,r){var e=r("XKFU");e(e.S,"Math",{clz32:function(t){return(t>>>=0)?31-Math.floor(Math.log(t+.5)*Math.LOG2E):32}})},Mukb:function(t,n,r){var e=r("hswa"),i=r("RjD/");t.exports=r("nh4g")?function(t,n,r){return e.f(t,n,i(1,r))}:function(t,n,r){return t[n]=r,t}},N8g3:function(t,n,r){n.f=r("K0xU")},NO8f:function(t,n,r){r("7DDg")("Uint8",1,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},NegM:function(t,n,r){var e=r("2faE"),i=r("rr1i");t.exports=r("jmDH")?function(t,n,r){return e.f(t,n,i(1,r))}:function(t,n,r){return t[n]=r,t}},Nr18:function(t,n,r){"use strict";var e=r("S/j/"),i=r("d/Gc"),o=r("ne8i");t.exports=function(t){for(var n=e(this),r=o(n.length),u=arguments.length,c=i(u>1?arguments[1]:void 0,r),a=u>2?arguments[2]:void 0,f=void 0===a?r:i(a,r);f>c;)n[c++]=t;return n}},Nz9U:function(t,n,r){"use strict";var e=r("XKFU"),i=r("aCFj"),o=[].join;e(e.P+e.F*(r("Ymqv")!=Object||!r("LyE8")(o)),"Array",{join:function(t){return o.call(i(this),void 0===t?",":t)}})},OEbY:function(t,n,r){r("nh4g")&&"g"!=/./g.flags&&r("hswa").f(RegExp.prototype,"flags",{configurable:!0,get:r("C/va")})},OG14:function(t,n,r){"use strict";var e=r("y3w9"),i=r("g6HL"),o=r("Xxuz");r("IU+Z")("search",1,(function(t,n,r,u){return[function(r){var e=t(this),i=null==r?void 0:r[n];return void 0!==i?i.call(r,e):new RegExp(r)[n](String(e))},function(t){var n=u(r,t,this);if(n.done)return n.value;var c=e(t),a=String(this),f=c.lastIndex;i(f,0)||(c.lastIndex=0);var s=o(c,a);return i(c.lastIndex,f)||(c.lastIndex=f),null===s?-1:s.index}]}))},OGtf:function(t,n,r){var e=r("XKFU"),i=r("eeVq"),o=r("vhPU"),u=/"/g,c=function(t,n,r,e){var i=String(o(t)),c="<"+n;return""!==r&&(c+=" "+r+'="'+String(e).replace(u,""")+'"'),c+">"+i+"</"+n+">"};t.exports=function(t,n){var r={};r[t]=n(c),e(e.P+e.F*i((function(){var n=""[t]('"');return n!==n.toLowerCase()||n.split('"').length>3})),"String",r)}},OP3Y:function(t,n,r){var e=r("aagx"),i=r("S/j/"),o=r("YTvA")("IE_PROTO"),u=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=i(t),e(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?u:null}},OnI7:function(t,n,r){var e=r("dyZX"),i=r("g3g5"),o=r("LQAc"),u=r("N8g3"),c=r("hswa").f;t.exports=function(t){var n=i.Symbol||(i.Symbol=o?{}:e.Symbol||{});"_"==t.charAt(0)||t in n||c(n,t,{value:u.f(t)})}},Oyvg:function(t,n,r){var e=r("dyZX"),i=r("Xbzi"),o=r("hswa").f,u=r("kJMx").f,c=r("quPj"),a=r("C/va"),f=e.RegExp,s=f,l=f.prototype,h=/a/g,v=/a/g,p=new f(h)!==h;if(r("nh4g")&&(!p||r("eeVq")((function(){return v[r("K0xU")("match")]=!1,f(h)!=h||f(v)==v||"/a/i"!=f(h,"i")})))){f=function(t,n){var r=this instanceof f,e=c(t),o=void 0===n;return!r&&e&&t.constructor===f&&o?t:i(p?new s(e&&!o?t.source:t,n):s((e=t instanceof f)?t.source:t,e&&o?a.call(t):n),r?this:l,f)};for(var y=function(t){t in f||o(f,t,{configurable:!0,get:function(){return s[t]},set:function(n){s[t]=n}})},g=u(s),d=0;g.length>d;)y(g[d++]);l.constructor=f,f.prototype=l,r("KroJ")(e,"RegExp",f)}r("elZq")("RegExp")},PKUr:function(t,n,r){var e=r("dyZX").parseInt,i=r("qncB").trim,o=r("/e88"),u=/^[-+]?0[xX]/;t.exports=8!==e(o+"08")||22!==e(o+"0x16")?function(t,n){var r=i(String(t),3);return e(r,n>>>0||(u.test(r)?16:10))}:e},QNwp:function(t,n,r){r("7VC1"),t.exports=r("g3g5").String.padEnd},QaDb:function(t,n,r){"use strict";var e=r("Kuth"),i=r("RjD/"),o=r("fyDq"),u={};r("Mukb")(u,r("K0xU")("iterator"),(function(){return this})),t.exports=function(t,n,r){t.prototype=e(u,{next:i(1,r)}),o(t,n+" Iterator")}},R5XZ:function(t,n,r){var e=r("dyZX"),i=r("XKFU"),o=r("ol8x"),u=[].slice,c=/MSIE .\./.test(o),a=function(t){return function(n,r){var e=arguments.length>2,i=!!e&&u.call(arguments,2);return t(e?function(){("function"==typeof n?n:Function(n)).apply(this,i)}:n,r)}};i(i.G+i.B+i.F*c,{setTimeout:a(e.setTimeout),setInterval:a(e.setInterval)})},RW0V:function(t,n,r){var e=r("S/j/"),i=r("DVgA");r("Xtr8")("keys",(function(){return function(t){return i(e(t))}}))},RYi7:function(t,n){var r=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?e:r)(t)}},"RjD/":function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},"S/j/":function(t,n,r){var e=r("vhPU");t.exports=function(t){return Object(e(t))}},SMB2:function(t,n,r){"use strict";r("OGtf")("bold",(function(t){return function(){return t(this,"b","","")}}))},SPin:function(t,n,r){"use strict";var e=r("XKFU"),i=r("eyMr");e(e.P+e.F*!r("LyE8")([].reduceRight,!0),"Array",{reduceRight:function(t){return i(this,t,arguments.length,arguments[1],!0)}})},SRfc:function(t,n,r){"use strict";var e=r("y3w9"),i=r("ne8i"),o=r("A5AN"),u=r("Xxuz");r("IU+Z")("match",1,(function(t,n,r,c){return[function(r){var e=t(this),i=null==r?void 0:r[n];return void 0!==i?i.call(r,e):new RegExp(r)[n](String(e))},function(t){var n=c(r,t,this);if(n.done)return n.value;var a=e(t),f=String(this);if(!a.global)return u(a,f);var s=a.unicode;a.lastIndex=0;for(var l,h=[],v=0;null!==(l=u(a,f));){var p=String(l[0]);h[v]=p,""===p&&(a.lastIndex=o(f,i(a.lastIndex),s)),v++}return 0===v?null:h}]}))},SlkY:function(t,n,r){var e=r("m0Pp"),i=r("H6hf"),o=r("M6Qj"),u=r("y3w9"),c=r("ne8i"),a=r("J+6e"),f={},s={};(n=t.exports=function(t,n,r,l,h){var v,p,y,g,d=h?function(){return t}:a(t),x=e(r,l,n?2:1),m=0;if("function"!=typeof d)throw TypeError(t+" is not iterable!");if(o(d)){for(v=c(t.length);v>m;m++)if((g=n?x(u(p=t[m])[0],p[1]):x(t[m]))===f||g===s)return g}else for(y=d.call(t);!(p=y.next()).done;)if((g=i(y,x,p.value,n))===f||g===s)return g}).BREAK=f,n.RETURN=s},T39b:function(t,n,r){"use strict";var e=r("wmvG"),i=r("s5qY");t.exports=r("4LiD")("Set",(function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}}),{add:function(t){return e.def(i(this,"Set"),t=0===t?0:t,t)}},e)},TIpR:function(t,n,r){"use strict";r("VRzm"),r("CX2u"),t.exports=r("g3g5").Promise.finally},Tdpu:function(t,n,r){r("7DDg")("Float64",8,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},Tze0:function(t,n,r){"use strict";r("qncB")("trim",(function(t){return function(){return t(this,3)}}))},U2t9:function(t,n,r){var e=r("XKFU"),i=Math.asinh;e(e.S+e.F*!(i&&1/i(0)>0),"Math",{asinh:function t(n){return isFinite(n=+n)&&0!=n?n<0?-t(-n):Math.log(n+Math.sqrt(n*n+1)):n}})},UExd:function(t,n,r){var e=r("nh4g"),i=r("DVgA"),o=r("aCFj"),u=r("UqcF").f;t.exports=function(t){return function(n){for(var r,c=o(n),a=i(c),f=a.length,s=0,l=[];f>s;)r=a[s++],e&&!u.call(c,r)||l.push(t?[r,c[r]]:c[r]);return l}}},UUeW:function(t,n,r){var e=r("K0xU")("match");t.exports=function(t){var n=/./;try{"/./"[t](n)}catch(r){try{return n[e]=!1,!"/./"[t](n)}catch(t){}}return!0}},Ugos:function(t,n,r){"use strict";var e,i,o=r("C/va"),u=RegExp.prototype.exec,c=String.prototype.replace,a=u,f=(e=/a/,i=/b*/g,u.call(e,"a"),u.call(i,"a"),0!==e.lastIndex||0!==i.lastIndex),s=void 0!==/()??/.exec("")[1];(f||s)&&(a=function(t){var n,r,e,i,a=this;return s&&(r=new RegExp("^"+a.source+"$(?!\\s)",o.call(a))),f&&(n=a.lastIndex),e=u.call(a,t),f&&e&&(a.lastIndex=a.global?e.index+e[0].length:n),s&&e&&e.length>1&&c.call(e[0],r,(function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(e[i]=void 0)})),e}),t.exports=a},UqcF:function(t,n){n.f={}.propertyIsEnumerable},"V+eJ":function(t,n,r){"use strict";var e=r("XKFU"),i=r("w2a5")(!1),o=[].indexOf,u=!!o&&1/[1].indexOf(1,-0)<0;e(e.P+e.F*(u||!r("LyE8")(o)),"Array",{indexOf:function(t){return u?o.apply(this,arguments)||0:i(this,t,arguments[1])}})},"V/DX":function(t,n,r){var e=r("0/R4");r("Xtr8")("isSealed",(function(t){return function(n){return!e(n)||!!t&&t(n)}}))},VKir:function(t,n,r){"use strict";var e=r("XKFU"),i=r("eeVq"),o=r("vvmO"),u=1..toPrecision;e(e.P+e.F*(i((function(){return"1"!==u.call(1,void 0)}))||!i((function(){u.call({})}))),"Number",{toPrecision:function(t){var n=o(this,"Number#toPrecision: incorrect invocation!");return void 0===t?u.call(n):u.call(n,t)}})},VRzm:function(t,n,r){"use strict";var e,i,o,u,c=r("LQAc"),a=r("dyZX"),f=r("m0Pp"),s=r("I8a+"),l=r("XKFU"),h=r("0/R4"),v=r("2OiF"),p=r("9gX7"),y=r("SlkY"),g=r("69bn"),d=r("GZEu").set,x=r("gHnn")(),m=r("pbhE"),b=r("nICZ"),w=r("ol8x"),F=r("vKrd"),S=a.TypeError,E=a.process,O=E&&E.versions,U=O&&O.v8||"",_=a.Promise,P="process"==s(E),M=function(){},K=i=m.f,j=!!function(){try{var t=_.resolve(1),n=(t.constructor={})[r("K0xU")("species")]=function(t){t(M,M)};return(P||"function"==typeof PromiseRejectionEvent)&&t.then(M)instanceof n&&0!==U.indexOf("6.6")&&-1===w.indexOf("Chrome/66")}catch(t){}}(),X=function(t){var n;return!(!h(t)||"function"!=typeof(n=t.then))&&n},A=function(t,n){if(!t._n){t._n=!0;var r=t._c;x((function(){for(var e=t._v,i=1==t._s,o=0,u=function(n){var r,o,u,c=i?n.ok:n.fail,a=n.resolve,f=n.reject,s=n.domain;try{c?(i||(2==t._h&&L(t),t._h=1),!0===c?r=e:(s&&s.enter(),r=c(e),s&&(s.exit(),u=!0)),r===n.promise?f(S("Promise-chain cycle")):(o=X(r))?o.call(r,a,f):a(r)):f(e)}catch(t){s&&!u&&s.exit(),f(t)}};r.length>o;)u(r[o++]);t._c=[],t._n=!1,n&&!t._h&&I(t)}))}},I=function(t){d.call(a,(function(){var n,r,e,i=t._v,o=T(t);if(o&&(n=b((function(){P?E.emit("unhandledRejection",i,t):(r=a.onunhandledrejection)?r({promise:t,reason:i}):(e=a.console)&&e.error&&e.error("Unhandled promise rejection",i)})),t._h=P||T(t)?2:1),t._a=void 0,o&&n.e)throw n.v}))},T=function(t){return 1!==t._h&&0===(t._a||t._c).length},L=function(t){d.call(a,(function(){var n;P?E.emit("rejectionHandled",t):(n=a.onrejectionhandled)&&n({promise:t,reason:t._v})}))},R=function(t){var n=this;n._d||(n._d=!0,(n=n._w||n)._v=t,n._s=2,n._a||(n._a=n._c.slice()),A(n,!0))},N=function(t){var n,r=this;if(!r._d){r._d=!0,r=r._w||r;try{if(r===t)throw S("Promise can't be resolved itself");(n=X(t))?x((function(){var e={_w:r,_d:!1};try{n.call(t,f(N,e,1),f(R,e,1))}catch(t){R.call(e,t)}})):(r._v=t,r._s=1,A(r,!1))}catch(t){R.call({_w:r,_d:!1},t)}}};j||(_=function(t){p(this,_,"Promise","_h"),v(t),e.call(this);try{t(f(N,this,1),f(R,this,1))}catch(t){R.call(this,t)}},(e=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=r("3Lyj")(_.prototype,{then:function(t,n){var r=K(g(this,_));return r.ok="function"!=typeof t||t,r.fail="function"==typeof n&&n,r.domain=P?E.domain:void 0,this._c.push(r),this._a&&this._a.push(r),this._s&&A(this,!1),r.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new e;this.promise=t,this.resolve=f(N,t,1),this.reject=f(R,t,1)},m.f=K=function(t){return t===_||t===u?new o(t):i(t)}),l(l.G+l.W+l.F*!j,{Promise:_}),r("fyDq")(_,"Promise"),r("elZq")("Promise"),u=r("g3g5").Promise,l(l.S+l.F*!j,"Promise",{reject:function(t){var n=K(this);return(0,n.reject)(t),n.promise}}),l(l.S+l.F*(c||!j),"Promise",{resolve:function(t){return F(c&&this===u?_:this,t)}}),l(l.S+l.F*!(j&&r("XMVh")((function(t){_.all(t).catch(M)}))),"Promise",{all:function(t){var n=this,r=K(n),e=r.resolve,i=r.reject,o=b((function(){var r=[],o=0,u=1;y(t,!1,(function(t){var c=o++,a=!1;r.push(void 0),u++,n.resolve(t).then((function(t){a||(a=!0,r[c]=t,--u||e(r))}),i)})),--u||e(r)}));return o.e&&i(o.v),r.promise},race:function(t){var n=this,r=K(n),e=r.reject,i=b((function(){y(t,!1,(function(t){n.resolve(t).then(r.resolve,e)}))}));return i.e&&e(i.v),r.promise}})},VTer:function(t,n,r){var e=r("g3g5"),i=r("dyZX"),o=i["__core-js_shared__"]||(i["__core-js_shared__"]={});(t.exports=function(t,n){return o[t]||(o[t]=void 0!==n?n:{})})("versions",[]).push({version:e.version,mode:r("LQAc")?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},Vd3H:function(t,n,r){"use strict";var e=r("XKFU"),i=r("2OiF"),o=r("S/j/"),u=r("eeVq"),c=[].sort,a=[1,2,3];e(e.P+e.F*(u((function(){a.sort(void 0)}))||!u((function(){a.sort(null)}))||!r("LyE8")(c)),"Array",{sort:function(t){return void 0===t?c.call(o(this)):c.call(o(this),i(t))}})},VpUO:function(t,n,r){var e=r("XKFU"),i=r("d/Gc"),o=String.fromCharCode,u=String.fromCodePoint;e(e.S+e.F*(!!u&&1!=u.length),"String",{fromCodePoint:function(t){for(var n,r=[],e=arguments.length,u=0;e>u;){if(n=+arguments[u++],i(n,1114111)!==n)throw RangeError(n+" is not a valid code point");r.push(n<65536?o(n):o(55296+((n-=65536)>>10),n%1024+56320))}return r.join("")}})},VsWn:function(t,n,r){r("7PI8"),t.exports=r("WEpk").global},W9dy:function(t,n,r){r("ioFf"),r("hHhE"),r("HAE/"),r("WLL4"),r("mYba"),r("5Pf0"),r("RW0V"),r("JduL"),r("DW2E"),r("z2o2"),r("mura"),r("Zshi"),r("V/DX"),r("FlsD"),r("91GP"),r("25dN"),r("/SS/"),r("Btvt"),r("2Spj"),r("f3/d"),r("IXt9"),r("GNAe"),r("tyy+"),r("xfY5"),r("A2zW"),r("VKir"),r("Ljet"),r("/KAi"),r("fN96"),r("7h0T"),r("sbF8"),r("h/M4"),r("knhD"),r("XfKG"),r("BP8U"),r("fyVe"),r("U2t9"),r("2atp"),r("+auO"),r("MtdB"),r("Jcmo"),r("nzyx"),r("BC7C"),r("x8ZO"),r("9P93"),r("eHKK"),r("BJ/l"),r("pp/T"),r("CyHz"),r("bBoP"),r("x8Yj"),r("hLT2"),r("VpUO"),r("eI33"),r("Tze0"),r("XfO3"),r("oDIu"),r("rvZc"),r("L9s1"),r("FLlr"),r("9VmF"),r("hEkN"),r("nIY7"),r("+oPb"),r("SMB2"),r("0mN4"),r("bDcW"),r("nsiH"),r("0LDn"),r("tUrg"),r("84bF"),r("FEjr"),r("Zz4T"),r("JCqj"),r("eM6i"),r("AphP"),r("jqX0"),r("h7Nl"),r("yM4b"),r("LK8F"),r("HEwt"),r("6AQ9"),r("Nz9U"),r("I78e"),r("Vd3H"),r("8+KV"),r("bWfx"),r("0l/t"),r("dZ+Y"),r("YJVH"),r("DNiP"),r("SPin"),r("V+eJ"),r("mGWK"),r("dE+T"),r("bHtr"),r("dRSK"),r("INYr"),r("0E+W"),r("yt8O"),r("Oyvg"),r("sMXx"),r("a1Th"),r("OEbY"),r("SRfc"),r("pIFo"),r("OG14"),r("KKXr"),r("VRzm"),r("9AAn"),r("T39b"),r("EK0E"),r("wCsR"),r("xm80"),r("Ji/l"),r("sFw1"),r("NO8f"),r("aqI/"),r("Faw5"),r("r1bV"),r("tuSo"),r("nCnK"),r("Y9lz"),r("Tdpu"),r("3xty"),r("I5cv"),r("iMoV"),r("uhZd"),r("f/aN"),r("0YWM"),r("694e"),r("LTTk"),r("9rMk"),r("IlFx"),r("xpiv"),r("oZ/O"),r("klPD"),r("knU9"),t.exports=r("g3g5")},WEpk:function(t,n){var r=t.exports={version:"2.6.12"};"number"==typeof __e&&(__e=r)},WLL4:function(t,n,r){var e=r("XKFU");e(e.S+e.F*!r("nh4g"),"Object",{defineProperties:r("FJW5")})},XKFU:function(t,n,r){var e=r("dyZX"),i=r("g3g5"),o=r("Mukb"),u=r("KroJ"),c=r("m0Pp"),a=function(t,n,r){var f,s,l,h,v=t&a.F,p=t&a.G,y=t&a.S,g=t&a.P,d=t&a.B,x=p?e:y?e[n]||(e[n]={}):(e[n]||{}).prototype,m=p?i:i[n]||(i[n]={}),b=m.prototype||(m.prototype={});for(f in p&&(r=n),r)l=((s=!v&&x&&void 0!==x[f])?x:r)[f],h=d&&s?c(l,e):g&&"function"==typeof l?c(Function.call,l):l,x&&u(x,f,l,t&a.U),m[f]!=l&&o(m,f,h),g&&b[f]!=l&&(b[f]=l)};e.core=i,a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},XMVh:function(t,n,r){var e=r("K0xU")("iterator"),i=!1;try{var o=[7][e]();o.return=function(){i=!0},Array.from(o,(function(){throw 2}))}catch(t){}t.exports=function(t,n){if(!n&&!i)return!1;var r=!1;try{var o=[7],u=o[e]();u.next=function(){return{done:r=!0}},o[e]=function(){return u},t(o)}catch(t){}return r}},Xbzi:function(t,n,r){var e=r("0/R4"),i=r("i5dc").set;t.exports=function(t,n,r){var o,u=n.constructor;return u!==r&&"function"==typeof u&&(o=u.prototype)!==r.prototype&&e(o)&&i&&i(t,o),t}},XfKG:function(t,n,r){var e=r("XKFU"),i=r("11IZ");e(e.S+e.F*(Number.parseFloat!=i),"Number",{parseFloat:i})},XfO3:function(t,n,r){"use strict";var e=r("AvRE")(!0);r("Afnz")(String,"String",(function(t){this._t=String(t),this._i=0}),(function(){var t,n=this._t,r=this._i;return r>=n.length?{value:void 0,done:!0}:(t=e(n,r),this._i+=t.length,{value:t,done:!1})}))},Xtr8:function(t,n,r){var e=r("XKFU"),i=r("g3g5"),o=r("eeVq");t.exports=function(t,n){var r=(i.Object||{})[t]||Object[t],u={};u[t]=n(r),e(e.S+e.F*o((function(){r(1)})),"Object",u)}},Xxuz:function(t,n,r){"use strict";var e=r("I8a+"),i=RegExp.prototype.exec;t.exports=function(t,n){var r=t.exec;if("function"==typeof r){var o=r.call(t,n);if("object"!=typeof o)throw new TypeError("RegExp exec method returned something other than an Object or null");return o}if("RegExp"!==e(t))throw new TypeError("RegExp#exec called on incompatible receiver");return i.call(t,n)}},Y7ZC:function(t,n,r){var e=r("5T2Y"),i=r("WEpk"),o=r("2GTP"),u=r("NegM"),c=r("B+OT"),a=function(t,n,r){var f,s,l,h=t&a.F,v=t&a.G,p=t&a.S,y=t&a.P,g=t&a.B,d=t&a.W,x=v?i:i[n]||(i[n]={}),m=x.prototype,b=v?e:p?e[n]:(e[n]||{}).prototype;for(f in v&&(r=n),r)(s=!h&&b&&void 0!==b[f])&&c(x,f)||(l=s?b[f]:r[f],x[f]=v&&"function"!=typeof b[f]?r[f]:g&&s?o(l,e):d&&b[f]==l?function(t){var n=function(n,r,e){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(n);case 2:return new t(n,r)}return new t(n,r,e)}return t.apply(this,arguments)};return n.prototype=t.prototype,n}(l):y&&"function"==typeof l?o(Function.call,l):l,y&&((x.virtual||(x.virtual={}))[f]=l,t&a.R&&m&&!m[f]&&u(m,f,l)))};a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},Y9lz:function(t,n,r){r("7DDg")("Float32",4,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},YJVH:function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(4);e(e.P+e.F*!r("LyE8")([].every,!0),"Array",{every:function(t){return i(this,t,arguments[1])}})},YTvA:function(t,n,r){var e=r("VTer")("keys"),i=r("ylqs");t.exports=function(t){return e[t]||(e[t]=i(t))}},Ymqv:function(t,n,r){var e=r("LZWt");t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==e(t)?t.split(""):Object(t)}},Yp8f:function(t,n,r){r("6VaU"),t.exports=r("g3g5").Array.flatMap},Z2Ku:function(t,n,r){"use strict";var e=r("XKFU"),i=r("w2a5")(!0);e(e.P,"Array",{includes:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),r("nGyu")("includes")},Z6vF:function(t,n,r){var e=r("ylqs")("meta"),i=r("0/R4"),o=r("aagx"),u=r("hswa").f,c=0,a=Object.isExtensible||function(){return!0},f=!r("eeVq")((function(){return a(Object.preventExtensions({}))})),s=function(t){u(t,e,{value:{i:"O"+ ++c,w:{}}})},l=t.exports={KEY:e,NEED:!1,fastKey:function(t,n){if(!i(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!o(t,e)){if(!a(t))return"F";if(!n)return"E";s(t)}return t[e].i},getWeak:function(t,n){if(!o(t,e)){if(!a(t))return!0;if(!n)return!1;s(t)}return t[e].w},onFreeze:function(t){return f&&l.NEED&&a(t)&&!o(t,e)&&s(t),t}}},ZD67:function(t,n,r){"use strict";var e=r("3Lyj"),i=r("Z6vF").getWeak,o=r("y3w9"),u=r("0/R4"),c=r("9gX7"),a=r("SlkY"),f=r("CkkT"),s=r("aagx"),l=r("s5qY"),h=f(5),v=f(6),p=0,y=function(t){return t._l||(t._l=new g)},g=function(){this.a=[]},d=function(t,n){return h(t.a,(function(t){return t[0]===n}))};g.prototype={get:function(t){var n=d(this,t);if(n)return n[1]},has:function(t){return!!d(this,t)},set:function(t,n){var r=d(this,t);r?r[1]=n:this.a.push([t,n])},delete:function(t){var n=v(this.a,(function(n){return n[0]===t}));return~n&&this.a.splice(n,1),!!~n}},t.exports={getConstructor:function(t,n,r,o){var f=t((function(t,e){c(t,f,n,"_i"),t._t=n,t._i=p++,t._l=void 0,null!=e&&a(e,r,t[o],t)}));return e(f.prototype,{delete:function(t){if(!u(t))return!1;var r=i(t);return!0===r?y(l(this,n)).delete(t):r&&s(r,this._i)&&delete r[this._i]},has:function(t){if(!u(t))return!1;var r=i(t);return!0===r?y(l(this,n)).has(t):r&&s(r,this._i)}}),f},def:function(t,n,r){var e=i(o(n),!0);return!0===e?y(t).set(n,r):e[t._i]=r,t},ufstore:y}},Zshi:function(t,n,r){var e=r("0/R4");r("Xtr8")("isFrozen",(function(t){return function(n){return!e(n)||!!t&&t(n)}}))},Zz4T:function(t,n,r){"use strict";r("OGtf")("sub",(function(t){return function(){return t(this,"sub","","")}}))},a1Th:function(t,n,r){"use strict";r("OEbY");var e=r("y3w9"),i=r("C/va"),o=r("nh4g"),u=/./.toString,c=function(t){r("KroJ")(RegExp.prototype,"toString",t,!0)};r("eeVq")((function(){return"/a/b"!=u.call({source:"a",flags:"b"})}))?c((function(){var t=e(this);return"/".concat(t.source,"/","flags"in t?t.flags:!o&&t instanceof RegExp?i.call(t):void 0)})):"toString"!=u.name&&c((function(){return u.call(this)}))},aCFj:function(t,n,r){var e=r("Ymqv"),i=r("vhPU");t.exports=function(t){return e(i(t))}},aagx:function(t,n){var r={}.hasOwnProperty;t.exports=function(t,n){return r.call(t,n)}},apmT:function(t,n,r){var e=r("0/R4");t.exports=function(t,n){if(!e(t))return t;var r,i;if(n&&"function"==typeof(r=t.toString)&&!e(i=r.call(t)))return i;if("function"==typeof(r=t.valueOf)&&!e(i=r.call(t)))return i;if(!n&&"function"==typeof(r=t.toString)&&!e(i=r.call(t)))return i;throw TypeError("Can't convert object to primitive value")}},"aqI/":function(t,n,r){r("7DDg")("Uint8",1,(function(t){return function(n,r,e){return t(this,n,r,e)}}),!0)},bBoP:function(t,n,r){var e=r("XKFU"),i=r("LVwc"),o=Math.exp;e(e.S+e.F*r("eeVq")((function(){return-2e-17!=!Math.sinh(-2e-17)})),"Math",{sinh:function(t){return Math.abs(t=+t)<1?(i(t)-i(-t))/2:(o(t-1)-o(-t-1))*(Math.E/2)}})},bDcW:function(t,n,r){"use strict";r("OGtf")("fontcolor",(function(t){return function(n){return t(this,"font","color",n)}}))},bHtr:function(t,n,r){var e=r("XKFU");e(e.P,"Array",{fill:r("Nr18")}),r("nGyu")("fill")},bWfx:function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(1);e(e.P+e.F*!r("LyE8")([].map,!0),"Array",{map:function(t){return i(this,t,arguments[1])}})},czNK:function(t,n,r){"use strict";var e=r("nh4g"),i=r("DVgA"),o=r("JiEa"),u=r("UqcF"),c=r("S/j/"),a=r("Ymqv"),f=Object.assign;t.exports=!f||r("eeVq")((function(){var t={},n={},r=Symbol(),e="abcdefghijklmnopqrst";return t[r]=7,e.split("").forEach((function(t){n[t]=t})),7!=f({},t)[r]||Object.keys(f({},n)).join("")!=e}))?function(t,n){for(var r=c(t),f=arguments.length,s=1,l=o.f,h=u.f;f>s;)for(var v,p=a(arguments[s++]),y=l?i(p).concat(l(p)):i(p),g=y.length,d=0;g>d;)v=y[d++],e&&!h.call(p,v)||(r[v]=p[v]);return r}:f},"d/Gc":function(t,n,r){var e=r("RYi7"),i=Math.max,o=Math.min;t.exports=function(t,n){return(t=e(t))<0?i(t+n,0):o(t,n)}},"dE+T":function(t,n,r){var e=r("XKFU");e(e.P,"Array",{copyWithin:r("upKx")}),r("nGyu")("copyWithin")},dRSK:function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(5),o=!0;"find"in[]&&Array(1).find((function(){o=!1})),e(e.P+e.F*o,"Array",{find:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),r("nGyu")("find")},"dZ+Y":function(t,n,r){"use strict";var e=r("XKFU"),i=r("CkkT")(3);e(e.P+e.F*!r("LyE8")([].some,!0),"Array",{some:function(t){return i(this,t,arguments[1])}})},dyZX:function(t,n){var r=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=r)},e7yV:function(t,n,r){var e=r("aCFj"),i=r("kJMx").f,o={}.toString,u="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return u&&"[object Window]"==o.call(t)?function(t){try{return i(t)}catch(t){return u.slice()}}(t):i(e(t))}},eHKK:function(t,n,r){var e=r("XKFU");e(e.S,"Math",{log10:function(t){return Math.log(t)*Math.LOG10E}})},eI33:function(t,n,r){var e=r("XKFU"),i=r("aCFj"),o=r("ne8i");e(e.S,"String",{raw:function(t){for(var n=i(t.raw),r=o(n.length),e=arguments.length,u=[],c=0;r>c;)u.push(String(n[c++])),c<e&&u.push(String(arguments[c]));return u.join("")}})},eM6i:function(t,n,r){var e=r("XKFU");e(e.S,"Date",{now:function(){return(new Date).getTime()}})},eUtF:function(t,n,r){t.exports=!r("jmDH")&&!r("KUxP")((function(){return 7!=Object.defineProperty(r("Hsns")("div"),"a",{get:function(){return 7}}).a}))},eaoh:function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},eeVq:function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},elZq:function(t,n,r){"use strict";var e=r("dyZX"),i=r("hswa"),o=r("nh4g"),u=r("K0xU")("species");t.exports=function(t){var n=e[t];o&&n&&!n[u]&&i.f(n,u,{configurable:!0,get:function(){return this}})}},eyMr:function(t,n,r){var e=r("2OiF"),i=r("S/j/"),o=r("Ymqv"),u=r("ne8i");t.exports=function(t,n,r,c,a){e(n);var f=i(t),s=o(f),l=u(f.length),h=a?l-1:0,v=a?-1:1;if(r<2)for(;;){if(h in s){c=s[h],h+=v;break}if(h+=v,a?h<0:l<=h)throw TypeError("Reduce of empty array with no initial value")}for(;a?h>=0:l>h;h+=v)h in s&&(c=n(c,s[h],h,f));return c}},"f/aN":function(t,n,r){"use strict";var e=r("XKFU"),i=r("y3w9"),o=function(t){this._t=i(t),this._i=0;var n,r=this._k=[];for(n in t)r.push(n)};r("QaDb")(o,"Object",(function(){var t,n=this._k;do{if(this._i>=n.length)return{value:void 0,done:!0}}while(!((t=n[this._i++])in this._t));return{value:t,done:!1}})),e(e.S,"Reflect",{enumerate:function(t){return new o(t)}})},"f3/d":function(t,n,r){var e=r("hswa").f,i=Function.prototype,o=/^\s*function ([^ (]*)/;"name"in i||r("nh4g")&&e(i,"name",{configurable:!0,get:function(){try{return(""+this).match(o)[1]}catch(t){return""}}})},fA63:function(t,n,r){"use strict";r("qncB")("trimRight",(function(t){return function(){return t(this,2)}}),"trimEnd")},fN96:function(t,n,r){var e=r("XKFU");e(e.S,"Number",{isInteger:r("nBIS")})},fyDq:function(t,n,r){var e=r("hswa").f,i=r("aagx"),o=r("K0xU")("toStringTag");t.exports=function(t,n,r){t&&!i(t=r?t:t.prototype,o)&&e(t,o,{configurable:!0,value:n})}},fyVe:function(t,n,r){var e=r("XKFU"),i=r("1sa7"),o=Math.sqrt,u=Math.acosh;e(e.S+e.F*!(u&&710==Math.floor(u(Number.MAX_VALUE))&&u(1/0)==1/0),"Math",{acosh:function(t){return(t=+t)<1?NaN:t>94906265.62425156?Math.log(t)+Math.LN2:i(t-1+o(t-1)*o(t+1))}})},g2aq:function(t,n,r){"use strict";r("W9dy"),r("FDph"),r("Yp8f"),r("wYy3"),r("QNwp"),r("Izvi"),r("ln0Z"),r("wDwx"),r("+Xmh"),r("zFFn"),r("JbTB"),r("TIpR"),r("FxUG"),r("ls82")},g3g5:function(t,n){var r=t.exports={version:"2.6.12"};"number"==typeof __e&&(__e=r)},g4EE:function(t,n,r){"use strict";var e=r("y3w9"),i=r("apmT");t.exports=function(t){if("string"!==t&&"number"!==t&&"default"!==t)throw TypeError("Incorrect hint");return i(e(this),"number"!=t)}},g6HL:function(t,n){t.exports=Object.is||function(t,n){return t===n?0!==t||1/t==1/n:t!=t&&n!=n}},gHnn:function(t,n,r){var e=r("dyZX"),i=r("GZEu").set,o=e.MutationObserver||e.WebKitMutationObserver,u=e.process,c=e.Promise,a="process"==r("LZWt")(u);t.exports=function(){var t,n,r,f=function(){var e,i;for(a&&(e=u.domain)&&e.exit();t;){i=t.fn,t=t.next;try{i()}catch(e){throw t?r():n=void 0,e}}n=void 0,e&&e.enter()};if(a)r=function(){u.nextTick(f)};else if(!o||e.navigator&&e.navigator.standalone)if(c&&c.resolve){var s=c.resolve(void 0);r=function(){s.then(f)}}else r=function(){i.call(e,f)};else{var l=!0,h=document.createTextNode("");new o(f).observe(h,{characterData:!0}),r=function(){h.data=l=!l}}return function(e){var i={fn:e,next:void 0};n&&(n.next=i),t||(t=i,r()),n=i}}},"h/M4":function(t,n,r){var e=r("XKFU");e(e.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},h7Nl:function(t,n,r){var e=Date.prototype,i=e.toString,o=e.getTime;new Date(NaN)+""!="Invalid Date"&&r("KroJ")(e,"toString",(function(){var t=o.call(this);return t==t?i.call(this):"Invalid Date"}))},hEkN:function(t,n,r){"use strict";r("OGtf")("anchor",(function(t){return function(n){return t(this,"a","name",n)}}))},hHhE:function(t,n,r){var e=r("XKFU");e(e.S,"Object",{create:r("Kuth")})},hLT2:function(t,n,r){var e=r("XKFU");e(e.S,"Math",{trunc:function(t){return(t>0?Math.floor:Math.ceil)(t)}})},hPIQ:function(t,n){t.exports={}},hhXQ:function(t,n,r){var e=r("XKFU"),i=r("UExd")(!1);e(e.S,"Object",{values:function(t){return i(t)}})},hswa:function(t,n,r){var e=r("y3w9"),i=r("xpql"),o=r("apmT"),u=Object.defineProperty;n.f=r("nh4g")?Object.defineProperty:function(t,n,r){if(e(t),n=o(n,!0),e(r),i)try{return u(t,n,r)}catch(t){}if("get"in r||"set"in r)throw TypeError("Accessors not supported!");return"value"in r&&(t[n]=r.value),t}},i5dc:function(t,n,r){var e=r("0/R4"),i=r("y3w9"),o=function(t,n){if(i(t),!e(n)&&null!==n)throw TypeError(n+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,n,e){try{(e=r("m0Pp")(Function.call,r("EemH").f(Object.prototype,"__proto__").set,2))(t,[]),n=!(t instanceof Array)}catch(t){n=!0}return function(t,r){return o(t,r),n?t.__proto__=r:e(t,r),t}}({},!1):void 0),check:o}},iMoV:function(t,n,r){var e=r("hswa"),i=r("XKFU"),o=r("y3w9"),u=r("apmT");i(i.S+i.F*r("eeVq")((function(){Reflect.defineProperty(e.f({},1,{value:1}),1,{value:2})})),"Reflect",{defineProperty:function(t,n,r){o(t),n=u(n,!0),o(r);try{return e.f(t,n,r),!0}catch(t){return!1}}})},ioFf:function(t,n,r){"use strict";var e=r("dyZX"),i=r("aagx"),o=r("nh4g"),u=r("XKFU"),c=r("KroJ"),a=r("Z6vF").KEY,f=r("eeVq"),s=r("VTer"),l=r("fyDq"),h=r("ylqs"),v=r("K0xU"),p=r("N8g3"),y=r("OnI7"),g=r("1MBn"),d=r("EWmC"),x=r("y3w9"),m=r("0/R4"),b=r("S/j/"),w=r("aCFj"),F=r("apmT"),S=r("RjD/"),E=r("Kuth"),O=r("e7yV"),U=r("EemH"),_=r("JiEa"),P=r("hswa"),M=r("DVgA"),K=U.f,j=P.f,X=O.f,A=e.Symbol,I=e.JSON,T=I&&I.stringify,L=v("_hidden"),R=v("toPrimitive"),N={}.propertyIsEnumerable,k=s("symbol-registry"),D=s("symbols"),V=s("op-symbols"),C=Object.prototype,q="function"==typeof A&&!!_.f,Z=e.QObject,W=!Z||!Z.prototype||!Z.prototype.findChild,G=o&&f((function(){return 7!=E(j({},"a",{get:function(){return j(this,"a",{value:7}).a}})).a}))?function(t,n,r){var e=K(C,n);e&&delete C[n],j(t,n,r),e&&t!==C&&j(C,n,e)}:j,Y=function(t){var n=D[t]=E(A.prototype);return n._k=t,n},B=q&&"symbol"==typeof A.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof A},z=function(t,n,r){return t===C&&z(V,n,r),x(t),n=F(n,!0),x(r),i(D,n)?(r.enumerable?(i(t,L)&&t[L][n]&&(t[L][n]=!1),r=E(r,{enumerable:S(0,!1)})):(i(t,L)||j(t,L,S(1,{})),t[L][n]=!0),G(t,n,r)):j(t,n,r)},J=function(t,n){x(t);for(var r,e=g(n=w(n)),i=0,o=e.length;o>i;)z(t,r=e[i++],n[r]);return t},H=function(t){var n=N.call(this,t=F(t,!0));return!(this===C&&i(D,t)&&!i(V,t))&&(!(n||!i(this,t)||!i(D,t)||i(this,L)&&this[L][t])||n)},Q=function(t,n){if(t=w(t),n=F(n,!0),t!==C||!i(D,n)||i(V,n)){var r=K(t,n);return!r||!i(D,n)||i(t,L)&&t[L][n]||(r.enumerable=!0),r}},$=function(t){for(var n,r=X(w(t)),e=[],o=0;r.length>o;)i(D,n=r[o++])||n==L||n==a||e.push(n);return e},tt=function(t){for(var n,r=t===C,e=X(r?V:w(t)),o=[],u=0;e.length>u;)!i(D,n=e[u++])||r&&!i(C,n)||o.push(D[n]);return o};q||(c((A=function(){if(this instanceof A)throw TypeError("Symbol is not a constructor!");var t=h(arguments.length>0?arguments[0]:void 0),n=function(r){this===C&&n.call(V,r),i(this,L)&&i(this[L],t)&&(this[L][t]=!1),G(this,t,S(1,r))};return o&&W&&G(C,t,{configurable:!0,set:n}),Y(t)}).prototype,"toString",(function(){return this._k})),U.f=Q,P.f=z,r("kJMx").f=O.f=$,r("UqcF").f=H,_.f=tt,o&&!r("LQAc")&&c(C,"propertyIsEnumerable",H,!0),p.f=function(t){return Y(v(t))}),u(u.G+u.W+u.F*!q,{Symbol:A});for(var nt="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),rt=0;nt.length>rt;)v(nt[rt++]);for(var et=M(v.store),it=0;et.length>it;)y(et[it++]);u(u.S+u.F*!q,"Symbol",{for:function(t){return i(k,t+="")?k[t]:k[t]=A(t)},keyFor:function(t){if(!B(t))throw TypeError(t+" is not a symbol!");for(var n in k)if(k[n]===t)return n},useSetter:function(){W=!0},useSimple:function(){W=!1}}),u(u.S+u.F*!q,"Object",{create:function(t,n){return void 0===n?E(t):J(E(t),n)},defineProperty:z,defineProperties:J,getOwnPropertyDescriptor:Q,getOwnPropertyNames:$,getOwnPropertySymbols:tt});var ot=f((function(){_.f(1)}));u(u.S+u.F*ot,"Object",{getOwnPropertySymbols:function(t){return _.f(b(t))}}),I&&u(u.S+u.F*(!q||f((function(){var t=A();return"[null]"!=T([t])||"{}"!=T({a:t})||"{}"!=T(Object(t))}))),"JSON",{stringify:function(t){for(var n,r,e=[t],i=1;arguments.length>i;)e.push(arguments[i++]);if(r=n=e[1],(m(n)||void 0!==t)&&!B(t))return d(n)||(n=function(t,n){if("function"==typeof r&&(n=r.call(this,t,n)),!B(n))return n}),e[1]=n,T.apply(I,e)}}),A.prototype[R]||r("Mukb")(A.prototype,R,A.prototype.valueOf),l(A,"Symbol"),l(Math,"Math",!0),l(e.JSON,"JSON",!0)},jm62:function(t,n,r){var e=r("XKFU"),i=r("mQtv"),o=r("aCFj"),u=r("EemH"),c=r("8a7r");e(e.S,"Object",{getOwnPropertyDescriptors:function(t){for(var n,r,e=o(t),a=u.f,f=i(e),s={},l=0;f.length>l;)void 0!==(r=a(e,n=f[l++]))&&c(s,n,r);return s}})},jmDH:function(t,n,r){t.exports=!r("KUxP")((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},jqX0:function(t,n,r){var e=r("XKFU"),i=r("jtBr");e(e.P+e.F*(Date.prototype.toISOString!==i),"Date",{toISOString:i})},jtBr:function(t,n,r){"use strict";var e=r("eeVq"),i=Date.prototype.getTime,o=Date.prototype.toISOString,u=function(t){return t>9?t:"0"+t};t.exports=e((function(){return"0385-07-25T07:06:39.999Z"!=o.call(new Date(-50000000000001))}))||!e((function(){o.call(new Date(NaN))}))?function(){if(!isFinite(i.call(this)))throw RangeError("Invalid time value");var t=this,n=t.getUTCFullYear(),r=t.getUTCMilliseconds(),e=n<0?"-":n>9999?"+":"";return e+("00000"+Math.abs(n)).slice(e?-6:-4)+"-"+u(t.getUTCMonth()+1)+"-"+u(t.getUTCDate())+"T"+u(t.getUTCHours())+":"+u(t.getUTCMinutes())+":"+u(t.getUTCSeconds())+"."+(r>99?r:"0"+u(r))+"Z"}:o},kJMx:function(t,n,r){var e=r("zhAb"),i=r("4R4u").concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return e(t,i)}},kcoS:function(t,n,r){var e=r("lvtm"),i=Math.pow,o=i(2,-52),u=i(2,-23),c=i(2,127)*(2-u),a=i(2,-126);t.exports=Math.fround||function(t){var n,r,i=Math.abs(t),f=e(t);return i<a?f*(i/a/u+1/o-1/o)*a*u:(r=(n=(1+u/o)*i)-(n-i))>c||r!=r?f*(1/0):f*r}},klPD:function(t,n,r){var e=r("hswa"),i=r("EemH"),o=r("OP3Y"),u=r("aagx"),c=r("XKFU"),a=r("RjD/"),f=r("y3w9"),s=r("0/R4");c(c.S,"Reflect",{set:function t(n,r,c){var l,h,v=arguments.length<4?n:arguments[3],p=i.f(f(n),r);if(!p){if(s(h=o(n)))return t(h,r,c,v);p=a(0)}if(u(p,"value")){if(!1===p.writable||!s(v))return!1;if(l=i.f(v,r)){if(l.get||l.set||!1===l.writable)return!1;l.value=c,e.f(v,r,l)}else e.f(v,r,a(0,c));return!0}return void 0!==p.set&&(p.set.call(v,c),!0)}})},knU9:function(t,n,r){var e=r("XKFU"),i=r("i5dc");i&&e(e.S,"Reflect",{setPrototypeOf:function(t,n){i.check(t,n);try{return i.set(t,n),!0}catch(t){return!1}}})},knhD:function(t,n,r){var e=r("XKFU");e(e.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},l0Rn:function(t,n,r){"use strict";var e=r("RYi7"),i=r("vhPU");t.exports=function(t){var n=String(i(this)),r="",o=e(t);if(o<0||o==1/0)throw RangeError("Count can't be negative");for(;o>0;(o>>>=1)&&(n+=n))1&o&&(r+=n);return r}},ln0Z:function(t,n,r){r("fA63"),t.exports=r("g3g5").String.trimRight},ls82:function(t,n,r){var e=function(t){"use strict";var n=Object.prototype,r=n.hasOwnProperty,e="function"==typeof Symbol?Symbol:{},i=e.iterator||"@@iterator",o=e.asyncIterator||"@@asyncIterator",u=e.toStringTag||"@@toStringTag";function c(t,n,r){return Object.defineProperty(t,n,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[n]}try{c({},"")}catch(t){c=function(t,n,r){return t[n]=r}}function a(t,n,r,e){var i=n&&n.prototype instanceof l?n:l,o=Object.create(i.prototype),u=new S(e||[]);return o._invoke=function(t,n,r){var e="suspendedStart";return function(i,o){if("executing"===e)throw new Error("Generator is already running");if("completed"===e){if("throw"===i)throw o;return O()}for(r.method=i,r.arg=o;;){var u=r.delegate;if(u){var c=b(u,r);if(c){if(c===s)continue;return c}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===e)throw e="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);e="executing";var a=f(t,n,r);if("normal"===a.type){if(e=r.done?"completed":"suspendedYield",a.arg===s)continue;return{value:a.arg,done:r.done}}"throw"===a.type&&(e="completed",r.method="throw",r.arg=a.arg)}}}(t,r,u),o}function f(t,n,r){try{return{type:"normal",arg:t.call(n,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=a;var s={};function l(){}function h(){}function v(){}var p={};c(p,i,(function(){return this}));var y=Object.getPrototypeOf,g=y&&y(y(E([])));g&&g!==n&&r.call(g,i)&&(p=g);var d=v.prototype=l.prototype=Object.create(p);function x(t){["next","throw","return"].forEach((function(n){c(t,n,(function(t){return this._invoke(n,t)}))}))}function m(t,n){var e;this._invoke=function(i,o){function u(){return new n((function(e,u){!function e(i,o,u,c){var a=f(t[i],t,o);if("throw"!==a.type){var s=a.arg,l=s.value;return l&&"object"==typeof l&&r.call(l,"__await")?n.resolve(l.__await).then((function(t){e("next",t,u,c)}),(function(t){e("throw",t,u,c)})):n.resolve(l).then((function(t){s.value=t,u(s)}),(function(t){return e("throw",t,u,c)}))}c(a.arg)}(i,o,e,u)}))}return e=e?e.then(u,u):u()}}function b(t,n){var r=t.iterator[n.method];if(void 0===r){if(n.delegate=null,"throw"===n.method){if(t.iterator.return&&(n.method="return",n.arg=void 0,b(t,n),"throw"===n.method))return s;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return s}var e=f(r,t.iterator,n.arg);if("throw"===e.type)return n.method="throw",n.arg=e.arg,n.delegate=null,s;var i=e.arg;return i?i.done?(n[t.resultName]=i.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=void 0),n.delegate=null,s):i:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,s)}function w(t){var n={tryLoc:t[0]};1 in t&&(n.catchLoc=t[1]),2 in t&&(n.finallyLoc=t[2],n.afterLoc=t[3]),this.tryEntries.push(n)}function F(t){var n=t.completion||{};n.type="normal",delete n.arg,t.completion=n}function S(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(w,this),this.reset(!0)}function E(t){if(t){var n=t[i];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var e=-1,o=function n(){for(;++e<t.length;)if(r.call(t,e))return n.value=t[e],n.done=!1,n;return n.value=void 0,n.done=!0,n};return o.next=o}}return{next:O}}function O(){return{value:void 0,done:!0}}return h.prototype=v,c(d,"constructor",v),c(v,"constructor",h),h.displayName=c(v,u,"GeneratorFunction"),t.isGeneratorFunction=function(t){var n="function"==typeof t&&t.constructor;return!!n&&(n===h||"GeneratorFunction"===(n.displayName||n.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,v):(t.__proto__=v,c(t,u,"GeneratorFunction")),t.prototype=Object.create(d),t},t.awrap=function(t){return{__await:t}},x(m.prototype),c(m.prototype,o,(function(){return this})),t.AsyncIterator=m,t.async=function(n,r,e,i,o){void 0===o&&(o=Promise);var u=new m(a(n,r,e,i),o);return t.isGeneratorFunction(r)?u:u.next().then((function(t){return t.done?t.value:u.next()}))},x(d),c(d,u,"Generator"),c(d,i,(function(){return this})),c(d,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var n=[];for(var r in t)n.push(r);return n.reverse(),function r(){for(;n.length;){var e=n.pop();if(e in t)return r.value=e,r.done=!1,r}return r.done=!0,r}},t.values=E,S.prototype={constructor:S,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(F),!t)for(var n in this)"t"===n.charAt(0)&&r.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var n=this;function e(r,e){return u.type="throw",u.arg=t,n.next=r,e&&(n.method="next",n.arg=void 0),!!e}for(var i=this.tryEntries.length-1;i>=0;--i){var o=this.tryEntries[i],u=o.completion;if("root"===o.tryLoc)return e("end");if(o.tryLoc<=this.prev){var c=r.call(o,"catchLoc"),a=r.call(o,"finallyLoc");if(c&&a){if(this.prev<o.catchLoc)return e(o.catchLoc,!0);if(this.prev<o.finallyLoc)return e(o.finallyLoc)}else if(c){if(this.prev<o.catchLoc)return e(o.catchLoc,!0)}else{if(!a)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return e(o.finallyLoc)}}}},abrupt:function(t,n){for(var e=this.tryEntries.length-1;e>=0;--e){var i=this.tryEntries[e];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var o=i;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=n&&n<=o.finallyLoc&&(o=null);var u=o?o.completion:{};return u.type=t,u.arg=n,o?(this.method="next",this.next=o.finallyLoc,s):this.complete(u)},complete:function(t,n){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&n&&(this.next=n),s},finish:function(t){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),F(r),s}},catch:function(t){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.tryLoc===t){var e=r.completion;if("throw"===e.type){var i=e.arg;F(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:E(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=void 0),s}},t}(t.exports);try{regeneratorRuntime=e}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}},lvtm:function(t,n){t.exports=Math.sign||function(t){return 0==(t=+t)||t!=t?t:t<0?-1:1}},m0Pp:function(t,n,r){var e=r("2OiF");t.exports=function(t,n,r){if(e(t),void 0===n)return t;switch(r){case 1:return function(r){return t.call(n,r)};case 2:return function(r,e){return t.call(n,r,e)};case 3:return function(r,e,i){return t.call(n,r,e,i)}}return function(){return t.apply(n,arguments)}}},mGWK:function(t,n,r){"use strict";var e=r("XKFU"),i=r("aCFj"),o=r("RYi7"),u=r("ne8i"),c=[].lastIndexOf,a=!!c&&1/[1].lastIndexOf(1,-0)<0;e(e.P+e.F*(a||!r("LyE8")(c)),"Array",{lastIndexOf:function(t){if(a)return c.apply(this,arguments)||0;var n=i(this),r=u(n.length),e=r-1;for(arguments.length>1&&(e=Math.min(e,o(arguments[1]))),e<0&&(e=r+e);e>=0;e--)if(e in n&&n[e]===t)return e||0;return-1}})},mQtv:function(t,n,r){var e=r("kJMx"),i=r("JiEa"),o=r("y3w9"),u=r("dyZX").Reflect;t.exports=u&&u.ownKeys||function(t){var n=e.f(o(t)),r=i.f;return r?n.concat(r(t)):n}},mYba:function(t,n,r){var e=r("aCFj"),i=r("EemH").f;r("Xtr8")("getOwnPropertyDescriptor",(function(){return function(t,n){return i(e(t),n)}}))},mura:function(t,n,r){var e=r("0/R4"),i=r("Z6vF").onFreeze;r("Xtr8")("preventExtensions",(function(t){return function(n){return t&&e(n)?t(i(n)):n}}))},nBIS:function(t,n,r){var e=r("0/R4"),i=Math.floor;t.exports=function(t){return!e(t)&&isFinite(t)&&i(t)===t}},nCnK:function(t,n,r){r("7DDg")("Uint32",4,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},nGyu:function(t,n,r){var e=r("K0xU")("unscopables"),i=Array.prototype;null==i[e]&&r("Mukb")(i,e,{}),t.exports=function(t){i[e][t]=!0}},nICZ:function(t,n){t.exports=function(t){try{return{e:!1,v:t()}}catch(t){return{e:!0,v:t}}}},nIY7:function(t,n,r){"use strict";r("OGtf")("big",(function(t){return function(){return t(this,"big","","")}}))},ne8i:function(t,n,r){var e=r("RYi7"),i=Math.min;t.exports=function(t){return t>0?i(e(t),9007199254740991):0}},nh4g:function(t,n,r){t.exports=!r("eeVq")((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},nsiH:function(t,n,r){"use strict";r("OGtf")("fontsize",(function(t){return function(n){return t(this,"font","size",n)}}))},nzyx:function(t,n,r){var e=r("XKFU"),i=r("LVwc");e(e.S+e.F*(i!=Math.expm1),"Math",{expm1:i})},oDIu:function(t,n,r){"use strict";var e=r("XKFU"),i=r("AvRE")(!1);e(e.P,"String",{codePointAt:function(t){return i(this,t)}})},"oZ/O":function(t,n,r){var e=r("XKFU"),i=r("y3w9"),o=Object.preventExtensions;e(e.S,"Reflect",{preventExtensions:function(t){i(t);try{return o&&o(t),!0}catch(t){return!1}}})},ol8x:function(t,n,r){var e=r("dyZX").navigator;t.exports=e&&e.userAgent||""},pIFo:function(t,n,r){"use strict";var e=r("y3w9"),i=r("S/j/"),o=r("ne8i"),u=r("RYi7"),c=r("A5AN"),a=r("Xxuz"),f=Math.max,s=Math.min,l=Math.floor,h=/\$([$&`']|\d\d?|<[^>]*>)/g,v=/\$([$&`']|\d\d?)/g;r("IU+Z")("replace",2,(function(t,n,r,p){return[function(e,i){var o=t(this),u=null==e?void 0:e[n];return void 0!==u?u.call(e,o,i):r.call(String(o),e,i)},function(t,n){var i=p(r,t,this,n);if(i.done)return i.value;var l=e(t),h=String(this),v="function"==typeof n;v||(n=String(n));var g=l.global;if(g){var d=l.unicode;l.lastIndex=0}for(var x=[];;){var m=a(l,h);if(null===m)break;if(x.push(m),!g)break;""===String(m[0])&&(l.lastIndex=c(h,o(l.lastIndex),d))}for(var b,w="",F=0,S=0;S<x.length;S++){m=x[S];for(var E=String(m[0]),O=f(s(u(m.index),h.length),0),U=[],_=1;_<m.length;_++)U.push(void 0===(b=m[_])?b:String(b));var P=m.groups;if(v){var M=[E].concat(U,O,h);void 0!==P&&M.push(P);var K=String(n.apply(void 0,M))}else K=y(E,h,O,U,P,n);O>=F&&(w+=h.slice(F,O)+K,F=O+E.length)}return w+h.slice(F)}];function y(t,n,e,o,u,c){var a=e+t.length,f=o.length,s=v;return void 0!==u&&(u=i(u),s=h),r.call(c,s,(function(r,i){var c;switch(i.charAt(0)){case"$":return"$";case"&":return t;case"`":return n.slice(0,e);case"'":return n.slice(a);case"<":c=u[i.slice(1,-1)];break;default:var s=+i;if(0===s)return r;if(s>f){var h=l(s/10);return 0===h?r:h<=f?void 0===o[h-1]?i.charAt(1):o[h-1]+i.charAt(1):r}c=o[s-1]}return void 0===c?"":c}))}}))},pbhE:function(t,n,r){"use strict";var e=r("2OiF");function i(t){var n,r;this.promise=new t((function(t,e){if(void 0!==n||void 0!==r)throw TypeError("Bad Promise constructor");n=t,r=e})),this.resolve=e(n),this.reject=e(r)}t.exports.f=function(t){return new i(t)}},"pp/T":function(t,n,r){var e=r("XKFU");e(e.S,"Math",{log2:function(t){return Math.log(t)/Math.LN2}})},qncB:function(t,n,r){var e=r("XKFU"),i=r("vhPU"),o=r("eeVq"),u=r("/e88"),c="["+u+"]",a=RegExp("^"+c+c+"*"),f=RegExp(c+c+"*$"),s=function(t,n,r){var i={},c=o((function(){return!!u[t]()||"
"!="
"[t]()})),a=i[t]=c?n(l):u[t];r&&(i[r]=a),e(e.P+e.F*c,"String",i)},l=s.trim=function(t,n){return t=String(i(t)),1&n&&(t=t.replace(a,"")),2&n&&(t=t.replace(f,"")),t};t.exports=s},quPj:function(t,n,r){var e=r("0/R4"),i=r("LZWt"),o=r("K0xU")("match");t.exports=function(t){var n;return e(t)&&(void 0!==(n=t[o])?!!n:"RegExp"==i(t))}},r1bV:function(t,n,r){r("7DDg")("Uint16",2,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},rE2o:function(t,n,r){r("OnI7")("asyncIterator")},rGqo:function(t,n,r){for(var e=r("yt8O"),i=r("DVgA"),o=r("KroJ"),u=r("dyZX"),c=r("Mukb"),a=r("hPIQ"),f=r("K0xU"),s=f("iterator"),l=f("toStringTag"),h=a.Array,v={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},p=i(v),y=0;y<p.length;y++){var g,d=p[y],x=v[d],m=u[d],b=m&&m.prototype;if(b&&(b[s]||c(b,s,h),b[l]||c(b,l,d),a[d]=h,x))for(g in e)b[g]||o(b,g,e[g],!0)}},rr1i:function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},rvZc:function(t,n,r){"use strict";var e=r("XKFU"),i=r("ne8i"),o=r("0sh+"),u="".endsWith;e(e.P+e.F*r("UUeW")("endsWith"),"String",{endsWith:function(t){var n=o(this,t,"endsWith"),r=arguments.length>1?arguments[1]:void 0,e=i(n.length),c=void 0===r?e:Math.min(i(r),e),a=String(t);return u?u.call(n,a,c):n.slice(c-a.length,c)===a}})},s5qY:function(t,n,r){var e=r("0/R4");t.exports=function(t,n){if(!e(t)||t._t!==n)throw TypeError("Incompatible receiver, "+n+" required!");return t}},sFw1:function(t,n,r){r("7DDg")("Int8",1,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},sMXx:function(t,n,r){"use strict";var e=r("Ugos");r("XKFU")({target:"RegExp",proto:!0,forced:e!==/./.exec},{exec:e})},sbF8:function(t,n,r){var e=r("XKFU"),i=r("nBIS"),o=Math.abs;e(e.S,"Number",{isSafeInteger:function(t){return i(t)&&o(t)<=9007199254740991}})},tUrg:function(t,n,r){"use strict";r("OGtf")("link",(function(t){return function(n){return t(this,"a","href",n)}}))},tuSo:function(t,n,r){r("7DDg")("Int32",4,(function(t){return function(n,r,e){return t(this,n,r,e)}}))},"tyy+":function(t,n,r){var e=r("XKFU"),i=r("11IZ");e(e.G+e.F*(parseFloat!=i),{parseFloat:i})},uhZd:function(t,n,r){var e=r("XKFU"),i=r("EemH").f,o=r("y3w9");e(e.S,"Reflect",{deleteProperty:function(t,n){var r=i(o(t),n);return!(r&&!r.configurable)&&delete t[n]}})},upKx:function(t,n,r){"use strict";var e=r("S/j/"),i=r("d/Gc"),o=r("ne8i");t.exports=[].copyWithin||function(t,n){var r=e(this),u=o(r.length),c=i(t,u),a=i(n,u),f=arguments.length>2?arguments[2]:void 0,s=Math.min((void 0===f?u:i(f,u))-a,u-c),l=1;for(a<c&&c<a+s&&(l=-1,a+=s-1,c+=s-1);s-- >0;)a in r?r[c]=r[a]:delete r[c],c+=l,a+=l;return r}},vKrd:function(t,n,r){var e=r("y3w9"),i=r("0/R4"),o=r("pbhE");t.exports=function(t,n){if(e(t),i(n)&&n.constructor===t)return n;var r=o.f(t);return(0,r.resolve)(n),r.promise}},vhPU:function(t,n){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},vvmO:function(t,n,r){var e=r("LZWt");t.exports=function(t,n){if("number"!=typeof t&&"Number"!=e(t))throw TypeError(n);return+t}},w2a5:function(t,n,r){var e=r("aCFj"),i=r("ne8i"),o=r("d/Gc");t.exports=function(t){return function(n,r,u){var c,a=e(n),f=i(a.length),s=o(u,f);if(t&&r!=r){for(;f>s;)if((c=a[s++])!=c)return!0}else for(;f>s;s++)if((t||s in a)&&a[s]===r)return t||s||0;return!t&&-1}}},wCsR:function(t,n,r){"use strict";var e=r("ZD67"),i=r("s5qY");r("4LiD")("WeakSet",(function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}}),{add:function(t){return e.def(i(this,"WeakSet"),t,!0)}},e,!1,!0)},wDwx:function(t,n,r){r("rE2o"),t.exports=r("N8g3").f("asyncIterator")},wYy3:function(t,n,r){r("9XZr"),t.exports=r("g3g5").String.padStart},wmvG:function(t,n,r){"use strict";var e=r("hswa").f,i=r("Kuth"),o=r("3Lyj"),u=r("m0Pp"),c=r("9gX7"),a=r("SlkY"),f=r("Afnz"),s=r("1TsA"),l=r("elZq"),h=r("nh4g"),v=r("Z6vF").fastKey,p=r("s5qY"),y=h?"_s":"size",g=function(t,n){var r,e=v(n);if("F"!==e)return t._i[e];for(r=t._f;r;r=r.n)if(r.k==n)return r};t.exports={getConstructor:function(t,n,r,f){var s=t((function(t,e){c(t,s,n,"_i"),t._t=n,t._i=i(null),t._f=void 0,t._l=void 0,t[y]=0,null!=e&&a(e,r,t[f],t)}));return o(s.prototype,{clear:function(){for(var t=p(this,n),r=t._i,e=t._f;e;e=e.n)e.r=!0,e.p&&(e.p=e.p.n=void 0),delete r[e.i];t._f=t._l=void 0,t[y]=0},delete:function(t){var r=p(this,n),e=g(r,t);if(e){var i=e.n,o=e.p;delete r._i[e.i],e.r=!0,o&&(o.n=i),i&&(i.p=o),r._f==e&&(r._f=i),r._l==e&&(r._l=o),r[y]--}return!!e},forEach:function(t){p(this,n);for(var r,e=u(t,arguments.length>1?arguments[1]:void 0,3);r=r?r.n:this._f;)for(e(r.v,r.k,this);r&&r.r;)r=r.p},has:function(t){return!!g(p(this,n),t)}}),h&&e(s.prototype,"size",{get:function(){return p(this,n)[y]}}),s},def:function(t,n,r){var e,i,o=g(t,n);return o?o.v=r:(t._l=o={i:i=v(n,!0),k:n,v:r,p:e=t._l,n:void 0,r:!1},t._f||(t._f=o),e&&(e.n=o),t[y]++,"F"!==i&&(t._i[i]=o)),t},getEntry:g,setStrong:function(t,n,r){f(t,n,(function(t,r){this._t=p(t,n),this._k=r,this._l=void 0}),(function(){for(var t=this._k,n=this._l;n&&n.r;)n=n.p;return this._t&&(this._l=n=n?n.n:this._t._f)?s(0,"keys"==t?n.k:"values"==t?n.v:[n.k,n.v]):(this._t=void 0,s(1))}),r?"entries":"values",!r,!0),l(n)}}},x8Yj:function(t,n,r){var e=r("XKFU"),i=r("LVwc"),o=Math.exp;e(e.S,"Math",{tanh:function(t){var n=i(t=+t),r=i(-t);return n==1/0?1:r==1/0?-1:(n-r)/(o(t)+o(-t))}})},x8ZO:function(t,n,r){var e=r("XKFU"),i=Math.abs;e(e.S,"Math",{hypot:function(t,n){for(var r,e,o=0,u=0,c=arguments.length,a=0;u<c;)a<(r=i(arguments[u++]))?(o=o*(e=a/r)*e+1,a=r):o+=r>0?(e=r/a)*e:r;return a===1/0?1/0:a*Math.sqrt(o)}})},"xF/b":function(t,n,r){"use strict";var e=r("EWmC"),i=r("0/R4"),o=r("ne8i"),u=r("m0Pp"),c=r("K0xU")("isConcatSpreadable");t.exports=function t(n,r,a,f,s,l,h,v){for(var p,y,g=s,d=0,x=!!h&&u(h,v,3);d<f;){if(d in a){if(p=x?x(a[d],d,r):a[d],y=!1,i(p)&&(y=void 0!==(y=p[c])?!!y:e(p)),y&&l>0)g=t(n,r,p,o(p.length),g,l-1)-1;else{if(g>=9007199254740991)throw TypeError();n[g]=p}g++}d++}return g}},xfY5:function(t,n,r){"use strict";var e=r("dyZX"),i=r("aagx"),o=r("LZWt"),u=r("Xbzi"),c=r("apmT"),a=r("eeVq"),f=r("kJMx").f,s=r("EemH").f,l=r("hswa").f,h=r("qncB").trim,v=e.Number,p=v,y=v.prototype,g="Number"==o(r("Kuth")(y)),d="trim"in String.prototype,x=function(t){var n=c(t,!1);if("string"==typeof n&&n.length>2){var r,e,i,o=(n=d?n.trim():h(n,3)).charCodeAt(0);if(43===o||45===o){if(88===(r=n.charCodeAt(2))||120===r)return NaN}else if(48===o){switch(n.charCodeAt(1)){case 66:case 98:e=2,i=49;break;case 79:case 111:e=8,i=55;break;default:return+n}for(var u,a=n.slice(2),f=0,s=a.length;f<s;f++)if((u=a.charCodeAt(f))<48||u>i)return NaN;return parseInt(a,e)}}return+n};if(!v(" 0o1")||!v("0b1")||v("+0x1")){v=function(t){var n=arguments.length<1?0:t,r=this;return r instanceof v&&(g?a((function(){y.valueOf.call(r)})):"Number"!=o(r))?u(new p(x(n)),r,v):x(n)};for(var m,b=r("nh4g")?f(p):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),w=0;b.length>w;w++)i(p,m=b[w])&&!i(v,m)&&l(v,m,s(p,m));v.prototype=y,y.constructor=v,r("KroJ")(e,"Number",v)}},xm80:function(t,n,r){"use strict";var e=r("XKFU"),i=r("D4iV"),o=r("7Qtz"),u=r("y3w9"),c=r("d/Gc"),a=r("ne8i"),f=r("0/R4"),s=r("dyZX").ArrayBuffer,l=r("69bn"),h=o.ArrayBuffer,v=o.DataView,p=i.ABV&&s.isView,y=h.prototype.slice,g=i.VIEW;e(e.G+e.W+e.F*(s!==h),{ArrayBuffer:h}),e(e.S+e.F*!i.CONSTR,"ArrayBuffer",{isView:function(t){return p&&p(t)||f(t)&&g in t}}),e(e.P+e.U+e.F*r("eeVq")((function(){return!new h(2).slice(1,void 0).byteLength})),"ArrayBuffer",{slice:function(t,n){if(void 0!==y&&void 0===n)return y.call(u(this),t);for(var r=u(this).byteLength,e=c(t,r),i=c(void 0===n?r:n,r),o=new(l(this,h))(a(i-e)),f=new v(this),s=new v(o),p=0;e<i;)s.setUint8(p++,f.getUint8(e++));return o}}),r("elZq")("ArrayBuffer")},xpiv:function(t,n,r){var e=r("XKFU");e(e.S,"Reflect",{ownKeys:r("mQtv")})},xpql:function(t,n,r){t.exports=!r("nh4g")&&!r("eeVq")((function(){return 7!=Object.defineProperty(r("Iw71")("div"),"a",{get:function(){return 7}}).a}))},y3w9:function(t,n,r){var e=r("0/R4");t.exports=function(t){if(!e(t))throw TypeError(t+" is not an object!");return t}},yM4b:function(t,n,r){var e=r("K0xU")("toPrimitive"),i=Date.prototype;e in i||r("Mukb")(i,e,r("g4EE"))},ylqs:function(t,n){var r=0,e=Math.random();t.exports=function(t){return"Symbol(".concat
|