Version Description
27-05-2020 =
Feature - Translations of Plugin FR/DE/NL/EN/ES
Fix - Update order status on payment refund
Fix - 404 response during redirection on checkout when Polylang plugin is active
Fix - Crash on calling a WC 3.0 method, fallback method for BC
Fix - Remove custom due date for bank transfer payment
Fix - Performance issues on transient functions
Fix - Action
*_customer_return_payment_success
backwards compatibility brokenFix - Apple Pay is available after a failed payment on not compatible devices
Fix - Deprecated: idn_to_ascii() (by @sandeshjangam)
Download this release
Release Info
Developer | carmen222 |
Plugin | Mollie Payments for WooCommerce |
Version | 5.6.1 |
Comparing to | |
See all releases |
Code changes from version 5.5.1 to 5.6.1
- inc/settings/mollie_components.php +5 -5
- inc/woocommerce.php +25 -1
- languages/mollie-payments-for-woocommerce-de_DE.mo +0 -0
- languages/mollie-payments-for-woocommerce-de_DE.po +1110 -0
- languages/mollie-payments-for-woocommerce-de_DE_formal.mo +0 -0
- languages/mollie-payments-for-woocommerce-de_DE_formal.po +1110 -0
- languages/mollie-payments-for-woocommerce-es_ES.mo +0 -0
- languages/mollie-payments-for-woocommerce-es_ES.po +1110 -0
- languages/mollie-payments-for-woocommerce-fr_FR.mo +0 -0
- languages/mollie-payments-for-woocommerce-fr_FR.po +1110 -0
- languages/mollie-payments-for-woocommerce-it_IT.mo +0 -0
- languages/mollie-payments-for-woocommerce-it_IT.po +1110 -0
- languages/mollie-payments-for-woocommerce-nl_BE.mo +0 -0
- languages/mollie-payments-for-woocommerce-nl_BE.po +1110 -0
- languages/mollie-payments-for-woocommerce-nl_NL.mo +0 -0
- languages/mollie-payments-for-woocommerce-nl_NL.po +1110 -0
- languages/mollie-payments-for-woocommerce-nl_NL_formal.mo +0 -0
- languages/mollie-payments-for-woocommerce-nl_NL_formal.po +1110 -0
- mollie-payments-for-woocommerce.php +4 -4
- readme.txt +14 -1
- src/Mollie/WC/Gateway/Abstract.php +437 -228
- src/Mollie/WC/Gateway/BankTransfer.php +0 -39
- src/Mollie/WC/Helper/Api.php +2 -2
- src/Mollie/WC/Helper/Data.php +7 -22
- src/Mollie/WC/Helper/Settings.php +3 -3
- src/Mollie/WC/Helper/Status.php +2 -2
- src/Mollie/WC/Payment/Order.php +34 -14
- src/Mollie/WC/Payment/OrderItemsRefunder.php +3 -3
- src/Mollie/WC/Payment/Payment.php +1 -1
- src/Mollie/WC/Plugin.php +2 -2
- src/subscriptions_status_check_functions.php +2 -2
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +5 -5
inc/settings/mollie_components.php
CHANGED
@@ -33,7 +33,7 @@ return [
|
|
33 |
'id' => 'mollie_components_' . Mollie_WC_Components_StylesPropertiesDictionary::FONT_SIZE,
|
34 |
'title' => _x('Font Size', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
35 |
'desc_tip' => _x(
|
36 |
-
'
|
37 |
'Mollie Components Settings',
|
38 |
'mollie-payments-for-woocommerce'
|
39 |
),
|
@@ -46,7 +46,7 @@ return [
|
|
46 |
'default' => 'normal',
|
47 |
'options' => [
|
48 |
'lighter' => _x('Lighter', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
49 |
-
'normal' => _x('
|
50 |
'bolder' => _x('Bold', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
51 |
],
|
52 |
],
|
@@ -70,7 +70,7 @@ return [
|
|
70 |
'id' => 'mollie_components_' . Mollie_WC_Components_StylesPropertiesDictionary::PADDING,
|
71 |
'title' => _x('Padding', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
72 |
'desc_tip' => _x(
|
73 |
-
'Add padding to the components.
|
74 |
'Mollie Components Settings',
|
75 |
'mollie-payments-for-woocommerce'
|
76 |
),
|
@@ -79,7 +79,7 @@ return [
|
|
79 |
Mollie_WC_Components_StylesPropertiesDictionary::TEXT_ALIGN => [
|
80 |
'type' => 'select',
|
81 |
'id' => 'mollie_components_' . Mollie_WC_Components_StylesPropertiesDictionary::TEXT_ALIGN,
|
82 |
-
'title' => _x('Text
|
83 |
'default' => 'left',
|
84 |
'options' => [
|
85 |
'left' => _x('Left', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
@@ -91,7 +91,7 @@ return [
|
|
91 |
Mollie_WC_Components_StylesPropertiesDictionary::TEXT_TRANSFORM => [
|
92 |
'type' => 'select',
|
93 |
'id' => 'mollie_components_' . Mollie_WC_Components_StylesPropertiesDictionary::TEXT_TRANSFORM,
|
94 |
-
'title' => _x('Text
|
95 |
'default' => 'none',
|
96 |
'options' => [
|
97 |
'none' => _x(
|
33 |
'id' => 'mollie_components_' . Mollie_WC_Components_StylesPropertiesDictionary::FONT_SIZE,
|
34 |
'title' => _x('Font Size', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
35 |
'desc_tip' => _x(
|
36 |
+
'Defines the component font size. Allowed units: \'em\', \'px\', \'rem\'.',
|
37 |
'Mollie Components Settings',
|
38 |
'mollie-payments-for-woocommerce'
|
39 |
),
|
46 |
'default' => 'normal',
|
47 |
'options' => [
|
48 |
'lighter' => _x('Lighter', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
49 |
+
'normal' => _x('Regular', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
50 |
'bolder' => _x('Bold', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
51 |
],
|
52 |
],
|
70 |
'id' => 'mollie_components_' . Mollie_WC_Components_StylesPropertiesDictionary::PADDING,
|
71 |
'title' => _x('Padding', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
72 |
'desc_tip' => _x(
|
73 |
+
'Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`.',
|
74 |
'Mollie Components Settings',
|
75 |
'mollie-payments-for-woocommerce'
|
76 |
),
|
79 |
Mollie_WC_Components_StylesPropertiesDictionary::TEXT_ALIGN => [
|
80 |
'type' => 'select',
|
81 |
'id' => 'mollie_components_' . Mollie_WC_Components_StylesPropertiesDictionary::TEXT_ALIGN,
|
82 |
+
'title' => _x('Align Text', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
83 |
'default' => 'left',
|
84 |
'options' => [
|
85 |
'left' => _x('Left', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
91 |
Mollie_WC_Components_StylesPropertiesDictionary::TEXT_TRANSFORM => [
|
92 |
'type' => 'select',
|
93 |
'id' => 'mollie_components_' . Mollie_WC_Components_StylesPropertiesDictionary::TEXT_TRANSFORM,
|
94 |
+
'title' => _x('Transform Text ', 'Mollie Components Settings', 'mollie-payments-for-woocommerce'),
|
95 |
'default' => 'none',
|
96 |
'options' => [
|
97 |
'none' => _x(
|
inc/woocommerce.php
CHANGED
@@ -58,4 +58,28 @@ function mollieWooCommerceOrderKey(WC_Order $order)
|
|
58 |
? $order->order_key
|
59 |
: $order->get_order_key();
|
60 |
}
|
61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
? $order->order_key
|
59 |
: $order->get_order_key();
|
60 |
}
|
61 |
+
if (!function_exists('wc_string_to_bool'))
|
62 |
+
{
|
63 |
+
/**
|
64 |
+
* Converts a string (e.g. 'yes' or 'no') to a bool.
|
65 |
+
*
|
66 |
+
* @since 3.0.0
|
67 |
+
* @param string $string String to convert.
|
68 |
+
* @return bool
|
69 |
+
*/
|
70 |
+
function wc_string_to_bool( $string ) {
|
71 |
+
return is_bool( $string ) ? $string : ( 'yes' === strtolower( $string ) || 1 === $string || 'true' === strtolower( $string ) || '1' === $string );
|
72 |
+
}
|
73 |
+
}
|
74 |
+
/**
|
75 |
+
* Mimics wc_string_to_bool
|
76 |
+
* @param $string
|
77 |
+
*
|
78 |
+
* @return bool
|
79 |
+
*/
|
80 |
+
function mollieWooCommerceStringToBoolOption($string)
|
81 |
+
{
|
82 |
+
return is_bool($string) ? $string : ('yes' === strtolower(
|
83 |
+
$string
|
84 |
+
) || 1 === $string || 'true' === strtolower($string) || '1' === $string);
|
85 |
+
}
|
languages/mollie-payments-for-woocommerce-de_DE.mo
ADDED
Binary file
|
languages/mollie-payments-for-woocommerce-de_DE.po
ADDED
@@ -0,0 +1,1110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Development (trunk) in German
|
2 |
+
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Development (trunk) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2020-05-18 16:40+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/2.4.0-alpha\n"
|
11 |
+
"Language: de\n"
|
12 |
+
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Development (trunk)\n"
|
13 |
+
|
14 |
+
#: inc/settings/mollie_components_enabler.php:7
|
15 |
+
msgid "Enable the Mollie Components for this Gateway"
|
16 |
+
msgstr "Mollie-Komponenten für dieses Portal aktivieren"
|
17 |
+
|
18 |
+
#: inc/settings/mollie_components_enabler.php:6
|
19 |
+
msgid "Enable Mollie Components"
|
20 |
+
msgstr "Mollie-Komponenten aktivieren"
|
21 |
+
|
22 |
+
#: inc/settings/mollie_components.php:157
|
23 |
+
msgctxt "Mollie Components Settings"
|
24 |
+
msgid "Background Color for invalid input."
|
25 |
+
msgstr "Hintergrundfarbe bei ungültiger Eingabe."
|
26 |
+
|
27 |
+
#: inc/settings/mollie_components.php:146
|
28 |
+
msgctxt "Mollie Components Settings"
|
29 |
+
msgid "Text Color for invalid input."
|
30 |
+
msgstr "Textfarbe bei ungültiger Eingabe."
|
31 |
+
|
32 |
+
#: inc/settings/mollie_components.php:136
|
33 |
+
msgctxt "Mollie Components Settings"
|
34 |
+
msgid "Invalid Status Styles"
|
35 |
+
msgstr "Format für invalide Status"
|
36 |
+
|
37 |
+
#: inc/settings/mollie_components.php:122
|
38 |
+
msgctxt "Mollie Components Settings"
|
39 |
+
msgid "Full Size Kana"
|
40 |
+
msgstr "Gesamte Breite Kana"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_components.php:117
|
43 |
+
msgctxt "Mollie Components Settings"
|
44 |
+
msgid "Full Width"
|
45 |
+
msgstr "Gesamte Breite"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_components.php:112
|
48 |
+
msgctxt "Mollie Components Settings"
|
49 |
+
msgid "Lowercase"
|
50 |
+
msgstr "Kleinbuchstaben"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_components.php:107
|
53 |
+
msgctxt "Mollie Components Settings"
|
54 |
+
msgid "Uppercase"
|
55 |
+
msgstr "Großbuchstaben"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_components.php:102
|
58 |
+
msgctxt "Mollie Components Settings"
|
59 |
+
msgid "Capitalize"
|
60 |
+
msgstr "Großschreibung"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_components.php:97
|
63 |
+
msgctxt "Mollie Components Settings"
|
64 |
+
msgid "None"
|
65 |
+
msgstr "Keine"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_components.php:94
|
68 |
+
msgctxt "Mollie Components Settings"
|
69 |
+
msgid "Transform Text"
|
70 |
+
msgstr "Text transformieren"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_components.php:88
|
73 |
+
msgctxt "Mollie Components Settings"
|
74 |
+
msgid "Justify"
|
75 |
+
msgstr "Justieren"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_components.php:87
|
78 |
+
msgctxt "Mollie Components Settings"
|
79 |
+
msgid "Center"
|
80 |
+
msgstr "Zentrieren"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_components.php:86
|
83 |
+
msgctxt "Mollie Components Settings"
|
84 |
+
msgid "Right"
|
85 |
+
msgstr "Rechts"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_components.php:85
|
88 |
+
msgctxt "Mollie Components Settings"
|
89 |
+
msgid "Left"
|
90 |
+
msgstr "Links"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_components.php:82
|
93 |
+
msgctxt "Mollie Components Settings"
|
94 |
+
msgid "Align Text"
|
95 |
+
msgstr "Text ausrichten"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_components.php:72
|
98 |
+
msgctxt "Mollie Components Settings"
|
99 |
+
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
100 |
+
msgstr "Füge Abstände zu den Komponenten hinzu. Beispiele für erlaubte Einheiten: ‚16px 16px 16px 16px‘, ‚em‘, ‚px‘, ‚rem‘."
|
101 |
+
|
102 |
+
#: inc/settings/mollie_components.php:71
|
103 |
+
msgctxt "Mollie Components Settings"
|
104 |
+
msgid "Padding"
|
105 |
+
msgstr "Abstände"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_components.php:62
|
108 |
+
msgctxt "Mollie Components Settings"
|
109 |
+
msgid "Line Height"
|
110 |
+
msgstr "Zeilenhöhe"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_components.php:56
|
113 |
+
msgctxt "Mollie Components Settings"
|
114 |
+
msgid "Letter Spacing"
|
115 |
+
msgstr "Zeichenabstand"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_components.php:50
|
118 |
+
msgctxt "Mollie Components Settings"
|
119 |
+
msgid "Bold"
|
120 |
+
msgstr "Fett"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_components.php:49
|
123 |
+
msgctxt "Mollie Components Settings"
|
124 |
+
msgid "Regular"
|
125 |
+
msgstr "Regular"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_components.php:48
|
128 |
+
msgctxt "Mollie Components Settings"
|
129 |
+
msgid "Lighter"
|
130 |
+
msgstr "Schmaler"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_components.php:45
|
133 |
+
msgctxt "Mollie Components Settings"
|
134 |
+
msgid "Font Weight"
|
135 |
+
msgstr "Schriftbreite"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_components.php:35
|
138 |
+
msgctxt "Mollie Components Settings"
|
139 |
+
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
140 |
+
msgstr "Die Schriftgröße legt die Größe der Schrift innerhalb der Komponenten fest. Erlaubte Einheiten: ‚em‘, ‚px‘, ‚rem‘."
|
141 |
+
|
142 |
+
#: inc/settings/mollie_components.php:34
|
143 |
+
msgctxt "Mollie Components Settings"
|
144 |
+
msgid "Font Size"
|
145 |
+
msgstr "Schriftgröße"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_components.php:28
|
148 |
+
msgctxt "Mollie Components Settings"
|
149 |
+
msgid "Placeholder Color"
|
150 |
+
msgstr "Platzhalterfarbe"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145
|
153 |
+
msgctxt "Mollie Components Settings"
|
154 |
+
msgid "Text Color"
|
155 |
+
msgstr "Textfarbe"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156
|
158 |
+
msgctxt "Mollie Components Settings"
|
159 |
+
msgid "Background Color"
|
160 |
+
msgstr "Hintergrundfarbe"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_components.php:7
|
163 |
+
msgctxt "Mollie Components Settings"
|
164 |
+
msgid "Base Styles"
|
165 |
+
msgstr "Basisformat"
|
166 |
+
|
167 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2056
|
168 |
+
msgid "Secure payments provided by "
|
169 |
+
msgstr "Sichere Zahlungen bereitgestellt durch"
|
170 |
+
|
171 |
+
#: src/Mollie/WC/Plugin.php:431
|
172 |
+
msgid "An unknown error occurred, please check the card fields."
|
173 |
+
msgstr "Ein unbekannter Fehler ist aufgetreten, bitte überprüfe die Kartenfelder."
|
174 |
+
|
175 |
+
#: src/Mollie/WC/Plugin.php:424
|
176 |
+
msgid "Verification Code"
|
177 |
+
msgstr "Kartenprüfnummer"
|
178 |
+
|
179 |
+
#: src/Mollie/WC/Plugin.php:420
|
180 |
+
msgid "Expiry Date"
|
181 |
+
msgstr "Ablaufdatum"
|
182 |
+
|
183 |
+
#: src/Mollie/WC/Plugin.php:412
|
184 |
+
msgid "Card Holder"
|
185 |
+
msgstr "Karteninhaber"
|
186 |
+
|
187 |
+
#: src/Mollie/WC/Settings/Page/Components.php:10
|
188 |
+
msgid "Mollie Components"
|
189 |
+
msgstr "Mollie-Komponenten"
|
190 |
+
|
191 |
+
#: src/Mollie/WC/Plugin.php:416
|
192 |
+
msgid "Card Number"
|
193 |
+
msgstr "Kartennummer"
|
194 |
+
|
195 |
+
#: src/Mollie/WC/Plugin.php:306
|
196 |
+
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
197 |
+
msgstr "%1$s stornierte Artikel bei WooCommerce und Mollie."
|
198 |
+
|
199 |
+
#: src/Mollie/WC/Plugin.php:288
|
200 |
+
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
201 |
+
msgstr "%1$s erstattete Artikel bei WooCommerce und Mollie."
|
202 |
+
|
203 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
204 |
+
msgid "Empty WooCommerce order items or mollie order lines."
|
205 |
+
msgstr "Leere WooCommerce-Auftragspositionen oder Mollie-Auftragszeilen."
|
206 |
+
|
207 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
208 |
+
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
209 |
+
msgstr "Die Auftragspositions-ID zum folgenden Remote-Artikel konnte nicht abgerufen werden: %1$s."
|
210 |
+
|
211 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
212 |
+
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
213 |
+
msgstr "Eine der WooCommerce-Auftragspositionen stimmt nicht mit dem entsprechenden Metawert für die ID des Rückerstattungsartikels der Mollie-Auftragsposition überein."
|
214 |
+
|
215 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:115
|
216 |
+
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."
|
217 |
+
msgstr "Mollie erlaubt keine teilweise Rückerstattung des vollen Betrags oder der vollen Menge mindestens einer Auftragszeile."
|
218 |
+
|
219 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
220 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:159
|
221 |
+
msgid "Order completed using %1$s payment (%2$s)."
|
222 |
+
msgstr "Vorgang über %1$s-Bezahlung (%2$s) erfolgt."
|
223 |
+
|
224 |
+
#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer
|
225 |
+
#. Account number
|
226 |
+
#: src/Mollie/WC/Gateway/MyBank.php:73
|
227 |
+
msgid "Payment completed by <strong>%1$s</strong> - %2$s"
|
228 |
+
msgstr "Zahlung durch <strong>%1$s</strong> - %2$s erfolgt"
|
229 |
+
|
230 |
+
#: src/Mollie/WC/Gateway/MyBank.php:44
|
231 |
+
msgid "To accept payments via MyBank"
|
232 |
+
msgstr "Um Bezahlungen über MyBank zu akzeptieren"
|
233 |
+
|
234 |
+
#: src/Mollie/WC/Gateway/MyBank.php:36
|
235 |
+
msgid "MyBank"
|
236 |
+
msgstr "MyBank"
|
237 |
+
|
238 |
+
#: src/Mollie/WC/Gateway/Applepay.php:45
|
239 |
+
msgid "To accept payments via Apple Pay"
|
240 |
+
msgstr "Um Bezahlungen über Apple Pay zu akzeptieren"
|
241 |
+
|
242 |
+
#: src/Mollie/WC/Gateway/Applepay.php:37
|
243 |
+
msgid "Apple Pay"
|
244 |
+
msgstr "Apple Pay"
|
245 |
+
|
246 |
+
#. translators: Placeholder 1: customer billing email
|
247 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:64
|
248 |
+
msgid "Payment completed by <strong>%s</strong>."
|
249 |
+
msgstr "Zahlung durch <strong>%s</strong> erfolgt."
|
250 |
+
|
251 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
252 |
+
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
253 |
+
msgstr "Um Bezahlungen über Przelewy24 zu akzeptieren, wird für jede Bezahlung eine Kunden-E-Mail benötigt."
|
254 |
+
|
255 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
256 |
+
msgid "Przelewy24"
|
257 |
+
msgstr "Przelewy24"
|
258 |
+
|
259 |
+
#: src/Mollie/WC/Helper/Status.php:89 mollie-payments-for-WooCommerce.php:83
|
260 |
+
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."
|
261 |
+
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."
|
262 |
+
|
263 |
+
#: src/Mollie/WC/Payment/Order.php:1029
|
264 |
+
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
265 |
+
msgstr "Erstattungsbetrag von %s erstatteten %s bei WooCommerce und Mollie.%s Erstattungs-ID: %s."
|
266 |
+
|
267 |
+
#: src/Mollie/WC/Payment/Order.php:946
|
268 |
+
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
269 |
+
msgstr "%sx %s erstattet für %s%s bei WooCommerce und Mollie.%s Erstattungs-ID: %s."
|
270 |
+
|
271 |
+
#: src/Mollie/WC/Payment/Order.php:930
|
272 |
+
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
273 |
+
msgstr "%sx %s storniert für %s%s bei WooCommerce und Mollie."
|
274 |
+
|
275 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
276 |
+
#: src/Mollie/WC/Payment/Order.php:438
|
277 |
+
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!"
|
278 |
+
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."
|
279 |
+
|
280 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
281 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1206
|
282 |
+
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use them)."
|
283 |
+
msgstr "%s-Bezahlung über Mollie zurückgebucht (%s). Abonnementstatus aktualisiert, bitte prüfen (und, falls verwendet, Produktbestände anpassen)."
|
284 |
+
|
285 |
+
#: src/Mollie/WC/Helper/Settings.php:624
|
286 |
+
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
287 |
+
msgstr "Um Klarna-Bezahlungen über Mollie zu akzeptieren, müssen alle standardmäßigen Felder im WooCommerce-Bezahlvorgang aktiviert und verpflichtend sein. Vergewissere dich, dass dies der Fall ist."
|
288 |
+
|
289 |
+
#: src/Mollie/WC/Payment/Payment.php:39
|
290 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
291 |
+
msgid "Order"
|
292 |
+
msgstr "Bestellung"
|
293 |
+
|
294 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
295 |
+
#: src/Mollie/WC/Payment/Payment.php:351
|
296 |
+
msgid "%s payment (%s) cancelled ."
|
297 |
+
msgstr "%s-Bezahlvorgang (%s) abgebrochen."
|
298 |
+
|
299 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
300 |
+
#: src/Mollie/WC/Payment/Order.php:708
|
301 |
+
msgid "%s order (%s) expired ."
|
302 |
+
msgstr "%s-Bestellung (%s) abgelaufen."
|
303 |
+
|
304 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
305 |
+
#: src/Mollie/WC/Payment/Order.php:667
|
306 |
+
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
307 |
+
msgstr "%s-Bestellung (%s) abgelaufen, wegen einer weiteren offenen Zahlung (%s) jedoch nicht abgebrochen."
|
308 |
+
|
309 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
310 |
+
#: src/Mollie/WC/Payment/Order.php:548
|
311 |
+
msgid "%s order (%s) cancelled ."
|
312 |
+
msgstr "%s-Bestellung (%s) abgebrochen."
|
313 |
+
|
314 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
315 |
+
#: src/Mollie/WC/Payment/Order.php:366
|
316 |
+
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."
|
317 |
+
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."
|
318 |
+
|
319 |
+
#: src/Mollie/WC/Helper/Settings.php:649
|
320 |
+
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
321 |
+
msgstr "Um Klarna-Bezahlungen über Mollie zu akzeptieren, benötigst du mindestens Version 3.0 von WooCommerce. Du verwendest aktuell Version %s."
|
322 |
+
|
323 |
+
#: src/Mollie/WC/Helper/Settings.php:456
|
324 |
+
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."
|
325 |
+
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."
|
326 |
+
|
327 |
+
#: src/Mollie/WC/Helper/Settings.php:425
|
328 |
+
msgid "Automatically send WordPress language"
|
329 |
+
msgstr "WordPress-Sprache automatisch übermitteln"
|
330 |
+
|
331 |
+
#: src/Mollie/WC/Helper/Settings.php:417
|
332 |
+
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."
|
333 |
+
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."
|
334 |
+
|
335 |
+
#: src/Mollie/WC/Helper/OrderLines.php:407
|
336 |
+
msgid "Shipping"
|
337 |
+
msgstr "Versand"
|
338 |
+
|
339 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
340 |
+
msgid "Klarna Slice it"
|
341 |
+
msgstr "Klarna Slice it"
|
342 |
+
|
343 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
344 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
345 |
+
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
346 |
+
msgstr "Um Bezahlungen über Klarna zu akzeptieren, müssen alle standardmäßigen Felder im WooCommerce-Bezahlvorgang aktiviert und verpflichtend sein."
|
347 |
+
|
348 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
349 |
+
msgid "Klarna Pay later"
|
350 |
+
msgstr "Klarna Pay later"
|
351 |
+
|
352 |
+
#: src/Mollie/WC/Helper/Status.php:131
|
353 |
+
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
354 |
+
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."
|
355 |
+
|
356 |
+
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
357 |
+
#. version
|
358 |
+
#: src/Mollie/WC/Helper/Status.php:104
|
359 |
+
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
360 |
+
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."
|
361 |
+
|
362 |
+
#: src/Mollie/WC/Helper/Settings.php:600
|
363 |
+
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."
|
364 |
+
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."
|
365 |
+
|
366 |
+
#: src/Mollie/WC/Helper/Settings.php:576
|
367 |
+
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."
|
368 |
+
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."
|
369 |
+
|
370 |
+
#: src/Mollie/WC/Helper/Settings.php:453
|
371 |
+
msgid "Lithuanian"
|
372 |
+
msgstr "Litauisch"
|
373 |
+
|
374 |
+
#: src/Mollie/WC/Helper/Settings.php:452
|
375 |
+
msgid "Latvian"
|
376 |
+
msgstr "Lettisch"
|
377 |
+
|
378 |
+
#: src/Mollie/WC/Helper/Settings.php:451
|
379 |
+
msgid "Polish"
|
380 |
+
msgstr "Polnisch"
|
381 |
+
|
382 |
+
#: src/Mollie/WC/Helper/Settings.php:450
|
383 |
+
msgid "Hungarian"
|
384 |
+
msgstr "Ungarisch"
|
385 |
+
|
386 |
+
#: src/Mollie/WC/Helper/Settings.php:449
|
387 |
+
msgid "Icelandic"
|
388 |
+
msgstr "Isländisch"
|
389 |
+
|
390 |
+
#: src/Mollie/WC/Helper/Settings.php:448
|
391 |
+
msgid "Danish"
|
392 |
+
msgstr "Dänisch"
|
393 |
+
|
394 |
+
#: src/Mollie/WC/Helper/Settings.php:447
|
395 |
+
msgid "Finnish"
|
396 |
+
msgstr "Finnisch"
|
397 |
+
|
398 |
+
#: src/Mollie/WC/Helper/Settings.php:446
|
399 |
+
msgid "Swedish"
|
400 |
+
msgstr "Schwedisch"
|
401 |
+
|
402 |
+
#: src/Mollie/WC/Helper/Settings.php:445
|
403 |
+
msgid "Norwegian"
|
404 |
+
msgstr "Norwegisch"
|
405 |
+
|
406 |
+
#: src/Mollie/WC/Helper/Settings.php:444
|
407 |
+
msgid "Italian"
|
408 |
+
msgstr "Italienisch"
|
409 |
+
|
410 |
+
#: src/Mollie/WC/Helper/Settings.php:443
|
411 |
+
msgid "Portuguese"
|
412 |
+
msgstr "Portugiesisch"
|
413 |
+
|
414 |
+
#: src/Mollie/WC/Helper/Settings.php:442
|
415 |
+
msgid "Catalan"
|
416 |
+
msgstr "Katalanisch"
|
417 |
+
|
418 |
+
#: src/Mollie/WC/Helper/Settings.php:440
|
419 |
+
msgid "Swiss German"
|
420 |
+
msgstr "Deutsch (Schweiz)"
|
421 |
+
|
422 |
+
#: src/Mollie/WC/Helper/Settings.php:439
|
423 |
+
msgid "Austrian German"
|
424 |
+
msgstr "Deutsch (Österreich)"
|
425 |
+
|
426 |
+
#: src/Mollie/WC/Helper/Api.php:41
|
427 |
+
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."
|
428 |
+
msgstr "Invalide(r) API-Schlüssel. Du erhältst die API-Schlüssel über die %s-Entwicklerseite im mobilen Dashboard%s. API-Schlüssel müssen mit ‚live_‘ oder ‚test_‘ beginnen, mindestens 30 Zeichen enthalten und dürfen keine Sonderzeichen enthalten."
|
429 |
+
|
430 |
+
#: src/Mollie/WC/Helper/Api.php:39
|
431 |
+
msgid "No API key provided. Please set your Mollie API keys below."
|
432 |
+
msgstr "Kein API-Schlüssel vorgegeben. Lege deinen Mollie-API-Schlüssel unten fest."
|
433 |
+
|
434 |
+
#: src/Mollie/WC/Gateway/Giropay.php:29
|
435 |
+
msgid "Giropay"
|
436 |
+
msgstr "Giropay"
|
437 |
+
|
438 |
+
#: src/Mollie/WC/Gateway/EPS.php:29
|
439 |
+
msgid "EPS"
|
440 |
+
msgstr "EPS"
|
441 |
+
|
442 |
+
#. translators: Placeholder 1: Payment method title
|
443 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:325
|
444 |
+
msgid "Could not create %s renewal payment."
|
445 |
+
msgstr "Erneute %s-Zahlung konnte nicht erstellt werden."
|
446 |
+
|
447 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:282
|
448 |
+
msgid "The customer (%s) does not have a valid mandate."
|
449 |
+
msgstr "Der Kunde (%s) hat kein gültiges Mandat."
|
450 |
+
|
451 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:273
|
452 |
+
msgid "The customer (%s) could not be used or found. "
|
453 |
+
msgstr "Der Kunde (%s) konnte nicht verwendet oder gefunden werden."
|
454 |
+
|
455 |
+
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
456 |
+
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
457 |
+
#. placeholder 5: refund ID
|
458 |
+
#: src/Mollie/WC/Payment/Payment.php:595
|
459 |
+
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
460 |
+
msgstr "Rückerstattung %s%s%s – Zahlung: %s, Rückerstattung: %s"
|
461 |
+
|
462 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1137
|
463 |
+
msgid "New chargeback %s processed! Order note and order status updated."
|
464 |
+
msgstr "Neue Rückbuchung %s erfasst. Bestellungsnotiz und Status aktualisiert."
|
465 |
+
|
466 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1038
|
467 |
+
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
468 |
+
msgstr "Neue Rückerstattung %s im Mollie-Dashboard verarbeitet. Bestellungsnotiz hinzugefügt, Bestellung jedoch nicht aktualisiert."
|
469 |
+
|
470 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
471 |
+
#: src/Mollie/WC/Payment/Order.php:630 src/Mollie/WC/Payment/Payment.php:432
|
472 |
+
msgid "%s payment failed via Mollie (%s)."
|
473 |
+
msgstr "%s-Bezahlung über Mollie fehlgeschlagen (%s)."
|
474 |
+
|
475 |
+
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
476 |
+
#. Mollie currencies
|
477 |
+
#: src/Mollie/WC/Gateway/Abstract.php:250
|
478 |
+
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
479 |
+
msgstr "Die aktuelle Shopwährung %s wird von Mollie nicht unterstützt. Mehr Informationen zu %sunterstützten Währungen und Bezahlungsmethoden.%s "
|
480 |
+
|
481 |
+
#: mollie-payments-for-WooCommerce.php:105
|
482 |
+
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."
|
483 |
+
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 %sdiese häufig gestellten Fragen%s."
|
484 |
+
|
485 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
486 |
+
#: src/Mollie/WC/Payment/Order.php:540 src/Mollie/WC/Payment/Order.php:701
|
487 |
+
#: src/Mollie/WC/Payment/Payment.php:343 src/Mollie/WC/Payment/Payment.php:506
|
488 |
+
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
489 |
+
msgstr "Der Mollie-WebHook wurde aufgerufen, die Zahlung wurde jedoch gleichzeitig über %s gestartet. Der Bestellstatus wird deshalb nicht aktualisiert."
|
490 |
+
|
491 |
+
#. translators: Placeholder 1: enabled or disabled
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:466
|
493 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
494 |
+
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."
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1289
|
497 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1297
|
498 |
+
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
499 |
+
msgstr "Deine Zahlung war nicht erfolgreich. Vervollständige deine Bestellung bitte mit einer anderen Zahlungsmethode."
|
500 |
+
|
501 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
502 |
+
#: src/Mollie/WC/Payment/Order.php:606 src/Mollie/WC/Payment/Payment.php:409
|
503 |
+
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
504 |
+
msgstr "Erneute %s-Zahlung über Mollie fehlgeschlagen (%s). Du musst die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen."
|
505 |
+
|
506 |
+
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
507 |
+
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
508 |
+
msgid "Bancontact"
|
509 |
+
msgstr "Bancontact"
|
510 |
+
|
511 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
512 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1595
|
513 |
+
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."
|
514 |
+
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."
|
515 |
+
|
516 |
+
#: src/Mollie/WC/Gateway/Abstract.php:469
|
517 |
+
msgid "Failed switching subscriptions, no valid mandate."
|
518 |
+
msgstr "Abonnement-Umstellung fehlgeschlagen, kein valides Mandat."
|
519 |
+
|
520 |
+
#: src/Mollie/WC/Gateway/Abstract.php:468
|
521 |
+
msgid "Failed switching subscriptions, no valid mandate.found. Place a completely new order to change your subscription."
|
522 |
+
msgstr "Abonnement-Umstellung fehlgeschlagen, kein valides Mandat gefunden. Leite einen neuen Bestellvorgang ein, um dein Abonnement zu ändern."
|
523 |
+
|
524 |
+
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
525 |
+
msgid "ING Home'Pay"
|
526 |
+
msgstr "ING Home'Pay"
|
527 |
+
|
528 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
529 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1165
|
530 |
+
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use them)."
|
531 |
+
msgstr "%s-Zahlung über Mollie zurückgebucht (%s). Du musst die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen."
|
532 |
+
|
533 |
+
#: src/Mollie/WC/Gateway/Kbc.php:41
|
534 |
+
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."
|
535 |
+
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."
|
536 |
+
|
537 |
+
#: src/Mollie/WC/Gateway/Kbc.php:34
|
538 |
+
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."
|
539 |
+
msgstr "Wenn du die Option deaktivierst, wird die Drop-down-Liste mit verschiedenen KBC/CBC-Banken nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-Bezahlvorgang eine KBC/CBC-Bank aus."
|
540 |
+
|
541 |
+
#: src/Mollie/WC/Gateway/Kbc.php:32
|
542 |
+
msgid "Show KBC/CBC banks dropdown"
|
543 |
+
msgstr "Drop-down-Liste für KBC/CBC-Banken anzeigen"
|
544 |
+
|
545 |
+
#: src/Mollie/WC/Gateway/Ideal.php:41
|
546 |
+
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."
|
547 |
+
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."
|
548 |
+
|
549 |
+
#: src/Mollie/WC/Gateway/Ideal.php:34
|
550 |
+
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."
|
551 |
+
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."
|
552 |
+
|
553 |
+
#: src/Mollie/WC/Gateway/Ideal.php:32
|
554 |
+
msgid "Show iDEAL banks dropdown"
|
555 |
+
msgstr "Drop-down-Liste für iDEAL-Banken anzeigen"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:40
|
558 |
+
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."
|
559 |
+
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."
|
560 |
+
|
561 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
562 |
+
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."
|
563 |
+
msgstr "Wenn du die Option deaktivieren, wird die Drop-down-Liste mit verschiedenen Geschenkkarten nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-Bezahlvorgang eine Geschenkkarte aus."
|
564 |
+
|
565 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
566 |
+
msgid "Show gift cards dropdown"
|
567 |
+
msgstr "Drop-down-Liste für Geschenkkarten anzeigen"
|
568 |
+
|
569 |
+
#: src/Mollie/WC/Gateway/Abstract.php:457
|
570 |
+
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
571 |
+
msgstr "Die Bestellung wurde wegen eines bestehenden, gültigen Mandats bei Mollie intern abgewickelt."
|
572 |
+
|
573 |
+
#: mollie-payments-for-WooCommerce.php:149
|
574 |
+
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"
|
575 |
+
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"
|
576 |
+
|
577 |
+
#: mollie-payments-for-WooCommerce.php:131
|
578 |
+
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"
|
579 |
+
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"
|
580 |
+
|
581 |
+
#: src/Mollie/WC/Helper/Settings.php:415
|
582 |
+
msgid "Cancelled"
|
583 |
+
msgstr "Storniert"
|
584 |
+
|
585 |
+
#: src/Mollie/WC/Helper/Settings.php:414
|
586 |
+
msgid "Pending"
|
587 |
+
msgstr "Offen"
|
588 |
+
|
589 |
+
#: src/Mollie/WC/Helper/Settings.php:411
|
590 |
+
msgid "Order status after cancelled payment"
|
591 |
+
msgstr "Bestellstatus nach stornierter Zahlung"
|
592 |
+
|
593 |
+
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
594 |
+
#. placeholder 3: consumer BIC
|
595 |
+
#: src/Mollie/WC/Gateway/Sofort.php:64 src/Mollie/WC/Gateway/Ideal.php:121
|
596 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80
|
597 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:172
|
598 |
+
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
599 |
+
msgstr "Zahlung durch <strong>%s</strong> erfolgt (IBAN (letzte 4 Ziffern): %s, BIC: %s)"
|
600 |
+
|
601 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1635
|
602 |
+
msgid "Your order has been cancelled."
|
603 |
+
msgstr "Deine Bestellung wurde storniert."
|
604 |
+
|
605 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1604
|
606 |
+
msgid ", payment pending."
|
607 |
+
msgstr ", Zahlung ausstehend"
|
608 |
+
|
609 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1564
|
610 |
+
msgid "Order cancelled"
|
611 |
+
msgstr "Bestellung storniert"
|
612 |
+
|
613 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
614 |
+
#. status, placeholder 3: payment ID
|
615 |
+
#: src/Mollie/WC/Gateway/Abstract.php:935
|
616 |
+
msgid "%s payment %s (%s), not processed."
|
617 |
+
msgstr "%s-Zahlung %s (%s), nicht verarbeitet."
|
618 |
+
|
619 |
+
#. translators: Default gift card dropdown description, displayed above issuer
|
620 |
+
#. drop down
|
621 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:76
|
622 |
+
msgid "Select your gift card"
|
623 |
+
msgstr "Wähle deine Geschenkkarte aus"
|
624 |
+
|
625 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:60
|
626 |
+
msgid "Gift cards"
|
627 |
+
msgstr "Geschenkkarten"
|
628 |
+
|
629 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
630 |
+
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."
|
631 |
+
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 muust außerdem iDEAL und/oder weitere „erste“ Bezahlmethoden aktivieren, wenn du SEPA-Direktmandate verwenden möchtest."
|
632 |
+
|
633 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
634 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:190
|
635 |
+
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
636 |
+
msgstr "Das Abonnement wird von ‚ausstehend‘ auf ‚aktiv‘ aktualisiert, bis die Zahlung fehlschlägt, da SEPA-Direktmandate etwas Zeit in Anspruch nehmen."
|
637 |
+
|
638 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
639 |
+
#: src/Mollie/WC/Payment/Payment.php:472
|
640 |
+
msgid "%s payment expired (%s) but order not cancelled because of another pending payment (%s)."
|
641 |
+
msgstr "%s-Zahlung (%s) abgelaufen, wegen einer weiteren offenen Zahlung (%s) jedoch nicht abgebrochen."
|
642 |
+
|
643 |
+
#: src/subscriptions_status_check_functions.php:195
|
644 |
+
msgid "There are still some subscriptions left, use the tool again!"
|
645 |
+
msgstr "Es sind noch Abonnements übrig, verwende das Tool erneut."
|
646 |
+
|
647 |
+
#: src/subscriptions_status_check_functions.php:193
|
648 |
+
msgid "No more subscriptions left to process!"
|
649 |
+
msgstr "Keine zu verarbeitenden Abonnements übrig."
|
650 |
+
|
651 |
+
#: src/subscriptions_status_check_functions.php:180
|
652 |
+
msgid "No subscriptions updated in this batch."
|
653 |
+
msgstr "In dieser Charge wurden keine Abonnements aktualisiert."
|
654 |
+
|
655 |
+
#: src/subscriptions_status_check_functions.php:156
|
656 |
+
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
657 |
+
msgstr "Die Abonnements wurden nicht aktualisiert, da Mollie kein gültiges Mandat vorliegt. Verarbeitet durch das Tool ‚Mollie-Abonnementstatus‘."
|
658 |
+
|
659 |
+
#: src/subscriptions_status_check_functions.php:142
|
660 |
+
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
661 |
+
msgstr "Abonnement auf automatisierte Erneuerung über Mollie aktualisiert, Status auf aktiv gesetzt. Verarbeitet durch das Tool ‚Mollie-Abonnementstatus‘."
|
662 |
+
|
663 |
+
#: src/subscriptions_status_check_functions.php:36
|
664 |
+
msgid "Check subscriptions status"
|
665 |
+
msgstr "Abonnementstatus überprüfen"
|
666 |
+
|
667 |
+
#: src/subscriptions_status_check_functions.php:35
|
668 |
+
msgid "Mollie Subscriptions Status"
|
669 |
+
msgstr "Mollie-Abonnementstatus"
|
670 |
+
|
671 |
+
#: src/subscriptions_status_check_functions.php:30
|
672 |
+
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
673 |
+
msgstr "Überprüft auf fälschlicherweise auf ‚manuelle Erneuerung‘ gesetzte Abonnements. Lies zunächst die "
|
674 |
+
|
675 |
+
#: src/Mollie/WC/Helper/Settings.php:464
|
676 |
+
msgid "Store customer details at Mollie"
|
677 |
+
msgstr "Kundendetails des Geschäfts bei Mollie"
|
678 |
+
|
679 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
680 |
+
#: src/Mollie/WC/Plugin.php:134
|
681 |
+
msgid "%s payment failed (%s)."
|
682 |
+
msgstr "%s-Bezahlung fehlgeschlagen (%s)."
|
683 |
+
|
684 |
+
#: src/Mollie/WC/Gateway/Kbc.php:61
|
685 |
+
msgid "KBC/CBC Payment Button"
|
686 |
+
msgstr "KBC/CBC-Zahlungsbutton"
|
687 |
+
|
688 |
+
#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Giftcard.php:38
|
689 |
+
#: src/Mollie/WC/Gateway/Kbc.php:39
|
690 |
+
msgid "Issuers empty option"
|
691 |
+
msgstr "Kartenaussteller-Option leer"
|
692 |
+
|
693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:48
|
694 |
+
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."
|
695 |
+
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."
|
696 |
+
|
697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
698 |
+
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
699 |
+
msgstr "Mollie-Bezahlseite überspringen, wenn Überweisung ausgewählt wurde"
|
700 |
+
|
701 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:46
|
702 |
+
msgid "Skip Mollie payment screen"
|
703 |
+
msgstr "Mollie-Bezahlseite überspringen"
|
704 |
+
|
705 |
+
#. Description of the plugin
|
706 |
+
msgid "Accept payments in WooCommerce with the official Mollie plugin"
|
707 |
+
msgstr "WooCommerce-Zahlungen mit dem offiziellen Mollie-Plugin akzeptieren"
|
708 |
+
|
709 |
+
#. Plugin URI of the plugin
|
710 |
+
#. Author URI of the plugin
|
711 |
+
msgid "https://www.mollie.com"
|
712 |
+
msgstr "https://www.mollie.com"
|
713 |
+
|
714 |
+
#. Author of the plugin
|
715 |
+
msgid "Mollie"
|
716 |
+
msgstr "Mollie"
|
717 |
+
|
718 |
+
#. Plugin Name of the plugin
|
719 |
+
msgid "Mollie Payments for WooCommerce"
|
720 |
+
msgstr "Mollie-Zahlungen für WooCommerce"
|
721 |
+
|
722 |
+
#: src/Mollie/WC/Plugin.php:780
|
723 |
+
msgid "Logs"
|
724 |
+
msgstr "Protokolle"
|
725 |
+
|
726 |
+
#: src/Mollie/WC/Helper/Status.php:123
|
727 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
728 |
+
msgstr "Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung cURL benötigt. Bitte aktiviere die ‚curl‘-Erweiterung in deiner PHP-Konfiguration."
|
729 |
+
|
730 |
+
#: src/Mollie/WC/Helper/Status.php:116
|
731 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
732 |
+
msgstr "Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung JSON benötigt. Bitte aktiviere die ‚json‘-Erweiterung in deiner PHP-Konfiguration."
|
733 |
+
|
734 |
+
#: src/Mollie/WC/Helper/Status.php:80
|
735 |
+
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
736 |
+
msgstr "Mobiler API-Client nicht installiert. Vergewissere dich, dass das Plugin korrekt installiert ist."
|
737 |
+
|
738 |
+
#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce
|
739 |
+
#. version, placeholder 3: used WooCommerce version
|
740 |
+
#: src/Mollie/WC/Helper/Status.php:67
|
741 |
+
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
742 |
+
msgstr "Das %s-Plugin benötigt WooCommerce %s oder höher, du verwendest Version %s. Aktualisiere bitte dein WooCommerce-Plugin."
|
743 |
+
|
744 |
+
#: src/Mollie/WC/Helper/Settings.php:473
|
745 |
+
msgid "Debug Log"
|
746 |
+
msgstr "Debug-Protokoll"
|
747 |
+
|
748 |
+
#: src/Mollie/WC/Helper/Settings.php:437
|
749 |
+
msgid "French (Belgium)"
|
750 |
+
msgstr "Französisch (Belgien)"
|
751 |
+
|
752 |
+
#: src/Mollie/WC/Helper/Settings.php:436
|
753 |
+
msgid "French"
|
754 |
+
msgstr "Französisch"
|
755 |
+
|
756 |
+
#: src/Mollie/WC/Helper/Settings.php:441
|
757 |
+
msgid "Spanish"
|
758 |
+
msgstr "Spanisch"
|
759 |
+
|
760 |
+
#: src/Mollie/WC/Helper/Settings.php:438
|
761 |
+
msgid "German"
|
762 |
+
msgstr "Deutsch"
|
763 |
+
|
764 |
+
#: src/Mollie/WC/Helper/Settings.php:433
|
765 |
+
msgid "English"
|
766 |
+
msgstr "Englisch"
|
767 |
+
|
768 |
+
#: src/Mollie/WC/Helper/Settings.php:435
|
769 |
+
msgid "Flemish (Belgium)"
|
770 |
+
msgstr "Flämisch (Belgien)"
|
771 |
+
|
772 |
+
#: src/Mollie/WC/Helper/Settings.php:434
|
773 |
+
msgid "Dutch"
|
774 |
+
msgstr "Niederländisch"
|
775 |
+
|
776 |
+
#: src/Mollie/WC/Helper/Settings.php:429
|
777 |
+
msgid "Detect using browser language"
|
778 |
+
msgstr "Über Browsersprache erkennen"
|
779 |
+
|
780 |
+
#: src/Mollie/WC/Helper/Settings.php:422
|
781 |
+
msgid "Payment screen language"
|
782 |
+
msgstr "Sprache der Bezahlseite"
|
783 |
+
|
784 |
+
#: src/Mollie/WC/Helper/Settings.php:403
|
785 |
+
msgid "Test API key should start with test_"
|
786 |
+
msgstr "Der Test-API-Schlüssel sollte mit test_ beginnen"
|
787 |
+
|
788 |
+
#: src/Mollie/WC/Helper/Settings.php:392
|
789 |
+
msgid "Test API key"
|
790 |
+
msgstr "Test-API-Schlüssel"
|
791 |
+
|
792 |
+
#: src/Mollie/WC/Helper/Settings.php:388
|
793 |
+
msgid "Enable test mode if you want to test the plugin without using real payments."
|
794 |
+
msgstr "Aktiviere den Testmodus, wenn du das Plugin ohne echte Bezahlung testen möchtest."
|
795 |
+
|
796 |
+
#: src/Mollie/WC/Helper/Settings.php:385
|
797 |
+
msgid "Enable test mode"
|
798 |
+
msgstr "Testmodus aktivieren"
|
799 |
+
|
800 |
+
#: src/Mollie/WC/Helper/Settings.php:377
|
801 |
+
msgid "Live API key should start with live_"
|
802 |
+
msgstr "Der Live-API-Schlüssel sollte mit live_ beginnen"
|
803 |
+
|
804 |
+
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
805 |
+
#. %s's Will be replaced by a link to the Mollie profile
|
806 |
+
#: src/Mollie/WC/Helper/Settings.php:371 src/Mollie/WC/Helper/Settings.php:397
|
807 |
+
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
808 |
+
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 "
|
809 |
+
|
810 |
+
#: src/Mollie/WC/Helper/Settings.php:366
|
811 |
+
msgid "Live API key"
|
812 |
+
msgstr "Live-API-Schlüssel"
|
813 |
+
|
814 |
+
#: src/Mollie/WC/Helper/Settings.php:362
|
815 |
+
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
816 |
+
msgstr "Die folgenden Optionen sind für die Verwendung des Plugins verpflichtend und werden von allen Mollie-Bezahlmethoden verwendet"
|
817 |
+
|
818 |
+
#: src/Mollie/WC/Helper/Settings.php:359 src/Mollie/WC/Plugin.php:773
|
819 |
+
msgid "Mollie settings"
|
820 |
+
msgstr "Mollie-Einstellungen"
|
821 |
+
|
822 |
+
#. translators: Placeholder 1: Location of the log files
|
823 |
+
#: src/Mollie/WC/Helper/Settings.php:352
|
824 |
+
msgid "Log files are saved to <code>%s</code>"
|
825 |
+
msgstr "Protokolldateien werden unter <code>%s</code> gespeichert"
|
826 |
+
|
827 |
+
#: src/Mollie/WC/Helper/Settings.php:346
|
828 |
+
msgid "View logs"
|
829 |
+
msgstr "Protokolle anzeigen"
|
830 |
+
|
831 |
+
#: src/Mollie/WC/Helper/Settings.php:341
|
832 |
+
msgid "Log plugin events."
|
833 |
+
msgstr "Plugin-Vorgänge protokollieren."
|
834 |
+
|
835 |
+
#: src/Mollie/WC/Helper/Settings.php:301
|
836 |
+
msgid "Edit"
|
837 |
+
msgstr "Bearbeiten"
|
838 |
+
|
839 |
+
#: src/Mollie/WC/Helper/Settings.php:270
|
840 |
+
msgid "Refresh"
|
841 |
+
msgstr "Aktualisieren"
|
842 |
+
|
843 |
+
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
844 |
+
#. profile
|
845 |
+
#: src/Mollie/WC/Helper/Settings.php:261
|
846 |
+
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
847 |
+
msgstr "Die folgenden Bezahlmethoden sind in deinem %sMollie-Profil%s aktiviert:"
|
848 |
+
|
849 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
850 |
+
msgid "Gateway disabled"
|
851 |
+
msgstr "Gateway deaktiviert"
|
852 |
+
|
853 |
+
#. translators: Placeholder 1: enabled or disabled
|
854 |
+
#: src/Mollie/WC/Helper/Settings.php:250 src/Mollie/WC/Helper/Settings.php:466
|
855 |
+
msgid "Enabled"
|
856 |
+
msgstr "Aktiv"
|
857 |
+
|
858 |
+
#: src/Mollie/WC/Helper/Settings.php:250
|
859 |
+
msgid "Gateway enabled"
|
860 |
+
msgstr "Gateway aktiviert"
|
861 |
+
|
862 |
+
#: src/Mollie/WC/Helper/Settings.php:207
|
863 |
+
msgid "Connected"
|
864 |
+
msgstr "Verbunden"
|
865 |
+
|
866 |
+
#: src/Mollie/WC/Helper/Settings.php:206
|
867 |
+
msgid "Mollie status:"
|
868 |
+
msgstr "Mollie-Status:"
|
869 |
+
|
870 |
+
#: src/Mollie/WC/Helper/Settings.php:193
|
871 |
+
msgid "Error"
|
872 |
+
msgstr "Fehler"
|
873 |
+
|
874 |
+
#: src/Mollie/WC/Helper/Data.php:613
|
875 |
+
msgid "Item #%s stock incremented from %s to %s."
|
876 |
+
msgstr "Artikel #%s Bestand von %s auf %s erhöht."
|
877 |
+
|
878 |
+
#: src/Mollie/WC/Gateway/Sofort.php:33
|
879 |
+
msgid "SOFORT Banking"
|
880 |
+
msgstr "SOFORT-Banking"
|
881 |
+
|
882 |
+
#: src/Mollie/WC/Gateway/Paysafecard.php:20
|
883 |
+
msgid "paysafecard"
|
884 |
+
msgstr "paysafecard"
|
885 |
+
|
886 |
+
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
887 |
+
#. email, placeholder 3: PayPal transaction ID
|
888 |
+
#: src/Mollie/WC/Gateway/PayPal.php:64
|
889 |
+
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
890 |
+
msgstr "Zahlung durch <strong>%s</strong> - %s (PayPal Transaktions-ID: %s) erfolgt"
|
891 |
+
|
892 |
+
#: src/Mollie/WC/Gateway/PayPal.php:33
|
893 |
+
msgid "PayPal"
|
894 |
+
msgstr "PayPal"
|
895 |
+
|
896 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
897 |
+
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
898 |
+
#. drop down
|
899 |
+
#: src/Mollie/WC/Gateway/Ideal.php:77 src/Mollie/WC/Gateway/Kbc.php:77
|
900 |
+
msgid "Select your bank"
|
901 |
+
msgstr "Wähle deine Bank aus"
|
902 |
+
|
903 |
+
#: src/Mollie/WC/Gateway/Ideal.php:61
|
904 |
+
msgid "iDEAL"
|
905 |
+
msgstr "iDEAL"
|
906 |
+
|
907 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:42
|
908 |
+
msgid "SEPA Direct Debit"
|
909 |
+
msgstr "SEPA-Direktmandat"
|
910 |
+
|
911 |
+
#. translators: Placeholder 1: card holder
|
912 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:85
|
913 |
+
msgid "Payment completed by <strong>%s</strong>"
|
914 |
+
msgstr "Zahlung durch <strong>%s</strong> erfolgt"
|
915 |
+
|
916 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:34
|
917 |
+
msgid "Credit card"
|
918 |
+
msgstr "Kreditkarte"
|
919 |
+
|
920 |
+
#: src/Mollie/WC/Gateway/Belfius.php:33
|
921 |
+
msgid "Belfius Direct Net"
|
922 |
+
msgstr "Belfius Direct Net"
|
923 |
+
|
924 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:220
|
925 |
+
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
926 |
+
msgstr "Die Zahlungsfrist läuft am <strong>%s</strong> ab. Bitte überweise bis dahin den vollen Betrag."
|
927 |
+
|
928 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:213
|
929 |
+
msgid "The payment will expire on <strong>%s</strong>."
|
930 |
+
msgstr "Die Zahlungsfrist läuft am <strong>%s</strong> ab."
|
931 |
+
|
932 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
933 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
934 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
935 |
+
msgid "Please provide the payment reference <strong>%s</strong>"
|
936 |
+
msgstr "Gib bitte die Zahlungsreferenz <strong>%s</strong> an"
|
937 |
+
|
938 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
939 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
940 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:193
|
941 |
+
msgid "Payment reference: %s"
|
942 |
+
msgstr "Zahlungsreferenz: %s"
|
943 |
+
|
944 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
945 |
+
msgid "BIC: %s"
|
946 |
+
msgstr "BIC: %s"
|
947 |
+
|
948 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:187
|
949 |
+
msgid "IBAN: <strong>%s</strong>"
|
950 |
+
msgstr "IBAN: <strong>%s</strong>"
|
951 |
+
|
952 |
+
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
953 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:186
|
954 |
+
msgid "Beneficiary: %s"
|
955 |
+
msgstr "Begünstigter: %s"
|
956 |
+
|
957 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:182
|
958 |
+
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
959 |
+
msgstr "Bitte schließe die Zahlung ab, indem du den vollen Betrag auf das folgende Konto überweist:"
|
960 |
+
|
961 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:122
|
962 |
+
msgid "Bank Transfer"
|
963 |
+
msgstr "Überweisung"
|
964 |
+
|
965 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
966 |
+
msgid "Disabled"
|
967 |
+
msgstr "Deaktiviert"
|
968 |
+
|
969 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:37
|
970 |
+
msgid "Number of days after the payment will expire. Default <code>%d</code> days"
|
971 |
+
msgstr "Tage nach Ende der Zahlungsfrist. Standard: <code>%d</code> Tage"
|
972 |
+
|
973 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:35
|
974 |
+
msgid "Expiry date"
|
975 |
+
msgstr "Ablaufdatum"
|
976 |
+
|
977 |
+
#. translators: Placeholder 1: payment method
|
978 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1508
|
979 |
+
msgid "Payment completed with <strong>%s</strong>"
|
980 |
+
msgstr "Zahlung durch <strong>%s</strong> erfolgt"
|
981 |
+
|
982 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1501
|
983 |
+
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."
|
984 |
+
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."
|
985 |
+
|
986 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1496
|
987 |
+
msgid "We have not received a definite payment status."
|
988 |
+
msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten."
|
989 |
+
|
990 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1271
|
991 |
+
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
992 |
+
msgstr "Du hast deine Zahlung storniert. Vervollständige deine Bestellung bitte mit einer anderen Zahlungsmethode."
|
993 |
+
|
994 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Payment/Payment.php:513
|
996 |
+
msgid "%s payment expired (%s)."
|
997 |
+
msgstr "%s-Zahlung abgelaufen (%s)."
|
998 |
+
|
999 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1000 |
+
#: src/Mollie/WC/Payment/Order.php:295 src/Mollie/WC/Payment/Payment.php:241
|
1001 |
+
msgid "Order completed using %s payment (%s)."
|
1002 |
+
msgstr "Bestellung über %s-Bezahlung %s abgeschlossen."
|
1003 |
+
|
1004 |
+
#. translators: Placeholder 1: Payment method title
|
1005 |
+
#: src/Mollie/WC/Gateway/Abstract.php:678
|
1006 |
+
msgid "Could not create %s payment."
|
1007 |
+
msgstr "%s-Zahlung konnte nicht erstellt werden."
|
1008 |
+
|
1009 |
+
#: src/Mollie/WC/Payment/Order.php:297 src/Mollie/WC/Payment/Order.php:368
|
1010 |
+
#: src/Mollie/WC/Payment/Order.php:440 src/Mollie/WC/Payment/Order.php:550
|
1011 |
+
#: src/Mollie/WC/Payment/Order.php:608 src/Mollie/WC/Payment/Order.php:632
|
1012 |
+
#: src/Mollie/WC/Payment/Order.php:669 src/Mollie/WC/Payment/Order.php:710
|
1013 |
+
#: src/Mollie/WC/Payment/Payment.php:243 src/Mollie/WC/Payment/Payment.php:353
|
1014 |
+
#: src/Mollie/WC/Payment/Payment.php:411 src/Mollie/WC/Payment/Payment.php:434
|
1015 |
+
#: src/Mollie/WC/Payment/Payment.php:474 src/Mollie/WC/Payment/Payment.php:515
|
1016 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1017 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1018 |
+
#: src/Mollie/WC/Gateway/Abstract.php:656
|
1019 |
+
#: src/Mollie/WC/Gateway/Abstract.php:938
|
1020 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1167
|
1021 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1208
|
1022 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1597
|
1023 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:466
|
1024 |
+
msgid "test mode"
|
1025 |
+
msgstr "Testmodus"
|
1026 |
+
|
1027 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1028 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1029 |
+
#: src/Mollie/WC/Gateway/Abstract.php:654
|
1030 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1031 |
+
msgid "%s payment started (%s)."
|
1032 |
+
msgstr "%s-Bezahlung gestartet (%s)."
|
1033 |
+
|
1034 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1035 |
+
#: src/Mollie/WC/Gateway/Abstract.php:644
|
1036 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1037 |
+
msgid "Awaiting payment confirmation."
|
1038 |
+
msgstr "Die Zahlungsbestätigung wird erwartet."
|
1039 |
+
|
1040 |
+
#: src/Mollie/WC/Gateway/Abstract.php:402
|
1041 |
+
msgid "Could not load order %s"
|
1042 |
+
msgstr "Bestellung %s konnte nicht geladen werden"
|
1043 |
+
|
1044 |
+
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1045 |
+
#. be replaced by a link to the Mollie profile
|
1046 |
+
#: src/Mollie/WC/Gateway/Abstract.php:238
|
1047 |
+
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1048 |
+
msgstr "%s ist nicht in deinem Mollie-Profil aktiviert. Du kannst es aktivieren, indem du dein %sMollie-Profil%s entsprechend bearbeitest."
|
1049 |
+
|
1050 |
+
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1051 |
+
#. setting page
|
1052 |
+
#: src/Mollie/WC/Gateway/Abstract.php:226
|
1053 |
+
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1054 |
+
msgstr "Kein API-Schlüssel vorgegeben. Bitte %slege deinen Mollie-API-Schlüssel fest%s."
|
1055 |
+
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:181
|
1057 |
+
msgid "Gateway Disabled"
|
1058 |
+
msgstr "Gateway deaktiviert"
|
1059 |
+
|
1060 |
+
#: src/Mollie/WC/Helper/Settings.php:256 src/Mollie/WC/Gateway/Abstract.php:224
|
1061 |
+
msgid "Test mode enabled."
|
1062 |
+
msgstr "Testmodus aktiviert."
|
1063 |
+
|
1064 |
+
#: src/Mollie/WC/Gateway/Abstract.php:143
|
1065 |
+
msgid "Hold Stock (minutes)"
|
1066 |
+
msgstr "Bestand halten (Minuten)"
|
1067 |
+
|
1068 |
+
#: src/Mollie/WC/Gateway/Abstract.php:141
|
1069 |
+
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."
|
1070 |
+
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."
|
1071 |
+
|
1072 |
+
#: src/Mollie/WC/Helper/Settings.php:428 src/Mollie/WC/Gateway/Abstract.php:135
|
1073 |
+
msgid "default"
|
1074 |
+
msgstr "Standard"
|
1075 |
+
|
1076 |
+
#: src/Mollie/WC/Gateway/Abstract.php:132
|
1077 |
+
msgid "Initial order status"
|
1078 |
+
msgstr "Initialer Bestellstatus"
|
1079 |
+
|
1080 |
+
#: src/Mollie/WC/Gateway/Abstract.php:123
|
1081 |
+
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1082 |
+
msgstr "Beschreibung der Bezahlmethode, die der Kunde im Bezahlvorgang angezeigt bekommt. Standard: <code>%s</code>"
|
1083 |
+
|
1084 |
+
#: src/Mollie/WC/Gateway/Abstract.php:121
|
1085 |
+
msgid "Description"
|
1086 |
+
msgstr "Beschreibung"
|
1087 |
+
|
1088 |
+
#: src/Mollie/WC/Gateway/Abstract.php:117
|
1089 |
+
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1090 |
+
msgstr "Logo bei Bezahlvorgang anzeigen. Standard: <code>aktiviert</code>"
|
1091 |
+
|
1092 |
+
#: src/Mollie/WC/Gateway/Abstract.php:115
|
1093 |
+
msgid "Display logo"
|
1094 |
+
msgstr "Logo anzeigen"
|
1095 |
+
|
1096 |
+
#: src/Mollie/WC/Gateway/Abstract.php:110
|
1097 |
+
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1098 |
+
msgstr "Hierdurch wird der Titel gesteuert, den Benutzer beim Bezahlvorgang sehen. Standard: <code>%s</code>"
|
1099 |
+
|
1100 |
+
#: src/Mollie/WC/Gateway/Abstract.php:108
|
1101 |
+
msgid "Title"
|
1102 |
+
msgstr "Titel"
|
1103 |
+
|
1104 |
+
#: src/Mollie/WC/Gateway/Abstract.php:104
|
1105 |
+
msgid "Enable %s"
|
1106 |
+
msgstr "%s aktivieren"
|
1107 |
+
|
1108 |
+
#: src/Mollie/WC/Gateway/Abstract.php:102
|
1109 |
+
msgid "Enable/Disable"
|
1110 |
+
msgstr "Aktivieren/deaktivieren"
|
languages/mollie-payments-for-woocommerce-de_DE_formal.mo
ADDED
Binary file
|
languages/mollie-payments-for-woocommerce-de_DE_formal.po
ADDED
@@ -0,0 +1,1110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Development (trunk) in German
|
2 |
+
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Development (trunk) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2020-05-18 16:40+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/2.4.0-alpha\n"
|
11 |
+
"Language: de\n"
|
12 |
+
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Development (trunk)\n"
|
13 |
+
|
14 |
+
#: inc/settings/mollie_components_enabler.php:7
|
15 |
+
msgid "Enable the Mollie Components for this Gateway"
|
16 |
+
msgstr "Mollie-Komponenten für dieses Portal aktivieren"
|
17 |
+
|
18 |
+
#: inc/settings/mollie_components_enabler.php:6
|
19 |
+
msgid "Enable Mollie Components"
|
20 |
+
msgstr "Mollie-Komponenten aktivieren"
|
21 |
+
|
22 |
+
#: inc/settings/mollie_components.php:157
|
23 |
+
msgctxt "Mollie Components Settings"
|
24 |
+
msgid "Background Color for invalid input."
|
25 |
+
msgstr "Hintergrundfarbe bei ungültiger Eingabe."
|
26 |
+
|
27 |
+
#: inc/settings/mollie_components.php:146
|
28 |
+
msgctxt "Mollie Components Settings"
|
29 |
+
msgid "Text Color for invalid input."
|
30 |
+
msgstr "Textfarbe bei ungültiger Eingabe."
|
31 |
+
|
32 |
+
#: inc/settings/mollie_components.php:136
|
33 |
+
msgctxt "Mollie Components Settings"
|
34 |
+
msgid "Invalid Status Styles"
|
35 |
+
msgstr "Format für invalide Status"
|
36 |
+
|
37 |
+
#: inc/settings/mollie_components.php:122
|
38 |
+
msgctxt "Mollie Components Settings"
|
39 |
+
msgid "Full Size Kana"
|
40 |
+
msgstr "Gesamte Breite Kana"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_components.php:117
|
43 |
+
msgctxt "Mollie Components Settings"
|
44 |
+
msgid "Full Width"
|
45 |
+
msgstr "Gesamte Breite"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_components.php:112
|
48 |
+
msgctxt "Mollie Components Settings"
|
49 |
+
msgid "Lowercase"
|
50 |
+
msgstr "Kleinbuchstaben"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_components.php:107
|
53 |
+
msgctxt "Mollie Components Settings"
|
54 |
+
msgid "Uppercase"
|
55 |
+
msgstr "Großbuchstaben"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_components.php:102
|
58 |
+
msgctxt "Mollie Components Settings"
|
59 |
+
msgid "Capitalize"
|
60 |
+
msgstr "Großschreibung"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_components.php:97
|
63 |
+
msgctxt "Mollie Components Settings"
|
64 |
+
msgid "None"
|
65 |
+
msgstr "Keine"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_components.php:94
|
68 |
+
msgctxt "Mollie Components Settings"
|
69 |
+
msgid "Transform Text"
|
70 |
+
msgstr "Text transformieren"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_components.php:88
|
73 |
+
msgctxt "Mollie Components Settings"
|
74 |
+
msgid "Justify"
|
75 |
+
msgstr "Justieren"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_components.php:87
|
78 |
+
msgctxt "Mollie Components Settings"
|
79 |
+
msgid "Center"
|
80 |
+
msgstr "Zentrieren"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_components.php:86
|
83 |
+
msgctxt "Mollie Components Settings"
|
84 |
+
msgid "Right"
|
85 |
+
msgstr "Rechts"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_components.php:85
|
88 |
+
msgctxt "Mollie Components Settings"
|
89 |
+
msgid "Left"
|
90 |
+
msgstr "Links"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_components.php:82
|
93 |
+
msgctxt "Mollie Components Settings"
|
94 |
+
msgid "Align Text"
|
95 |
+
msgstr "Text ausrichten"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_components.php:72
|
98 |
+
msgctxt "Mollie Components Settings"
|
99 |
+
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
100 |
+
msgstr "Fügen Sie Abstände zu den Komponenten hinzu. Beispiele für erlaubte Einheiten: ‚16px 16px 16px 16px‘, ‚em‘, ‚px‘, ‚rem‘."
|
101 |
+
|
102 |
+
#: inc/settings/mollie_components.php:71
|
103 |
+
msgctxt "Mollie Components Settings"
|
104 |
+
msgid "Padding"
|
105 |
+
msgstr "Abstände"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_components.php:62
|
108 |
+
msgctxt "Mollie Components Settings"
|
109 |
+
msgid "Line Height"
|
110 |
+
msgstr "Zeilenhöhe"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_components.php:56
|
113 |
+
msgctxt "Mollie Components Settings"
|
114 |
+
msgid "Letter Spacing"
|
115 |
+
msgstr "Zeichenabstand"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_components.php:50
|
118 |
+
msgctxt "Mollie Components Settings"
|
119 |
+
msgid "Bold"
|
120 |
+
msgstr "Fett"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_components.php:49
|
123 |
+
msgctxt "Mollie Components Settings"
|
124 |
+
msgid "Regular"
|
125 |
+
msgstr "Regular"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_components.php:48
|
128 |
+
msgctxt "Mollie Components Settings"
|
129 |
+
msgid "Lighter"
|
130 |
+
msgstr "Schmaler"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_components.php:45
|
133 |
+
msgctxt "Mollie Components Settings"
|
134 |
+
msgid "Font Weight"
|
135 |
+
msgstr "Schriftbreite"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_components.php:35
|
138 |
+
msgctxt "Mollie Components Settings"
|
139 |
+
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
140 |
+
msgstr "Die Schriftgröße legt die Größe der Schrift innerhalb der Komponenten fest. Erlaubte Einheiten: ‚em‘, ‚px‘, ‚rem‘."
|
141 |
+
|
142 |
+
#: inc/settings/mollie_components.php:34
|
143 |
+
msgctxt "Mollie Components Settings"
|
144 |
+
msgid "Font Size"
|
145 |
+
msgstr "Schriftgröße"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_components.php:28
|
148 |
+
msgctxt "Mollie Components Settings"
|
149 |
+
msgid "Placeholder Color"
|
150 |
+
msgstr "Platzhalterfarbe"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145
|
153 |
+
msgctxt "Mollie Components Settings"
|
154 |
+
msgid "Text Color"
|
155 |
+
msgstr "Textfarbe"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156
|
158 |
+
msgctxt "Mollie Components Settings"
|
159 |
+
msgid "Background Color"
|
160 |
+
msgstr "Hintergrundfarbe"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_components.php:7
|
163 |
+
msgctxt "Mollie Components Settings"
|
164 |
+
msgid "Base Styles"
|
165 |
+
msgstr "Basisformat"
|
166 |
+
|
167 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2056
|
168 |
+
msgid "Secure payments provided by "
|
169 |
+
msgstr "Sichere Zahlungen bereitgestellt durch "
|
170 |
+
|
171 |
+
#: src/Mollie/WC/Plugin.php:431
|
172 |
+
msgid "An unknown error occurred, please check the card fields."
|
173 |
+
msgstr "Ein unbekannter Fehler ist aufgetreten, bitte überprüfen Sie die Kartenfelder."
|
174 |
+
|
175 |
+
#: src/Mollie/WC/Plugin.php:424
|
176 |
+
msgid "Verification Code"
|
177 |
+
msgstr "Kartenprüfnummer"
|
178 |
+
|
179 |
+
#: src/Mollie/WC/Plugin.php:420
|
180 |
+
msgid "Expiry Date"
|
181 |
+
msgstr "Ablaufdatum"
|
182 |
+
|
183 |
+
#: src/Mollie/WC/Plugin.php:412
|
184 |
+
msgid "Card Holder"
|
185 |
+
msgstr "Karteninhaber"
|
186 |
+
|
187 |
+
#: src/Mollie/WC/Settings/Page/Components.php:10
|
188 |
+
msgid "Mollie Components"
|
189 |
+
msgstr "Mollie-Komponenten"
|
190 |
+
|
191 |
+
#: src/Mollie/WC/Plugin.php:416
|
192 |
+
msgid "Card Number"
|
193 |
+
msgstr "Kartennummer"
|
194 |
+
|
195 |
+
#: src/Mollie/WC/Plugin.php:306
|
196 |
+
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
197 |
+
msgstr "%1$s stornierte Artikel bei WooCommerce und Mollie."
|
198 |
+
|
199 |
+
#: src/Mollie/WC/Plugin.php:288
|
200 |
+
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
201 |
+
msgstr "%1$s erstattete Artikel bei WooCommerce und Mollie."
|
202 |
+
|
203 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
204 |
+
msgid "Empty WooCommerce order items or mollie order lines."
|
205 |
+
msgstr "Leere WooCommerce-Auftragspositionen oder Mollie-Auftragszeilen."
|
206 |
+
|
207 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
208 |
+
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
209 |
+
msgstr "Die Auftragspositions-ID zum folgenden Remote-Artikel konnte nicht abgerufen werden: %1$s. Versuchen Sie, eine Rückerstattung nach Betrag durchzuführen."
|
210 |
+
|
211 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
212 |
+
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
213 |
+
msgstr "Eine der WooCommerce-Auftragspositionen stimmt nicht mit dem entsprechenden Metawert für die ID des Rückerstattungsartikels der Mollie-Auftragsposition überein."
|
214 |
+
|
215 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:115
|
216 |
+
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."
|
217 |
+
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."
|
218 |
+
|
219 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
220 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:159
|
221 |
+
msgid "Order completed using %1$s payment (%2$s)."
|
222 |
+
msgstr "Vorgang über %1$s-Bezahlung (%2$s) erfolgt."
|
223 |
+
|
224 |
+
#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer
|
225 |
+
#. Account number
|
226 |
+
#: src/Mollie/WC/Gateway/MyBank.php:73
|
227 |
+
msgid "Payment completed by <strong>%1$s</strong> - %2$s"
|
228 |
+
msgstr "Zahlung durch <strong>%1$s</strong> - %2$s erfolgt"
|
229 |
+
|
230 |
+
#: src/Mollie/WC/Gateway/MyBank.php:44
|
231 |
+
msgid "To accept payments via MyBank"
|
232 |
+
msgstr "Um Bezahlungen über MyBank zu akzeptieren"
|
233 |
+
|
234 |
+
#: src/Mollie/WC/Gateway/MyBank.php:36
|
235 |
+
msgid "MyBank"
|
236 |
+
msgstr "MyBank"
|
237 |
+
|
238 |
+
#: src/Mollie/WC/Gateway/Applepay.php:45
|
239 |
+
msgid "To accept payments via Apple Pay"
|
240 |
+
msgstr "Um Bezahlungen über Apple Pay zu akzeptieren"
|
241 |
+
|
242 |
+
#: src/Mollie/WC/Gateway/Applepay.php:37
|
243 |
+
msgid "Apple Pay"
|
244 |
+
msgstr "Apple Pay"
|
245 |
+
|
246 |
+
#. translators: Placeholder 1: customer billing email
|
247 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:64
|
248 |
+
msgid "Payment completed by <strong>%s</strong>."
|
249 |
+
msgstr "Zahlung durch <strong>%s</strong> erfolgt."
|
250 |
+
|
251 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
252 |
+
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
253 |
+
msgstr "Um Bezahlungen über Przelewy24 zu akzeptieren, wird für jede Bezahlung eine Kunden-E-Mail benötigt."
|
254 |
+
|
255 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
256 |
+
msgid "Przelewy24"
|
257 |
+
msgstr "Przelewy24"
|
258 |
+
|
259 |
+
#: src/Mollie/WC/Helper/Status.php:89 mollie-payments-for-WooCommerce.php:83
|
260 |
+
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."
|
261 |
+
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."
|
262 |
+
|
263 |
+
#: src/Mollie/WC/Payment/Order.php:1029
|
264 |
+
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
265 |
+
msgstr "Erstattungsbetrag von %s erstatteten %s bei WooCommerce und Mollie.%s Erstattungs-ID: %s."
|
266 |
+
|
267 |
+
#: src/Mollie/WC/Payment/Order.php:946
|
268 |
+
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
269 |
+
msgstr "%sx %s erstattet für %s%s bei WooCommerce und Mollie.%s Erstattungs-ID: %s."
|
270 |
+
|
271 |
+
#: src/Mollie/WC/Payment/Order.php:930
|
272 |
+
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
273 |
+
msgstr "%sx %s storniert für %s%s bei WooCommerce und Mollie."
|
274 |
+
|
275 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
276 |
+
#: src/Mollie/WC/Payment/Order.php:438
|
277 |
+
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!"
|
278 |
+
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."
|
279 |
+
|
280 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
281 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1206
|
282 |
+
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use them)."
|
283 |
+
msgstr "%s-Bezahlung über Mollie zurückgebucht (%s). Abonnementstatus aktualisiert, bitte prüfen (und, falls verwendet, Produktbestände anpassen)."
|
284 |
+
|
285 |
+
#: src/Mollie/WC/Helper/Settings.php:624
|
286 |
+
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
287 |
+
msgstr "Um Klarna-Bezahlungen über Mollie zu akzeptieren, müssen alle standardmäßigen Felder im WooCommerce-Bezahlvorgang aktiviert und verpflichtend sein. Vergewissern Sie sich, dass dies der Fall ist."
|
288 |
+
|
289 |
+
#: src/Mollie/WC/Payment/Payment.php:39
|
290 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
291 |
+
msgid "Order"
|
292 |
+
msgstr "Bestellung"
|
293 |
+
|
294 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
295 |
+
#: src/Mollie/WC/Payment/Payment.php:351
|
296 |
+
msgid "%s payment (%s) cancelled ."
|
297 |
+
msgstr "%s-Bezahlvorgang (%s) abgebrochen."
|
298 |
+
|
299 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
300 |
+
#: src/Mollie/WC/Payment/Order.php:708
|
301 |
+
msgid "%s order (%s) expired ."
|
302 |
+
msgstr "%s-Bestellung (%s) abgelaufen."
|
303 |
+
|
304 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
305 |
+
#: src/Mollie/WC/Payment/Order.php:667
|
306 |
+
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
307 |
+
msgstr "%s-Bestellung (%s) abgelaufen, wegen einer weiteren offenen Zahlung (%s) jedoch nicht abgebrochen."
|
308 |
+
|
309 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
310 |
+
#: src/Mollie/WC/Payment/Order.php:548
|
311 |
+
msgid "%s order (%s) cancelled ."
|
312 |
+
msgstr "%s-Bestellung (%s) abgebrochen."
|
313 |
+
|
314 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
315 |
+
#: src/Mollie/WC/Payment/Order.php:366
|
316 |
+
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."
|
317 |
+
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."
|
318 |
+
|
319 |
+
#: src/Mollie/WC/Helper/Settings.php:649
|
320 |
+
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
321 |
+
msgstr "Um Klarna-Bezahlungen über Mollie zu akzeptieren, benötigen Sie mindestens Version 3.0 von WooCommerce. Sie verwenden aktuell Version %s."
|
322 |
+
|
323 |
+
#: src/Mollie/WC/Helper/Settings.php:456
|
324 |
+
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."
|
325 |
+
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."
|
326 |
+
|
327 |
+
#: src/Mollie/WC/Helper/Settings.php:425
|
328 |
+
msgid "Automatically send WordPress language"
|
329 |
+
msgstr "WordPress-Sprache automatisch übermitteln"
|
330 |
+
|
331 |
+
#: src/Mollie/WC/Helper/Settings.php:417
|
332 |
+
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."
|
333 |
+
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."
|
334 |
+
|
335 |
+
#: src/Mollie/WC/Helper/OrderLines.php:407
|
336 |
+
msgid "Shipping"
|
337 |
+
msgstr "Versand"
|
338 |
+
|
339 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
340 |
+
msgid "Klarna Slice it"
|
341 |
+
msgstr "Klarna Slice it"
|
342 |
+
|
343 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
344 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
345 |
+
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
346 |
+
msgstr "Um Bezahlungen über Klarna zu akzeptieren, müssen alle standardmäßigen Felder im WooCommerce-Bezahlvorgang aktiviert und verpflichtend sein."
|
347 |
+
|
348 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
349 |
+
msgid "Klarna Pay later"
|
350 |
+
msgstr "Klarna Pay later"
|
351 |
+
|
352 |
+
#: src/Mollie/WC/Helper/Status.php:131
|
353 |
+
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
354 |
+
msgstr "Für Mollie-Zahlungen für WooCommerce müssen PHP cURL-Funktionen verfügbar sein. Vergewissern Sie sich, dass alle diese Funktionen verfügbar sind."
|
355 |
+
|
356 |
+
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
357 |
+
#. version
|
358 |
+
#: src/Mollie/WC/Helper/Status.php:104
|
359 |
+
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
360 |
+
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."
|
361 |
+
|
362 |
+
#: src/Mollie/WC/Helper/Settings.php:600
|
363 |
+
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."
|
364 |
+
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."
|
365 |
+
|
366 |
+
#: src/Mollie/WC/Helper/Settings.php:576
|
367 |
+
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."
|
368 |
+
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."
|
369 |
+
|
370 |
+
#: src/Mollie/WC/Helper/Settings.php:453
|
371 |
+
msgid "Lithuanian"
|
372 |
+
msgstr "Litauisch"
|
373 |
+
|
374 |
+
#: src/Mollie/WC/Helper/Settings.php:452
|
375 |
+
msgid "Latvian"
|
376 |
+
msgstr "Lettisch"
|
377 |
+
|
378 |
+
#: src/Mollie/WC/Helper/Settings.php:451
|
379 |
+
msgid "Polish"
|
380 |
+
msgstr "Polnisch"
|
381 |
+
|
382 |
+
#: src/Mollie/WC/Helper/Settings.php:450
|
383 |
+
msgid "Hungarian"
|
384 |
+
msgstr "Ungarisch"
|
385 |
+
|
386 |
+
#: src/Mollie/WC/Helper/Settings.php:449
|
387 |
+
msgid "Icelandic"
|
388 |
+
msgstr "Isländisch"
|
389 |
+
|
390 |
+
#: src/Mollie/WC/Helper/Settings.php:448
|
391 |
+
msgid "Danish"
|
392 |
+
msgstr "Dänisch"
|
393 |
+
|
394 |
+
#: src/Mollie/WC/Helper/Settings.php:447
|
395 |
+
msgid "Finnish"
|
396 |
+
msgstr "Finnisch"
|
397 |
+
|
398 |
+
#: src/Mollie/WC/Helper/Settings.php:446
|
399 |
+
msgid "Swedish"
|
400 |
+
msgstr "Schwedisch"
|
401 |
+
|
402 |
+
#: src/Mollie/WC/Helper/Settings.php:445
|
403 |
+
msgid "Norwegian"
|
404 |
+
msgstr "Norwegisch"
|
405 |
+
|
406 |
+
#: src/Mollie/WC/Helper/Settings.php:444
|
407 |
+
msgid "Italian"
|
408 |
+
msgstr "Italienisch"
|
409 |
+
|
410 |
+
#: src/Mollie/WC/Helper/Settings.php:443
|
411 |
+
msgid "Portuguese"
|
412 |
+
msgstr "Portugiesisch"
|
413 |
+
|
414 |
+
#: src/Mollie/WC/Helper/Settings.php:442
|
415 |
+
msgid "Catalan"
|
416 |
+
msgstr "Katalanisch"
|
417 |
+
|
418 |
+
#: src/Mollie/WC/Helper/Settings.php:440
|
419 |
+
msgid "Swiss German"
|
420 |
+
msgstr "Deutsch (Schweiz)"
|
421 |
+
|
422 |
+
#: src/Mollie/WC/Helper/Settings.php:439
|
423 |
+
msgid "Austrian German"
|
424 |
+
msgstr "Deutsch (Österreich)"
|
425 |
+
|
426 |
+
#: src/Mollie/WC/Helper/Api.php:41
|
427 |
+
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."
|
428 |
+
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."
|
429 |
+
|
430 |
+
#: src/Mollie/WC/Helper/Api.php:39
|
431 |
+
msgid "No API key provided. Please set your Mollie API keys below."
|
432 |
+
msgstr "Kein API-Schlüssel vorgegeben. Legen Sie Ihre Mollie-API-Schlüssel unten fest."
|
433 |
+
|
434 |
+
#: src/Mollie/WC/Gateway/Giropay.php:29
|
435 |
+
msgid "Giropay"
|
436 |
+
msgstr "Giropay"
|
437 |
+
|
438 |
+
#: src/Mollie/WC/Gateway/EPS.php:29
|
439 |
+
msgid "EPS"
|
440 |
+
msgstr "EPS"
|
441 |
+
|
442 |
+
#. translators: Placeholder 1: Payment method title
|
443 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:325
|
444 |
+
msgid "Could not create %s renewal payment."
|
445 |
+
msgstr "Erneute %s-Zahlung konnte nicht erstellt werden."
|
446 |
+
|
447 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:282
|
448 |
+
msgid "The customer (%s) does not have a valid mandate."
|
449 |
+
msgstr "Der Kunde (%s) hat kein gültiges Mandat."
|
450 |
+
|
451 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:273
|
452 |
+
msgid "The customer (%s) could not be used or found. "
|
453 |
+
msgstr "Der Kunde (%s) konnte nicht verwendet oder gefunden werden. "
|
454 |
+
|
455 |
+
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
456 |
+
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
457 |
+
#. placeholder 5: refund ID
|
458 |
+
#: src/Mollie/WC/Payment/Payment.php:595
|
459 |
+
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
460 |
+
msgstr "Rückerstattung %s%s%s – Zahlung: %s, Rückerstattung: %s"
|
461 |
+
|
462 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1137
|
463 |
+
msgid "New chargeback %s processed! Order note and order status updated."
|
464 |
+
msgstr "Neue Rückbuchung %s erfasst. Bestellungsnotiz und Status aktualisiert."
|
465 |
+
|
466 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1038
|
467 |
+
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
468 |
+
msgstr "Neue Rückerstattung %s im Mollie-Dashboard verarbeitet. Bestellungsnotiz hinzugefügt, Bestellung jedoch nicht aktualisiert."
|
469 |
+
|
470 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
471 |
+
#: src/Mollie/WC/Payment/Order.php:630 src/Mollie/WC/Payment/Payment.php:432
|
472 |
+
msgid "%s payment failed via Mollie (%s)."
|
473 |
+
msgstr "%s-Bezahlung über Mollie fehlgeschlagen (%s)."
|
474 |
+
|
475 |
+
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
476 |
+
#. Mollie currencies
|
477 |
+
#: src/Mollie/WC/Gateway/Abstract.php:250
|
478 |
+
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
479 |
+
msgstr "Die aktuelle Shopwährung %s wird von Mollie nicht unterstützt. Mehr Informationen zu %sunterstützten Währungen und Bezahlungsmethoden.%s "
|
480 |
+
|
481 |
+
#: mollie-payments-for-WooCommerce.php:105
|
482 |
+
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."
|
483 |
+
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 %sdiese häufig gestellten Fragen%s."
|
484 |
+
|
485 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
486 |
+
#: src/Mollie/WC/Payment/Order.php:540 src/Mollie/WC/Payment/Order.php:701
|
487 |
+
#: src/Mollie/WC/Payment/Payment.php:343 src/Mollie/WC/Payment/Payment.php:506
|
488 |
+
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
489 |
+
msgstr "Der Mollie-WebHook wurde aufgerufen, die Zahlung wurde jedoch gleichzeitig über %s gestartet. Der Bestellstatus wird deshalb nicht aktualisiert."
|
490 |
+
|
491 |
+
#. translators: Placeholder 1: enabled or disabled
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:466
|
493 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
494 |
+
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."
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1289
|
497 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1297
|
498 |
+
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
499 |
+
msgstr "Ihre Zahlung war nicht erfolgreich. Vervollständigen Sie Ihre Bestellung bitte mit einer anderen Zahlungsmethode."
|
500 |
+
|
501 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
502 |
+
#: src/Mollie/WC/Payment/Order.php:606 src/Mollie/WC/Payment/Payment.php:409
|
503 |
+
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
504 |
+
msgstr "Erneute %s-Zahlung über Mollie fehlgeschlagen (%s). Sie müssen die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen."
|
505 |
+
|
506 |
+
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
507 |
+
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
508 |
+
msgid "Bancontact"
|
509 |
+
msgstr "Bancontact"
|
510 |
+
|
511 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
512 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1595
|
513 |
+
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."
|
514 |
+
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."
|
515 |
+
|
516 |
+
#: src/Mollie/WC/Gateway/Abstract.php:469
|
517 |
+
msgid "Failed switching subscriptions, no valid mandate."
|
518 |
+
msgstr "Abonnement-Umstellung fehlgeschlagen, kein valides Mandat."
|
519 |
+
|
520 |
+
#: src/Mollie/WC/Gateway/Abstract.php:468
|
521 |
+
msgid "Failed switching subscriptions, no valid mandate.found. Place a completely new order to change your subscription."
|
522 |
+
msgstr "Abonnement-Umstellung fehlgeschlagen, kein valides Mandat gefunden. Leiten Sie einen neuen Bestellvorgang ein, um Ihr Abonnement zu ändern."
|
523 |
+
|
524 |
+
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
525 |
+
msgid "ING Home'Pay"
|
526 |
+
msgstr "ING Home'Pay"
|
527 |
+
|
528 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
529 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1165
|
530 |
+
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use them)."
|
531 |
+
msgstr "%s-Bezahlung über Mollie zurückgebucht (%s). Sie müssen die Zahlung händisch überprüfen und, falls verwendet, die Produktbestände anpassen."
|
532 |
+
|
533 |
+
#: src/Mollie/WC/Gateway/Kbc.php:41
|
534 |
+
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."
|
535 |
+
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."
|
536 |
+
|
537 |
+
#: src/Mollie/WC/Gateway/Kbc.php:34
|
538 |
+
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."
|
539 |
+
msgstr "Wenn Sie die Option deaktivieren, wird die Drop-down-Liste mit verschiedenen KBC/CBC-Banken nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-Bezahlvorgang eine KBC/CBC-Bank aus."
|
540 |
+
|
541 |
+
#: src/Mollie/WC/Gateway/Kbc.php:32
|
542 |
+
msgid "Show KBC/CBC banks dropdown"
|
543 |
+
msgstr "Drop-down-Liste für KBC/CBC-Banken anzeigen"
|
544 |
+
|
545 |
+
#: src/Mollie/WC/Gateway/Ideal.php:41
|
546 |
+
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."
|
547 |
+
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."
|
548 |
+
|
549 |
+
#: src/Mollie/WC/Gateway/Ideal.php:34
|
550 |
+
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."
|
551 |
+
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."
|
552 |
+
|
553 |
+
#: src/Mollie/WC/Gateway/Ideal.php:32
|
554 |
+
msgid "Show iDEAL banks dropdown"
|
555 |
+
msgstr "Drop-down-Liste für iDEAL-Banken anzeigen"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:40
|
558 |
+
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."
|
559 |
+
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."
|
560 |
+
|
561 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
562 |
+
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."
|
563 |
+
msgstr "Wenn Sie die Option deaktivieren, wird die Drop-down-Liste mit verschiedenen Geschenkkarten nicht im WooCommerce-Bezahlvorgang angezeigt, sondern die Benutzer wählen auf der Mollie-Bezahlseite nach dem WooCommerce-Bezahlvorgang eine Geschenkkarte aus."
|
564 |
+
|
565 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
566 |
+
msgid "Show gift cards dropdown"
|
567 |
+
msgstr "Drop-down-Liste für Geschenkkarten anzeigen"
|
568 |
+
|
569 |
+
#: src/Mollie/WC/Gateway/Abstract.php:457
|
570 |
+
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
571 |
+
msgstr "Die Bestellung wurde wegen eines bestehenden, gültigen Mandats bei Mollie intern abgewickelt."
|
572 |
+
|
573 |
+
#: mollie-payments-for-WooCommerce.php:149
|
574 |
+
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"
|
575 |
+
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"
|
576 |
+
|
577 |
+
#: mollie-payments-for-WooCommerce.php:131
|
578 |
+
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"
|
579 |
+
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"
|
580 |
+
|
581 |
+
#: src/Mollie/WC/Helper/Settings.php:415
|
582 |
+
msgid "Cancelled"
|
583 |
+
msgstr "Storniert"
|
584 |
+
|
585 |
+
#: src/Mollie/WC/Helper/Settings.php:414
|
586 |
+
msgid "Pending"
|
587 |
+
msgstr "Offen"
|
588 |
+
|
589 |
+
#: src/Mollie/WC/Helper/Settings.php:411
|
590 |
+
msgid "Order status after cancelled payment"
|
591 |
+
msgstr "Bestellstatus nach stornierter Zahlung"
|
592 |
+
|
593 |
+
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
594 |
+
#. placeholder 3: consumer BIC
|
595 |
+
#: src/Mollie/WC/Gateway/Sofort.php:64 src/Mollie/WC/Gateway/Ideal.php:121
|
596 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80
|
597 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:172
|
598 |
+
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
599 |
+
msgstr "Zahlung durch <strong>%s</strong> erfolgt (IBAN (letzte 4 Ziffern): %s, BIC: %s)"
|
600 |
+
|
601 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1635
|
602 |
+
msgid "Your order has been cancelled."
|
603 |
+
msgstr "Ihre Bestellung wurde storniert."
|
604 |
+
|
605 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1604
|
606 |
+
msgid ", payment pending."
|
607 |
+
msgstr ", Zahlung ausstehend"
|
608 |
+
|
609 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1564
|
610 |
+
msgid "Order cancelled"
|
611 |
+
msgstr "Bestellung storniert"
|
612 |
+
|
613 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
614 |
+
#. status, placeholder 3: payment ID
|
615 |
+
#: src/Mollie/WC/Gateway/Abstract.php:935
|
616 |
+
msgid "%s payment %s (%s), not processed."
|
617 |
+
msgstr "%s-Zahlung %s (%s), nicht verarbeitet."
|
618 |
+
|
619 |
+
#. translators: Default gift card dropdown description, displayed above issuer
|
620 |
+
#. drop down
|
621 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:76
|
622 |
+
msgid "Select your gift card"
|
623 |
+
msgstr "Wählen Sie Ihre Geschenkkarte aus"
|
624 |
+
|
625 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:60
|
626 |
+
msgid "Gift cards"
|
627 |
+
msgstr "Geschenkkarten"
|
628 |
+
|
629 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
630 |
+
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."
|
631 |
+
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."
|
632 |
+
|
633 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
634 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:190
|
635 |
+
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
636 |
+
msgstr "Das Abonnement wird von ‚ausstehend‘ auf ‚aktiv‘ aktualisiert, bis die Zahlung fehlschlägt, da SEPA-Direktmandate etwas Zeit in Anspruch nehmen."
|
637 |
+
|
638 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
639 |
+
#: src/Mollie/WC/Payment/Payment.php:472
|
640 |
+
msgid "%s payment expired (%s) but order not cancelled because of another pending payment (%s)."
|
641 |
+
msgstr "%s-Zahlung (%s) abgelaufen, wegen einer weiteren offenen Zahlung (%s) jedoch nicht abgebrochen."
|
642 |
+
|
643 |
+
#: src/subscriptions_status_check_functions.php:195
|
644 |
+
msgid "There are still some subscriptions left, use the tool again!"
|
645 |
+
msgstr "Es sind noch Abonnements übrig, verwenden Sie das Tool erneut."
|
646 |
+
|
647 |
+
#: src/subscriptions_status_check_functions.php:193
|
648 |
+
msgid "No more subscriptions left to process!"
|
649 |
+
msgstr "Keine zu verarbeitenden Abonnements übrig."
|
650 |
+
|
651 |
+
#: src/subscriptions_status_check_functions.php:180
|
652 |
+
msgid "No subscriptions updated in this batch."
|
653 |
+
msgstr "In dieser Charge wurden keine Abonnements aktualisiert."
|
654 |
+
|
655 |
+
#: src/subscriptions_status_check_functions.php:156
|
656 |
+
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
657 |
+
msgstr "Die Abonnements wurden nicht aktualisiert, da Mollie kein gültiges Mandat vorliegt. Verarbeitet durch das Tool ‚Mollie-Abonnementstatus‘."
|
658 |
+
|
659 |
+
#: src/subscriptions_status_check_functions.php:142
|
660 |
+
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
661 |
+
msgstr "Abonnement auf automatisierte Erneuerung über Mollie aktualisiert, Status auf aktiv gesetzt. Verarbeitet durch das Tool ‚Mollie-Abonnementstatus‘."
|
662 |
+
|
663 |
+
#: src/subscriptions_status_check_functions.php:36
|
664 |
+
msgid "Check subscriptions status"
|
665 |
+
msgstr "Abonnementstatus überprüfen"
|
666 |
+
|
667 |
+
#: src/subscriptions_status_check_functions.php:35
|
668 |
+
msgid "Mollie Subscriptions Status"
|
669 |
+
msgstr "Mollie-Abonnementstatus"
|
670 |
+
|
671 |
+
#: src/subscriptions_status_check_functions.php:30
|
672 |
+
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
673 |
+
msgstr "Überprüft auf fälschlicherweise auf ‚manuelle Erneuerung‘ gesetzte Abonnements. Lesen Sie zunächst die "
|
674 |
+
|
675 |
+
#: src/Mollie/WC/Helper/Settings.php:464
|
676 |
+
msgid "Store customer details at Mollie"
|
677 |
+
msgstr "Kundendetails des Geschäfts bei Mollie"
|
678 |
+
|
679 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
680 |
+
#: src/Mollie/WC/Plugin.php:134
|
681 |
+
msgid "%s payment failed (%s)."
|
682 |
+
msgstr "%s-Bezahlung fehlgeschlagen (%s)."
|
683 |
+
|
684 |
+
#: src/Mollie/WC/Gateway/Kbc.php:61
|
685 |
+
msgid "KBC/CBC Payment Button"
|
686 |
+
msgstr "KBC/CBC-Zahlungsbutton"
|
687 |
+
|
688 |
+
#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Giftcard.php:38
|
689 |
+
#: src/Mollie/WC/Gateway/Kbc.php:39
|
690 |
+
msgid "Issuers empty option"
|
691 |
+
msgstr "Kartenaussteller-Option leer"
|
692 |
+
|
693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:48
|
694 |
+
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."
|
695 |
+
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."
|
696 |
+
|
697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
698 |
+
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
699 |
+
msgstr "Mollie-Bezahlseite überspringen, wenn Überweisung ausgewählt wurde"
|
700 |
+
|
701 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:46
|
702 |
+
msgid "Skip Mollie payment screen"
|
703 |
+
msgstr "Mollie-Bezahlseite überspringen"
|
704 |
+
|
705 |
+
#. Description of the plugin
|
706 |
+
msgid "Accept payments in WooCommerce with the official Mollie plugin"
|
707 |
+
msgstr "WooCommerce-Zahlungen mit dem offiziellen Mollie-Plugin akzeptieren"
|
708 |
+
|
709 |
+
#. Plugin URI of the plugin
|
710 |
+
#. Author URI of the plugin
|
711 |
+
msgid "https://www.mollie.com"
|
712 |
+
msgstr "https://www.mollie.com"
|
713 |
+
|
714 |
+
#. Author of the plugin
|
715 |
+
msgid "Mollie"
|
716 |
+
msgstr "Mollie"
|
717 |
+
|
718 |
+
#. Plugin Name of the plugin
|
719 |
+
msgid "Mollie Payments for WooCommerce"
|
720 |
+
msgstr "Mollie-Zahlungen für WooCommerce"
|
721 |
+
|
722 |
+
#: src/Mollie/WC/Plugin.php:780
|
723 |
+
msgid "Logs"
|
724 |
+
msgstr "Protokolle"
|
725 |
+
|
726 |
+
#: src/Mollie/WC/Helper/Status.php:123
|
727 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
728 |
+
msgstr "Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung cURL benötigt. Bitte aktivieren Sie die ‚curl‘-Erweiterung in Ihrer PHP-Konfiguration."
|
729 |
+
|
730 |
+
#: src/Mollie/WC/Helper/Status.php:116
|
731 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
732 |
+
msgstr "Für Mollie-Zahlungen für WooCommerce wird die PHP-Erweiterung JSON benötigt. Bitte aktivieren Sie die ‚json‘-Erweiterung in Ihrer PHP-Konfiguration."
|
733 |
+
|
734 |
+
#: src/Mollie/WC/Helper/Status.php:80
|
735 |
+
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
736 |
+
msgstr "Mobiler API-Client nicht installiert. Vergewissern Sie sich, dass das Plugin korrekt installiert ist."
|
737 |
+
|
738 |
+
#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce
|
739 |
+
#. version, placeholder 3: used WooCommerce version
|
740 |
+
#: src/Mollie/WC/Helper/Status.php:67
|
741 |
+
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
742 |
+
msgstr "Das %s-Plugin benötigt WooCommerce %s oder höher, Sie verwenden Version %s. Aktualisieren Sie bitte Ihr WooCommerce-Plugin."
|
743 |
+
|
744 |
+
#: src/Mollie/WC/Helper/Settings.php:473
|
745 |
+
msgid "Debug Log"
|
746 |
+
msgstr "Debug-Protokoll"
|
747 |
+
|
748 |
+
#: src/Mollie/WC/Helper/Settings.php:437
|
749 |
+
msgid "French (Belgium)"
|
750 |
+
msgstr "Französisch (Belgien)"
|
751 |
+
|
752 |
+
#: src/Mollie/WC/Helper/Settings.php:436
|
753 |
+
msgid "French"
|
754 |
+
msgstr "Französisch"
|
755 |
+
|
756 |
+
#: src/Mollie/WC/Helper/Settings.php:441
|
757 |
+
msgid "Spanish"
|
758 |
+
msgstr "Spanisch"
|
759 |
+
|
760 |
+
#: src/Mollie/WC/Helper/Settings.php:438
|
761 |
+
msgid "German"
|
762 |
+
msgstr "Deutsch"
|
763 |
+
|
764 |
+
#: src/Mollie/WC/Helper/Settings.php:433
|
765 |
+
msgid "English"
|
766 |
+
msgstr "Englisch"
|
767 |
+
|
768 |
+
#: src/Mollie/WC/Helper/Settings.php:435
|
769 |
+
msgid "Flemish (Belgium)"
|
770 |
+
msgstr "Flämisch (Belgien)"
|
771 |
+
|
772 |
+
#: src/Mollie/WC/Helper/Settings.php:434
|
773 |
+
msgid "Dutch"
|
774 |
+
msgstr "Niederländisch"
|
775 |
+
|
776 |
+
#: src/Mollie/WC/Helper/Settings.php:429
|
777 |
+
msgid "Detect using browser language"
|
778 |
+
msgstr "Über Browsersprache erkennen"
|
779 |
+
|
780 |
+
#: src/Mollie/WC/Helper/Settings.php:422
|
781 |
+
msgid "Payment screen language"
|
782 |
+
msgstr "Sprache der Bezahlseite"
|
783 |
+
|
784 |
+
#: src/Mollie/WC/Helper/Settings.php:403
|
785 |
+
msgid "Test API key should start with test_"
|
786 |
+
msgstr "Der Test-API-Schlüssel sollte mit test_ beginnen"
|
787 |
+
|
788 |
+
#: src/Mollie/WC/Helper/Settings.php:392
|
789 |
+
msgid "Test API key"
|
790 |
+
msgstr "Test-API-Schlüssel"
|
791 |
+
|
792 |
+
#: src/Mollie/WC/Helper/Settings.php:388
|
793 |
+
msgid "Enable test mode if you want to test the plugin without using real payments."
|
794 |
+
msgstr "Aktivieren Sie den Testmodus, wenn Sie das Plugin ohne echte Bezahlung testen möchten."
|
795 |
+
|
796 |
+
#: src/Mollie/WC/Helper/Settings.php:385
|
797 |
+
msgid "Enable test mode"
|
798 |
+
msgstr "Testmodus aktivieren"
|
799 |
+
|
800 |
+
#: src/Mollie/WC/Helper/Settings.php:377
|
801 |
+
msgid "Live API key should start with live_"
|
802 |
+
msgstr "Der Live-API-Schlüssel sollte mit live_ beginnen"
|
803 |
+
|
804 |
+
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
805 |
+
#. %s's Will be replaced by a link to the Mollie profile
|
806 |
+
#: src/Mollie/WC/Helper/Settings.php:371 src/Mollie/WC/Helper/Settings.php:397
|
807 |
+
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
808 |
+
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"
|
809 |
+
|
810 |
+
#: src/Mollie/WC/Helper/Settings.php:366
|
811 |
+
msgid "Live API key"
|
812 |
+
msgstr "Live-API-Schlüssel"
|
813 |
+
|
814 |
+
#: src/Mollie/WC/Helper/Settings.php:362
|
815 |
+
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
816 |
+
msgstr "Die folgenden Optionen sind für die Verwendung des Plugins verpflichtend und werden von allen Mollie-Bezahlmethoden verwendet"
|
817 |
+
|
818 |
+
#: src/Mollie/WC/Helper/Settings.php:359 src/Mollie/WC/Plugin.php:773
|
819 |
+
msgid "Mollie settings"
|
820 |
+
msgstr "Mollie-Einstellungen"
|
821 |
+
|
822 |
+
#. translators: Placeholder 1: Location of the log files
|
823 |
+
#: src/Mollie/WC/Helper/Settings.php:352
|
824 |
+
msgid "Log files are saved to <code>%s</code>"
|
825 |
+
msgstr "Protokolldateien werden unter <code>%s</code> gespeichert"
|
826 |
+
|
827 |
+
#: src/Mollie/WC/Helper/Settings.php:346
|
828 |
+
msgid "View logs"
|
829 |
+
msgstr "Protokolle anzeigen"
|
830 |
+
|
831 |
+
#: src/Mollie/WC/Helper/Settings.php:341
|
832 |
+
msgid "Log plugin events."
|
833 |
+
msgstr "Plugin-Vorgänge protokollieren."
|
834 |
+
|
835 |
+
#: src/Mollie/WC/Helper/Settings.php:301
|
836 |
+
msgid "Edit"
|
837 |
+
msgstr "Bearbeiten"
|
838 |
+
|
839 |
+
#: src/Mollie/WC/Helper/Settings.php:270
|
840 |
+
msgid "Refresh"
|
841 |
+
msgstr "Aktualisieren"
|
842 |
+
|
843 |
+
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
844 |
+
#. profile
|
845 |
+
#: src/Mollie/WC/Helper/Settings.php:261
|
846 |
+
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
847 |
+
msgstr "Die folgenden Bezahlmethoden sind in Ihrem %sMollie-Profil%s aktiviert:"
|
848 |
+
|
849 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
850 |
+
msgid "Gateway disabled"
|
851 |
+
msgstr "Gateway deaktiviert"
|
852 |
+
|
853 |
+
#. translators: Placeholder 1: enabled or disabled
|
854 |
+
#: src/Mollie/WC/Helper/Settings.php:250 src/Mollie/WC/Helper/Settings.php:466
|
855 |
+
msgid "Enabled"
|
856 |
+
msgstr "Aktiv"
|
857 |
+
|
858 |
+
#: src/Mollie/WC/Helper/Settings.php:250
|
859 |
+
msgid "Gateway enabled"
|
860 |
+
msgstr "Gateway aktiviert"
|
861 |
+
|
862 |
+
#: src/Mollie/WC/Helper/Settings.php:207
|
863 |
+
msgid "Connected"
|
864 |
+
msgstr "Verbunden"
|
865 |
+
|
866 |
+
#: src/Mollie/WC/Helper/Settings.php:206
|
867 |
+
msgid "Mollie status:"
|
868 |
+
msgstr "Mollie-Status:"
|
869 |
+
|
870 |
+
#: src/Mollie/WC/Helper/Settings.php:193
|
871 |
+
msgid "Error"
|
872 |
+
msgstr "Fehler"
|
873 |
+
|
874 |
+
#: src/Mollie/WC/Helper/Data.php:613
|
875 |
+
msgid "Item #%s stock incremented from %s to %s."
|
876 |
+
msgstr "Artikel #%s Bestand von %s auf %s erhöht."
|
877 |
+
|
878 |
+
#: src/Mollie/WC/Gateway/Sofort.php:33
|
879 |
+
msgid "SOFORT Banking"
|
880 |
+
msgstr "SOFORT-Banking"
|
881 |
+
|
882 |
+
#: src/Mollie/WC/Gateway/Paysafecard.php:20
|
883 |
+
msgid "paysafecard"
|
884 |
+
msgstr "paysafecard"
|
885 |
+
|
886 |
+
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
887 |
+
#. email, placeholder 3: PayPal transaction ID
|
888 |
+
#: src/Mollie/WC/Gateway/PayPal.php:64
|
889 |
+
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
890 |
+
msgstr "Zahlung durch <strong>%s</strong> - %s (PayPal Transaktions-ID: %s) erfolgt"
|
891 |
+
|
892 |
+
#: src/Mollie/WC/Gateway/PayPal.php:33
|
893 |
+
msgid "PayPal"
|
894 |
+
msgstr "PayPal"
|
895 |
+
|
896 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
897 |
+
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
898 |
+
#. drop down
|
899 |
+
#: src/Mollie/WC/Gateway/Ideal.php:77 src/Mollie/WC/Gateway/Kbc.php:77
|
900 |
+
msgid "Select your bank"
|
901 |
+
msgstr "Wählen Sie Ihre Bank aus"
|
902 |
+
|
903 |
+
#: src/Mollie/WC/Gateway/Ideal.php:61
|
904 |
+
msgid "iDEAL"
|
905 |
+
msgstr "iDEAL"
|
906 |
+
|
907 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:42
|
908 |
+
msgid "SEPA Direct Debit"
|
909 |
+
msgstr "SEPA-Direktmandat"
|
910 |
+
|
911 |
+
#. translators: Placeholder 1: card holder
|
912 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:85
|
913 |
+
msgid "Payment completed by <strong>%s</strong>"
|
914 |
+
msgstr "Zahlung durch <strong>%s</strong> erfolgt"
|
915 |
+
|
916 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:34
|
917 |
+
msgid "Credit card"
|
918 |
+
msgstr "Kreditkarte"
|
919 |
+
|
920 |
+
#: src/Mollie/WC/Gateway/Belfius.php:33
|
921 |
+
msgid "Belfius Direct Net"
|
922 |
+
msgstr "Belfius Direct Net"
|
923 |
+
|
924 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:220
|
925 |
+
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
926 |
+
msgstr "Die Zahlungsfrist läuft am <strong>%s</strong> ab. Bitte überweisen Sie bis dahin den vollen Betrag."
|
927 |
+
|
928 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:213
|
929 |
+
msgid "The payment will expire on <strong>%s</strong>."
|
930 |
+
msgstr "Die Zahlungsfrist läuft am <strong>%s</strong> ab."
|
931 |
+
|
932 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
933 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
934 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
935 |
+
msgid "Please provide the payment reference <strong>%s</strong>"
|
936 |
+
msgstr "Geben Sie bitte die Zahlungsreferenz <strong>%s</strong> an"
|
937 |
+
|
938 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
939 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
940 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:193
|
941 |
+
msgid "Payment reference: %s"
|
942 |
+
msgstr "Zahlungsreferenz: %s"
|
943 |
+
|
944 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
945 |
+
msgid "BIC: %s"
|
946 |
+
msgstr "BIC: %s"
|
947 |
+
|
948 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:187
|
949 |
+
msgid "IBAN: <strong>%s</strong>"
|
950 |
+
msgstr "IBAN: <strong>%s</strong>"
|
951 |
+
|
952 |
+
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
953 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:186
|
954 |
+
msgid "Beneficiary: %s"
|
955 |
+
msgstr "Begünstigter: %s"
|
956 |
+
|
957 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:182
|
958 |
+
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
959 |
+
msgstr "Bitte schließen Sie die Zahlung ab, indem Sie den vollen Betrag auf das folgende Konto überweisen:"
|
960 |
+
|
961 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:122
|
962 |
+
msgid "Bank Transfer"
|
963 |
+
msgstr "Überweisung"
|
964 |
+
|
965 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
966 |
+
msgid "Disabled"
|
967 |
+
msgstr "Deaktiviert"
|
968 |
+
|
969 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:37
|
970 |
+
msgid "Number of days after the payment will expire. Default <code>%d</code> days"
|
971 |
+
msgstr "Tage nach Ende der Zahlungsfrist. Standard: <code>%d</code> Tage."
|
972 |
+
|
973 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:35
|
974 |
+
msgid "Expiry date"
|
975 |
+
msgstr "Ablaufdatum"
|
976 |
+
|
977 |
+
#. translators: Placeholder 1: payment method
|
978 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1508
|
979 |
+
msgid "Payment completed with <strong>%s</strong>"
|
980 |
+
msgstr "Zahlung durch <strong>%s</strong> erfolgt"
|
981 |
+
|
982 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1501
|
983 |
+
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."
|
984 |
+
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."
|
985 |
+
|
986 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1496
|
987 |
+
msgid "We have not received a definite payment status."
|
988 |
+
msgstr "Wir haben keinen endgültigen Zahlungsstatus erhalten."
|
989 |
+
|
990 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1271
|
991 |
+
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
992 |
+
msgstr "Sie haben Ihre Zahlung storniert. Vervollständigen Sie Ihre Bestellung bitte mit einer anderen Zahlungsmethode."
|
993 |
+
|
994 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Payment/Payment.php:513
|
996 |
+
msgid "%s payment expired (%s)."
|
997 |
+
msgstr "%s-Zahlung abgelaufen (%s)."
|
998 |
+
|
999 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1000 |
+
#: src/Mollie/WC/Payment/Order.php:295 src/Mollie/WC/Payment/Payment.php:241
|
1001 |
+
msgid "Order completed using %s payment (%s)."
|
1002 |
+
msgstr "Bestellung über %s-Bezahlung %s abgeschlossen."
|
1003 |
+
|
1004 |
+
#. translators: Placeholder 1: Payment method title
|
1005 |
+
#: src/Mollie/WC/Gateway/Abstract.php:678
|
1006 |
+
msgid "Could not create %s payment."
|
1007 |
+
msgstr "%s-Zahlung konnte nicht erstellt werden."
|
1008 |
+
|
1009 |
+
#: src/Mollie/WC/Payment/Order.php:297 src/Mollie/WC/Payment/Order.php:368
|
1010 |
+
#: src/Mollie/WC/Payment/Order.php:440 src/Mollie/WC/Payment/Order.php:550
|
1011 |
+
#: src/Mollie/WC/Payment/Order.php:608 src/Mollie/WC/Payment/Order.php:632
|
1012 |
+
#: src/Mollie/WC/Payment/Order.php:669 src/Mollie/WC/Payment/Order.php:710
|
1013 |
+
#: src/Mollie/WC/Payment/Payment.php:243 src/Mollie/WC/Payment/Payment.php:353
|
1014 |
+
#: src/Mollie/WC/Payment/Payment.php:411 src/Mollie/WC/Payment/Payment.php:434
|
1015 |
+
#: src/Mollie/WC/Payment/Payment.php:474 src/Mollie/WC/Payment/Payment.php:515
|
1016 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1017 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1018 |
+
#: src/Mollie/WC/Gateway/Abstract.php:656
|
1019 |
+
#: src/Mollie/WC/Gateway/Abstract.php:938
|
1020 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1167
|
1021 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1208
|
1022 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1597
|
1023 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:466
|
1024 |
+
msgid "test mode"
|
1025 |
+
msgstr "Testmodus"
|
1026 |
+
|
1027 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1028 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1029 |
+
#: src/Mollie/WC/Gateway/Abstract.php:654
|
1030 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1031 |
+
msgid "%s payment started (%s)."
|
1032 |
+
msgstr "%s-Bezahlung gestartet (%s)."
|
1033 |
+
|
1034 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1035 |
+
#: src/Mollie/WC/Gateway/Abstract.php:644
|
1036 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1037 |
+
msgid "Awaiting payment confirmation."
|
1038 |
+
msgstr "Die Zahlungsbestätigung wird erwartet."
|
1039 |
+
|
1040 |
+
#: src/Mollie/WC/Gateway/Abstract.php:402
|
1041 |
+
msgid "Could not load order %s"
|
1042 |
+
msgstr "Bestellung %s konnte nicht geladen werden"
|
1043 |
+
|
1044 |
+
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1045 |
+
#. be replaced by a link to the Mollie profile
|
1046 |
+
#: src/Mollie/WC/Gateway/Abstract.php:238
|
1047 |
+
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1048 |
+
msgstr "%s ist nicht in Ihrem Mollie-Profil aktiviert. Sie können es aktivieren, indem Sie Ihr %sMollie-Profil%s bearbeiten."
|
1049 |
+
|
1050 |
+
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1051 |
+
#. setting page
|
1052 |
+
#: src/Mollie/WC/Gateway/Abstract.php:226
|
1053 |
+
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1054 |
+
msgstr "Kein API-Schlüssel vorgegeben. Bitte %slegen Sie Ihren Mollie-API-Schlüssel fest%s."
|
1055 |
+
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:181
|
1057 |
+
msgid "Gateway Disabled"
|
1058 |
+
msgstr "Gateway deaktiviert"
|
1059 |
+
|
1060 |
+
#: src/Mollie/WC/Helper/Settings.php:256 src/Mollie/WC/Gateway/Abstract.php:224
|
1061 |
+
msgid "Test mode enabled."
|
1062 |
+
msgstr "Testmodus aktiviert."
|
1063 |
+
|
1064 |
+
#: src/Mollie/WC/Gateway/Abstract.php:143
|
1065 |
+
msgid "Hold Stock (minutes)"
|
1066 |
+
msgstr "Bestand halten (Minuten)"
|
1067 |
+
|
1068 |
+
#: src/Mollie/WC/Gateway/Abstract.php:141
|
1069 |
+
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."
|
1070 |
+
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."
|
1071 |
+
|
1072 |
+
#: src/Mollie/WC/Helper/Settings.php:428 src/Mollie/WC/Gateway/Abstract.php:135
|
1073 |
+
msgid "default"
|
1074 |
+
msgstr "Standard"
|
1075 |
+
|
1076 |
+
#: src/Mollie/WC/Gateway/Abstract.php:132
|
1077 |
+
msgid "Initial order status"
|
1078 |
+
msgstr "Initialer Bestellstatus"
|
1079 |
+
|
1080 |
+
#: src/Mollie/WC/Gateway/Abstract.php:123
|
1081 |
+
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1082 |
+
msgstr "Beschreibung der Bezahlmethode, die der Kunde im Bezahlvorgang angezeigt bekommt. Standard: <code>%s</code>"
|
1083 |
+
|
1084 |
+
#: src/Mollie/WC/Gateway/Abstract.php:121
|
1085 |
+
msgid "Description"
|
1086 |
+
msgstr "Beschreibung"
|
1087 |
+
|
1088 |
+
#: src/Mollie/WC/Gateway/Abstract.php:117
|
1089 |
+
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1090 |
+
msgstr "Logo bei Bezahlvorgang anzeigen. Standard: <code>aktiviert</code>"
|
1091 |
+
|
1092 |
+
#: src/Mollie/WC/Gateway/Abstract.php:115
|
1093 |
+
msgid "Display logo"
|
1094 |
+
msgstr "Logo anzeigen"
|
1095 |
+
|
1096 |
+
#: src/Mollie/WC/Gateway/Abstract.php:110
|
1097 |
+
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1098 |
+
msgstr "Hierdurch wird der Titel gesteuert, den Benutzer beim Bezahlvorgang sehen. Standard: <code>%s</code>"
|
1099 |
+
|
1100 |
+
#: src/Mollie/WC/Gateway/Abstract.php:108
|
1101 |
+
msgid "Title"
|
1102 |
+
msgstr "Titel"
|
1103 |
+
|
1104 |
+
#: src/Mollie/WC/Gateway/Abstract.php:104
|
1105 |
+
msgid "Enable %s"
|
1106 |
+
msgstr "%s aktivieren"
|
1107 |
+
|
1108 |
+
#: src/Mollie/WC/Gateway/Abstract.php:102
|
1109 |
+
msgid "Enable/Disable"
|
1110 |
+
msgstr "Aktivieren/deaktivieren"
|
languages/mollie-payments-for-woocommerce-es_ES.mo
ADDED
Binary file
|
languages/mollie-payments-for-woocommerce-es_ES.po
ADDED
@@ -0,0 +1,1110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Development (trunk) in Spanish (Spain)
|
2 |
+
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Development (trunk) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2020-05-18 16:40+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/2.4.0-alpha\n"
|
11 |
+
"Language: es\n"
|
12 |
+
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Development (trunk)\n"
|
13 |
+
|
14 |
+
#: inc/settings/mollie_components_enabler.php:7
|
15 |
+
msgid "Enable the Mollie Components for this Gateway"
|
16 |
+
msgstr "Habilitar componentes de Mollie para esta pasarela"
|
17 |
+
|
18 |
+
#: inc/settings/mollie_components_enabler.php:6
|
19 |
+
msgid "Enable Mollie Components"
|
20 |
+
msgstr "Habilitar componentes de Mollie"
|
21 |
+
|
22 |
+
#: inc/settings/mollie_components.php:157
|
23 |
+
msgctxt "Mollie Components Settings"
|
24 |
+
msgid "Background Color for invalid input."
|
25 |
+
msgstr "Color de fondo para entrada no válida."
|
26 |
+
|
27 |
+
#: inc/settings/mollie_components.php:146
|
28 |
+
msgctxt "Mollie Components Settings"
|
29 |
+
msgid "Text Color for invalid input."
|
30 |
+
msgstr "Color del texto para entrada no válida."
|
31 |
+
|
32 |
+
#: inc/settings/mollie_components.php:136
|
33 |
+
msgctxt "Mollie Components Settings"
|
34 |
+
msgid "Invalid Status Styles"
|
35 |
+
msgstr "Estilos de estado no válido"
|
36 |
+
|
37 |
+
#: inc/settings/mollie_components.php:122
|
38 |
+
msgctxt "Mollie Components Settings"
|
39 |
+
msgid "Full Size Kana"
|
40 |
+
msgstr "Kana tamaño completo"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_components.php:117
|
43 |
+
msgctxt "Mollie Components Settings"
|
44 |
+
msgid "Full Width"
|
45 |
+
msgstr "Ancho completo"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_components.php:112
|
48 |
+
msgctxt "Mollie Components Settings"
|
49 |
+
msgid "Lowercase"
|
50 |
+
msgstr "Minúsculas"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_components.php:107
|
53 |
+
msgctxt "Mollie Components Settings"
|
54 |
+
msgid "Uppercase"
|
55 |
+
msgstr "Mayúsculas"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_components.php:102
|
58 |
+
msgctxt "Mollie Components Settings"
|
59 |
+
msgid "Capitalize"
|
60 |
+
msgstr "Mayúscula inicial"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_components.php:97
|
63 |
+
msgctxt "Mollie Components Settings"
|
64 |
+
msgid "None"
|
65 |
+
msgstr "Ninguno"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_components.php:94
|
68 |
+
msgctxt "Mollie Components Settings"
|
69 |
+
msgid "Transform Text"
|
70 |
+
msgstr "Transformar texto"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_components.php:88
|
73 |
+
msgctxt "Mollie Components Settings"
|
74 |
+
msgid "Justify"
|
75 |
+
msgstr "Justificar"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_components.php:87
|
78 |
+
msgctxt "Mollie Components Settings"
|
79 |
+
msgid "Center"
|
80 |
+
msgstr "Centrar"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_components.php:86
|
83 |
+
msgctxt "Mollie Components Settings"
|
84 |
+
msgid "Right"
|
85 |
+
msgstr "Derecha"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_components.php:85
|
88 |
+
msgctxt "Mollie Components Settings"
|
89 |
+
msgid "Left"
|
90 |
+
msgstr "Izquierda"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_components.php:82
|
93 |
+
msgctxt "Mollie Components Settings"
|
94 |
+
msgid "Align Text"
|
95 |
+
msgstr "Alineación del texto"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_components.php:72
|
98 |
+
msgctxt "Mollie Components Settings"
|
99 |
+
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
100 |
+
msgstr "Añadir relleno a los componentes. P. ej., las unidades `16px 16px 16px 16px` y `em`, `px`, `rem` están permitidas."
|
101 |
+
|
102 |
+
#: inc/settings/mollie_components.php:71
|
103 |
+
msgctxt "Mollie Components Settings"
|
104 |
+
msgid "Padding"
|
105 |
+
msgstr "Relleno"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_components.php:62
|
108 |
+
msgctxt "Mollie Components Settings"
|
109 |
+
msgid "Line Height"
|
110 |
+
msgstr "Alto de línea"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_components.php:56
|
113 |
+
msgctxt "Mollie Components Settings"
|
114 |
+
msgid "Letter Spacing"
|
115 |
+
msgstr "Espaciado entre caracteres"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_components.php:50
|
118 |
+
msgctxt "Mollie Components Settings"
|
119 |
+
msgid "Bold"
|
120 |
+
msgstr "Negrita"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_components.php:49
|
123 |
+
msgctxt "Mollie Components Settings"
|
124 |
+
msgid "Regular"
|
125 |
+
msgstr "Regular"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_components.php:48
|
128 |
+
msgctxt "Mollie Components Settings"
|
129 |
+
msgid "Lighter"
|
130 |
+
msgstr "Más fino"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_components.php:45
|
133 |
+
msgctxt "Mollie Components Settings"
|
134 |
+
msgid "Font Weight"
|
135 |
+
msgstr "Espesor de la fuente"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_components.php:35
|
138 |
+
msgctxt "Mollie Components Settings"
|
139 |
+
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'.."
|
140 |
+
msgstr "El tamaño de fuente define el tamaño de la fuente en los componentes. Se permiten las unidades `em`, `px`, `rem`."
|
141 |
+
|
142 |
+
#: inc/settings/mollie_components.php:34
|
143 |
+
msgctxt "Mollie Components Settings"
|
144 |
+
msgid "Font Size"
|
145 |
+
msgstr "Tamaño de fuente"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_components.php:28
|
148 |
+
msgctxt "Mollie Components Settings"
|
149 |
+
msgid "Placeholder Color"
|
150 |
+
msgstr "Color del marcador de posición"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145
|
153 |
+
msgctxt "Mollie Components Settings"
|
154 |
+
msgid "Text Color"
|
155 |
+
msgstr "Color del texto"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156
|
158 |
+
msgctxt "Mollie Components Settings"
|
159 |
+
msgid "Background Color"
|
160 |
+
msgstr "Color de fondo"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_components.php:7
|
163 |
+
msgctxt "Mollie Components Settings"
|
164 |
+
msgid "Base Styles"
|
165 |
+
msgstr "Estilos base"
|
166 |
+
|
167 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2056
|
168 |
+
msgid "Secure payments provided by "
|
169 |
+
msgstr "Pagos seguros ofrecidos por "
|
170 |
+
|
171 |
+
#: src/Mollie/WC/Plugin.php:431
|
172 |
+
msgid "An unknown error occurred, please check the card fields."
|
173 |
+
msgstr "Se ha producido un error desconocido, comprueba los campos de la tarjeta."
|
174 |
+
|
175 |
+
#: src/Mollie/WC/Plugin.php:424
|
176 |
+
msgid "Verification Code"
|
177 |
+
msgstr "Código de verificación"
|
178 |
+
|
179 |
+
#: src/Mollie/WC/Plugin.php:420
|
180 |
+
msgid "Expiry Date"
|
181 |
+
msgstr "Fecha de caducidad"
|
182 |
+
|
183 |
+
#: src/Mollie/WC/Plugin.php:412
|
184 |
+
msgid "Card Holder"
|
185 |
+
msgstr "Titular de la tarjeta"
|
186 |
+
|
187 |
+
#: src/Mollie/WC/Settings/Page/Components.php:10
|
188 |
+
msgid "Mollie Components"
|
189 |
+
msgstr "Componentes de Mollie"
|
190 |
+
|
191 |
+
#: src/Mollie/WC/Plugin.php:416
|
192 |
+
msgid "Card Number"
|
193 |
+
msgstr "Número de tarjeta"
|
194 |
+
|
195 |
+
#: src/Mollie/WC/Plugin.php:306
|
196 |
+
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
197 |
+
msgstr "%1$s elementos cancelados en WooCommerce y en Mollie."
|
198 |
+
|
199 |
+
#: src/Mollie/WC/Plugin.php:288
|
200 |
+
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
201 |
+
msgstr "%1$s elementos reembolsados en WooCommerce y en Mollie."
|
202 |
+
|
203 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
204 |
+
msgid "Empty WooCommerce order items or mollie order lines."
|
205 |
+
msgstr "Elementos del pedido WooCommerce o líneas de pedido Mollie vacíos."
|
206 |
+
|
207 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
208 |
+
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
209 |
+
msgstr "Imposible recuperar el ID del elemento del pedido relacionado con el elemento remoto: %1$s. Intenta hacer un reembolso por cantidad."
|
210 |
+
|
211 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
212 |
+
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
213 |
+
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."
|
214 |
+
|
215 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:115
|
216 |
+
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."
|
217 |
+
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."
|
218 |
+
|
219 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
220 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:159
|
221 |
+
msgid "Order completed using %1$s payment (%2$s)."
|
222 |
+
msgstr "Pedido completado mediante %1$s pago (%2$s)."
|
223 |
+
|
224 |
+
#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer
|
225 |
+
#. Account number
|
226 |
+
#: src/Mollie/WC/Gateway/MyBank.php:73
|
227 |
+
msgid "Payment completed by <strong>%1$s</strong> - %2$s"
|
228 |
+
msgstr "Pago completado por <strong>%1$s</strong> - %2$s"
|
229 |
+
|
230 |
+
#: src/Mollie/WC/Gateway/MyBank.php:44
|
231 |
+
msgid "To accept payments via MyBank"
|
232 |
+
msgstr "Para aceptar pagos mediante MyBank"
|
233 |
+
|
234 |
+
#: src/Mollie/WC/Gateway/MyBank.php:36
|
235 |
+
msgid "MyBank"
|
236 |
+
msgstr "MyBank"
|
237 |
+
|
238 |
+
#: src/Mollie/WC/Gateway/Applepay.php:45
|
239 |
+
msgid "To accept payments via Apple Pay"
|
240 |
+
msgstr "Para aceptar pagos mediante Apple Pay"
|
241 |
+
|
242 |
+
#: src/Mollie/WC/Gateway/Applepay.php:37
|
243 |
+
msgid "Apple Pay"
|
244 |
+
msgstr "Apple Pay"
|
245 |
+
|
246 |
+
#. translators: Placeholder 1: customer billing email
|
247 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:64
|
248 |
+
msgid "Payment completed by <strong>%s</strong>."
|
249 |
+
msgstr "Pago completado por <strong>%s</strong>."
|
250 |
+
|
251 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
252 |
+
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
253 |
+
msgstr "Para aceptar pagos mediante Przelewy24, se requiere un correo electrónico del cliente para cada pago."
|
254 |
+
|
255 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
256 |
+
msgid "Przelewy24"
|
257 |
+
msgstr "Przelewy24"
|
258 |
+
|
259 |
+
#: src/Mollie/WC/Helper/Status.php:89 mollie-payments-for-WooCommerce.php:83
|
260 |
+
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."
|
261 |
+
msgstr "Mollie Payments for WooCommerce requiere la extensión JSON para PHP. Habilítalo en tu servidor o pide a tu proveedor de alojamiento web que lo habilite por ti."
|
262 |
+
|
263 |
+
#: src/Mollie/WC/Payment/Order.php:1029
|
264 |
+
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
265 |
+
msgstr "Reembolso de %s%s reembolsado en WooCommerce y en Mollie.%s ID del reembolso: %s."
|
266 |
+
|
267 |
+
#: src/Mollie/WC/Payment/Order.php:946
|
268 |
+
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
269 |
+
msgstr "%sx %s reembolsado para %s%s en WooCommerce y en Mollie.%s ID del reembolso: %s."
|
270 |
+
|
271 |
+
#: src/Mollie/WC/Payment/Order.php:930
|
272 |
+
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
273 |
+
msgstr "%sx %s cancelado para %s%s en WooCommerce y en Mollie."
|
274 |
+
|
275 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
276 |
+
#: src/Mollie/WC/Payment/Order.php:438
|
277 |
+
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!"
|
278 |
+
msgstr "Pedido completado en Mollie para pedido %s (%s). Al menos una línea de pedido completada. Recuerda: ¡el estado «Completado» para un pedido en Mollie no significa lo mismo que el estado «Completado» en WooCommerce!"
|
279 |
+
|
280 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
281 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1206
|
282 |
+
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use them)."
|
283 |
+
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)."
|
284 |
+
|
285 |
+
#: src/Mollie/WC/Helper/Settings.php:624
|
286 |
+
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
287 |
+
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. Asegúrate de que sea así."
|
288 |
+
|
289 |
+
#: src/Mollie/WC/Payment/Payment.php:39
|
290 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
291 |
+
msgid "Order"
|
292 |
+
msgstr "Pedido"
|
293 |
+
|
294 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
295 |
+
#: src/Mollie/WC/Payment/Payment.php:351
|
296 |
+
msgid "%s payment (%s) cancelled ."
|
297 |
+
msgstr "Pago %s (%s) cancelado."
|
298 |
+
|
299 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
300 |
+
#: src/Mollie/WC/Payment/Order.php:708
|
301 |
+
msgid "%s order (%s) expired ."
|
302 |
+
msgstr "Pedido %s (%s) caducado."
|
303 |
+
|
304 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
305 |
+
#: src/Mollie/WC/Payment/Order.php:667
|
306 |
+
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
307 |
+
msgstr "Pedido %s caducado (%s) pero no cancelado a causa de otro pago pendiente (%s)."
|
308 |
+
|
309 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
310 |
+
#: src/Mollie/WC/Payment/Order.php:548
|
311 |
+
msgid "%s order (%s) cancelled ."
|
312 |
+
msgstr "Pedido %s (%s) cancelado. "
|
313 |
+
|
314 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
315 |
+
#: src/Mollie/WC/Payment/Order.php:366
|
316 |
+
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."
|
317 |
+
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."
|
318 |
+
|
319 |
+
#: src/Mollie/WC/Helper/Settings.php:649
|
320 |
+
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
321 |
+
msgstr "Para aceptar pagos Klarna vía Mollie, debes usar WooCommerce 3.0 o superior; actualmente estás usando la versión %s."
|
322 |
+
|
323 |
+
#: src/Mollie/WC/Helper/Settings.php:456
|
324 |
+
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."
|
325 |
+
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."
|
326 |
+
|
327 |
+
#: src/Mollie/WC/Helper/Settings.php:425
|
328 |
+
msgid "Automatically send WordPress language"
|
329 |
+
msgstr "Enviar automáticamente idioma de WordPress"
|
330 |
+
|
331 |
+
#: src/Mollie/WC/Helper/Settings.php:417
|
332 |
+
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."
|
333 |
+
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."
|
334 |
+
|
335 |
+
#: src/Mollie/WC/Helper/OrderLines.php:407
|
336 |
+
msgid "Shipping"
|
337 |
+
msgstr "Envío"
|
338 |
+
|
339 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
340 |
+
msgid "Klarna Slice it"
|
341 |
+
msgstr "Klarna Slice it"
|
342 |
+
|
343 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
344 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
345 |
+
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
346 |
+
msgstr "Para aceptar los pagos vía Klarna, todos los campos predeterminados del proceso de pago de WooCommerce deben estar habilitados y ser obligatorios."
|
347 |
+
|
348 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
349 |
+
msgid "Klarna Pay later"
|
350 |
+
msgstr "Klarna Pay later"
|
351 |
+
|
352 |
+
#: src/Mollie/WC/Helper/Status.php:131
|
353 |
+
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
354 |
+
msgstr "Mollie Payments for WooCommerce requiere que las funciones PHP cURL estén disponibles. Asegúrate de que todas estas funciones estén disponibles."
|
355 |
+
|
356 |
+
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
357 |
+
#. version
|
358 |
+
#: src/Mollie/WC/Helper/Status.php:104
|
359 |
+
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
360 |
+
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"
|
361 |
+
|
362 |
+
#: src/Mollie/WC/Helper/Settings.php:600
|
363 |
+
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."
|
364 |
+
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."
|
365 |
+
|
366 |
+
#: src/Mollie/WC/Helper/Settings.php:576
|
367 |
+
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."
|
368 |
+
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»."
|
369 |
+
|
370 |
+
#: src/Mollie/WC/Helper/Settings.php:453
|
371 |
+
msgid "Lithuanian"
|
372 |
+
msgstr "Lituano"
|
373 |
+
|
374 |
+
#: src/Mollie/WC/Helper/Settings.php:452
|
375 |
+
msgid "Latvian"
|
376 |
+
msgstr "Letón"
|
377 |
+
|
378 |
+
#: src/Mollie/WC/Helper/Settings.php:451
|
379 |
+
msgid "Polish"
|
380 |
+
msgstr "Polaco"
|
381 |
+
|
382 |
+
#: src/Mollie/WC/Helper/Settings.php:450
|
383 |
+
msgid "Hungarian"
|
384 |
+
msgstr "Húngaro"
|
385 |
+
|
386 |
+
#: src/Mollie/WC/Helper/Settings.php:449
|
387 |
+
msgid "Icelandic"
|
388 |
+
msgstr "Islandés"
|
389 |
+
|
390 |
+
#: src/Mollie/WC/Helper/Settings.php:448
|
391 |
+
msgid "Danish"
|
392 |
+
msgstr "Danés"
|
393 |
+
|
394 |
+
#: src/Mollie/WC/Helper/Settings.php:447
|
395 |
+
msgid "Finnish"
|
396 |
+
msgstr "Finlandés"
|
397 |
+
|
398 |
+
#: src/Mollie/WC/Helper/Settings.php:446
|
399 |
+
msgid "Swedish"
|
400 |
+
msgstr "Sueco"
|
401 |
+
|
402 |
+
#: src/Mollie/WC/Helper/Settings.php:445
|
403 |
+
msgid "Norwegian"
|
404 |
+
msgstr "Noruego"
|
405 |
+
|
406 |
+
#: src/Mollie/WC/Helper/Settings.php:444
|
407 |
+
msgid "Italian"
|
408 |
+
msgstr "Italiano"
|
409 |
+
|
410 |
+
#: src/Mollie/WC/Helper/Settings.php:443
|
411 |
+
msgid "Portuguese"
|
412 |
+
msgstr "Portugués"
|
413 |
+
|
414 |
+
#: src/Mollie/WC/Helper/Settings.php:442
|
415 |
+
msgid "Catalan"
|
416 |
+
msgstr "Catalán"
|
417 |
+
|
418 |
+
#: src/Mollie/WC/Helper/Settings.php:440
|
419 |
+
msgid "Swiss German"
|
420 |
+
msgstr "Alemán suizo"
|
421 |
+
|
422 |
+
#: src/Mollie/WC/Helper/Settings.php:439
|
423 |
+
msgid "Austrian German"
|
424 |
+
msgstr "Alemán austriaco"
|
425 |
+
|
426 |
+
#: src/Mollie/WC/Helper/Api.php:41
|
427 |
+
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."
|
428 |
+
msgstr "Clave(s) de API no válida(s). Puedes obtenerlas en la página de desarrolladores %sen el panel de Mollie%s. La(s) clave(s) de API deben empezar con 'live_' o 'test_', tener como mínimo 30 caracteres y no contener ningún carácter especial más."
|
429 |
+
|
430 |
+
#: src/Mollie/WC/Helper/Api.php:39
|
431 |
+
msgid "No API key provided. Please set your Mollie API keys below."
|
432 |
+
msgstr "Ninguna clave de API proporcionada. Configura tus claves de API de Mollie abajo."
|
433 |
+
|
434 |
+
#: src/Mollie/WC/Gateway/Giropay.php:29
|
435 |
+
msgid "Giropay"
|
436 |
+
msgstr "Giropay"
|
437 |
+
|
438 |
+
#: src/Mollie/WC/Gateway/EPS.php:29
|
439 |
+
msgid "EPS"
|
440 |
+
msgstr "EPS"
|
441 |
+
|
442 |
+
#. translators: Placeholder 1: Payment method title
|
443 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:325
|
444 |
+
msgid "Could not create %s renewal payment."
|
445 |
+
msgstr "No se pudo crear el pago de renovación %s."
|
446 |
+
|
447 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:282
|
448 |
+
msgid "The customer (%s) does not have a valid mandate."
|
449 |
+
msgstr "El cliente (%s) no tiene una orden de domiciliación válida."
|
450 |
+
|
451 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:273
|
452 |
+
msgid "The customer (%s) could not be used or found. "
|
453 |
+
msgstr "No se ha podido utilizar o encontrar el cliente (%s)."
|
454 |
+
|
455 |
+
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
456 |
+
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
457 |
+
#. placeholder 5: refund ID
|
458 |
+
#: src/Mollie/WC/Payment/Payment.php:595
|
459 |
+
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
460 |
+
msgstr "Reembolsado %s%s%s - Pago: %s, Reembolso: %s"
|
461 |
+
|
462 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1137
|
463 |
+
msgid "New chargeback %s processed! Order note and order status updated."
|
464 |
+
msgstr "¡Nueva anulación %s procesada! Nota de pedido y estado de pedido actualizados."
|
465 |
+
|
466 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1038
|
467 |
+
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
468 |
+
msgstr "¡Nuevo reembolso %s procesado en el panel de Mollie! Nota de pedido añadida, pero pedido no actualizado."
|
469 |
+
|
470 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
471 |
+
#: src/Mollie/WC/Payment/Order.php:630 src/Mollie/WC/Payment/Payment.php:432
|
472 |
+
msgid "%s payment failed via Mollie (%s)."
|
473 |
+
msgstr "Pago %s fallido vía Mollie (%s)."
|
474 |
+
|
475 |
+
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
476 |
+
#. Mollie currencies
|
477 |
+
#: src/Mollie/WC/Gateway/Abstract.php:250
|
478 |
+
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
479 |
+
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 "
|
480 |
+
|
481 |
+
#: mollie-payments-for-WooCommerce.php:105
|
482 |
+
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."
|
483 |
+
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."
|
484 |
+
|
485 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
486 |
+
#: src/Mollie/WC/Payment/Order.php:540 src/Mollie/WC/Payment/Order.php:701
|
487 |
+
#: src/Mollie/WC/Payment/Payment.php:343 src/Mollie/WC/Payment/Payment.php:506
|
488 |
+
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
489 |
+
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."
|
490 |
+
|
491 |
+
#. translators: Placeholder 1: enabled or disabled
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:466
|
493 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
494 |
+
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!"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1289
|
497 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1297
|
498 |
+
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
499 |
+
msgstr "Tu pago no se ha procesado correctamente. Por favor, realiza tu pedido con otro método de pago."
|
500 |
+
|
501 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
502 |
+
#: src/Mollie/WC/Payment/Order.php:606 src/Mollie/WC/Payment/Payment.php:409
|
503 |
+
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
504 |
+
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."
|
505 |
+
|
506 |
+
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
507 |
+
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
508 |
+
msgid "Bancontact"
|
509 |
+
msgstr "Bancontact"
|
510 |
+
|
511 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
512 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1595
|
513 |
+
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."
|
514 |
+
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."
|
515 |
+
|
516 |
+
#: src/Mollie/WC/Gateway/Abstract.php:469
|
517 |
+
msgid "Failed switching subscriptions, no valid mandate."
|
518 |
+
msgstr "El interruptor de suscripción ha fallado, no hay una orden válida."
|
519 |
+
|
520 |
+
#: src/Mollie/WC/Gateway/Abstract.php:468
|
521 |
+
msgid "Failed switching subscriptions, no valid mandate.found. Place a completely new order to change your subscription."
|
522 |
+
msgstr "El interruptor de suscripción ha fallado, no hay una orden válida. Realiza un nuevo pedido para cambiar tu suscripción."
|
523 |
+
|
524 |
+
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
525 |
+
msgid "ING Home'Pay"
|
526 |
+
msgstr "ING Home'Pay"
|
527 |
+
|
528 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
529 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1165
|
530 |
+
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use them)."
|
531 |
+
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)."
|
532 |
+
|
533 |
+
#: src/Mollie/WC/Gateway/Kbc.php:41
|
534 |
+
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."
|
535 |
+
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»."
|
536 |
+
|
537 |
+
#: src/Mollie/WC/Gateway/Kbc.php:34
|
538 |
+
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."
|
539 |
+
msgstr "Si desactivas esto, no se mostrará el menú desplegable con varios bancos KBC/CBC en el proceso de pago de WooCommerce, por lo que los usuarios seleccionarán un banco KBC/CBC en la página de pagos de Mollie después del pago."
|
540 |
+
|
541 |
+
#: src/Mollie/WC/Gateway/Kbc.php:32
|
542 |
+
msgid "Show KBC/CBC banks dropdown"
|
543 |
+
msgstr "Mostrar menú desplegable de bancos KBC/CBC"
|
544 |
+
|
545 |
+
#: src/Mollie/WC/Gateway/Ideal.php:41
|
546 |
+
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."
|
547 |
+
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»."
|
548 |
+
|
549 |
+
#: src/Mollie/WC/Gateway/Ideal.php:34
|
550 |
+
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."
|
551 |
+
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."
|
552 |
+
|
553 |
+
#: src/Mollie/WC/Gateway/Ideal.php:32
|
554 |
+
msgid "Show iDEAL banks dropdown"
|
555 |
+
msgstr "Mostrar menú desplegable de bancos iDEAL"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:40
|
558 |
+
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."
|
559 |
+
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»."
|
560 |
+
|
561 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
562 |
+
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."
|
563 |
+
msgstr "Si desactivas esto, no se mostrará el menú desplegable con varias tarjetas de regalo en el proceso de pago de WooCommerce, por lo que los usuarios seleccionarán una tarjeta de regalo en la página de pagos de Mollie después del pago."
|
564 |
+
|
565 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
566 |
+
msgid "Show gift cards dropdown"
|
567 |
+
msgstr "Mostrar el menú desplegable de tarjetas de regalo"
|
568 |
+
|
569 |
+
#: src/Mollie/WC/Gateway/Abstract.php:457
|
570 |
+
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
571 |
+
msgstr "El pedido se ha completado internamente por una orden válida existente en Mollie."
|
572 |
+
|
573 |
+
#: mollie-payments-for-WooCommerce.php:149
|
574 |
+
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"
|
575 |
+
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"
|
576 |
+
|
577 |
+
#: mollie-payments-for-WooCommerce.php:131
|
578 |
+
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"
|
579 |
+
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 "
|
580 |
+
|
581 |
+
#: src/Mollie/WC/Helper/Settings.php:415
|
582 |
+
msgid "Cancelled"
|
583 |
+
msgstr "Cancelado"
|
584 |
+
|
585 |
+
#: src/Mollie/WC/Helper/Settings.php:414
|
586 |
+
msgid "Pending"
|
587 |
+
msgstr "Pendiente"
|
588 |
+
|
589 |
+
#: src/Mollie/WC/Helper/Settings.php:411
|
590 |
+
msgid "Order status after cancelled payment"
|
591 |
+
msgstr "Estado del pedido después de la cancelación del pago"
|
592 |
+
|
593 |
+
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
594 |
+
#. placeholder 3: consumer BIC
|
595 |
+
#: src/Mollie/WC/Gateway/Sofort.php:64 src/Mollie/WC/Gateway/Ideal.php:121
|
596 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80
|
597 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:172
|
598 |
+
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
599 |
+
msgstr "Pago completado por <strong>%s</strong> (IBAN (últimos 4 dígitos): %s, BIC: %s)."
|
600 |
+
|
601 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1635
|
602 |
+
msgid "Your order has been cancelled."
|
603 |
+
msgstr "Tu pedido ha sido cancelado."
|
604 |
+
|
605 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1604
|
606 |
+
msgid ", payment pending."
|
607 |
+
msgstr ", pago pendiente."
|
608 |
+
|
609 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1564
|
610 |
+
msgid "Order cancelled"
|
611 |
+
msgstr "Pedido cancelado"
|
612 |
+
|
613 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
614 |
+
#. status, placeholder 3: payment ID
|
615 |
+
#: src/Mollie/WC/Gateway/Abstract.php:935
|
616 |
+
msgid "%s payment %s (%s), not processed."
|
617 |
+
msgstr "Pago %s %s (%s), no procesado."
|
618 |
+
|
619 |
+
#. translators: Default gift card dropdown description, displayed above issuer
|
620 |
+
#. drop down
|
621 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:76
|
622 |
+
msgid "Select your gift card"
|
623 |
+
msgstr "Selecciona tu tarjeta de regalo"
|
624 |
+
|
625 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:60
|
626 |
+
msgid "Gift cards"
|
627 |
+
msgstr "Tarjetas de regalo"
|
628 |
+
|
629 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
630 |
+
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."
|
631 |
+
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."
|
632 |
+
|
633 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
634 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:190
|
635 |
+
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
636 |
+
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."
|
637 |
+
|
638 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
639 |
+
#: src/Mollie/WC/Payment/Payment.php:472
|
640 |
+
msgid "%s payment expired (%s) but order not cancelled because of another pending payment (%s)."
|
641 |
+
msgstr "Pago %s caducado (%s), pero pedido no cancelado a causa de otro pago pendiente (%s)."
|
642 |
+
|
643 |
+
#: src/subscriptions_status_check_functions.php:195
|
644 |
+
msgid "There are still some subscriptions left, use the tool again!"
|
645 |
+
msgstr "Todavía quedan suscripciones, ¡usa la herramienta de nuevo!"
|
646 |
+
|
647 |
+
#: src/subscriptions_status_check_functions.php:193
|
648 |
+
msgid "No more subscriptions left to process!"
|
649 |
+
msgstr "¡No quedan más subscripciones por procesar!"
|
650 |
+
|
651 |
+
#: src/subscriptions_status_check_functions.php:180
|
652 |
+
msgid "No subscriptions updated in this batch."
|
653 |
+
msgstr "No hay suscripciones actualizadas en este lote."
|
654 |
+
|
655 |
+
#: src/subscriptions_status_check_functions.php:156
|
656 |
+
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
657 |
+
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»."
|
658 |
+
|
659 |
+
#: src/subscriptions_status_check_functions.php:142
|
660 |
+
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
661 |
+
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»."
|
662 |
+
|
663 |
+
#: src/subscriptions_status_check_functions.php:36
|
664 |
+
msgid "Check subscriptions status"
|
665 |
+
msgstr "Comprobar el estado de las suscripciones"
|
666 |
+
|
667 |
+
#: src/subscriptions_status_check_functions.php:35
|
668 |
+
msgid "Mollie Subscriptions Status"
|
669 |
+
msgstr "Estado de suscripciones de Mollie"
|
670 |
+
|
671 |
+
#: src/subscriptions_status_check_functions.php:30
|
672 |
+
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
673 |
+
msgstr "Controla las suscripciones que están incorrectamente configuradas a «Renovación manual». Primero lee el"
|
674 |
+
|
675 |
+
#: src/Mollie/WC/Helper/Settings.php:464
|
676 |
+
msgid "Store customer details at Mollie"
|
677 |
+
msgstr "Almacenar los detalles del cliente en Mollie"
|
678 |
+
|
679 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
680 |
+
#: src/Mollie/WC/Plugin.php:134
|
681 |
+
msgid "%s payment failed (%s)."
|
682 |
+
msgstr "Pago %s fallido (%s)."
|
683 |
+
|
684 |
+
#: src/Mollie/WC/Gateway/Kbc.php:61
|
685 |
+
msgid "KBC/CBC Payment Button"
|
686 |
+
msgstr "Botón de pago KBC/CBC"
|
687 |
+
|
688 |
+
#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Giftcard.php:38
|
689 |
+
#: src/Mollie/WC/Gateway/Kbc.php:39
|
690 |
+
msgid "Issuers empty option"
|
691 |
+
msgstr "Entidades emisoras opción vacía"
|
692 |
+
|
693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:48
|
694 |
+
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."
|
695 |
+
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."
|
696 |
+
|
697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
698 |
+
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
699 |
+
msgstr "Saltar la pantalla de pago de Mollie cuando la transferencia bancaria está seleccionada "
|
700 |
+
|
701 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:46
|
702 |
+
msgid "Skip Mollie payment screen"
|
703 |
+
msgstr "Saltar la pantalla de pago de Mollie"
|
704 |
+
|
705 |
+
#. Description of the plugin
|
706 |
+
msgid "Accept payments in WooCommerce with the official Mollie plugin"
|
707 |
+
msgstr "Aceptar pagos en WooCommerce con el plugin oficial de Mollie"
|
708 |
+
|
709 |
+
#. Plugin URI of the plugin
|
710 |
+
#. Author URI of the plugin
|
711 |
+
msgid "https://www.mollie.com"
|
712 |
+
msgstr "https://www.mollie.com"
|
713 |
+
|
714 |
+
#. Author of the plugin
|
715 |
+
msgid "Mollie"
|
716 |
+
msgstr "Mollie"
|
717 |
+
|
718 |
+
#. Plugin Name of the plugin
|
719 |
+
msgid "Mollie Payments for WooCommerce"
|
720 |
+
msgstr "Mollie Payments for WooCommerce"
|
721 |
+
|
722 |
+
#: src/Mollie/WC/Plugin.php:780
|
723 |
+
msgid "Logs"
|
724 |
+
msgstr "Registros"
|
725 |
+
|
726 |
+
#: src/Mollie/WC/Helper/Status.php:123
|
727 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
728 |
+
msgstr "Mollie Payments for WooCommerce necesita que la extensión PHP cURL esté habilitada. Por favor, habilita la extensión «curl» en tu configuración de PHP."
|
729 |
+
|
730 |
+
#: src/Mollie/WC/Helper/Status.php:116
|
731 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
732 |
+
msgstr "Mollie Payments for WooCommerce necesita que la extensión PHP JSON esté habilitada. Por favor, habilita la extensión «json» en tu configuración de PHP."
|
733 |
+
|
734 |
+
#: src/Mollie/WC/Helper/Status.php:80
|
735 |
+
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
736 |
+
msgstr "Cliente de API Mollie no instalado. Por favor, asegúrate de que el plugin está instalado correctamente."
|
737 |
+
|
738 |
+
#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce
|
739 |
+
#. version, placeholder 3: used WooCommerce version
|
740 |
+
#: src/Mollie/WC/Helper/Status.php:67
|
741 |
+
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
742 |
+
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."
|
743 |
+
|
744 |
+
#: src/Mollie/WC/Helper/Settings.php:473
|
745 |
+
msgid "Debug Log"
|
746 |
+
msgstr "Registro de depuración"
|
747 |
+
|
748 |
+
#: src/Mollie/WC/Helper/Settings.php:437
|
749 |
+
msgid "French (Belgium)"
|
750 |
+
msgstr "Francés (Bélgica)"
|
751 |
+
|
752 |
+
#: src/Mollie/WC/Helper/Settings.php:436
|
753 |
+
msgid "French"
|
754 |
+
msgstr "Francés"
|
755 |
+
|
756 |
+
#: src/Mollie/WC/Helper/Settings.php:441
|
757 |
+
msgid "Spanish"
|
758 |
+
msgstr "Español"
|
759 |
+
|
760 |
+
#: src/Mollie/WC/Helper/Settings.php:438
|
761 |
+
msgid "German"
|
762 |
+
msgstr "Alemán"
|
763 |
+
|
764 |
+
#: src/Mollie/WC/Helper/Settings.php:433
|
765 |
+
msgid "English"
|
766 |
+
msgstr "Inglés"
|
767 |
+
|
768 |
+
#: src/Mollie/WC/Helper/Settings.php:435
|
769 |
+
msgid "Flemish (Belgium)"
|
770 |
+
msgstr "Flamenco (Bélgica)"
|
771 |
+
|
772 |
+
#: src/Mollie/WC/Helper/Settings.php:434
|
773 |
+
msgid "Dutch"
|
774 |
+
msgstr "Neerlandés"
|
775 |
+
|
776 |
+
#: src/Mollie/WC/Helper/Settings.php:429
|
777 |
+
msgid "Detect using browser language"
|
778 |
+
msgstr "Detectar utilizando el idioma del navegador"
|
779 |
+
|
780 |
+
#: src/Mollie/WC/Helper/Settings.php:422
|
781 |
+
msgid "Payment screen language"
|
782 |
+
msgstr "Idioma de la pantalla de pago"
|
783 |
+
|
784 |
+
#: src/Mollie/WC/Helper/Settings.php:403
|
785 |
+
msgid "Test API key should start with test_"
|
786 |
+
msgstr "La clave de API de prueba debe comenzar con test_"
|
787 |
+
|
788 |
+
#: src/Mollie/WC/Helper/Settings.php:392
|
789 |
+
msgid "Test API key"
|
790 |
+
msgstr "Clave de API de prueba"
|
791 |
+
|
792 |
+
#: src/Mollie/WC/Helper/Settings.php:388
|
793 |
+
msgid "Enable test mode if you want to test the plugin without using real payments."
|
794 |
+
msgstr "Activa el modo de prueba si deseas probar el plugin sin usar pagos reales."
|
795 |
+
|
796 |
+
#: src/Mollie/WC/Helper/Settings.php:385
|
797 |
+
msgid "Enable test mode"
|
798 |
+
msgstr "Activar modo de prueba"
|
799 |
+
|
800 |
+
#: src/Mollie/WC/Helper/Settings.php:377
|
801 |
+
msgid "Live API key should start with live_"
|
802 |
+
msgstr "La clave de API activa debería comenzar con live_"
|
803 |
+
|
804 |
+
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
805 |
+
#. %s's Will be replaced by a link to the Mollie profile
|
806 |
+
#: src/Mollie/WC/Helper/Settings.php:371 src/Mollie/WC/Helper/Settings.php:397
|
807 |
+
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
808 |
+
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"
|
809 |
+
|
810 |
+
#: src/Mollie/WC/Helper/Settings.php:366
|
811 |
+
msgid "Live API key"
|
812 |
+
msgstr "Clave de API activa"
|
813 |
+
|
814 |
+
#: src/Mollie/WC/Helper/Settings.php:362
|
815 |
+
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
816 |
+
msgstr "Se requieren las siguientes opciones para usar el plugin y son usadas por todos los métodos de pago en Mollie"
|
817 |
+
|
818 |
+
#: src/Mollie/WC/Helper/Settings.php:359 src/Mollie/WC/Plugin.php:773
|
819 |
+
msgid "Mollie settings"
|
820 |
+
msgstr "Estado de Mollie:"
|
821 |
+
|
822 |
+
#. translators: Placeholder 1: Location of the log files
|
823 |
+
#: src/Mollie/WC/Helper/Settings.php:352
|
824 |
+
msgid "Log files are saved to <code>%s</code>"
|
825 |
+
msgstr "Los archivos de registro se guardan en <code>%s</code>"
|
826 |
+
|
827 |
+
#: src/Mollie/WC/Helper/Settings.php:346
|
828 |
+
msgid "View logs"
|
829 |
+
msgstr "Ver los registros"
|
830 |
+
|
831 |
+
#: src/Mollie/WC/Helper/Settings.php:341
|
832 |
+
msgid "Log plugin events."
|
833 |
+
msgstr "Registro de eventos del plugin."
|
834 |
+
|
835 |
+
#: src/Mollie/WC/Helper/Settings.php:301
|
836 |
+
msgid "Edit"
|
837 |
+
msgstr "Editar"
|
838 |
+
|
839 |
+
#: src/Mollie/WC/Helper/Settings.php:270
|
840 |
+
msgid "Refresh"
|
841 |
+
msgstr "Actualizar"
|
842 |
+
|
843 |
+
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
844 |
+
#. profile
|
845 |
+
#: src/Mollie/WC/Helper/Settings.php:261
|
846 |
+
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
847 |
+
msgstr "Los siguientes métodos de pago están activados en tu %sperfil de Mollie%s:"
|
848 |
+
|
849 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
850 |
+
msgid "Gateway disabled"
|
851 |
+
msgstr "Pasarela desactivada"
|
852 |
+
|
853 |
+
#. translators: Placeholder 1: enabled or disabled
|
854 |
+
#: src/Mollie/WC/Helper/Settings.php:250 src/Mollie/WC/Helper/Settings.php:466
|
855 |
+
msgid "Enabled"
|
856 |
+
msgstr "Activado"
|
857 |
+
|
858 |
+
#: src/Mollie/WC/Helper/Settings.php:250
|
859 |
+
msgid "Gateway enabled"
|
860 |
+
msgstr "Pasarela activada"
|
861 |
+
|
862 |
+
#: src/Mollie/WC/Helper/Settings.php:207
|
863 |
+
msgid "Connected"
|
864 |
+
msgstr "Conectado"
|
865 |
+
|
866 |
+
#: src/Mollie/WC/Helper/Settings.php:206
|
867 |
+
msgid "Mollie status:"
|
868 |
+
msgstr "Estado de Mollie:"
|
869 |
+
|
870 |
+
#: src/Mollie/WC/Helper/Settings.php:193
|
871 |
+
msgid "Error"
|
872 |
+
msgstr "Error"
|
873 |
+
|
874 |
+
#: src/Mollie/WC/Helper/Data.php:613
|
875 |
+
msgid "Item #%s stock incremented from %s to %s."
|
876 |
+
msgstr "Las existencias del elemento #%s han aumentado de %s a %s."
|
877 |
+
|
878 |
+
#: src/Mollie/WC/Gateway/Sofort.php:33
|
879 |
+
msgid "SOFORT Banking"
|
880 |
+
msgstr "SOFORT Banking"
|
881 |
+
|
882 |
+
#: src/Mollie/WC/Gateway/Paysafecard.php:20
|
883 |
+
msgid "paysafecard"
|
884 |
+
msgstr "paysafecard"
|
885 |
+
|
886 |
+
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
887 |
+
#. email, placeholder 3: PayPal transaction ID
|
888 |
+
#: src/Mollie/WC/Gateway/PayPal.php:64
|
889 |
+
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
890 |
+
msgstr "Pago completado por <strong>%s</strong> - %s (ID de transacción PayPal: %s)"
|
891 |
+
|
892 |
+
#: src/Mollie/WC/Gateway/PayPal.php:33
|
893 |
+
msgid "PayPal"
|
894 |
+
msgstr "PayPal"
|
895 |
+
|
896 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
897 |
+
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
898 |
+
#. drop down
|
899 |
+
#: src/Mollie/WC/Gateway/Ideal.php:77 src/Mollie/WC/Gateway/Kbc.php:77
|
900 |
+
msgid "Select your bank"
|
901 |
+
msgstr "Selecciona tu banco"
|
902 |
+
|
903 |
+
#: src/Mollie/WC/Gateway/Ideal.php:61
|
904 |
+
msgid "iDEAL"
|
905 |
+
msgstr "iDEAL"
|
906 |
+
|
907 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:42
|
908 |
+
msgid "SEPA Direct Debit"
|
909 |
+
msgstr "Adeudo directo SEPA"
|
910 |
+
|
911 |
+
#. translators: Placeholder 1: card holder
|
912 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:85
|
913 |
+
msgid "Payment completed by <strong>%s</strong>"
|
914 |
+
msgstr "Pago completado por <strong>%s</strong>"
|
915 |
+
|
916 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:34
|
917 |
+
msgid "Credit card"
|
918 |
+
msgstr "Tarjeta de crédito"
|
919 |
+
|
920 |
+
#: src/Mollie/WC/Gateway/Belfius.php:33
|
921 |
+
msgid "Belfius Direct Net"
|
922 |
+
msgstr "Belfius Direct Net"
|
923 |
+
|
924 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:220
|
925 |
+
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
926 |
+
msgstr "El pago caducará el <strong>%s</strong>. Por favor, asegúrate de transferir la cantidad total antes de esta fecha."
|
927 |
+
|
928 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:213
|
929 |
+
msgid "The payment will expire on <strong>%s</strong>."
|
930 |
+
msgstr "El pago caducará el <strong>%s</strong>."
|
931 |
+
|
932 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
933 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
934 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
935 |
+
msgid "Please provide the payment reference <strong>%s</strong>"
|
936 |
+
msgstr "Por favor, indica la referencia del pago <strong>%s</strong>"
|
937 |
+
|
938 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
939 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
940 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:193
|
941 |
+
msgid "Payment reference: %s"
|
942 |
+
msgstr "Referencia del pago: %s"
|
943 |
+
|
944 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
945 |
+
msgid "BIC: %s"
|
946 |
+
msgstr "BIC: %s"
|
947 |
+
|
948 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:187
|
949 |
+
msgid "IBAN: <strong>%s</strong>"
|
950 |
+
msgstr "IBAN: <strong>%s</strong>"
|
951 |
+
|
952 |
+
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
953 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:186
|
954 |
+
msgid "Beneficiary: %s"
|
955 |
+
msgstr "Beneficiario: %s"
|
956 |
+
|
957 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:182
|
958 |
+
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
959 |
+
msgstr "Por favor, completa tu pago transfiriendo la cantidad total a la siguiente cuenta bancaria:"
|
960 |
+
|
961 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:122
|
962 |
+
msgid "Bank Transfer"
|
963 |
+
msgstr "Transferencia bancaria"
|
964 |
+
|
965 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
966 |
+
msgid "Disabled"
|
967 |
+
msgstr "Desactivado"
|
968 |
+
|
969 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:37
|
970 |
+
msgid "Number of days after the payment will expire. Default <code>%d</code> days"
|
971 |
+
msgstr "Número de días después de los cuales el pago caducará. Por defecto <code>%d</code> días"
|
972 |
+
|
973 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:35
|
974 |
+
msgid "Expiry date"
|
975 |
+
msgstr "Fecha de caducidad"
|
976 |
+
|
977 |
+
#. translators: Placeholder 1: payment method
|
978 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1508
|
979 |
+
msgid "Payment completed with <strong>%s</strong>"
|
980 |
+
msgstr "Pago completado con <strong>%s</strong>"
|
981 |
+
|
982 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1501
|
983 |
+
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."
|
984 |
+
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."
|
985 |
+
|
986 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1496
|
987 |
+
msgid "We have not received a definite payment status."
|
988 |
+
msgstr "No hemos recibido un estado de pago definitivo."
|
989 |
+
|
990 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1271
|
991 |
+
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
992 |
+
msgstr "Has cancelado el pago. Por favor, realiza tu pedido con otro método de pago."
|
993 |
+
|
994 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Payment/Payment.php:513
|
996 |
+
msgid "%s payment expired (%s)."
|
997 |
+
msgstr "Pago %s caducado (%s)."
|
998 |
+
|
999 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1000 |
+
#: src/Mollie/WC/Payment/Order.php:295 src/Mollie/WC/Payment/Payment.php:241
|
1001 |
+
msgid "Order completed using %s payment (%s)."
|
1002 |
+
msgstr "Pedido completado usando el pago %s (%s)."
|
1003 |
+
|
1004 |
+
#. translators: Placeholder 1: Payment method title
|
1005 |
+
#: src/Mollie/WC/Gateway/Abstract.php:678
|
1006 |
+
msgid "Could not create %s payment."
|
1007 |
+
msgstr "No se ha podido crear el pago %s."
|
1008 |
+
|
1009 |
+
#: src/Mollie/WC/Payment/Order.php:297 src/Mollie/WC/Payment/Order.php:368
|
1010 |
+
#: src/Mollie/WC/Payment/Order.php:440 src/Mollie/WC/Payment/Order.php:550
|
1011 |
+
#: src/Mollie/WC/Payment/Order.php:608 src/Mollie/WC/Payment/Order.php:632
|
1012 |
+
#: src/Mollie/WC/Payment/Order.php:669 src/Mollie/WC/Payment/Order.php:710
|
1013 |
+
#: src/Mollie/WC/Payment/Payment.php:243 src/Mollie/WC/Payment/Payment.php:353
|
1014 |
+
#: src/Mollie/WC/Payment/Payment.php:411 src/Mollie/WC/Payment/Payment.php:434
|
1015 |
+
#: src/Mollie/WC/Payment/Payment.php:474 src/Mollie/WC/Payment/Payment.php:515
|
1016 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1017 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1018 |
+
#: src/Mollie/WC/Gateway/Abstract.php:656
|
1019 |
+
#: src/Mollie/WC/Gateway/Abstract.php:938
|
1020 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1167
|
1021 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1208
|
1022 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1597
|
1023 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:466
|
1024 |
+
msgid "test mode"
|
1025 |
+
msgstr "modo de prueba"
|
1026 |
+
|
1027 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1028 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1029 |
+
#: src/Mollie/WC/Gateway/Abstract.php:654
|
1030 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1031 |
+
msgid "%s payment started (%s)."
|
1032 |
+
msgstr "Pago %s iniciado (%s)."
|
1033 |
+
|
1034 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1035 |
+
#: src/Mollie/WC/Gateway/Abstract.php:644
|
1036 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1037 |
+
msgid "Awaiting payment confirmation."
|
1038 |
+
msgstr "A la espera de la confirmación del pago."
|
1039 |
+
|
1040 |
+
#: src/Mollie/WC/Gateway/Abstract.php:402
|
1041 |
+
msgid "Could not load order %s"
|
1042 |
+
msgstr "No se ha podido cargar el pedido %s"
|
1043 |
+
|
1044 |
+
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1045 |
+
#. be replaced by a link to the Mollie profile
|
1046 |
+
#: src/Mollie/WC/Gateway/Abstract.php:238
|
1047 |
+
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1048 |
+
msgstr "%s no activado en tu perfil de Mollie. Puedes activarlo editando tu %sperfil de Mollie%s."
|
1049 |
+
|
1050 |
+
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1051 |
+
#. setting page
|
1052 |
+
#: src/Mollie/WC/Gateway/Abstract.php:226
|
1053 |
+
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1054 |
+
msgstr "No se ha proporcionado ninguna clave de API. %sConfigura primero tu clave de API de Mollie.%s"
|
1055 |
+
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:181
|
1057 |
+
msgid "Gateway Disabled"
|
1058 |
+
msgstr "Pasarela desactivada"
|
1059 |
+
|
1060 |
+
#: src/Mollie/WC/Helper/Settings.php:256 src/Mollie/WC/Gateway/Abstract.php:224
|
1061 |
+
msgid "Test mode enabled."
|
1062 |
+
msgstr "Modo de prueba activado."
|
1063 |
+
|
1064 |
+
#: src/Mollie/WC/Gateway/Abstract.php:143
|
1065 |
+
msgid "Hold Stock (minutes)"
|
1066 |
+
msgstr "Mantener el stock (en minutos)"
|
1067 |
+
|
1068 |
+
#: src/Mollie/WC/Gateway/Abstract.php:141
|
1069 |
+
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."
|
1070 |
+
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."
|
1071 |
+
|
1072 |
+
#: src/Mollie/WC/Helper/Settings.php:428 src/Mollie/WC/Gateway/Abstract.php:135
|
1073 |
+
msgid "default"
|
1074 |
+
msgstr "por defecto"
|
1075 |
+
|
1076 |
+
#: src/Mollie/WC/Gateway/Abstract.php:132
|
1077 |
+
msgid "Initial order status"
|
1078 |
+
msgstr "Estado inicial del pedido"
|
1079 |
+
|
1080 |
+
#: src/Mollie/WC/Gateway/Abstract.php:123
|
1081 |
+
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1082 |
+
msgstr "Descripción del método de pago que el cliente verá en tu proceso de pago. Por defecto <code>%s</code>"
|
1083 |
+
|
1084 |
+
#: src/Mollie/WC/Gateway/Abstract.php:121
|
1085 |
+
msgid "Description"
|
1086 |
+
msgstr "Descripción"
|
1087 |
+
|
1088 |
+
#: src/Mollie/WC/Gateway/Abstract.php:117
|
1089 |
+
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1090 |
+
msgstr "Mostrar logotipo en la página de pago. Por defecto <code>activado</code>"
|
1091 |
+
|
1092 |
+
#: src/Mollie/WC/Gateway/Abstract.php:115
|
1093 |
+
msgid "Display logo"
|
1094 |
+
msgstr "Mostrar logotipo"
|
1095 |
+
|
1096 |
+
#: src/Mollie/WC/Gateway/Abstract.php:110
|
1097 |
+
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1098 |
+
msgstr "Esto controla el título que el usuario ve durante el pago. Por defecto <code>%s</code>"
|
1099 |
+
|
1100 |
+
#: src/Mollie/WC/Gateway/Abstract.php:108
|
1101 |
+
msgid "Title"
|
1102 |
+
msgstr "Título"
|
1103 |
+
|
1104 |
+
#: src/Mollie/WC/Gateway/Abstract.php:104
|
1105 |
+
msgid "Enable %s"
|
1106 |
+
msgstr "Activar %s"
|
1107 |
+
|
1108 |
+
#: src/Mollie/WC/Gateway/Abstract.php:102
|
1109 |
+
msgid "Enable/Disable"
|
1110 |
+
msgstr "Activar/Desactivar"
|
languages/mollie-payments-for-woocommerce-fr_FR.mo
ADDED
Binary file
|
languages/mollie-payments-for-woocommerce-fr_FR.po
ADDED
@@ -0,0 +1,1110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Development (trunk) in French (France)
|
2 |
+
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Development (trunk) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2020-05-18 16:40+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/2.4.0-alpha\n"
|
11 |
+
"Language: fr\n"
|
12 |
+
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Development (trunk)\n"
|
13 |
+
|
14 |
+
#: inc/settings/mollie_components_enabler.php:7
|
15 |
+
msgid "Enable the Mollie Components for this Gateway"
|
16 |
+
msgstr "Activer les composants Mollie pour cette passerelle"
|
17 |
+
|
18 |
+
#: inc/settings/mollie_components_enabler.php:6
|
19 |
+
msgid "Enable Mollie Components"
|
20 |
+
msgstr "Activer les composants Mollie"
|
21 |
+
|
22 |
+
#: inc/settings/mollie_components.php:157
|
23 |
+
msgctxt "Mollie Components Settings"
|
24 |
+
msgid "Background Color for invalid input."
|
25 |
+
msgstr "Couleur d'arrière-plan pour saisie non valide."
|
26 |
+
|
27 |
+
#: inc/settings/mollie_components.php:146
|
28 |
+
msgctxt "Mollie Components Settings"
|
29 |
+
msgid "Text Color for invalid input."
|
30 |
+
msgstr "Couleur de texte pour saisie non valide."
|
31 |
+
|
32 |
+
#: inc/settings/mollie_components.php:136
|
33 |
+
msgctxt "Mollie Components Settings"
|
34 |
+
msgid "Invalid Status Styles"
|
35 |
+
msgstr "Styles d'état non valide"
|
36 |
+
|
37 |
+
#: inc/settings/mollie_components.php:122
|
38 |
+
msgctxt "Mollie Components Settings"
|
39 |
+
msgid "Full Size Kana"
|
40 |
+
msgstr "Taille réelle Kana"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_components.php:117
|
43 |
+
msgctxt "Mollie Components Settings"
|
44 |
+
msgid "Full Width"
|
45 |
+
msgstr "Pleine largeur"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_components.php:112
|
48 |
+
msgctxt "Mollie Components Settings"
|
49 |
+
msgid "Lowercase"
|
50 |
+
msgstr "Minuscule"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_components.php:107
|
53 |
+
msgctxt "Mollie Components Settings"
|
54 |
+
msgid "Uppercase"
|
55 |
+
msgstr "Majuscule"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_components.php:102
|
58 |
+
msgctxt "Mollie Components Settings"
|
59 |
+
msgid "Capitalize"
|
60 |
+
msgstr "Mettre en majuscule"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_components.php:97
|
63 |
+
msgctxt "Mollie Components Settings"
|
64 |
+
msgid "None"
|
65 |
+
msgstr "Aucun"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_components.php:94
|
68 |
+
msgctxt "Mollie Components Settings"
|
69 |
+
msgid "Transform Text"
|
70 |
+
msgstr "Transformation du texte"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_components.php:88
|
73 |
+
msgctxt "Mollie Components Settings"
|
74 |
+
msgid "Justify"
|
75 |
+
msgstr "Justifier"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_components.php:87
|
78 |
+
msgctxt "Mollie Components Settings"
|
79 |
+
msgid "Center"
|
80 |
+
msgstr "Centrer"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_components.php:86
|
83 |
+
msgctxt "Mollie Components Settings"
|
84 |
+
msgid "Right"
|
85 |
+
msgstr "À droite"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_components.php:85
|
88 |
+
msgctxt "Mollie Components Settings"
|
89 |
+
msgid "Left"
|
90 |
+
msgstr "À gauche"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_components.php:82
|
93 |
+
msgctxt "Mollie Components Settings"
|
94 |
+
msgid "Align Text"
|
95 |
+
msgstr "Alignement du texte"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_components.php:72
|
98 |
+
msgctxt "Mollie Components Settings"
|
99 |
+
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
100 |
+
msgstr "Ajouter une marge intérieure aux composants. Eg. les unités `16px 16px 16px 16px` et `em`, `px`, `rem` sont autorisées."
|
101 |
+
|
102 |
+
#: inc/settings/mollie_components.php:71
|
103 |
+
msgctxt "Mollie Components Settings"
|
104 |
+
msgid "Padding"
|
105 |
+
msgstr "Marge intérieure"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_components.php:62
|
108 |
+
msgctxt "Mollie Components Settings"
|
109 |
+
msgid "Line Height"
|
110 |
+
msgstr "Hauteur de ligne"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_components.php:56
|
113 |
+
msgctxt "Mollie Components Settings"
|
114 |
+
msgid "Letter Spacing"
|
115 |
+
msgstr "Espacement des lettres"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_components.php:50
|
118 |
+
msgctxt "Mollie Components Settings"
|
119 |
+
msgid "Bold"
|
120 |
+
msgstr "Gras"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_components.php:49
|
123 |
+
msgctxt "Mollie Components Settings"
|
124 |
+
msgid "Regular"
|
125 |
+
msgstr "Regular"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_components.php:48
|
128 |
+
msgctxt "Mollie Components Settings"
|
129 |
+
msgid "Lighter"
|
130 |
+
msgstr "Plus fin"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_components.php:45
|
133 |
+
msgctxt "Mollie Components Settings"
|
134 |
+
msgid "Font Weight"
|
135 |
+
msgstr "Graisse"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_components.php:35
|
138 |
+
msgctxt "Mollie Components Settings"
|
139 |
+
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
140 |
+
msgstr "La taille des caractères détermine la taille des caractères dans les composants. Les unités `em`, `px`, `rem` sont autorisées."
|
141 |
+
|
142 |
+
#: inc/settings/mollie_components.php:34
|
143 |
+
msgctxt "Mollie Components Settings"
|
144 |
+
msgid "Font Size"
|
145 |
+
msgstr "Taille des caractères"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_components.php:28
|
148 |
+
msgctxt "Mollie Components Settings"
|
149 |
+
msgid "Placeholder Color"
|
150 |
+
msgstr "Couleur du texte indicatif"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145
|
153 |
+
msgctxt "Mollie Components Settings"
|
154 |
+
msgid "Text Color"
|
155 |
+
msgstr "Couleur de texte"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156
|
158 |
+
msgctxt "Mollie Components Settings"
|
159 |
+
msgid "Background Color"
|
160 |
+
msgstr "Couleur d'arrière-plan"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_components.php:7
|
163 |
+
msgctxt "Mollie Components Settings"
|
164 |
+
msgid "Base Styles"
|
165 |
+
msgstr "Styles de base"
|
166 |
+
|
167 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2056
|
168 |
+
msgid "Secure payments provided by "
|
169 |
+
msgstr "Paiements sécurisés effectués par"
|
170 |
+
|
171 |
+
#: src/Mollie/WC/Plugin.php:431
|
172 |
+
msgid "An unknown error occurred, please check the card fields."
|
173 |
+
msgstr "Une erreur inconnue est survenue, veillez vérifier les champs de la carte."
|
174 |
+
|
175 |
+
#: src/Mollie/WC/Plugin.php:424
|
176 |
+
msgid "Verification Code"
|
177 |
+
msgstr "Code de sécurité"
|
178 |
+
|
179 |
+
#: src/Mollie/WC/Plugin.php:420
|
180 |
+
msgid "Expiry Date"
|
181 |
+
msgstr "Date d'expiration"
|
182 |
+
|
183 |
+
#: src/Mollie/WC/Plugin.php:412
|
184 |
+
msgid "Card Holder"
|
185 |
+
msgstr "Détenteur de la carte"
|
186 |
+
|
187 |
+
#: src/Mollie/WC/Settings/Page/Components.php:10
|
188 |
+
msgid "Mollie Components"
|
189 |
+
msgstr "Composants Mollie"
|
190 |
+
|
191 |
+
#: src/Mollie/WC/Plugin.php:416
|
192 |
+
msgid "Card Number"
|
193 |
+
msgstr "Numéro de la carte"
|
194 |
+
|
195 |
+
#: src/Mollie/WC/Plugin.php:306
|
196 |
+
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
197 |
+
msgstr "%1$s articles annulés dans WooCommerce et sur Mollie."
|
198 |
+
|
199 |
+
#: src/Mollie/WC/Plugin.php:288
|
200 |
+
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
201 |
+
msgstr "%1$s articles remboursés dans WooCommerce et sur Mollie."
|
202 |
+
|
203 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
204 |
+
msgid "Empty WooCommerce order items or mollie order lines."
|
205 |
+
msgstr "Videz les éléments de commande WooCommerce ou les lignes de commande Mollie."
|
206 |
+
|
207 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
208 |
+
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
209 |
+
msgstr "Impossible de retrouver l'ID d'élément de commande correspondant à l'élément distant : %1$s. Essayez de rembourser le montant."
|
210 |
+
|
211 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
212 |
+
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
213 |
+
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."
|
214 |
+
|
215 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:115
|
216 |
+
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."
|
217 |
+
msgstr "Mollie n'autorise pas le remboursement partiel du montant ou de la quantité totale d'au moins une ligne de commande. Essayer de traiter ceci comme un remboursement de montant."
|
218 |
+
|
219 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
220 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:159
|
221 |
+
msgid "Order completed using %1$s payment (%2$s)."
|
222 |
+
msgstr "Commande terminée avec le paiement %1$s (%2$s)."
|
223 |
+
|
224 |
+
#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer
|
225 |
+
#. Account number
|
226 |
+
#: src/Mollie/WC/Gateway/MyBank.php:73
|
227 |
+
msgid "Payment completed by <strong>%1$s</strong> - %2$s"
|
228 |
+
msgstr "Paiement effectué par <strong>%1$s</strong> - %2$s"
|
229 |
+
|
230 |
+
#: src/Mollie/WC/Gateway/MyBank.php:44
|
231 |
+
msgid "To accept payments via MyBank"
|
232 |
+
msgstr "Pour accepter les paiements via MyBank"
|
233 |
+
|
234 |
+
#: src/Mollie/WC/Gateway/MyBank.php:36
|
235 |
+
msgid "MyBank"
|
236 |
+
msgstr "MyBank"
|
237 |
+
|
238 |
+
#: src/Mollie/WC/Gateway/Applepay.php:45
|
239 |
+
msgid "To accept payments via Apple Pay"
|
240 |
+
msgstr "Pour accepter les paiements via Apple Pay"
|
241 |
+
|
242 |
+
#: src/Mollie/WC/Gateway/Applepay.php:37
|
243 |
+
msgid "Apple Pay"
|
244 |
+
msgstr "Apple Pay"
|
245 |
+
|
246 |
+
#. translators: Placeholder 1: customer billing email
|
247 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:64
|
248 |
+
msgid "Payment completed by <strong>%s</strong>."
|
249 |
+
msgstr "Paiement effectué par <strong>%s</strong>."
|
250 |
+
|
251 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
252 |
+
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
253 |
+
msgstr "Afin d’accepter les paiements via Przelewy24, un e-mail client est nécessaire pour chaque paiement."
|
254 |
+
|
255 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
256 |
+
msgid "Przelewy24"
|
257 |
+
msgstr "Przelewy24"
|
258 |
+
|
259 |
+
#: src/Mollie/WC/Helper/Status.php:89 mollie-payments-for-WooCommerce.php:83
|
260 |
+
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."
|
261 |
+
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."
|
262 |
+
|
263 |
+
#: src/Mollie/WC/Payment/Order.php:1029
|
264 |
+
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
265 |
+
msgstr "Montant remboursé de %s%s remboursé dans WooCommerce et sur Mollie. ID remboursement%s : %s."
|
266 |
+
|
267 |
+
#: src/Mollie/WC/Payment/Order.php:946
|
268 |
+
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
269 |
+
msgstr "%sx %s remboursé pour %s%s dans WooCommerce et sur Mollie. ID remboursement%s : %s."
|
270 |
+
|
271 |
+
#: src/Mollie/WC/Payment/Order.php:930
|
272 |
+
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
273 |
+
msgstr "%sx %s annulé pour %s%s dans WooCommerce et sur Mollie."
|
274 |
+
|
275 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
276 |
+
#: src/Mollie/WC/Payment/Order.php:438
|
277 |
+
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!"
|
278 |
+
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 !"
|
279 |
+
|
280 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
281 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1206
|
282 |
+
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use them)."
|
283 |
+
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)."
|
284 |
+
|
285 |
+
#: src/Mollie/WC/Helper/Settings.php:624
|
286 |
+
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
287 |
+
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. "
|
288 |
+
|
289 |
+
#: src/Mollie/WC/Payment/Payment.php:39
|
290 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
291 |
+
msgid "Order"
|
292 |
+
msgstr "Commande"
|
293 |
+
|
294 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
295 |
+
#: src/Mollie/WC/Payment/Payment.php:351
|
296 |
+
msgid "%s payment (%s) cancelled ."
|
297 |
+
msgstr "Paiement %s (%s) annulé."
|
298 |
+
|
299 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
300 |
+
#: src/Mollie/WC/Payment/Order.php:708
|
301 |
+
msgid "%s order (%s) expired ."
|
302 |
+
msgstr "Commande %s (%s) expirée. "
|
303 |
+
|
304 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
305 |
+
#: src/Mollie/WC/Payment/Order.php:667
|
306 |
+
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
307 |
+
msgstr "Commande %s expirée (%s) mais la commande n’a pas été annulée en raison d’un autre paiement en attente (%s)."
|
308 |
+
|
309 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
310 |
+
#: src/Mollie/WC/Payment/Order.php:548
|
311 |
+
msgid "%s order (%s) cancelled ."
|
312 |
+
msgstr "Commande %s (%s) annulée."
|
313 |
+
|
314 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
315 |
+
#: src/Mollie/WC/Payment/Order.php:366
|
316 |
+
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."
|
317 |
+
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."
|
318 |
+
|
319 |
+
#: src/Mollie/WC/Helper/Settings.php:649
|
320 |
+
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
321 |
+
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. "
|
322 |
+
|
323 |
+
#: src/Mollie/WC/Helper/Settings.php:456
|
324 |
+
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."
|
325 |
+
msgstr "L'envoi d'une préférence de langage (ou de paramètres régionaux) est requis. L'option « Envoyer automatiquement le langage WordPress » tentera de définir le langage du client dans WordPress (et respecte les plugins multilingues) et de le convertir dans un format que Mollie comprend. Si cela échoue ou si la langue n’est pas prise en charge, l’anglais américain sera utilisé. Vous pouvez également sélectionner l'un des paramètres régionaux actuellement pris en charge par Mollie, qui sera ensuite utilisé pour tous les clients."
|
326 |
+
|
327 |
+
#: src/Mollie/WC/Helper/Settings.php:425
|
328 |
+
msgid "Automatically send WordPress language"
|
329 |
+
msgstr "Envoyer langage WordPress automatiquement"
|
330 |
+
|
331 |
+
#: src/Mollie/WC/Helper/Settings.php:417
|
332 |
+
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."
|
333 |
+
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."
|
334 |
+
|
335 |
+
#: src/Mollie/WC/Helper/OrderLines.php:407
|
336 |
+
msgid "Shipping"
|
337 |
+
msgstr "Expédier"
|
338 |
+
|
339 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
340 |
+
msgid "Klarna Slice it"
|
341 |
+
msgstr "Klarna Slice it"
|
342 |
+
|
343 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
344 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
345 |
+
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
346 |
+
msgstr "Pour accepter les paiements via Klarna, tous les champs de paiement par défaut de WooCommerce doivent être activés et obligatoires."
|
347 |
+
|
348 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
349 |
+
msgid "Klarna Pay later"
|
350 |
+
msgstr "Klarna Pay Later"
|
351 |
+
|
352 |
+
#: src/Mollie/WC/Helper/Status.php:131
|
353 |
+
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
354 |
+
msgstr "Afin d'utiliser Mollie payments sur WooCommerce, il vous faut les fonctions PHP cURL. Assurez-vous que toutes ces fonctions soient disponibles. "
|
355 |
+
|
356 |
+
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
357 |
+
#. version
|
358 |
+
#: src/Mollie/WC/Helper/Status.php:104
|
359 |
+
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
360 |
+
msgstr "Afin d'utiliser Mollie payments sur WooCommerce, PHP %s ou supérieur est requis. Votre PHP est %s. Veuillez mettre à jour et consulter les %s dans les FAQ %s. "
|
361 |
+
|
362 |
+
#: src/Mollie/WC/Helper/Settings.php:600
|
363 |
+
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."
|
364 |
+
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."
|
365 |
+
|
366 |
+
#: src/Mollie/WC/Helper/Settings.php:576
|
367 |
+
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."
|
368 |
+
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. "
|
369 |
+
|
370 |
+
#: src/Mollie/WC/Helper/Settings.php:453
|
371 |
+
msgid "Lithuanian"
|
372 |
+
msgstr "Lituanien"
|
373 |
+
|
374 |
+
#: src/Mollie/WC/Helper/Settings.php:452
|
375 |
+
msgid "Latvian"
|
376 |
+
msgstr "Letton"
|
377 |
+
|
378 |
+
#: src/Mollie/WC/Helper/Settings.php:451
|
379 |
+
msgid "Polish"
|
380 |
+
msgstr "Polonais"
|
381 |
+
|
382 |
+
#: src/Mollie/WC/Helper/Settings.php:450
|
383 |
+
msgid "Hungarian"
|
384 |
+
msgstr "Hongrois"
|
385 |
+
|
386 |
+
#: src/Mollie/WC/Helper/Settings.php:449
|
387 |
+
msgid "Icelandic"
|
388 |
+
msgstr "Islandais"
|
389 |
+
|
390 |
+
#: src/Mollie/WC/Helper/Settings.php:448
|
391 |
+
msgid "Danish"
|
392 |
+
msgstr "Danois"
|
393 |
+
|
394 |
+
#: src/Mollie/WC/Helper/Settings.php:447
|
395 |
+
msgid "Finnish"
|
396 |
+
msgstr "Finlandais"
|
397 |
+
|
398 |
+
#: src/Mollie/WC/Helper/Settings.php:446
|
399 |
+
msgid "Swedish"
|
400 |
+
msgstr "Suédois"
|
401 |
+
|
402 |
+
#: src/Mollie/WC/Helper/Settings.php:445
|
403 |
+
msgid "Norwegian"
|
404 |
+
msgstr "Norvégien"
|
405 |
+
|
406 |
+
#: src/Mollie/WC/Helper/Settings.php:444
|
407 |
+
msgid "Italian"
|
408 |
+
msgstr "Italien"
|
409 |
+
|
410 |
+
#: src/Mollie/WC/Helper/Settings.php:443
|
411 |
+
msgid "Portuguese"
|
412 |
+
msgstr "Portugais"
|
413 |
+
|
414 |
+
#: src/Mollie/WC/Helper/Settings.php:442
|
415 |
+
msgid "Catalan"
|
416 |
+
msgstr "Catalan"
|
417 |
+
|
418 |
+
#: src/Mollie/WC/Helper/Settings.php:440
|
419 |
+
msgid "Swiss German"
|
420 |
+
msgstr "Suisse allemand"
|
421 |
+
|
422 |
+
#: src/Mollie/WC/Helper/Settings.php:439
|
423 |
+
msgid "Austrian German"
|
424 |
+
msgstr "Autrichien allemand"
|
425 |
+
|
426 |
+
#: src/Mollie/WC/Helper/Api.php:41
|
427 |
+
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."
|
428 |
+
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. "
|
429 |
+
|
430 |
+
#: src/Mollie/WC/Helper/Api.php:39
|
431 |
+
msgid "No API key provided. Please set your Mollie API keys below."
|
432 |
+
msgstr "Aucune clé API n'a été fournie. Veuillez configurer les clés API Mollie ci-dessous. "
|
433 |
+
|
434 |
+
#: src/Mollie/WC/Gateway/Giropay.php:29
|
435 |
+
msgid "Giropay"
|
436 |
+
msgstr "Giropay"
|
437 |
+
|
438 |
+
#: src/Mollie/WC/Gateway/EPS.php:29
|
439 |
+
msgid "EPS"
|
440 |
+
msgstr "EPS"
|
441 |
+
|
442 |
+
#. translators: Placeholder 1: Payment method title
|
443 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:325
|
444 |
+
msgid "Could not create %s renewal payment."
|
445 |
+
msgstr "Impossible de créer un paiement de renouvellement %s."
|
446 |
+
|
447 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:282
|
448 |
+
msgid "The customer (%s) does not have a valid mandate."
|
449 |
+
msgstr "Le client (%s) ne possède pas de mandat valide. "
|
450 |
+
|
451 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:273
|
452 |
+
msgid "The customer (%s) could not be used or found. "
|
453 |
+
msgstr "Le client (%s) n’a pas pu être utilisé ou trouvé. "
|
454 |
+
|
455 |
+
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
456 |
+
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
457 |
+
#. placeholder 5: refund ID
|
458 |
+
#: src/Mollie/WC/Payment/Payment.php:595
|
459 |
+
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
460 |
+
msgstr "Remboursé %s%s%s - Paiement : %s, Remboursement : %s. "
|
461 |
+
|
462 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1137
|
463 |
+
msgid "New chargeback %s processed! Order note and order status updated."
|
464 |
+
msgstr "Nouveau remboursement %s effectué ! Note et état de la commande mis à jour. "
|
465 |
+
|
466 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1038
|
467 |
+
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
468 |
+
msgstr "Nouveau remboursement %s effectué dans Mollie Dashboard ! Note de commande ajoutée, mais commande non mise à jour. "
|
469 |
+
|
470 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
471 |
+
#: src/Mollie/WC/Payment/Order.php:630 src/Mollie/WC/Payment/Payment.php:432
|
472 |
+
msgid "%s payment failed via Mollie (%s)."
|
473 |
+
msgstr "Le paiement %s a échoué via Mollie (%s)."
|
474 |
+
|
475 |
+
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
476 |
+
#. Mollie currencies
|
477 |
+
#: src/Mollie/WC/Gateway/Abstract.php:250
|
478 |
+
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
479 |
+
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."
|
480 |
+
|
481 |
+
#: mollie-payments-for-WooCommerce.php:105
|
482 |
+
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."
|
483 |
+
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. "
|
484 |
+
|
485 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
486 |
+
#: src/Mollie/WC/Payment/Order.php:540 src/Mollie/WC/Payment/Order.php:701
|
487 |
+
#: src/Mollie/WC/Payment/Payment.php:343 src/Mollie/WC/Payment/Payment.php:506
|
488 |
+
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
489 |
+
msgstr "Mollie webhook appelé, mais le paiement a également commencé via %s, le statut de la commande n'a pas pu être mis à jour. "
|
490 |
+
|
491 |
+
#. translators: Placeholder 1: enabled or disabled
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:466
|
493 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
494 |
+
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 ! "
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1289
|
497 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1297
|
498 |
+
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
499 |
+
msgstr "Votre paiement n'a pas abouti. Merci de compléter votre commande avec un autre moyen de paiement. "
|
500 |
+
|
501 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
502 |
+
#: src/Mollie/WC/Payment/Order.php:606 src/Mollie/WC/Payment/Payment.php:409
|
503 |
+
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
504 |
+
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."
|
505 |
+
|
506 |
+
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
507 |
+
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
508 |
+
msgid "Bancontact"
|
509 |
+
msgstr "Bancontact"
|
510 |
+
|
511 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
512 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1595
|
513 |
+
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."
|
514 |
+
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."
|
515 |
+
|
516 |
+
#: src/Mollie/WC/Gateway/Abstract.php:469
|
517 |
+
msgid "Failed switching subscriptions, no valid mandate."
|
518 |
+
msgstr "La modification d'abonnement a échoué, aucun mandat valide."
|
519 |
+
|
520 |
+
#: src/Mollie/WC/Gateway/Abstract.php:468
|
521 |
+
msgid "Failed switching subscriptions, no valid mandate.found. Place a completely new order to change your subscription."
|
522 |
+
msgstr "La modification d'abonnement a échoué, aucun mandat valide n'a été trouvé. Passez une commande entièrement nouvelle pour modifier votre abonnement."
|
523 |
+
|
524 |
+
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
525 |
+
msgid "ING Home'Pay"
|
526 |
+
msgstr "ING Home'Pay"
|
527 |
+
|
528 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
529 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1165
|
530 |
+
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use them)."
|
531 |
+
msgstr "Remboursement du paiement %s via Mollie (%s). Vous devrez examiner manuellement le paiement et ajuster les stocks de produits si vous les utilisez."
|
532 |
+
|
533 |
+
#: src/Mollie/WC/Gateway/Kbc.php:41
|
534 |
+
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."
|
535 |
+
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é."
|
536 |
+
|
537 |
+
#: src/Mollie/WC/Gateway/Kbc.php:34
|
538 |
+
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."
|
539 |
+
msgstr "Si vous désactivez cette option, un menu déroulant avec différentes banques KBC/CBC ne s'affichera pas dans la caisse de WooCommerce, de sorte que les utilisateurs sélectionneront une banque KBC/CBC sur la page de paiement Mollie après la transaction."
|
540 |
+
|
541 |
+
#: src/Mollie/WC/Gateway/Kbc.php:32
|
542 |
+
msgid "Show KBC/CBC banks dropdown"
|
543 |
+
msgstr "Afficher le menu déroulant des banques KBC/CBC"
|
544 |
+
|
545 |
+
#: src/Mollie/WC/Gateway/Ideal.php:41
|
546 |
+
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."
|
547 |
+
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é."
|
548 |
+
|
549 |
+
#: src/Mollie/WC/Gateway/Ideal.php:34
|
550 |
+
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."
|
551 |
+
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."
|
552 |
+
|
553 |
+
#: src/Mollie/WC/Gateway/Ideal.php:32
|
554 |
+
msgid "Show iDEAL banks dropdown"
|
555 |
+
msgstr "Afficher le menu déroulant des banques iDEAL"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:40
|
558 |
+
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."
|
559 |
+
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é."
|
560 |
+
|
561 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
562 |
+
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."
|
563 |
+
msgstr "Si vous désactivez cette option, un menu déroulant avec différentes cartes cadeaux ne sera pas affiché dans la caisse de WooCommerce, de sorte que les utilisateurs sélectionneront une carte cadeau sur la page de paiement Mollie après la transaction."
|
564 |
+
|
565 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
566 |
+
msgid "Show gift cards dropdown"
|
567 |
+
msgstr "Afficher le menu déroulant Cartes-cadeaux"
|
568 |
+
|
569 |
+
#: src/Mollie/WC/Gateway/Abstract.php:457
|
570 |
+
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
571 |
+
msgstr "Commande complétée en interne en raison d'un mandat valide existant chez Mollie."
|
572 |
+
|
573 |
+
#: mollie-payments-for-WooCommerce.php:149
|
574 |
+
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"
|
575 |
+
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"
|
576 |
+
|
577 |
+
#: mollie-payments-for-WooCommerce.php:131
|
578 |
+
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"
|
579 |
+
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"
|
580 |
+
|
581 |
+
#: src/Mollie/WC/Helper/Settings.php:415
|
582 |
+
msgid "Cancelled"
|
583 |
+
msgstr "Annulé"
|
584 |
+
|
585 |
+
#: src/Mollie/WC/Helper/Settings.php:414
|
586 |
+
msgid "Pending"
|
587 |
+
msgstr "En attente"
|
588 |
+
|
589 |
+
#: src/Mollie/WC/Helper/Settings.php:411
|
590 |
+
msgid "Order status after cancelled payment"
|
591 |
+
msgstr "État de commande après annulation de paiement"
|
592 |
+
|
593 |
+
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
594 |
+
#. placeholder 3: consumer BIC
|
595 |
+
#: src/Mollie/WC/Gateway/Sofort.php:64 src/Mollie/WC/Gateway/Ideal.php:121
|
596 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80
|
597 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:172
|
598 |
+
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
599 |
+
msgstr "Paiement complété par <strong>%s</strong> (IBAN (4 derniers chiffres) : %s, BIC : %s)"
|
600 |
+
|
601 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1635
|
602 |
+
msgid "Your order has been cancelled."
|
603 |
+
msgstr "Votre commande a été annulée."
|
604 |
+
|
605 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1604
|
606 |
+
msgid ", payment pending."
|
607 |
+
msgstr "Paiement en attente."
|
608 |
+
|
609 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1564
|
610 |
+
msgid "Order cancelled"
|
611 |
+
msgstr "Commande annulée"
|
612 |
+
|
613 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
614 |
+
#. status, placeholder 3: payment ID
|
615 |
+
#: src/Mollie/WC/Gateway/Abstract.php:935
|
616 |
+
msgid "%s payment %s (%s), not processed."
|
617 |
+
msgstr "Paiement %s %s (%s), non traité."
|
618 |
+
|
619 |
+
#. translators: Default gift card dropdown description, displayed above issuer
|
620 |
+
#. drop down
|
621 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:76
|
622 |
+
msgid "Select your gift card"
|
623 |
+
msgstr "Sélectionner votre carte cadeau"
|
624 |
+
|
625 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:60
|
626 |
+
msgid "Gift cards"
|
627 |
+
msgstr "Cartes cadeaux"
|
628 |
+
|
629 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
630 |
+
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."
|
631 |
+
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."
|
632 |
+
|
633 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
634 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:190
|
635 |
+
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
636 |
+
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."
|
637 |
+
|
638 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
639 |
+
#: src/Mollie/WC/Payment/Payment.php:472
|
640 |
+
msgid "%s payment expired (%s) but order not cancelled because of another pending payment (%s)."
|
641 |
+
msgstr "Le paiement %s a expiré (%s) mais la commande n’a pas été annulée en raison d’un autre paiement en attente (%s)."
|
642 |
+
|
643 |
+
#: src/subscriptions_status_check_functions.php:195
|
644 |
+
msgid "There are still some subscriptions left, use the tool again!"
|
645 |
+
msgstr "Il reste encore des abonnements, utilisez à nouveau l'outil !"
|
646 |
+
|
647 |
+
#: src/subscriptions_status_check_functions.php:193
|
648 |
+
msgid "No more subscriptions left to process!"
|
649 |
+
msgstr "Plus d'abonnements à traiter !"
|
650 |
+
|
651 |
+
#: src/subscriptions_status_check_functions.php:180
|
652 |
+
msgid "No subscriptions updated in this batch."
|
653 |
+
msgstr "Aucun abonnement mis à jour dans ce lot."
|
654 |
+
|
655 |
+
#: src/subscriptions_status_check_functions.php:156
|
656 |
+
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
657 |
+
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 »."
|
658 |
+
|
659 |
+
#: src/subscriptions_status_check_functions.php:142
|
660 |
+
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
661 |
+
msgstr "Abonnement mis à jour à Renouvellement automatisé via Mollie, état activé. Traité par l'outil « État des abonnements Mollie »."
|
662 |
+
|
663 |
+
#: src/subscriptions_status_check_functions.php:36
|
664 |
+
msgid "Check subscriptions status"
|
665 |
+
msgstr "Vérifier l'état des abonnements"
|
666 |
+
|
667 |
+
#: src/subscriptions_status_check_functions.php:35
|
668 |
+
msgid "Mollie Subscriptions Status"
|
669 |
+
msgstr "État des abonnements Mollie"
|
670 |
+
|
671 |
+
#: src/subscriptions_status_check_functions.php:30
|
672 |
+
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
673 |
+
msgstr "Vérification des abonnements dont la valeur « Renouvellement manuel » est incorrecte. Lisez d'abord le"
|
674 |
+
|
675 |
+
#: src/Mollie/WC/Helper/Settings.php:464
|
676 |
+
msgid "Store customer details at Mollie"
|
677 |
+
msgstr "Enregistrer les détails du client chez Mollie"
|
678 |
+
|
679 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
680 |
+
#: src/Mollie/WC/Plugin.php:134
|
681 |
+
msgid "%s payment failed (%s)."
|
682 |
+
msgstr "Le paiement %s a échoué (%s)."
|
683 |
+
|
684 |
+
#: src/Mollie/WC/Gateway/Kbc.php:61
|
685 |
+
msgid "KBC/CBC Payment Button"
|
686 |
+
msgstr "Bouton de paiement KBC/CBC"
|
687 |
+
|
688 |
+
#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Giftcard.php:38
|
689 |
+
#: src/Mollie/WC/Gateway/Kbc.php:39
|
690 |
+
msgid "Issuers empty option"
|
691 |
+
msgstr "Émetteurs option vide"
|
692 |
+
|
693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:48
|
694 |
+
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."
|
695 |
+
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."
|
696 |
+
|
697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
698 |
+
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
699 |
+
msgstr "Sauter l'écran de paiement Mollie lorsque le virement bancaire est sélectionné"
|
700 |
+
|
701 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:46
|
702 |
+
msgid "Skip Mollie payment screen"
|
703 |
+
msgstr "Sauter l'écran de paiement Mollie"
|
704 |
+
|
705 |
+
#. Description of the plugin
|
706 |
+
msgid "Accept payments in WooCommerce with the official Mollie plugin"
|
707 |
+
msgstr "Accepter les paiements dans WooCommerce avec le plugin officiel Mollie"
|
708 |
+
|
709 |
+
#. Plugin URI of the plugin
|
710 |
+
#. Author URI of the plugin
|
711 |
+
msgid "https://www.mollie.com"
|
712 |
+
msgstr "https://www.mollie.com"
|
713 |
+
|
714 |
+
#. Author of the plugin
|
715 |
+
msgid "Mollie"
|
716 |
+
msgstr "Mollie"
|
717 |
+
|
718 |
+
#. Plugin Name of the plugin
|
719 |
+
msgid "Mollie Payments for WooCommerce"
|
720 |
+
msgstr "Mollie Payments pour WooCommerce"
|
721 |
+
|
722 |
+
#: src/Mollie/WC/Plugin.php:780
|
723 |
+
msgid "Logs"
|
724 |
+
msgstr "Journaux"
|
725 |
+
|
726 |
+
#: src/Mollie/WC/Helper/Status.php:123
|
727 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
728 |
+
msgstr "Mollie Payments pour WooCommerce nécessite l'activation de l'extension PHP cURL. Veuillez activer l'extension « curl » dans votre configuration PHP."
|
729 |
+
|
730 |
+
#: src/Mollie/WC/Helper/Status.php:116
|
731 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
732 |
+
msgstr "Mollie Payments pour WooCommerce nécessite l'activation de l'extension PHP JSON. Veuillez activer l'extension « JSON » dans votre configuration PHP."
|
733 |
+
|
734 |
+
#: src/Mollie/WC/Helper/Status.php:80
|
735 |
+
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
736 |
+
msgstr "Mollie client API n'est pas installé. Veuillez vous assurer que le plugin est installé correctement."
|
737 |
+
|
738 |
+
#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce
|
739 |
+
#. version, placeholder 3: used WooCommerce version
|
740 |
+
#: src/Mollie/WC/Helper/Status.php:67
|
741 |
+
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
742 |
+
msgstr "Le plugin %s nécessite au moins la version WooCommerce %s, vous utilisez la version %s Veuillez mettre à jour votre plugin WooCommerce."
|
743 |
+
|
744 |
+
#: src/Mollie/WC/Helper/Settings.php:473
|
745 |
+
msgid "Debug Log"
|
746 |
+
msgstr "Journal de débogage"
|
747 |
+
|
748 |
+
#: src/Mollie/WC/Helper/Settings.php:437
|
749 |
+
msgid "French (Belgium)"
|
750 |
+
msgstr "Français (Belgique) "
|
751 |
+
|
752 |
+
#: src/Mollie/WC/Helper/Settings.php:436
|
753 |
+
msgid "French"
|
754 |
+
msgstr "Français"
|
755 |
+
|
756 |
+
#: src/Mollie/WC/Helper/Settings.php:441
|
757 |
+
msgid "Spanish"
|
758 |
+
msgstr "Espagnol "
|
759 |
+
|
760 |
+
#: src/Mollie/WC/Helper/Settings.php:438
|
761 |
+
msgid "German"
|
762 |
+
msgstr "Suisse allemand"
|
763 |
+
|
764 |
+
#: src/Mollie/WC/Helper/Settings.php:433
|
765 |
+
msgid "English"
|
766 |
+
msgstr "Anglais"
|
767 |
+
|
768 |
+
#: src/Mollie/WC/Helper/Settings.php:435
|
769 |
+
msgid "Flemish (Belgium)"
|
770 |
+
msgstr "Français (Belgique)"
|
771 |
+
|
772 |
+
#: src/Mollie/WC/Helper/Settings.php:434
|
773 |
+
msgid "Dutch"
|
774 |
+
msgstr "Néerlandais"
|
775 |
+
|
776 |
+
#: src/Mollie/WC/Helper/Settings.php:429
|
777 |
+
msgid "Detect using browser language"
|
778 |
+
msgstr "Détecter utilisant la langue du navigateur"
|
779 |
+
|
780 |
+
#: src/Mollie/WC/Helper/Settings.php:422
|
781 |
+
msgid "Payment screen language"
|
782 |
+
msgstr "Langue de l'écran paiement"
|
783 |
+
|
784 |
+
#: src/Mollie/WC/Helper/Settings.php:403
|
785 |
+
msgid "Test API key should start with test_"
|
786 |
+
msgstr "La clé Test API devrait commencer par test_"
|
787 |
+
|
788 |
+
#: src/Mollie/WC/Helper/Settings.php:392
|
789 |
+
msgid "Test API key"
|
790 |
+
msgstr "Clé Test API"
|
791 |
+
|
792 |
+
#: src/Mollie/WC/Helper/Settings.php:388
|
793 |
+
msgid "Enable test mode if you want to test the plugin without using real payments."
|
794 |
+
msgstr "Activer le mode test si vous souhaitez tester le plugin sans utiliser les paiements réels."
|
795 |
+
|
796 |
+
#: src/Mollie/WC/Helper/Settings.php:385
|
797 |
+
msgid "Enable test mode"
|
798 |
+
msgstr "Activer le mode test"
|
799 |
+
|
800 |
+
#: src/Mollie/WC/Helper/Settings.php:377
|
801 |
+
msgid "Live API key should start with live_"
|
802 |
+
msgstr "La clé Live API devrait commencer par live_"
|
803 |
+
|
804 |
+
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
805 |
+
#. %s's Will be replaced by a link to the Mollie profile
|
806 |
+
#: src/Mollie/WC/Helper/Settings.php:371 src/Mollie/WC/Helper/Settings.php:397
|
807 |
+
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
808 |
+
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"
|
809 |
+
|
810 |
+
#: src/Mollie/WC/Helper/Settings.php:366
|
811 |
+
msgid "Live API key"
|
812 |
+
msgstr "Clé Live API"
|
813 |
+
|
814 |
+
#: src/Mollie/WC/Helper/Settings.php:362
|
815 |
+
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
816 |
+
msgstr "Les options suivantes sont requises pour utiliser l'extension et sont utilisées par toutes les méthodes paiement de Mollie."
|
817 |
+
|
818 |
+
#: src/Mollie/WC/Helper/Settings.php:359 src/Mollie/WC/Plugin.php:773
|
819 |
+
msgid "Mollie settings"
|
820 |
+
msgstr "Réglages Mollie"
|
821 |
+
|
822 |
+
#. translators: Placeholder 1: Location of the log files
|
823 |
+
#: src/Mollie/WC/Helper/Settings.php:352
|
824 |
+
msgid "Log files are saved to <code>%s</code>"
|
825 |
+
msgstr "Les fichiers journaux sont enregistrés dans <code>%s</code>"
|
826 |
+
|
827 |
+
#: src/Mollie/WC/Helper/Settings.php:346
|
828 |
+
msgid "View logs"
|
829 |
+
msgstr "Voir les journaux"
|
830 |
+
|
831 |
+
#: src/Mollie/WC/Helper/Settings.php:341
|
832 |
+
msgid "Log plugin events."
|
833 |
+
msgstr "Journal extension événements."
|
834 |
+
|
835 |
+
#: src/Mollie/WC/Helper/Settings.php:301
|
836 |
+
msgid "Edit"
|
837 |
+
msgstr "Éditer"
|
838 |
+
|
839 |
+
#: src/Mollie/WC/Helper/Settings.php:270
|
840 |
+
msgid "Refresh"
|
841 |
+
msgstr "Actualiser"
|
842 |
+
|
843 |
+
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
844 |
+
#. profile
|
845 |
+
#: src/Mollie/WC/Helper/Settings.php:261
|
846 |
+
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
847 |
+
msgstr "Les méthodes de paiement suivantes sont activées dans votre profil Mollie %s%s:"
|
848 |
+
|
849 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
850 |
+
msgid "Gateway disabled"
|
851 |
+
msgstr "Passerelle désactivée"
|
852 |
+
|
853 |
+
#. translators: Placeholder 1: enabled or disabled
|
854 |
+
#: src/Mollie/WC/Helper/Settings.php:250 src/Mollie/WC/Helper/Settings.php:466
|
855 |
+
msgid "Enabled"
|
856 |
+
msgstr "Activé"
|
857 |
+
|
858 |
+
#: src/Mollie/WC/Helper/Settings.php:250
|
859 |
+
msgid "Gateway enabled"
|
860 |
+
msgstr "Passerelle désactivée"
|
861 |
+
|
862 |
+
#: src/Mollie/WC/Helper/Settings.php:207
|
863 |
+
msgid "Connected"
|
864 |
+
msgstr "Connecté"
|
865 |
+
|
866 |
+
#: src/Mollie/WC/Helper/Settings.php:206
|
867 |
+
msgid "Mollie status:"
|
868 |
+
msgstr "État Mollie :"
|
869 |
+
|
870 |
+
#: src/Mollie/WC/Helper/Settings.php:193
|
871 |
+
msgid "Error"
|
872 |
+
msgstr "Erreur"
|
873 |
+
|
874 |
+
#: src/Mollie/WC/Helper/Data.php:613
|
875 |
+
msgid "Item #%s stock incremented from %s to %s."
|
876 |
+
msgstr "Item #%s stock incrémenté de %s à %s."
|
877 |
+
|
878 |
+
#: src/Mollie/WC/Gateway/Sofort.php:33
|
879 |
+
msgid "SOFORT Banking"
|
880 |
+
msgstr "SOFORT Banking"
|
881 |
+
|
882 |
+
#: src/Mollie/WC/Gateway/Paysafecard.php:20
|
883 |
+
msgid "paysafecard"
|
884 |
+
msgstr "paysafecard"
|
885 |
+
|
886 |
+
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
887 |
+
#. email, placeholder 3: PayPal transaction ID
|
888 |
+
#: src/Mollie/WC/Gateway/PayPal.php:64
|
889 |
+
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
890 |
+
msgstr "Paiement effectué par <strong>%s</strong> - %s (ID transaction PayPal : %s)"
|
891 |
+
|
892 |
+
#: src/Mollie/WC/Gateway/PayPal.php:33
|
893 |
+
msgid "PayPal"
|
894 |
+
msgstr "PayPal"
|
895 |
+
|
896 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
897 |
+
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
898 |
+
#. drop down
|
899 |
+
#: src/Mollie/WC/Gateway/Ideal.php:77 src/Mollie/WC/Gateway/Kbc.php:77
|
900 |
+
msgid "Select your bank"
|
901 |
+
msgstr "Sélectionnez votre banque"
|
902 |
+
|
903 |
+
#: src/Mollie/WC/Gateway/Ideal.php:61
|
904 |
+
msgid "iDEAL"
|
905 |
+
msgstr "iDEAL"
|
906 |
+
|
907 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:42
|
908 |
+
msgid "SEPA Direct Debit"
|
909 |
+
msgstr "Prélevement SEPA"
|
910 |
+
|
911 |
+
#. translators: Placeholder 1: card holder
|
912 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:85
|
913 |
+
msgid "Payment completed by <strong>%s</strong>"
|
914 |
+
msgstr "Paiement effectué par <strong>%s</strong>"
|
915 |
+
|
916 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:34
|
917 |
+
msgid "Credit card"
|
918 |
+
msgstr "Carte de crédit"
|
919 |
+
|
920 |
+
#: src/Mollie/WC/Gateway/Belfius.php:33
|
921 |
+
msgid "Belfius Direct Net"
|
922 |
+
msgstr "Belfius Direct Net"
|
923 |
+
|
924 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:220
|
925 |
+
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
926 |
+
msgstr "Le paiement expirera le <strong>%s</strong>. Veuillez vous assurez que vous transférez le montant total avant cette date."
|
927 |
+
|
928 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:213
|
929 |
+
msgid "The payment will expire on <strong>%s</strong>."
|
930 |
+
msgstr "Le paiement expirera le <strong>%s</strong>."
|
931 |
+
|
932 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
933 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
934 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
935 |
+
msgid "Please provide the payment reference <strong>%s</strong>"
|
936 |
+
msgstr "S'il vous plaît fournir la référence de paiement <strong>%s</strong>"
|
937 |
+
|
938 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
939 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
940 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:193
|
941 |
+
msgid "Payment reference: %s"
|
942 |
+
msgstr "Référence de paiement : %s"
|
943 |
+
|
944 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
945 |
+
msgid "BIC: %s"
|
946 |
+
msgstr "BIC : %s"
|
947 |
+
|
948 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:187
|
949 |
+
msgid "IBAN: <strong>%s</strong>"
|
950 |
+
msgstr "IBAN : <strong>%s</strong>"
|
951 |
+
|
952 |
+
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
953 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:186
|
954 |
+
msgid "Beneficiary: %s"
|
955 |
+
msgstr "Bénéficiaire : %s"
|
956 |
+
|
957 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:182
|
958 |
+
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
959 |
+
msgstr "Veuillez terminer votre paiement en transférant le montant total sur le compte bancaire suivant :"
|
960 |
+
|
961 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:122
|
962 |
+
msgid "Bank Transfer"
|
963 |
+
msgstr "Transfert Bancaire"
|
964 |
+
|
965 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
966 |
+
msgid "Disabled"
|
967 |
+
msgstr "Désactivé"
|
968 |
+
|
969 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:37
|
970 |
+
msgid "Number of days after the payment will expire. Default <code>%d</code> days"
|
971 |
+
msgstr "Nombre de jours après lequel le paiement expirera. Par défaut <code>%d</code> jours"
|
972 |
+
|
973 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:35
|
974 |
+
msgid "Expiry date"
|
975 |
+
msgstr "Date d'expiration"
|
976 |
+
|
977 |
+
#. translators: Placeholder 1: payment method
|
978 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1508
|
979 |
+
msgid "Payment completed with <strong>%s</strong>"
|
980 |
+
msgstr "Paiement complété par <strong>%s</strong>"
|
981 |
+
|
982 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1501
|
983 |
+
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."
|
984 |
+
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."
|
985 |
+
|
986 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1496
|
987 |
+
msgid "We have not received a definite payment status."
|
988 |
+
msgstr "Nous n'avons pas reçu un état de paiement définitif."
|
989 |
+
|
990 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1271
|
991 |
+
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
992 |
+
msgstr "Vous avez annulé votre paiement. Veuillez compléter votre commande avec une autre méthode de paiement."
|
993 |
+
|
994 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Payment/Payment.php:513
|
996 |
+
msgid "%s payment expired (%s)."
|
997 |
+
msgstr "Paiement %s expiré (%s)."
|
998 |
+
|
999 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1000 |
+
#: src/Mollie/WC/Payment/Order.php:295 src/Mollie/WC/Payment/Payment.php:241
|
1001 |
+
msgid "Order completed using %s payment (%s)."
|
1002 |
+
msgstr "Commande terminée avec le paiement %s (%s)."
|
1003 |
+
|
1004 |
+
#. translators: Placeholder 1: Payment method title
|
1005 |
+
#: src/Mollie/WC/Gateway/Abstract.php:678
|
1006 |
+
msgid "Could not create %s payment."
|
1007 |
+
msgstr "Impossible de créer un paiement %s."
|
1008 |
+
|
1009 |
+
#: src/Mollie/WC/Payment/Order.php:297 src/Mollie/WC/Payment/Order.php:368
|
1010 |
+
#: src/Mollie/WC/Payment/Order.php:440 src/Mollie/WC/Payment/Order.php:550
|
1011 |
+
#: src/Mollie/WC/Payment/Order.php:608 src/Mollie/WC/Payment/Order.php:632
|
1012 |
+
#: src/Mollie/WC/Payment/Order.php:669 src/Mollie/WC/Payment/Order.php:710
|
1013 |
+
#: src/Mollie/WC/Payment/Payment.php:243 src/Mollie/WC/Payment/Payment.php:353
|
1014 |
+
#: src/Mollie/WC/Payment/Payment.php:411 src/Mollie/WC/Payment/Payment.php:434
|
1015 |
+
#: src/Mollie/WC/Payment/Payment.php:474 src/Mollie/WC/Payment/Payment.php:515
|
1016 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1017 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1018 |
+
#: src/Mollie/WC/Gateway/Abstract.php:656
|
1019 |
+
#: src/Mollie/WC/Gateway/Abstract.php:938
|
1020 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1167
|
1021 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1208
|
1022 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1597
|
1023 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:466
|
1024 |
+
msgid "test mode"
|
1025 |
+
msgstr "Mode test"
|
1026 |
+
|
1027 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1028 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1029 |
+
#: src/Mollie/WC/Gateway/Abstract.php:654
|
1030 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1031 |
+
msgid "%s payment started (%s)."
|
1032 |
+
msgstr "Le paiement %s a commencé (%s)."
|
1033 |
+
|
1034 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1035 |
+
#: src/Mollie/WC/Gateway/Abstract.php:644
|
1036 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1037 |
+
msgid "Awaiting payment confirmation."
|
1038 |
+
msgstr "En attente de la confirmation de paiement."
|
1039 |
+
|
1040 |
+
#: src/Mollie/WC/Gateway/Abstract.php:402
|
1041 |
+
msgid "Could not load order %s"
|
1042 |
+
msgstr "Impossible de télécharger la commande %s."
|
1043 |
+
|
1044 |
+
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1045 |
+
#. be replaced by a link to the Mollie profile
|
1046 |
+
#: src/Mollie/WC/Gateway/Abstract.php:238
|
1047 |
+
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1048 |
+
msgstr "%s pas activé dans votre profil Mollie. Vous pouvez l'activer en éditant votre %sprofil Mollie%s."
|
1049 |
+
|
1050 |
+
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1051 |
+
#. setting page
|
1052 |
+
#: src/Mollie/WC/Gateway/Abstract.php:226
|
1053 |
+
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1054 |
+
msgstr "Aucune clé API n'a été fournie. Veuillez d'abord %sconfigurer votre clé API Mollie%s."
|
1055 |
+
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:181
|
1057 |
+
msgid "Gateway Disabled"
|
1058 |
+
msgstr "Passerelle désactivée"
|
1059 |
+
|
1060 |
+
#: src/Mollie/WC/Helper/Settings.php:256 src/Mollie/WC/Gateway/Abstract.php:224
|
1061 |
+
msgid "Test mode enabled."
|
1062 |
+
msgstr "Mode test activé."
|
1063 |
+
|
1064 |
+
#: src/Mollie/WC/Gateway/Abstract.php:143
|
1065 |
+
msgid "Hold Stock (minutes)"
|
1066 |
+
msgstr "Stock en attente (minutes)"
|
1067 |
+
|
1068 |
+
#: src/Mollie/WC/Gateway/Abstract.php:141
|
1069 |
+
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."
|
1070 |
+
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é."
|
1071 |
+
|
1072 |
+
#: src/Mollie/WC/Helper/Settings.php:428 src/Mollie/WC/Gateway/Abstract.php:135
|
1073 |
+
msgid "default"
|
1074 |
+
msgstr "Par défaut"
|
1075 |
+
|
1076 |
+
#: src/Mollie/WC/Gateway/Abstract.php:132
|
1077 |
+
msgid "Initial order status"
|
1078 |
+
msgstr "État de la commande initiale"
|
1079 |
+
|
1080 |
+
#: src/Mollie/WC/Gateway/Abstract.php:123
|
1081 |
+
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1082 |
+
msgstr "Description de la méthode de paiement que le client verra sur votre caisse. Par défaut <code>%s</code>"
|
1083 |
+
|
1084 |
+
#: src/Mollie/WC/Gateway/Abstract.php:121
|
1085 |
+
msgid "Description"
|
1086 |
+
msgstr "Description"
|
1087 |
+
|
1088 |
+
#: src/Mollie/WC/Gateway/Abstract.php:117
|
1089 |
+
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1090 |
+
msgstr "Affichage logo sur la page de caisse. Par défaut <code>activé</code>"
|
1091 |
+
|
1092 |
+
#: src/Mollie/WC/Gateway/Abstract.php:115
|
1093 |
+
msgid "Display logo"
|
1094 |
+
msgstr "Afficher le logo"
|
1095 |
+
|
1096 |
+
#: src/Mollie/WC/Gateway/Abstract.php:110
|
1097 |
+
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1098 |
+
msgstr "Ceci contrôle le titre que l’utilisateur voit lors du paiement. Par défaut <code>%s</code>"
|
1099 |
+
|
1100 |
+
#: src/Mollie/WC/Gateway/Abstract.php:108
|
1101 |
+
msgid "Title"
|
1102 |
+
msgstr "Titre"
|
1103 |
+
|
1104 |
+
#: src/Mollie/WC/Gateway/Abstract.php:104
|
1105 |
+
msgid "Enable %s"
|
1106 |
+
msgstr "Activer %s"
|
1107 |
+
|
1108 |
+
#: src/Mollie/WC/Gateway/Abstract.php:102
|
1109 |
+
msgid "Enable/Disable"
|
1110 |
+
msgstr "Activer/Désactiver"
|
languages/mollie-payments-for-woocommerce-it_IT.mo
ADDED
Binary file
|
languages/mollie-payments-for-woocommerce-it_IT.po
ADDED
@@ -0,0 +1,1110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Development (trunk) in Italian
|
2 |
+
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Development (trunk) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2020-05-18 16:40+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/2.4.0-alpha\n"
|
11 |
+
"Language: it\n"
|
12 |
+
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Development (trunk)\n"
|
13 |
+
|
14 |
+
#: inc/settings/mollie_components_enabler.php:7
|
15 |
+
msgid "Enable the Mollie Components for this Gateway"
|
16 |
+
msgstr "Abilita i componenti Mollie per questo gateway"
|
17 |
+
|
18 |
+
#: inc/settings/mollie_components_enabler.php:6
|
19 |
+
msgid "Enable Mollie Components"
|
20 |
+
msgstr "Abilita i componenti Mollie"
|
21 |
+
|
22 |
+
#: inc/settings/mollie_components.php:157
|
23 |
+
msgctxt "Mollie Components Settings"
|
24 |
+
msgid "Background Color for invalid input."
|
25 |
+
msgstr "Colore dello sfondo per input non valido."
|
26 |
+
|
27 |
+
#: inc/settings/mollie_components.php:146
|
28 |
+
msgctxt "Mollie Components Settings"
|
29 |
+
msgid "Text Color for invalid input."
|
30 |
+
msgstr "Colore del testo per input non valido."
|
31 |
+
|
32 |
+
#: inc/settings/mollie_components.php:136
|
33 |
+
msgctxt "Mollie Components Settings"
|
34 |
+
msgid "Invalid Status Styles"
|
35 |
+
msgstr "Stili stato non validi"
|
36 |
+
|
37 |
+
#: inc/settings/mollie_components.php:122
|
38 |
+
msgctxt "Mollie Components Settings"
|
39 |
+
msgid "Full Size Kana"
|
40 |
+
msgstr "Kana a grandezza naturale"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_components.php:117
|
43 |
+
msgctxt "Mollie Components Settings"
|
44 |
+
msgid "Full Width"
|
45 |
+
msgstr "Larghezza piena"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_components.php:112
|
48 |
+
msgctxt "Mollie Components Settings"
|
49 |
+
msgid "Lowercase"
|
50 |
+
msgstr "Minuscolo"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_components.php:107
|
53 |
+
msgctxt "Mollie Components Settings"
|
54 |
+
msgid "Uppercase"
|
55 |
+
msgstr "Maiuscolo"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_components.php:102
|
58 |
+
msgctxt "Mollie Components Settings"
|
59 |
+
msgid "Capitalize"
|
60 |
+
msgstr "In lettere maiuscole"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_components.php:97
|
63 |
+
msgctxt "Mollie Components Settings"
|
64 |
+
msgid "None"
|
65 |
+
msgstr "Nessuno"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_components.php:94
|
68 |
+
msgctxt "Mollie Components Settings"
|
69 |
+
msgid "Transform Text"
|
70 |
+
msgstr "Trasformazione testo"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_components.php:88
|
73 |
+
msgctxt "Mollie Components Settings"
|
74 |
+
msgid "Justify"
|
75 |
+
msgstr "Giustifica"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_components.php:87
|
78 |
+
msgctxt "Mollie Components Settings"
|
79 |
+
msgid "Center"
|
80 |
+
msgstr "Centra"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_components.php:86
|
83 |
+
msgctxt "Mollie Components Settings"
|
84 |
+
msgid "Right"
|
85 |
+
msgstr "A destra"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_components.php:85
|
88 |
+
msgctxt "Mollie Components Settings"
|
89 |
+
msgid "Left"
|
90 |
+
msgstr "A sinistra"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_components.php:82
|
93 |
+
msgctxt "Mollie Components Settings"
|
94 |
+
msgid "Align Text"
|
95 |
+
msgstr "Allineamento testo"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_components.php:72
|
98 |
+
msgctxt "Mollie Components Settings"
|
99 |
+
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
100 |
+
msgstr "Aggiungi spaziatura interna ai componenti. Ad es. unità `16px 16px 16px 16px` e `em`, `px`, `rem` sono ammesse."
|
101 |
+
|
102 |
+
#: inc/settings/mollie_components.php:71
|
103 |
+
msgctxt "Mollie Components Settings"
|
104 |
+
msgid "Padding"
|
105 |
+
msgstr "Spaziatura interna"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_components.php:62
|
108 |
+
msgctxt "Mollie Components Settings"
|
109 |
+
msgid "Line Height"
|
110 |
+
msgstr "Altezza riga"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_components.php:56
|
113 |
+
msgctxt "Mollie Components Settings"
|
114 |
+
msgid "Letter Spacing"
|
115 |
+
msgstr "Spaziatura tra i caratteri"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_components.php:50
|
118 |
+
msgctxt "Mollie Components Settings"
|
119 |
+
msgid "Bold"
|
120 |
+
msgstr "Grassetto"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_components.php:49
|
123 |
+
msgctxt "Mollie Components Settings"
|
124 |
+
msgid "Regular"
|
125 |
+
msgstr "Regulare"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_components.php:48
|
128 |
+
msgctxt "Mollie Components Settings"
|
129 |
+
msgid "Lighter"
|
130 |
+
msgstr "Più chiaro"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_components.php:45
|
133 |
+
msgctxt "Mollie Components Settings"
|
134 |
+
msgid "Font Weight"
|
135 |
+
msgstr "Font weight"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_components.php:35
|
138 |
+
msgctxt "Mollie Components Settings"
|
139 |
+
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
140 |
+
msgstr "Le dimensioni del font definiscono la grandezza del font nei componenti. Sono ammesse unità `em`, `px`, `rem`"
|
141 |
+
|
142 |
+
#: inc/settings/mollie_components.php:34
|
143 |
+
msgctxt "Mollie Components Settings"
|
144 |
+
msgid "Font Size"
|
145 |
+
msgstr "Font weight"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_components.php:28
|
148 |
+
msgctxt "Mollie Components Settings"
|
149 |
+
msgid "Placeholder Color"
|
150 |
+
msgstr "Colore placeholder"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145
|
153 |
+
msgctxt "Mollie Components Settings"
|
154 |
+
msgid "Text Color"
|
155 |
+
msgstr "Colore del testo"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156
|
158 |
+
msgctxt "Mollie Components Settings"
|
159 |
+
msgid "Background Color"
|
160 |
+
msgstr "Colore dello sfondo"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_components.php:7
|
163 |
+
msgctxt "Mollie Components Settings"
|
164 |
+
msgid "Base Styles"
|
165 |
+
msgstr "Stili di base"
|
166 |
+
|
167 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2056
|
168 |
+
msgid "Secure payments provided by "
|
169 |
+
msgstr "Pagamenti sicuri messi a disposizione da "
|
170 |
+
|
171 |
+
#: src/Mollie/WC/Plugin.php:431
|
172 |
+
msgid "An unknown error occurred, please check the card fields."
|
173 |
+
msgstr "Si è verificato un errore sconosciuto, controllare i campi carta di credito."
|
174 |
+
|
175 |
+
#: src/Mollie/WC/Plugin.php:424
|
176 |
+
msgid "Verification Code"
|
177 |
+
msgstr "Codice di verifica"
|
178 |
+
|
179 |
+
#: src/Mollie/WC/Plugin.php:420
|
180 |
+
msgid "Expiry Date"
|
181 |
+
msgstr "Data di scadenza"
|
182 |
+
|
183 |
+
#: src/Mollie/WC/Plugin.php:412
|
184 |
+
msgid "Card Holder"
|
185 |
+
msgstr "Titolare della carta"
|
186 |
+
|
187 |
+
#: src/Mollie/WC/Settings/Page/Components.php:10
|
188 |
+
msgid "Mollie Components"
|
189 |
+
msgstr "Componenti Mollie"
|
190 |
+
|
191 |
+
#: src/Mollie/WC/Plugin.php:416
|
192 |
+
msgid "Card Number"
|
193 |
+
msgstr "Numero carta"
|
194 |
+
|
195 |
+
#: src/Mollie/WC/Plugin.php:306
|
196 |
+
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
197 |
+
msgstr "%1$s voci cancellate in WooCommerce e su Mollie."
|
198 |
+
|
199 |
+
#: src/Mollie/WC/Plugin.php:288
|
200 |
+
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
201 |
+
msgstr "%1$s voci rimborsate in WooCommerce e su Mollie."
|
202 |
+
|
203 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
204 |
+
msgid "Empty WooCommerce order items or mollie order lines."
|
205 |
+
msgstr "Voci dell’ordine WooCommerce vuote o righe dell’ordine mollie vuote."
|
206 |
+
|
207 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
208 |
+
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
209 |
+
msgstr "Impossibile recuperare l’id voce dell’ordine relativo alla voce remota: %1$s. Tentativo di rimborso in base all’importo."
|
210 |
+
|
211 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
212 |
+
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
213 |
+
msgstr "Una delle voci dell'ordine WooCommerce non ha il meta valore della voce di rimborso associato alla voce dell’ordine Mollie."
|
214 |
+
|
215 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:115
|
216 |
+
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."
|
217 |
+
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."
|
218 |
+
|
219 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
220 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:159
|
221 |
+
msgid "Order completed using %1$s payment (%2$s)."
|
222 |
+
msgstr "Ordine completato utilizzando il %1$s pagamento (%2$s)."
|
223 |
+
|
224 |
+
#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer
|
225 |
+
#. Account number
|
226 |
+
#: src/Mollie/WC/Gateway/MyBank.php:73
|
227 |
+
msgid "Payment completed by <strong>%1$s</strong> - %2$s"
|
228 |
+
msgstr "Pagamento completato da <strong>%1$s</strong> - %2$s"
|
229 |
+
|
230 |
+
#: src/Mollie/WC/Gateway/MyBank.php:44
|
231 |
+
msgid "To accept payments via MyBank"
|
232 |
+
msgstr "Per accettare pagamenti tramite MyBank"
|
233 |
+
|
234 |
+
#: src/Mollie/WC/Gateway/MyBank.php:36
|
235 |
+
msgid "MyBank"
|
236 |
+
msgstr "MyBank"
|
237 |
+
|
238 |
+
#: src/Mollie/WC/Gateway/Applepay.php:45
|
239 |
+
msgid "To accept payments via Apple Pay"
|
240 |
+
msgstr "Per accettare pagamenti tramite Apple Pay"
|
241 |
+
|
242 |
+
#: src/Mollie/WC/Gateway/Applepay.php:37
|
243 |
+
msgid "Apple Pay"
|
244 |
+
msgstr "Apple Pay"
|
245 |
+
|
246 |
+
#. translators: Placeholder 1: customer billing email
|
247 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:64
|
248 |
+
msgid "Payment completed by <strong>%s</strong>."
|
249 |
+
msgstr "Pagamento completato da <strong>%s</strong>."
|
250 |
+
|
251 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
252 |
+
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
253 |
+
msgstr "Per accettare pagamenti tramite Przelewy24, è richiesta un’email del cliente per ciascun pagamento."
|
254 |
+
|
255 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
256 |
+
msgid "Przelewy24"
|
257 |
+
msgstr "Przelewy24"
|
258 |
+
|
259 |
+
#: src/Mollie/WC/Helper/Status.php:89 mollie-payments-for-WooCommerce.php:83
|
260 |
+
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."
|
261 |
+
msgstr "Mollie Payments per WooCommerce richiede l’estensione JSON per PHP. Abilitala nel tuo server o chiedi al tuo webhoster di abilitarla per te."
|
262 |
+
|
263 |
+
#: src/Mollie/WC/Payment/Order.php:1029
|
264 |
+
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
265 |
+
msgstr "Rimborso dell’importo di %s%s effettuato in WooCommerce e su Mollie.%s ID rimborso: %s."
|
266 |
+
|
267 |
+
#: src/Mollie/WC/Payment/Order.php:946
|
268 |
+
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
269 |
+
msgstr "%sx %s rimborsato per %s%s in WooCommerce e su Mollie.%s ID rimborso: %s."
|
270 |
+
|
271 |
+
#: src/Mollie/WC/Payment/Order.php:930
|
272 |
+
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
273 |
+
msgstr "%sx %s annullato per %s%s in WooCommerce e su Mollie."
|
274 |
+
|
275 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
276 |
+
#: src/Mollie/WC/Payment/Order.php:438
|
277 |
+
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!"
|
278 |
+
msgstr "Ordine completato su Mollie per %s ordine (%s). Almeno una riga d’ordine completata. Ricorda: Lo stato completato per un ordine su Mollie non equivale allo stato Completato su WooCommerce!"
|
279 |
+
|
280 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
281 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1206
|
282 |
+
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use them)."
|
283 |
+
msgstr "%s pagamento riaccreditato tramite Mollie (%s). Stato dell’abbonamento aggiornato, ti preghiamo di rivederlo (e adattare lo stock di prodotti se lo usi)."
|
284 |
+
|
285 |
+
#: src/Mollie/WC/Helper/Settings.php:624
|
286 |
+
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
287 |
+
msgstr "Per accettare pagamenti Klarna tramite Mollie, tutti i campi del checkout predefiniti di WooCommerce dovrebbero essere abilitati e richiesti. Assicurati che sia così."
|
288 |
+
|
289 |
+
#: src/Mollie/WC/Payment/Payment.php:39
|
290 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
291 |
+
msgid "Order"
|
292 |
+
msgstr "Ordine"
|
293 |
+
|
294 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
295 |
+
#: src/Mollie/WC/Payment/Payment.php:351
|
296 |
+
msgid "%s payment (%s) cancelled ."
|
297 |
+
msgstr "%s pagamento (%s) annullato."
|
298 |
+
|
299 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
300 |
+
#: src/Mollie/WC/Payment/Order.php:708
|
301 |
+
msgid "%s order (%s) expired ."
|
302 |
+
msgstr "%s ordine (%s) scaduto."
|
303 |
+
|
304 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
305 |
+
#: src/Mollie/WC/Payment/Order.php:667
|
306 |
+
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
307 |
+
msgstr "%s ordine scaduto (%s) ma ordine non annullato perché c’è un altro pagamento in sospeso (%s)."
|
308 |
+
|
309 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
310 |
+
#: src/Mollie/WC/Payment/Order.php:548
|
311 |
+
msgid "%s order (%s) cancelled ."
|
312 |
+
msgstr "%s ordine (%s) annullato."
|
313 |
+
|
314 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
315 |
+
#: src/Mollie/WC/Payment/Order.php:366
|
316 |
+
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."
|
317 |
+
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."
|
318 |
+
|
319 |
+
#: src/Mollie/WC/Helper/Settings.php:649
|
320 |
+
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
321 |
+
msgstr "Per accettare pagamenti Klarna tramite Mollie, devi utilizzare la versione WooCommerce 3.0 o superiore, attualmente stai utilizzando la versione %s."
|
322 |
+
|
323 |
+
#: src/Mollie/WC/Helper/Settings.php:456
|
324 |
+
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."
|
325 |
+
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."
|
326 |
+
|
327 |
+
#: src/Mollie/WC/Helper/Settings.php:425
|
328 |
+
msgid "Automatically send WordPress language"
|
329 |
+
msgstr "Invia automaticamente la lingua di WordPress"
|
330 |
+
|
331 |
+
#: src/Mollie/WC/Helper/Settings.php:417
|
332 |
+
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."
|
333 |
+
msgstr "Stato degli ordini quando un pagamento (non un ordine Mollie attraverso la Orders API) viene annullato. Predefinito: in sospeso. Gli ordini con stato In Sospeso possono essere pagati con un altra modalità di pagamento, i clienti possono riprovare. Gli ordini annullati sono definitivi. Imposta lo stato su Annullato se hai solo una modalità di pagamento o non vuoi che i clienti riprovino ad effettuare il pagamento con un’altra modalità. Ciò non si applica ai pagamenti di ordini tramite la nuova Orders API e i pagamenti Klarna."
|
334 |
+
|
335 |
+
#: src/Mollie/WC/Helper/OrderLines.php:407
|
336 |
+
msgid "Shipping"
|
337 |
+
msgstr "Spedizione"
|
338 |
+
|
339 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
340 |
+
msgid "Klarna Slice it"
|
341 |
+
msgstr "Klarna Slice it"
|
342 |
+
|
343 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
344 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
345 |
+
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
346 |
+
msgstr "Per accettare pagamenti tramite Klarna, tutti i campi del checkout predefiniti WooCommerce dovrebbero essere abilitati e richiesti."
|
347 |
+
|
348 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
349 |
+
msgid "Klarna Pay later"
|
350 |
+
msgstr "Klarna Pay later"
|
351 |
+
|
352 |
+
#: src/Mollie/WC/Helper/Status.php:131
|
353 |
+
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
354 |
+
msgstr "Mollie Payments per WooCommerce richiede che le funzioni PHP cURL siano disponibili. Assicurati che queste funzioni siano disponibili."
|
355 |
+
|
356 |
+
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
357 |
+
#. version
|
358 |
+
#: src/Mollie/WC/Helper/Status.php:104
|
359 |
+
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
360 |
+
msgstr "Mollie Payments per WooCommerce richiede PHP %s o superiore, tu hai PHP %s. Effettua l’aggiornamento e visualizza %squeste FAQ%s"
|
361 |
+
|
362 |
+
#: src/Mollie/WC/Helper/Settings.php:600
|
363 |
+
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."
|
364 |
+
msgstr "In WooCommerce è abilitato il gateway di pagamento WooCommerce per i bonifici bancari diretti (BACS). Mollie consiglia vivamente di utilizzare solo il bonifico bancario tramite Mollie e di disabilitare il gateway di pagamento predefinito BACS di WooCommerce per prevenire possibili conflitti."
|
365 |
+
|
366 |
+
#: src/Mollie/WC/Helper/Settings.php:576
|
367 |
+
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."
|
368 |
+
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”."
|
369 |
+
|
370 |
+
#: src/Mollie/WC/Helper/Settings.php:453
|
371 |
+
msgid "Lithuanian"
|
372 |
+
msgstr "Lituano"
|
373 |
+
|
374 |
+
#: src/Mollie/WC/Helper/Settings.php:452
|
375 |
+
msgid "Latvian"
|
376 |
+
msgstr "Lettone"
|
377 |
+
|
378 |
+
#: src/Mollie/WC/Helper/Settings.php:451
|
379 |
+
msgid "Polish"
|
380 |
+
msgstr "Polacco"
|
381 |
+
|
382 |
+
#: src/Mollie/WC/Helper/Settings.php:450
|
383 |
+
msgid "Hungarian"
|
384 |
+
msgstr "Ungherese"
|
385 |
+
|
386 |
+
#: src/Mollie/WC/Helper/Settings.php:449
|
387 |
+
msgid "Icelandic"
|
388 |
+
msgstr "Islandese"
|
389 |
+
|
390 |
+
#: src/Mollie/WC/Helper/Settings.php:448
|
391 |
+
msgid "Danish"
|
392 |
+
msgstr "Danese"
|
393 |
+
|
394 |
+
#: src/Mollie/WC/Helper/Settings.php:447
|
395 |
+
msgid "Finnish"
|
396 |
+
msgstr "Finlandese"
|
397 |
+
|
398 |
+
#: src/Mollie/WC/Helper/Settings.php:446
|
399 |
+
msgid "Swedish"
|
400 |
+
msgstr "Svedese"
|
401 |
+
|
402 |
+
#: src/Mollie/WC/Helper/Settings.php:445
|
403 |
+
msgid "Norwegian"
|
404 |
+
msgstr "Norvegese"
|
405 |
+
|
406 |
+
#: src/Mollie/WC/Helper/Settings.php:444
|
407 |
+
msgid "Italian"
|
408 |
+
msgstr "Italiano"
|
409 |
+
|
410 |
+
#: src/Mollie/WC/Helper/Settings.php:443
|
411 |
+
msgid "Portuguese"
|
412 |
+
msgstr "Portoghese"
|
413 |
+
|
414 |
+
#: src/Mollie/WC/Helper/Settings.php:442
|
415 |
+
msgid "Catalan"
|
416 |
+
msgstr "Catalano"
|
417 |
+
|
418 |
+
#: src/Mollie/WC/Helper/Settings.php:440
|
419 |
+
msgid "Swiss German"
|
420 |
+
msgstr "Tedesco svizzero"
|
421 |
+
|
422 |
+
#: src/Mollie/WC/Helper/Settings.php:439
|
423 |
+
msgid "Austrian German"
|
424 |
+
msgstr "Tedesco austriaco"
|
425 |
+
|
426 |
+
#: src/Mollie/WC/Helper/Api.php:41
|
427 |
+
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."
|
428 |
+
msgstr "Chiave/i API non valida/e. Acquisiscile sulla %spagina degli sviluppatori nella dashboard Mollie%s. La chiave o le chiavi API devono iniziare con 'live_' o 'test_', essere di almeno 30 caratteri e non possono più contenere caratteri speciali."
|
429 |
+
|
430 |
+
#: src/Mollie/WC/Helper/Api.php:39
|
431 |
+
msgid "No API key provided. Please set your Mollie API keys below."
|
432 |
+
msgstr "Nessuna chiave API fornita. Ti preghiamo di impostare le tue chiavi API Mollie di seguito."
|
433 |
+
|
434 |
+
#: src/Mollie/WC/Gateway/Giropay.php:29
|
435 |
+
msgid "Giropay"
|
436 |
+
msgstr "Giropay"
|
437 |
+
|
438 |
+
#: src/Mollie/WC/Gateway/EPS.php:29
|
439 |
+
msgid "EPS"
|
440 |
+
msgstr "EPS"
|
441 |
+
|
442 |
+
#. translators: Placeholder 1: Payment method title
|
443 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:325
|
444 |
+
msgid "Could not create %s renewal payment."
|
445 |
+
msgstr "Non è stato possibile creare %s il pagamento del rinnovo."
|
446 |
+
|
447 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:282
|
448 |
+
msgid "The customer (%s) does not have a valid mandate."
|
449 |
+
msgstr "Il cliente (%s) non ha un mandato valido."
|
450 |
+
|
451 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:273
|
452 |
+
msgid "The customer (%s) could not be used or found. "
|
453 |
+
msgstr "Non è stato possibile trovare o utilizzare il cliente (%s). "
|
454 |
+
|
455 |
+
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
456 |
+
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
457 |
+
#. placeholder 5: refund ID
|
458 |
+
#: src/Mollie/WC/Payment/Payment.php:595
|
459 |
+
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
460 |
+
msgstr "Rimborsato %s%s%s - Pagamento: %s, rimborso: %s"
|
461 |
+
|
462 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1137
|
463 |
+
msgid "New chargeback %s processed! Order note and order status updated."
|
464 |
+
msgstr "Nuovo riaccredito %s elaborato! Nota dell’ordine e stato dell’ordine aggiornati."
|
465 |
+
|
466 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1038
|
467 |
+
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
468 |
+
msgstr "Nuovo rimborso %s elaborato nella dashboard Mollie! Nota dell’ordine aggiunta, ma ordine aggiornato."
|
469 |
+
|
470 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
471 |
+
#: src/Mollie/WC/Payment/Order.php:630 src/Mollie/WC/Payment/Payment.php:432
|
472 |
+
msgid "%s payment failed via Mollie (%s)."
|
473 |
+
msgstr "%s pagamento non riuscito tramite Mollie (%s)."
|
474 |
+
|
475 |
+
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
476 |
+
#. Mollie currencies
|
477 |
+
#: src/Mollie/WC/Gateway/Abstract.php:250
|
478 |
+
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
479 |
+
msgstr "Valuta negozio corrente %s non supportata da Mollie. Leggi di più sulle %svalute supportate e sui metodi di pagamento.%s "
|
480 |
+
|
481 |
+
#: mollie-payments-for-WooCommerce.php:105
|
482 |
+
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."
|
483 |
+
msgstr "Mollie Payments per WooCommerce 4.0 richiede PHP 5.6 o superiore. La tua versione PHP è obsoleta. Aggiorna la tua versione PHP e visualizza %squeste FAQ%s."
|
484 |
+
|
485 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
486 |
+
#: src/Mollie/WC/Payment/Order.php:540 src/Mollie/WC/Payment/Order.php:701
|
487 |
+
#: src/Mollie/WC/Payment/Payment.php:343 src/Mollie/WC/Payment/Payment.php:506
|
488 |
+
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
489 |
+
msgstr "Il webhook Mollie ha chiamato, ma il pagamento è stato avviato anche tramite %s, quindi lo stato dell’ordine non è aggiornato."
|
490 |
+
|
491 |
+
#. translators: Placeholder 1: enabled or disabled
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:466
|
493 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
494 |
+
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!"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1289
|
497 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1297
|
498 |
+
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
499 |
+
msgstr "Il tuo pagamento non è riuscito. Completa l’ordine con una modalità di pagamento differente."
|
500 |
+
|
501 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
502 |
+
#: src/Mollie/WC/Payment/Order.php:606 src/Mollie/WC/Payment/Payment.php:409
|
503 |
+
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
504 |
+
msgstr "%s pagamento del rinnovo non riuscito tramite Mollie (%s). Dovrai rivedere manualmente il pagamento e adattare gli stock di prodotti se li usi."
|
505 |
+
|
506 |
+
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
507 |
+
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
508 |
+
msgid "Bancontact"
|
509 |
+
msgstr "Bancontact"
|
510 |
+
|
511 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
512 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1595
|
513 |
+
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."
|
514 |
+
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."
|
515 |
+
|
516 |
+
#: src/Mollie/WC/Gateway/Abstract.php:469
|
517 |
+
msgid "Failed switching subscriptions, no valid mandate."
|
518 |
+
msgstr "Il cambio di abbonamento non è riuscito, il mandato non è valido."
|
519 |
+
|
520 |
+
#: src/Mollie/WC/Gateway/Abstract.php:468
|
521 |
+
msgid "Failed switching subscriptions, no valid mandate.found. Place a completely new order to change your subscription."
|
522 |
+
msgstr "Il cambio di abbonamento non è riuscito, non è stato trovato un mandato valido. Effettua un ordine completamente nuovo per modificare il tuo abbonamento."
|
523 |
+
|
524 |
+
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
525 |
+
msgid "ING Home'Pay"
|
526 |
+
msgstr "ING Home'Pay"
|
527 |
+
|
528 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
529 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1165
|
530 |
+
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use them)."
|
531 |
+
msgstr "%s pagamento riaccreditato tramite Mollie (%s). Dovrai rivedere manualmente il pagamento (e adattare lo stock di prodotti se lo usi)."
|
532 |
+
|
533 |
+
#: src/Mollie/WC/Gateway/Kbc.php:41
|
534 |
+
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."
|
535 |
+
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."
|
536 |
+
|
537 |
+
#: src/Mollie/WC/Gateway/Kbc.php:34
|
538 |
+
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."
|
539 |
+
msgstr "Se si disabilita questo, un menu a tendina con varie banche KBC/CBC non verrà mostrato nel checkout di WooCommerce, così gli utenti selezioneranno una banca KBC/CBC nella pagina di pagamento di Mollie dopo il checkout."
|
540 |
+
|
541 |
+
#: src/Mollie/WC/Gateway/Kbc.php:32
|
542 |
+
msgid "Show KBC/CBC banks dropdown"
|
543 |
+
msgstr "Mostra il menu a tendina delle banche KBC/CBC"
|
544 |
+
|
545 |
+
#: src/Mollie/WC/Gateway/Ideal.php:41
|
546 |
+
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."
|
547 |
+
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."
|
548 |
+
|
549 |
+
#: src/Mollie/WC/Gateway/Ideal.php:34
|
550 |
+
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."
|
551 |
+
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."
|
552 |
+
|
553 |
+
#: src/Mollie/WC/Gateway/Ideal.php:32
|
554 |
+
msgid "Show iDEAL banks dropdown"
|
555 |
+
msgstr "Mostra il menu a tendina delle banche iDEAL"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:40
|
558 |
+
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."
|
559 |
+
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."
|
560 |
+
|
561 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
562 |
+
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."
|
563 |
+
msgstr "Se si disabilita questo, un menu a tendina con varie carte regalo non verrà mostrato nel checkout di WooCommerce, così gli utenti selezioneranno una carta regalo nella pagina di pagamento di Mollie dopo il checkout."
|
564 |
+
|
565 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
566 |
+
msgid "Show gift cards dropdown"
|
567 |
+
msgstr "Mostra menu a tendina delle carte regalo"
|
568 |
+
|
569 |
+
#: src/Mollie/WC/Gateway/Abstract.php:457
|
570 |
+
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
571 |
+
msgstr "Ordine completato internamente sulla base di un mandato valido su Mollie."
|
572 |
+
|
573 |
+
#: mollie-payments-for-WooCommerce.php:149
|
574 |
+
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"
|
575 |
+
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"
|
576 |
+
|
577 |
+
#: mollie-payments-for-WooCommerce.php:131
|
578 |
+
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"
|
579 |
+
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"
|
580 |
+
|
581 |
+
#: src/Mollie/WC/Helper/Settings.php:415
|
582 |
+
msgid "Cancelled"
|
583 |
+
msgstr "Annullato"
|
584 |
+
|
585 |
+
#: src/Mollie/WC/Helper/Settings.php:414
|
586 |
+
msgid "Pending"
|
587 |
+
msgstr "In sospeso"
|
588 |
+
|
589 |
+
#: src/Mollie/WC/Helper/Settings.php:411
|
590 |
+
msgid "Order status after cancelled payment"
|
591 |
+
msgstr "Stato dell’ordine dopo l’annullamento del pagamento"
|
592 |
+
|
593 |
+
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
594 |
+
#. placeholder 3: consumer BIC
|
595 |
+
#: src/Mollie/WC/Gateway/Sofort.php:64 src/Mollie/WC/Gateway/Ideal.php:121
|
596 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80
|
597 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:172
|
598 |
+
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
599 |
+
msgstr "Pagamento completato da <strong>%s</strong> (IBAN (ultime 4 cifre): %s, BIC: %s)"
|
600 |
+
|
601 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1635
|
602 |
+
msgid "Your order has been cancelled."
|
603 |
+
msgstr "Il tuo ordine è stato annullato."
|
604 |
+
|
605 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1604
|
606 |
+
msgid ", payment pending."
|
607 |
+
msgstr ", pagamento in sospeso."
|
608 |
+
|
609 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1564
|
610 |
+
msgid "Order cancelled"
|
611 |
+
msgstr "Ordine annullato"
|
612 |
+
|
613 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
614 |
+
#. status, placeholder 3: payment ID
|
615 |
+
#: src/Mollie/WC/Gateway/Abstract.php:935
|
616 |
+
msgid "%s payment %s (%s), not processed."
|
617 |
+
msgstr "%s pagamento %s (%s), non elaborato."
|
618 |
+
|
619 |
+
#. translators: Default gift card dropdown description, displayed above issuer
|
620 |
+
#. drop down
|
621 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:76
|
622 |
+
msgid "Select your gift card"
|
623 |
+
msgstr "Seleziona la tua carta regalo"
|
624 |
+
|
625 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:60
|
626 |
+
msgid "Gift cards"
|
627 |
+
msgstr "Carte regalo"
|
628 |
+
|
629 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
630 |
+
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."
|
631 |
+
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."
|
632 |
+
|
633 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
634 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:190
|
635 |
+
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
636 |
+
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."
|
637 |
+
|
638 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
639 |
+
#: src/Mollie/WC/Payment/Payment.php:472
|
640 |
+
msgid "%s payment expired (%s) but order not cancelled because of another pending payment (%s)."
|
641 |
+
msgstr "%s pagine scaduto (%s) ma ordine non annullato perché c’è un altro pagamento in sospeso (%s)."
|
642 |
+
|
643 |
+
#: src/subscriptions_status_check_functions.php:195
|
644 |
+
msgid "There are still some subscriptions left, use the tool again!"
|
645 |
+
msgstr "Ci sono ancora degli abbonamenti, utilizza lo strumento di nuovo!"
|
646 |
+
|
647 |
+
#: src/subscriptions_status_check_functions.php:193
|
648 |
+
msgid "No more subscriptions left to process!"
|
649 |
+
msgstr "Non ci sono più abbonamenti per l’elaborazione!"
|
650 |
+
|
651 |
+
#: src/subscriptions_status_check_functions.php:180
|
652 |
+
msgid "No subscriptions updated in this batch."
|
653 |
+
msgstr "Nessun abbonamento aggiornato in questo batch."
|
654 |
+
|
655 |
+
#: src/subscriptions_status_check_functions.php:156
|
656 |
+
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
657 |
+
msgstr "Abbonamento non aggiornato perché su Mollie non era presente un mandato valido. Elaborato dallo strumento 'Stato degli abbonamenti Mollie'."
|
658 |
+
|
659 |
+
#: src/subscriptions_status_check_functions.php:142
|
660 |
+
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
661 |
+
msgstr "Abbonamento aggiornato su rinnovo Automatico tramite Mollie, stato impostato su Attivo. Elaborato dallo strumento 'Stato degli abbonamenti Mollie'."
|
662 |
+
|
663 |
+
#: src/subscriptions_status_check_functions.php:36
|
664 |
+
msgid "Check subscriptions status"
|
665 |
+
msgstr "Controlla stato degli abbonamenti"
|
666 |
+
|
667 |
+
#: src/subscriptions_status_check_functions.php:35
|
668 |
+
msgid "Mollie Subscriptions Status"
|
669 |
+
msgstr "Stato degli abbonamenti Mollie"
|
670 |
+
|
671 |
+
#: src/subscriptions_status_check_functions.php:30
|
672 |
+
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
673 |
+
msgstr "Controlla gli abbonamenti impostati in modo errato su 'Rinnovo manuale'. Leggi prima il "
|
674 |
+
|
675 |
+
#: src/Mollie/WC/Helper/Settings.php:464
|
676 |
+
msgid "Store customer details at Mollie"
|
677 |
+
msgstr "Memorizza dettagli cliente su Mollie"
|
678 |
+
|
679 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
680 |
+
#: src/Mollie/WC/Plugin.php:134
|
681 |
+
msgid "%s payment failed (%s)."
|
682 |
+
msgstr "%s pagamento non riuscito (%s)."
|
683 |
+
|
684 |
+
#: src/Mollie/WC/Gateway/Kbc.php:61
|
685 |
+
msgid "KBC/CBC Payment Button"
|
686 |
+
msgstr "Pulsante di pagamento KBC/CBC"
|
687 |
+
|
688 |
+
#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Giftcard.php:38
|
689 |
+
#: src/Mollie/WC/Gateway/Kbc.php:39
|
690 |
+
msgid "Issuers empty option"
|
691 |
+
msgstr "Opzione emittenti vuota"
|
692 |
+
|
693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:48
|
694 |
+
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."
|
695 |
+
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."
|
696 |
+
|
697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
698 |
+
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
699 |
+
msgstr "Salta la schermata di pagamento Mollie quando viene selezionato il bonifico bancario"
|
700 |
+
|
701 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:46
|
702 |
+
msgid "Skip Mollie payment screen"
|
703 |
+
msgstr "Salta la schermata di pagamento Mollie"
|
704 |
+
|
705 |
+
#. Description of the plugin
|
706 |
+
msgid "Accept payments in WooCommerce with the official Mollie plugin"
|
707 |
+
msgstr "Accetta pagamenti in WooCommerce con il plugin ufficiale Mollie"
|
708 |
+
|
709 |
+
#. Plugin URI of the plugin
|
710 |
+
#. Author URI of the plugin
|
711 |
+
msgid "https://www.mollie.com"
|
712 |
+
msgstr "https://www.mollie.com"
|
713 |
+
|
714 |
+
#. Author of the plugin
|
715 |
+
msgid "Mollie"
|
716 |
+
msgstr "Mollie"
|
717 |
+
|
718 |
+
#. Plugin Name of the plugin
|
719 |
+
msgid "Mollie Payments for WooCommerce"
|
720 |
+
msgstr "Mollie Payments per WooCommerce"
|
721 |
+
|
722 |
+
#: src/Mollie/WC/Plugin.php:780
|
723 |
+
msgid "Logs"
|
724 |
+
msgstr "Log"
|
725 |
+
|
726 |
+
#: src/Mollie/WC/Helper/Status.php:123
|
727 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
728 |
+
msgstr "Mollie Payments per WooCommerce richiede l’estensione PHP per cURL. Abilita l’estensione 'curl' nella tua configurazione PHP."
|
729 |
+
|
730 |
+
#: src/Mollie/WC/Helper/Status.php:116
|
731 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
732 |
+
msgstr "Mollie Payments per WooCommerce richiede l’abilitazione dell’estensione PHP per JSON. Abilita l’estensione 'json' nella tua configurazione PHP."
|
733 |
+
|
734 |
+
#: src/Mollie/WC/Helper/Status.php:80
|
735 |
+
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
736 |
+
msgstr "Client dell’API Mollie non installato. Assicurati che il plugin sia installato correttamente."
|
737 |
+
|
738 |
+
#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce
|
739 |
+
#. version, placeholder 3: used WooCommerce version
|
740 |
+
#: src/Mollie/WC/Helper/Status.php:67
|
741 |
+
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
742 |
+
msgstr "Il %s plugin richiede almeno la versione WooCommerce %s, stai utilizzando la versione %s. Ti preghiamo di aggiornare il tuo plugin WooCommerce."
|
743 |
+
|
744 |
+
#: src/Mollie/WC/Helper/Settings.php:473
|
745 |
+
msgid "Debug Log"
|
746 |
+
msgstr "Log di debug"
|
747 |
+
|
748 |
+
#: src/Mollie/WC/Helper/Settings.php:437
|
749 |
+
msgid "French (Belgium)"
|
750 |
+
msgstr "Francese (Belgio)"
|
751 |
+
|
752 |
+
#: src/Mollie/WC/Helper/Settings.php:436
|
753 |
+
msgid "French"
|
754 |
+
msgstr "Francese"
|
755 |
+
|
756 |
+
#: src/Mollie/WC/Helper/Settings.php:441
|
757 |
+
msgid "Spanish"
|
758 |
+
msgstr "Spagnolo"
|
759 |
+
|
760 |
+
#: src/Mollie/WC/Helper/Settings.php:438
|
761 |
+
msgid "German"
|
762 |
+
msgstr "Tedesco"
|
763 |
+
|
764 |
+
#: src/Mollie/WC/Helper/Settings.php:433
|
765 |
+
msgid "English"
|
766 |
+
msgstr "Inglese"
|
767 |
+
|
768 |
+
#: src/Mollie/WC/Helper/Settings.php:435
|
769 |
+
msgid "Flemish (Belgium)"
|
770 |
+
msgstr "Fiammingo (Belgio)"
|
771 |
+
|
772 |
+
#: src/Mollie/WC/Helper/Settings.php:434
|
773 |
+
msgid "Dutch"
|
774 |
+
msgstr "Olandese"
|
775 |
+
|
776 |
+
#: src/Mollie/WC/Helper/Settings.php:429
|
777 |
+
msgid "Detect using browser language"
|
778 |
+
msgstr "Rileva utilizzando la lingua del browser"
|
779 |
+
|
780 |
+
#: src/Mollie/WC/Helper/Settings.php:422
|
781 |
+
msgid "Payment screen language"
|
782 |
+
msgstr "Lingua della schermata di pagamento"
|
783 |
+
|
784 |
+
#: src/Mollie/WC/Helper/Settings.php:403
|
785 |
+
msgid "Test API key should start with test_"
|
786 |
+
msgstr "La chiave API di prova dovrebbe iniziare con test_"
|
787 |
+
|
788 |
+
#: src/Mollie/WC/Helper/Settings.php:392
|
789 |
+
msgid "Test API key"
|
790 |
+
msgstr "Chiave API di prova"
|
791 |
+
|
792 |
+
#: src/Mollie/WC/Helper/Settings.php:388
|
793 |
+
msgid "Enable test mode if you want to test the plugin without using real payments."
|
794 |
+
msgstr "Abilita la modalità di prova se desideri testare il plugin senza utilizzare pagamenti reali."
|
795 |
+
|
796 |
+
#: src/Mollie/WC/Helper/Settings.php:385
|
797 |
+
msgid "Enable test mode"
|
798 |
+
msgstr "Abilita modalità di prova"
|
799 |
+
|
800 |
+
#: src/Mollie/WC/Helper/Settings.php:377
|
801 |
+
msgid "Live API key should start with live_"
|
802 |
+
msgstr "La chiave API live dovrebbe iniziare con live_"
|
803 |
+
|
804 |
+
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
805 |
+
#. %s's Will be replaced by a link to the Mollie profile
|
806 |
+
#: src/Mollie/WC/Helper/Settings.php:371 src/Mollie/WC/Helper/Settings.php:397
|
807 |
+
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
808 |
+
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"
|
809 |
+
|
810 |
+
#: src/Mollie/WC/Helper/Settings.php:366
|
811 |
+
msgid "Live API key"
|
812 |
+
msgstr "Chiave API live"
|
813 |
+
|
814 |
+
#: src/Mollie/WC/Helper/Settings.php:362
|
815 |
+
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
816 |
+
msgstr "Le seguenti opzioni sono necessarie per utilizzare il plugin e vengono utilizzate da tutte le modalità di pagamento Mollie"
|
817 |
+
|
818 |
+
#: src/Mollie/WC/Helper/Settings.php:359 src/Mollie/WC/Plugin.php:773
|
819 |
+
msgid "Mollie settings"
|
820 |
+
msgstr "Impostazioni Mollie"
|
821 |
+
|
822 |
+
#. translators: Placeholder 1: Location of the log files
|
823 |
+
#: src/Mollie/WC/Helper/Settings.php:352
|
824 |
+
msgid "Log files are saved to <code>%s</code>"
|
825 |
+
msgstr "I file di log sono archiviati in <code>%s</code>"
|
826 |
+
|
827 |
+
#: src/Mollie/WC/Helper/Settings.php:346
|
828 |
+
msgid "View logs"
|
829 |
+
msgstr "Visualizza log"
|
830 |
+
|
831 |
+
#: src/Mollie/WC/Helper/Settings.php:341
|
832 |
+
msgid "Log plugin events."
|
833 |
+
msgstr "Eventi plugin di log."
|
834 |
+
|
835 |
+
#: src/Mollie/WC/Helper/Settings.php:301
|
836 |
+
msgid "Edit"
|
837 |
+
msgstr "Modifica"
|
838 |
+
|
839 |
+
#: src/Mollie/WC/Helper/Settings.php:270
|
840 |
+
msgid "Refresh"
|
841 |
+
msgstr "Aggiorna"
|
842 |
+
|
843 |
+
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
844 |
+
#. profile
|
845 |
+
#: src/Mollie/WC/Helper/Settings.php:261
|
846 |
+
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
847 |
+
msgstr "Le seguenti modalità di pagamento sono attivate nel tuo %sprofilo Mollie%s:"
|
848 |
+
|
849 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
850 |
+
msgid "Gateway disabled"
|
851 |
+
msgstr "Gateway disabilitato"
|
852 |
+
|
853 |
+
#. translators: Placeholder 1: enabled or disabled
|
854 |
+
#: src/Mollie/WC/Helper/Settings.php:250 src/Mollie/WC/Helper/Settings.php:466
|
855 |
+
msgid "Enabled"
|
856 |
+
msgstr "Abilitato"
|
857 |
+
|
858 |
+
#: src/Mollie/WC/Helper/Settings.php:250
|
859 |
+
msgid "Gateway enabled"
|
860 |
+
msgstr "Gateway abilitato"
|
861 |
+
|
862 |
+
#: src/Mollie/WC/Helper/Settings.php:207
|
863 |
+
msgid "Connected"
|
864 |
+
msgstr "Collegato"
|
865 |
+
|
866 |
+
#: src/Mollie/WC/Helper/Settings.php:206
|
867 |
+
msgid "Mollie status:"
|
868 |
+
msgstr "Stato Mollie:"
|
869 |
+
|
870 |
+
#: src/Mollie/WC/Helper/Settings.php:193
|
871 |
+
msgid "Error"
|
872 |
+
msgstr "Errore"
|
873 |
+
|
874 |
+
#: src/Mollie/WC/Helper/Data.php:613
|
875 |
+
msgid "Item #%s stock incremented from %s to %s."
|
876 |
+
msgstr "Articolo #%s giacenza incrementata da %s a %s."
|
877 |
+
|
878 |
+
#: src/Mollie/WC/Gateway/Sofort.php:33
|
879 |
+
msgid "SOFORT Banking"
|
880 |
+
msgstr "SOFORT Banking"
|
881 |
+
|
882 |
+
#: src/Mollie/WC/Gateway/Paysafecard.php:20
|
883 |
+
msgid "paysafecard"
|
884 |
+
msgstr "paysafecard"
|
885 |
+
|
886 |
+
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
887 |
+
#. email, placeholder 3: PayPal transaction ID
|
888 |
+
#: src/Mollie/WC/Gateway/PayPal.php:64
|
889 |
+
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
890 |
+
msgstr "Pagamento completato da <strong>%s</strong> - %s (ID transazione PayPal: %s)"
|
891 |
+
|
892 |
+
#: src/Mollie/WC/Gateway/PayPal.php:33
|
893 |
+
msgid "PayPal"
|
894 |
+
msgstr "PayPal"
|
895 |
+
|
896 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
897 |
+
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
898 |
+
#. drop down
|
899 |
+
#: src/Mollie/WC/Gateway/Ideal.php:77 src/Mollie/WC/Gateway/Kbc.php:77
|
900 |
+
msgid "Select your bank"
|
901 |
+
msgstr "Seleziona la tua banca"
|
902 |
+
|
903 |
+
#: src/Mollie/WC/Gateway/Ideal.php:61
|
904 |
+
msgid "iDEAL"
|
905 |
+
msgstr "iDEAL"
|
906 |
+
|
907 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:42
|
908 |
+
msgid "SEPA Direct Debit"
|
909 |
+
msgstr "Addebito diretto SEPA"
|
910 |
+
|
911 |
+
#. translators: Placeholder 1: card holder
|
912 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:85
|
913 |
+
msgid "Payment completed by <strong>%s</strong>"
|
914 |
+
msgstr "Pagamento completato da <strong>%s</strong>"
|
915 |
+
|
916 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:34
|
917 |
+
msgid "Credit card"
|
918 |
+
msgstr "Carta di credito"
|
919 |
+
|
920 |
+
#: src/Mollie/WC/Gateway/Belfius.php:33
|
921 |
+
msgid "Belfius Direct Net"
|
922 |
+
msgstr "Belfius Direct Net"
|
923 |
+
|
924 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:220
|
925 |
+
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
926 |
+
msgstr "Il pagamento scadrà il <strong>%s</strong>. Assicurati di effettuare il bonifico per l’importo totale prima di questa data."
|
927 |
+
|
928 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:213
|
929 |
+
msgid "The payment will expire on <strong>%s</strong>."
|
930 |
+
msgstr "Il pagamento scadrà il <strong>%s</strong>."
|
931 |
+
|
932 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
933 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
934 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
935 |
+
msgid "Please provide the payment reference <strong>%s</strong>"
|
936 |
+
msgstr "Ti preghiamo di fornire il riferimento del pagamento <strong>%s</strong>"
|
937 |
+
|
938 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
939 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
940 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:193
|
941 |
+
msgid "Payment reference: %s"
|
942 |
+
msgstr "Riferimento del pagamento: %s"
|
943 |
+
|
944 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
945 |
+
msgid "BIC: %s"
|
946 |
+
msgstr "BIC: %s"
|
947 |
+
|
948 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:187
|
949 |
+
msgid "IBAN: <strong>%s</strong>"
|
950 |
+
msgstr "IBAN: <strong>%s</strong>"
|
951 |
+
|
952 |
+
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
953 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:186
|
954 |
+
msgid "Beneficiary: %s"
|
955 |
+
msgstr "Beneficiario: %s"
|
956 |
+
|
957 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:182
|
958 |
+
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
959 |
+
msgstr "Si prega di completare il pagamento trasferendo l'importo totale sul seguente conto bancario:"
|
960 |
+
|
961 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:122
|
962 |
+
msgid "Bank Transfer"
|
963 |
+
msgstr "Bonifico bancario"
|
964 |
+
|
965 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
966 |
+
msgid "Disabled"
|
967 |
+
msgstr "Disabilitato"
|
968 |
+
|
969 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:37
|
970 |
+
msgid "Number of days after the payment will expire. Default <code>%d</code> days"
|
971 |
+
msgstr "Numero di giorni dopo il quale il pagamento scadrà. Giorni <code>%d</code> predefiniti"
|
972 |
+
|
973 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:35
|
974 |
+
msgid "Expiry date"
|
975 |
+
msgstr "Data di scadenza"
|
976 |
+
|
977 |
+
#. translators: Placeholder 1: payment method
|
978 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1508
|
979 |
+
msgid "Payment completed with <strong>%s</strong>"
|
980 |
+
msgstr "Pagamento completato con <strong>%s</strong>"
|
981 |
+
|
982 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1501
|
983 |
+
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."
|
984 |
+
msgstr "Non abbiamo ricevuto uno stato del pagamento definito. Riceverai un'e-mail non appena riceveremo una conferma della banca/dell’operatore commerciale."
|
985 |
+
|
986 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1496
|
987 |
+
msgid "We have not received a definite payment status."
|
988 |
+
msgstr "Non abbiamo ricevuto uno stato del pagamento definito."
|
989 |
+
|
990 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1271
|
991 |
+
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
992 |
+
msgstr "Hai annullato il tuo pagamento. Completa l’ordine con una modalità di pagamento differente."
|
993 |
+
|
994 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Payment/Payment.php:513
|
996 |
+
msgid "%s payment expired (%s)."
|
997 |
+
msgstr "%s pagamento scaduto (%s)."
|
998 |
+
|
999 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1000 |
+
#: src/Mollie/WC/Payment/Order.php:295 src/Mollie/WC/Payment/Payment.php:241
|
1001 |
+
msgid "Order completed using %s payment (%s)."
|
1002 |
+
msgstr "Ordine completato utilizzando il %s pagamento (%s)."
|
1003 |
+
|
1004 |
+
#. translators: Placeholder 1: Payment method title
|
1005 |
+
#: src/Mollie/WC/Gateway/Abstract.php:678
|
1006 |
+
msgid "Could not create %s payment."
|
1007 |
+
msgstr "Non è stato possibile creare %s il pagamento."
|
1008 |
+
|
1009 |
+
#: src/Mollie/WC/Payment/Order.php:297 src/Mollie/WC/Payment/Order.php:368
|
1010 |
+
#: src/Mollie/WC/Payment/Order.php:440 src/Mollie/WC/Payment/Order.php:550
|
1011 |
+
#: src/Mollie/WC/Payment/Order.php:608 src/Mollie/WC/Payment/Order.php:632
|
1012 |
+
#: src/Mollie/WC/Payment/Order.php:669 src/Mollie/WC/Payment/Order.php:710
|
1013 |
+
#: src/Mollie/WC/Payment/Payment.php:243 src/Mollie/WC/Payment/Payment.php:353
|
1014 |
+
#: src/Mollie/WC/Payment/Payment.php:411 src/Mollie/WC/Payment/Payment.php:434
|
1015 |
+
#: src/Mollie/WC/Payment/Payment.php:474 src/Mollie/WC/Payment/Payment.php:515
|
1016 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1017 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1018 |
+
#: src/Mollie/WC/Gateway/Abstract.php:656
|
1019 |
+
#: src/Mollie/WC/Gateway/Abstract.php:938
|
1020 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1167
|
1021 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1208
|
1022 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1597
|
1023 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:466
|
1024 |
+
msgid "test mode"
|
1025 |
+
msgstr "modalità di prova"
|
1026 |
+
|
1027 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1028 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1029 |
+
#: src/Mollie/WC/Gateway/Abstract.php:654
|
1030 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1031 |
+
msgid "%s payment started (%s)."
|
1032 |
+
msgstr "%s pagamento avviato (%s)."
|
1033 |
+
|
1034 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1035 |
+
#: src/Mollie/WC/Gateway/Abstract.php:644
|
1036 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1037 |
+
msgid "Awaiting payment confirmation."
|
1038 |
+
msgstr "In attesa della conferma del pagamento."
|
1039 |
+
|
1040 |
+
#: src/Mollie/WC/Gateway/Abstract.php:402
|
1041 |
+
msgid "Could not load order %s"
|
1042 |
+
msgstr "Non è stato possibile caricare l’ordine %s"
|
1043 |
+
|
1044 |
+
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1045 |
+
#. be replaced by a link to the Mollie profile
|
1046 |
+
#: src/Mollie/WC/Gateway/Abstract.php:238
|
1047 |
+
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1048 |
+
msgstr "%s non abilitato nel tuo profilo Mollie. Puoi abilitarlo modificando il tuo %sprofilo Mollie%s."
|
1049 |
+
|
1050 |
+
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1051 |
+
#. setting page
|
1052 |
+
#: src/Mollie/WC/Gateway/Abstract.php:226
|
1053 |
+
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1054 |
+
msgstr "Nessuna chiave API fornita. Per prima cosa, ti preghiamo di %simpostare la tua chiave API Mollie%s."
|
1055 |
+
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:181
|
1057 |
+
msgid "Gateway Disabled"
|
1058 |
+
msgstr "Gateway disabilitato"
|
1059 |
+
|
1060 |
+
#: src/Mollie/WC/Helper/Settings.php:256 src/Mollie/WC/Gateway/Abstract.php:224
|
1061 |
+
msgid "Test mode enabled."
|
1062 |
+
msgstr "Modalità di prova abilitata."
|
1063 |
+
|
1064 |
+
#: src/Mollie/WC/Gateway/Abstract.php:143
|
1065 |
+
msgid "Hold Stock (minutes)"
|
1066 |
+
msgstr "Mantieni la giacenza (minuti)"
|
1067 |
+
|
1068 |
+
#: src/Mollie/WC/Gateway/Abstract.php:141
|
1069 |
+
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."
|
1070 |
+
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."
|
1071 |
+
|
1072 |
+
#: src/Mollie/WC/Helper/Settings.php:428 src/Mollie/WC/Gateway/Abstract.php:135
|
1073 |
+
msgid "default"
|
1074 |
+
msgstr "predefinito"
|
1075 |
+
|
1076 |
+
#: src/Mollie/WC/Gateway/Abstract.php:132
|
1077 |
+
msgid "Initial order status"
|
1078 |
+
msgstr "Stato iniziale dell’ordine"
|
1079 |
+
|
1080 |
+
#: src/Mollie/WC/Gateway/Abstract.php:123
|
1081 |
+
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1082 |
+
msgstr "Descrizione del metodo di pagamento che il cliente vedrà sul tuo checkout. Predefinito <code>%s</code>"
|
1083 |
+
|
1084 |
+
#: src/Mollie/WC/Gateway/Abstract.php:121
|
1085 |
+
msgid "Description"
|
1086 |
+
msgstr "Descrizione"
|
1087 |
+
|
1088 |
+
#: src/Mollie/WC/Gateway/Abstract.php:117
|
1089 |
+
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1090 |
+
msgstr "Mostra logo sulla pagina del checkout. Predefinito <code>abilitato</code>"
|
1091 |
+
|
1092 |
+
#: src/Mollie/WC/Gateway/Abstract.php:115
|
1093 |
+
msgid "Display logo"
|
1094 |
+
msgstr "Mostra logo"
|
1095 |
+
|
1096 |
+
#: src/Mollie/WC/Gateway/Abstract.php:110
|
1097 |
+
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1098 |
+
msgstr "Questo controlla il titolo che l’utente vede durante al momento dell’acquisto. Predefinito <code>%s</code>"
|
1099 |
+
|
1100 |
+
#: src/Mollie/WC/Gateway/Abstract.php:108
|
1101 |
+
msgid "Title"
|
1102 |
+
msgstr "Titolo"
|
1103 |
+
|
1104 |
+
#: src/Mollie/WC/Gateway/Abstract.php:104
|
1105 |
+
msgid "Enable %s"
|
1106 |
+
msgstr "Abilita %s"
|
1107 |
+
|
1108 |
+
#: src/Mollie/WC/Gateway/Abstract.php:102
|
1109 |
+
msgid "Enable/Disable"
|
1110 |
+
msgstr "Abilita/Disabilita"
|
languages/mollie-payments-for-woocommerce-nl_BE.mo
ADDED
Binary file
|
languages/mollie-payments-for-woocommerce-nl_BE.po
ADDED
@@ -0,0 +1,1110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Development (trunk) in Dutch (Belgium)
|
2 |
+
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Development (trunk) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2020-05-20 14:48+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\n"
|
11 |
+
"Language: nl_BE\n"
|
12 |
+
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Development (trunk)\n"
|
13 |
+
|
14 |
+
#: inc/settings/mollie_components_enabler.php:7
|
15 |
+
msgid "Enable the Mollie Components for this Gateway"
|
16 |
+
msgstr "Activeer de Mollie-componenten voor deze gateway"
|
17 |
+
|
18 |
+
#: inc/settings/mollie_components_enabler.php:6
|
19 |
+
msgid "Enable Mollie Components"
|
20 |
+
msgstr "Activeer Mollie-componenten"
|
21 |
+
|
22 |
+
#: inc/settings/mollie_components.php:157
|
23 |
+
msgctxt "Mollie Components Settings"
|
24 |
+
msgid "Background Color for invalid input."
|
25 |
+
msgstr "Achtergrondkleur voor ongeldige invoer"
|
26 |
+
|
27 |
+
#: inc/settings/mollie_components.php:146
|
28 |
+
msgctxt "Mollie Components Settings"
|
29 |
+
msgid "Text Color for invalid input."
|
30 |
+
msgstr "Tekstkleur voor ongeldige invoer"
|
31 |
+
|
32 |
+
#: inc/settings/mollie_components.php:136
|
33 |
+
msgctxt "Mollie Components Settings"
|
34 |
+
msgid "Invalid Status Styles"
|
35 |
+
msgstr "Ongeldige statusstijlen"
|
36 |
+
|
37 |
+
#: inc/settings/mollie_components.php:122
|
38 |
+
msgctxt "Mollie Components Settings"
|
39 |
+
msgid "Full Size Kana"
|
40 |
+
msgstr "Volledige grootte Kana"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_components.php:117
|
43 |
+
msgctxt "Mollie Components Settings"
|
44 |
+
msgid "Full Width"
|
45 |
+
msgstr "Volledige breedte"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_components.php:112
|
48 |
+
msgctxt "Mollie Components Settings"
|
49 |
+
msgid "Lowercase"
|
50 |
+
msgstr "Kleine letters"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_components.php:107
|
53 |
+
msgctxt "Mollie Components Settings"
|
54 |
+
msgid "Uppercase"
|
55 |
+
msgstr "Hoofdletters"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_components.php:102
|
58 |
+
msgctxt "Mollie Components Settings"
|
59 |
+
msgid "Capitalize"
|
60 |
+
msgstr "In hoofdletters schrijven"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_components.php:97
|
63 |
+
msgctxt "Mollie Components Settings"
|
64 |
+
msgid "None"
|
65 |
+
msgstr "Geen"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_components.php:94
|
68 |
+
msgctxt "Mollie Components Settings"
|
69 |
+
msgid "Transform Text"
|
70 |
+
msgstr "Tekstwijziging"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_components.php:88
|
73 |
+
msgctxt "Mollie Components Settings"
|
74 |
+
msgid "Justify"
|
75 |
+
msgstr "Uitvullen"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_components.php:87
|
78 |
+
msgctxt "Mollie Components Settings"
|
79 |
+
msgid "Center"
|
80 |
+
msgstr "Centreren"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_components.php:86
|
83 |
+
msgctxt "Mollie Components Settings"
|
84 |
+
msgid "Right"
|
85 |
+
msgstr "Rechts"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_components.php:85
|
88 |
+
msgctxt "Mollie Components Settings"
|
89 |
+
msgid "Left"
|
90 |
+
msgstr "Links"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_components.php:82
|
93 |
+
msgctxt "Mollie Components Settings"
|
94 |
+
msgid "Align Text"
|
95 |
+
msgstr "Tekst uitlijnen"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_components.php:72
|
98 |
+
msgctxt "Mollie Components Settings"
|
99 |
+
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
100 |
+
msgstr "Voeg vulling toe aan de componenten. Bv. `16px 16px 16px 16px` en `em`, `px`, `rem` eenheden zijn toegestaan."
|
101 |
+
|
102 |
+
#: inc/settings/mollie_components.php:71
|
103 |
+
msgctxt "Mollie Components Settings"
|
104 |
+
msgid "Padding"
|
105 |
+
msgstr "Vulling"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_components.php:62
|
108 |
+
msgctxt "Mollie Components Settings"
|
109 |
+
msgid "Line Height"
|
110 |
+
msgstr "Regelhoogte"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_components.php:56
|
113 |
+
msgctxt "Mollie Components Settings"
|
114 |
+
msgid "Letter Spacing"
|
115 |
+
msgstr "Letterafstand"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_components.php:50
|
118 |
+
msgctxt "Mollie Components Settings"
|
119 |
+
msgid "Bold"
|
120 |
+
msgstr "Vet"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_components.php:49
|
123 |
+
msgctxt "Mollie Components Settings"
|
124 |
+
msgid "Regular"
|
125 |
+
msgstr "Normaal"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_components.php:48
|
128 |
+
msgctxt "Mollie Components Settings"
|
129 |
+
msgid "Lighter"
|
130 |
+
msgstr "Lichter"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_components.php:45
|
133 |
+
msgctxt "Mollie Components Settings"
|
134 |
+
msgid "Font Weight"
|
135 |
+
msgstr "Lettergewicht"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_components.php:35
|
138 |
+
msgctxt "Mollie Components Settings"
|
139 |
+
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
140 |
+
msgstr "De lettergrootte bepaalt de grootte van het lettertype in de componenten. `em`, `px`, `rem` eenheden zijn toegestaan."
|
141 |
+
|
142 |
+
#: inc/settings/mollie_components.php:34
|
143 |
+
msgctxt "Mollie Components Settings"
|
144 |
+
msgid "Font Size"
|
145 |
+
msgstr "Lettergrootte"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_components.php:28
|
148 |
+
msgctxt "Mollie Components Settings"
|
149 |
+
msgid "Placeholder Color"
|
150 |
+
msgstr "Kleur van de plaatshouder"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145
|
153 |
+
msgctxt "Mollie Components Settings"
|
154 |
+
msgid "Text Color"
|
155 |
+
msgstr "Tekstkleur"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156
|
158 |
+
msgctxt "Mollie Components Settings"
|
159 |
+
msgid "Background Color"
|
160 |
+
msgstr "Achtergrondkleur"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_components.php:7
|
163 |
+
msgctxt "Mollie Components Settings"
|
164 |
+
msgid "Base Styles"
|
165 |
+
msgstr "Basisstijlen"
|
166 |
+
|
167 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2056
|
168 |
+
msgid "Secure payments provided by "
|
169 |
+
msgstr "Beveiligde betalingen verschaft door "
|
170 |
+
|
171 |
+
#: src/Mollie/WC/Plugin.php:431
|
172 |
+
msgid "An unknown error occurred, please check the card fields."
|
173 |
+
msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden."
|
174 |
+
|
175 |
+
#: src/Mollie/WC/Plugin.php:424
|
176 |
+
msgid "Verification Code"
|
177 |
+
msgstr "Verificatiecode"
|
178 |
+
|
179 |
+
#: src/Mollie/WC/Plugin.php:420
|
180 |
+
msgid "Expiry Date"
|
181 |
+
msgstr "Vervaldatum"
|
182 |
+
|
183 |
+
#: src/Mollie/WC/Plugin.php:412
|
184 |
+
msgid "Card Holder"
|
185 |
+
msgstr "Kaarthouder"
|
186 |
+
|
187 |
+
#: src/Mollie/WC/Settings/Page/Components.php:10
|
188 |
+
msgid "Mollie Components"
|
189 |
+
msgstr "Mollie-componenten"
|
190 |
+
|
191 |
+
#: src/Mollie/WC/Plugin.php:416
|
192 |
+
msgid "Card Number"
|
193 |
+
msgstr "Kaartnummer"
|
194 |
+
|
195 |
+
#: src/Mollie/WC/Plugin.php:306
|
196 |
+
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
197 |
+
msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie."
|
198 |
+
|
199 |
+
#: src/Mollie/WC/Plugin.php:288
|
200 |
+
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
201 |
+
msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie."
|
202 |
+
|
203 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
204 |
+
msgid "Empty WooCommerce order items or mollie order lines."
|
205 |
+
msgstr "Lege Woocommerce bestelartikelen of Mollie-bestellijnen."
|
206 |
+
|
207 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
208 |
+
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
209 |
+
msgstr "Onmogelijk om de bestelartikel-id met betrekking tot het afstandsartikel terug te halen: %1$s Probeer een terugbetaling te doen per bedrag."
|
210 |
+
|
211 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
212 |
+
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
213 |
+
msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld."
|
214 |
+
|
215 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:115
|
216 |
+
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."
|
217 |
+
msgstr "Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag of hoeveelheid van ten minste één bestelregel. In plaats daarvan aan het proberen dit te verwerken als een terugbetaling van bedrag."
|
218 |
+
|
219 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
220 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:159
|
221 |
+
msgid "Order completed using %1$s payment (%2$s)."
|
222 |
+
msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)."
|
223 |
+
|
224 |
+
#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer
|
225 |
+
#. Account number
|
226 |
+
#: src/Mollie/WC/Gateway/MyBank.php:73
|
227 |
+
msgid "Payment completed by <strong>%1$s</strong> - %2$s"
|
228 |
+
msgstr "Betaling voltooid met <strong>%1$s</strong> - %2$s"
|
229 |
+
|
230 |
+
#: src/Mollie/WC/Gateway/MyBank.php:44
|
231 |
+
msgid "To accept payments via MyBank"
|
232 |
+
msgstr "Om betalingen te accepteren via MyBank"
|
233 |
+
|
234 |
+
#: src/Mollie/WC/Gateway/MyBank.php:36
|
235 |
+
msgid "MyBank"
|
236 |
+
msgstr "MyBank"
|
237 |
+
|
238 |
+
#: src/Mollie/WC/Gateway/Applepay.php:45
|
239 |
+
msgid "To accept payments via Apple Pay"
|
240 |
+
msgstr "Om betalingen te accepteren via Apple Pay"
|
241 |
+
|
242 |
+
#: src/Mollie/WC/Gateway/Applepay.php:37
|
243 |
+
msgid "Apple Pay"
|
244 |
+
msgstr "Apple Pay"
|
245 |
+
|
246 |
+
#. translators: Placeholder 1: customer billing email
|
247 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:64
|
248 |
+
msgid "Payment completed by <strong>%s</strong>."
|
249 |
+
msgstr "Betaling voltooid met <strong>%s</strong>."
|
250 |
+
|
251 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
252 |
+
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
253 |
+
msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail van de klant vereist."
|
254 |
+
|
255 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
256 |
+
msgid "Przelewy24"
|
257 |
+
msgstr "Przelewy24"
|
258 |
+
|
259 |
+
#: src/Mollie/WC/Helper/Status.php:89 mollie-payments-for-WooCommerce.php:83
|
260 |
+
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."
|
261 |
+
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."
|
262 |
+
|
263 |
+
#: src/Mollie/WC/Payment/Order.php:1029
|
264 |
+
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
265 |
+
msgstr "Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s."
|
266 |
+
|
267 |
+
#: src/Mollie/WC/Payment/Order.php:946
|
268 |
+
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
269 |
+
msgstr "%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s."
|
270 |
+
|
271 |
+
#: src/Mollie/WC/Payment/Order.php:930
|
272 |
+
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
273 |
+
msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie."
|
274 |
+
|
275 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
276 |
+
#: src/Mollie/WC/Payment/Order.php:438
|
277 |
+
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!"
|
278 |
+
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!"
|
279 |
+
|
280 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
281 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1206
|
282 |
+
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use them)."
|
283 |
+
msgstr "%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet, gelieve te beoordelen (en productvoorraden aan te passen als je dit gebruikt)."
|
284 |
+
|
285 |
+
#: src/Mollie/WC/Helper/Settings.php:624
|
286 |
+
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
287 |
+
msgstr "Om Klarna-betalingen via Mollie te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn. Controleer of dit het geval is."
|
288 |
+
|
289 |
+
#: src/Mollie/WC/Payment/Payment.php:39
|
290 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
291 |
+
msgid "Order"
|
292 |
+
msgstr "Bestelling"
|
293 |
+
|
294 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
295 |
+
#: src/Mollie/WC/Payment/Payment.php:351
|
296 |
+
msgid "%s payment (%s) cancelled ."
|
297 |
+
msgstr "%s betaling (%s) geannuleerd."
|
298 |
+
|
299 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
300 |
+
#: src/Mollie/WC/Payment/Order.php:708
|
301 |
+
msgid "%s order (%s) expired ."
|
302 |
+
msgstr "%s bestelling (%s) verlopen."
|
303 |
+
|
304 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
305 |
+
#: src/Mollie/WC/Payment/Order.php:667
|
306 |
+
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
307 |
+
msgstr "%s bestelling verlopen (%s) maar bestelling niet geannuleerd wegens een andere hangende betaling (%s)."
|
308 |
+
|
309 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
310 |
+
#: src/Mollie/WC/Payment/Order.php:548
|
311 |
+
msgid "%s order (%s) cancelled ."
|
312 |
+
msgstr "%s bestelling (%s) geannuleerd."
|
313 |
+
|
314 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
315 |
+
#: src/Mollie/WC/Payment/Order.php:366
|
316 |
+
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."
|
317 |
+
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."
|
318 |
+
|
319 |
+
#: src/Mollie/WC/Helper/Settings.php:649
|
320 |
+
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
321 |
+
msgstr "Om Klarna-betalingen via Mollie te accepteren, moet je ten minste WooCommerce 3.0 of hoger gebruiken. Nu gebruik je versie %s."
|
322 |
+
|
323 |
+
#: src/Mollie/WC/Helper/Settings.php:456
|
324 |
+
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."
|
325 |
+
msgstr "Het verzenden van een taal (of locatie) is vereist. De optie 'Automatisch verzenden van WordPress-taal' zal proberen de taal van de klant in WordPress te krijgen (en respecteert meertalige plugins) en deze te converteren naar een formaat dat Mollie begrijpt. Als dit niet lukt, of als de taal niet wordt ondersteund, zal teruggegaan worden naar Amerikaans-Engels. Je kunt ook een van de momenteel door Mollie ondersteunde locaties selecteren, die dan voor alle klanten zal worden gebruikt."
|
326 |
+
|
327 |
+
#: src/Mollie/WC/Helper/Settings.php:425
|
328 |
+
msgid "Automatically send WordPress language"
|
329 |
+
msgstr "Automatisch verzenden van WordPress-taal"
|
330 |
+
|
331 |
+
#: src/Mollie/WC/Helper/Settings.php:417
|
332 |
+
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."
|
333 |
+
msgstr "Status voor bestellingen wanneer een betaling (niet een Mollie-besteling via de Bestellingen API) wordt geannuleerd. Standaard: hangende. Bestellingen met status Hangende kunnen met een andere betaalmethode worden betaald, klanten kunnen opnieuw proberen. Geannuleerde bestellingen zijn definitief. Stel dit in op Geannuleerd als je maar één betaalmethode hebt of als je niet wilt dat klanten opnieuw proberen te betalen met een andere betaalmethode. Dit is niet van toepassing voor betalingen voor bestellingen via de nieuwe Orders-API en Klarna-betalingen."
|
334 |
+
|
335 |
+
#: src/Mollie/WC/Helper/OrderLines.php:407
|
336 |
+
msgid "Shipping"
|
337 |
+
msgstr "Verzending"
|
338 |
+
|
339 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
340 |
+
msgid "Klarna Slice it"
|
341 |
+
msgstr "Klarna Slice it"
|
342 |
+
|
343 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
344 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
345 |
+
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
346 |
+
msgstr "Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn."
|
347 |
+
|
348 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
349 |
+
msgid "Klarna Pay later"
|
350 |
+
msgstr "Klarna betaal later"
|
351 |
+
|
352 |
+
#: src/Mollie/WC/Helper/Status.php:131
|
353 |
+
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
354 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn."
|
355 |
+
|
356 |
+
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
357 |
+
#. version
|
358 |
+
#: src/Mollie/WC/Helper/Status.php:104
|
359 |
+
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
360 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, jij hebt PHP %s. Installeer de upgrade en bekijk %sdeze FAQ%s"
|
361 |
+
|
362 |
+
#: src/Mollie/WC/Helper/Settings.php:600
|
363 |
+
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."
|
364 |
+
msgstr "Je hebt de WooCommerce standaard Direct Bank Transfer (BACS) betalingsgateway geactiveerd in WooCommerce. Mollie adviseert dringend om alleen Bank Transfer via Mollie te gebruiken en de standaard WooCommerce BACS betalingsgateway uit te schakelen om mogelijke conflicten te voorkomen."
|
365 |
+
|
366 |
+
#: src/Mollie/WC/Helper/Settings.php:576
|
367 |
+
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."
|
368 |
+
msgstr "Je hebt WooCommerce Abonnementen geactiveerd, maar geen SEPA-incasso. Activeer SEPA-incasso als je klanten wilt toestaan om abonnementen met iDEAL en/of andere \"eerste\" betaalmethoden te betalen."
|
369 |
+
|
370 |
+
#: src/Mollie/WC/Helper/Settings.php:453
|
371 |
+
msgid "Lithuanian"
|
372 |
+
msgstr "Litouws"
|
373 |
+
|
374 |
+
#: src/Mollie/WC/Helper/Settings.php:452
|
375 |
+
msgid "Latvian"
|
376 |
+
msgstr "Lets"
|
377 |
+
|
378 |
+
#: src/Mollie/WC/Helper/Settings.php:451
|
379 |
+
msgid "Polish"
|
380 |
+
msgstr "Pools"
|
381 |
+
|
382 |
+
#: src/Mollie/WC/Helper/Settings.php:450
|
383 |
+
msgid "Hungarian"
|
384 |
+
msgstr "Hongaars"
|
385 |
+
|
386 |
+
#: src/Mollie/WC/Helper/Settings.php:449
|
387 |
+
msgid "Icelandic"
|
388 |
+
msgstr "IJslands"
|
389 |
+
|
390 |
+
#: src/Mollie/WC/Helper/Settings.php:448
|
391 |
+
msgid "Danish"
|
392 |
+
msgstr "Deens"
|
393 |
+
|
394 |
+
#: src/Mollie/WC/Helper/Settings.php:447
|
395 |
+
msgid "Finnish"
|
396 |
+
msgstr "Fins"
|
397 |
+
|
398 |
+
#: src/Mollie/WC/Helper/Settings.php:446
|
399 |
+
msgid "Swedish"
|
400 |
+
msgstr "Zweeds"
|
401 |
+
|
402 |
+
#: src/Mollie/WC/Helper/Settings.php:445
|
403 |
+
msgid "Norwegian"
|
404 |
+
msgstr "Noors"
|
405 |
+
|
406 |
+
#: src/Mollie/WC/Helper/Settings.php:444
|
407 |
+
msgid "Italian"
|
408 |
+
msgstr "Italiaans"
|
409 |
+
|
410 |
+
#: src/Mollie/WC/Helper/Settings.php:443
|
411 |
+
msgid "Portuguese"
|
412 |
+
msgstr "Portugees"
|
413 |
+
|
414 |
+
#: src/Mollie/WC/Helper/Settings.php:442
|
415 |
+
msgid "Catalan"
|
416 |
+
msgstr "Spaans (Catalaans)"
|
417 |
+
|
418 |
+
#: src/Mollie/WC/Helper/Settings.php:440
|
419 |
+
msgid "Swiss German"
|
420 |
+
msgstr "Zwitserduits"
|
421 |
+
|
422 |
+
#: src/Mollie/WC/Helper/Settings.php:439
|
423 |
+
msgid "Austrian German"
|
424 |
+
msgstr "Oostenrijks-Duits"
|
425 |
+
|
426 |
+
#: src/Mollie/WC/Helper/Api.php:41
|
427 |
+
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."
|
428 |
+
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."
|
429 |
+
|
430 |
+
#: src/Mollie/WC/Helper/Api.php:39
|
431 |
+
msgid "No API key provided. Please set your Mollie API keys below."
|
432 |
+
msgstr "Geen API-sleutel verschaft. Plaats je Mollie API-sleutels hieronder."
|
433 |
+
|
434 |
+
#: src/Mollie/WC/Gateway/Giropay.php:29
|
435 |
+
msgid "Giropay"
|
436 |
+
msgstr "Giropay"
|
437 |
+
|
438 |
+
#: src/Mollie/WC/Gateway/EPS.php:29
|
439 |
+
msgid "EPS"
|
440 |
+
msgstr "EPS"
|
441 |
+
|
442 |
+
#. translators: Placeholder 1: Payment method title
|
443 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:325
|
444 |
+
msgid "Could not create %s renewal payment."
|
445 |
+
msgstr "Kon geen %s betalingshernieuwing aanmaken."
|
446 |
+
|
447 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:282
|
448 |
+
msgid "The customer (%s) does not have a valid mandate."
|
449 |
+
msgstr "De klant (%s) heeft geen geldig mandaat."
|
450 |
+
|
451 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:273
|
452 |
+
msgid "The customer (%s) could not be used or found. "
|
453 |
+
msgstr "De klant (%s) kon niet gebruikt of gevonden worden. "
|
454 |
+
|
455 |
+
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
456 |
+
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
457 |
+
#. placeholder 5: refund ID
|
458 |
+
#: src/Mollie/WC/Payment/Payment.php:595
|
459 |
+
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
460 |
+
msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s"
|
461 |
+
|
462 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1137
|
463 |
+
msgid "New chargeback %s processed! Order note and order status updated."
|
464 |
+
msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt."
|
465 |
+
|
466 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1038
|
467 |
+
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
468 |
+
msgstr "Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, maar bestelling niet geüpdatet."
|
469 |
+
|
470 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
471 |
+
#: src/Mollie/WC/Payment/Order.php:630 src/Mollie/WC/Payment/Payment.php:432
|
472 |
+
msgid "%s payment failed via Mollie (%s)."
|
473 |
+
msgstr "%s betaling mislukt via Mollie (%s)."
|
474 |
+
|
475 |
+
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
476 |
+
#. Mollie currencies
|
477 |
+
#: src/Mollie/WC/Gateway/Abstract.php:250
|
478 |
+
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
479 |
+
msgstr "Huidige shopvaluta %s niet ondersteund door Mollie. Lees meer over %sondersteunde valuta's en betaalmethoden.%s "
|
480 |
+
|
481 |
+
#: mollie-payments-for-WooCommerce.php:105
|
482 |
+
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."
|
483 |
+
msgstr "Mollie-betalingen voor WooCommerce 4.0 vereisen PHP 5.6 of hoger. Jouw PHP-versie is verouderd. Upgrade je PHP-versie en bekijk %sdeze FAQ%s."
|
484 |
+
|
485 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
486 |
+
#: src/Mollie/WC/Payment/Order.php:540 src/Mollie/WC/Payment/Order.php:701
|
487 |
+
#: src/Mollie/WC/Payment/Payment.php:343 src/Mollie/WC/Payment/Payment.php:506
|
488 |
+
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
489 |
+
msgstr "Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de bestellingsstatus is niet geüpdatet."
|
490 |
+
|
491 |
+
#. translators: Placeholder 1: enabled or disabled
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:466
|
493 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
494 |
+
msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor Single Click Payments? Standaard <code>%s</code>. Vereist als WooCommerce Abonnementen worden gebruikt!"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1289
|
497 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1297
|
498 |
+
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
499 |
+
msgstr "Je betaling is niet gelukt. Vervolledig je bestelling met een andere betaalmethode."
|
500 |
+
|
501 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
502 |
+
#: src/Mollie/WC/Payment/Order.php:606 src/Mollie/WC/Payment/Payment.php:409
|
503 |
+
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
504 |
+
msgstr "%s vernieuwing van betaling mislukt via Mollie (%s). Je moet de betaling handmatig controleren en productvoorraden aanpassen als je deze gebruikt."
|
505 |
+
|
506 |
+
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
507 |
+
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
508 |
+
msgid "Bancontact"
|
509 |
+
msgstr "Bancontact"
|
510 |
+
|
511 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
512 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1595
|
513 |
+
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."
|
514 |
+
msgstr "%s betaling nog hangende (%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."
|
515 |
+
|
516 |
+
#: src/Mollie/WC/Gateway/Abstract.php:469
|
517 |
+
msgid "Failed switching subscriptions, no valid mandate."
|
518 |
+
msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat."
|
519 |
+
|
520 |
+
#: src/Mollie/WC/Gateway/Abstract.php:468
|
521 |
+
msgid "Failed switching subscriptions, no valid mandate.found. Place a completely new order to change your subscription."
|
522 |
+
msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats een volledig nieuwe bestelling om je abonnement te wijzigen."
|
523 |
+
|
524 |
+
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
525 |
+
msgid "ING Home'Pay"
|
526 |
+
msgstr "ING Home'Pay"
|
527 |
+
|
528 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
529 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1165
|
530 |
+
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use them)."
|
531 |
+
msgstr "%s betaling teruggevorderd via Mollie (%s). Je moet de betaling handmatig controleren (en productvoorraden aanpassen als je dit gebruikt)."
|
532 |
+
|
533 |
+
#: src/Mollie/WC/Gateway/Kbc.php:41
|
534 |
+
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."
|
535 |
+
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."
|
536 |
+
|
537 |
+
#: src/Mollie/WC/Gateway/Kbc.php:34
|
538 |
+
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."
|
539 |
+
msgstr "Als je dit deactiveert, zal een dropdown bij verschillende KBC/CBC-banken niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een KBC/CBC-bank selecteren op de Mollie-betaalpagina na het afrekenen."
|
540 |
+
|
541 |
+
#: src/Mollie/WC/Gateway/Kbc.php:32
|
542 |
+
msgid "Show KBC/CBC banks dropdown"
|
543 |
+
msgstr "Toon KBC/CBC-banken dropdown"
|
544 |
+
|
545 |
+
#: src/Mollie/WC/Gateway/Ideal.php:41
|
546 |
+
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."
|
547 |
+
msgstr "Deze tekst wordt weergegeven als eerste optie in de iDEAL-uitgevers drop-down, als er niets wordt ingevoerd, wordt \"Selecteer uw bank\" weergegeven. Alleen als het bovenstaande ''Toon iDEAL-banken dropdown'' is geactiveerd."
|
548 |
+
|
549 |
+
#: src/Mollie/WC/Gateway/Ideal.php:34
|
550 |
+
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."
|
551 |
+
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."
|
552 |
+
|
553 |
+
#: src/Mollie/WC/Gateway/Ideal.php:32
|
554 |
+
msgid "Show iDEAL banks dropdown"
|
555 |
+
msgstr "Toon iDEAL-banken dropdown"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:40
|
558 |
+
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."
|
559 |
+
msgstr "Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd."
|
560 |
+
|
561 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
562 |
+
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."
|
563 |
+
msgstr "Als je dit deactiveert, zal een dropdown met verschillende cadeaubonnen niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een cadeaubon selecteren op de Mollie-betaalpagina na het afrekenen."
|
564 |
+
|
565 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
566 |
+
msgid "Show gift cards dropdown"
|
567 |
+
msgstr "Toon cadeaubonnen-dropdown"
|
568 |
+
|
569 |
+
#: src/Mollie/WC/Gateway/Abstract.php:457
|
570 |
+
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
571 |
+
msgstr "Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie."
|
572 |
+
|
573 |
+
#: mollie-payments-for-WooCommerce.php:149
|
574 |
+
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"
|
575 |
+
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"
|
576 |
+
|
577 |
+
#: mollie-payments-for-WooCommerce.php:131
|
578 |
+
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"
|
579 |
+
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"
|
580 |
+
|
581 |
+
#: src/Mollie/WC/Helper/Settings.php:415
|
582 |
+
msgid "Cancelled"
|
583 |
+
msgstr "Geannuleerd"
|
584 |
+
|
585 |
+
#: src/Mollie/WC/Helper/Settings.php:414
|
586 |
+
msgid "Pending"
|
587 |
+
msgstr "In behandeling"
|
588 |
+
|
589 |
+
#: src/Mollie/WC/Helper/Settings.php:411
|
590 |
+
msgid "Order status after cancelled payment"
|
591 |
+
msgstr "Bestelstatus na geannuleerde betaling"
|
592 |
+
|
593 |
+
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
594 |
+
#. placeholder 3: consumer BIC
|
595 |
+
#: src/Mollie/WC/Gateway/Sofort.php:64 src/Mollie/WC/Gateway/Ideal.php:121
|
596 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80
|
597 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:172
|
598 |
+
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
599 |
+
msgstr "Betaling voltooid met <strong>%s</strong> (IBAN (ten minste 4 cijfers): %s, BIC: %s)"
|
600 |
+
|
601 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1635
|
602 |
+
msgid "Your order has been cancelled."
|
603 |
+
msgstr "Je bestelling is geannuleerd."
|
604 |
+
|
605 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1604
|
606 |
+
msgid ", payment pending."
|
607 |
+
msgstr ", betaling in behandeling."
|
608 |
+
|
609 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1564
|
610 |
+
msgid "Order cancelled"
|
611 |
+
msgstr "Bestelling geannuleerd"
|
612 |
+
|
613 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
614 |
+
#. status, placeholder 3: payment ID
|
615 |
+
#: src/Mollie/WC/Gateway/Abstract.php:935
|
616 |
+
msgid "%s payment %s (%s), not processed."
|
617 |
+
msgstr "%s betaling %s (%s), niet verwerkt."
|
618 |
+
|
619 |
+
#. translators: Default gift card dropdown description, displayed above issuer
|
620 |
+
#. drop down
|
621 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:76
|
622 |
+
msgid "Select your gift card"
|
623 |
+
msgstr "Selecteer je cadeaubon"
|
624 |
+
|
625 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:60
|
626 |
+
msgid "Gift cards"
|
627 |
+
msgstr "Cadeaubonnen"
|
628 |
+
|
629 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
630 |
+
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."
|
631 |
+
msgstr "SEPA-incasso wordt gebruikt voor terugkerende betalingen met WooCommerce-abonnementen, en wordt niet getoond in de WooCommerce kassa voor reguliere betalingen! Je moet ook iDEAL en/of andere \"eerste\" betaalmethoden activeren als je SEPA-incasso wilt gebruiken."
|
632 |
+
|
633 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
634 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:190
|
635 |
+
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
636 |
+
msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is."
|
637 |
+
|
638 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
639 |
+
#: src/Mollie/WC/Payment/Payment.php:472
|
640 |
+
msgid "%s payment expired (%s) but order not cancelled because of another pending payment (%s)."
|
641 |
+
msgstr "%s betaling verlopen (%s) maar bestelling niet geannuleerd wegens een andere hangende betaling (%s)."
|
642 |
+
|
643 |
+
#: src/subscriptions_status_check_functions.php:195
|
644 |
+
msgid "There are still some subscriptions left, use the tool again!"
|
645 |
+
msgstr "Er zijn nog abonnementen over, gebruik de tool opnieuw!"
|
646 |
+
|
647 |
+
#: src/subscriptions_status_check_functions.php:193
|
648 |
+
msgid "No more subscriptions left to process!"
|
649 |
+
msgstr "Geen abonnementen over om te verwerken!"
|
650 |
+
|
651 |
+
#: src/subscriptions_status_check_functions.php:180
|
652 |
+
msgid "No subscriptions updated in this batch."
|
653 |
+
msgstr "Geen abonnementen geüpdatet in deze batch."
|
654 |
+
|
655 |
+
#: src/subscriptions_status_check_functions.php:156
|
656 |
+
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
657 |
+
msgstr "Abonnement niet geüpdatet omdat er geen geldig mandaat was bij Mollie. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
658 |
+
|
659 |
+
#: src/subscriptions_status_check_functions.php:142
|
660 |
+
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
661 |
+
msgstr "Abonnement geüpdatet naar Geautomatiseerde vernieuwing via Mollie, status ingesteld op Actief. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
662 |
+
|
663 |
+
#: src/subscriptions_status_check_functions.php:36
|
664 |
+
msgid "Check subscriptions status"
|
665 |
+
msgstr "Controleer abonnementenstatus"
|
666 |
+
|
667 |
+
#: src/subscriptions_status_check_functions.php:35
|
668 |
+
msgid "Mollie Subscriptions Status"
|
669 |
+
msgstr "Mollie-abonnementenstatus"
|
670 |
+
|
671 |
+
#: src/subscriptions_status_check_functions.php:30
|
672 |
+
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
673 |
+
msgstr "Controles op abonnementen die verkeerd zijn ingesteld op 'Handmatige vernieuwing'. Lees eerst de "
|
674 |
+
|
675 |
+
#: src/Mollie/WC/Helper/Settings.php:464
|
676 |
+
msgid "Store customer details at Mollie"
|
677 |
+
msgstr "Klantgegevens opslaan bij Mollie"
|
678 |
+
|
679 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
680 |
+
#: src/Mollie/WC/Plugin.php:134
|
681 |
+
msgid "%s payment failed (%s)."
|
682 |
+
msgstr "%s betaling mislukt (%s)."
|
683 |
+
|
684 |
+
#: src/Mollie/WC/Gateway/Kbc.php:61
|
685 |
+
msgid "KBC/CBC Payment Button"
|
686 |
+
msgstr "KBC/CBC Betaalknop"
|
687 |
+
|
688 |
+
#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Giftcard.php:38
|
689 |
+
#: src/Mollie/WC/Gateway/Kbc.php:39
|
690 |
+
msgid "Issuers empty option"
|
691 |
+
msgstr "Optie uitgevers leeg"
|
692 |
+
|
693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:48
|
694 |
+
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."
|
695 |
+
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."
|
696 |
+
|
697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
698 |
+
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
699 |
+
msgstr "Sla Mollie-betaalscherm over wanneer bankoverschrijving is geselecteerd"
|
700 |
+
|
701 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:46
|
702 |
+
msgid "Skip Mollie payment screen"
|
703 |
+
msgstr "Mollie-betaalscherm overslaan"
|
704 |
+
|
705 |
+
#. Description of the plugin
|
706 |
+
msgid "Accept payments in WooCommerce with the official Mollie plugin"
|
707 |
+
msgstr "Accepteer betalingen in WooCommerce met de officiële Mollie-plugin"
|
708 |
+
|
709 |
+
#. Plugin URI of the plugin
|
710 |
+
#. Author URI of the plugin
|
711 |
+
msgid "https://www.mollie.com"
|
712 |
+
msgstr "https://www.mollie.com"
|
713 |
+
|
714 |
+
#. Author of the plugin
|
715 |
+
msgid "Mollie"
|
716 |
+
msgstr "Mollie"
|
717 |
+
|
718 |
+
#. Plugin Name of the plugin
|
719 |
+
msgid "Mollie Payments for WooCommerce"
|
720 |
+
msgstr "Mollie-betalingen voor WooCommerce"
|
721 |
+
|
722 |
+
#: src/Mollie/WC/Plugin.php:780
|
723 |
+
msgid "Logs"
|
724 |
+
msgstr "Logs"
|
725 |
+
|
726 |
+
#: src/Mollie/WC/Helper/Status.php:123
|
727 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
728 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL geactiveerd is. Activeer de 'curl' extensie in je PHP-configuratie."
|
729 |
+
|
730 |
+
#: src/Mollie/WC/Helper/Status.php:116
|
731 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
732 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON geactiveerd is. Activeer de 'json' extensie in je PHP-configuratie."
|
733 |
+
|
734 |
+
#: src/Mollie/WC/Helper/Status.php:80
|
735 |
+
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
736 |
+
msgstr "Mollie API client niet geïnstalleerd. Controleer of de plugin correct is geïnstalleerd."
|
737 |
+
|
738 |
+
#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce
|
739 |
+
#. version, placeholder 3: used WooCommerce version
|
740 |
+
#: src/Mollie/WC/Helper/Status.php:67
|
741 |
+
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
742 |
+
msgstr "De %s plugin vereist ten minste WooCommerce versie %s, jij gebruikt versie %s. Update je WooCommerce plugin."
|
743 |
+
|
744 |
+
#: src/Mollie/WC/Helper/Settings.php:473
|
745 |
+
msgid "Debug Log"
|
746 |
+
msgstr "Debug-log"
|
747 |
+
|
748 |
+
#: src/Mollie/WC/Helper/Settings.php:437
|
749 |
+
msgid "French (Belgium)"
|
750 |
+
msgstr "Frans (België)"
|
751 |
+
|
752 |
+
#: src/Mollie/WC/Helper/Settings.php:436
|
753 |
+
msgid "French"
|
754 |
+
msgstr "Frans"
|
755 |
+
|
756 |
+
#: src/Mollie/WC/Helper/Settings.php:441
|
757 |
+
msgid "Spanish"
|
758 |
+
msgstr "Spaans"
|
759 |
+
|
760 |
+
#: src/Mollie/WC/Helper/Settings.php:438
|
761 |
+
msgid "German"
|
762 |
+
msgstr "Duits"
|
763 |
+
|
764 |
+
#: src/Mollie/WC/Helper/Settings.php:433
|
765 |
+
msgid "English"
|
766 |
+
msgstr "Engels"
|
767 |
+
|
768 |
+
#: src/Mollie/WC/Helper/Settings.php:435
|
769 |
+
msgid "Flemish (Belgium)"
|
770 |
+
msgstr "Vlaams (België)"
|
771 |
+
|
772 |
+
#: src/Mollie/WC/Helper/Settings.php:434
|
773 |
+
msgid "Dutch"
|
774 |
+
msgstr "Nederlands"
|
775 |
+
|
776 |
+
#: src/Mollie/WC/Helper/Settings.php:429
|
777 |
+
msgid "Detect using browser language"
|
778 |
+
msgstr "Detecteren met gebruik van browser-taal"
|
779 |
+
|
780 |
+
#: src/Mollie/WC/Helper/Settings.php:422
|
781 |
+
msgid "Payment screen language"
|
782 |
+
msgstr "Taal van betaalscherm"
|
783 |
+
|
784 |
+
#: src/Mollie/WC/Helper/Settings.php:403
|
785 |
+
msgid "Test API key should start with test_"
|
786 |
+
msgstr "Test API-sleutel moet beginnen met test_"
|
787 |
+
|
788 |
+
#: src/Mollie/WC/Helper/Settings.php:392
|
789 |
+
msgid "Test API key"
|
790 |
+
msgstr "Test API-sleutel"
|
791 |
+
|
792 |
+
#: src/Mollie/WC/Helper/Settings.php:388
|
793 |
+
msgid "Enable test mode if you want to test the plugin without using real payments."
|
794 |
+
msgstr "Activeer de testmodus als je de plugin wilt testen zonder echte betalingen te gebruiken."
|
795 |
+
|
796 |
+
#: src/Mollie/WC/Helper/Settings.php:385
|
797 |
+
msgid "Enable test mode"
|
798 |
+
msgstr "Activeer de testmodus"
|
799 |
+
|
800 |
+
#: src/Mollie/WC/Helper/Settings.php:377
|
801 |
+
msgid "Live API key should start with live_"
|
802 |
+
msgstr "Live API-sleutel moet beginnen met live_"
|
803 |
+
|
804 |
+
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
805 |
+
#. %s's Will be replaced by a link to the Mollie profile
|
806 |
+
#: src/Mollie/WC/Helper/Settings.php:371 src/Mollie/WC/Helper/Settings.php:397
|
807 |
+
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
808 |
+
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"
|
809 |
+
|
810 |
+
#: src/Mollie/WC/Helper/Settings.php:366
|
811 |
+
msgid "Live API key"
|
812 |
+
msgstr "Live API-sleutel"
|
813 |
+
|
814 |
+
#: src/Mollie/WC/Helper/Settings.php:362
|
815 |
+
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
816 |
+
msgstr "De volgende opties zijn vereist om de plugin te gebruiken en worden door alle Mollie-betaalmethoden gebruikt"
|
817 |
+
|
818 |
+
#: src/Mollie/WC/Helper/Settings.php:359 src/Mollie/WC/Plugin.php:773
|
819 |
+
msgid "Mollie settings"
|
820 |
+
msgstr "Mollie-instellingen"
|
821 |
+
|
822 |
+
#. translators: Placeholder 1: Location of the log files
|
823 |
+
#: src/Mollie/WC/Helper/Settings.php:352
|
824 |
+
msgid "Log files are saved to <code>%s</code>"
|
825 |
+
msgstr "Logbestanden worden opgeslagen in <code>%s</code>"
|
826 |
+
|
827 |
+
#: src/Mollie/WC/Helper/Settings.php:346
|
828 |
+
msgid "View logs"
|
829 |
+
msgstr "Bekijk logs"
|
830 |
+
|
831 |
+
#: src/Mollie/WC/Helper/Settings.php:341
|
832 |
+
msgid "Log plugin events."
|
833 |
+
msgstr "Log plugin-gebeurtenissen"
|
834 |
+
|
835 |
+
#: src/Mollie/WC/Helper/Settings.php:301
|
836 |
+
msgid "Edit"
|
837 |
+
msgstr "Bewerken"
|
838 |
+
|
839 |
+
#: src/Mollie/WC/Helper/Settings.php:270
|
840 |
+
msgid "Refresh"
|
841 |
+
msgstr "Vernieuwen"
|
842 |
+
|
843 |
+
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
844 |
+
#. profile
|
845 |
+
#: src/Mollie/WC/Helper/Settings.php:261
|
846 |
+
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
847 |
+
msgstr "De volgende betaalmethoden zijn geactiveerd in je %sMollie-profiel%s:"
|
848 |
+
|
849 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
850 |
+
msgid "Gateway disabled"
|
851 |
+
msgstr "Gateway gedeactiveerd"
|
852 |
+
|
853 |
+
#. translators: Placeholder 1: enabled or disabled
|
854 |
+
#: src/Mollie/WC/Helper/Settings.php:250 src/Mollie/WC/Helper/Settings.php:466
|
855 |
+
msgid "Enabled"
|
856 |
+
msgstr "Geactiveerd"
|
857 |
+
|
858 |
+
#: src/Mollie/WC/Helper/Settings.php:250
|
859 |
+
msgid "Gateway enabled"
|
860 |
+
msgstr "Gateway geactiveerd"
|
861 |
+
|
862 |
+
#: src/Mollie/WC/Helper/Settings.php:207
|
863 |
+
msgid "Connected"
|
864 |
+
msgstr "Verbonden"
|
865 |
+
|
866 |
+
#: src/Mollie/WC/Helper/Settings.php:206
|
867 |
+
msgid "Mollie status:"
|
868 |
+
msgstr "Mollie-status:"
|
869 |
+
|
870 |
+
#: src/Mollie/WC/Helper/Settings.php:193
|
871 |
+
msgid "Error"
|
872 |
+
msgstr "Fout"
|
873 |
+
|
874 |
+
#: src/Mollie/WC/Helper/Data.php:613
|
875 |
+
msgid "Item #%s stock incremented from %s to %s."
|
876 |
+
msgstr "Item #%s voorraad verhoogd van %s naar %s."
|
877 |
+
|
878 |
+
#: src/Mollie/WC/Gateway/Sofort.php:33
|
879 |
+
msgid "SOFORT Banking"
|
880 |
+
msgstr "SOFORT Banking"
|
881 |
+
|
882 |
+
#: src/Mollie/WC/Gateway/Paysafecard.php:20
|
883 |
+
msgid "paysafecard"
|
884 |
+
msgstr "paysafecard"
|
885 |
+
|
886 |
+
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
887 |
+
#. email, placeholder 3: PayPal transaction ID
|
888 |
+
#: src/Mollie/WC/Gateway/PayPal.php:64
|
889 |
+
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
890 |
+
msgstr "Betaling voltooid met <strong>%s</strong> - %s (PayPal transactie-ID: %s)"
|
891 |
+
|
892 |
+
#: src/Mollie/WC/Gateway/PayPal.php:33
|
893 |
+
msgid "PayPal"
|
894 |
+
msgstr "PayPal"
|
895 |
+
|
896 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
897 |
+
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
898 |
+
#. drop down
|
899 |
+
#: src/Mollie/WC/Gateway/Ideal.php:77 src/Mollie/WC/Gateway/Kbc.php:77
|
900 |
+
msgid "Select your bank"
|
901 |
+
msgstr "Selecteer je bank"
|
902 |
+
|
903 |
+
#: src/Mollie/WC/Gateway/Ideal.php:61
|
904 |
+
msgid "iDEAL"
|
905 |
+
msgstr "iDEAL"
|
906 |
+
|
907 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:42
|
908 |
+
msgid "SEPA Direct Debit"
|
909 |
+
msgstr "SEPA-incasso"
|
910 |
+
|
911 |
+
#. translators: Placeholder 1: card holder
|
912 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:85
|
913 |
+
msgid "Payment completed by <strong>%s</strong>"
|
914 |
+
msgstr "Betaling voltooid met <strong>%s</strong>."
|
915 |
+
|
916 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:34
|
917 |
+
msgid "Credit card"
|
918 |
+
msgstr "Creditcard"
|
919 |
+
|
920 |
+
#: src/Mollie/WC/Gateway/Belfius.php:33
|
921 |
+
msgid "Belfius Direct Net"
|
922 |
+
msgstr "Belfius Direct Net"
|
923 |
+
|
924 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:220
|
925 |
+
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
926 |
+
msgstr "De betaling vervalt op <strong>%s</strong>. Zorg ervoor dat je vóór deze datum het totale bedrag overmaakt."
|
927 |
+
|
928 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:213
|
929 |
+
msgid "The payment will expire on <strong>%s</strong>."
|
930 |
+
msgstr "De betaling vervalt op <strong>%s</strong>."
|
931 |
+
|
932 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
933 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
934 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
935 |
+
msgid "Please provide the payment reference <strong>%s</strong>"
|
936 |
+
msgstr "Vermeld de betalingsreferentie <strong>%s</strong>"
|
937 |
+
|
938 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
939 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
940 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:193
|
941 |
+
msgid "Payment reference: %s"
|
942 |
+
msgstr "Betalingsreferentie: %s."
|
943 |
+
|
944 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
945 |
+
msgid "BIC: %s"
|
946 |
+
msgstr "BIC: %s"
|
947 |
+
|
948 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:187
|
949 |
+
msgid "IBAN: <strong>%s</strong>"
|
950 |
+
msgstr "IBAN: <strong>%s</strong>"
|
951 |
+
|
952 |
+
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
953 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:186
|
954 |
+
msgid "Beneficiary: %s"
|
955 |
+
msgstr "Begunstigde: %s"
|
956 |
+
|
957 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:182
|
958 |
+
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
959 |
+
msgstr "Voltooi je betaling door het totale bedrag over te maken naar de volgende bankrekening:"
|
960 |
+
|
961 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:122
|
962 |
+
msgid "Bank Transfer"
|
963 |
+
msgstr "Bankoverdracht"
|
964 |
+
|
965 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
966 |
+
msgid "Disabled"
|
967 |
+
msgstr "Uitgeschakeld"
|
968 |
+
|
969 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:37
|
970 |
+
msgid "Number of days after the payment will expire. Default <code>%d</code> days"
|
971 |
+
msgstr "Aantal dagen nadat de betaling vervalt. Standaard <code>%d</code> dagen."
|
972 |
+
|
973 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:35
|
974 |
+
msgid "Expiry date"
|
975 |
+
msgstr "Vervaldatum"
|
976 |
+
|
977 |
+
#. translators: Placeholder 1: payment method
|
978 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1508
|
979 |
+
msgid "Payment completed with <strong>%s</strong>"
|
980 |
+
msgstr "Betaling voltooid met <strong>%s</strong>"
|
981 |
+
|
982 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1501
|
983 |
+
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."
|
984 |
+
msgstr "We hebben geen definitieve betalingsstatus ontvangen. Je ontvangt een e-mail zodra we een bevestiging van de bank/handelaar ontvangen."
|
985 |
+
|
986 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1496
|
987 |
+
msgid "We have not received a definite payment status."
|
988 |
+
msgstr "We hebben geen definitieve betalingsstatus ontvangen."
|
989 |
+
|
990 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1271
|
991 |
+
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
992 |
+
msgstr "Je hebt je betaling geannuleerd. Vervolledig je bestelling met een andere betaalmethode."
|
993 |
+
|
994 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Payment/Payment.php:513
|
996 |
+
msgid "%s payment expired (%s)."
|
997 |
+
msgstr "%s betaling verlopen (%s)."
|
998 |
+
|
999 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1000 |
+
#: src/Mollie/WC/Payment/Order.php:295 src/Mollie/WC/Payment/Payment.php:241
|
1001 |
+
msgid "Order completed using %s payment (%s)."
|
1002 |
+
msgstr "Bestelling voltooid met gebruik van %s betaling (%s)."
|
1003 |
+
|
1004 |
+
#. translators: Placeholder 1: Payment method title
|
1005 |
+
#: src/Mollie/WC/Gateway/Abstract.php:678
|
1006 |
+
msgid "Could not create %s payment."
|
1007 |
+
msgstr "Kon geen %s betaling aanmaken."
|
1008 |
+
|
1009 |
+
#: src/Mollie/WC/Payment/Order.php:297 src/Mollie/WC/Payment/Order.php:368
|
1010 |
+
#: src/Mollie/WC/Payment/Order.php:440 src/Mollie/WC/Payment/Order.php:550
|
1011 |
+
#: src/Mollie/WC/Payment/Order.php:608 src/Mollie/WC/Payment/Order.php:632
|
1012 |
+
#: src/Mollie/WC/Payment/Order.php:669 src/Mollie/WC/Payment/Order.php:710
|
1013 |
+
#: src/Mollie/WC/Payment/Payment.php:243 src/Mollie/WC/Payment/Payment.php:353
|
1014 |
+
#: src/Mollie/WC/Payment/Payment.php:411 src/Mollie/WC/Payment/Payment.php:434
|
1015 |
+
#: src/Mollie/WC/Payment/Payment.php:474 src/Mollie/WC/Payment/Payment.php:515
|
1016 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1017 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1018 |
+
#: src/Mollie/WC/Gateway/Abstract.php:656
|
1019 |
+
#: src/Mollie/WC/Gateway/Abstract.php:938
|
1020 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1167
|
1021 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1208
|
1022 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1597
|
1023 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:466
|
1024 |
+
msgid "test mode"
|
1025 |
+
msgstr "testmodus"
|
1026 |
+
|
1027 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1028 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1029 |
+
#: src/Mollie/WC/Gateway/Abstract.php:654
|
1030 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1031 |
+
msgid "%s payment started (%s)."
|
1032 |
+
msgstr "%s betaling gestart (%s)."
|
1033 |
+
|
1034 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1035 |
+
#: src/Mollie/WC/Gateway/Abstract.php:644
|
1036 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1037 |
+
msgid "Awaiting payment confirmation."
|
1038 |
+
msgstr "In afwachting van betalingsbevestiging"
|
1039 |
+
|
1040 |
+
#: src/Mollie/WC/Gateway/Abstract.php:402
|
1041 |
+
msgid "Could not load order %s"
|
1042 |
+
msgstr "Kon bestelling %s niet laden"
|
1043 |
+
|
1044 |
+
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1045 |
+
#. be replaced by a link to the Mollie profile
|
1046 |
+
#: src/Mollie/WC/Gateway/Abstract.php:238
|
1047 |
+
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1048 |
+
msgstr "%s niet geactiveerd in je Mollie-profiel. Je kunt het activeren door je %sMollie profiel%s te bewerken."
|
1049 |
+
|
1050 |
+
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1051 |
+
#. setting page
|
1052 |
+
#: src/Mollie/WC/Gateway/Abstract.php:226
|
1053 |
+
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1054 |
+
msgstr "Geen API-sleutel verschaft. Plaats %sje Mollie API-sleutel%s eerst."
|
1055 |
+
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:181
|
1057 |
+
msgid "Gateway Disabled"
|
1058 |
+
msgstr "Gateway gedeactiveerd"
|
1059 |
+
|
1060 |
+
#: src/Mollie/WC/Helper/Settings.php:256 src/Mollie/WC/Gateway/Abstract.php:224
|
1061 |
+
msgid "Test mode enabled."
|
1062 |
+
msgstr "Testmodus geactiveerd."
|
1063 |
+
|
1064 |
+
#: src/Mollie/WC/Gateway/Abstract.php:143
|
1065 |
+
msgid "Hold Stock (minutes)"
|
1066 |
+
msgstr "Houd voorraad aan (minuten)"
|
1067 |
+
|
1068 |
+
#: src/Mollie/WC/Gateway/Abstract.php:141
|
1069 |
+
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."
|
1070 |
+
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."
|
1071 |
+
|
1072 |
+
#: src/Mollie/WC/Helper/Settings.php:428 src/Mollie/WC/Gateway/Abstract.php:135
|
1073 |
+
msgid "default"
|
1074 |
+
msgstr "standaard"
|
1075 |
+
|
1076 |
+
#: src/Mollie/WC/Gateway/Abstract.php:132
|
1077 |
+
msgid "Initial order status"
|
1078 |
+
msgstr "Initiële bestelstatus"
|
1079 |
+
|
1080 |
+
#: src/Mollie/WC/Gateway/Abstract.php:123
|
1081 |
+
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1082 |
+
msgstr "Beschrijving van de betaalmethode die de klant bij je betaalpagina zal zien. Standaard <code>%s</code>"
|
1083 |
+
|
1084 |
+
#: src/Mollie/WC/Gateway/Abstract.php:121
|
1085 |
+
msgid "Description"
|
1086 |
+
msgstr "Beschrijving"
|
1087 |
+
|
1088 |
+
#: src/Mollie/WC/Gateway/Abstract.php:117
|
1089 |
+
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1090 |
+
msgstr "Toon logo op de betaalpagina. Standaard <code>geactiveerd</code>"
|
1091 |
+
|
1092 |
+
#: src/Mollie/WC/Gateway/Abstract.php:115
|
1093 |
+
msgid "Display logo"
|
1094 |
+
msgstr "Toon logo"
|
1095 |
+
|
1096 |
+
#: src/Mollie/WC/Gateway/Abstract.php:110
|
1097 |
+
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1098 |
+
msgstr "Dit controleert de titel die de gebruiker ziet tijdens het betalen. Standaard <code>%s</code>"
|
1099 |
+
|
1100 |
+
#: src/Mollie/WC/Gateway/Abstract.php:108
|
1101 |
+
msgid "Title"
|
1102 |
+
msgstr "Titel"
|
1103 |
+
|
1104 |
+
#: src/Mollie/WC/Gateway/Abstract.php:104
|
1105 |
+
msgid "Enable %s"
|
1106 |
+
msgstr "Geactiveerd %s"
|
1107 |
+
|
1108 |
+
#: src/Mollie/WC/Gateway/Abstract.php:102
|
1109 |
+
msgid "Enable/Disable"
|
1110 |
+
msgstr "Activeren/Deactiveren"
|
languages/mollie-payments-for-woocommerce-nl_NL.mo
ADDED
Binary file
|
languages/mollie-payments-for-woocommerce-nl_NL.po
ADDED
@@ -0,0 +1,1110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Development (trunk) in Dutch
|
2 |
+
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Development (trunk) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2020-05-20 14:48+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/2.4.0-alpha\n"
|
11 |
+
"Language: nl\n"
|
12 |
+
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Development (trunk)\n"
|
13 |
+
|
14 |
+
#: inc/settings/mollie_components_enabler.php:7
|
15 |
+
msgid "Enable the Mollie Components for this Gateway"
|
16 |
+
msgstr "Activeer de Mollie-componenten voor deze gateway"
|
17 |
+
|
18 |
+
#: inc/settings/mollie_components_enabler.php:6
|
19 |
+
msgid "Enable Mollie Components"
|
20 |
+
msgstr "Activeer Mollie-componenten"
|
21 |
+
|
22 |
+
#: inc/settings/mollie_components.php:157
|
23 |
+
msgctxt "Mollie Components Settings"
|
24 |
+
msgid "Background Color for invalid input."
|
25 |
+
msgstr "Achtergrondkleur voor ongeldige invoer"
|
26 |
+
|
27 |
+
#: inc/settings/mollie_components.php:146
|
28 |
+
msgctxt "Mollie Components Settings"
|
29 |
+
msgid "Text Color for invalid input."
|
30 |
+
msgstr "Tekstkleur voor ongeldige invoer"
|
31 |
+
|
32 |
+
#: inc/settings/mollie_components.php:136
|
33 |
+
msgctxt "Mollie Components Settings"
|
34 |
+
msgid "Invalid Status Styles"
|
35 |
+
msgstr "Ongeldige statusstijlen"
|
36 |
+
|
37 |
+
#: inc/settings/mollie_components.php:122
|
38 |
+
msgctxt "Mollie Components Settings"
|
39 |
+
msgid "Full Size Kana"
|
40 |
+
msgstr "Volledige grootte Kana"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_components.php:117
|
43 |
+
msgctxt "Mollie Components Settings"
|
44 |
+
msgid "Full Width"
|
45 |
+
msgstr "Volledige breedte"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_components.php:112
|
48 |
+
msgctxt "Mollie Components Settings"
|
49 |
+
msgid "Lowercase"
|
50 |
+
msgstr "Kleine letters"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_components.php:107
|
53 |
+
msgctxt "Mollie Components Settings"
|
54 |
+
msgid "Uppercase"
|
55 |
+
msgstr "Hoofdletters"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_components.php:102
|
58 |
+
msgctxt "Mollie Components Settings"
|
59 |
+
msgid "Capitalize"
|
60 |
+
msgstr "In hoofdletters schrijven"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_components.php:97
|
63 |
+
msgctxt "Mollie Components Settings"
|
64 |
+
msgid "None"
|
65 |
+
msgstr "Geen"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_components.php:94
|
68 |
+
msgctxt "Mollie Components Settings"
|
69 |
+
msgid "Transform Text"
|
70 |
+
msgstr "Tekstwijziging"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_components.php:88
|
73 |
+
msgctxt "Mollie Components Settings"
|
74 |
+
msgid "Justify"
|
75 |
+
msgstr "Uitvullen"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_components.php:87
|
78 |
+
msgctxt "Mollie Components Settings"
|
79 |
+
msgid "Center"
|
80 |
+
msgstr "Centreren"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_components.php:86
|
83 |
+
msgctxt "Mollie Components Settings"
|
84 |
+
msgid "Right"
|
85 |
+
msgstr "Rechts"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_components.php:85
|
88 |
+
msgctxt "Mollie Components Settings"
|
89 |
+
msgid "Left"
|
90 |
+
msgstr "Links"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_components.php:82
|
93 |
+
msgctxt "Mollie Components Settings"
|
94 |
+
msgid "Align Text"
|
95 |
+
msgstr "Tekstuitlijning"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_components.php:72
|
98 |
+
msgctxt "Mollie Components Settings"
|
99 |
+
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
100 |
+
msgstr "Voeg vulling toe aan de Componenten. bijv: '16px 16px 16px 16px' en 'em', 'px' en 'rem' waarden zijn toegestaan."
|
101 |
+
|
102 |
+
#: inc/settings/mollie_components.php:71
|
103 |
+
msgctxt "Mollie Components Settings"
|
104 |
+
msgid "Padding"
|
105 |
+
msgstr "Vulling"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_components.php:62
|
108 |
+
msgctxt "Mollie Components Settings"
|
109 |
+
msgid "Line Height"
|
110 |
+
msgstr "Regelhoogte"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_components.php:56
|
113 |
+
msgctxt "Mollie Components Settings"
|
114 |
+
msgid "Letter Spacing"
|
115 |
+
msgstr "Letterafstand"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_components.php:50
|
118 |
+
msgctxt "Mollie Components Settings"
|
119 |
+
msgid "Bold"
|
120 |
+
msgstr "Vet"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_components.php:49
|
123 |
+
msgctxt "Mollie Components Settings"
|
124 |
+
msgid "Regular"
|
125 |
+
msgstr "Normaal"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_components.php:48
|
128 |
+
msgctxt "Mollie Components Settings"
|
129 |
+
msgid "Lighter"
|
130 |
+
msgstr "Lichter"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_components.php:45
|
133 |
+
msgctxt "Mollie Components Settings"
|
134 |
+
msgid "Font Weight"
|
135 |
+
msgstr "Lettergewicht"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_components.php:35
|
138 |
+
msgctxt "Mollie Components Settings"
|
139 |
+
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
140 |
+
msgstr "De lettergrootte bepaalt de grootte van het lettertype in de componenten. `em`, `px`, `rem` eenheden zijn toegestaan."
|
141 |
+
|
142 |
+
#: inc/settings/mollie_components.php:34
|
143 |
+
msgctxt "Mollie Components Settings"
|
144 |
+
msgid "Font Size"
|
145 |
+
msgstr "Lettergrootte"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_components.php:28
|
148 |
+
msgctxt "Mollie Components Settings"
|
149 |
+
msgid "Placeholder Color"
|
150 |
+
msgstr "Kleur van de plaatshouder"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145
|
153 |
+
msgctxt "Mollie Components Settings"
|
154 |
+
msgid "Text Color"
|
155 |
+
msgstr "Tekstkleur"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156
|
158 |
+
msgctxt "Mollie Components Settings"
|
159 |
+
msgid "Background Color"
|
160 |
+
msgstr "Achtergrondkleur"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_components.php:7
|
163 |
+
msgctxt "Mollie Components Settings"
|
164 |
+
msgid "Base Styles"
|
165 |
+
msgstr "Basisstijlen"
|
166 |
+
|
167 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2056
|
168 |
+
msgid "Secure payments provided by "
|
169 |
+
msgstr "Beveiligde betalingen verschaft door"
|
170 |
+
|
171 |
+
#: src/Mollie/WC/Plugin.php:431
|
172 |
+
msgid "An unknown error occurred, please check the card fields."
|
173 |
+
msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden."
|
174 |
+
|
175 |
+
#: src/Mollie/WC/Plugin.php:424
|
176 |
+
msgid "Verification Code"
|
177 |
+
msgstr "Verificatiecode"
|
178 |
+
|
179 |
+
#: src/Mollie/WC/Plugin.php:420
|
180 |
+
msgid "Expiry Date"
|
181 |
+
msgstr "Vervaldatum"
|
182 |
+
|
183 |
+
#: src/Mollie/WC/Plugin.php:412
|
184 |
+
msgid "Card Holder"
|
185 |
+
msgstr "Kaarthouder"
|
186 |
+
|
187 |
+
#: src/Mollie/WC/Settings/Page/Components.php:10
|
188 |
+
msgid "Mollie Components"
|
189 |
+
msgstr "Mollie-componenten"
|
190 |
+
|
191 |
+
#: src/Mollie/WC/Plugin.php:416
|
192 |
+
msgid "Card Number"
|
193 |
+
msgstr "Kaartnummer"
|
194 |
+
|
195 |
+
#: src/Mollie/WC/Plugin.php:306
|
196 |
+
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
197 |
+
msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie."
|
198 |
+
|
199 |
+
#: src/Mollie/WC/Plugin.php:288
|
200 |
+
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
201 |
+
msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie."
|
202 |
+
|
203 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
204 |
+
msgid "Empty WooCommerce order items or mollie order lines."
|
205 |
+
msgstr "Lege Woocommerce bestelartikelen of Mollie-bestellijnen."
|
206 |
+
|
207 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
208 |
+
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
209 |
+
msgstr "Onmogelijk om de bestelartikel-id met betrekking tot het afstandsartikel terug te halen: %1$s"
|
210 |
+
|
211 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
212 |
+
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
213 |
+
msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld."
|
214 |
+
|
215 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:115
|
216 |
+
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."
|
217 |
+
msgstr "Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag of hoeveelheid van ten minste één bestelregel. In plaats daarvan aan het proberen dit te verwerken als een terugbetaling van bedrag."
|
218 |
+
|
219 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
220 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:159
|
221 |
+
msgid "Order completed using %1$s payment (%2$s)."
|
222 |
+
msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)."
|
223 |
+
|
224 |
+
#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer
|
225 |
+
#. Account number
|
226 |
+
#: src/Mollie/WC/Gateway/MyBank.php:73
|
227 |
+
msgid "Payment completed by <strong>%1$s</strong> - %2$s"
|
228 |
+
msgstr "Betaling voltooid met <strong>%1$s</strong> - %2$s"
|
229 |
+
|
230 |
+
#: src/Mollie/WC/Gateway/MyBank.php:44
|
231 |
+
msgid "To accept payments via MyBank"
|
232 |
+
msgstr "Om betalingen te accepteren via MyBank"
|
233 |
+
|
234 |
+
#: src/Mollie/WC/Gateway/MyBank.php:36
|
235 |
+
msgid "MyBank"
|
236 |
+
msgstr "MyBank"
|
237 |
+
|
238 |
+
#: src/Mollie/WC/Gateway/Applepay.php:45
|
239 |
+
msgid "To accept payments via Apple Pay"
|
240 |
+
msgstr "Om betalingen te accepteren via Apple Pay"
|
241 |
+
|
242 |
+
#: src/Mollie/WC/Gateway/Applepay.php:37
|
243 |
+
msgid "Apple Pay"
|
244 |
+
msgstr "Apple Pay"
|
245 |
+
|
246 |
+
#. translators: Placeholder 1: customer billing email
|
247 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:64
|
248 |
+
msgid "Payment completed by <strong>%s</strong>."
|
249 |
+
msgstr "Betaling voltooid met <strong>%s</strong>."
|
250 |
+
|
251 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
252 |
+
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
253 |
+
msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail van de klant vereist."
|
254 |
+
|
255 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
256 |
+
msgid "Przelewy24"
|
257 |
+
msgstr "Przelewy24 "
|
258 |
+
|
259 |
+
#: src/Mollie/WC/Helper/Status.php:89 mollie-payments-for-WooCommerce.php:83
|
260 |
+
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."
|
261 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON geactiveerd is. Activeer dit op je server of vraag je webhoster om het voor jou te activeren."
|
262 |
+
|
263 |
+
#: src/Mollie/WC/Payment/Order.php:1029
|
264 |
+
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
265 |
+
msgstr "Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s. "
|
266 |
+
|
267 |
+
#: src/Mollie/WC/Payment/Order.php:946
|
268 |
+
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
269 |
+
msgstr "%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s. "
|
270 |
+
|
271 |
+
#: src/Mollie/WC/Payment/Order.php:930
|
272 |
+
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
273 |
+
msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie. "
|
274 |
+
|
275 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
276 |
+
#: src/Mollie/WC/Payment/Order.php:438
|
277 |
+
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!"
|
278 |
+
msgstr "Bestelling voltooid bij Mollie voor %s bestelling (%s). Ten minste één orderregel voltooid. Onthoud: de Voltooid status voor een bestelling bij Mollie is niet hetzelfde als de Voltooid status in WooCommerce!"
|
279 |
+
|
280 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
281 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1206
|
282 |
+
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use them)."
|
283 |
+
msgstr "%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet, controleer dit (en pas productvoorraden aan als je dit gebruikt)."
|
284 |
+
|
285 |
+
#: src/Mollie/WC/Helper/Settings.php:624
|
286 |
+
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
287 |
+
msgstr "Om Klarna-betalingen via Mollie te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn. Controleer of dit het geval is."
|
288 |
+
|
289 |
+
#: src/Mollie/WC/Payment/Payment.php:39
|
290 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
291 |
+
msgid "Order"
|
292 |
+
msgstr "Bestelling"
|
293 |
+
|
294 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
295 |
+
#: src/Mollie/WC/Payment/Payment.php:351
|
296 |
+
msgid "%s payment (%s) cancelled ."
|
297 |
+
msgstr "%s betaling (%s) geannuleerd."
|
298 |
+
|
299 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
300 |
+
#: src/Mollie/WC/Payment/Order.php:708
|
301 |
+
msgid "%s order (%s) expired ."
|
302 |
+
msgstr "%s bestelling (%s) verlopen."
|
303 |
+
|
304 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
305 |
+
#: src/Mollie/WC/Payment/Order.php:667
|
306 |
+
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
307 |
+
msgstr "%s bestelling verlopen (%s) maar bestelling niet geannuleerd wegens een andere hangende betaling (%s)."
|
308 |
+
|
309 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
310 |
+
#: src/Mollie/WC/Payment/Order.php:548
|
311 |
+
msgid "%s order (%s) cancelled ."
|
312 |
+
msgstr "%s bestelling (%s) geannuleerd."
|
313 |
+
|
314 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
315 |
+
#: src/Mollie/WC/Payment/Order.php:366
|
316 |
+
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."
|
317 |
+
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 individuele orderregels, verwerk je de order via het Mollie Dashboard. "
|
318 |
+
|
319 |
+
#: src/Mollie/WC/Helper/Settings.php:649
|
320 |
+
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
321 |
+
msgstr "Om Klarna-betalingen via Mollie te accepteren, moet je ten minste WooCommerce 3.0 of hoger gebruiken. Nu gebruik je versie %s. "
|
322 |
+
|
323 |
+
#: src/Mollie/WC/Helper/Settings.php:456
|
324 |
+
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."
|
325 |
+
msgstr "Het verzenden van een taal (of locatie) is vereist. De optie 'Automatisch verzenden van WordPress-taal' zal proberen de taal van de klant in WordPress te krijgen (en respecteert meertalige plugins) en deze te converteren naar een formaat dat Mollie begrijpt. Als dit niet lukt, of als de taal niet wordt ondersteund, zal teruggegaan worden naar Amerikaans-Engels. Je kunt ook een van de momenteel door Mollie ondersteunde locaties selecteren, die dan voor alle klanten zal worden gebruikt."
|
326 |
+
|
327 |
+
#: src/Mollie/WC/Helper/Settings.php:425
|
328 |
+
msgid "Automatically send WordPress language"
|
329 |
+
msgstr "Automatisch verzenden van WordPress-taal"
|
330 |
+
|
331 |
+
#: src/Mollie/WC/Helper/Settings.php:417
|
332 |
+
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."
|
333 |
+
msgstr "Status voor bestellingen wanneer een betaling (niet een Mollie-besteling via de Bestellingen API) wordt geannuleerd. Standaard: In behandeling. Bestellingen met status In behandeling kunnen met een andere betaalmethode worden betaald, klanten kunnen opnieuw proberen. Geannuleerde bestellingen zijn definitief. Stel dit in op Geannuleerd als je maar één betaalmethode hebt of als je niet wilt dat klanten opnieuw proberen te betalen met een andere betaalmethode. Dit is niet van toepassing op betalingen voor bestellingen via de nieuwe Orders-API en Klarna-betalingen."
|
334 |
+
|
335 |
+
#: src/Mollie/WC/Helper/OrderLines.php:407
|
336 |
+
msgid "Shipping"
|
337 |
+
msgstr "Verzending"
|
338 |
+
|
339 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
340 |
+
msgid "Klarna Slice it"
|
341 |
+
msgstr "Klarna Slice it"
|
342 |
+
|
343 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
344 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
345 |
+
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
346 |
+
msgstr "Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn."
|
347 |
+
|
348 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
349 |
+
msgid "Klarna Pay later"
|
350 |
+
msgstr "Klarna betaal later"
|
351 |
+
|
352 |
+
#: src/Mollie/WC/Helper/Status.php:131
|
353 |
+
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
354 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn. "
|
355 |
+
|
356 |
+
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
357 |
+
#. version
|
358 |
+
#: src/Mollie/WC/Helper/Status.php:104
|
359 |
+
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
360 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, jij hebt PHP %s. Installeer de upgrade en bekijk %sdeze FAQ%s"
|
361 |
+
|
362 |
+
#: src/Mollie/WC/Helper/Settings.php:600
|
363 |
+
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."
|
364 |
+
msgstr "Je hebt de WooCommerce standaard Direct Bank Transfer (BACS) betalingsgateway geactiveerd in WooCommerce. Mollie adviseert dringend om alleen Bank Transfer via Mollie te gebruiken en de standaard WooCommerce BACS betalingsgateway uit te schakelen om mogelijke conflicten te voorkomen. "
|
365 |
+
|
366 |
+
#: src/Mollie/WC/Helper/Settings.php:576
|
367 |
+
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."
|
368 |
+
msgstr "Je hebt WooCommerce Abonnementen geactiveerd, maar geen SEPA-incasso. Activeer SEPA-incasso als je klanten wilt toestaan abonnementen met iDEAL en/of andere \"eerste\" betaalmethoden te betalen. "
|
369 |
+
|
370 |
+
#: src/Mollie/WC/Helper/Settings.php:453
|
371 |
+
msgid "Lithuanian"
|
372 |
+
msgstr "Litouws"
|
373 |
+
|
374 |
+
#: src/Mollie/WC/Helper/Settings.php:452
|
375 |
+
msgid "Latvian"
|
376 |
+
msgstr "Lets"
|
377 |
+
|
378 |
+
#: src/Mollie/WC/Helper/Settings.php:451
|
379 |
+
msgid "Polish"
|
380 |
+
msgstr "Pools"
|
381 |
+
|
382 |
+
#: src/Mollie/WC/Helper/Settings.php:450
|
383 |
+
msgid "Hungarian"
|
384 |
+
msgstr "Hongaars"
|
385 |
+
|
386 |
+
#: src/Mollie/WC/Helper/Settings.php:449
|
387 |
+
msgid "Icelandic"
|
388 |
+
msgstr "Ijslands"
|
389 |
+
|
390 |
+
#: src/Mollie/WC/Helper/Settings.php:448
|
391 |
+
msgid "Danish"
|
392 |
+
msgstr "Deens"
|
393 |
+
|
394 |
+
#: src/Mollie/WC/Helper/Settings.php:447
|
395 |
+
msgid "Finnish"
|
396 |
+
msgstr "Fins"
|
397 |
+
|
398 |
+
#: src/Mollie/WC/Helper/Settings.php:446
|
399 |
+
msgid "Swedish"
|
400 |
+
msgstr "Zweeds"
|
401 |
+
|
402 |
+
#: src/Mollie/WC/Helper/Settings.php:445
|
403 |
+
msgid "Norwegian"
|
404 |
+
msgstr "Noors"
|
405 |
+
|
406 |
+
#: src/Mollie/WC/Helper/Settings.php:444
|
407 |
+
msgid "Italian"
|
408 |
+
msgstr "Italiaans"
|
409 |
+
|
410 |
+
#: src/Mollie/WC/Helper/Settings.php:443
|
411 |
+
msgid "Portuguese"
|
412 |
+
msgstr "Portugees"
|
413 |
+
|
414 |
+
#: src/Mollie/WC/Helper/Settings.php:442
|
415 |
+
msgid "Catalan"
|
416 |
+
msgstr "Spaans (Catalaans)"
|
417 |
+
|
418 |
+
#: src/Mollie/WC/Helper/Settings.php:440
|
419 |
+
msgid "Swiss German"
|
420 |
+
msgstr "Zwitserduits"
|
421 |
+
|
422 |
+
#: src/Mollie/WC/Helper/Settings.php:439
|
423 |
+
msgid "Austrian German"
|
424 |
+
msgstr "Oostenrijks-Duits"
|
425 |
+
|
426 |
+
#: src/Mollie/WC/Helper/Api.php:41
|
427 |
+
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."
|
428 |
+
msgstr "Ongeldige API key(s). Haal deze op in de %sOntwikkelaars pagina in de Mollie dashboard%s. De API key(s) moeten beginnen met 'live_' of 'test_', minimaal 30 tekens lang zijn en mogen geen speciale tekens bevatten."
|
429 |
+
|
430 |
+
#: src/Mollie/WC/Helper/Api.php:39
|
431 |
+
msgid "No API key provided. Please set your Mollie API keys below."
|
432 |
+
msgstr "Geen API key ingevuld, vul hier beneden je Mollie API keys in."
|
433 |
+
|
434 |
+
#: src/Mollie/WC/Gateway/Giropay.php:29
|
435 |
+
msgid "Giropay"
|
436 |
+
msgstr "Giropay"
|
437 |
+
|
438 |
+
#: src/Mollie/WC/Gateway/EPS.php:29
|
439 |
+
msgid "EPS"
|
440 |
+
msgstr "EPS"
|
441 |
+
|
442 |
+
#. translators: Placeholder 1: Payment method title
|
443 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:325
|
444 |
+
msgid "Could not create %s renewal payment."
|
445 |
+
msgstr "Kon geen %s betalingshernieuwing aanmaken. "
|
446 |
+
|
447 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:282
|
448 |
+
msgid "The customer (%s) does not have a valid mandate."
|
449 |
+
msgstr "De klant (%s) heeft geen geldig mandaat."
|
450 |
+
|
451 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:273
|
452 |
+
msgid "The customer (%s) could not be used or found. "
|
453 |
+
msgstr "De klant (%s) kon niet gebruikt of gevonden worden."
|
454 |
+
|
455 |
+
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
456 |
+
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
457 |
+
#. placeholder 5: refund ID
|
458 |
+
#: src/Mollie/WC/Payment/Payment.php:595
|
459 |
+
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
460 |
+
msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s"
|
461 |
+
|
462 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1137
|
463 |
+
msgid "New chargeback %s processed! Order note and order status updated."
|
464 |
+
msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt."
|
465 |
+
|
466 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1038
|
467 |
+
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
468 |
+
msgstr "Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, maar bestelling niet geüpdatet."
|
469 |
+
|
470 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
471 |
+
#: src/Mollie/WC/Payment/Order.php:630 src/Mollie/WC/Payment/Payment.php:432
|
472 |
+
msgid "%s payment failed via Mollie (%s)."
|
473 |
+
msgstr "%s betaling mislukt via Mollie (%s)."
|
474 |
+
|
475 |
+
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
476 |
+
#. Mollie currencies
|
477 |
+
#: src/Mollie/WC/Gateway/Abstract.php:250
|
478 |
+
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
479 |
+
msgstr "Huidige shopvaluta %s niet ondersteund door Mollie. Lees meer over %sondersteunde valuta's en betaalmethoden.%s"
|
480 |
+
|
481 |
+
#: mollie-payments-for-WooCommerce.php:105
|
482 |
+
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."
|
483 |
+
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."
|
484 |
+
|
485 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
486 |
+
#: src/Mollie/WC/Payment/Order.php:540 src/Mollie/WC/Payment/Order.php:701
|
487 |
+
#: src/Mollie/WC/Payment/Payment.php:343 src/Mollie/WC/Payment/Payment.php:506
|
488 |
+
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
489 |
+
msgstr "Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de bestellingsstatus is niet geüpdatet. "
|
490 |
+
|
491 |
+
#. translators: Placeholder 1: enabled or disabled
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:466
|
493 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
494 |
+
msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor Single Click Payments? Standaard <code>%s</code>. Vereist als WooCommerce Abonnementen worden gebruikt!"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1289
|
497 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1297
|
498 |
+
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
499 |
+
msgstr "Je betaling is niet gelukt. Vervolledig je bestelling met een andere betaalmethode. "
|
500 |
+
|
501 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
502 |
+
#: src/Mollie/WC/Payment/Order.php:606 src/Mollie/WC/Payment/Payment.php:409
|
503 |
+
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
504 |
+
msgstr "%s vernieuwing van betaling mislukt via Mollie (%s). Je moet de betaling handmatig controleren en productvoorraden aanpassen als je deze gebruikt."
|
505 |
+
|
506 |
+
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
507 |
+
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
508 |
+
msgid "Bancontact"
|
509 |
+
msgstr "Bancontact"
|
510 |
+
|
511 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
512 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1595
|
513 |
+
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."
|
514 |
+
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."
|
515 |
+
|
516 |
+
#: src/Mollie/WC/Gateway/Abstract.php:469
|
517 |
+
msgid "Failed switching subscriptions, no valid mandate."
|
518 |
+
msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat. "
|
519 |
+
|
520 |
+
#: src/Mollie/WC/Gateway/Abstract.php:468
|
521 |
+
msgid "Failed switching subscriptions, no valid mandate.found. Place a completely new order to change your subscription."
|
522 |
+
msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats een volledig nieuwe bestelling om je abonnement te wijzigen."
|
523 |
+
|
524 |
+
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
525 |
+
msgid "ING Home'Pay"
|
526 |
+
msgstr "ING Home'Pay"
|
527 |
+
|
528 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
529 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1165
|
530 |
+
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use them)."
|
531 |
+
msgstr "%s betaling teruggevorderd via Mollie (%s). Je moet de betaling handmatig controleren (en productvoorraden aanpassen als je dit gebruikt)."
|
532 |
+
|
533 |
+
#: src/Mollie/WC/Gateway/Kbc.php:41
|
534 |
+
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."
|
535 |
+
msgstr "Deze tekst wordt weergegeven als eerste optie in de KBC/CBC-uitgevers drop-down, als er niets wordt ingevoerd, wordt \"Selecteer je bank\" weergegeven. Alleen als het bovenstaande ''Toon KBC/CBC-banken dropdown'' is geactiveerd."
|
536 |
+
|
537 |
+
#: src/Mollie/WC/Gateway/Kbc.php:34
|
538 |
+
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."
|
539 |
+
msgstr "Als je dit deactiveert, zal een dropdown bij verschillende KBC/CBC-banken niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een KBC/CBC-bank selecteren op de Mollie-betaalpagina na het afrekenen."
|
540 |
+
|
541 |
+
#: src/Mollie/WC/Gateway/Kbc.php:32
|
542 |
+
msgid "Show KBC/CBC banks dropdown"
|
543 |
+
msgstr "Toon KBC/CBC-banken dropdown"
|
544 |
+
|
545 |
+
#: src/Mollie/WC/Gateway/Ideal.php:41
|
546 |
+
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."
|
547 |
+
msgstr "Deze tekst wordt weergegeven als eerste optie in de KBC/CBC-uitgevers drop-down, als er niets wordt ingevoerd, wordt \"Selecteer je bank\" weergegeven. Alleen als het bovenstaande ''Toon KBC/CBC-banken dropdown'' is geactiveerd."
|
548 |
+
|
549 |
+
#: src/Mollie/WC/Gateway/Ideal.php:34
|
550 |
+
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."
|
551 |
+
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."
|
552 |
+
|
553 |
+
#: src/Mollie/WC/Gateway/Ideal.php:32
|
554 |
+
msgid "Show iDEAL banks dropdown"
|
555 |
+
msgstr "Toon iDEAL-banken dropdown"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:40
|
558 |
+
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."
|
559 |
+
msgstr "Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd."
|
560 |
+
|
561 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
562 |
+
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."
|
563 |
+
msgstr "Als je dit deactiveert, zal een dropdown met verschillende cadeaubonnen niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een cadeaubon selecteren op de Mollie-betaalpagina na het afrekenen."
|
564 |
+
|
565 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
566 |
+
msgid "Show gift cards dropdown"
|
567 |
+
msgstr "Toon cadeaubonnen-dropdown"
|
568 |
+
|
569 |
+
#: src/Mollie/WC/Gateway/Abstract.php:457
|
570 |
+
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
571 |
+
msgstr "Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie."
|
572 |
+
|
573 |
+
#: mollie-payments-for-WooCommerce.php:149
|
574 |
+
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"
|
575 |
+
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"
|
576 |
+
|
577 |
+
#: mollie-payments-for-WooCommerce.php:131
|
578 |
+
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"
|
579 |
+
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"
|
580 |
+
|
581 |
+
#: src/Mollie/WC/Helper/Settings.php:415
|
582 |
+
msgid "Cancelled"
|
583 |
+
msgstr "Geannuleerd"
|
584 |
+
|
585 |
+
#: src/Mollie/WC/Helper/Settings.php:414
|
586 |
+
msgid "Pending"
|
587 |
+
msgstr "In behandeling"
|
588 |
+
|
589 |
+
#: src/Mollie/WC/Helper/Settings.php:411
|
590 |
+
msgid "Order status after cancelled payment"
|
591 |
+
msgstr "Bestelstatus na geannuleerde betaling"
|
592 |
+
|
593 |
+
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
594 |
+
#. placeholder 3: consumer BIC
|
595 |
+
#: src/Mollie/WC/Gateway/Sofort.php:64 src/Mollie/WC/Gateway/Ideal.php:121
|
596 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80
|
597 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:172
|
598 |
+
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
599 |
+
msgstr "Betaling voltooid met <strong>%s</strong> (IBAN (ten minste 4 cijfers): %s, BIC: %s)"
|
600 |
+
|
601 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1635
|
602 |
+
msgid "Your order has been cancelled."
|
603 |
+
msgstr "Je bestelling is geannuleerd."
|
604 |
+
|
605 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1604
|
606 |
+
msgid ", payment pending."
|
607 |
+
msgstr ", betaling in behandeling."
|
608 |
+
|
609 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1564
|
610 |
+
msgid "Order cancelled"
|
611 |
+
msgstr "Bestelling geannuleerd"
|
612 |
+
|
613 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
614 |
+
#. status, placeholder 3: payment ID
|
615 |
+
#: src/Mollie/WC/Gateway/Abstract.php:935
|
616 |
+
msgid "%s payment %s (%s), not processed."
|
617 |
+
msgstr "%s betaling %s (%s), niet verwerkt."
|
618 |
+
|
619 |
+
#. translators: Default gift card dropdown description, displayed above issuer
|
620 |
+
#. drop down
|
621 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:76
|
622 |
+
msgid "Select your gift card"
|
623 |
+
msgstr "Selecteer je cadeaubon"
|
624 |
+
|
625 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:60
|
626 |
+
msgid "Gift cards"
|
627 |
+
msgstr "Cadeaubonnen"
|
628 |
+
|
629 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
630 |
+
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."
|
631 |
+
msgstr "SEPA-incasso wordt gebruikt voor terugkerende betalingen met WooCommerce-abonnementen, en wordt niet getoond in de WooCommerce kassa voor reguliere betalingen! Je moet ook iDEAL en/of andere \"eerste\" betaalmethoden activeren als je SEPA-incasso wilt gebruiken"
|
632 |
+
|
633 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
634 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:190
|
635 |
+
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
636 |
+
msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is."
|
637 |
+
|
638 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
639 |
+
#: src/Mollie/WC/Payment/Payment.php:472
|
640 |
+
msgid "%s payment expired (%s) but order not cancelled because of another pending payment (%s)."
|
641 |
+
msgstr "%s betaling verlopen (%s) maar bestelling niet geannuleerd wegens een andere hangende betaling (%s)."
|
642 |
+
|
643 |
+
#: src/subscriptions_status_check_functions.php:195
|
644 |
+
msgid "There are still some subscriptions left, use the tool again!"
|
645 |
+
msgstr "Er zijn nog abonnementen over, gebruik de tool opnieuw!"
|
646 |
+
|
647 |
+
#: src/subscriptions_status_check_functions.php:193
|
648 |
+
msgid "No more subscriptions left to process!"
|
649 |
+
msgstr "Geen abonnementen over om te verwerken!"
|
650 |
+
|
651 |
+
#: src/subscriptions_status_check_functions.php:180
|
652 |
+
msgid "No subscriptions updated in this batch."
|
653 |
+
msgstr "Geen abonnementen geüpdatet in deze batch."
|
654 |
+
|
655 |
+
#: src/subscriptions_status_check_functions.php:156
|
656 |
+
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
657 |
+
msgstr "Abonnement niet geüpdatet omdat er geen geldig mandaat was bij Mollie. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
658 |
+
|
659 |
+
#: src/subscriptions_status_check_functions.php:142
|
660 |
+
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
661 |
+
msgstr "Abonnement geüpdatet naar Geautomatiseerde vernieuwing via Mollie, status ingesteld op Actief. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
662 |
+
|
663 |
+
#: src/subscriptions_status_check_functions.php:36
|
664 |
+
msgid "Check subscriptions status"
|
665 |
+
msgstr "Controleer abonnementenstatus"
|
666 |
+
|
667 |
+
#: src/subscriptions_status_check_functions.php:35
|
668 |
+
msgid "Mollie Subscriptions Status"
|
669 |
+
msgstr "Mollie-abonnementenstatus"
|
670 |
+
|
671 |
+
#: src/subscriptions_status_check_functions.php:30
|
672 |
+
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
673 |
+
msgstr "Controles op abonnementen die verkeerd zijn ingesteld op 'Handmatige vernieuwing'. Lees eerst de"
|
674 |
+
|
675 |
+
#: src/Mollie/WC/Helper/Settings.php:464
|
676 |
+
msgid "Store customer details at Mollie"
|
677 |
+
msgstr "Klantgegevens opslaan bij Mollie"
|
678 |
+
|
679 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
680 |
+
#: src/Mollie/WC/Plugin.php:134
|
681 |
+
msgid "%s payment failed (%s)."
|
682 |
+
msgstr "%s betaling mislukt (%s)."
|
683 |
+
|
684 |
+
#: src/Mollie/WC/Gateway/Kbc.php:61
|
685 |
+
msgid "KBC/CBC Payment Button"
|
686 |
+
msgstr "KBC/CBC Betaalknop"
|
687 |
+
|
688 |
+
#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Giftcard.php:38
|
689 |
+
#: src/Mollie/WC/Gateway/Kbc.php:39
|
690 |
+
msgid "Issuers empty option"
|
691 |
+
msgstr "Optie uitgevers leeg"
|
692 |
+
|
693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:48
|
694 |
+
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."
|
695 |
+
msgstr "Activeer deze optie als je het doorsturen van je gebruiker naar het Mollie-betaalscherm wil overslaan. In plaats daarvan stuurt dit je gebruiker rechtstreeks naar de WooCommerce-pagina bestelling ontvangen met instructies voor het voltooien van de betaling via bankoverschrijving."
|
696 |
+
|
697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
698 |
+
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
699 |
+
msgstr "Sla Mollie-betaalscherm over wanneer bankoverschrijving is geselecteerd"
|
700 |
+
|
701 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:46
|
702 |
+
msgid "Skip Mollie payment screen"
|
703 |
+
msgstr "Mollie-betaalscherm overslaan"
|
704 |
+
|
705 |
+
#. Description of the plugin
|
706 |
+
msgid "Accept payments in WooCommerce with the official Mollie plugin"
|
707 |
+
msgstr "Accepteer betalingen in WooCommerce met de officiële Mollie-plugin"
|
708 |
+
|
709 |
+
#. Plugin URI of the plugin
|
710 |
+
#. Author URI of the plugin
|
711 |
+
msgid "https://www.mollie.com"
|
712 |
+
msgstr "https://www.mollie.com"
|
713 |
+
|
714 |
+
#. Author of the plugin
|
715 |
+
msgid "Mollie"
|
716 |
+
msgstr "Mollie"
|
717 |
+
|
718 |
+
#. Plugin Name of the plugin
|
719 |
+
msgid "Mollie Payments for WooCommerce"
|
720 |
+
msgstr "Mollie-betalingen voor WooCommerce"
|
721 |
+
|
722 |
+
#: src/Mollie/WC/Plugin.php:780
|
723 |
+
msgid "Logs"
|
724 |
+
msgstr "Logs"
|
725 |
+
|
726 |
+
#: src/Mollie/WC/Helper/Status.php:123
|
727 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
728 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL geactiveerd is. Activeer de 'curl' extensie in je PHP-configuratie"
|
729 |
+
|
730 |
+
#: src/Mollie/WC/Helper/Status.php:116
|
731 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
732 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON geactiveerd is. Activeer de 'json' extensie in je PHP-configuratie."
|
733 |
+
|
734 |
+
#: src/Mollie/WC/Helper/Status.php:80
|
735 |
+
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
736 |
+
msgstr "Mollie API client niet geïnstalleerd. Controleer of de plugin correct is geïnstalleerd."
|
737 |
+
|
738 |
+
#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce
|
739 |
+
#. version, placeholder 3: used WooCommerce version
|
740 |
+
#: src/Mollie/WC/Helper/Status.php:67
|
741 |
+
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
742 |
+
msgstr "De %s plugin vereist ten minste WooCommerce versie %s, je gebruikt versie %s. Update je WooCommerce plugin."
|
743 |
+
|
744 |
+
#: src/Mollie/WC/Helper/Settings.php:473
|
745 |
+
msgid "Debug Log"
|
746 |
+
msgstr "Debug-log"
|
747 |
+
|
748 |
+
#: src/Mollie/WC/Helper/Settings.php:437
|
749 |
+
msgid "French (Belgium)"
|
750 |
+
msgstr "Frans (België)"
|
751 |
+
|
752 |
+
#: src/Mollie/WC/Helper/Settings.php:436
|
753 |
+
msgid "French"
|
754 |
+
msgstr "Frans"
|
755 |
+
|
756 |
+
#: src/Mollie/WC/Helper/Settings.php:441
|
757 |
+
msgid "Spanish"
|
758 |
+
msgstr "Spaans"
|
759 |
+
|
760 |
+
#: src/Mollie/WC/Helper/Settings.php:438
|
761 |
+
msgid "German"
|
762 |
+
msgstr "Duits"
|
763 |
+
|
764 |
+
#: src/Mollie/WC/Helper/Settings.php:433
|
765 |
+
msgid "English"
|
766 |
+
msgstr "Engels"
|
767 |
+
|
768 |
+
#: src/Mollie/WC/Helper/Settings.php:435
|
769 |
+
msgid "Flemish (Belgium)"
|
770 |
+
msgstr "Vlaams (België)"
|
771 |
+
|
772 |
+
#: src/Mollie/WC/Helper/Settings.php:434
|
773 |
+
msgid "Dutch"
|
774 |
+
msgstr "Nederlands"
|
775 |
+
|
776 |
+
#: src/Mollie/WC/Helper/Settings.php:429
|
777 |
+
msgid "Detect using browser language"
|
778 |
+
msgstr "Detecteren met gebruik van browser-taal"
|
779 |
+
|
780 |
+
#: src/Mollie/WC/Helper/Settings.php:422
|
781 |
+
msgid "Payment screen language"
|
782 |
+
msgstr "Taal van betaalscherm"
|
783 |
+
|
784 |
+
#: src/Mollie/WC/Helper/Settings.php:403
|
785 |
+
msgid "Test API key should start with test_"
|
786 |
+
msgstr "Test API-sleutel moet beginnen met test_"
|
787 |
+
|
788 |
+
#: src/Mollie/WC/Helper/Settings.php:392
|
789 |
+
msgid "Test API key"
|
790 |
+
msgstr "Test API-sleutel"
|
791 |
+
|
792 |
+
#: src/Mollie/WC/Helper/Settings.php:388
|
793 |
+
msgid "Enable test mode if you want to test the plugin without using real payments."
|
794 |
+
msgstr "Activeer de testmodus als je de plugin wil testen zonder echte betalingen te gebruiken."
|
795 |
+
|
796 |
+
#: src/Mollie/WC/Helper/Settings.php:385
|
797 |
+
msgid "Enable test mode"
|
798 |
+
msgstr "Activeer de testmodus"
|
799 |
+
|
800 |
+
#: src/Mollie/WC/Helper/Settings.php:377
|
801 |
+
msgid "Live API key should start with live_"
|
802 |
+
msgstr "Live API-sleutel moet beginnen met live_"
|
803 |
+
|
804 |
+
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
805 |
+
#. %s's Will be replaced by a link to the Mollie profile
|
806 |
+
#: src/Mollie/WC/Helper/Settings.php:371 src/Mollie/WC/Helper/Settings.php:397
|
807 |
+
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
808 |
+
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"
|
809 |
+
|
810 |
+
#: src/Mollie/WC/Helper/Settings.php:366
|
811 |
+
msgid "Live API key"
|
812 |
+
msgstr "Live API-sleutel"
|
813 |
+
|
814 |
+
#: src/Mollie/WC/Helper/Settings.php:362
|
815 |
+
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
816 |
+
msgstr "De volgende opties zijn vereist om de plugin te gebruiken en worden door alle Mollie-betaalmethoden gebruikt"
|
817 |
+
|
818 |
+
#: src/Mollie/WC/Helper/Settings.php:359 src/Mollie/WC/Plugin.php:773
|
819 |
+
msgid "Mollie settings"
|
820 |
+
msgstr "Mollie-instellingen"
|
821 |
+
|
822 |
+
#. translators: Placeholder 1: Location of the log files
|
823 |
+
#: src/Mollie/WC/Helper/Settings.php:352
|
824 |
+
msgid "Log files are saved to <code>%s</code>"
|
825 |
+
msgstr "Logbestanden worden opgeslagen in <code>%s</code>"
|
826 |
+
|
827 |
+
#: src/Mollie/WC/Helper/Settings.php:346
|
828 |
+
msgid "View logs"
|
829 |
+
msgstr "Bekijk logs"
|
830 |
+
|
831 |
+
#: src/Mollie/WC/Helper/Settings.php:341
|
832 |
+
msgid "Log plugin events."
|
833 |
+
msgstr "Log plugin-gebeurtenissen"
|
834 |
+
|
835 |
+
#: src/Mollie/WC/Helper/Settings.php:301
|
836 |
+
msgid "Edit"
|
837 |
+
msgstr "Bewerken"
|
838 |
+
|
839 |
+
#: src/Mollie/WC/Helper/Settings.php:270
|
840 |
+
msgid "Refresh"
|
841 |
+
msgstr "Vernieuwen"
|
842 |
+
|
843 |
+
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
844 |
+
#. profile
|
845 |
+
#: src/Mollie/WC/Helper/Settings.php:261
|
846 |
+
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
847 |
+
msgstr "De volgende betaalmethoden zijn geactiveerd in je %sMollie-profiel%s:"
|
848 |
+
|
849 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
850 |
+
msgid "Gateway disabled"
|
851 |
+
msgstr "Gateway gedeactiveerd"
|
852 |
+
|
853 |
+
#. translators: Placeholder 1: enabled or disabled
|
854 |
+
#: src/Mollie/WC/Helper/Settings.php:250 src/Mollie/WC/Helper/Settings.php:466
|
855 |
+
msgid "Enabled"
|
856 |
+
msgstr "Geactiveerd"
|
857 |
+
|
858 |
+
#: src/Mollie/WC/Helper/Settings.php:250
|
859 |
+
msgid "Gateway enabled"
|
860 |
+
msgstr "Gateway geactiveerd"
|
861 |
+
|
862 |
+
#: src/Mollie/WC/Helper/Settings.php:207
|
863 |
+
msgid "Connected"
|
864 |
+
msgstr "Verbonden"
|
865 |
+
|
866 |
+
#: src/Mollie/WC/Helper/Settings.php:206
|
867 |
+
msgid "Mollie status:"
|
868 |
+
msgstr "Mollie-status:"
|
869 |
+
|
870 |
+
#: src/Mollie/WC/Helper/Settings.php:193
|
871 |
+
msgid "Error"
|
872 |
+
msgstr "Fout"
|
873 |
+
|
874 |
+
#: src/Mollie/WC/Helper/Data.php:613
|
875 |
+
msgid "Item #%s stock incremented from %s to %s."
|
876 |
+
msgstr "Item #%s voorraad verhoogd van %s naar %s."
|
877 |
+
|
878 |
+
#: src/Mollie/WC/Gateway/Sofort.php:33
|
879 |
+
msgid "SOFORT Banking"
|
880 |
+
msgstr "SOFORT Banking"
|
881 |
+
|
882 |
+
#: src/Mollie/WC/Gateway/Paysafecard.php:20
|
883 |
+
msgid "paysafecard"
|
884 |
+
msgstr "paysafecard"
|
885 |
+
|
886 |
+
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
887 |
+
#. email, placeholder 3: PayPal transaction ID
|
888 |
+
#: src/Mollie/WC/Gateway/PayPal.php:64
|
889 |
+
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
890 |
+
msgstr "Betaling voltooid met <strong>%s</strong> - %s (PayPal transactie-ID: %s)"
|
891 |
+
|
892 |
+
#: src/Mollie/WC/Gateway/PayPal.php:33
|
893 |
+
msgid "PayPal"
|
894 |
+
msgstr "PayPal"
|
895 |
+
|
896 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
897 |
+
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
898 |
+
#. drop down
|
899 |
+
#: src/Mollie/WC/Gateway/Ideal.php:77 src/Mollie/WC/Gateway/Kbc.php:77
|
900 |
+
msgid "Select your bank"
|
901 |
+
msgstr "Selecteer je bank"
|
902 |
+
|
903 |
+
#: src/Mollie/WC/Gateway/Ideal.php:61
|
904 |
+
msgid "iDEAL"
|
905 |
+
msgstr "iDEAL"
|
906 |
+
|
907 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:42
|
908 |
+
msgid "SEPA Direct Debit"
|
909 |
+
msgstr "SEPA-incasso"
|
910 |
+
|
911 |
+
#. translators: Placeholder 1: card holder
|
912 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:85
|
913 |
+
msgid "Payment completed by <strong>%s</strong>"
|
914 |
+
msgstr "Betaling voltooid met <strong>%s</strong>."
|
915 |
+
|
916 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:34
|
917 |
+
msgid "Credit card"
|
918 |
+
msgstr "Creditcard"
|
919 |
+
|
920 |
+
#: src/Mollie/WC/Gateway/Belfius.php:33
|
921 |
+
msgid "Belfius Direct Net"
|
922 |
+
msgstr "Belfius Direct Net"
|
923 |
+
|
924 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:220
|
925 |
+
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
926 |
+
msgstr "De betaling vervalt op <strong>%s</strong>. Zorg ervoor dat je vóór deze datum het totale bedrag overmaakt."
|
927 |
+
|
928 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:213
|
929 |
+
msgid "The payment will expire on <strong>%s</strong>."
|
930 |
+
msgstr "De betaling vervalt op <strong>%s</strong>."
|
931 |
+
|
932 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
933 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
934 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
935 |
+
msgid "Please provide the payment reference <strong>%s</strong>"
|
936 |
+
msgstr "Vermeld de betalingsreferentie <strong>%s</strong>"
|
937 |
+
|
938 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
939 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
940 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:193
|
941 |
+
msgid "Payment reference: %s"
|
942 |
+
msgstr "Betalingsreferentie: %s."
|
943 |
+
|
944 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
945 |
+
msgid "BIC: %s"
|
946 |
+
msgstr "BIC: %s"
|
947 |
+
|
948 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:187
|
949 |
+
msgid "IBAN: <strong>%s</strong>"
|
950 |
+
msgstr "IBAN: <strong>%s</strong>"
|
951 |
+
|
952 |
+
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
953 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:186
|
954 |
+
msgid "Beneficiary: %s"
|
955 |
+
msgstr "Begunstigde: %s"
|
956 |
+
|
957 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:182
|
958 |
+
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
959 |
+
msgstr "Voltooi je betaling door het totale bedrag over te maken naar de volgende bankrekening:"
|
960 |
+
|
961 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:122
|
962 |
+
msgid "Bank Transfer"
|
963 |
+
msgstr "Bankoverdracht"
|
964 |
+
|
965 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
966 |
+
msgid "Disabled"
|
967 |
+
msgstr "Uitgeschakeld"
|
968 |
+
|
969 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:37
|
970 |
+
msgid "Number of days after the payment will expire. Default <code>%d</code> days"
|
971 |
+
msgstr "Aantal dagen nadat de betaling vervalt. Standaard <code>%d</code> dagen"
|
972 |
+
|
973 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:35
|
974 |
+
msgid "Expiry date"
|
975 |
+
msgstr "Vervaldatum"
|
976 |
+
|
977 |
+
#. translators: Placeholder 1: payment method
|
978 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1508
|
979 |
+
msgid "Payment completed with <strong>%s</strong>"
|
980 |
+
msgstr "Betaling voltooid met <strong>%s</strong>"
|
981 |
+
|
982 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1501
|
983 |
+
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."
|
984 |
+
msgstr "We hebben geen definitieve betalingsstatus ontvangen. Je ontvangt een e-mail zodra we een bevestiging van de bank/handelaar ontvangen."
|
985 |
+
|
986 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1496
|
987 |
+
msgid "We have not received a definite payment status."
|
988 |
+
msgstr "We hebben geen definitieve betalingsstatus ontvangen."
|
989 |
+
|
990 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1271
|
991 |
+
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
992 |
+
msgstr "Je hebt je betaling geannuleerd. Vervolledig je bestelling met een andere betaalmethode."
|
993 |
+
|
994 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Payment/Payment.php:513
|
996 |
+
msgid "%s payment expired (%s)."
|
997 |
+
msgstr "%s betaling verlopen (%s)."
|
998 |
+
|
999 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1000 |
+
#: src/Mollie/WC/Payment/Order.php:295 src/Mollie/WC/Payment/Payment.php:241
|
1001 |
+
msgid "Order completed using %s payment (%s)."
|
1002 |
+
msgstr "Bestelling voltooid met gebruik van %s betaling (%s)."
|
1003 |
+
|
1004 |
+
#. translators: Placeholder 1: Payment method title
|
1005 |
+
#: src/Mollie/WC/Gateway/Abstract.php:678
|
1006 |
+
msgid "Could not create %s payment."
|
1007 |
+
msgstr "Kon geen %s betaling aanmaken."
|
1008 |
+
|
1009 |
+
#: src/Mollie/WC/Payment/Order.php:297 src/Mollie/WC/Payment/Order.php:368
|
1010 |
+
#: src/Mollie/WC/Payment/Order.php:440 src/Mollie/WC/Payment/Order.php:550
|
1011 |
+
#: src/Mollie/WC/Payment/Order.php:608 src/Mollie/WC/Payment/Order.php:632
|
1012 |
+
#: src/Mollie/WC/Payment/Order.php:669 src/Mollie/WC/Payment/Order.php:710
|
1013 |
+
#: src/Mollie/WC/Payment/Payment.php:243 src/Mollie/WC/Payment/Payment.php:353
|
1014 |
+
#: src/Mollie/WC/Payment/Payment.php:411 src/Mollie/WC/Payment/Payment.php:434
|
1015 |
+
#: src/Mollie/WC/Payment/Payment.php:474 src/Mollie/WC/Payment/Payment.php:515
|
1016 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1017 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1018 |
+
#: src/Mollie/WC/Gateway/Abstract.php:656
|
1019 |
+
#: src/Mollie/WC/Gateway/Abstract.php:938
|
1020 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1167
|
1021 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1208
|
1022 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1597
|
1023 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:466
|
1024 |
+
msgid "test mode"
|
1025 |
+
msgstr "testmodus"
|
1026 |
+
|
1027 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1028 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1029 |
+
#: src/Mollie/WC/Gateway/Abstract.php:654
|
1030 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1031 |
+
msgid "%s payment started (%s)."
|
1032 |
+
msgstr "%s betaling gestart (%s)."
|
1033 |
+
|
1034 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1035 |
+
#: src/Mollie/WC/Gateway/Abstract.php:644
|
1036 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1037 |
+
msgid "Awaiting payment confirmation."
|
1038 |
+
msgstr "In afwachting van betalingsbevestiging"
|
1039 |
+
|
1040 |
+
#: src/Mollie/WC/Gateway/Abstract.php:402
|
1041 |
+
msgid "Could not load order %s"
|
1042 |
+
msgstr "Kon bestelling %s niet laden"
|
1043 |
+
|
1044 |
+
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1045 |
+
#. be replaced by a link to the Mollie profile
|
1046 |
+
#: src/Mollie/WC/Gateway/Abstract.php:238
|
1047 |
+
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1048 |
+
msgstr "%s niet geactiveerd in je Mollie-profiel. Je kunt het activeren door je %sMollie profiel%s te bewerken."
|
1049 |
+
|
1050 |
+
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1051 |
+
#. setting page
|
1052 |
+
#: src/Mollie/WC/Gateway/Abstract.php:226
|
1053 |
+
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1054 |
+
msgstr "Geen API key ingevuld. %sPlaats eerst je Mollie API-sleutel%s."
|
1055 |
+
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:181
|
1057 |
+
msgid "Gateway Disabled"
|
1058 |
+
msgstr "Gateway gedeactiveerd"
|
1059 |
+
|
1060 |
+
#: src/Mollie/WC/Helper/Settings.php:256 src/Mollie/WC/Gateway/Abstract.php:224
|
1061 |
+
msgid "Test mode enabled."
|
1062 |
+
msgstr "Testmodus geactiveerd."
|
1063 |
+
|
1064 |
+
#: src/Mollie/WC/Gateway/Abstract.php:143
|
1065 |
+
msgid "Hold Stock (minutes)"
|
1066 |
+
msgstr "Houd voorraad aan (minuten)"
|
1067 |
+
|
1068 |
+
#: src/Mollie/WC/Gateway/Abstract.php:141
|
1069 |
+
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."
|
1070 |
+
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."
|
1071 |
+
|
1072 |
+
#: src/Mollie/WC/Helper/Settings.php:428 src/Mollie/WC/Gateway/Abstract.php:135
|
1073 |
+
msgid "default"
|
1074 |
+
msgstr "standaard"
|
1075 |
+
|
1076 |
+
#: src/Mollie/WC/Gateway/Abstract.php:132
|
1077 |
+
msgid "Initial order status"
|
1078 |
+
msgstr "Initiële bestelstatus"
|
1079 |
+
|
1080 |
+
#: src/Mollie/WC/Gateway/Abstract.php:123
|
1081 |
+
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1082 |
+
msgstr "Beschrijving van de betaalmethode die de klant bij je betaalpagina zal zien. Standaard <code>%s</code>"
|
1083 |
+
|
1084 |
+
#: src/Mollie/WC/Gateway/Abstract.php:121
|
1085 |
+
msgid "Description"
|
1086 |
+
msgstr "Beschrijving"
|
1087 |
+
|
1088 |
+
#: src/Mollie/WC/Gateway/Abstract.php:117
|
1089 |
+
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1090 |
+
msgstr "Toon logo op de betaalpagina. Standaard <code>ingeschakeld</code>"
|
1091 |
+
|
1092 |
+
#: src/Mollie/WC/Gateway/Abstract.php:115
|
1093 |
+
msgid "Display logo"
|
1094 |
+
msgstr "Toon logo"
|
1095 |
+
|
1096 |
+
#: src/Mollie/WC/Gateway/Abstract.php:110
|
1097 |
+
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1098 |
+
msgstr "Dit controleert de titel die de gebruiker ziet tijdens het betalen. Standaard <code>%s</code>"
|
1099 |
+
|
1100 |
+
#: src/Mollie/WC/Gateway/Abstract.php:108
|
1101 |
+
msgid "Title"
|
1102 |
+
msgstr "Titel"
|
1103 |
+
|
1104 |
+
#: src/Mollie/WC/Gateway/Abstract.php:104
|
1105 |
+
msgid "Enable %s"
|
1106 |
+
msgstr "Geactiveerd %s"
|
1107 |
+
|
1108 |
+
#: src/Mollie/WC/Gateway/Abstract.php:102
|
1109 |
+
msgid "Enable/Disable"
|
1110 |
+
msgstr "Activeren/Deactiveren"
|
languages/mollie-payments-for-woocommerce-nl_NL_formal.mo
ADDED
Binary file
|
languages/mollie-payments-for-woocommerce-nl_NL_formal.po
ADDED
@@ -0,0 +1,1110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Mollie Payments for WooCommerce - Development (trunk) in Dutch
|
2 |
+
# This file is distributed under the same license as the Plugins - Mollie Payments for WooCommerce - Development (trunk) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2020-05-20 14:48+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/2.4.0-alpha\n"
|
11 |
+
"Language: nl\n"
|
12 |
+
"Project-Id-Version: Plugins - Mollie Payments for WooCommerce - Development (trunk)\n"
|
13 |
+
|
14 |
+
#: inc/settings/mollie_components_enabler.php:7
|
15 |
+
msgid "Enable the Mollie Components for this Gateway"
|
16 |
+
msgstr "Activeer de Mollie-componenten voor deze gateway"
|
17 |
+
|
18 |
+
#: inc/settings/mollie_components_enabler.php:6
|
19 |
+
msgid "Enable Mollie Components"
|
20 |
+
msgstr "Activeer Mollie-componenten"
|
21 |
+
|
22 |
+
#: inc/settings/mollie_components.php:157
|
23 |
+
msgctxt "Mollie Components Settings"
|
24 |
+
msgid "Background Color for invalid input."
|
25 |
+
msgstr "Achtergrondkleur voor ongeldige invoer"
|
26 |
+
|
27 |
+
#: inc/settings/mollie_components.php:146
|
28 |
+
msgctxt "Mollie Components Settings"
|
29 |
+
msgid "Text Color for invalid input."
|
30 |
+
msgstr "Tekstkleur voor ongeldige invoer"
|
31 |
+
|
32 |
+
#: inc/settings/mollie_components.php:136
|
33 |
+
msgctxt "Mollie Components Settings"
|
34 |
+
msgid "Invalid Status Styles"
|
35 |
+
msgstr "Ongeldige statusstijlen"
|
36 |
+
|
37 |
+
#: inc/settings/mollie_components.php:122
|
38 |
+
msgctxt "Mollie Components Settings"
|
39 |
+
msgid "Full Size Kana"
|
40 |
+
msgstr "Volledige grootte Kana"
|
41 |
+
|
42 |
+
#: inc/settings/mollie_components.php:117
|
43 |
+
msgctxt "Mollie Components Settings"
|
44 |
+
msgid "Full Width"
|
45 |
+
msgstr "Volledige breedte"
|
46 |
+
|
47 |
+
#: inc/settings/mollie_components.php:112
|
48 |
+
msgctxt "Mollie Components Settings"
|
49 |
+
msgid "Lowercase"
|
50 |
+
msgstr "Kleine letters"
|
51 |
+
|
52 |
+
#: inc/settings/mollie_components.php:107
|
53 |
+
msgctxt "Mollie Components Settings"
|
54 |
+
msgid "Uppercase"
|
55 |
+
msgstr "Hoofdletters"
|
56 |
+
|
57 |
+
#: inc/settings/mollie_components.php:102
|
58 |
+
msgctxt "Mollie Components Settings"
|
59 |
+
msgid "Capitalize"
|
60 |
+
msgstr "In hoofdletters schrijven"
|
61 |
+
|
62 |
+
#: inc/settings/mollie_components.php:97
|
63 |
+
msgctxt "Mollie Components Settings"
|
64 |
+
msgid "None"
|
65 |
+
msgstr "Geen"
|
66 |
+
|
67 |
+
#: inc/settings/mollie_components.php:94
|
68 |
+
msgctxt "Mollie Components Settings"
|
69 |
+
msgid "Transform Text"
|
70 |
+
msgstr "Teksttransformatie"
|
71 |
+
|
72 |
+
#: inc/settings/mollie_components.php:88
|
73 |
+
msgctxt "Mollie Components Settings"
|
74 |
+
msgid "Justify"
|
75 |
+
msgstr "Rechtvaardigen"
|
76 |
+
|
77 |
+
#: inc/settings/mollie_components.php:87
|
78 |
+
msgctxt "Mollie Components Settings"
|
79 |
+
msgid "Center"
|
80 |
+
msgstr "Centrum"
|
81 |
+
|
82 |
+
#: inc/settings/mollie_components.php:86
|
83 |
+
msgctxt "Mollie Components Settings"
|
84 |
+
msgid "Right"
|
85 |
+
msgstr "Rechts"
|
86 |
+
|
87 |
+
#: inc/settings/mollie_components.php:85
|
88 |
+
msgctxt "Mollie Components Settings"
|
89 |
+
msgid "Left"
|
90 |
+
msgstr "Links"
|
91 |
+
|
92 |
+
#: inc/settings/mollie_components.php:82
|
93 |
+
msgctxt "Mollie Components Settings"
|
94 |
+
msgid "Align Text"
|
95 |
+
msgstr "Tekst uitlijnen"
|
96 |
+
|
97 |
+
#: inc/settings/mollie_components.php:72
|
98 |
+
msgctxt "Mollie Components Settings"
|
99 |
+
msgid "Add padding to the components. Allowed units include `16px 16px 16px 16px` and `em`, `px`, `rem`."
|
100 |
+
msgstr "Voeg vulling toe aan de componenten. Bv. `16px 16px 16px 16px` en `em`, `px`, `rem` eenheden zijn toegestaan."
|
101 |
+
|
102 |
+
#: inc/settings/mollie_components.php:71
|
103 |
+
msgctxt "Mollie Components Settings"
|
104 |
+
msgid "Padding"
|
105 |
+
msgstr "Vulling"
|
106 |
+
|
107 |
+
#: inc/settings/mollie_components.php:62
|
108 |
+
msgctxt "Mollie Components Settings"
|
109 |
+
msgid "Line Height"
|
110 |
+
msgstr "Regelhoogte"
|
111 |
+
|
112 |
+
#: inc/settings/mollie_components.php:56
|
113 |
+
msgctxt "Mollie Components Settings"
|
114 |
+
msgid "Letter Spacing"
|
115 |
+
msgstr "Letterafstand"
|
116 |
+
|
117 |
+
#: inc/settings/mollie_components.php:50
|
118 |
+
msgctxt "Mollie Components Settings"
|
119 |
+
msgid "Bold"
|
120 |
+
msgstr "Vet"
|
121 |
+
|
122 |
+
#: inc/settings/mollie_components.php:49
|
123 |
+
msgctxt "Mollie Components Settings"
|
124 |
+
msgid "Regular"
|
125 |
+
msgstr "Normaal"
|
126 |
+
|
127 |
+
#: inc/settings/mollie_components.php:48
|
128 |
+
msgctxt "Mollie Components Settings"
|
129 |
+
msgid "Lighter"
|
130 |
+
msgstr "Lichter"
|
131 |
+
|
132 |
+
#: inc/settings/mollie_components.php:45
|
133 |
+
msgctxt "Mollie Components Settings"
|
134 |
+
msgid "Font Weight"
|
135 |
+
msgstr "Lettergewicht"
|
136 |
+
|
137 |
+
#: inc/settings/mollie_components.php:35
|
138 |
+
msgctxt "Mollie Components Settings"
|
139 |
+
msgid "Defines the component font size. Allowed units: 'em', 'px', 'rem'."
|
140 |
+
msgstr "De lettergrootte bepaalt de grootte van het lettertype in de componenten. `em`, `px`, `rem` eenheden zijn toegestaan."
|
141 |
+
|
142 |
+
#: inc/settings/mollie_components.php:34
|
143 |
+
msgctxt "Mollie Components Settings"
|
144 |
+
msgid "Font Size"
|
145 |
+
msgstr "Lettergrootte"
|
146 |
+
|
147 |
+
#: inc/settings/mollie_components.php:28
|
148 |
+
msgctxt "Mollie Components Settings"
|
149 |
+
msgid "Placeholder Color"
|
150 |
+
msgstr "Kleur van de plaatshouder"
|
151 |
+
|
152 |
+
#: inc/settings/mollie_components.php:22 inc/settings/mollie_components.php:145
|
153 |
+
msgctxt "Mollie Components Settings"
|
154 |
+
msgid "Text Color"
|
155 |
+
msgstr "Tekstkleur"
|
156 |
+
|
157 |
+
#: inc/settings/mollie_components.php:16 inc/settings/mollie_components.php:156
|
158 |
+
msgctxt "Mollie Components Settings"
|
159 |
+
msgid "Background Color"
|
160 |
+
msgstr "Achtergrondkleur"
|
161 |
+
|
162 |
+
#: inc/settings/mollie_components.php:7
|
163 |
+
msgctxt "Mollie Components Settings"
|
164 |
+
msgid "Base Styles"
|
165 |
+
msgstr "Basisstijlen"
|
166 |
+
|
167 |
+
#: src/Mollie/WC/Gateway/Abstract.php:2056
|
168 |
+
msgid "Secure payments provided by "
|
169 |
+
msgstr "Beveiligde betalingen verschaft door "
|
170 |
+
|
171 |
+
#: src/Mollie/WC/Plugin.php:431
|
172 |
+
msgid "An unknown error occurred, please check the card fields."
|
173 |
+
msgstr "Er is een onbekende fout opgetreden, controleer de kaartvelden."
|
174 |
+
|
175 |
+
#: src/Mollie/WC/Plugin.php:424
|
176 |
+
msgid "Verification Code"
|
177 |
+
msgstr "Verificatiecode"
|
178 |
+
|
179 |
+
#: src/Mollie/WC/Plugin.php:420
|
180 |
+
msgid "Expiry Date"
|
181 |
+
msgstr "Vervaldatum"
|
182 |
+
|
183 |
+
#: src/Mollie/WC/Plugin.php:412
|
184 |
+
msgid "Card Holder"
|
185 |
+
msgstr "Kaarthouder"
|
186 |
+
|
187 |
+
#: src/Mollie/WC/Settings/Page/Components.php:10
|
188 |
+
msgid "Mollie Components"
|
189 |
+
msgstr "Mollie-componenten"
|
190 |
+
|
191 |
+
#: src/Mollie/WC/Plugin.php:416
|
192 |
+
msgid "Card Number"
|
193 |
+
msgstr "Kaartnummer"
|
194 |
+
|
195 |
+
#: src/Mollie/WC/Plugin.php:306
|
196 |
+
msgid "%1$s items cancelled in WooCommerce and at Mollie."
|
197 |
+
msgstr "%1$s artikelen geannuleerd in WooCommerce en bij Mollie."
|
198 |
+
|
199 |
+
#: src/Mollie/WC/Plugin.php:288
|
200 |
+
msgid "%1$s items refunded in WooCommerce and at Mollie."
|
201 |
+
msgstr "%1$s artikelen terugbetaald in WooCommerce en bij Mollie."
|
202 |
+
|
203 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:183
|
204 |
+
msgid "Empty WooCommerce order items or mollie order lines."
|
205 |
+
msgstr "Lege Woocommerce bestelartikelen of Mollie-bestellijnen."
|
206 |
+
|
207 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:157
|
208 |
+
msgid "Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount."
|
209 |
+
msgstr "Onmogelijk om de bestelartikel-id met betrekking tot het afstandsartikel terug te halen: %1$s Probeer een terugbetaling te doen per bedrag."
|
210 |
+
|
211 |
+
#: src/Mollie/WC/Payment/OrderItemsRefunder.php:109
|
212 |
+
msgid "One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item."
|
213 |
+
msgstr "Een van de WooCommerce-bestelartikelen heeft niet de metawaarde van het terugbetaalartikel dat aan het Mollie-bestelartikel is gekoppeld."
|
214 |
+
|
215 |
+
#: src/Mollie/WC/Payment/RefundLineItemsBuilder.php:115
|
216 |
+
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."
|
217 |
+
msgstr "Mollie staat geen gedeeltelijke terugbetaling toe van het volledige bedrag of hoeveelheid van ten minste één bestelregel. In plaats daarvan aan het proberen dit te verwerken als een terugbetaling van bedrag."
|
218 |
+
|
219 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
220 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:159
|
221 |
+
msgid "Order completed using %1$s payment (%2$s)."
|
222 |
+
msgstr "Bestelling voltooid met gebruik van %1$s betaling (%2$s)."
|
223 |
+
|
224 |
+
#. translators: Placeholder 1: MyBank consumer name, placeholder 2: Consumer
|
225 |
+
#. Account number
|
226 |
+
#: src/Mollie/WC/Gateway/MyBank.php:73
|
227 |
+
msgid "Payment completed by <strong>%1$s</strong> - %2$s"
|
228 |
+
msgstr "Betaling voltooid met <strong>%1$s</strong> - %2$s"
|
229 |
+
|
230 |
+
#: src/Mollie/WC/Gateway/MyBank.php:44
|
231 |
+
msgid "To accept payments via MyBank"
|
232 |
+
msgstr "Om betalingen te accepteren via MyBank"
|
233 |
+
|
234 |
+
#: src/Mollie/WC/Gateway/MyBank.php:36
|
235 |
+
msgid "MyBank"
|
236 |
+
msgstr "MyBank"
|
237 |
+
|
238 |
+
#: src/Mollie/WC/Gateway/Applepay.php:45
|
239 |
+
msgid "To accept payments via Apple Pay"
|
240 |
+
msgstr "Om betalingen te accepteren via Apple Pay"
|
241 |
+
|
242 |
+
#: src/Mollie/WC/Gateway/Applepay.php:37
|
243 |
+
msgid "Apple Pay"
|
244 |
+
msgstr "Apple Pay"
|
245 |
+
|
246 |
+
#. translators: Placeholder 1: customer billing email
|
247 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:64
|
248 |
+
msgid "Payment completed by <strong>%s</strong>."
|
249 |
+
msgstr "Betaling voltooid met <strong>%s</strong>."
|
250 |
+
|
251 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:40
|
252 |
+
msgid "To accept payments via Przelewy24, a customer email is required for every payment."
|
253 |
+
msgstr "Om betalingen via Przelewy24 te accepteren, is voor elke betaling een e-mail van de klant vereist."
|
254 |
+
|
255 |
+
#: src/Mollie/WC/Gateway/Przelewy24.php:33
|
256 |
+
msgid "Przelewy24"
|
257 |
+
msgstr "Przelewy24"
|
258 |
+
|
259 |
+
#: src/Mollie/WC/Helper/Status.php:89 mollie-payments-for-WooCommerce.php:83
|
260 |
+
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."
|
261 |
+
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."
|
262 |
+
|
263 |
+
#: src/Mollie/WC/Payment/Order.php:1029
|
264 |
+
msgid "Amount refund of %s%s refunded in WooCommerce and at Mollie.%s Refund ID: %s."
|
265 |
+
msgstr "Terugbetaling van %s%s terugbetaald in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s."
|
266 |
+
|
267 |
+
#: src/Mollie/WC/Payment/Order.php:946
|
268 |
+
msgid "%sx %s refunded for %s%s in WooCommerce and at Mollie.%s Refund ID: %s."
|
269 |
+
msgstr "%sx %s terugbetaald voor %s%s in WooCommerce en bij Mollie.%s Terugbetalings-ID: %s."
|
270 |
+
|
271 |
+
#: src/Mollie/WC/Payment/Order.php:930
|
272 |
+
msgid "%sx %s cancelled for %s%s in WooCommerce and at Mollie."
|
273 |
+
msgstr "%sx %s geannuleerd voor %s%s in WooCommerce en bij Mollie."
|
274 |
+
|
275 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
276 |
+
#: src/Mollie/WC/Payment/Order.php:438
|
277 |
+
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!"
|
278 |
+
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!"
|
279 |
+
|
280 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
281 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1206
|
282 |
+
msgid "%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use them)."
|
283 |
+
msgstr "%s betaling teruggevorderd via Mollie (%s). Abonnementstatus geüpdatet, gelieve te beoordelen (en productvoorraden aan te passen als u dit gebruikt)."
|
284 |
+
|
285 |
+
#: src/Mollie/WC/Helper/Settings.php:624
|
286 |
+
msgid "To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case."
|
287 |
+
msgstr "Om Klarna-betalingen via Mollie te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn. Controleer of dit het geval is."
|
288 |
+
|
289 |
+
#: src/Mollie/WC/Payment/Payment.php:39
|
290 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:72
|
291 |
+
msgid "Order"
|
292 |
+
msgstr "Bestelling"
|
293 |
+
|
294 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
295 |
+
#: src/Mollie/WC/Payment/Payment.php:351
|
296 |
+
msgid "%s payment (%s) cancelled ."
|
297 |
+
msgstr "%s betaling (%s) geannuleerd."
|
298 |
+
|
299 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
300 |
+
#: src/Mollie/WC/Payment/Order.php:708
|
301 |
+
msgid "%s order (%s) expired ."
|
302 |
+
msgstr "%s bestelling (%s) verlopen."
|
303 |
+
|
304 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
305 |
+
#: src/Mollie/WC/Payment/Order.php:667
|
306 |
+
msgid "%s order expired (%s) but not cancelled because of another pending payment (%s)."
|
307 |
+
msgstr "%s bestelling verlopen (%s) maar bestelling niet geannuleerd wegens een andere hangende betaling (%s)."
|
308 |
+
|
309 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
310 |
+
#: src/Mollie/WC/Payment/Order.php:548
|
311 |
+
msgid "%s order (%s) cancelled ."
|
312 |
+
msgstr "%s bestelling (%s) geannuleerd."
|
313 |
+
|
314 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
315 |
+
#: src/Mollie/WC/Payment/Order.php:366
|
316 |
+
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."
|
317 |
+
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 verloopt de bestelling. Voor het afhandelen van afzonderlijke bestelregels, dient u de bestelling via het Mollie Dashboard te verwerken."
|
318 |
+
|
319 |
+
#: src/Mollie/WC/Helper/Settings.php:649
|
320 |
+
msgid "To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s."
|
321 |
+
msgstr "Om Klarna-betalingen via Mollie te accepteren, moet u ten minste WooCommerce 3.0 of hoger gebruiken. Nu gebruikt u versie %s."
|
322 |
+
|
323 |
+
#: src/Mollie/WC/Helper/Settings.php:456
|
324 |
+
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."
|
325 |
+
msgstr "Het verzenden van een taal (of locatie) is vereist. De optie 'Automatisch verzenden van WordPress-taal' zal proberen de taal van de klant in WordPress te krijgen (en respecteert meertalige plugins) en deze te converteren naar een formaat dat Mollie begrijpt. Als dit niet lukt, of als de taal niet wordt ondersteund, zal teruggegaan worden naar Amerikaans-Engels. U kunt ook een van de momenteel door Mollie ondersteunde locaties selecteren, die dan voor alle klanten zal worden gebruikt."
|
326 |
+
|
327 |
+
#: src/Mollie/WC/Helper/Settings.php:425
|
328 |
+
msgid "Automatically send WordPress language"
|
329 |
+
msgstr "Automatisch verzenden van WordPress-taal"
|
330 |
+
|
331 |
+
#: src/Mollie/WC/Helper/Settings.php:417
|
332 |
+
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."
|
333 |
+
msgstr "Status voor bestellingen wanneer een betaling (niet een Mollie-besteling via de Bestellingen API) wordt geannuleerd. Standaard: hangende. Bestellingen met status Hangende kunnen met een andere betaalmethode worden betaald, klanten kunnen opnieuw proberen. Geannuleerde bestellingen zijn definitief. Stel dit in op Geannuleerd als 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."
|
334 |
+
|
335 |
+
#: src/Mollie/WC/Helper/OrderLines.php:407
|
336 |
+
msgid "Shipping"
|
337 |
+
msgstr "Verzending"
|
338 |
+
|
339 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:33
|
340 |
+
msgid "Klarna Slice it"
|
341 |
+
msgstr "Klarna Slice it"
|
342 |
+
|
343 |
+
#: src/Mollie/WC/Gateway/KlarnaSliceIt.php:40
|
344 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:40
|
345 |
+
msgid "To accept payments via Klarna, all default WooCommerce checkout fields should be enabled and required."
|
346 |
+
msgstr "Om betalingen via Klarna te accepteren, moeten alle standaard WooCommerce-afrekenvelden geactiveerd en vereist zijn."
|
347 |
+
|
348 |
+
#: src/Mollie/WC/Gateway/KlarnaPayLater.php:33
|
349 |
+
msgid "Klarna Pay later"
|
350 |
+
msgstr "Klarna betaal later"
|
351 |
+
|
352 |
+
#: src/Mollie/WC/Helper/Status.php:131
|
353 |
+
msgid "Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available."
|
354 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat PHP cURL functies beschikbaar zijn. Zorg ervoor dat al deze functies beschikbaar zijn."
|
355 |
+
|
356 |
+
#. translators: Placeholder 1: Required PHP version, placeholder 2: current PHP
|
357 |
+
#. version
|
358 |
+
#: src/Mollie/WC/Helper/Status.php:104
|
359 |
+
msgid "Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s"
|
360 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen PHP %s of hoger, u heeft PHP %s. Installeer de upgrade en bekijk %sdeze FAQ%s"
|
361 |
+
|
362 |
+
#: src/Mollie/WC/Helper/Settings.php:600
|
363 |
+
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."
|
364 |
+
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 uit te schakelen om mogelijke conflicten te voorkomen."
|
365 |
+
|
366 |
+
#: src/Mollie/WC/Helper/Settings.php:576
|
367 |
+
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."
|
368 |
+
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."
|
369 |
+
|
370 |
+
#: src/Mollie/WC/Helper/Settings.php:453
|
371 |
+
msgid "Lithuanian"
|
372 |
+
msgstr "Litouws"
|
373 |
+
|
374 |
+
#: src/Mollie/WC/Helper/Settings.php:452
|
375 |
+
msgid "Latvian"
|
376 |
+
msgstr "Lets"
|
377 |
+
|
378 |
+
#: src/Mollie/WC/Helper/Settings.php:451
|
379 |
+
msgid "Polish"
|
380 |
+
msgstr "Pools"
|
381 |
+
|
382 |
+
#: src/Mollie/WC/Helper/Settings.php:450
|
383 |
+
msgid "Hungarian"
|
384 |
+
msgstr "Hongaars"
|
385 |
+
|
386 |
+
#: src/Mollie/WC/Helper/Settings.php:449
|
387 |
+
msgid "Icelandic"
|
388 |
+
msgstr "Ijslands"
|
389 |
+
|
390 |
+
#: src/Mollie/WC/Helper/Settings.php:448
|
391 |
+
msgid "Danish"
|
392 |
+
msgstr "Deens"
|
393 |
+
|
394 |
+
#: src/Mollie/WC/Helper/Settings.php:447
|
395 |
+
msgid "Finnish"
|
396 |
+
msgstr "Fins"
|
397 |
+
|
398 |
+
#: src/Mollie/WC/Helper/Settings.php:446
|
399 |
+
msgid "Swedish"
|
400 |
+
msgstr "Zweeds"
|
401 |
+
|
402 |
+
#: src/Mollie/WC/Helper/Settings.php:445
|
403 |
+
msgid "Norwegian"
|
404 |
+
msgstr "Noors"
|
405 |
+
|
406 |
+
#: src/Mollie/WC/Helper/Settings.php:444
|
407 |
+
msgid "Italian"
|
408 |
+
msgstr "Italiaans"
|
409 |
+
|
410 |
+
#: src/Mollie/WC/Helper/Settings.php:443
|
411 |
+
msgid "Portuguese"
|
412 |
+
msgstr "Portugees"
|
413 |
+
|
414 |
+
#: src/Mollie/WC/Helper/Settings.php:442
|
415 |
+
msgid "Catalan"
|
416 |
+
msgstr "Catalaans"
|
417 |
+
|
418 |
+
#: src/Mollie/WC/Helper/Settings.php:440
|
419 |
+
msgid "Swiss German"
|
420 |
+
msgstr "Zwitserduits"
|
421 |
+
|
422 |
+
#: src/Mollie/WC/Helper/Settings.php:439
|
423 |
+
msgid "Austrian German"
|
424 |
+
msgstr "Oostenrijks-Duits"
|
425 |
+
|
426 |
+
#: src/Mollie/WC/Helper/Api.php:41
|
427 |
+
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."
|
428 |
+
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."
|
429 |
+
|
430 |
+
#: src/Mollie/WC/Helper/Api.php:39
|
431 |
+
msgid "No API key provided. Please set your Mollie API keys below."
|
432 |
+
msgstr "Geen API-sleutel verschaft. Plaats uw Mollie API-sleutels hieronder."
|
433 |
+
|
434 |
+
#: src/Mollie/WC/Gateway/Giropay.php:29
|
435 |
+
msgid "Giropay"
|
436 |
+
msgstr "Giropay"
|
437 |
+
|
438 |
+
#: src/Mollie/WC/Gateway/EPS.php:29
|
439 |
+
msgid "EPS"
|
440 |
+
msgstr "EPS"
|
441 |
+
|
442 |
+
#. translators: Placeholder 1: Payment method title
|
443 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:325
|
444 |
+
msgid "Could not create %s renewal payment."
|
445 |
+
msgstr "Kon geen %s betalingshernieuwing aanmaken."
|
446 |
+
|
447 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:282
|
448 |
+
msgid "The customer (%s) does not have a valid mandate."
|
449 |
+
msgstr "De klant (%s) heeft geen geldig mandaat."
|
450 |
+
|
451 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:273
|
452 |
+
msgid "The customer (%s) could not be used or found. "
|
453 |
+
msgstr "De klant (%s) kon niet gebruikt of gevonden worden. "
|
454 |
+
|
455 |
+
#. translators: Placeholder 1: currency, placeholder 2: refunded amount,
|
456 |
+
#. placeholder 3: optional refund reason, placeholder 4: payment ID,
|
457 |
+
#. placeholder 5: refund ID
|
458 |
+
#: src/Mollie/WC/Payment/Payment.php:595
|
459 |
+
msgid "Refunded %s%s%s - Payment: %s, Refund: %s"
|
460 |
+
msgstr "Terugbetaald %s%s%s - Betaling: %s, Terugbetaling: %s"
|
461 |
+
|
462 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1137
|
463 |
+
msgid "New chargeback %s processed! Order note and order status updated."
|
464 |
+
msgstr "Nieuwe terugboeking %s verwerkt! Bestelnota en bestelstatus bijgewerkt."
|
465 |
+
|
466 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1038
|
467 |
+
msgid "New refund %s processed in Mollie Dashboard! Order note added, but order not updated."
|
468 |
+
msgstr "Nieuwe terugbetaling %s verwerkt in Mollie Dashboard! Bestelnota toegevoegd, maar bestelling niet geüpdatet."
|
469 |
+
|
470 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
471 |
+
#: src/Mollie/WC/Payment/Order.php:630 src/Mollie/WC/Payment/Payment.php:432
|
472 |
+
msgid "%s payment failed via Mollie (%s)."
|
473 |
+
msgstr "%s betaling mislukt via Mollie (%s)."
|
474 |
+
|
475 |
+
#. translators: Placeholder 1: WooCommerce currency, placeholder 2: Supported
|
476 |
+
#. Mollie currencies
|
477 |
+
#: src/Mollie/WC/Gateway/Abstract.php:250
|
478 |
+
msgid "Current shop currency %s not supported by Mollie. Read more about %ssupported currencies and payment methods.%s "
|
479 |
+
msgstr "Huidige shopvaluta %s niet ondersteund door Mollie. Lees meer over %sondersteunde valuta's en betaalmethoden.%s "
|
480 |
+
|
481 |
+
#: mollie-payments-for-WooCommerce.php:105
|
482 |
+
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."
|
483 |
+
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."
|
484 |
+
|
485 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
486 |
+
#: src/Mollie/WC/Payment/Order.php:540 src/Mollie/WC/Payment/Order.php:701
|
487 |
+
#: src/Mollie/WC/Payment/Payment.php:343 src/Mollie/WC/Payment/Payment.php:506
|
488 |
+
msgid "Mollie webhook called, but payment also started via %s, so the order status is not updated."
|
489 |
+
msgstr "Mollie-webhook heeft gebeld, maar betaling is ook gestart via %s, dus de bestellingsstatus is niet geüpdatet."
|
490 |
+
|
491 |
+
#. translators: Placeholder 1: enabled or disabled
|
492 |
+
#: src/Mollie/WC/Helper/Settings.php:466
|
493 |
+
msgid "Should Mollie store customers name and email address for Single Click Payments? Default <code>%s</code>. Required if WooCommerce Subscriptions is being used!"
|
494 |
+
msgstr "Moet Mollie klantennaam en e-mailadres opslaan voor Single Click Payments? Standaard <code>%s</code>. Vereist als WooCommerce Abonnementen worden gebruikt!"
|
495 |
+
|
496 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1289
|
497 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1297
|
498 |
+
msgid "Your payment was not successful. Please complete your order with a different payment method."
|
499 |
+
msgstr "Uw betaling is niet gelukt. Vervolledig uw bestelling met een andere betaalmethode."
|
500 |
+
|
501 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
502 |
+
#: src/Mollie/WC/Payment/Order.php:606 src/Mollie/WC/Payment/Payment.php:409
|
503 |
+
msgid "%s renewal payment failed via Mollie (%s). You will need to manually review the payment and adjust product stocks if you use them."
|
504 |
+
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."
|
505 |
+
|
506 |
+
#: src/Mollie/WC/Gateway/MisterCash.php:42
|
507 |
+
#: src/Mollie/WC/Gateway/Bancontact.php:36
|
508 |
+
msgid "Bancontact"
|
509 |
+
msgstr "Bancontact"
|
510 |
+
|
511 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
512 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1595
|
513 |
+
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."
|
514 |
+
msgstr "%s betaling nog hangende (%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."
|
515 |
+
|
516 |
+
#: src/Mollie/WC/Gateway/Abstract.php:469
|
517 |
+
msgid "Failed switching subscriptions, no valid mandate."
|
518 |
+
msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat."
|
519 |
+
|
520 |
+
#: src/Mollie/WC/Gateway/Abstract.php:468
|
521 |
+
msgid "Failed switching subscriptions, no valid mandate.found. Place a completely new order to change your subscription."
|
522 |
+
msgstr "Overschakelen naar abonnement mislukt, geen geldig mandaat gevonden. Plaats een volledig nieuwe bestelling om uw abonnement te wijzigen."
|
523 |
+
|
524 |
+
#: src/Mollie/WC/Gateway/IngHomePay.php:29
|
525 |
+
msgid "ING Home'Pay"
|
526 |
+
msgstr "ING Home'Pay"
|
527 |
+
|
528 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
529 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1165
|
530 |
+
msgid "%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use them)."
|
531 |
+
msgstr "%s betaling teruggevorderd via Mollie (%s). U dient de betaling handmatig te controleren (en productvoorraden aan te passen als u dit gebruikt)."
|
532 |
+
|
533 |
+
#: src/Mollie/WC/Gateway/Kbc.php:41
|
534 |
+
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."
|
535 |
+
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."
|
536 |
+
|
537 |
+
#: src/Mollie/WC/Gateway/Kbc.php:34
|
538 |
+
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."
|
539 |
+
msgstr "Als u dit deactiveert, zal een dropdown bij verschillende KBC/CBC-banken niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een KBC/CBC-bank selecteren op de Mollie-betaalpagina na het afrekenen."
|
540 |
+
|
541 |
+
#: src/Mollie/WC/Gateway/Kbc.php:32
|
542 |
+
msgid "Show KBC/CBC banks dropdown"
|
543 |
+
msgstr "Toon KBC/CBC-banken dropdown"
|
544 |
+
|
545 |
+
#: src/Mollie/WC/Gateway/Ideal.php:41
|
546 |
+
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."
|
547 |
+
msgstr "Deze tekst wordt weergegeven als eerste optie in de iDEAL-uitgevers drop-down, als er niets wordt ingevoerd, wordt \"Selecteer uw bank\" weergegeven. Alleen als het bovenstaande ''Toon iDEAL-banken dropdown'' is geactiveerd."
|
548 |
+
|
549 |
+
#: src/Mollie/WC/Gateway/Ideal.php:34
|
550 |
+
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."
|
551 |
+
msgstr "Als u dit deactiveert, zal een dropdown bij verschillende iDEAL-banken niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een iDEAL-bank selecteren op de Mollie-betaalpagina na het afrekenen."
|
552 |
+
|
553 |
+
#: src/Mollie/WC/Gateway/Ideal.php:32
|
554 |
+
msgid "Show iDEAL banks dropdown"
|
555 |
+
msgstr "Toon iDEAL-banken dropdown"
|
556 |
+
|
557 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:40
|
558 |
+
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."
|
559 |
+
msgstr "Deze tekst wordt weergegeven als eerste optie in de cadeaubon-dropdown, maar alleen als het bovenstaande 'Toon cadeaubon dropdown' is geactiveerd."
|
560 |
+
|
561 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:33
|
562 |
+
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."
|
563 |
+
msgstr "Als u dit deactiveert, zal een dropdown met verschillende cadeaubonnen niet in de WooCommerce- checkout worden getoond, dus gebruikers zullen een cadeaubon selecteren op de Mollie-betaalpagina na het afrekenen."
|
564 |
+
|
565 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:31
|
566 |
+
msgid "Show gift cards dropdown"
|
567 |
+
msgstr "Toon cadeaubonnen-dropdown"
|
568 |
+
|
569 |
+
#: src/Mollie/WC/Gateway/Abstract.php:457
|
570 |
+
msgid "Order completed internally because of an existing valid mandate at Mollie."
|
571 |
+
msgstr "Bestelling intern voltooid wegens een bestaand geldig mandaat bij Mollie."
|
572 |
+
|
573 |
+
#: mollie-payments-for-WooCommerce.php:149
|
574 |
+
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"
|
575 |
+
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"
|
576 |
+
|
577 |
+
#: mollie-payments-for-WooCommerce.php:131
|
578 |
+
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"
|
579 |
+
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"
|
580 |
+
|
581 |
+
#: src/Mollie/WC/Helper/Settings.php:415
|
582 |
+
msgid "Cancelled"
|
583 |
+
msgstr "Geannuleerd"
|
584 |
+
|
585 |
+
#: src/Mollie/WC/Helper/Settings.php:414
|
586 |
+
msgid "Pending"
|
587 |
+
msgstr "In behandeling"
|
588 |
+
|
589 |
+
#: src/Mollie/WC/Helper/Settings.php:411
|
590 |
+
msgid "Order status after cancelled payment"
|
591 |
+
msgstr "Bestelstatus na geannuleerde betaling"
|
592 |
+
|
593 |
+
#. translators: Placeholder 1: consumer name, placeholder 2: consumer IBAN,
|
594 |
+
#. placeholder 3: consumer BIC
|
595 |
+
#: src/Mollie/WC/Gateway/Sofort.php:64 src/Mollie/WC/Gateway/Ideal.php:121
|
596 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:80
|
597 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:172
|
598 |
+
msgid "Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)"
|
599 |
+
msgstr "Betaling voltooid met <strong>%s</strong> (IBAN (ten minste 4 cijfers): %s, BIC: %s)"
|
600 |
+
|
601 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1635
|
602 |
+
msgid "Your order has been cancelled."
|
603 |
+
msgstr "Uw bestelling is geannuleerd."
|
604 |
+
|
605 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1604
|
606 |
+
msgid ", payment pending."
|
607 |
+
msgstr ", betaling in behandeling."
|
608 |
+
|
609 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1564
|
610 |
+
msgid "Order cancelled"
|
611 |
+
msgstr " Bestelling geannuleerd"
|
612 |
+
|
613 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment
|
614 |
+
#. status, placeholder 3: payment ID
|
615 |
+
#: src/Mollie/WC/Gateway/Abstract.php:935
|
616 |
+
msgid "%s payment %s (%s), not processed."
|
617 |
+
msgstr "%s betaling %s (%s), niet verwerkt."
|
618 |
+
|
619 |
+
#. translators: Default gift card dropdown description, displayed above issuer
|
620 |
+
#. drop down
|
621 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:76
|
622 |
+
msgid "Select your gift card"
|
623 |
+
msgstr "Selecteer uw cadeaubon"
|
624 |
+
|
625 |
+
#: src/Mollie/WC/Gateway/Giftcard.php:60
|
626 |
+
msgid "Gift cards"
|
627 |
+
msgstr "Cadeaubonnen"
|
628 |
+
|
629 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:49
|
630 |
+
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."
|
631 |
+
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."
|
632 |
+
|
633 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
634 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:190
|
635 |
+
msgid "Updated subscription from 'On hold' to 'Active' until payment fails, because a SEPA Direct Debit payment takes some time to process."
|
636 |
+
msgstr "Bijgewerkt abonnement van 'Wachtend' naar 'Actief' tot de betaling mislukt, omdat voor het verwerken van een SEPA-incassobetaling enige tijd nodig is."
|
637 |
+
|
638 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
639 |
+
#: src/Mollie/WC/Payment/Payment.php:472
|
640 |
+
msgid "%s payment expired (%s) but order not cancelled because of another pending payment (%s)."
|
641 |
+
msgstr "%s betaling verlopen (%s) maar bestelling niet geannuleerd wegens een andere hangende betaling (%s)."
|
642 |
+
|
643 |
+
#: src/subscriptions_status_check_functions.php:195
|
644 |
+
msgid "There are still some subscriptions left, use the tool again!"
|
645 |
+
msgstr "Er zijn nog abonnementen over, gebruik de tool opnieuw!"
|
646 |
+
|
647 |
+
#: src/subscriptions_status_check_functions.php:193
|
648 |
+
msgid "No more subscriptions left to process!"
|
649 |
+
msgstr "Geen abonnementen over om te verwerken!"
|
650 |
+
|
651 |
+
#: src/subscriptions_status_check_functions.php:180
|
652 |
+
msgid "No subscriptions updated in this batch."
|
653 |
+
msgstr "Geen abonnementen geüpdatet in deze batch."
|
654 |
+
|
655 |
+
#: src/subscriptions_status_check_functions.php:156
|
656 |
+
msgid "Subscription not updated because there was no valid mandate at Mollie. Processed by 'Mollie Subscriptions Status' tool."
|
657 |
+
msgstr "Abonnement niet geüpdatet omdat er geen geldig mandaat was bij Mollie. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
658 |
+
|
659 |
+
#: src/subscriptions_status_check_functions.php:142
|
660 |
+
msgid "Subscription updated to Automated renewal via Mollie, status set to Active. Processed by 'Mollie Subscriptions Status' tool."
|
661 |
+
msgstr "Abonnement geüpdatet naar Geautomatiseerde vernieuwing via Mollie, status ingesteld op Actief. Verwerkt door 'Mollie-abonnementenstatus' tool."
|
662 |
+
|
663 |
+
#: src/subscriptions_status_check_functions.php:36
|
664 |
+
msgid "Check subscriptions status"
|
665 |
+
msgstr "Controleer abonnementenstatus"
|
666 |
+
|
667 |
+
#: src/subscriptions_status_check_functions.php:35
|
668 |
+
msgid "Mollie Subscriptions Status"
|
669 |
+
msgstr "Mollie-abonnementenstatus"
|
670 |
+
|
671 |
+
#: src/subscriptions_status_check_functions.php:30
|
672 |
+
msgid "Checks for subscriptions that are incorrectly set to 'Manual renewal'. First read the "
|
673 |
+
msgstr "Controles op abonnementen die verkeerd zijn ingesteld op 'Handmatige vernieuwing'. Lees eerst de "
|
674 |
+
|
675 |
+
#: src/Mollie/WC/Helper/Settings.php:464
|
676 |
+
msgid "Store customer details at Mollie"
|
677 |
+
msgstr "Klantgegevens opslaan bij Mollie"
|
678 |
+
|
679 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
680 |
+
#: src/Mollie/WC/Plugin.php:134
|
681 |
+
msgid "%s payment failed (%s)."
|
682 |
+
msgstr "%s betaling mislukt (%s)."
|
683 |
+
|
684 |
+
#: src/Mollie/WC/Gateway/Kbc.php:61
|
685 |
+
msgid "KBC/CBC Payment Button"
|
686 |
+
msgstr "KBC/CBC Betaalknop"
|
687 |
+
|
688 |
+
#: src/Mollie/WC/Gateway/Ideal.php:39 src/Mollie/WC/Gateway/Giftcard.php:38
|
689 |
+
#: src/Mollie/WC/Gateway/Kbc.php:39
|
690 |
+
msgid "Issuers empty option"
|
691 |
+
msgstr "Optie uitgevers leeg"
|
692 |
+
|
693 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:48
|
694 |
+
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."
|
695 |
+
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."
|
696 |
+
|
697 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:47
|
698 |
+
msgid "Skip Mollie payment screen when Bank Transfer is selected"
|
699 |
+
msgstr "Sla Mollie-betaalscherm over wanneer bankoverschrijving is geselecteerd"
|
700 |
+
|
701 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:46
|
702 |
+
msgid "Skip Mollie payment screen"
|
703 |
+
msgstr "Mollie-betaalscherm overslaan"
|
704 |
+
|
705 |
+
#. Description of the plugin
|
706 |
+
msgid "Accept payments in WooCommerce with the official Mollie plugin"
|
707 |
+
msgstr "Accepteer betalingen in WooCommerce met de officiële Mollie-plugin"
|
708 |
+
|
709 |
+
#. Plugin URI of the plugin
|
710 |
+
#. Author URI of the plugin
|
711 |
+
msgid "https://www.mollie.com"
|
712 |
+
msgstr "https://www.mollie.com"
|
713 |
+
|
714 |
+
#. Author of the plugin
|
715 |
+
msgid "Mollie"
|
716 |
+
msgstr "Mollie"
|
717 |
+
|
718 |
+
#. Plugin Name of the plugin
|
719 |
+
msgid "Mollie Payments for WooCommerce"
|
720 |
+
msgstr "Mollie-betalingen voor WooCommerce"
|
721 |
+
|
722 |
+
#: src/Mollie/WC/Plugin.php:780
|
723 |
+
msgid "Logs"
|
724 |
+
msgstr "Logs"
|
725 |
+
|
726 |
+
#: src/Mollie/WC/Helper/Status.php:123
|
727 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension cURL to be enabled. Please enable the 'curl' extension in your PHP configuration."
|
728 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie cURL geactiveerd is. Activeer de 'curl' extensie in uw PHP-configuratie."
|
729 |
+
|
730 |
+
#: src/Mollie/WC/Helper/Status.php:116
|
731 |
+
msgid "Mollie Payments for WooCommerce requires the PHP extension JSON to be enabled. Please enable the 'json' extension in your PHP configuration."
|
732 |
+
msgstr "Mollie-betalingen voor WooCommerce vereisen dat de PHP-extensie JSON geactiveerd is. Activeer de 'json' extensie in uw PHP-configuratie."
|
733 |
+
|
734 |
+
#: src/Mollie/WC/Helper/Status.php:80
|
735 |
+
msgid "Mollie API client not installed. Please make sure the plugin is installed correctly."
|
736 |
+
msgstr "Mollie API client niet geïnstalleerd. Controleer of de plugin correct is geïnstalleerd."
|
737 |
+
|
738 |
+
#. translators: Placeholder 1: Plugin name, placeholder 2: required WooCommerce
|
739 |
+
#. version, placeholder 3: used WooCommerce version
|
740 |
+
#: src/Mollie/WC/Helper/Status.php:67
|
741 |
+
msgid "The %s plugin requires at least WooCommerce version %s, you are using version %s. Please update your WooCommerce plugin."
|
742 |
+
msgstr "De %s plugin vereist ten minste WooCommerce versie %s, u gebruikt versie %s. Update uw WooCommerce plugin."
|
743 |
+
|
744 |
+
#: src/Mollie/WC/Helper/Settings.php:473
|
745 |
+
msgid "Debug Log"
|
746 |
+
msgstr "Debug-log"
|
747 |
+
|
748 |
+
#: src/Mollie/WC/Helper/Settings.php:437
|
749 |
+
msgid "French (Belgium)"
|
750 |
+
msgstr "Frans (België)"
|
751 |
+
|
752 |
+
#: src/Mollie/WC/Helper/Settings.php:436
|
753 |
+
msgid "French"
|
754 |
+
msgstr "Frans"
|
755 |
+
|
756 |
+
#: src/Mollie/WC/Helper/Settings.php:441
|
757 |
+
msgid "Spanish"
|
758 |
+
msgstr "Spaans"
|
759 |
+
|
760 |
+
#: src/Mollie/WC/Helper/Settings.php:438
|
761 |
+
msgid "German"
|
762 |
+
msgstr "Duits"
|
763 |
+
|
764 |
+
#: src/Mollie/WC/Helper/Settings.php:433
|
765 |
+
msgid "English"
|
766 |
+
msgstr "Engels"
|
767 |
+
|
768 |
+
#: src/Mollie/WC/Helper/Settings.php:435
|
769 |
+
msgid "Flemish (Belgium)"
|
770 |
+
msgstr "Vlaams (België)"
|
771 |
+
|
772 |
+
#: src/Mollie/WC/Helper/Settings.php:434
|
773 |
+
msgid "Dutch"
|
774 |
+
msgstr "Nederlands"
|
775 |
+
|
776 |
+
#: src/Mollie/WC/Helper/Settings.php:429
|
777 |
+
msgid "Detect using browser language"
|
778 |
+
msgstr "Detecteren met gebruik van browser-taal"
|
779 |
+
|
780 |
+
#: src/Mollie/WC/Helper/Settings.php:422
|
781 |
+
msgid "Payment screen language"
|
782 |
+
msgstr "Taal van betaalscherm"
|
783 |
+
|
784 |
+
#: src/Mollie/WC/Helper/Settings.php:403
|
785 |
+
msgid "Test API key should start with test_"
|
786 |
+
msgstr "Test API-sleutel moet beginnen met test_"
|
787 |
+
|
788 |
+
#: src/Mollie/WC/Helper/Settings.php:392
|
789 |
+
msgid "Test API key"
|
790 |
+
msgstr "Test API-sleutel"
|
791 |
+
|
792 |
+
#: src/Mollie/WC/Helper/Settings.php:388
|
793 |
+
msgid "Enable test mode if you want to test the plugin without using real payments."
|
794 |
+
msgstr "Activeer de testmodus als u de plugin wilt testen zonder echte betalingen te gebruiken."
|
795 |
+
|
796 |
+
#: src/Mollie/WC/Helper/Settings.php:385
|
797 |
+
msgid "Enable test mode"
|
798 |
+
msgstr "Activeer de testmodus"
|
799 |
+
|
800 |
+
#: src/Mollie/WC/Helper/Settings.php:377
|
801 |
+
msgid "Live API key should start with live_"
|
802 |
+
msgstr "Live API-sleutel moet beginnen met live_"
|
803 |
+
|
804 |
+
#. translators: Placeholder 1: API key mode (live or test). The surrounding
|
805 |
+
#. %s's Will be replaced by a link to the Mollie profile
|
806 |
+
#: src/Mollie/WC/Helper/Settings.php:371 src/Mollie/WC/Helper/Settings.php:397
|
807 |
+
msgid "The API key is used to connect to Mollie. You can find your <strong>%s</strong> API key in your %sMollie profile%s"
|
808 |
+
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"
|
809 |
+
|
810 |
+
#: src/Mollie/WC/Helper/Settings.php:366
|
811 |
+
msgid "Live API key"
|
812 |
+
msgstr "Live API-sleutel"
|
813 |
+
|
814 |
+
#: src/Mollie/WC/Helper/Settings.php:362
|
815 |
+
msgid "The following options are required to use the plugin and are used by all Mollie payment methods"
|
816 |
+
msgstr "De volgende opties zijn vereist om de plugin te gebruiken en worden door alle Mollie-betaalmethoden gebruikt"
|
817 |
+
|
818 |
+
#: src/Mollie/WC/Helper/Settings.php:359 src/Mollie/WC/Plugin.php:773
|
819 |
+
msgid "Mollie settings"
|
820 |
+
msgstr "Mollie-instellingen"
|
821 |
+
|
822 |
+
#. translators: Placeholder 1: Location of the log files
|
823 |
+
#: src/Mollie/WC/Helper/Settings.php:352
|
824 |
+
msgid "Log files are saved to <code>%s</code>"
|
825 |
+
msgstr "Logbestanden worden opgeslagen in <code>%s</code>"
|
826 |
+
|
827 |
+
#: src/Mollie/WC/Helper/Settings.php:346
|
828 |
+
msgid "View logs"
|
829 |
+
msgstr "Bekijk logs"
|
830 |
+
|
831 |
+
#: src/Mollie/WC/Helper/Settings.php:341
|
832 |
+
msgid "Log plugin events."
|
833 |
+
msgstr "Log plugin-gebeurtenissen"
|
834 |
+
|
835 |
+
#: src/Mollie/WC/Helper/Settings.php:301
|
836 |
+
msgid "Edit"
|
837 |
+
msgstr "Bewerken"
|
838 |
+
|
839 |
+
#: src/Mollie/WC/Helper/Settings.php:270
|
840 |
+
msgid "Refresh"
|
841 |
+
msgstr "Vernieuwen"
|
842 |
+
|
843 |
+
#. translators: The surrounding %s's Will be replaced by a link to the Mollie
|
844 |
+
#. profile
|
845 |
+
#: src/Mollie/WC/Helper/Settings.php:261
|
846 |
+
msgid "The following payment methods are activated in your %sMollie profile%s:"
|
847 |
+
msgstr "De volgende betaalmethoden zijn geactiveerd in uw %sMollie-profiel%s:"
|
848 |
+
|
849 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
850 |
+
msgid "Gateway disabled"
|
851 |
+
msgstr "Gateway gedeactiveerd"
|
852 |
+
|
853 |
+
#. translators: Placeholder 1: enabled or disabled
|
854 |
+
#: src/Mollie/WC/Helper/Settings.php:250 src/Mollie/WC/Helper/Settings.php:466
|
855 |
+
msgid "Enabled"
|
856 |
+
msgstr "Geactiveerd"
|
857 |
+
|
858 |
+
#: src/Mollie/WC/Helper/Settings.php:250
|
859 |
+
msgid "Gateway enabled"
|
860 |
+
msgstr "Gateway geactiveerd"
|
861 |
+
|
862 |
+
#: src/Mollie/WC/Helper/Settings.php:207
|
863 |
+
msgid "Connected"
|
864 |
+
msgstr "Verbonden"
|
865 |
+
|
866 |
+
#: src/Mollie/WC/Helper/Settings.php:206
|
867 |
+
msgid "Mollie status:"
|
868 |
+
msgstr "Mollie-status:"
|
869 |
+
|
870 |
+
#: src/Mollie/WC/Helper/Settings.php:193
|
871 |
+
msgid "Error"
|
872 |
+
msgstr "Fout"
|
873 |
+
|
874 |
+
#: src/Mollie/WC/Helper/Data.php:613
|
875 |
+
msgid "Item #%s stock incremented from %s to %s."
|
876 |
+
msgstr "Item #%s voorraad verhoogd van %s naar %s."
|
877 |
+
|
878 |
+
#: src/Mollie/WC/Gateway/Sofort.php:33
|
879 |
+
msgid "SOFORT Banking"
|
880 |
+
msgstr "SOFORT Banking"
|
881 |
+
|
882 |
+
#: src/Mollie/WC/Gateway/Paysafecard.php:20
|
883 |
+
msgid "paysafecard"
|
884 |
+
msgstr "paysafecard"
|
885 |
+
|
886 |
+
#. translators: Placeholder 1: PayPal consumer name, placeholder 2: PayPal
|
887 |
+
#. email, placeholder 3: PayPal transaction ID
|
888 |
+
#: src/Mollie/WC/Gateway/PayPal.php:64
|
889 |
+
msgid "Payment completed by <strong>%s</strong> - %s (PayPal transaction ID: %s)"
|
890 |
+
msgstr "Betaling voltooid met <strong>%s</strong> - %s (PayPal transactie-ID: %s)"
|
891 |
+
|
892 |
+
#: src/Mollie/WC/Gateway/PayPal.php:33
|
893 |
+
msgid "PayPal"
|
894 |
+
msgstr "PayPal"
|
895 |
+
|
896 |
+
#. translators: Default iDEAL description, displayed above issuer drop down
|
897 |
+
#. translators: Default KBC/CBC dropdown description, displayed above issuer
|
898 |
+
#. drop down
|
899 |
+
#: src/Mollie/WC/Gateway/Ideal.php:77 src/Mollie/WC/Gateway/Kbc.php:77
|
900 |
+
msgid "Select your bank"
|
901 |
+
msgstr "Selecteer uw bank"
|
902 |
+
|
903 |
+
#: src/Mollie/WC/Gateway/Ideal.php:61
|
904 |
+
msgid "iDEAL"
|
905 |
+
msgstr "iDEAL"
|
906 |
+
|
907 |
+
#: src/Mollie/WC/Gateway/DirectDebit.php:42
|
908 |
+
msgid "SEPA Direct Debit"
|
909 |
+
msgstr "SEPA-incasso"
|
910 |
+
|
911 |
+
#. translators: Placeholder 1: card holder
|
912 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:85
|
913 |
+
msgid "Payment completed by <strong>%s</strong>"
|
914 |
+
msgstr "Betaling voltooid met <strong>%s</strong>."
|
915 |
+
|
916 |
+
#: src/Mollie/WC/Gateway/Creditcard.php:34
|
917 |
+
msgid "Credit card"
|
918 |
+
msgstr "Creditcard"
|
919 |
+
|
920 |
+
#: src/Mollie/WC/Gateway/Belfius.php:33
|
921 |
+
msgid "Belfius Direct Net"
|
922 |
+
msgstr "Belfius Direct Net"
|
923 |
+
|
924 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:220
|
925 |
+
msgid "The payment will expire on <strong>%s</strong>. Please make sure you transfer the total amount before this date."
|
926 |
+
msgstr "De betaling vervalt op <strong>%s</strong>. Zorg ervoor dat u vóór deze datum het totale bedrag overmaakt."
|
927 |
+
|
928 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:213
|
929 |
+
msgid "The payment will expire on <strong>%s</strong>."
|
930 |
+
msgstr "De betaling vervalt op <strong>%s</strong>."
|
931 |
+
|
932 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
933 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
934 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:198
|
935 |
+
msgid "Please provide the payment reference <strong>%s</strong>"
|
936 |
+
msgstr "Vermeld de betalingsreferentie <strong>%s</strong>"
|
937 |
+
|
938 |
+
#. translators: Placeholder 1: Payment reference e.g. RF49-0000-4716-6216
|
939 |
+
#. (SEPA) or +++513/7587/59959+++ (Belgium)
|
940 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:193
|
941 |
+
msgid "Payment reference: %s"
|
942 |
+
msgstr "Betalingsreferentie: %s."
|
943 |
+
|
944 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:188
|
945 |
+
msgid "BIC: %s"
|
946 |
+
msgstr "BIC: %s"
|
947 |
+
|
948 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:187
|
949 |
+
msgid "IBAN: <strong>%s</strong>"
|
950 |
+
msgstr "IBAN: <strong>%s</strong>"
|
951 |
+
|
952 |
+
#. translators: Placeholder 1: 'Stichting Mollie Payments'
|
953 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:186
|
954 |
+
msgid "Beneficiary: %s"
|
955 |
+
msgstr "Begunstigde: %s"
|
956 |
+
|
957 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:182
|
958 |
+
msgid "Please complete your payment by transferring the total amount to the following bank account:"
|
959 |
+
msgstr "Voltooi uw betaling door het totale bedrag over te maken naar de volgende bankrekening:"
|
960 |
+
|
961 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:122
|
962 |
+
msgid "Bank Transfer"
|
963 |
+
msgstr "Bankoverdracht"
|
964 |
+
|
965 |
+
#: src/Mollie/WC/Helper/Settings.php:251
|
966 |
+
msgid "Disabled"
|
967 |
+
msgstr "Uitgeschakeld"
|
968 |
+
|
969 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:37
|
970 |
+
msgid "Number of days after the payment will expire. Default <code>%d</code> days"
|
971 |
+
msgstr "Aantal dagen nadat de betaling vervalt. Standaard <code>%d</code> dagen."
|
972 |
+
|
973 |
+
#: src/Mollie/WC/Gateway/BankTransfer.php:35
|
974 |
+
msgid "Expiry date"
|
975 |
+
msgstr "Vervaldatum"
|
976 |
+
|
977 |
+
#. translators: Placeholder 1: payment method
|
978 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1508
|
979 |
+
msgid "Payment completed with <strong>%s</strong>"
|
980 |
+
msgstr "Betaling voltooid met <strong>%s</strong>"
|
981 |
+
|
982 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1501
|
983 |
+
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."
|
984 |
+
msgstr "We hebben geen definitieve betalingsstatus ontvangen. U ontvangt een e-mail zodra we een bevestiging van de bank/handelaar ontvangen."
|
985 |
+
|
986 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1496
|
987 |
+
msgid "We have not received a definite payment status."
|
988 |
+
msgstr "We hebben geen definitieve betalingsstatus ontvangen."
|
989 |
+
|
990 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1271
|
991 |
+
msgid "You have cancelled your payment. Please complete your order with a different payment method."
|
992 |
+
msgstr "U heeft uw betaling geannuleerd. Vervolledig uw bestelling met een andere betaalmethode."
|
993 |
+
|
994 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
995 |
+
#: src/Mollie/WC/Payment/Payment.php:513
|
996 |
+
msgid "%s payment expired (%s)."
|
997 |
+
msgstr "%s betaling verlopen (%s)."
|
998 |
+
|
999 |
+
#. translators: Placeholder 1: payment method title, placeholder 2: payment ID
|
1000 |
+
#: src/Mollie/WC/Payment/Order.php:295 src/Mollie/WC/Payment/Payment.php:241
|
1001 |
+
msgid "Order completed using %s payment (%s)."
|
1002 |
+
msgstr "Bestelling voltooid met gebruik van %s betaling (%s)."
|
1003 |
+
|
1004 |
+
#. translators: Placeholder 1: Payment method title
|
1005 |
+
#: src/Mollie/WC/Gateway/Abstract.php:678
|
1006 |
+
msgid "Could not create %s payment."
|
1007 |
+
msgstr "Kon geen %s betaling aanmaken."
|
1008 |
+
|
1009 |
+
#: src/Mollie/WC/Payment/Order.php:297 src/Mollie/WC/Payment/Order.php:368
|
1010 |
+
#: src/Mollie/WC/Payment/Order.php:440 src/Mollie/WC/Payment/Order.php:550
|
1011 |
+
#: src/Mollie/WC/Payment/Order.php:608 src/Mollie/WC/Payment/Order.php:632
|
1012 |
+
#: src/Mollie/WC/Payment/Order.php:669 src/Mollie/WC/Payment/Order.php:710
|
1013 |
+
#: src/Mollie/WC/Payment/Payment.php:243 src/Mollie/WC/Payment/Payment.php:353
|
1014 |
+
#: src/Mollie/WC/Payment/Payment.php:411 src/Mollie/WC/Payment/Payment.php:434
|
1015 |
+
#: src/Mollie/WC/Payment/Payment.php:474 src/Mollie/WC/Payment/Payment.php:515
|
1016 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:73
|
1017 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:153
|
1018 |
+
#: src/Mollie/WC/Gateway/Abstract.php:656
|
1019 |
+
#: src/Mollie/WC/Gateway/Abstract.php:938
|
1020 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1167
|
1021 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1208
|
1022 |
+
#: src/Mollie/WC/Gateway/Abstract.php:1597
|
1023 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:466
|
1024 |
+
msgid "test mode"
|
1025 |
+
msgstr "testmodus"
|
1026 |
+
|
1027 |
+
#. translators: Placeholder 1: Payment method title, placeholder 2: payment ID
|
1028 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:71
|
1029 |
+
#: src/Mollie/WC/Gateway/Abstract.php:654
|
1030 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:464
|
1031 |
+
msgid "%s payment started (%s)."
|
1032 |
+
msgstr "%s betaling gestart (%s)."
|
1033 |
+
|
1034 |
+
#: src/Mollie/WC/Gateway/AbstractSepaRecurring.php:63
|
1035 |
+
#: src/Mollie/WC/Gateway/Abstract.php:644
|
1036 |
+
#: src/Mollie/WC/Gateway/AbstractSubscription.php:457
|
1037 |
+
msgid "Awaiting payment confirmation."
|
1038 |
+
msgstr "In afwachting van betalingsbevestiging"
|
1039 |
+
|
1040 |
+
#: src/Mollie/WC/Gateway/Abstract.php:402
|
1041 |
+
msgid "Could not load order %s"
|
1042 |
+
msgstr "Kon bestelling %s niet laden"
|
1043 |
+
|
1044 |
+
#. translators: Placeholder 1: payment method title. The surrounding %s's Will
|
1045 |
+
#. be replaced by a link to the Mollie profile
|
1046 |
+
#: src/Mollie/WC/Gateway/Abstract.php:238
|
1047 |
+
msgid "%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s."
|
1048 |
+
msgstr "%s niet geactiveerd in uw Mollie-profiel. U kunt het activeren door uw %sMollie profile%s te bewerken."
|
1049 |
+
|
1050 |
+
#. translators: The surrounding %s's Will be replaced by a link to the global
|
1051 |
+
#. setting page
|
1052 |
+
#: src/Mollie/WC/Gateway/Abstract.php:226
|
1053 |
+
msgid "No API key provided. Please %sset you Mollie API key%s first."
|
1054 |
+
msgstr "Geen API-sleutel verschaft. Plaats %suw Mollie API-sleutel%s eerst."
|
1055 |
+
|
1056 |
+
#: src/Mollie/WC/Gateway/Abstract.php:181
|
1057 |
+
msgid "Gateway Disabled"
|
1058 |
+
msgstr "Gateway gedeactiveerd"
|
1059 |
+
|
1060 |
+
#: src/Mollie/WC/Helper/Settings.php:256 src/Mollie/WC/Gateway/Abstract.php:224
|
1061 |
+
msgid "Test mode enabled."
|
1062 |
+
msgstr "Testmodus geactiveerd."
|
1063 |
+
|
1064 |
+
#: src/Mollie/WC/Gateway/Abstract.php:143
|
1065 |
+
msgid "Hold Stock (minutes)"
|
1066 |
+
msgstr "Houd voorraad aan (minuten)"
|
1067 |
+
|
1068 |
+
#: src/Mollie/WC/Gateway/Abstract.php:141
|
1069 |
+
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."
|
1070 |
+
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."
|
1071 |
+
|
1072 |
+
#: src/Mollie/WC/Helper/Settings.php:428 src/Mollie/WC/Gateway/Abstract.php:135
|
1073 |
+
msgid "default"
|
1074 |
+
msgstr "standaard"
|
1075 |
+
|
1076 |
+
#: src/Mollie/WC/Gateway/Abstract.php:132
|
1077 |
+
msgid "Initial order status"
|
1078 |
+
msgstr "Initiële bestelstatus"
|
1079 |
+
|
1080 |
+
#: src/Mollie/WC/Gateway/Abstract.php:123
|
1081 |
+
msgid "Payment method description that the customer will see on your checkout. Default <code>%s</code>"
|
1082 |
+
msgstr "Beschrijving van de betaalmethode die de klant bij uw betaalpagina zal zien. Standaard <code>%s</code>"
|
1083 |
+
|
1084 |
+
#: src/Mollie/WC/Gateway/Abstract.php:121
|
1085 |
+
msgid "Description"
|
1086 |
+
msgstr "Beschrijving"
|
1087 |
+
|
1088 |
+
#: src/Mollie/WC/Gateway/Abstract.php:117
|
1089 |
+
msgid "Display logo on checkout page. Default <code>enabled</code>"
|
1090 |
+
msgstr "Toon logo op de betaalpagina. Standaard <code>geactiveerd</code>"
|
1091 |
+
|
1092 |
+
#: src/Mollie/WC/Gateway/Abstract.php:115
|
1093 |
+
msgid "Display logo"
|
1094 |
+
msgstr "Toon logo"
|
1095 |
+
|
1096 |
+
#: src/Mollie/WC/Gateway/Abstract.php:110
|
1097 |
+
msgid "This controls the title which the user sees during checkout. Default <code>%s</code>"
|
1098 |
+
msgstr "Dit controleert de titel die de gebruiker ziet tijdens het betalen. Standaard <code>%s</code>"
|
1099 |
+
|
1100 |
+
#: src/Mollie/WC/Gateway/Abstract.php:108
|
1101 |
+
msgid "Title"
|
1102 |
+
msgstr "Titel"
|
1103 |
+
|
1104 |
+
#: src/Mollie/WC/Gateway/Abstract.php:104
|
1105 |
+
msgid "Enable %s"
|
1106 |
+
msgstr "Geactiveerd %s"
|
1107 |
+
|
1108 |
+
#: src/Mollie/WC/Gateway/Abstract.php:102
|
1109 |
+
msgid "Enable/Disable"
|
1110 |
+
msgstr "Activeren/Deactiveren"
|
mollie-payments-for-woocommerce.php
CHANGED
@@ -3,16 +3,16 @@
|
|
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: 5.
|
7 |
* Author: Mollie
|
8 |
* Author URI: https://www.mollie.com
|
9 |
* Requires at least: 3.8
|
10 |
* Tested up to: 5.3
|
11 |
* Text Domain: mollie-payments-for-woocommerce
|
12 |
-
* Domain Path: /
|
13 |
* License: GPLv2 or later
|
14 |
* WC requires at least: 2.2.0
|
15 |
-
* WC tested up to: 4.
|
16 |
*/
|
17 |
|
18 |
use Mollie\Api\CompatibilityChecker;
|
@@ -201,7 +201,7 @@ $bootstrap = Closure::bind(
|
|
201 |
add_action(
|
202 |
'init',
|
203 |
function () {
|
204 |
-
load_plugin_textdomain('mollie-payments-for-woocommerce');
|
205 |
Mollie_WC_Plugin::init();
|
206 |
}
|
207 |
);
|
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: 5.6.1
|
7 |
* Author: Mollie
|
8 |
* Author URI: https://www.mollie.com
|
9 |
* Requires at least: 3.8
|
10 |
* Tested up to: 5.3
|
11 |
* Text Domain: mollie-payments-for-woocommerce
|
12 |
+
* Domain Path: /languages
|
13 |
* License: GPLv2 or later
|
14 |
* WC requires at least: 2.2.0
|
15 |
+
* WC tested up to: 4.1
|
16 |
*/
|
17 |
|
18 |
use Mollie\Api\CompatibilityChecker;
|
201 |
add_action(
|
202 |
'init',
|
203 |
function () {
|
204 |
+
load_plugin_textdomain('mollie-payments-for-woocommerce', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
205 |
Mollie_WC_Plugin::init();
|
206 |
}
|
207 |
);
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: daanvm, danielhuesken, davdebcom, dinamiko, inpsyde, l.vangunst, n
|
|
3 |
Tags: mollie, payments, payment gateway, woocommerce, credit card, ideal, bancontact, klarna, sofort, giropay, woocommerce subscriptions
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 5.3
|
6 |
-
Stable tag: 5.
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -181,6 +181,19 @@ Automatic updates should work like a charm; as always though, ensure you backup
|
|
181 |
|
182 |
== Changelog ==
|
183 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
= 5.5.1 - 12-03-2020 =
|
185 |
|
186 |
* Fix - Fatal error caused by debug() function
|
3 |
Tags: mollie, payments, payment gateway, woocommerce, credit card, ideal, bancontact, klarna, sofort, giropay, woocommerce subscriptions
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 5.3
|
6 |
+
Stable tag: 5.6.1
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
181 |
|
182 |
== Changelog ==
|
183 |
|
184 |
+
= 5.6.1 - 27-05-2020 =
|
185 |
+
|
186 |
+
* Feature - Translations of Plugin FR/DE/NL/EN/ES
|
187 |
+
* Fix - Update order status on payment refund
|
188 |
+
* Fix - 404 response during redirection on checkout when Polylang plugin is active
|
189 |
+
* Fix - Crash on calling a WC 3.0 method, fallback method for BC
|
190 |
+
* Fix - Remove custom due date for bank transfer payment
|
191 |
+
* Fix - Performance issues on transient functions
|
192 |
+
* Fix - Action `*_customer_return_payment_success` backwards compatibility broken
|
193 |
+
* Fix - Apple Pay is available after a failed payment on not compatible devices
|
194 |
+
* Fix - Deprecated: idn_to_ascii() (by @sandeshjangam)
|
195 |
+
|
196 |
+
|
197 |
= 5.5.1 - 12-03-2020 =
|
198 |
|
199 |
* Fix - Fatal error caused by debug() function
|
src/Mollie/WC/Gateway/Abstract.php
CHANGED
@@ -235,7 +235,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
|
|
235 |
if ( null === $this->getMollieMethod() ) {
|
236 |
$this->errors[] = sprintf(
|
237 |
/* translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile */
|
238 |
-
__( '%s not enabled in your Mollie profile. You can
|
239 |
$this->getDefaultTitle(),
|
240 |
'<a href="https://www.mollie.com/dashboard/settings/profiles" target="_blank">',
|
241 |
'</a>'
|
@@ -466,7 +466,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
|
|
466 |
} else {
|
467 |
Mollie_WC_Plugin::debug( $this->id . ': Subscription switch failed, no valid mandate for order #' . $order_id );
|
468 |
Mollie_WC_Plugin::addNotice( __( 'Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription.', 'mollie-payments-for-woocommerce' ), 'error' );
|
469 |
-
throw new Mollie\Api\Exceptions\ApiException( __( '
|
470 |
}
|
471 |
}
|
472 |
catch ( Mollie\Api\Exceptions\ApiException $e ) {
|
@@ -965,264 +965,360 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
|
|
965 |
* @param WC_Order $order
|
966 |
* @param Mollie\Api\Resources\Payment|Mollie\Api\Resources\Order $payment
|
967 |
*/
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
// Debug log ID (order id/payment id)
|
978 |
-
$log_id = 'order ' . $order_id . ' / payment ' . $payment->id;
|
979 |
-
|
980 |
-
// Add message to log
|
981 |
-
Mollie_WC_Plugin::debug( __METHOD__ . ' called for ' . $log_id );
|
982 |
-
|
983 |
-
// Make sure there are refunds to process at all
|
984 |
-
if ( empty($payment->_links->refunds) ) {
|
985 |
-
Mollie_WC_Plugin::debug( __METHOD__ . ": No refunds to process for {$log_id}", true );
|
986 |
-
|
987 |
-
return;
|
988 |
-
}
|
989 |
-
|
990 |
-
// Check for new refund
|
991 |
-
try {
|
992 |
-
|
993 |
-
// Get all refunds for this payment
|
994 |
-
$refunds = $payment->refunds();
|
995 |
-
|
996 |
-
// Collect all refund IDs in one array
|
997 |
-
$refund_ids = array ();
|
998 |
-
foreach ( $refunds as $refund ) {
|
999 |
-
$refund_ids[] = $refund->id;
|
1000 |
-
}
|
1001 |
|
1002 |
-
|
|
|
1003 |
|
1004 |
-
|
1005 |
-
|
1006 |
-
$processed_refund_ids = $order->get_meta( '_mollie_processed_refund_ids', true );
|
1007 |
-
} else {
|
1008 |
-
$processed_refund_ids = array ();
|
1009 |
-
}
|
1010 |
|
1011 |
-
|
|
|
|
|
|
|
|
|
|
|
1012 |
|
1013 |
-
|
1014 |
-
|
1015 |
-
asort( $processed_refund_ids );
|
1016 |
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
Mollie_WC_Plugin::debug( __METHOD__ . ' Refunds that need to be processed for ' . $log_id . ': ' . json_encode( $refunds_to_process ) );
|
1022 |
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
|
|
|
|
1026 |
|
1027 |
-
|
1028 |
-
|
|
|
|
|
|
|
1029 |
|
1030 |
-
|
1031 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1032 |
|
1033 |
-
|
|
|
|
|
|
|
1034 |
|
1035 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1036 |
|
1037 |
-
|
1038 |
-
|
1039 |
-
$refund_to_process
|
1040 |
-
) );
|
1041 |
|
1042 |
-
|
|
|
1043 |
|
1044 |
-
|
|
|
|
|
|
|
|
|
1045 |
|
1046 |
-
|
1047 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1048 |
|
1049 |
-
|
|
|
1050 |
|
1051 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1052 |
|
1053 |
-
|
|
|
|
|
|
|
|
|
1054 |
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
|
|
1059 |
|
1060 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1061 |
|
1062 |
/**
|
1063 |
* @param WC_Order $order
|
1064 |
* @param Mollie\Api\Resources\Payment|Mollie\Api\Resources\Order $payment
|
1065 |
*/
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
// Debug log ID (order id/payment id)
|
1076 |
-
$log_id = 'order ' . $order_id . ' / payment ' . $payment->id;
|
1077 |
-
|
1078 |
-
// Add message to log
|
1079 |
-
Mollie_WC_Plugin::debug( __METHOD__ . ' called for ' . $log_id );
|
1080 |
-
|
1081 |
-
// Make sure there are chargebacks to process at all
|
1082 |
-
if ( empty($payment->_links->chargebacks) ) {
|
1083 |
-
Mollie_WC_Plugin::debug( __METHOD__ . ": No chargebacks to process for {$log_id}", true );
|
1084 |
-
|
1085 |
-
return;
|
1086 |
-
}
|
1087 |
-
|
1088 |
-
// Check for new chargeback
|
1089 |
-
try {
|
1090 |
-
|
1091 |
-
// Get all chargebacks for this payment
|
1092 |
-
$chargebacks = $payment->chargebacks();
|
1093 |
-
|
1094 |
-
// Collect all chargeback IDs in one array
|
1095 |
-
$chargeback_ids = array ();
|
1096 |
-
foreach ( $chargebacks as $chargeback ) {
|
1097 |
-
$chargeback_ids[] = $chargeback->id;
|
1098 |
-
}
|
1099 |
-
|
1100 |
-
Mollie_WC_Plugin::debug( __METHOD__ . ' All chargeback IDs for ' . $log_id . ': ' . json_encode( $chargeback_ids ) );
|
1101 |
-
|
1102 |
-
// Get possibly already processed chargebacks
|
1103 |
-
if ( $order->meta_exists( '_mollie_processed_chargeback_ids' ) ) {
|
1104 |
-
$processed_chargeback_ids = $order->get_meta( '_mollie_processed_chargeback_ids', true );
|
1105 |
-
} else {
|
1106 |
-
$processed_chargeback_ids = array ();
|
1107 |
-
}
|
1108 |
-
|
1109 |
-
Mollie_WC_Plugin::debug( __METHOD__ . ' Already processed chargebacks for ' . $log_id . ': ' . json_encode( $processed_chargeback_ids ) );
|
1110 |
-
|
1111 |
-
// Order the chargeback arrays by value (chargeback ID)
|
1112 |
-
asort( $chargeback_ids );
|
1113 |
-
asort( $processed_chargeback_ids );
|
1114 |
-
|
1115 |
-
// Check if there are new chargebacks that need processing
|
1116 |
-
if ( $chargeback_ids != $processed_chargeback_ids ) {
|
1117 |
-
// There are new chargebacks.
|
1118 |
-
$chargebacks_to_process = array_diff( $chargeback_ids, $processed_chargeback_ids );
|
1119 |
-
Mollie_WC_Plugin::debug( __METHOD__ . ' Chargebacks that need to be processed for ' . $log_id . ': ' . json_encode( $chargebacks_to_process ) );
|
1120 |
-
|
1121 |
-
} else {
|
1122 |
-
// No new chargebacks, stop processing.
|
1123 |
-
Mollie_WC_Plugin::debug( __METHOD__ . ' No new chargebacks, stop processing for ' . $log_id );
|
1124 |
-
|
1125 |
-
return;
|
1126 |
-
}
|
1127 |
|
1128 |
-
|
1129 |
-
|
1130 |
|
1131 |
-
|
1132 |
-
|
1133 |
|
1134 |
-
|
|
|
|
|
|
|
|
|
|
|
1135 |
|
1136 |
-
|
1137 |
-
|
1138 |
-
$chargeback_to_process
|
1139 |
-
) );
|
1140 |
|
1141 |
-
|
1142 |
-
|
|
|
|
|
1143 |
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
|
|
|
|
1147 |
|
1148 |
-
|
1149 |
-
|
|
|
|
|
|
|
1150 |
|
1151 |
-
|
1152 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1153 |
|
1154 |
-
|
1155 |
-
|
|
|
|
|
1156 |
|
1157 |
-
|
|
|
|
|
1158 |
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1171 |
|
1172 |
-
|
1173 |
-
|
1174 |
-
if ( ! empty( $emails ) && ! empty( $order_id ) && ! empty( $emails['WC_Email_Failed_Order'] ) ) {
|
1175 |
-
$emails['WC_Email_Failed_Order']->trigger( $order_id );
|
1176 |
-
}
|
1177 |
|
|
|
|
|
1178 |
|
1179 |
-
|
1180 |
-
|
|
|
|
|
|
|
|
|
1181 |
|
1182 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1183 |
|
1184 |
-
|
1185 |
-
|
1186 |
-
//
|
1187 |
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1198 |
|
1199 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1200 |
|
1201 |
-
$this->updateOrderStatus(
|
1202 |
-
$subscription,
|
1203 |
-
$new_order_status,
|
1204 |
-
sprintf(
|
1205 |
-
/* translators: Placeholder 1: payment method title, placeholder 2: payment ID */
|
1206 |
-
__( '%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it).', 'mollie-payments-for-woocommerce' ),
|
1207 |
-
$payment_method_title,
|
1208 |
-
$payment->id . ( $payment->mode == 'test' ? ( ' - ' . __( 'test mode', 'mollie-payments-for-woocommerce' ) ) : '' )
|
1209 |
-
),
|
1210 |
-
$restore_stock = false
|
1211 |
-
);
|
1212 |
|
1213 |
-
|
1214 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1215 |
|
1216 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1217 |
|
1218 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1219 |
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
|
|
1224 |
|
1225 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1226 |
|
1227 |
/**
|
1228 |
* @param $payment
|
@@ -1249,6 +1345,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
|
|
1249 |
$order_id = mollieWooCommerceOrderId($order);
|
1250 |
$debugLine = __METHOD__ . " {$order_id}: Determine what the redirect URL in WooCommerce should be.";
|
1251 |
mollieWooCommerceDebug($debugLine);
|
|
|
1252 |
|
1253 |
if ( $this->orderNeedsPayment( $order ) ) {
|
1254 |
|
@@ -1292,15 +1389,15 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
|
|
1292 |
return $order->get_checkout_payment_url( false );
|
1293 |
}
|
1294 |
}
|
1295 |
-
do_action( Mollie_WC_Plugin::PLUGIN_ID . '_customer_return_payment_success', $order );
|
1296 |
} catch (UnexpectedValueException $exc) {
|
1297 |
mollieWooCommerceNotice(__('Your payment was not successful. Please complete your order with a different payment method.', 'mollie-payments-for-woocommerce' ));
|
1298 |
$exceptionMessage = $exc->getMessage();
|
1299 |
$debugLine = __METHOD__ . " Problem processing the payment. {$exceptionMessage}";
|
1300 |
mollieWooCommerceDebug($debugLine);
|
1301 |
-
|
1302 |
}
|
1303 |
}
|
|
|
1304 |
|
1305 |
/*
|
1306 |
* Return to order received page
|
@@ -1721,10 +1818,16 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
|
|
1721 |
*/
|
1722 |
public function getReturnUrl (WC_Order $order)
|
1723 |
{
|
|
|
1724 |
$returnUrl = WC()->api_request_url( 'mollie_return' );
|
1725 |
$returnUrl = untrailingslashit($returnUrl);
|
1726 |
if (function_exists('idn_to_ascii')) {
|
1727 |
-
|
|
|
|
|
|
|
|
|
|
|
1728 |
}
|
1729 |
$orderId = mollieWooCommerceOrderId($order);
|
1730 |
$orderKey = mollieWooCommerceOrderKey($order);
|
@@ -1736,12 +1839,17 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
|
|
1736 |
$returnUrl = untrailingslashit($returnUrl);
|
1737 |
$langUrl = $this->getSiteUrlWithLanguage();
|
1738 |
|
1739 |
-
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
|
|
|
|
|
|
|
|
|
1744 |
mollieWooCommerceDebug("{$this->id} : Order {$orderId} returnUrl: {$returnUrl}", true);
|
|
|
1745 |
return apply_filters(Mollie_WC_Plugin::PLUGIN_ID . '_return_url', $returnUrl, $order);
|
1746 |
}
|
1747 |
|
@@ -1760,7 +1868,12 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
|
|
1760 |
$webhookUrl = WC()->api_request_url(strtolower(get_class($this)));
|
1761 |
$webhookUrl = untrailingslashit($webhookUrl);
|
1762 |
if (function_exists('idn_to_ascii')) {
|
1763 |
-
|
|
|
|
|
|
|
|
|
|
|
1764 |
}
|
1765 |
$orderId = mollieWooCommerceOrderId($order);
|
1766 |
$orderKey = mollieWooCommerceOrderKey($order);
|
@@ -1774,12 +1887,12 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
|
|
1774 |
$langUrl = $this->getSiteUrlWithLanguage();
|
1775 |
|
1776 |
// Make sure there aren't any double /? in the URL (some (multilanguage) plugins will add this)
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
|
1783 |
|
1784 |
// Some (multilanguage) plugins will add a extra slash to the url (/nl//) causing the URL to redirect and lose it's data.
|
1785 |
// Status updates via webhook will therefor not be processed. The below regex will find and remove those double slashes.
|
@@ -2088,7 +2201,7 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
|
|
2088 |
|
2089 |
/**
|
2090 |
* Singleton of the class that handles icons (API/fallback)
|
2091 |
-
* @return
|
2092 |
*/
|
2093 |
protected function iconFactory()
|
2094 |
{
|
@@ -2136,4 +2249,100 @@ abstract class Mollie_WC_Gateway_Abstract extends WC_Payment_Gateway
|
|
2136 |
);
|
2137 |
return $webhook_url;
|
2138 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2139 |
}
|
235 |
if ( null === $this->getMollieMethod() ) {
|
236 |
$this->errors[] = sprintf(
|
237 |
/* translators: Placeholder 1: payment method title. The surrounding %s's Will be replaced by a link to the Mollie profile */
|
238 |
+
__( '%s not enabled in your Mollie profile. You can enable it by editing your %sMollie profile%s.', 'mollie-payments-for-woocommerce' ),
|
239 |
$this->getDefaultTitle(),
|
240 |
'<a href="https://www.mollie.com/dashboard/settings/profiles" target="_blank">',
|
241 |
'</a>'
|
466 |
} else {
|
467 |
Mollie_WC_Plugin::debug( $this->id . ': Subscription switch failed, no valid mandate for order #' . $order_id );
|
468 |
Mollie_WC_Plugin::addNotice( __( 'Subscription switch failed, no valid mandate found. Place a completely new order to change your subscription.', 'mollie-payments-for-woocommerce' ), 'error' );
|
469 |
+
throw new Mollie\Api\Exceptions\ApiException( __( 'Failed switching subscriptions, no valid mandate.', 'mollie-payments-for-woocommerce' ) );
|
470 |
}
|
471 |
}
|
472 |
catch ( Mollie\Api\Exceptions\ApiException $e ) {
|
965 |
* @param WC_Order $order
|
966 |
* @param Mollie\Api\Resources\Payment|Mollie\Api\Resources\Order $payment
|
967 |
*/
|
968 |
+
protected function processRefunds(WC_Order $order, $payment)
|
969 |
+
{
|
970 |
+
// Get order ID in the correct way depending on WooCommerce version
|
971 |
+
if (version_compare(WC_VERSION, '3.0', '<')) {
|
972 |
+
$orderId = $order->id;
|
973 |
+
} else {
|
974 |
+
$orderId = $order->get_id();
|
975 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
976 |
|
977 |
+
// Debug log ID (order id/payment id)
|
978 |
+
$logId = "order {$orderId} / payment{$payment->id}";
|
979 |
|
980 |
+
// Add message to log
|
981 |
+
Mollie_WC_Plugin::debug(__METHOD__ . " called for {$logId}");
|
|
|
|
|
|
|
|
|
982 |
|
983 |
+
// Make sure there are refunds to process at all
|
984 |
+
if (empty($payment->_links->refunds)) {
|
985 |
+
Mollie_WC_Plugin::debug(
|
986 |
+
__METHOD__ . ": No refunds to process for {$logId}",
|
987 |
+
true
|
988 |
+
);
|
989 |
|
990 |
+
return;
|
991 |
+
}
|
|
|
992 |
|
993 |
+
// Check for new refund
|
994 |
+
try {
|
995 |
+
// Get all refunds for this payment
|
996 |
+
$refunds = $payment->refunds();
|
|
|
997 |
|
998 |
+
// Collect all refund IDs in one array
|
999 |
+
$refundIds = array();
|
1000 |
+
foreach ($refunds as $refund) {
|
1001 |
+
$refundIds[] = $refund->id;
|
1002 |
+
}
|
1003 |
|
1004 |
+
Mollie_WC_Plugin::debug(
|
1005 |
+
__METHOD__ . " All refund IDs for {$logId}: " . json_encode(
|
1006 |
+
$refundIds
|
1007 |
+
)
|
1008 |
+
);
|
1009 |
|
1010 |
+
// Get possibly already processed refunds
|
1011 |
+
if ($order->meta_exists('_mollie_processed_refund_ids')) {
|
1012 |
+
$processedRefundIds = $order->get_meta(
|
1013 |
+
'_mollie_processed_refund_ids',
|
1014 |
+
true
|
1015 |
+
);
|
1016 |
+
} else {
|
1017 |
+
$processedRefundIds = array();
|
1018 |
+
}
|
1019 |
|
1020 |
+
Mollie_WC_Plugin::debug(
|
1021 |
+
__METHOD__ . " Already processed refunds for {$logId}: "
|
1022 |
+
. json_encode($processedRefundIds)
|
1023 |
+
);
|
1024 |
|
1025 |
+
// Order the refund arrays by value (refund ID)
|
1026 |
+
asort($refundIds);
|
1027 |
+
asort($processedRefundIds);
|
1028 |
+
|
1029 |
+
// Check if there are new refunds that need processing
|
1030 |
+
if ($refundIds != $processedRefundIds) {
|
1031 |
+
// There are new refunds.
|
1032 |
+
$refundsToProcess = array_diff($refundIds, $processedRefundIds);
|
1033 |
+
Mollie_WC_Plugin::debug(
|
1034 |
+
__METHOD__
|
1035 |
+
. " Refunds that need to be processed for {$logId}: "
|
1036 |
+
. json_encode($refundsToProcess)
|
1037 |
+
);
|
1038 |
+
} else {
|
1039 |
+
// No new refunds, stop processing.
|
1040 |
+
Mollie_WC_Plugin::debug(
|
1041 |
+
__METHOD__ . " No new refunds, stop processing for {$logId}"
|
1042 |
+
);
|
1043 |
|
1044 |
+
return;
|
1045 |
+
}
|
|
|
|
|
1046 |
|
1047 |
+
$dataHelper = Mollie_WC_Plugin::getDataHelper();
|
1048 |
+
$order = $dataHelper->getWcOrder($orderId);
|
1049 |
|
1050 |
+
foreach ($refundsToProcess as $refundToProcess) {
|
1051 |
+
Mollie_WC_Plugin::debug(
|
1052 |
+
__METHOD__
|
1053 |
+
. " New refund {$refundToProcess} processed in Mollie Dashboard for {$logId} Order note added, but order not updated."
|
1054 |
+
);
|
1055 |
|
1056 |
+
$order->add_order_note(
|
1057 |
+
sprintf(
|
1058 |
+
__(
|
1059 |
+
'New refund %s processed in Mollie Dashboard! Order note added, but order not updated.',
|
1060 |
+
'mollie-payments-for-woocommerce'
|
1061 |
+
),
|
1062 |
+
$refundToProcess
|
1063 |
+
)
|
1064 |
+
);
|
1065 |
|
1066 |
+
$processedRefundIds[] = $refundToProcess;
|
1067 |
+
}
|
1068 |
|
1069 |
+
$order->update_meta_data(
|
1070 |
+
'_mollie_processed_refund_ids',
|
1071 |
+
$processedRefundIds
|
1072 |
+
);
|
1073 |
+
Mollie_WC_Plugin::debug(
|
1074 |
+
__METHOD__ . " Updated, all processed refunds for {$logId}: "
|
1075 |
+
. json_encode($processedRefundIds)
|
1076 |
+
);
|
1077 |
|
1078 |
+
$order->save();
|
1079 |
+
$this->processUpdateStateRefund($order, $payment);
|
1080 |
+
Mollie_WC_Plugin::debug(
|
1081 |
+
__METHOD__ . " Updated state for order {$orderId}"
|
1082 |
+
);
|
1083 |
|
1084 |
+
do_action(
|
1085 |
+
Mollie_WC_Plugin::PLUGIN_ID . '_refunds_processed',
|
1086 |
+
$payment,
|
1087 |
+
$order
|
1088 |
+
);
|
1089 |
|
1090 |
+
return;
|
1091 |
+
} catch (\Mollie\Api\Exceptions\ApiException $e) {
|
1092 |
+
Mollie_WC_Plugin::debug(
|
1093 |
+
__FUNCTION__
|
1094 |
+
. " : Could not load refunds for {$payment->id}: {$e->getMessage()}"
|
1095 |
+
. ' (' . get_class($e) . ')'
|
1096 |
+
);
|
1097 |
+
}
|
1098 |
+
}
|
1099 |
|
1100 |
/**
|
1101 |
* @param WC_Order $order
|
1102 |
* @param Mollie\Api\Resources\Payment|Mollie\Api\Resources\Order $payment
|
1103 |
*/
|
1104 |
+
protected function processChargebacks(WC_Order $order, $payment)
|
1105 |
+
{
|
1106 |
+
// Get order ID in the correct way depending on WooCommerce version
|
1107 |
+
if (version_compare(WC_VERSION, '3.0', '<')) {
|
1108 |
+
$orderId = $order->id;
|
1109 |
+
} else {
|
1110 |
+
$orderId = $order->get_id();
|
1111 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1112 |
|
1113 |
+
// Debug log ID (order id/payment id)
|
1114 |
+
$logId = "order {$orderId} / payment {$payment->id}";
|
1115 |
|
1116 |
+
// Add message to log
|
1117 |
+
Mollie_WC_Plugin::debug(__METHOD__ . " called for {$logId}");
|
1118 |
|
1119 |
+
// Make sure there are chargebacks to process at all
|
1120 |
+
if (empty($payment->_links->chargebacks)) {
|
1121 |
+
Mollie_WC_Plugin::debug(
|
1122 |
+
__METHOD__ . ": No chargebacks to process for {$logId}",
|
1123 |
+
true
|
1124 |
+
);
|
1125 |
|
1126 |
+
return;
|
1127 |
+
}
|
|
|
|
|
1128 |
|
1129 |
+
// Check for new chargeback
|
1130 |
+
try {
|
1131 |
+
// Get all chargebacks for this payment
|
1132 |
+
$chargebacks = $payment->chargebacks();
|
1133 |
|
1134 |
+
// Collect all chargeback IDs in one array
|
1135 |
+
$chargebackIds = array();
|
1136 |
+
foreach ($chargebacks as $chargeback) {
|
1137 |
+
$chargebackIds[] = $chargeback->id;
|
1138 |
+
}
|
1139 |
|
1140 |
+
Mollie_WC_Plugin::debug(
|
1141 |
+
__METHOD__ . " All chargeback IDs for {$logId}: " . json_encode(
|
1142 |
+
$chargebackIds
|
1143 |
+
)
|
1144 |
+
);
|
1145 |
|
1146 |
+
// Get possibly already processed chargebacks
|
1147 |
+
if ($order->meta_exists('_mollie_processed_chargeback_ids')) {
|
1148 |
+
$processedChargebackIds = $order->get_meta(
|
1149 |
+
'_mollie_processed_chargeback_ids',
|
1150 |
+
true
|
1151 |
+
);
|
1152 |
+
} else {
|
1153 |
+
$processedChargebackIds = array();
|
1154 |
+
}
|
1155 |
|
1156 |
+
Mollie_WC_Plugin::debug(
|
1157 |
+
__METHOD__ . " Already processed chargebacks for {$logId}: "
|
1158 |
+
. json_encode($processedChargebackIds)
|
1159 |
+
);
|
1160 |
|
1161 |
+
// Order the chargeback arrays by value (chargeback ID)
|
1162 |
+
asort($chargebackIds);
|
1163 |
+
asort($processedChargebackIds);
|
1164 |
|
1165 |
+
// Check if there are new chargebacks that need processing
|
1166 |
+
if ($chargebackIds != $processedChargebackIds) {
|
1167 |
+
// There are new chargebacks.
|
1168 |
+
$chargebacksToProcess = array_diff(
|
1169 |
+
$chargebackIds,
|
1170 |
+
$processedChargebackIds
|
1171 |
+
);
|
1172 |
+
Mollie_WC_Plugin::debug(
|
1173 |
+
__METHOD__
|
1174 |
+
. " Chargebacks that need to be processed for {$logId}: "
|
1175 |
+
. json_encode($chargebacksToProcess)
|
1176 |
+
);
|
1177 |
+
} else {
|
1178 |
+
// No new chargebacks, stop processing.
|
1179 |
+
Mollie_WC_Plugin::debug(
|
1180 |
+
__METHOD__
|
1181 |
+
. " No new chargebacks, stop processing for {$logId}"
|
1182 |
+
);
|
1183 |
|
1184 |
+
return;
|
1185 |
+
}
|
|
|
|
|
|
|
1186 |
|
1187 |
+
$dataHelper = Mollie_WC_Plugin::getDataHelper();
|
1188 |
+
$order = $dataHelper->getWcOrder($orderId);
|
1189 |
|
1190 |
+
// Update order notes, add message about chargeback
|
1191 |
+
foreach ($chargebacksToProcess as $chargebackToProcess) {
|
1192 |
+
Mollie_WC_Plugin::debug(
|
1193 |
+
__METHOD__
|
1194 |
+
. " New chargeback {$chargebackToProcess} for {$logId}. Order note and order status updated."
|
1195 |
+
);
|
1196 |
|
1197 |
+
$order->add_order_note(
|
1198 |
+
sprintf(
|
1199 |
+
__(
|
1200 |
+
'New chargeback %s processed! Order note and order status updated.',
|
1201 |
+
'mollie-payments-for-woocommerce'
|
1202 |
+
),
|
1203 |
+
$chargebackToProcess
|
1204 |
+
)
|
1205 |
+
);
|
1206 |
|
1207 |
+
$processedChargebackIds[] = $chargebackToProcess;
|
1208 |
+
}
|
|
|
1209 |
|
1210 |
+
//
|
1211 |
+
// Update order status and add general note
|
1212 |
+
//
|
1213 |
+
|
1214 |
+
// New order status
|
1215 |
+
$newOrderStatus = self::STATUS_ON_HOLD;
|
1216 |
+
|
1217 |
+
// Overwrite plugin-wide
|
1218 |
+
$newOrderStatus = apply_filters( Mollie_WC_Plugin::PLUGIN_ID . '_order_status_on_hold', $newOrderStatus );
|
1219 |
+
|
1220 |
+
// Overwrite gateway-wide
|
1221 |
+
$newOrderStatus = apply_filters( Mollie_WC_Plugin::PLUGIN_ID . "_order_status_on_hold_{$this->id}", $newOrderStatus );
|
1222 |
+
|
1223 |
+
$paymentMethodTitle = $this->getPaymentMethodTitle($payment);
|
1224 |
+
|
1225 |
+
// Update order status for order with charged_back payment, don't restore stock
|
1226 |
+
$this->updateOrderStatus(
|
1227 |
+
$order,
|
1228 |
+
$newOrderStatus,
|
1229 |
+
sprintf(
|
1230 |
+
/* translators: Placeholder 1: payment method title, placeholder 2: payment ID */
|
1231 |
+
__(
|
1232 |
+
'%s payment charged back via Mollie (%s). You will need to manually review the payment (and adjust product stocks if you use it).',
|
1233 |
+
'mollie-payments-for-woocommerce'
|
1234 |
+
),
|
1235 |
+
$paymentMethodTitle,
|
1236 |
+
$payment->id . ($payment->mode == 'test' ? (' - ' . __(
|
1237 |
+
'test mode',
|
1238 |
+
'mollie-payments-for-woocommerce'
|
1239 |
+
)) : '')
|
1240 |
+
),
|
1241 |
+
$restoreStock = false
|
1242 |
+
);
|
1243 |
|
1244 |
+
// Send a "Failed order" email to notify the admin
|
1245 |
+
$emails = WC()->mailer()->get_emails();
|
1246 |
+
if (!empty($emails) && !empty($orderId)
|
1247 |
+
&& !empty($emails['WC_Email_Failed_Order'])
|
1248 |
+
) {
|
1249 |
+
$emails['WC_Email_Failed_Order']->trigger($orderId);
|
1250 |
+
}
|
1251 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1252 |
|
1253 |
+
$order->update_meta_data(
|
1254 |
+
'_mollie_processed_chargeback_ids',
|
1255 |
+
$processedChargebackIds
|
1256 |
+
);
|
1257 |
+
Mollie_WC_Plugin::debug(
|
1258 |
+
__METHOD__
|
1259 |
+
. " Updated, all processed chargebacks for {$logId}: "
|
1260 |
+
. json_encode($processedChargebackIds)
|
1261 |
+
);
|
1262 |
|
1263 |
+
$order->save();
|
1264 |
+
|
1265 |
+
//
|
1266 |
+
// Check if this is a renewal order, and if so set subscription to "On-Hold"
|
1267 |
+
//
|
1268 |
+
|
1269 |
+
// Do extra checks if WooCommerce Subscriptions is installed
|
1270 |
+
if (class_exists('WC_Subscriptions')
|
1271 |
+
&& class_exists(
|
1272 |
+
'WC_Subscriptions_Admin'
|
1273 |
+
)
|
1274 |
+
) {
|
1275 |
+
// Also store it on the subscriptions being purchased or paid for in the order
|
1276 |
+
if (wcs_order_contains_subscription($orderId)) {
|
1277 |
+
$subscriptions = wcs_get_subscriptions_for_order($orderId);
|
1278 |
+
} elseif (wcs_order_contains_renewal($orderId)) {
|
1279 |
+
$subscriptions = wcs_get_subscriptions_for_renewal_order(
|
1280 |
+
$orderId
|
1281 |
+
);
|
1282 |
+
} else {
|
1283 |
+
$subscriptions = array();
|
1284 |
+
}
|
1285 |
|
1286 |
+
foreach ($subscriptions as $subscription) {
|
1287 |
+
$this->updateOrderStatus(
|
1288 |
+
$subscription,
|
1289 |
+
$newOrderStatus,
|
1290 |
+
sprintf(
|
1291 |
+
/* translators: Placeholder 1: payment method title, placeholder 2: payment ID */
|
1292 |
+
__(
|
1293 |
+
'%s payment charged back via Mollie (%s). Subscription status updated, please review (and adjust product stocks if you use it).',
|
1294 |
+
'mollie-payments-for-woocommerce'
|
1295 |
+
),
|
1296 |
+
$paymentMethodTitle,
|
1297 |
+
$payment->id . ($payment->mode == 'test' ? (' - '
|
1298 |
+
. __(
|
1299 |
+
'test mode',
|
1300 |
+
'mollie-payments-for-woocommerce'
|
1301 |
+
)) : '')
|
1302 |
+
),
|
1303 |
+
$restoreStock = false
|
1304 |
+
);
|
1305 |
+
}
|
1306 |
+
}
|
1307 |
|
1308 |
+
do_action(
|
1309 |
+
Mollie_WC_Plugin::PLUGIN_ID . '_chargebacks_processed',
|
1310 |
+
$payment,
|
1311 |
+
$order
|
1312 |
+
);
|
1313 |
|
1314 |
+
return;
|
1315 |
+
} catch (\Mollie\Api\Exceptions\ApiException $e) {
|
1316 |
+
Mollie_WC_Plugin::debug(
|
1317 |
+
__FUNCTION__ . ": Could not load chargebacks for $payment->id: "
|
1318 |
+
. $e->getMessage() . ' (' . get_class($e) . ')'
|
1319 |
+
);
|
1320 |
+
}
|
1321 |
+
}
|
1322 |
|
1323 |
/**
|
1324 |
* @param $payment
|
1345 |
$order_id = mollieWooCommerceOrderId($order);
|
1346 |
$debugLine = __METHOD__ . " {$order_id}: Determine what the redirect URL in WooCommerce should be.";
|
1347 |
mollieWooCommerceDebug($debugLine);
|
1348 |
+
$hookReturnPaymentStatus = 'success';
|
1349 |
|
1350 |
if ( $this->orderNeedsPayment( $order ) ) {
|
1351 |
|
1389 |
return $order->get_checkout_payment_url( false );
|
1390 |
}
|
1391 |
}
|
|
|
1392 |
} catch (UnexpectedValueException $exc) {
|
1393 |
mollieWooCommerceNotice(__('Your payment was not successful. Please complete your order with a different payment method.', 'mollie-payments-for-woocommerce' ));
|
1394 |
$exceptionMessage = $exc->getMessage();
|
1395 |
$debugLine = __METHOD__ . " Problem processing the payment. {$exceptionMessage}";
|
1396 |
mollieWooCommerceDebug($debugLine);
|
1397 |
+
$hookReturnPaymentStatus = 'failed';
|
1398 |
}
|
1399 |
}
|
1400 |
+
do_action( Mollie_WC_Plugin::PLUGIN_ID . '_customer_return_payment_' . $hookReturnPaymentStatus, $order );
|
1401 |
|
1402 |
/*
|
1403 |
* Return to order received page
|
1818 |
*/
|
1819 |
public function getReturnUrl (WC_Order $order)
|
1820 |
{
|
1821 |
+
$siteUrl = get_home_url();
|
1822 |
$returnUrl = WC()->api_request_url( 'mollie_return' );
|
1823 |
$returnUrl = untrailingslashit($returnUrl);
|
1824 |
if (function_exists('idn_to_ascii')) {
|
1825 |
+
|
1826 |
+
if (defined('IDNA_NONTRANSITIONAL_TO_ASCII') && defined('INTL_IDNA_VARIANT_UTS46')) {
|
1827 |
+
$returnUrl = idn_to_ascii($returnUrl, IDNA_NONTRANSITIONAL_TO_ASCII, INTL_IDNA_VARIANT_UTS46);
|
1828 |
+
} else {
|
1829 |
+
$returnUrl = idn_to_ascii($returnUrl);
|
1830 |
+
}
|
1831 |
}
|
1832 |
$orderId = mollieWooCommerceOrderId($order);
|
1833 |
$orderKey = mollieWooCommerceOrderKey($order);
|
1839 |
$returnUrl = untrailingslashit($returnUrl);
|
1840 |
$langUrl = $this->getSiteUrlWithLanguage();
|
1841 |
|
1842 |
+
// Make sure there aren't any double /? in the URL (some (multilanguage) plugins will add this)
|
1843 |
+
if ( strpos( $langUrl, '/?' ) !== false ) {
|
1844 |
+
$langUrlParams = substr( $langUrl, strpos( $langUrl, "/?" ) + 2 );
|
1845 |
+
$returnUrl = $returnUrl . '&' . $langUrlParams;
|
1846 |
+
} else {
|
1847 |
+
$returnUrl = str_replace( $siteUrl, $langUrl, $returnUrl );
|
1848 |
+
}
|
1849 |
+
// Some (multilanguage) plugins will add a extra slash to the url (/nl//) causing the URL to redirect and lose it's data.
|
1850 |
+
$returnUrl = preg_replace('/([^:])(\/{2,})/', '$1/', $returnUrl);
|
1851 |
mollieWooCommerceDebug("{$this->id} : Order {$orderId} returnUrl: {$returnUrl}", true);
|
1852 |
+
|
1853 |
return apply_filters(Mollie_WC_Plugin::PLUGIN_ID . '_return_url', $returnUrl, $order);
|
1854 |
}
|
1855 |
|
1868 |
$webhookUrl = WC()->api_request_url(strtolower(get_class($this)));
|
1869 |
$webhookUrl = untrailingslashit($webhookUrl);
|
1870 |
if (function_exists('idn_to_ascii')) {
|
1871 |
+
|
1872 |
+
if (defined('IDNA_NONTRANSITIONAL_TO_ASCII') && defined('INTL_IDNA_VARIANT_UTS46')) {
|
1873 |
+
$webhookUrl = idn_to_ascii($webhookUrl, IDNA_NONTRANSITIONAL_TO_ASCII, INTL_IDNA_VARIANT_UTS46);
|
1874 |
+
} else {
|
1875 |
+
$webhookUrl = idn_to_ascii($webhookUrl);
|
1876 |
+
}
|
1877 |
}
|
1878 |
$orderId = mollieWooCommerceOrderId($order);
|
1879 |
$orderKey = mollieWooCommerceOrderKey($order);
|
1887 |
$langUrl = $this->getSiteUrlWithLanguage();
|
1888 |
|
1889 |
// Make sure there aren't any double /? in the URL (some (multilanguage) plugins will add this)
|
1890 |
+
if ( strpos( $langUrl, '/?' ) !== false ) {
|
1891 |
+
$langUrlParams = substr( $langUrl, strpos( $langUrl, "/?" ) + 2 );
|
1892 |
+
$webhookUrl = $webhookUrl . '&' . $langUrlParams;
|
1893 |
+
} else {
|
1894 |
+
$webhookUrl = str_replace( $siteUrl, $langUrl, $webhookUrl );
|
1895 |
+
}
|
1896 |
|
1897 |
// Some (multilanguage) plugins will add a extra slash to the url (/nl//) causing the URL to redirect and lose it's data.
|
1898 |
// Status updates via webhook will therefor not be processed. The below regex will find and remove those double slashes.
|
2201 |
|
2202 |
/**
|
2203 |
* Singleton of the class that handles icons (API/fallback)
|
2204 |
+
* @return Mollie_WC_Helper_PaymentMethodsIconUrl|null
|
2205 |
*/
|
2206 |
protected function iconFactory()
|
2207 |
{
|
2249 |
);
|
2250 |
return $webhook_url;
|
2251 |
}
|
2252 |
+
|
2253 |
+
/**
|
2254 |
+
* @param Mollie\Api\Resources\Payment|Mollie\Api\Resources\Order $payment
|
2255 |
+
*
|
2256 |
+
* @return bool
|
2257 |
+
*/
|
2258 |
+
protected function isPartialRefund($payment)
|
2259 |
+
{
|
2260 |
+
return (float)($payment->amount->value - $payment->amountRefunded->value) !== 0.0;
|
2261 |
+
}
|
2262 |
+
|
2263 |
+
/**
|
2264 |
+
* @param WC_Order $order
|
2265 |
+
* @param Mollie\Api\Resources\Payment|Mollie\Api\Resources\Order $payment
|
2266 |
+
*/
|
2267 |
+
protected function processUpdateStateRefund(WC_Order $order, $payment)
|
2268 |
+
{
|
2269 |
+
$this->isPartialRefund($payment)
|
2270 |
+
? $this->updateStateRefund(
|
2271 |
+
$order,
|
2272 |
+
$payment,
|
2273 |
+
self::STATUS_ON_HOLD,
|
2274 |
+
'_order_status_partially_refunded'
|
2275 |
+
)
|
2276 |
+
: $this->updateStateRefund(
|
2277 |
+
$order,
|
2278 |
+
$payment,
|
2279 |
+
self::STATUS_REFUNDED,
|
2280 |
+
'_order_status_refunded'
|
2281 |
+
);
|
2282 |
+
}
|
2283 |
+
|
2284 |
+
/**
|
2285 |
+
* @param WC_Order $order
|
2286 |
+
* @param Mollie\Api\Resources\Payment|Mollie\Api\Resources\Order $payment
|
2287 |
+
* @param $newOrderStatus
|
2288 |
+
* @param $refundType
|
2289 |
+
*/
|
2290 |
+
protected function updateStateRefund(
|
2291 |
+
WC_Order $order,
|
2292 |
+
$payment,
|
2293 |
+
$newOrderStatus,
|
2294 |
+
$refundType
|
2295 |
+
) {
|
2296 |
+
// Overwrite plugin-wide
|
2297 |
+
$newOrderStatus = apply_filters(
|
2298 |
+
Mollie_WC_Plugin::PLUGIN_ID . $refundType,
|
2299 |
+
$newOrderStatus
|
2300 |
+
);
|
2301 |
+
|
2302 |
+
// Overwrite gateway-wide
|
2303 |
+
$newOrderStatus = apply_filters(
|
2304 |
+
Mollie_WC_Plugin::PLUGIN_ID . $refundType . $this->id,
|
2305 |
+
$newOrderStatus
|
2306 |
+
);
|
2307 |
+
// New order status
|
2308 |
+
$note = $this->renderNote($payment, $refundType);
|
2309 |
+
$this->updateOrderStatus(
|
2310 |
+
$order,
|
2311 |
+
$newOrderStatus,
|
2312 |
+
$note,
|
2313 |
+
$restoreStock = false
|
2314 |
+
);
|
2315 |
+
}
|
2316 |
+
|
2317 |
+
/**
|
2318 |
+
* @param $payment
|
2319 |
+
* @param $refundType
|
2320 |
+
*
|
2321 |
+
* @return string
|
2322 |
+
*/
|
2323 |
+
protected function renderNote($payment, $refundType)
|
2324 |
+
{
|
2325 |
+
$paymentMethodTitle = $this->getPaymentMethodTitle($payment);
|
2326 |
+
$paymentTestModeNote = $this->paymentTestModeNote($payment);
|
2327 |
+
|
2328 |
+
return sprintf(
|
2329 |
+
/* translators: Placeholder 1: payment method title, placeholder 2: payment ID */
|
2330 |
+
__(
|
2331 |
+
'%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).',
|
2332 |
+
'mollie-payments-for-woocommerce'
|
2333 |
+
),
|
2334 |
+
$paymentMethodTitle,
|
2335 |
+
$refundType,
|
2336 |
+
$payment->id,
|
2337 |
+
$paymentTestModeNote
|
2338 |
+
);
|
2339 |
+
}
|
2340 |
+
|
2341 |
+
protected function paymentTestModeNote($payment)
|
2342 |
+
{
|
2343 |
+
$note = __('test mode', 'mollie-payments-for-woocommerce');
|
2344 |
+
$note = $payment->mode === 'test' ? " - {$note}" : '';
|
2345 |
+
|
2346 |
+
return $note;
|
2347 |
+
}
|
2348 |
}
|
src/Mollie/WC/Gateway/BankTransfer.php
CHANGED
@@ -19,8 +19,6 @@ class Mollie_WC_Gateway_BankTransfer extends Mollie_WC_Gateway_Abstract
|
|
19 |
);
|
20 |
|
21 |
parent::__construct();
|
22 |
-
|
23 |
-
add_filter('woocommerce_' . $this->id . '_args', array($this, 'addPaymentArguments'), 10, 2);
|
24 |
}
|
25 |
|
26 |
/**
|
@@ -31,17 +29,6 @@ class Mollie_WC_Gateway_BankTransfer extends Mollie_WC_Gateway_Abstract
|
|
31 |
parent::init_form_fields();
|
32 |
|
33 |
$this->form_fields = array_merge($this->form_fields, array(
|
34 |
-
'expiry_days' => array(
|
35 |
-
'title' => __('Expiry date', 'mollie-payments-for-woocommerce'),
|
36 |
-
'type' => 'number',
|
37 |
-
'description' => sprintf(__('Number of days after the payment will expire. Default <code>%d</code> days', 'mollie-payments-for-woocommerce'), self::EXPIRY_DEFAULT_DAYS),
|
38 |
-
'default' => self::EXPIRY_DEFAULT_DAYS,
|
39 |
-
'custom_attributes' => array(
|
40 |
-
'min' => self::EXPIRY_MIN_DAYS,
|
41 |
-
'max' => self::EXPIRY_MAX_DAYS,
|
42 |
-
'step' => 1,
|
43 |
-
),
|
44 |
-
),
|
45 |
'skip_mollie_payment_screen' => array(
|
46 |
'title' => __('Skip Mollie payment screen', 'mollie-payments-for-woocommerce'),
|
47 |
'label' => __('Skip Mollie payment screen when Bank Transfer is selected', 'mollie-payments-for-woocommerce'),
|
@@ -52,32 +39,6 @@ class Mollie_WC_Gateway_BankTransfer extends Mollie_WC_Gateway_Abstract
|
|
52 |
));
|
53 |
}
|
54 |
|
55 |
-
/**
|
56 |
-
* @param array $args
|
57 |
-
* @param WC_Order $order
|
58 |
-
*
|
59 |
-
* @return array
|
60 |
-
*/
|
61 |
-
public function addPaymentArguments( array $args, WC_Order $order ) {
|
62 |
-
// Expiry date
|
63 |
-
$expiry_days = (int) $this->get_option( 'expiry_days', self::EXPIRY_DEFAULT_DAYS );
|
64 |
-
|
65 |
-
if ( $expiry_days >= self::EXPIRY_MIN_DAYS && $expiry_days <= self::EXPIRY_MAX_DAYS ) {
|
66 |
-
$expiry_date = date( "Y-m-d", strtotime( "+$expiry_days days" ) );
|
67 |
-
|
68 |
-
// Add dueDate at the correct location
|
69 |
-
if ( isset( $args['payment'] ) ) {
|
70 |
-
$args['payment']['dueDate'] = $expiry_date;
|
71 |
-
} else {
|
72 |
-
$args['dueDate'] = $expiry_date;
|
73 |
-
}
|
74 |
-
}
|
75 |
-
|
76 |
-
// Billing email is now required
|
77 |
-
|
78 |
-
return $args;
|
79 |
-
}
|
80 |
-
|
81 |
/**
|
82 |
* {@inheritdoc}
|
83 |
*
|
19 |
);
|
20 |
|
21 |
parent::__construct();
|
|
|
|
|
22 |
}
|
23 |
|
24 |
/**
|
29 |
parent::init_form_fields();
|
30 |
|
31 |
$this->form_fields = array_merge($this->form_fields, array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
'skip_mollie_payment_screen' => array(
|
33 |
'title' => __('Skip Mollie payment screen', 'mollie-payments-for-woocommerce'),
|
34 |
'label' => __('Skip Mollie payment screen when Bank Transfer is selected', 'mollie-payments-for-woocommerce'),
|
39 |
));
|
40 |
}
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
/**
|
43 |
* {@inheritdoc}
|
44 |
*
|
src/Mollie/WC/Helper/Api.php
CHANGED
@@ -36,9 +36,9 @@ class Mollie_WC_Helper_Api {
|
|
36 |
}
|
37 |
|
38 |
if ( empty( $api_key ) ) {
|
39 |
-
throw new \Mollie\Api\Exceptions\ApiException( __( 'No API key provided. Please set
|
40 |
} elseif ( ! preg_match( '/^(live|test)_\w{30,}$/', $api_key ) ) {
|
41 |
-
throw new \Mollie\Api\Exceptions\ApiException( sprintf(__( "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
|
42 |
}
|
43 |
|
44 |
if (empty(self::$api_client)) {
|
36 |
}
|
37 |
|
38 |
if ( empty( $api_key ) ) {
|
39 |
+
throw new \Mollie\Api\Exceptions\ApiException( __( 'No API key provided. Please set your Mollie API keys below.', 'mollie-payments-for-woocommerce' ) );
|
40 |
} elseif ( ! preg_match( '/^(live|test)_\w{30,}$/', $api_key ) ) {
|
41 |
+
throw new \Mollie\Api\Exceptions\ApiException( sprintf(__( "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.", 'mollie-payments-for-woocommerce' ), '<a href="https://www.mollie.com/dashboard/developers/api-keys" target="_blank">', '</a>' ) );
|
42 |
}
|
43 |
|
44 |
if (empty(self::$api_client)) {
|
src/Mollie/WC/Helper/Data.php
CHANGED
@@ -318,19 +318,16 @@ class Mollie_WC_Helper_Data
|
|
318 |
|
319 |
try {
|
320 |
|
321 |
-
$transient_id = Mollie_WC_Plugin::getDataHelper()->getTransientId( md5(http_build_query($filters_key))
|
322 |
|
323 |
if ($use_cache) {
|
324 |
// When no cache exists $methods will be `false`
|
325 |
-
$methods =
|
326 |
}
|
327 |
|
328 |
// No cache exists, call the API and cache the result
|
329 |
if ( $methods === false ) {
|
330 |
|
331 |
-
// Remove existing expired transients
|
332 |
-
delete_transient( $transient_id );
|
333 |
-
|
334 |
$filters['resource'] = 'orders';
|
335 |
$filters['includeWallets'] = 'applepay';
|
336 |
|
@@ -347,12 +344,9 @@ class Mollie_WC_Helper_Data
|
|
347 |
$methods = $methods_cleaned;
|
348 |
|
349 |
// Set new transients (as cache)
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
catch ( Exception $e ) {
|
354 |
-
Mollie_WC_Plugin::debug( __FUNCTION__ . ": No caching because serialization failed." );
|
355 |
-
}
|
356 |
}
|
357 |
|
358 |
return $methods;
|
@@ -400,27 +394,18 @@ class Mollie_WC_Helper_Data
|
|
400 |
$transient_id = Mollie_WC_Plugin::getDataHelper()->getTransientId( $method . '_issuers_' . ( $test_mode ? 'test' : 'live' ) );
|
401 |
|
402 |
// When no cache exists $cached_issuers will be `false`
|
403 |
-
$issuers =
|
404 |
|
405 |
if ( $issuers === false ) {
|
406 |
|
407 |
-
// Remove existing expired transients
|
408 |
-
delete_transient( $transient_id );
|
409 |
-
|
410 |
$method = $this->api_helper->getApiClient( $test_mode )->methods->get( "$method", array ( "include" => "issuers" ) );
|
411 |
$issuers = $method->issuers;
|
412 |
|
413 |
// Set new transients (as cache)
|
414 |
-
|
415 |
-
set_transient( $transient_id, serialize( $issuers ), MINUTE_IN_SECONDS * 5 );
|
416 |
-
}
|
417 |
-
catch ( Exception $e ) {
|
418 |
-
Mollie_WC_Plugin::debug( __FUNCTION__ . ": No caching because serialization failed." );
|
419 |
-
}
|
420 |
}
|
421 |
|
422 |
return $issuers;
|
423 |
-
|
424 |
}
|
425 |
catch ( \Mollie\Api\Exceptions\ApiException $e ) {
|
426 |
Mollie_WC_Plugin::debug( __FUNCTION__ . ": Could not load " . $method . " issuers (" . ( $test_mode ? 'test' : 'live' ) . "): " . $e->getMessage() . ' (' . get_class( $e ) . ')' );
|
318 |
|
319 |
try {
|
320 |
|
321 |
+
$transient_id = Mollie_WC_Plugin::getDataHelper()->getTransientId( md5(http_build_query($filters_key)));
|
322 |
|
323 |
if ($use_cache) {
|
324 |
// When no cache exists $methods will be `false`
|
325 |
+
$methods = get_transient( $transient_id );
|
326 |
}
|
327 |
|
328 |
// No cache exists, call the API and cache the result
|
329 |
if ( $methods === false ) {
|
330 |
|
|
|
|
|
|
|
331 |
$filters['resource'] = 'orders';
|
332 |
$filters['includeWallets'] = 'applepay';
|
333 |
|
344 |
$methods = $methods_cleaned;
|
345 |
|
346 |
// Set new transients (as cache)
|
347 |
+
if($use_cache){
|
348 |
+
set_transient( $transient_id, $methods, HOUR_IN_SECONDS );
|
349 |
+
}
|
|
|
|
|
|
|
350 |
}
|
351 |
|
352 |
return $methods;
|
394 |
$transient_id = Mollie_WC_Plugin::getDataHelper()->getTransientId( $method . '_issuers_' . ( $test_mode ? 'test' : 'live' ) );
|
395 |
|
396 |
// When no cache exists $cached_issuers will be `false`
|
397 |
+
$issuers = get_transient( $transient_id );
|
398 |
|
399 |
if ( $issuers === false ) {
|
400 |
|
|
|
|
|
|
|
401 |
$method = $this->api_helper->getApiClient( $test_mode )->methods->get( "$method", array ( "include" => "issuers" ) );
|
402 |
$issuers = $method->issuers;
|
403 |
|
404 |
// Set new transients (as cache)
|
405 |
+
set_transient( $transient_id, $issuers, HOUR_IN_SECONDS );
|
|
|
|
|
|
|
|
|
|
|
406 |
}
|
407 |
|
408 |
return $issuers;
|
|
|
409 |
}
|
410 |
catch ( \Mollie\Api\Exceptions\ApiException $e ) {
|
411 |
Mollie_WC_Plugin::debug( __FUNCTION__ . ": Could not load " . $method . " issuers (" . ( $test_mode ? 'test' : 'live' ) . "): " . $e->getMessage() . ' (' . get_class( $e ) . ')' );
|
src/Mollie/WC/Helper/Settings.php
CHANGED
@@ -453,7 +453,7 @@ class Mollie_WC_Helper_Settings
|
|
453 |
'lt_LT' => __('Lithuanian', 'mollie-payments-for-woocommerce'),
|
454 |
),
|
455 |
'desc' => sprintf(
|
456 |
-
__('Sending a language (or locale) is required. The option \'Automatically send WordPress language\' will try 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.', 'mollie-payments-for-woocommerce'),
|
457 |
'<a href="https://www.mollie.com/nl/docs/reference/payments/create" target="_blank">',
|
458 |
'</a>'
|
459 |
),
|
@@ -621,7 +621,7 @@ class Mollie_WC_Helper_Settings
|
|
621 |
if ( $woocommerce_klarnapaylater_gateway->is_available() || $woocommerce_klarnasliceit_gateway->is_available() ) {
|
622 |
|
623 |
$content .= '<div class="notice notice-warning is-dismissible"><p>';
|
624 |
-
$content .= __( 'To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please
|
625 |
$content .= '</p></div> ';
|
626 |
|
627 |
return $content;
|
@@ -646,7 +646,7 @@ class Mollie_WC_Helper_Settings
|
|
646 |
if ( $woocommerce_klarnapaylater_gateway->is_available() || $woocommerce_klarnasliceit_gateway->is_available() ) {
|
647 |
|
648 |
$content .= '<div class="notice notice-warning is-dismissible"><p>';
|
649 |
-
$content .= sprintf(__( 'To accept Klarna payments via Mollie, you need to use
|
650 |
$content .= '</p></div> ';
|
651 |
|
652 |
return $content;
|
453 |
'lt_LT' => __('Lithuanian', 'mollie-payments-for-woocommerce'),
|
454 |
),
|
455 |
'desc' => sprintf(
|
456 |
+
__('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.', 'mollie-payments-for-woocommerce'),
|
457 |
'<a href="https://www.mollie.com/nl/docs/reference/payments/create" target="_blank">',
|
458 |
'</a>'
|
459 |
),
|
621 |
if ( $woocommerce_klarnapaylater_gateway->is_available() || $woocommerce_klarnasliceit_gateway->is_available() ) {
|
622 |
|
623 |
$content .= '<div class="notice notice-warning is-dismissible"><p>';
|
624 |
+
$content .= __( 'To accept Klarna payments via Mollie, all default WooCommerce checkout fields should be enabled and required. Please ensure that is the case.', 'mollie-payments-for-woocommerce' );
|
625 |
$content .= '</p></div> ';
|
626 |
|
627 |
return $content;
|
646 |
if ( $woocommerce_klarnapaylater_gateway->is_available() || $woocommerce_klarnasliceit_gateway->is_available() ) {
|
647 |
|
648 |
$content .= '<div class="notice notice-warning is-dismissible"><p>';
|
649 |
+
$content .= sprintf(__( 'To accept Klarna payments via Mollie, you need to use WooCommerce 3.0 or higher, you are now using version %s.', 'mollie-payments-for-woocommerce' ), WC_VERSION);
|
650 |
$content .= '</p></div> ';
|
651 |
|
652 |
return $content;
|
src/Mollie/WC/Helper/Status.php
CHANGED
@@ -102,7 +102,7 @@ class Mollie_WC_Helper_Status
|
|
102 |
$error = sprintf(
|
103 |
/* translators: Placeholder 1: Required PHP version, placeholder 2: current PHP version */
|
104 |
__(
|
105 |
-
'Mollie Payments for WooCommerce
|
106 |
'mollie-payments-for-woocommerce'
|
107 |
),
|
108 |
CompatibilityChecker::MIN_PHP_VERSION,
|
@@ -129,7 +129,7 @@ class Mollie_WC_Helper_Status
|
|
129 |
case IncompatiblePlatform::INCOMPATIBLE_CURL_FUNCTION:
|
130 |
$error =
|
131 |
__(
|
132 |
-
'Mollie Payments for WooCommerce
|
133 |
'mollie-payments-for-woocommerce'
|
134 |
);
|
135 |
break;
|
102 |
$error = sprintf(
|
103 |
/* translators: Placeholder 1: Required PHP version, placeholder 2: current PHP version */
|
104 |
__(
|
105 |
+
'Mollie Payments for WooCommerce require PHP %s or higher, you have PHP %s. Please upgrade and view %sthis FAQ%s',
|
106 |
'mollie-payments-for-woocommerce'
|
107 |
),
|
108 |
CompatibilityChecker::MIN_PHP_VERSION,
|
129 |
case IncompatiblePlatform::INCOMPATIBLE_CURL_FUNCTION:
|
130 |
$error =
|
131 |
__(
|
132 |
+
'Mollie Payments for WooCommerce require PHP cURL functions to be available. Please make sure all of these functions are available.',
|
133 |
'mollie-payments-for-woocommerce'
|
134 |
);
|
135 |
break;
|
src/Mollie/WC/Payment/Order.php
CHANGED
@@ -262,38 +262,38 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
|
|
262 |
/**
|
263 |
* @param WC_Order $order
|
264 |
* @param Mollie\Api\Resources\Order $payment
|
265 |
-
* @param string $
|
266 |
*/
|
267 |
-
public function onWebhookPaid( WC_Order $order, $payment, $
|
268 |
|
269 |
// Get order ID in the correct way depending on WooCommerce version
|
270 |
if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
|
271 |
-
$
|
272 |
} else {
|
273 |
-
$
|
274 |
}
|
275 |
|
276 |
if ( $payment->isPaid() ) {
|
277 |
|
278 |
// Add messages to log
|
279 |
-
Mollie_WC_Plugin::debug( __METHOD__ .
|
280 |
|
281 |
// WooCommerce 2.2.0 has the option to store the Payment transaction id.
|
282 |
-
$
|
283 |
|
284 |
-
if ( version_compare( $
|
285 |
$order->payment_complete( $payment->id );
|
286 |
} else {
|
287 |
$order->payment_complete();
|
288 |
}
|
289 |
|
290 |
// Add messages to log
|
291 |
-
Mollie_WC_Plugin::debug( __METHOD__ . ' WooCommerce payment_complete() processed and returned to ' . __METHOD__ .
|
292 |
|
293 |
$order->add_order_note( sprintf(
|
294 |
/* translators: Placeholder 1: payment method title, placeholder 2: payment ID */
|
295 |
__( 'Order completed using %s payment (%s).', 'mollie-payments-for-woocommerce' ),
|
296 |
-
$
|
297 |
$payment->id . ( $payment->mode == 'test' ? ( ' - ' . __( 'test mode', 'mollie-payments-for-woocommerce' ) ) : '' )
|
298 |
) );
|
299 |
|
@@ -301,12 +301,18 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
|
|
301 |
$this->setOrderPaidAndProcessed( $order );
|
302 |
|
303 |
// Remove (old) cancelled payments from this order
|
304 |
-
$this->unsetCancelledMolliePaymentId( $
|
305 |
|
306 |
// Add messages to log
|
307 |
-
Mollie_WC_Plugin::debug( __METHOD__ .
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
|
309 |
-
|
310 |
if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
|
311 |
if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
|
312 |
if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order->id ) ) {
|
@@ -324,7 +330,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
|
|
324 |
} else {
|
325 |
|
326 |
// Add messages to log
|
327 |
-
Mollie_WC_Plugin::debug( __METHOD__ .
|
328 |
|
329 |
}
|
330 |
}
|
@@ -664,7 +670,7 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
|
|
664 |
|
665 |
$order->add_order_note( sprintf(
|
666 |
/* translators: Placeholder 1: payment method title, placeholder 2: payment ID */
|
667 |
-
__( '%s order expired (%s) but
|
668 |
$payment_method_title,
|
669 |
$payment->id . ( $payment->mode == 'test' ? ( ' - ' . __( 'test mode', 'mollie-payments-for-woocommerce' ) ) : '' ),
|
670 |
$mollie_payment_id
|
@@ -1058,4 +1064,18 @@ class Mollie_WC_Payment_Order extends Mollie_WC_Payment_Object {
|
|
1058 |
|
1059 |
return false;
|
1060 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1061 |
}
|
262 |
/**
|
263 |
* @param WC_Order $order
|
264 |
* @param Mollie\Api\Resources\Order $payment
|
265 |
+
* @param string $paymentMethodTitle
|
266 |
*/
|
267 |
+
public function onWebhookPaid( WC_Order $order, $payment, $paymentMethodTitle ) {
|
268 |
|
269 |
// Get order ID in the correct way depending on WooCommerce version
|
270 |
if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
|
271 |
+
$orderId = $order->id;
|
272 |
} else {
|
273 |
+
$orderId = $order->get_id();
|
274 |
}
|
275 |
|
276 |
if ( $payment->isPaid() ) {
|
277 |
|
278 |
// Add messages to log
|
279 |
+
Mollie_WC_Plugin::debug( __METHOD__ . " called for order {$orderId}" );
|
280 |
|
281 |
// WooCommerce 2.2.0 has the option to store the Payment transaction id.
|
282 |
+
$wooVersion = get_option( 'woocommerce_version', 'Unknown' );
|
283 |
|
284 |
+
if ( version_compare( $wooVersion, '2.2.0', '>=' ) ) {
|
285 |
$order->payment_complete( $payment->id );
|
286 |
} else {
|
287 |
$order->payment_complete();
|
288 |
}
|
289 |
|
290 |
// Add messages to log
|
291 |
+
Mollie_WC_Plugin::debug( __METHOD__ . ' WooCommerce payment_complete() processed and returned to ' . __METHOD__ . " for order {$orderId}" );
|
292 |
|
293 |
$order->add_order_note( sprintf(
|
294 |
/* translators: Placeholder 1: payment method title, placeholder 2: payment ID */
|
295 |
__( 'Order completed using %s payment (%s).', 'mollie-payments-for-woocommerce' ),
|
296 |
+
$paymentMethodTitle,
|
297 |
$payment->id . ( $payment->mode == 'test' ? ( ' - ' . __( 'test mode', 'mollie-payments-for-woocommerce' ) ) : '' )
|
298 |
) );
|
299 |
|
301 |
$this->setOrderPaidAndProcessed( $order );
|
302 |
|
303 |
// Remove (old) cancelled payments from this order
|
304 |
+
$this->unsetCancelledMolliePaymentId( $orderId );
|
305 |
|
306 |
// Add messages to log
|
307 |
+
Mollie_WC_Plugin::debug( __METHOD__ . " processing paid order via Mollie plugin fully completed for order {$orderId}" );
|
308 |
+
//update payment so it can be refunded directly
|
309 |
+
$this->updatePaymentDataWithOrderData($payment, $orderId);
|
310 |
+
// Add a message to log
|
311 |
+
Mollie_WC_Plugin::debug(
|
312 |
+
__METHOD__ . ' updated payment with webhook and metadata '
|
313 |
+
);
|
314 |
|
315 |
+
// Subscription processing
|
316 |
if ( class_exists( 'WC_Subscriptions' ) && class_exists( 'WC_Subscriptions_Admin' ) ) {
|
317 |
if ( version_compare( WC_VERSION, '3.0', '<' ) ) {
|
318 |
if ( Mollie_WC_Plugin::getDataHelper()->isSubscription( $order->id ) ) {
|
330 |
} else {
|
331 |
|
332 |
// Add messages to log
|
333 |
+
Mollie_WC_Plugin::debug( __METHOD__ . " payment at Mollie not paid, so no processing for order {$orderId}" );
|
334 |
|
335 |
}
|
336 |
}
|
670 |
|
671 |
$order->add_order_note( sprintf(
|
672 |
/* translators: Placeholder 1: payment method title, placeholder 2: payment ID */
|
673 |
+
__( '%s order expired (%s) but not cancelled because of another pending payment (%s).', 'mollie-payments-for-woocommerce' ),
|
674 |
$payment_method_title,
|
675 |
$payment->id . ( $payment->mode == 'test' ? ( ' - ' . __( 'test mode', 'mollie-payments-for-woocommerce' ) ) : '' ),
|
676 |
$mollie_payment_id
|
1064 |
|
1065 |
return false;
|
1066 |
}
|
1067 |
+
|
1068 |
+
/**
|
1069 |
+
* @param Mollie\Api\Resources\Order $order
|
1070 |
+
* @param int $orderId
|
1071 |
+
*/
|
1072 |
+
protected function updatePaymentDataWithOrderData($order, $orderId)
|
1073 |
+
{
|
1074 |
+
$paymentCollection = $order->payments();
|
1075 |
+
foreach ($paymentCollection as $payment) {
|
1076 |
+
$payment->webhookUrl = $order->webhookUrl;
|
1077 |
+
$payment->metadata = ['order_id' => $orderId];
|
1078 |
+
$payment->update();
|
1079 |
+
}
|
1080 |
+
}
|
1081 |
}
|
src/Mollie/WC/Payment/OrderItemsRefunder.php
CHANGED
@@ -107,7 +107,7 @@ class Mollie_WC_Payment_OrderItemsRefunder
|
|
107 |
if (!$toRefundItemId) {
|
108 |
throw new UnexpectedValueException(
|
109 |
__(
|
110 |
-
'One of the WooCommerce order items does not have the refund item
|
111 |
'mollie-payments-for-woocommerce'
|
112 |
)
|
113 |
);
|
@@ -155,7 +155,7 @@ class Mollie_WC_Payment_OrderItemsRefunder
|
|
155 |
throw new UnexpectedValueException(
|
156 |
sprintf(
|
157 |
__(
|
158 |
-
'Impossible to retrieve the order item
|
159 |
'mollie-payments-for-woocommerce'
|
160 |
),
|
161 |
$remoteItem->id
|
@@ -181,7 +181,7 @@ class Mollie_WC_Payment_OrderItemsRefunder
|
|
181 |
if (empty($items) || empty($remoteItems)) {
|
182 |
throw new UnexpectedValueException(
|
183 |
__(
|
184 |
-
'Empty
|
185 |
'mollie-payments-for-woocommerce'
|
186 |
)
|
187 |
);
|
107 |
if (!$toRefundItemId) {
|
108 |
throw new UnexpectedValueException(
|
109 |
__(
|
110 |
+
'One of the WooCommerce order items does not have the refund item ID meta value associated to Mollie Order item.',
|
111 |
'mollie-payments-for-woocommerce'
|
112 |
)
|
113 |
);
|
155 |
throw new UnexpectedValueException(
|
156 |
sprintf(
|
157 |
__(
|
158 |
+
'Impossible to retrieve the order item ID related to the remote item: %1$s. Try to do a refund by amount.',
|
159 |
'mollie-payments-for-woocommerce'
|
160 |
),
|
161 |
$remoteItem->id
|
181 |
if (empty($items) || empty($remoteItems)) {
|
182 |
throw new UnexpectedValueException(
|
183 |
__(
|
184 |
+
'Empty WooCommerce order items or mollie order lines.',
|
185 |
'mollie-payments-for-woocommerce'
|
186 |
)
|
187 |
);
|
src/Mollie/WC/Payment/Payment.php
CHANGED
@@ -469,7 +469,7 @@ class Mollie_WC_Payment_Payment extends Mollie_WC_Payment_Object {
|
|
469 |
|
470 |
$order->add_order_note( sprintf(
|
471 |
/* translators: Placeholder 1: payment method title, placeholder 2: payment ID */
|
472 |
-
__( '%s payment expired (%s) but
|
473 |
$payment_method_title,
|
474 |
$payment->id . ( $payment->mode == 'test' ? ( ' - ' . __( 'test mode', 'mollie-payments-for-woocommerce' ) ) : '' ),
|
475 |
$mollie_payment_id
|
469 |
|
470 |
$order->add_order_note( sprintf(
|
471 |
/* translators: Placeholder 1: payment method title, placeholder 2: payment ID */
|
472 |
+
__( '%s payment expired (%s) but not cancelled because of another pending payment (%s).', 'mollie-payments-for-woocommerce' ),
|
473 |
$payment_method_title,
|
474 |
$payment->id . ( $payment->mode == 'test' ? ( ' - ' . __( 'test mode', 'mollie-payments-for-woocommerce' ) ) : '' ),
|
475 |
$mollie_payment_id
|
src/Mollie/WC/Plugin.php
CHANGED
@@ -8,7 +8,7 @@ class Mollie_WC_Plugin
|
|
8 |
{
|
9 |
const PLUGIN_ID = 'mollie-payments-for-woocommerce';
|
10 |
const PLUGIN_TITLE = 'Mollie Payments for WooCommerce';
|
11 |
-
const PLUGIN_VERSION = '5.
|
12 |
|
13 |
const DB_VERSION = '1.0';
|
14 |
const DB_VERSION_PARAM_NAME = 'mollie-db-version';
|
@@ -629,7 +629,7 @@ class Mollie_WC_Plugin
|
|
629 |
if ($isWcApiRequest ||
|
630 |
!$wooCommerceSession instanceof WC_Session ||
|
631 |
!doing_action('woocommerce_payment_gateways') ||
|
632 |
-
!wp_doing_ajax() ||
|
633 |
is_admin()
|
634 |
) {
|
635 |
return $gateways;
|
8 |
{
|
9 |
const PLUGIN_ID = 'mollie-payments-for-woocommerce';
|
10 |
const PLUGIN_TITLE = 'Mollie Payments for WooCommerce';
|
11 |
+
const PLUGIN_VERSION = '5.6.1';
|
12 |
|
13 |
const DB_VERSION = '1.0';
|
14 |
const DB_VERSION_PARAM_NAME = 'mollie-db-version';
|
629 |
if ($isWcApiRequest ||
|
630 |
!$wooCommerceSession instanceof WC_Session ||
|
631 |
!doing_action('woocommerce_payment_gateways') ||
|
632 |
+
!wp_doing_ajax() && ! is_wc_endpoint_url( 'order-pay' )||
|
633 |
is_admin()
|
634 |
) {
|
635 |
return $gateways;
|
src/subscriptions_status_check_functions.php
CHANGED
@@ -192,11 +192,11 @@ class WC_Tools_Subscriptions_Status_Button {
|
|
192 |
if ( empty( $subscriptions_left ) ) {
|
193 |
echo '<div class="updated notice"><p>' . __( 'No more subscriptions left to process!', 'mollie-payments-for-woocommerce' ) . '</p></div>';
|
194 |
} else {
|
195 |
-
echo '<div class="error notice"><p>' . __( 'There are still subscriptions left, use the tool again!', 'mollie-payments-for-woocommerce' ) . '</p></div>';
|
196 |
}
|
197 |
|
198 |
}
|
199 |
|
200 |
}
|
201 |
|
202 |
-
$GLOBALS['WC_Tools_Subscriptions_Status_Button'] = new WC_Tools_Subscriptions_Status_Button();
|
192 |
if ( empty( $subscriptions_left ) ) {
|
193 |
echo '<div class="updated notice"><p>' . __( 'No more subscriptions left to process!', 'mollie-payments-for-woocommerce' ) . '</p></div>';
|
194 |
} else {
|
195 |
+
echo '<div class="error notice"><p>' . __( 'There are still some subscriptions left, use the tool again!', 'mollie-payments-for-woocommerce' ) . '</p></div>';
|
196 |
}
|
197 |
|
198 |
}
|
199 |
|
200 |
}
|
201 |
|
202 |
+
$GLOBALS['WC_Tools_Subscriptions_Status_Button'] = new WC_Tools_Subscriptions_Status_Button();
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit5b6b3426f3ac06cdb1437d30239b7891::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit0e0f84c502efc5e060d5602a9841af8f
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
@@ -48,19 +48,19 @@ class ComposerAutoloaderInit0e0f84c502efc5e060d5602a9841af8f
|
|
48 |
$loader->register(true);
|
49 |
|
50 |
if ($useStaticLoader) {
|
51 |
-
$includeFiles = Composer\Autoload\
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
-
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
-
function
|
64 |
{
|
65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
66 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit5b6b3426f3ac06cdb1437d30239b7891
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit5b6b3426f3ac06cdb1437d30239b7891', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit5b6b3426f3ac06cdb1437d30239b7891', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit5b6b3426f3ac06cdb1437d30239b7891::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
48 |
$loader->register(true);
|
49 |
|
50 |
if ($useStaticLoader) {
|
51 |
+
$includeFiles = Composer\Autoload\ComposerStaticInit5b6b3426f3ac06cdb1437d30239b7891::$files;
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
+
composerRequire5b6b3426f3ac06cdb1437d30239b7891($fileIdentifier, $file);
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
+
function composerRequire5b6b3426f3ac06cdb1437d30239b7891($fileIdentifier, $file)
|
64 |
{
|
65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
66 |
require $file;
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
|
@@ -287,10 +287,10 @@ class ComposerStaticInit0e0f84c502efc5e060d5602a9841af8f
|
|
287 |
public static function getInitializer(ClassLoader $loader)
|
288 |
{
|
289 |
return \Closure::bind(function () use ($loader) {
|
290 |
-
$loader->prefixLengthsPsr4 =
|
291 |
-
$loader->prefixDirsPsr4 =
|
292 |
-
$loader->prefixesPsr0 =
|
293 |
-
$loader->classMap =
|
294 |
|
295 |
}, null, ClassLoader::class);
|
296 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit5b6b3426f3ac06cdb1437d30239b7891
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
|
287 |
public static function getInitializer(ClassLoader $loader)
|
288 |
{
|
289 |
return \Closure::bind(function () use ($loader) {
|
290 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit5b6b3426f3ac06cdb1437d30239b7891::$prefixLengthsPsr4;
|
291 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit5b6b3426f3ac06cdb1437d30239b7891::$prefixDirsPsr4;
|
292 |
+
$loader->prefixesPsr0 = ComposerStaticInit5b6b3426f3ac06cdb1437d30239b7891::$prefixesPsr0;
|
293 |
+
$loader->classMap = ComposerStaticInit5b6b3426f3ac06cdb1437d30239b7891::$classMap;
|
294 |
|
295 |
}, null, ClassLoader::class);
|
296 |
}
|