Version Description
- THURSDAY, 21ST APRIL 2022 =
- Fix: Syntax error of older PHP versions.
Download this release
Release Info
Developer | brainstormworg |
Plugin | Stripe Payments For WooCommerce by Checkout Plugins |
Version | 1.4.3 |
Comparing to | |
See all releases |
Code changes from version 1.4.2 to 1.4.3
- admin/admin-controller.php +6 -4
- admin/assets/js/express-checkout.js +8 -0
- admin/assets/js/stripe-elements.js +8 -0
- assets/js/payment-request.js +8 -0
- assets/js/stripe-elements.js +8 -0
- checkout-plugins-stripe-woo.php +2 -2
- gateway/abstract-payment-gateway.php +1 -1
- gateway/stripe/frontend-scripts.php +2 -0
- languages/checkout-plugins-stripe-woo.pot +159 -210
- readme.txt +4 -1
admin/admin-controller.php
CHANGED
@@ -239,6 +239,7 @@ class Admin_Controller {
|
|
239 |
'cpsw_admin_stripe_elements',
|
240 |
[
|
241 |
'public_key' => $public_key,
|
|
|
242 |
'is_ssl' => is_ssl(),
|
243 |
'mode' => Helper::get_payment_mode(),
|
244 |
'client_secret' => get_transient( 'cpsw_stripe_sepa_client_secret' ),
|
@@ -301,19 +302,20 @@ class Admin_Controller {
|
|
301 |
apply_filters(
|
302 |
'cpsw_express_checkout_localize_args',
|
303 |
[
|
304 |
-
'public_key'
|
305 |
-
'
|
|
|
306 |
'text' => $button_text,
|
307 |
'theme' => Helper::get_setting( 'express_checkout_button_theme', 'cpsw_stripe' ),
|
308 |
],
|
309 |
-
'icons'
|
310 |
'applepay_gray' => CPSW_URL . 'assets/icon/apple-pay-gray.svg',
|
311 |
'applepay_light' => CPSW_URL . 'assets/icon/apple-pay-light.svg',
|
312 |
'gpay_light' => CPSW_URL . 'assets/icon/gpay_light.svg',
|
313 |
'gpay_gray' => CPSW_URL . 'assets/icon/gpay_gray.svg',
|
314 |
'payment_request' => CPSW_URL . 'assets/icon/payment-request-icon.svg',
|
315 |
],
|
316 |
-
'messages'
|
317 |
/* translators: Html Markup*/
|
318 |
'no_method' => sprintf( __( 'No payment method detected. Either your browser is not supported or you do not have save cards. For more details read %1$1sdocument$2$2s.', 'checkout-plugins-stripe-woo' ), '<a href="https://stripe.com/docs/stripe-js/elements/payment-request-button#html-js-testing" target="_blank">', '</a>' ),
|
319 |
'checkout_note' => __( 'NOTE: Title and Tagline appears only on Checkout page.', 'checkout-plugins-stripe-woo' ),
|
239 |
'cpsw_admin_stripe_elements',
|
240 |
[
|
241 |
'public_key' => $public_key,
|
242 |
+
'cpsw_version' => CPSW_VERSION,
|
243 |
'is_ssl' => is_ssl(),
|
244 |
'mode' => Helper::get_payment_mode(),
|
245 |
'client_secret' => get_transient( 'cpsw_stripe_sepa_client_secret' ),
|
302 |
apply_filters(
|
303 |
'cpsw_express_checkout_localize_args',
|
304 |
[
|
305 |
+
'public_key' => $public_key,
|
306 |
+
'cpsw_version' => CPSW_VERSION,
|
307 |
+
'style' => [
|
308 |
'text' => $button_text,
|
309 |
'theme' => Helper::get_setting( 'express_checkout_button_theme', 'cpsw_stripe' ),
|
310 |
],
|
311 |
+
'icons' => [
|
312 |
'applepay_gray' => CPSW_URL . 'assets/icon/apple-pay-gray.svg',
|
313 |
'applepay_light' => CPSW_URL . 'assets/icon/apple-pay-light.svg',
|
314 |
'gpay_light' => CPSW_URL . 'assets/icon/gpay_light.svg',
|
315 |
'gpay_gray' => CPSW_URL . 'assets/icon/gpay_gray.svg',
|
316 |
'payment_request' => CPSW_URL . 'assets/icon/payment-request-icon.svg',
|
317 |
],
|
318 |
+
'messages' => [
|
319 |
/* translators: Html Markup*/
|
320 |
'no_method' => sprintf( __( 'No payment method detected. Either your browser is not supported or you do not have save cards. For more details read %1$1sdocument$2$2s.', 'checkout-plugins-stripe-woo' ), '<a href="https://stripe.com/docs/stripe-js/elements/payment-request-button#html-js-testing" target="_blank">', '</a>' ),
|
321 |
'checkout_note' => __( 'NOTE: Title and Tagline appears only on Checkout page.', 'checkout-plugins-stripe-woo' ),
|
admin/assets/js/express-checkout.js
CHANGED
@@ -6,6 +6,14 @@
|
|
6 |
const icons = cpsw_express_checkout.icons;
|
7 |
const stripe = Stripe( pubKey );
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
function generateExpressCheckoutDemo() {
|
10 |
try {
|
11 |
const data = {
|
6 |
const icons = cpsw_express_checkout.icons;
|
7 |
const stripe = Stripe( pubKey );
|
8 |
|
9 |
+
// Register stripe app info
|
10 |
+
stripe.registerAppInfo( {
|
11 |
+
name: 'WordPress Checkout Plugins - Stripe for WooCommerce',
|
12 |
+
partner_id: 'pp_partner_KOjySVEy3ClX6G',
|
13 |
+
version: cpsw_global_settings.cpsw_version,
|
14 |
+
url: 'https://wordpress.org/plugins/checkout-plugins-stripe-woo/',
|
15 |
+
} );
|
16 |
+
|
17 |
function generateExpressCheckoutDemo() {
|
18 |
try {
|
19 |
const data = {
|
admin/assets/js/stripe-elements.js
CHANGED
@@ -9,5 +9,13 @@
|
|
9 |
|
10 |
const stripe = Stripe( pubKey );
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
stripe.confirmSepaDebitPayment( clientSecret, {} ).then( function() {} );
|
13 |
}( jQuery ) );
|
9 |
|
10 |
const stripe = Stripe( pubKey );
|
11 |
|
12 |
+
// Register stripe app info
|
13 |
+
stripe.registerAppInfo( {
|
14 |
+
name: 'WordPress Checkout Plugins - Stripe for WooCommerce',
|
15 |
+
partner_id: 'pp_partner_KOjySVEy3ClX6G',
|
16 |
+
version: cpsw_global_settings.cpsw_version,
|
17 |
+
url: 'https://wordpress.org/plugins/checkout-plugins-stripe-woo/',
|
18 |
+
} );
|
19 |
+
|
20 |
stripe.confirmSepaDebitPayment( clientSecret, {} ).then( function() {} );
|
21 |
}( jQuery ) );
|
assets/js/payment-request.js
CHANGED
@@ -28,6 +28,14 @@
|
|
28 |
|
29 |
const stripe = Stripe( pubKey );
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
function getAjaxEndpoint( param ) {
|
32 |
return endpoint.toString().replace( '%%endpoint%%', param );
|
33 |
}
|
28 |
|
29 |
const stripe = Stripe( pubKey );
|
30 |
|
31 |
+
// Register stripe app info
|
32 |
+
stripe.registerAppInfo( {
|
33 |
+
name: 'WordPress Checkout Plugins - Stripe for WooCommerce',
|
34 |
+
partner_id: 'pp_partner_KOjySVEy3ClX6G',
|
35 |
+
version: cpsw_payment_request.cpsw_version,
|
36 |
+
url: 'https://wordpress.org/plugins/checkout-plugins-stripe-woo/',
|
37 |
+
} );
|
38 |
+
|
39 |
function getAjaxEndpoint( param ) {
|
40 |
return endpoint.toString().replace( '%%endpoint%%', param );
|
41 |
}
|
assets/js/stripe-elements.js
CHANGED
@@ -37,6 +37,14 @@
|
|
37 |
},
|
38 |
};
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
// Create an instance of the iban Element
|
41 |
const sepaOptions = Object.keys( cpsw_global_settings.sepa_options ).length ? cpsw_global_settings.sepa_options : {};
|
42 |
const sepa = elements.create( 'iban', sepaOptions );
|
37 |
},
|
38 |
};
|
39 |
|
40 |
+
// Register stripe app info
|
41 |
+
stripe.registerAppInfo( {
|
42 |
+
name: 'WordPress Checkout Plugins - Stripe for WooCommerce',
|
43 |
+
partner_id: 'pp_partner_KOjySVEy3ClX6G',
|
44 |
+
version: cpsw_global_settings.cpsw_version,
|
45 |
+
url: 'https://wordpress.org/plugins/checkout-plugins-stripe-woo/',
|
46 |
+
} );
|
47 |
+
|
48 |
// Create an instance of the iban Element
|
49 |
const sepaOptions = Object.keys( cpsw_global_settings.sepa_options ).length ? cpsw_global_settings.sepa_options : {};
|
50 |
const sepa = elements.create( 'iban', sepaOptions );
|
checkout-plugins-stripe-woo.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Checkout Plugins - Stripe for WooCommerce
|
4 |
* Plugin URI: https://www.checkoutplugins.com/
|
5 |
* Description: Stripe for WooCommerce delivers a simple, secure way to accept credit card payments in your WooCommerce store. Reduce payment friction and boost conversions using this free plugin!
|
6 |
-
* Version: 1.4.
|
7 |
* Author: Checkout Plugins
|
8 |
* Author URI: https://checkoutplugins.com/
|
9 |
* License: GPLv2 or later
|
@@ -20,6 +20,6 @@ define( 'CPSW_FILE', __FILE__ );
|
|
20 |
define( 'CPSW_BASE', plugin_basename( CPSW_FILE ) );
|
21 |
define( 'CPSW_DIR', plugin_dir_path( CPSW_FILE ) );
|
22 |
define( 'CPSW_URL', plugins_url( '/', CPSW_FILE ) );
|
23 |
-
define( 'CPSW_VERSION', '1.4.
|
24 |
|
25 |
require_once 'autoloader.php';
|
3 |
* Plugin Name: Checkout Plugins - Stripe for WooCommerce
|
4 |
* Plugin URI: https://www.checkoutplugins.com/
|
5 |
* Description: Stripe for WooCommerce delivers a simple, secure way to accept credit card payments in your WooCommerce store. Reduce payment friction and boost conversions using this free plugin!
|
6 |
+
* Version: 1.4.3
|
7 |
* Author: Checkout Plugins
|
8 |
* Author URI: https://checkoutplugins.com/
|
9 |
* License: GPLv2 or later
|
20 |
define( 'CPSW_BASE', plugin_basename( CPSW_FILE ) );
|
21 |
define( 'CPSW_DIR', plugin_dir_path( CPSW_FILE ) );
|
22 |
define( 'CPSW_URL', plugins_url( '/', CPSW_FILE ) );
|
23 |
+
define( 'CPSW_VERSION', '1.4.3' );
|
24 |
|
25 |
require_once 'autoloader.php';
|
gateway/abstract-payment-gateway.php
CHANGED
@@ -424,7 +424,7 @@ abstract class Abstract_Payment_Gateway extends WC_Payment_Gateway {
|
|
424 |
'client_secret' => $intent->client_secret,
|
425 |
];
|
426 |
|
427 |
-
update_post_meta( $order_id, '_cpsw_intent_secret', $intent_data
|
428 |
$client_secret = $intent->client_secret;
|
429 |
|
430 |
return [
|
424 |
'client_secret' => $intent->client_secret,
|
425 |
];
|
426 |
|
427 |
+
update_post_meta( $order_id, '_cpsw_intent_secret', $intent_data );
|
428 |
$client_secret = $intent->client_secret;
|
429 |
|
430 |
return [
|
gateway/stripe/frontend-scripts.php
CHANGED
@@ -98,6 +98,7 @@ class Frontend_Scripts {
|
|
98 |
'cpsw_global_settings',
|
99 |
[
|
100 |
'public_key' => $public_key,
|
|
|
101 |
'inline_cc' => Helper::get_setting( 'inline_cc', 'cpsw_stripe' ),
|
102 |
'is_ssl' => is_ssl(),
|
103 |
'mode' => Helper::get_payment_mode(),
|
@@ -156,6 +157,7 @@ class Frontend_Scripts {
|
|
156 |
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
157 |
'ajax_endpoint' => WC_AJAX::get_endpoint( '%%endpoint%%' ),
|
158 |
'public_key' => $public_key,
|
|
|
159 |
'mode' => Helper::get_payment_mode(),
|
160 |
'currency_code' => strtolower( get_woocommerce_currency() ),
|
161 |
'country_code' => substr( get_option( 'woocommerce_default_country' ), 0, 2 ),
|
98 |
'cpsw_global_settings',
|
99 |
[
|
100 |
'public_key' => $public_key,
|
101 |
+
'cpsw_version' => CPSW_VERSION,
|
102 |
'inline_cc' => Helper::get_setting( 'inline_cc', 'cpsw_stripe' ),
|
103 |
'is_ssl' => is_ssl(),
|
104 |
'mode' => Helper::get_payment_mode(),
|
157 |
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
158 |
'ajax_endpoint' => WC_AJAX::get_endpoint( '%%endpoint%%' ),
|
159 |
'public_key' => $public_key,
|
160 |
+
'cpsw_version' => CPSW_VERSION,
|
161 |
'mode' => Helper::get_payment_mode(),
|
162 |
'currency_code' => strtolower( get_woocommerce_currency() ),
|
163 |
'country_code' => substr( get_option( 'woocommerce_default_country' ), 0, 2 ),
|
languages/checkout-plugins-stripe-woo.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the GPLv2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Checkout Plugins - Stripe for WooCommerce 1.4.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/checkout-plugins-stripe-woo\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2022-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.5.0\n"
|
15 |
"X-Domain: checkout-plugins-stripe-woo\n"
|
@@ -28,7 +28,6 @@ msgstr ""
|
|
28 |
|
29 |
#. Author of the plugin
|
30 |
#: wizard/build/app.js:1
|
31 |
-
#: wizard/build/app.js:989
|
32 |
msgid "Checkout Plugins"
|
33 |
msgstr ""
|
34 |
|
@@ -37,7 +36,7 @@ msgid "https://checkoutplugins.com/"
|
|
37 |
msgstr ""
|
38 |
|
39 |
#: admin/admin-controller.php:79
|
40 |
-
#: admin/admin-controller.php:
|
41 |
msgid "Stripe API Settings"
|
42 |
msgstr ""
|
43 |
|
@@ -46,10 +45,9 @@ msgid "Credit Cards"
|
|
46 |
msgstr ""
|
47 |
|
48 |
#: admin/admin-controller.php:81
|
49 |
-
#: admin/admin-controller.php:
|
50 |
#: inc/helper.php:87
|
51 |
#: wizard/build/app.js:1
|
52 |
-
#: wizard/build/app.js:895
|
53 |
msgid "Express Checkout"
|
54 |
msgstr ""
|
55 |
|
@@ -88,536 +86,533 @@ msgstr ""
|
|
88 |
msgid "Bancontact"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: admin/admin-controller.php:
|
92 |
msgid "Something went wrong! Please reload the page and try again."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: admin/admin-controller.php:
|
96 |
-
#: admin/admin-controller.php:
|
97 |
msgid "Connect to Stripe"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin/admin-controller.php:
|
101 |
msgid "Please enter all keys to connect to stripe."
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: admin/admin-controller.php:
|
105 |
msgid "You must enter your API keys or connect the plugin before performing a connection test. Mode:"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin/admin-controller.php:
|
109 |
msgid "Keys Unavailable."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: admin/admin-controller.php:
|
113 |
msgid "Your Stripe account has been disconnected."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: admin/admin-controller.php:
|
117 |
msgid "You can connect other Stripe account now."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: admin/admin-controller.php:
|
121 |
-
#: admin/admin-controller.php:
|
122 |
-
#: gateway/stripe/frontend-scripts.php:
|
123 |
#: gateway/stripe/payment-request-api.php:152
|
124 |
#: inc/helper.php:84
|
125 |
msgid "Pay now"
|
126 |
msgstr ""
|
127 |
|
128 |
#. translators: Html Markup
|
129 |
-
#: admin/admin-controller.php:
|
130 |
msgid "No payment method detected. Either your browser is not supported or you do not have save cards. For more details read %1$1sdocument$2$2s."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin/admin-controller.php:
|
134 |
msgid "NOTE: Title and Tagline appears only on Checkout page."
|
135 |
msgstr ""
|
136 |
|
137 |
#. translators: %1$1s HTML Markup
|
138 |
-
#: admin/admin-controller.php:
|
139 |
msgid "You Stripe Publishable and Secret Keys are not set correctly. You can connect to Stripe and correct them from <a href=\"%1$1s\">here.</a>"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: admin/admin-controller.php:
|
143 |
-
#: admin/admin-controller.php:
|
144 |
msgid "Stripe Connect"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: admin/admin-controller.php:
|
148 |
-
#: admin/admin-controller.php:
|
149 |
-
#: admin/admin-controller.php:
|
150 |
msgid "Hide API keys"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin/admin-controller.php:
|
154 |
-
#: admin/admin-controller.php:
|
155 |
-
#: admin/admin-controller.php:
|
156 |
#: wizard/build/app.js:1
|
157 |
-
#: wizard/build/app.js:951
|
158 |
msgid "Manage API keys manually"
|
159 |
msgstr ""
|
160 |
|
161 |
#. translators: %1$1s: mode, %2$2s, %3$3s: HTML Markup
|
162 |
-
#: admin/admin-controller.php:
|
163 |
msgid "Stripe Keys for %1$1s mode are not set correctly. Reconnect via %2$2s or %3$3s"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: admin/admin-controller.php:
|
167 |
msgid "No SSL was detected, Stripe live mode requires SSL."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: admin/admin-controller.php:
|
171 |
msgid "Your Stripe account has been connected to your WooCommerce store. You may now accept payments in live and test mode."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: admin/admin-controller.php:
|
175 |
msgid "We were not able to connect your Stripe account. Please try again. "
|
176 |
msgstr ""
|
177 |
|
178 |
#. translators: %1$s Webhook secret page link, %2$s Webhook guide page link
|
179 |
-
#: admin/admin-controller.php:
|
180 |
msgid "Stripe requires using the %1$swebhook%2$s. %3$sWebhook Guide%4$s "
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: admin/admin-controller.php:
|
184 |
-
#: admin/admin-controller.php:
|
185 |
-
#: admin/admin-controller.php:
|
186 |
msgid "Error: The current user doesn’t have sufficient permissions to perform this action. Please reload the page and try again."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: admin/admin-controller.php:
|
190 |
-
#: admin/admin-controller.php:
|
191 |
#: wizard/build/app.js:1
|
192 |
-
#: wizard/build/app.js:1002
|
193 |
msgid "Connect with Stripe"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: admin/admin-controller.php:
|
197 |
-
#: admin/admin-controller.php:
|
198 |
-
#: admin/admin-controller.php:
|
199 |
msgid "We make it easy to connect Stripe to your site. Click the Connect button to go through our connect flow."
|
200 |
msgstr ""
|
201 |
|
202 |
#. translators: %1$1s, %2$2s: HTML Markup
|
203 |
-
#: admin/admin-controller.php:
|
204 |
msgid "Have questions about connecting with Stripe? Read %1$s document. %2$s"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: admin/admin-controller.php:
|
208 |
msgid "Although you can add your API keys manually, we recommend using Stripe Connect. Stripe Connect prevents issues that can arise when copying and pasting account details from Stripe into Checkout Plugins - Stripe for WooCommerce settings."
|
209 |
msgstr ""
|
210 |
|
211 |
#. translators: %1$1s %2$2s %3$3s: HTML Markup
|
212 |
-
#: admin/admin-controller.php:
|
213 |
msgid "Your manually managed API keys are valid."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin/admin-controller.php:
|
217 |
msgid "It is highly recommended to Connect with Stripe for easier setup and improved security."
|
218 |
msgstr ""
|
219 |
|
220 |
#. translators: $1s Acoount name, $2s html markup, $3s account id, $4s html markup
|
221 |
-
#: admin/admin-controller.php:
|
222 |
msgid "Account (%1$1s) %2$2s %3$3s %4$4s is connected."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: admin/admin-controller.php:
|
226 |
msgid "Disconnect & connect other account?"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin/admin-controller.php:
|
230 |
msgid "Test Connection"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: admin/admin-controller.php:
|
234 |
msgid "Although you can add your API keys manually, we recommend using Stripe Connect: an easier and more secure way of connecting your Stripe account to your website. Stripe Connect prevents issues that can arise when copying and pasting account details from Stripe into your Checkout Plugins - Stripe for WooCommerce payment gateway settings. With Stripe Connect you'll be ready to go with just a few clicks."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: admin/admin-controller.php:
|
238 |
msgid "Clear all Stripe account keys"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin/admin-controller.php:
|
242 |
-
#: admin/admin-controller.php:
|
243 |
msgid "Re-Connect to Stripe"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: admin/admin-controller.php:
|
247 |
-
#: admin/admin-controller.php:
|
248 |
msgid "Your Stripe account has been connected. You can now accept Live and Test payments. You can Re-Connect if you want to recycle your API keys for security."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: admin/admin-controller.php:
|
252 |
msgid "Connect Manually"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: admin/admin-controller.php:
|
256 |
#: wizard/build/app.js:1
|
257 |
msgid "Stripe"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin/admin-controller.php:
|
261 |
msgid "Connection Status"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: admin/admin-controller.php:
|
265 |
-
#: admin/admin-controller.php:
|
266 |
msgid "This is your Stripe Connect ID and serves as a unique identifier."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: admin/admin-controller.php:
|
270 |
msgid "Stripe Account Keys"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: admin/admin-controller.php:
|
274 |
msgid "This will disable any connection to Stripe."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: admin/admin-controller.php:
|
278 |
msgid "Connect Stripe Account"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: admin/admin-controller.php:
|
282 |
msgid "Live Publishable Key"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: admin/admin-controller.php:
|
286 |
-
#: admin/admin-controller.php:
|
287 |
msgid "Your publishable key is used to initialize Stripe assets."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin/admin-controller.php:
|
291 |
msgid "Live Secret Key"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin/admin-controller.php:
|
295 |
msgid "Your secret key is used to authenticate Stripe requests."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: admin/admin-controller.php:
|
299 |
msgid "Test Publishable Key"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: admin/admin-controller.php:
|
303 |
msgid "Your test publishable key is used to initialize Stripe assets."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: admin/admin-controller.php:
|
307 |
msgid "Test Secret Key"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: admin/admin-controller.php:
|
311 |
msgid "Your test secret key is used to authenticate Stripe requests for testing purposes."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: admin/admin-controller.php:
|
315 |
msgid "Mode"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: admin/admin-controller.php:
|
319 |
msgid "No live transactions are processed in test mode. To fully use test mode, you must have a sandbox (test) account for the payment gateway you are testing."
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin/admin-controller.php:
|
323 |
#: wizard/build/app.js:1
|
324 |
msgid "Webhook URL"
|
325 |
msgstr ""
|
326 |
|
327 |
#. translators: %1$1s - %2$2s HTML markup
|
328 |
-
#: admin/admin-controller.php:
|
329 |
msgid "Important: the webhook URL is called by Stripe when events occur in your account, like a source becomes chargeable. %1$1sWebhook Guide%2$2s or create webhook on %3$3sstripe dashboard%4$4s"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: admin/admin-controller.php:
|
333 |
msgid "Live Webhook Secret"
|
334 |
msgstr ""
|
335 |
|
336 |
#. translators: %1$1s Webhook Status
|
337 |
-
#: admin/admin-controller.php:
|
338 |
-
#: admin/admin-controller.php:
|
339 |
msgid "The webhook secret is used to authenticate webhooks sent from Stripe. It ensures nobody else can send you events pretending to be Stripe. %1$1s"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: admin/admin-controller.php:
|
343 |
msgid "Test Webhook Secret"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: admin/admin-controller.php:
|
347 |
msgid "Debug Log"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: admin/admin-controller.php:
|
351 |
msgid "Log debug messages"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin/admin-controller.php:
|
355 |
msgid "Please try again."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: admin/admin-controller.php:
|
359 |
-
#: admin/admin-controller.php:
|
360 |
msgid "Error: Sorry, the nonce security check didn’t pass. Please reload the page and try again."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: admin/admin-controller.php:
|
364 |
-
#: admin/admin-controller.php:
|
365 |
msgid "Test Mode:"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: admin/admin-controller.php:
|
369 |
msgid "Please enter secret key to test."
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: admin/admin-controller.php:
|
373 |
-
#: admin/admin-controller.php:
|
374 |
msgid "Live Mode:"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin/admin-controller.php:
|
378 |
msgid "Please enter secret key to live."
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin/admin-controller.php:
|
382 |
msgid "Error: Empty String provided for keys"
|
383 |
msgstr ""
|
384 |
|
385 |
#. translators: %1$1s mode
|
386 |
-
#: admin/admin-controller.php:
|
387 |
msgid "My first %1s customer (created for API docs)"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin/admin-controller.php:
|
391 |
msgid "Connected to Stripe successfully"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: admin/admin-controller.php:
|
395 |
msgid "Stripe keys are reset successfully."
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: admin/admin-controller.php:
|
399 |
#: inc/traits/subscriptions.php:351
|
400 |
msgid "Invalid Nonce"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin/admin-controller.php:
|
404 |
msgid "My First Test Customer (created for API docs)"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin/admin-controller.php:
|
408 |
msgid "My First Live Customer (created for API docs)"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: admin/admin-controller.php:
|
412 |
msgid "Express Checkout is a feature of Card Payments. Enable Card Payments to use Express Checkout"
|
413 |
msgstr ""
|
414 |
|
415 |
#. translators: HTML Markup
|
416 |
-
#: admin/admin-controller.php:
|
417 |
msgid "Accept payment using Apple Pay, Google Pay, Browser Payment Method.%1$1sExpress Checkout uses Payment Request API which is based on client's browser and saved cards.%1$1sPlease check %2$2sprerequisite%3$3s for Apple Pay, Google Pay and Browser Payment Method."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: admin/admin-controller.php:
|
421 |
#: wizard/build/app.js:1
|
422 |
-
#: wizard/build/app.js:911
|
423 |
msgid "Enable Express Checkout"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: admin/admin-controller.php:
|
427 |
msgid "Show button on"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: admin/admin-controller.php:
|
431 |
msgid "Choose page to display Express Checkout buttons."
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: admin/admin-controller.php:
|
435 |
msgid "Product"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: admin/admin-controller.php:
|
439 |
msgid "Cart"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: admin/admin-controller.php:
|
443 |
msgid "Checkout"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: admin/admin-controller.php:
|
447 |
msgid "Button text"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin/admin-controller.php:
|
451 |
msgid "Add label text for the Express Checkout button."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: admin/admin-controller.php:
|
455 |
msgid "Button theme"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: admin/admin-controller.php:
|
459 |
msgid "Select theme for Express Checkout button."
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: admin/admin-controller.php:
|
463 |
msgid "Dark"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: admin/admin-controller.php:
|
467 |
msgid "Light"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: admin/admin-controller.php:
|
471 |
msgid "Light Outline"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin/admin-controller.php:
|
475 |
msgid "Button Preview"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: admin/admin-controller.php:
|
479 |
msgid "Product page options"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: admin/admin-controller.php:
|
483 |
msgid "Advanced customization options for product page."
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: admin/admin-controller.php:
|
487 |
-
#: admin/admin-controller.php:
|
488 |
msgid "Button position"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/admin-controller.php:
|
492 |
msgid "Select the position of Express Checkout button. This option will work only for Product page."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/admin-controller.php:
|
496 |
msgid "Above Add to Cart"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/admin-controller.php:
|
500 |
msgid "Below Add to Cart"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin/admin-controller.php:
|
504 |
msgid "Inline Button"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/admin-controller.php:
|
508 |
-
#: admin/admin-controller.php:
|
509 |
-
#: admin/admin-controller.php:
|
510 |
msgid "Separator text"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin/admin-controller.php:
|
514 |
msgid "Add separator text for the Express Checkout button. This will help to distinguish between Express Checkout and other buttons."
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: admin/admin-controller.php:
|
518 |
msgid "Responsive behaviour"
|
519 |
msgstr ""
|
520 |
|
521 |
#. translators: HTML Markup
|
522 |
-
#: admin/admin-controller.php:
|
523 |
msgid "If checked the Express Checkout button will stick%1$1sat bottom of screen on responsive devices."
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/admin-controller.php:
|
527 |
msgid "Cart page options"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: admin/admin-controller.php:
|
531 |
msgid "Advanced customization options for Cart page."
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: admin/admin-controller.php:
|
535 |
msgid "Add separator text for Cart page. If empty will show default separator text."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: admin/admin-controller.php:
|
539 |
msgid "Checkout page options"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: admin/admin-controller.php:
|
543 |
msgid "Advanced customization options for Checkout page."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: admin/admin-controller.php:
|
547 |
msgid "Layout"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: admin/admin-controller.php:
|
551 |
msgid "Select the layout of Express Checkout button. This option will work only for Checkout page."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/admin-controller.php:
|
555 |
msgid "Custom"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: admin/admin-controller.php:
|
559 |
msgid "Classic"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: admin/admin-controller.php:
|
563 |
msgid "Select the position of Express Checkout button. This option will work only for Checkout page."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: admin/admin-controller.php:
|
567 |
msgid "Above checkout form"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: admin/admin-controller.php:
|
571 |
msgid "Above billing details"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: admin/admin-controller.php:
|
575 |
#: gateway/local-gateway.php:125
|
576 |
#: gateway/stripe/card-payments.php:118
|
577 |
msgid "Title"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: admin/admin-controller.php:
|
581 |
msgid "Add a title above Express Checkout button on Checkout page."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: admin/admin-controller.php:
|
585 |
msgid "Tagline"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: admin/admin-controller.php:
|
589 |
msgid "Add a tagline below the title on Checkout page."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: admin/admin-controller.php:
|
593 |
msgid "Button width"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: admin/admin-controller.php:
|
597 |
msgid "Select width for button (in px). Default width 100%"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: admin/admin-controller.php:
|
601 |
msgid "Alignment"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: admin/admin-controller.php:
|
605 |
msgid "This setting will align title, tagline and button based on selection on Checkout page."
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: admin/admin-controller.php:
|
609 |
msgid "Left"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: admin/admin-controller.php:
|
613 |
msgid "Center"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: admin/admin-controller.php:
|
617 |
msgid "Right"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: admin/admin-controller.php:
|
621 |
msgid "Add separator text for Checkout page. If empty will show default separator text."
|
622 |
msgstr ""
|
623 |
|
@@ -941,7 +936,6 @@ msgstr ""
|
|
941 |
|
942 |
#: gateway/stripe/card-payments.php:61
|
943 |
#: wizard/build/app.js:1
|
944 |
-
#: wizard/build/app.js:895
|
945 |
msgid "Stripe Card Processing"
|
946 |
msgstr ""
|
947 |
|
@@ -1138,43 +1132,43 @@ msgstr ""
|
|
1138 |
msgid "%1$1s Test Mode Enabled:%2$2s Use demo card 4242424242424242 with any future date and CVV. Check more %3$3sdemo cards%4$4s"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: gateway/stripe/frontend-scripts.php:
|
1142 |
msgid "MasterCard"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: gateway/stripe/frontend-scripts.php:
|
1146 |
msgid "Visa"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: gateway/stripe/frontend-scripts.php:
|
1150 |
msgid "American Express"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: gateway/stripe/frontend-scripts.php:
|
1154 |
msgid "Discover"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: gateway/stripe/frontend-scripts.php:
|
1158 |
msgid "JCB"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: gateway/stripe/frontend-scripts.php:
|
1162 |
msgid "Diners Club"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: gateway/stripe/frontend-scripts.php:
|
1166 |
msgid "UnionPay"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: gateway/stripe/frontend-scripts.php:
|
1170 |
msgid "is not allowed"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: gateway/stripe/frontend-scripts.php:
|
1174 |
msgid "Please enter a IBAN number to proceed."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: gateway/stripe/frontend-scripts.php:
|
1178 |
msgid "Please select a bank to proceed."
|
1179 |
msgstr ""
|
1180 |
|
@@ -1703,83 +1697,66 @@ msgid "Skip Setup"
|
|
1703 |
msgstr ""
|
1704 |
|
1705 |
#: wizard/build/app.js:1
|
1706 |
-
#: wizard/build/app.js:985
|
1707 |
msgid "Let's Connect"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
#: wizard/build/app.js:1
|
1711 |
-
#: wizard/build/app.js:986
|
1712 |
msgid "with Stripe"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
#: wizard/build/app.js:1
|
1716 |
-
#: wizard/build/app.js:989
|
1717 |
msgid "recommends to connect with"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
#: wizard/build/app.js:1
|
1721 |
-
#: wizard/build/app.js:989
|
1722 |
msgid "Stripe connect."
|
1723 |
msgstr ""
|
1724 |
|
1725 |
#: wizard/build/app.js:1
|
1726 |
-
#: wizard/build/app.js:990
|
1727 |
msgid "One click onboarding solution provided by"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
#: wizard/build/app.js:1
|
1731 |
-
#: wizard/build/app.js:990
|
1732 |
msgid "Stripe."
|
1733 |
msgstr ""
|
1734 |
|
1735 |
#: wizard/build/app.js:1
|
1736 |
-
#: wizard/build/app.js:997
|
1737 |
msgid "Connecting…"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
#: wizard/build/app.js:1
|
1741 |
-
#: wizard/build/app.js:1008
|
1742 |
msgid "Leave onboarding process"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
#: wizard/build/app.js:1
|
1746 |
-
#: wizard/build/app.js:1075
|
1747 |
msgid "Congratulations!!"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
#: wizard/build/app.js:1
|
1751 |
-
#: wizard/build/app.js:1075
|
1752 |
msgid "You are connected to Stripe successfully."
|
1753 |
msgstr ""
|
1754 |
|
1755 |
#: wizard/build/app.js:1
|
1756 |
-
#: wizard/build/app.js:1076
|
1757 |
msgid "Let's enable gateways"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
#: wizard/build/app.js:1
|
1761 |
-
#: wizard/build/app.js:1091
|
1762 |
msgid "Recommended"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
#: wizard/build/app.js:1
|
1766 |
-
#: wizard/build/app.js:1096
|
1767 |
msgid "Works with all currencies"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
#: wizard/build/app.js:1
|
1771 |
-
#: wizard/build/app.js:1096
|
1772 |
msgid "Works with "
|
1773 |
msgstr ""
|
1774 |
|
1775 |
#: wizard/build/app.js:1
|
1776 |
-
#: wizard/build/app.js:906
|
1777 |
-
#: wizard/build/app.js:1134
|
1778 |
msgid "Enabling…"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
#: wizard/build/app.js:1
|
1782 |
-
#: wizard/build/app.js:1139
|
1783 |
msgid "Enable Gateways"
|
1784 |
msgstr ""
|
1785 |
|
@@ -1848,141 +1825,113 @@ msgid "Skip"
|
|
1848 |
msgstr ""
|
1849 |
|
1850 |
#: wizard/build/app.js:1
|
1851 |
-
#: wizard/build/app.js:891
|
1852 |
msgid "Wooho!!"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
#: wizard/build/app.js:1
|
1856 |
-
#: wizard/build/app.js:892
|
1857 |
msgid "You are almost done."
|
1858 |
msgstr ""
|
1859 |
|
1860 |
#: wizard/build/app.js:1
|
1861 |
-
#: wizard/build/app.js:895
|
1862 |
msgid "Since you have enabled"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
#: wizard/build/app.js:1
|
1866 |
-
#: wizard/build/app.js:895
|
1867 |
msgid " We recommend you to enable"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
#: wizard/build/app.js:1
|
1871 |
-
#: wizard/build/app.js:895
|
1872 |
msgid "feature"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
#: wizard/build/app.js:1
|
1876 |
-
#: wizard/build/app.js:896
|
1877 |
msgid "Express Checkout generates more conversions!!"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
#: wizard/build/app.js:1
|
1881 |
-
#: wizard/build/app.js:918
|
1882 |
msgid "Skip Express Checkout"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
#: wizard/build/app.js:1
|
1886 |
-
#: wizard/build/app.js:937
|
1887 |
msgid "Failed!!"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
#: wizard/build/app.js:1
|
1891 |
-
#: wizard/build/app.js:940
|
1892 |
msgid "Unfortunately Connection to Stripe failed."
|
1893 |
msgstr ""
|
1894 |
|
1895 |
#: wizard/build/app.js:1
|
1896 |
-
#: wizard/build/app.js:945
|
1897 |
msgid "Try Again"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
#: wizard/build/app.js:1
|
1901 |
-
#: wizard/build/app.js:1170
|
1902 |
msgid "Great!!"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
#: wizard/build/app.js:1
|
1906 |
-
#: wizard/build/app.js:1173
|
1907 |
msgid "Your store is all set to accept payment."
|
1908 |
msgstr ""
|
1909 |
|
1910 |
#: wizard/build/app.js:1
|
1911 |
-
#: wizard/build/app.js:1174
|
1912 |
msgid "We provide lots of customization options to match your needs, don't forget to explore them."
|
1913 |
msgstr ""
|
1914 |
|
1915 |
#: wizard/build/app.js:1
|
1916 |
-
#: wizard/build/app.js:1180
|
1917 |
msgid "Let's Customize…"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
#: wizard/build/app.js:1
|
1921 |
-
#: wizard/build/app.js:1185
|
1922 |
msgid "Let's Customize"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
#: wizard/build/app.js:1
|
1926 |
-
#: wizard/build/app.js:1260
|
1927 |
msgid "Missing"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
#: wizard/build/app.js:1
|
1931 |
-
#: wizard/build/app.js:1260
|
1932 |
msgid "Inactiave"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
#: wizard/build/app.js:1
|
1936 |
-
#: wizard/build/app.js:1261
|
1937 |
msgid "WooCoomerce"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
#: wizard/build/app.js:1
|
1941 |
-
#: wizard/build/app.js:1264
|
1942 |
msgid "Checkout Plugins - Stripe for WooCoomerce"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
#: wizard/build/app.js:1
|
1946 |
-
#: wizard/build/app.js:1264
|
1947 |
msgid "requires"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
#: wizard/build/app.js:1
|
1951 |
-
#: wizard/build/app.js:1264
|
1952 |
msgid "WooCommerce"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
#: wizard/build/app.js:1
|
1956 |
-
#: wizard/build/app.js:1264
|
1957 |
msgid "to be active on your store."
|
1958 |
msgstr ""
|
1959 |
|
1960 |
#: wizard/build/app.js:1
|
1961 |
-
#: wizard/build/app.js:1272
|
1962 |
msgid "Installing…"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
#: wizard/build/app.js:1
|
1966 |
-
#: wizard/build/app.js:1279
|
1967 |
msgid "Activating…"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
#: wizard/build/app.js:1
|
1971 |
-
#: wizard/build/app.js:1286
|
1972 |
msgid "Install and continue"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
#: wizard/build/app.js:1
|
1976 |
-
#: wizard/build/app.js:1286
|
1977 |
msgid "Activate and continue"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
#: wizard/build/app.js:1
|
1981 |
-
#: wizard/build/app.js:1297
|
1982 |
msgid "Installing WooCommerce will take time. Please be patient."
|
1983 |
msgstr ""
|
1984 |
|
1985 |
#: wizard/build/app.js:1
|
1986 |
-
#: wizard/build/app.js:1307
|
1987 |
msgid "WooCommerce installing failed. Please try again."
|
1988 |
msgstr ""
|
2 |
# This file is distributed under the GPLv2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Checkout Plugins - Stripe for WooCommerce 1.4.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/checkout-plugins-stripe-woo\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-04-21T07:36:34+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.5.0\n"
|
15 |
"X-Domain: checkout-plugins-stripe-woo\n"
|
28 |
|
29 |
#. Author of the plugin
|
30 |
#: wizard/build/app.js:1
|
|
|
31 |
msgid "Checkout Plugins"
|
32 |
msgstr ""
|
33 |
|
36 |
msgstr ""
|
37 |
|
38 |
#: admin/admin-controller.php:79
|
39 |
+
#: admin/admin-controller.php:909
|
40 |
msgid "Stripe API Settings"
|
41 |
msgstr ""
|
42 |
|
45 |
msgstr ""
|
46 |
|
47 |
#: admin/admin-controller.php:81
|
48 |
+
#: admin/admin-controller.php:1597
|
49 |
#: inc/helper.php:87
|
50 |
#: wizard/build/app.js:1
|
|
|
51 |
msgid "Express Checkout"
|
52 |
msgstr ""
|
53 |
|
86 |
msgid "Bancontact"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: admin/admin-controller.php:270
|
90 |
msgid "Something went wrong! Please reload the page and try again."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: admin/admin-controller.php:271
|
94 |
+
#: admin/admin-controller.php:778
|
95 |
msgid "Connect to Stripe"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin/admin-controller.php:272
|
99 |
msgid "Please enter all keys to connect to stripe."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin/admin-controller.php:273
|
103 |
msgid "You must enter your API keys or connect the plugin before performing a connection test. Mode:"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin/admin-controller.php:274
|
107 |
msgid "Keys Unavailable."
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: admin/admin-controller.php:275
|
111 |
msgid "Your Stripe account has been disconnected."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: admin/admin-controller.php:276
|
115 |
msgid "You can connect other Stripe account now."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: admin/admin-controller.php:297
|
119 |
+
#: admin/admin-controller.php:322
|
120 |
+
#: gateway/stripe/frontend-scripts.php:145
|
121 |
#: gateway/stripe/payment-request-api.php:152
|
122 |
#: inc/helper.php:84
|
123 |
msgid "Pay now"
|
124 |
msgstr ""
|
125 |
|
126 |
#. translators: Html Markup
|
127 |
+
#: admin/admin-controller.php:320
|
128 |
msgid "No payment method detected. Either your browser is not supported or you do not have save cards. For more details read %1$1sdocument$2$2s."
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin/admin-controller.php:321
|
132 |
msgid "NOTE: Title and Tagline appears only on Checkout page."
|
133 |
msgstr ""
|
134 |
|
135 |
#. translators: %1$1s HTML Markup
|
136 |
+
#: admin/admin-controller.php:341
|
137 |
msgid "You Stripe Publishable and Secret Keys are not set correctly. You can connect to Stripe and correct them from <a href=\"%1$1s\">here.</a>"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: admin/admin-controller.php:351
|
141 |
+
#: admin/admin-controller.php:914
|
142 |
msgid "Stripe Connect"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: admin/admin-controller.php:354
|
146 |
+
#: admin/admin-controller.php:567
|
147 |
+
#: admin/admin-controller.php:1546
|
148 |
msgid "Hide API keys"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin/admin-controller.php:356
|
152 |
+
#: admin/admin-controller.php:564
|
153 |
+
#: admin/admin-controller.php:1542
|
154 |
#: wizard/build/app.js:1
|
|
|
155 |
msgid "Manage API keys manually"
|
156 |
msgstr ""
|
157 |
|
158 |
#. translators: %1$1s: mode, %2$2s, %3$3s: HTML Markup
|
159 |
+
#: admin/admin-controller.php:359
|
160 |
msgid "Stripe Keys for %1$1s mode are not set correctly. Reconnect via %2$2s or %3$3s"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: admin/admin-controller.php:373
|
164 |
msgid "No SSL was detected, Stripe live mode requires SSL."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: admin/admin-controller.php:384
|
168 |
msgid "Your Stripe account has been connected to your WooCommerce store. You may now accept payments in live and test mode."
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin/admin-controller.php:395
|
172 |
msgid "We were not able to connect your Stripe account. Please try again. "
|
173 |
msgstr ""
|
174 |
|
175 |
#. translators: %1$s Webhook secret page link, %2$s Webhook guide page link
|
176 |
+
#: admin/admin-controller.php:407
|
177 |
msgid "Stripe requires using the %1$swebhook%2$s. %3$sWebhook Guide%4$s "
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: admin/admin-controller.php:418
|
181 |
+
#: admin/admin-controller.php:1098
|
182 |
+
#: admin/admin-controller.php:1200
|
183 |
msgid "Error: The current user doesn’t have sufficient permissions to perform this action. Please reload the page and try again."
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: admin/admin-controller.php:454
|
187 |
+
#: admin/admin-controller.php:539
|
188 |
#: wizard/build/app.js:1
|
|
|
189 |
msgid "Connect with Stripe"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: admin/admin-controller.php:455
|
193 |
+
#: admin/admin-controller.php:779
|
194 |
+
#: admin/admin-controller.php:940
|
195 |
msgid "We make it easy to connect Stripe to your site. Click the Connect button to go through our connect flow."
|
196 |
msgstr ""
|
197 |
|
198 |
#. translators: %1$1s, %2$2s: HTML Markup
|
199 |
+
#: admin/admin-controller.php:478
|
200 |
msgid "Have questions about connecting with Stripe? Read %1$s document. %2$s"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: admin/admin-controller.php:486
|
204 |
msgid "Although you can add your API keys manually, we recommend using Stripe Connect. Stripe Connect prevents issues that can arise when copying and pasting account details from Stripe into Checkout Plugins - Stripe for WooCommerce settings."
|
205 |
msgstr ""
|
206 |
|
207 |
#. translators: %1$1s %2$2s %3$3s: HTML Markup
|
208 |
+
#: admin/admin-controller.php:533
|
209 |
msgid "Your manually managed API keys are valid."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: admin/admin-controller.php:537
|
213 |
msgid "It is highly recommended to Connect with Stripe for easier setup and improved security."
|
214 |
msgstr ""
|
215 |
|
216 |
#. translators: $1s Acoount name, $2s html markup, $3s account id, $4s html markup
|
217 |
+
#: admin/admin-controller.php:547
|
218 |
msgid "Account (%1$1s) %2$2s %3$3s %4$4s is connected."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: admin/admin-controller.php:557
|
222 |
msgid "Disconnect & connect other account?"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: admin/admin-controller.php:559
|
226 |
msgid "Test Connection"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: admin/admin-controller.php:574
|
230 |
msgid "Although you can add your API keys manually, we recommend using Stripe Connect: an easier and more secure way of connecting your Stripe account to your website. Stripe Connect prevents issues that can arise when copying and pasting account details from Stripe into your Checkout Plugins - Stripe for WooCommerce payment gateway settings. With Stripe Connect you'll be ready to go with just a few clicks."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: admin/admin-controller.php:737
|
234 |
msgid "Clear all Stripe account keys"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: admin/admin-controller.php:770
|
238 |
+
#: admin/admin-controller.php:774
|
239 |
msgid "Re-Connect to Stripe"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: admin/admin-controller.php:772
|
243 |
+
#: admin/admin-controller.php:776
|
244 |
msgid "Your Stripe account has been connected. You can now accept Live and Test payments. You can Re-Connect if you want to recycle your API keys for security."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: admin/admin-controller.php:807
|
248 |
msgid "Connect Manually"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin/admin-controller.php:835
|
252 |
#: wizard/build/app.js:1
|
253 |
msgid "Stripe"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: admin/admin-controller.php:921
|
257 |
msgid "Connection Status"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin/admin-controller.php:925
|
261 |
+
#: admin/admin-controller.php:926
|
262 |
msgid "This is your Stripe Connect ID and serves as a unique identifier."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: admin/admin-controller.php:930
|
266 |
msgid "Stripe Account Keys"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin/admin-controller.php:933
|
270 |
msgid "This will disable any connection to Stripe."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin/admin-controller.php:937
|
274 |
msgid "Connect Stripe Account"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin/admin-controller.php:944
|
278 |
msgid "Live Publishable Key"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: admin/admin-controller.php:946
|
282 |
+
#: admin/admin-controller.php:1004
|
283 |
msgid "Your publishable key is used to initialize Stripe assets."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: admin/admin-controller.php:950
|
287 |
msgid "Live Secret Key"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: admin/admin-controller.php:952
|
291 |
msgid "Your secret key is used to authenticate Stripe requests."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: admin/admin-controller.php:956
|
295 |
msgid "Test Publishable Key"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: admin/admin-controller.php:958
|
299 |
msgid "Your test publishable key is used to initialize Stripe assets."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: admin/admin-controller.php:962
|
303 |
msgid "Test Secret Key"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: admin/admin-controller.php:964
|
307 |
msgid "Your test secret key is used to authenticate Stripe requests for testing purposes."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: admin/admin-controller.php:968
|
311 |
msgid "Mode"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: admin/admin-controller.php:974
|
315 |
msgid "No live transactions are processed in test mode. To fully use test mode, you must have a sandbox (test) account for the payment gateway you are testing."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: admin/admin-controller.php:979
|
319 |
#: wizard/build/app.js:1
|
320 |
msgid "Webhook URL"
|
321 |
msgstr ""
|
322 |
|
323 |
#. translators: %1$1s - %2$2s HTML markup
|
324 |
+
#: admin/admin-controller.php:983
|
325 |
msgid "Important: the webhook URL is called by Stripe when events occur in your account, like a source becomes chargeable. %1$1sWebhook Guide%2$2s or create webhook on %3$3sstripe dashboard%4$4s"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: admin/admin-controller.php:987
|
329 |
msgid "Live Webhook Secret"
|
330 |
msgstr ""
|
331 |
|
332 |
#. translators: %1$1s Webhook Status
|
333 |
+
#: admin/admin-controller.php:990
|
334 |
+
#: admin/admin-controller.php:997
|
335 |
msgid "The webhook secret is used to authenticate webhooks sent from Stripe. It ensures nobody else can send you events pretending to be Stripe. %1$1s"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: admin/admin-controller.php:994
|
339 |
msgid "Test Webhook Secret"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: admin/admin-controller.php:1001
|
343 |
msgid "Debug Log"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: admin/admin-controller.php:1003
|
347 |
msgid "Log debug messages"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin/admin-controller.php:1044
|
351 |
msgid "Please try again."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin/admin-controller.php:1094
|
355 |
+
#: admin/admin-controller.php:1196
|
356 |
msgid "Error: Sorry, the nonce security check didn’t pass. Please reload the page and try again."
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: admin/admin-controller.php:1107
|
360 |
+
#: admin/admin-controller.php:1172
|
361 |
msgid "Test Mode:"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin/admin-controller.php:1109
|
365 |
msgid "Please enter secret key to test."
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: admin/admin-controller.php:1114
|
369 |
+
#: admin/admin-controller.php:1176
|
370 |
msgid "Live Mode:"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin/admin-controller.php:1116
|
374 |
msgid "Please enter secret key to live."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin/admin-controller.php:1120
|
378 |
msgid "Error: Empty String provided for keys"
|
379 |
msgstr ""
|
380 |
|
381 |
#. translators: %1$1s mode
|
382 |
+
#: admin/admin-controller.php:1132
|
383 |
msgid "My first %1s customer (created for API docs)"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin/admin-controller.php:1137
|
387 |
msgid "Connected to Stripe successfully"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: admin/admin-controller.php:1206
|
391 |
msgid "Stripe keys are reset successfully."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: admin/admin-controller.php:1218
|
395 |
#: inc/traits/subscriptions.php:351
|
396 |
msgid "Invalid Nonce"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: admin/admin-controller.php:1349
|
400 |
msgid "My First Test Customer (created for API docs)"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: admin/admin-controller.php:1398
|
404 |
msgid "My First Live Customer (created for API docs)"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: admin/admin-controller.php:1590
|
408 |
msgid "Express Checkout is a feature of Card Payments. Enable Card Payments to use Express Checkout"
|
409 |
msgstr ""
|
410 |
|
411 |
#. translators: HTML Markup
|
412 |
+
#: admin/admin-controller.php:1600
|
413 |
msgid "Accept payment using Apple Pay, Google Pay, Browser Payment Method.%1$1sExpress Checkout uses Payment Request API which is based on client's browser and saved cards.%1$1sPlease check %2$2sprerequisite%3$3s for Apple Pay, Google Pay and Browser Payment Method."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: admin/admin-controller.php:1604
|
417 |
#: wizard/build/app.js:1
|
|
|
418 |
msgid "Enable Express Checkout"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: admin/admin-controller.php:1610
|
422 |
msgid "Show button on"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: admin/admin-controller.php:1614
|
426 |
msgid "Choose page to display Express Checkout buttons."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: admin/admin-controller.php:1616
|
430 |
msgid "Product"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: admin/admin-controller.php:1617
|
434 |
msgid "Cart"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin/admin-controller.php:1618
|
438 |
msgid "Checkout"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin/admin-controller.php:1623
|
442 |
msgid "Button text"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: admin/admin-controller.php:1626
|
446 |
msgid "Add label text for the Express Checkout button."
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin/admin-controller.php:1631
|
450 |
msgid "Button theme"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin/admin-controller.php:1634
|
454 |
msgid "Select theme for Express Checkout button."
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: admin/admin-controller.php:1637
|
458 |
msgid "Dark"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: admin/admin-controller.php:1638
|
462 |
msgid "Light"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: admin/admin-controller.php:1639
|
466 |
msgid "Light Outline"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: admin/admin-controller.php:1644
|
470 |
msgid "Button Preview"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin/admin-controller.php:1653
|
474 |
msgid "Product page options"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/admin-controller.php:1655
|
478 |
msgid "Advanced customization options for product page."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin/admin-controller.php:1659
|
482 |
+
#: admin/admin-controller.php:1735
|
483 |
msgid "Button position"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: admin/admin-controller.php:1663
|
487 |
msgid "Select the position of Express Checkout button. This option will work only for Product page."
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: admin/admin-controller.php:1666
|
491 |
msgid "Above Add to Cart"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: admin/admin-controller.php:1667
|
495 |
msgid "Below Add to Cart"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: admin/admin-controller.php:1668
|
499 |
msgid "Inline Button"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: admin/admin-controller.php:1673
|
503 |
+
#: admin/admin-controller.php:1702
|
504 |
+
#: admin/admin-controller.php:1789
|
505 |
msgid "Separator text"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: admin/admin-controller.php:1676
|
509 |
msgid "Add separator text for the Express Checkout button. This will help to distinguish between Express Checkout and other buttons."
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin/admin-controller.php:1682
|
513 |
msgid "Responsive behaviour"
|
514 |
msgstr ""
|
515 |
|
516 |
#. translators: HTML Markup
|
517 |
+
#: admin/admin-controller.php:1684
|
518 |
msgid "If checked the Express Checkout button will stick%1$1sat bottom of screen on responsive devices."
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: admin/admin-controller.php:1695
|
522 |
msgid "Cart page options"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/admin-controller.php:1697
|
526 |
msgid "Advanced customization options for Cart page."
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/admin-controller.php:1706
|
530 |
msgid "Add separator text for Cart page. If empty will show default separator text."
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: admin/admin-controller.php:1715
|
534 |
msgid "Checkout page options"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: admin/admin-controller.php:1717
|
538 |
msgid "Advanced customization options for Checkout page."
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: admin/admin-controller.php:1722
|
542 |
msgid "Layout"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: admin/admin-controller.php:1726
|
546 |
msgid "Select the layout of Express Checkout button. This option will work only for Checkout page."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: admin/admin-controller.php:1729
|
550 |
msgid "Custom"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: admin/admin-controller.php:1730
|
554 |
msgid "Classic"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: admin/admin-controller.php:1739
|
558 |
msgid "Select the position of Express Checkout button. This option will work only for Checkout page."
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: admin/admin-controller.php:1742
|
562 |
msgid "Above checkout form"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: admin/admin-controller.php:1743
|
566 |
msgid "Above billing details"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: admin/admin-controller.php:1748
|
570 |
#: gateway/local-gateway.php:125
|
571 |
#: gateway/stripe/card-payments.php:118
|
572 |
msgid "Title"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: admin/admin-controller.php:1752
|
576 |
msgid "Add a title above Express Checkout button on Checkout page."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: admin/admin-controller.php:1757
|
580 |
msgid "Tagline"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: admin/admin-controller.php:1761
|
584 |
msgid "Add a tagline below the title on Checkout page."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: admin/admin-controller.php:1766
|
588 |
msgid "Button width"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: admin/admin-controller.php:1770
|
592 |
msgid "Select width for button (in px). Default width 100%"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/admin-controller.php:1775
|
596 |
msgid "Alignment"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: admin/admin-controller.php:1779
|
600 |
msgid "This setting will align title, tagline and button based on selection on Checkout page."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: admin/admin-controller.php:1782
|
604 |
msgid "Left"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: admin/admin-controller.php:1783
|
608 |
msgid "Center"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: admin/admin-controller.php:1784
|
612 |
msgid "Right"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/admin-controller.php:1793
|
616 |
msgid "Add separator text for Checkout page. If empty will show default separator text."
|
617 |
msgstr ""
|
618 |
|
936 |
|
937 |
#: gateway/stripe/card-payments.php:61
|
938 |
#: wizard/build/app.js:1
|
|
|
939 |
msgid "Stripe Card Processing"
|
940 |
msgstr ""
|
941 |
|
1132 |
msgid "%1$1s Test Mode Enabled:%2$2s Use demo card 4242424242424242 with any future date and CVV. Check more %3$3sdemo cards%4$4s"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: gateway/stripe/frontend-scripts.php:110
|
1136 |
msgid "MasterCard"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: gateway/stripe/frontend-scripts.php:111
|
1140 |
msgid "Visa"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: gateway/stripe/frontend-scripts.php:112
|
1144 |
msgid "American Express"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: gateway/stripe/frontend-scripts.php:113
|
1148 |
msgid "Discover"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: gateway/stripe/frontend-scripts.php:114
|
1152 |
msgid "JCB"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: gateway/stripe/frontend-scripts.php:115
|
1156 |
msgid "Diners Club"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: gateway/stripe/frontend-scripts.php:116
|
1160 |
msgid "UnionPay"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: gateway/stripe/frontend-scripts.php:118
|
1164 |
msgid "is not allowed"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: gateway/stripe/frontend-scripts.php:132
|
1168 |
msgid "Please enter a IBAN number to proceed."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: gateway/stripe/frontend-scripts.php:133
|
1172 |
msgid "Please select a bank to proceed."
|
1173 |
msgstr ""
|
1174 |
|
1697 |
msgstr ""
|
1698 |
|
1699 |
#: wizard/build/app.js:1
|
|
|
1700 |
msgid "Let's Connect"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
#: wizard/build/app.js:1
|
|
|
1704 |
msgid "with Stripe"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
#: wizard/build/app.js:1
|
|
|
1708 |
msgid "recommends to connect with"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
#: wizard/build/app.js:1
|
|
|
1712 |
msgid "Stripe connect."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
#: wizard/build/app.js:1
|
|
|
1716 |
msgid "One click onboarding solution provided by"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
#: wizard/build/app.js:1
|
|
|
1720 |
msgid "Stripe."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
#: wizard/build/app.js:1
|
|
|
1724 |
msgid "Connecting…"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
#: wizard/build/app.js:1
|
|
|
1728 |
msgid "Leave onboarding process"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
#: wizard/build/app.js:1
|
|
|
1732 |
msgid "Congratulations!!"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
#: wizard/build/app.js:1
|
|
|
1736 |
msgid "You are connected to Stripe successfully."
|
1737 |
msgstr ""
|
1738 |
|
1739 |
#: wizard/build/app.js:1
|
|
|
1740 |
msgid "Let's enable gateways"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
#: wizard/build/app.js:1
|
|
|
1744 |
msgid "Recommended"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
#: wizard/build/app.js:1
|
|
|
1748 |
msgid "Works with all currencies"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
#: wizard/build/app.js:1
|
|
|
1752 |
msgid "Works with "
|
1753 |
msgstr ""
|
1754 |
|
1755 |
#: wizard/build/app.js:1
|
|
|
|
|
1756 |
msgid "Enabling…"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
#: wizard/build/app.js:1
|
|
|
1760 |
msgid "Enable Gateways"
|
1761 |
msgstr ""
|
1762 |
|
1825 |
msgstr ""
|
1826 |
|
1827 |
#: wizard/build/app.js:1
|
|
|
1828 |
msgid "Wooho!!"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
#: wizard/build/app.js:1
|
|
|
1832 |
msgid "You are almost done."
|
1833 |
msgstr ""
|
1834 |
|
1835 |
#: wizard/build/app.js:1
|
|
|
1836 |
msgid "Since you have enabled"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
#: wizard/build/app.js:1
|
|
|
1840 |
msgid " We recommend you to enable"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
#: wizard/build/app.js:1
|
|
|
1844 |
msgid "feature"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
#: wizard/build/app.js:1
|
|
|
1848 |
msgid "Express Checkout generates more conversions!!"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
#: wizard/build/app.js:1
|
|
|
1852 |
msgid "Skip Express Checkout"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
#: wizard/build/app.js:1
|
|
|
1856 |
msgid "Failed!!"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
#: wizard/build/app.js:1
|
|
|
1860 |
msgid "Unfortunately Connection to Stripe failed."
|
1861 |
msgstr ""
|
1862 |
|
1863 |
#: wizard/build/app.js:1
|
|
|
1864 |
msgid "Try Again"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
#: wizard/build/app.js:1
|
|
|
1868 |
msgid "Great!!"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
#: wizard/build/app.js:1
|
|
|
1872 |
msgid "Your store is all set to accept payment."
|
1873 |
msgstr ""
|
1874 |
|
1875 |
#: wizard/build/app.js:1
|
|
|
1876 |
msgid "We provide lots of customization options to match your needs, don't forget to explore them."
|
1877 |
msgstr ""
|
1878 |
|
1879 |
#: wizard/build/app.js:1
|
|
|
1880 |
msgid "Let's Customize…"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
#: wizard/build/app.js:1
|
|
|
1884 |
msgid "Let's Customize"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
#: wizard/build/app.js:1
|
|
|
1888 |
msgid "Missing"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
#: wizard/build/app.js:1
|
|
|
1892 |
msgid "Inactiave"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
#: wizard/build/app.js:1
|
|
|
1896 |
msgid "WooCoomerce"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
#: wizard/build/app.js:1
|
|
|
1900 |
msgid "Checkout Plugins - Stripe for WooCoomerce"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
#: wizard/build/app.js:1
|
|
|
1904 |
msgid "requires"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
#: wizard/build/app.js:1
|
|
|
1908 |
msgid "WooCommerce"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
#: wizard/build/app.js:1
|
|
|
1912 |
msgid "to be active on your store."
|
1913 |
msgstr ""
|
1914 |
|
1915 |
#: wizard/build/app.js:1
|
|
|
1916 |
msgid "Installing…"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
#: wizard/build/app.js:1
|
|
|
1920 |
msgid "Activating…"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
#: wizard/build/app.js:1
|
|
|
1924 |
msgid "Install and continue"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
#: wizard/build/app.js:1
|
|
|
1928 |
msgid "Activate and continue"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
#: wizard/build/app.js:1
|
|
|
1932 |
msgid "Installing WooCommerce will take time. Please be patient."
|
1933 |
msgstr ""
|
1934 |
|
1935 |
#: wizard/build/app.js:1
|
|
|
1936 |
msgid "WooCommerce installing failed. Please try again."
|
1937 |
msgstr ""
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: brainstormforce
|
|
3 |
Tags: stripe, credit card
|
4 |
Requires at least: 5.4
|
5 |
Tested up to: 5.9
|
6 |
-
Stable tag: 1.4.
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -108,6 +108,9 @@ We understand the need for a quality product backed by dedicated support that ca
|
|
108 |
|
109 |
== Changelog ==
|
110 |
|
|
|
|
|
|
|
111 |
= 1.4.2 - TUESDAY, 29TH MARCH 2022 =
|
112 |
* Improvement: Added webhook secret step in the onboarding wizard.
|
113 |
* Improvement: Added translation support for card declined messages.
|
3 |
Tags: stripe, credit card
|
4 |
Requires at least: 5.4
|
5 |
Tested up to: 5.9
|
6 |
+
Stable tag: 1.4.3
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
108 |
|
109 |
== Changelog ==
|
110 |
|
111 |
+
= 1.4.3 - THURSDAY, 21ST APRIL 2022 =
|
112 |
+
* Fix: Syntax error of older PHP versions.
|
113 |
+
|
114 |
= 1.4.2 - TUESDAY, 29TH MARCH 2022 =
|
115 |
* Improvement: Added webhook secret step in the onboarding wizard.
|
116 |
* Improvement: Added translation support for card declined messages.
|