Changeset 3192018
- Timestamp:
- 11/19/2024 09:23:13 AM (14 months ago)
- Location:
- checkout-com-unified-payments-api
- Files:
-
- 12 edited
- 1 copied
-
tags/4.9.0 (copied) (copied from checkout-com-unified-payments-api/trunk)
-
tags/4.9.0/assets/js/cko-paypal-integration.js (modified) (2 diffs)
-
tags/4.9.0/includes/class-wc-gateway-checkout-com-paypal.php (modified) (2 diffs)
-
tags/4.9.0/languages/checkout-com-unified-payments-api.pot (modified) (16 diffs)
-
tags/4.9.0/readme.txt (modified) (1 diff)
-
tags/4.9.0/vendor/composer/installed.php (modified) (2 diffs)
-
tags/4.9.0/woocommerce-gateway-checkout-com.php (modified) (2 diffs)
-
trunk/assets/js/cko-paypal-integration.js (modified) (2 diffs)
-
trunk/includes/class-wc-gateway-checkout-com-paypal.php (modified) (2 diffs)
-
trunk/languages/checkout-com-unified-payments-api.pot (modified) (16 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/woocommerce-gateway-checkout-com.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
checkout-com-unified-payments-api/tags/4.9.0/assets/js/cko-paypal-integration.js
r3108580 r3192018 125 125 }, 126 126 onCancel: function (data, actions) { 127 fetch( cko_paypal_vars.clear_session_url, { 128 method: 'GET', 129 headers: { 130 'Content-Type': 'application/x-www-form-urlencoded' 131 }, 132 }); 127 133 jQuery('.woocommerce').unblock(); 128 134 }, … … 163 169 164 170 return; 165 166 // Initialise PayPal when page is ready.167 jQuery( document ).ready(function() {168 169 let paypalButtonProps = {170 onApprove: async function (data) {171 172 jQuery('.woocommerce').block({message: null, overlayCSS: {background: '#fff', opacity: 0.6}});173 174 jQuery.post(cko_paypal_vars.cc_capture + "&paypal_order_id=" + data.orderID + "&woocommerce-process-checkout-nonce=" + cko_paypal_vars.woocommerce_process_checkout, function (data) {175 if (typeof data.success !== 'undefined' && data.success !== true ) {176 var messages = data.data.messages ? data.data.messages : data.data;177 178 if ( 'string' === typeof messages || Array.isArray( messages ) ) {179 showError( messages );180 }181 } else {182 window.location.href = data.data.redirect;183 }184 });185 },186 onCancel: function (data, actions) {187 jQuery('.woocommerce').unblock();188 },189 onError: function (err) {190 console.log(err);191 jQuery('.woocommerce').unblock();192 },193 };194 195 if ( cko_paypal_vars.is_cart_contains_subscription ) {196 paypalButtonProps.createBillingAgreement = function( data, actions ) {197 return cko_create_order_id();198 };199 } else {200 paypalButtonProps.createOrder = function( data, actions ) {201 return cko_create_order_id();202 };203 }204 205 paypal.Buttons({ paypalButtonProps }).render( cko_paypal_vars.paypal_button_selector );206 });207 208 209 210 171 }); -
checkout-com-unified-payments-api/tags/4.9.0/includes/class-wc-gateway-checkout-com-paypal.php
r3182844 r3192018 86 86 } 87 87 break; 88 89 case 'empty_session': 90 WC_Checkoutcom_Utility::cko_set_session( 'cko_paypal_order_id', '' ); 91 WC_Checkoutcom_Utility::cko_set_session( 'cko_pc_id', '' ); 88 92 89 93 case 'cc_capture': … … 536 540 $vars = [ 537 541 'create_order_url' => add_query_arg( [ 'cko_paypal_action' => 'create_order' ], WC()->api_request_url( 'CKO_Paypal_Woocommerce' ) ), 542 'clear_session_url' => add_query_arg( [ 'cko_paypal_action' => 'empty_session' ], WC()->api_request_url( 'CKO_Paypal_Woocommerce' ) ), 538 543 'cc_capture' => add_query_arg( [ 'cko_paypal_action' => 'cc_capture' ], WC()->api_request_url( 'CKO_Paypal_Woocommerce' ) ), 539 544 'woocommerce_process_checkout' => wp_create_nonce( 'woocommerce-process_checkout' ), -
checkout-com-unified-payments-api/tags/4.9.0/languages/checkout-com-unified-payments-api.pot
r3182844 r3192018 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Checkout.com Payment Gateway 4. 8.0\n"5 "Project-Id-Version: Checkout.com Payment Gateway 4.9.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-gateway-checkout-com\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-1 0-28T11:15:27+00:00\n"12 "POT-Creation-Date: 2024-11-19T08:15:04+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.9.0\n" … … 16 16 17 17 #. Plugin Name of the plugin 18 19 18 msgid "Checkout.com Payment Gateway" 20 19 msgstr "" … … 22 21 #. Plugin URI of the plugin 23 22 #. Author URI of the plugin 24 #: woocommerce-gateway-checkout-com.php25 23 msgid "https://www.checkout.com/" 26 24 msgstr "" 27 25 28 26 #. Description of the plugin 29 #: woocommerce-gateway-checkout-com.php30 27 msgid "Extends WooCommerce by Adding the Checkout.com Gateway." 31 28 msgstr "" 32 29 33 30 #. Author of the plugin 34 #: woocommerce-gateway-checkout-com.php35 31 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-boleto.php:23 36 32 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-fawry.php:23 … … 39 35 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-multibanco.php:28 40 36 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:23 41 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:3 542 #: includes/class-wc-gateway-checkout-com-apple-pay.php:2 243 #: includes/class-wc-gateway-checkout-com-cards.php:3 544 #: includes/class-wc-gateway-checkout-com-google-pay.php:2 045 #: includes/class-wc-gateway-checkout-com-paypal.php:2 537 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:36 38 #: includes/class-wc-gateway-checkout-com-apple-pay.php:23 39 #: includes/class-wc-gateway-checkout-com-cards.php:36 40 #: includes/class-wc-gateway-checkout-com-google-pay.php:21 41 #: includes/class-wc-gateway-checkout-com-paypal.php:26 46 42 msgid "Checkout.com" 47 43 msgstr "" … … 129 125 msgstr "" 130 126 131 #: includes/api/class-wc-checkoutcom-apm-method.php:39 7127 #: includes/api/class-wc-checkoutcom-apm-method.php:399 132 128 msgid "An error has occurred while getting sepa info." 133 129 msgstr "" … … 156 152 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-klarna.php:26 157 153 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:24 158 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:3 6159 #: includes/class-wc-gateway-checkout-com-apple-pay.php:2 3160 #: includes/class-wc-gateway-checkout-com-cards.php:3 6161 #: includes/class-wc-gateway-checkout-com-google-pay.php:2 1162 #: includes/class-wc-gateway-checkout-com-paypal.php:2 6154 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:37 155 #: includes/class-wc-gateway-checkout-com-apple-pay.php:24 156 #: includes/class-wc-gateway-checkout-com-cards.php:37 157 #: includes/class-wc-gateway-checkout-com-google-pay.php:22 158 #: includes/class-wc-gateway-checkout-com-paypal.php:27 163 159 msgid "The Checkout.com extension allows shop owners to process online payments through the <a href=\"https://www.checkout.com\">Checkout.com Payment Gateway.</a>" 164 160 msgstr "" … … 219 215 220 216 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-klarna.php:149 221 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-klarna.php:19 8217 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-klarna.php:197 222 218 msgid "An error has occurred while Klarna payment request. " 223 219 msgstr "" … … 274 270 msgstr "" 275 271 276 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:14 4272 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:145 277 273 msgid "Please try correct IBAN" 278 274 msgstr "" 279 275 280 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:14 6276 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:147 281 277 msgid " Please try correct IBAN" 282 278 msgstr "" 283 279 284 280 #. translators: 1: Result ID, 2: Mandate reference. 285 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:18 7281 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:188 286 282 msgid "Checkout.com - Sepa payment Action ID : %1$s - Sepa mandate reference : %2$s" 287 283 msgstr "" … … 306 302 #. translators: %s: Action ID. 307 303 #: includes/class-wc-checkout-com-webhook.php:154 308 #: includes/class-wc-gateway-checkout-com-cards.php:68 2304 #: includes/class-wc-gateway-checkout-com-cards.php:683 309 305 msgid "Checkout.com Payment Captured - Action ID : %s" 310 306 msgstr "" … … 343 339 msgstr "" 344 340 345 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:3 7341 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:38 346 342 msgid "Alternative Payment" 347 343 msgstr "" 348 344 349 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:6 6345 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:67 350 346 #: includes/class-wc-gateway-checkout-com-apple-pay.php:66 351 #: includes/class-wc-gateway-checkout-com-cards.php:17 7352 #: includes/class-wc-gateway-checkout-com-google-pay.php:10 0353 #: includes/class-wc-gateway-checkout-com-paypal.php:4 77347 #: includes/class-wc-gateway-checkout-com-cards.php:178 348 #: includes/class-wc-gateway-checkout-com-google-pay.php:101 349 #: includes/class-wc-gateway-checkout-com-paypal.php:458 354 350 msgid "Other Settings" 355 351 msgstr "" 356 352 357 353 #. translators: %s: Action ID. 358 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:12 2359 #: includes/class-wc-gateway-checkout-com-apple-pay.php:64 1354 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:123 355 #: includes/class-wc-gateway-checkout-com-apple-pay.php:642 360 356 #: includes/class-wc-gateway-checkout-com-cards.php:948 361 357 msgid "Checkout.com Payment Partially refunded from Admin - Action ID : %s" … … 363 359 364 360 #. translators: %s: Action ID. 365 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:13 1366 #: includes/class-wc-gateway-checkout-com-apple-pay.php:65 0361 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:132 362 #: includes/class-wc-gateway-checkout-com-apple-pay.php:651 367 363 #: includes/class-wc-gateway-checkout-com-cards.php:943 368 364 msgid "Checkout.com Payment refunded from Admin - Action ID : %s" 369 365 msgstr "" 370 366 371 #: includes/class-wc-gateway-checkout-com-apple-pay.php:2 4367 #: includes/class-wc-gateway-checkout-com-apple-pay.php:25 372 368 #: includes/settings/admin/class-wc-checkoutcom-admin.php:66 373 369 msgid "Apple Pay" 374 370 msgstr "" 375 371 376 #: includes/class-wc-gateway-checkout-com-apple-pay.php:55 6377 #: includes/class-wc-gateway-checkout-com-cards.php:46 6378 #: includes/class-wc-gateway-checkout-com-google-pay.php:15 1372 #: includes/class-wc-gateway-checkout-com-apple-pay.php:557 373 #: includes/class-wc-gateway-checkout-com-cards.php:467 374 #: includes/class-wc-gateway-checkout-com-google-pay.php:152 379 375 msgid "There was an issue completing the payment." 380 376 msgstr "" 381 377 382 378 #. translators: %s: Action ID. 383 #: includes/class-wc-gateway-checkout-com-apple-pay.php:58 4384 #: includes/class-wc-gateway-checkout-com-cards.php:55 0385 #: includes/class-wc-gateway-checkout-com-cards.php:6 59386 #: includes/class-wc-gateway-checkout-com-google-pay.php:19 3379 #: includes/class-wc-gateway-checkout-com-apple-pay.php:585 380 #: includes/class-wc-gateway-checkout-com-cards.php:551 381 #: includes/class-wc-gateway-checkout-com-cards.php:660 382 #: includes/class-wc-gateway-checkout-com-google-pay.php:195 387 383 msgid "Checkout.com Payment Authorised - Action ID : %s" 388 384 msgstr "" 389 385 390 386 #. translators: %s: Action ID. 391 #: includes/class-wc-gateway-checkout-com-apple-pay.php:59 2392 #: includes/class-wc-gateway-checkout-com-cards.php:55 8393 #: includes/class-wc-gateway-checkout-com-cards.php:66 7394 #: includes/class-wc-gateway-checkout-com-google-pay.php:20 1387 #: includes/class-wc-gateway-checkout-com-apple-pay.php:593 388 #: includes/class-wc-gateway-checkout-com-cards.php:559 389 #: includes/class-wc-gateway-checkout-com-cards.php:668 390 #: includes/class-wc-gateway-checkout-com-google-pay.php:203 395 391 msgid "Checkout.com Payment Flagged - Action ID : %s" 396 392 msgstr "" 397 393 398 #: includes/class-wc-gateway-checkout-com-cards.php:3 7394 #: includes/class-wc-gateway-checkout-com-cards.php:38 399 395 msgid "Cards payment and general configuration" 400 396 msgstr "" 401 397 402 #: includes/class-wc-gateway-checkout-com-cards.php:5 5398 #: includes/class-wc-gateway-checkout-com-cards.php:56 403 399 msgid "Use a new card" 404 400 msgstr "" 405 401 406 #: includes/class-wc-gateway-checkout-com-cards.php:1 39402 #: includes/class-wc-gateway-checkout-com-cards.php:140 407 403 msgid "Please enter a valid card number" 408 404 msgstr "" 409 405 410 #: includes/class-wc-gateway-checkout-com-cards.php:14 0406 #: includes/class-wc-gateway-checkout-com-cards.php:141 411 407 msgid "Please enter a valid expiry date" 412 408 msgstr "" 413 409 414 #: includes/class-wc-gateway-checkout-com-cards.php:14 1410 #: includes/class-wc-gateway-checkout-com-cards.php:142 415 411 msgid "Please enter a valid cvv code" 416 412 msgstr "" 417 413 418 #: includes/class-wc-gateway-checkout-com-cards.php:20 7414 #: includes/class-wc-gateway-checkout-com-cards.php:208 419 415 #: woocommerce-gateway-checkout-com.php:123 420 416 msgid "Settings" 421 417 msgstr "" 422 418 423 #: includes/class-wc-gateway-checkout-com-cards.php:27 4419 #: includes/class-wc-gateway-checkout-com-cards.php:275 424 420 msgid "Please enter your card details." 425 421 msgstr "" 426 422 427 #: includes/class-wc-gateway-checkout-com-cards.php:3 49423 #: includes/class-wc-gateway-checkout-com-cards.php:350 428 424 msgid "PAN" 429 425 msgstr "" 430 426 431 #: includes/class-wc-gateway-checkout-com-cards.php:35 6427 #: includes/class-wc-gateway-checkout-com-cards.php:357 432 428 msgid "PAN error" 433 429 msgstr "" 434 430 435 #: includes/class-wc-gateway-checkout-com-cards.php:36 4431 #: includes/class-wc-gateway-checkout-com-cards.php:365 436 432 msgid "Expiry date" 437 433 msgstr "" 438 434 439 #: includes/class-wc-gateway-checkout-com-cards.php:36 8435 #: includes/class-wc-gateway-checkout-com-cards.php:369 440 436 msgid "Expiry error" 441 437 msgstr "" 442 438 443 #: includes/class-wc-gateway-checkout-com-cards.php:376 439 #: includes/class-wc-gateway-checkout-com-cards.php:377 440 #: includes/class-wc-gateway-checkout-com-cards.php:405 441 msgid "CVV" 442 msgstr "" 443 444 #: includes/class-wc-gateway-checkout-com-cards.php:381 445 msgid "CVV error" 446 msgstr "" 447 448 #: includes/class-wc-gateway-checkout-com-cards.php:388 449 msgid "Select your preferred card brand" 450 msgstr "" 451 452 #: includes/class-wc-gateway-checkout-com-cards.php:389 453 msgid "Your card has two brands and you can choose your preferred brand for this payment, if you don't the merchant preferred brand will be selected." 454 msgstr "" 455 444 456 #: includes/class-wc-gateway-checkout-com-cards.php:404 445 msgid "CVV"446 msgstr ""447 448 #: includes/class-wc-gateway-checkout-com-cards.php:380449 msgid "CVV error"450 msgstr ""451 452 #: includes/class-wc-gateway-checkout-com-cards.php:387453 msgid "Select your preferred card brand"454 msgstr ""455 456 #: includes/class-wc-gateway-checkout-com-cards.php:388457 msgid "Your card has two brands and you can choose your preferred brand for this payment, if you don't the merchant preferred brand will be selected."458 msgstr ""459 460 #: includes/class-wc-gateway-checkout-com-cards.php:403461 457 msgid "Card Code" 462 458 msgstr "" 463 459 464 #: includes/class-wc-gateway-checkout-com-cards.php:512 465 #: includes/class-wc-gateway-checkout-com-google-pay.php:163 460 #. translators: %s: URL 461 #: includes/class-wc-gateway-checkout-com-cards.php:513 462 #: includes/class-wc-gateway-checkout-com-google-pay.php:165 466 463 msgid "Checkout.com 3d Redirect waiting. URL : %s" 467 464 msgstr "" 468 465 469 #: includes/class-wc-gateway-checkout-com-cards.php:6 29466 #: includes/class-wc-gateway-checkout-com-cards.php:630 470 467 msgid "Unable to add payment method to your account." 471 468 msgstr "" 472 469 473 #: includes/class-wc-gateway-checkout-com-cards.php:64 0470 #: includes/class-wc-gateway-checkout-com-cards.php:641 474 471 msgid "Payment method successfully added." 475 472 msgstr "" 476 473 477 474 #. translators: %s: Action ID. 478 #: includes/class-wc-gateway-checkout-com-cards.php:67 4475 #: includes/class-wc-gateway-checkout-com-cards.php:675 479 476 msgid "Checkout.com Payment Canceled - Action ID : %s" 480 477 msgstr "" 481 478 482 #: includes/class-wc-gateway-checkout-com-cards.php:81 4479 #: includes/class-wc-gateway-checkout-com-cards.php:815 483 480 msgid "An error has occurred while processing your cancel request. " 484 481 msgstr "" … … 489 486 msgstr "" 490 487 491 #: includes/class-wc-gateway-checkout-com-google-pay.php:2 2488 #: includes/class-wc-gateway-checkout-com-google-pay.php:23 492 489 #: includes/settings/admin/class-wc-checkoutcom-admin.php:63 493 490 #: includes/settings/class-wc-checkoutcom-cards-settings.php:613 … … 496 493 497 494 #. translators: %s: Action ID. 498 #: includes/class-wc-gateway-checkout-com-google-pay.php:2 48499 #: includes/class-wc-gateway-checkout-com-paypal.php:6 19495 #: includes/class-wc-gateway-checkout-com-google-pay.php:250 496 #: includes/class-wc-gateway-checkout-com-paypal.php:600 500 497 msgid "Checkout.com Payment refunded - Action ID : %s" 501 498 msgstr "" 502 499 503 500 #. translators: %s: Action ID. 504 #: includes/class-wc-gateway-checkout-com-google-pay.php:25 3505 #: includes/class-wc-gateway-checkout-com-paypal.php:6 24501 #: includes/class-wc-gateway-checkout-com-google-pay.php:255 502 #: includes/class-wc-gateway-checkout-com-paypal.php:605 506 503 msgid "Checkout.com Payment Partially refunded - Action ID : %s" 507 504 msgstr "" 508 505 509 #: includes/class-wc-gateway-checkout-com-paypal.php:2 7506 #: includes/class-wc-gateway-checkout-com-paypal.php:28 510 507 #: includes/settings/admin/class-wc-checkoutcom-admin.php:69 511 508 #: includes/settings/class-wc-checkoutcom-cards-settings.php:685 … … 513 510 msgstr "" 514 511 515 #: includes/class-wc-gateway-checkout-com-paypal.php: 407516 #: includes/class-wc-gateway-checkout-com-paypal.php:4 51512 #: includes/class-wc-gateway-checkout-com-paypal.php:390 513 #: includes/class-wc-gateway-checkout-com-paypal.php:432 517 514 msgid "An error has occurred while PayPal payment request. " 515 msgstr "" 516 517 #. translators: %3$ is funding source like "PayPal" or "Venmo", other placeholders are html tags for a link. 518 #: includes/express/paypal/class-paypal-express.php:180 519 msgid "You are currently paying with PayPal. %1$s%2$sChoose another payment method%3$s." 518 520 msgstr "" 519 521 … … 1301 1303 msgstr[1] "" 1302 1304 1303 #: woocommerce-gateway-checkout-com.php:18 31305 #: woocommerce-gateway-checkout-com.php:185 1304 1306 msgid "Please enter a valid cvv." 1305 1307 msgstr "" 1306 1308 1307 #: woocommerce-gateway-checkout-com.php:20 41309 #: woocommerce-gateway-checkout-com.php:206 1308 1310 msgid "An error occurred while fetching the webhooks. Please try again." 1309 1311 msgstr "" 1310 1312 1311 #: woocommerce-gateway-checkout-com.php:20 51313 #: woocommerce-gateway-checkout-com.php:207 1312 1314 msgid "An error occurred while registering the webhook. Please try again." 1313 1315 msgstr "" 1314 1316 1315 1317 #. translators: %s: Action id. 1316 #: woocommerce-gateway-checkout-com.php:33 21318 #: woocommerce-gateway-checkout-com.php:333 1317 1319 msgid "Checkout.com Payment Captured from Admin - Action ID : %s" 1318 1320 msgstr "" 1319 1321 1320 1322 #. translators: %s: Action id. 1321 #: woocommerce-gateway-checkout-com.php:3 591323 #: woocommerce-gateway-checkout-com.php:360 1322 1324 msgid "Checkout.com Payment Voided from Admin - Action ID : %s" 1323 1325 msgstr "" 1324 1326 1325 #: woocommerce-gateway-checkout-com.php:37 11327 #: woocommerce-gateway-checkout-com.php:372 1326 1328 msgid "An error has occurred." 1327 1329 msgstr "" 1328 1330 1329 #: woocommerce-gateway-checkout-com.php:39 11331 #: woocommerce-gateway-checkout-com.php:392 1330 1332 msgid "Fawry reference number: " 1331 1333 msgstr "" -
checkout-com-unified-payments-api/tags/4.9.0/readme.txt
r3182844 r3192018 172 172 173 173 == Changelog == 174 v4.9.0 19th Novemeber 2024 175 - **[fix]** 422 error on Paypal Payment Gateway 176 174 177 v4.8.0 30th October 2024 175 178 - **[remove]** Giropay Payment Support -
checkout-com-unified-payments-api/tags/4.9.0/vendor/composer/installed.php
r3182844 r3192018 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' ece446e1281619809f272f5652d50e04a99a7f07',6 'reference' => 'c03ef0c0f8fff65ffc0ea1e0c9038248d900f49a', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-master', 15 15 'version' => 'dev-master', 16 'reference' => ' ece446e1281619809f272f5652d50e04a99a7f07',16 'reference' => 'c03ef0c0f8fff65ffc0ea1e0c9038248d900f49a', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
checkout-com-unified-payments-api/tags/4.9.0/woocommerce-gateway-checkout-com.php
r3182844 r3192018 6 6 * Author: Checkout.com 7 7 * Author URI: https://www.checkout.com/ 8 * Version: 4. 8.08 * Version: 4.9.0 9 9 * Requires Plugins: woocommerce 10 10 * Requires at least: 5.0 11 * Stable tag: 4. 8.011 * Stable tag: 4.9.0 12 12 * Tested up to: 6.4.1 13 13 * WC tested up to: 8.3.1 … … 26 26 * Constants. 27 27 */ 28 define( 'WC_CHECKOUTCOM_PLUGIN_VERSION', '4. 8.0' );28 define( 'WC_CHECKOUTCOM_PLUGIN_VERSION', '4.9.0' ); 29 29 define( 'WC_CHECKOUTCOM_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) ); 30 30 define( 'WC_CHECKOUTCOM_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); -
checkout-com-unified-payments-api/trunk/assets/js/cko-paypal-integration.js
r3108580 r3192018 125 125 }, 126 126 onCancel: function (data, actions) { 127 fetch( cko_paypal_vars.clear_session_url, { 128 method: 'GET', 129 headers: { 130 'Content-Type': 'application/x-www-form-urlencoded' 131 }, 132 }); 127 133 jQuery('.woocommerce').unblock(); 128 134 }, … … 163 169 164 170 return; 165 166 // Initialise PayPal when page is ready.167 jQuery( document ).ready(function() {168 169 let paypalButtonProps = {170 onApprove: async function (data) {171 172 jQuery('.woocommerce').block({message: null, overlayCSS: {background: '#fff', opacity: 0.6}});173 174 jQuery.post(cko_paypal_vars.cc_capture + "&paypal_order_id=" + data.orderID + "&woocommerce-process-checkout-nonce=" + cko_paypal_vars.woocommerce_process_checkout, function (data) {175 if (typeof data.success !== 'undefined' && data.success !== true ) {176 var messages = data.data.messages ? data.data.messages : data.data;177 178 if ( 'string' === typeof messages || Array.isArray( messages ) ) {179 showError( messages );180 }181 } else {182 window.location.href = data.data.redirect;183 }184 });185 },186 onCancel: function (data, actions) {187 jQuery('.woocommerce').unblock();188 },189 onError: function (err) {190 console.log(err);191 jQuery('.woocommerce').unblock();192 },193 };194 195 if ( cko_paypal_vars.is_cart_contains_subscription ) {196 paypalButtonProps.createBillingAgreement = function( data, actions ) {197 return cko_create_order_id();198 };199 } else {200 paypalButtonProps.createOrder = function( data, actions ) {201 return cko_create_order_id();202 };203 }204 205 paypal.Buttons({ paypalButtonProps }).render( cko_paypal_vars.paypal_button_selector );206 });207 208 209 210 171 }); -
checkout-com-unified-payments-api/trunk/includes/class-wc-gateway-checkout-com-paypal.php
r3182844 r3192018 86 86 } 87 87 break; 88 89 case 'empty_session': 90 WC_Checkoutcom_Utility::cko_set_session( 'cko_paypal_order_id', '' ); 91 WC_Checkoutcom_Utility::cko_set_session( 'cko_pc_id', '' ); 88 92 89 93 case 'cc_capture': … … 536 540 $vars = [ 537 541 'create_order_url' => add_query_arg( [ 'cko_paypal_action' => 'create_order' ], WC()->api_request_url( 'CKO_Paypal_Woocommerce' ) ), 542 'clear_session_url' => add_query_arg( [ 'cko_paypal_action' => 'empty_session' ], WC()->api_request_url( 'CKO_Paypal_Woocommerce' ) ), 538 543 'cc_capture' => add_query_arg( [ 'cko_paypal_action' => 'cc_capture' ], WC()->api_request_url( 'CKO_Paypal_Woocommerce' ) ), 539 544 'woocommerce_process_checkout' => wp_create_nonce( 'woocommerce-process_checkout' ), -
checkout-com-unified-payments-api/trunk/languages/checkout-com-unified-payments-api.pot
r3182844 r3192018 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Checkout.com Payment Gateway 4. 8.0\n"5 "Project-Id-Version: Checkout.com Payment Gateway 4.9.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-gateway-checkout-com\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-1 0-28T11:15:27+00:00\n"12 "POT-Creation-Date: 2024-11-19T08:15:04+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.9.0\n" … … 16 16 17 17 #. Plugin Name of the plugin 18 19 18 msgid "Checkout.com Payment Gateway" 20 19 msgstr "" … … 22 21 #. Plugin URI of the plugin 23 22 #. Author URI of the plugin 24 #: woocommerce-gateway-checkout-com.php25 23 msgid "https://www.checkout.com/" 26 24 msgstr "" 27 25 28 26 #. Description of the plugin 29 #: woocommerce-gateway-checkout-com.php30 27 msgid "Extends WooCommerce by Adding the Checkout.com Gateway." 31 28 msgstr "" 32 29 33 30 #. Author of the plugin 34 #: woocommerce-gateway-checkout-com.php35 31 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-boleto.php:23 36 32 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-fawry.php:23 … … 39 35 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-multibanco.php:28 40 36 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:23 41 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:3 542 #: includes/class-wc-gateway-checkout-com-apple-pay.php:2 243 #: includes/class-wc-gateway-checkout-com-cards.php:3 544 #: includes/class-wc-gateway-checkout-com-google-pay.php:2 045 #: includes/class-wc-gateway-checkout-com-paypal.php:2 537 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:36 38 #: includes/class-wc-gateway-checkout-com-apple-pay.php:23 39 #: includes/class-wc-gateway-checkout-com-cards.php:36 40 #: includes/class-wc-gateway-checkout-com-google-pay.php:21 41 #: includes/class-wc-gateway-checkout-com-paypal.php:26 46 42 msgid "Checkout.com" 47 43 msgstr "" … … 129 125 msgstr "" 130 126 131 #: includes/api/class-wc-checkoutcom-apm-method.php:39 7127 #: includes/api/class-wc-checkoutcom-apm-method.php:399 132 128 msgid "An error has occurred while getting sepa info." 133 129 msgstr "" … … 156 152 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-klarna.php:26 157 153 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:24 158 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:3 6159 #: includes/class-wc-gateway-checkout-com-apple-pay.php:2 3160 #: includes/class-wc-gateway-checkout-com-cards.php:3 6161 #: includes/class-wc-gateway-checkout-com-google-pay.php:2 1162 #: includes/class-wc-gateway-checkout-com-paypal.php:2 6154 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:37 155 #: includes/class-wc-gateway-checkout-com-apple-pay.php:24 156 #: includes/class-wc-gateway-checkout-com-cards.php:37 157 #: includes/class-wc-gateway-checkout-com-google-pay.php:22 158 #: includes/class-wc-gateway-checkout-com-paypal.php:27 163 159 msgid "The Checkout.com extension allows shop owners to process online payments through the <a href=\"https://www.checkout.com\">Checkout.com Payment Gateway.</a>" 164 160 msgstr "" … … 219 215 220 216 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-klarna.php:149 221 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-klarna.php:19 8217 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-klarna.php:197 222 218 msgid "An error has occurred while Klarna payment request. " 223 219 msgstr "" … … 274 270 msgstr "" 275 271 276 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:14 4272 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:145 277 273 msgid "Please try correct IBAN" 278 274 msgstr "" 279 275 280 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:14 6276 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:147 281 277 msgid " Please try correct IBAN" 282 278 msgstr "" 283 279 284 280 #. translators: 1: Result ID, 2: Mandate reference. 285 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:18 7281 #: includes/apms/class-wc-gateway-checkout-com-alternative-payments-sepa.php:188 286 282 msgid "Checkout.com - Sepa payment Action ID : %1$s - Sepa mandate reference : %2$s" 287 283 msgstr "" … … 306 302 #. translators: %s: Action ID. 307 303 #: includes/class-wc-checkout-com-webhook.php:154 308 #: includes/class-wc-gateway-checkout-com-cards.php:68 2304 #: includes/class-wc-gateway-checkout-com-cards.php:683 309 305 msgid "Checkout.com Payment Captured - Action ID : %s" 310 306 msgstr "" … … 343 339 msgstr "" 344 340 345 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:3 7341 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:38 346 342 msgid "Alternative Payment" 347 343 msgstr "" 348 344 349 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:6 6345 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:67 350 346 #: includes/class-wc-gateway-checkout-com-apple-pay.php:66 351 #: includes/class-wc-gateway-checkout-com-cards.php:17 7352 #: includes/class-wc-gateway-checkout-com-google-pay.php:10 0353 #: includes/class-wc-gateway-checkout-com-paypal.php:4 77347 #: includes/class-wc-gateway-checkout-com-cards.php:178 348 #: includes/class-wc-gateway-checkout-com-google-pay.php:101 349 #: includes/class-wc-gateway-checkout-com-paypal.php:458 354 350 msgid "Other Settings" 355 351 msgstr "" 356 352 357 353 #. translators: %s: Action ID. 358 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:12 2359 #: includes/class-wc-gateway-checkout-com-apple-pay.php:64 1354 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:123 355 #: includes/class-wc-gateway-checkout-com-apple-pay.php:642 360 356 #: includes/class-wc-gateway-checkout-com-cards.php:948 361 357 msgid "Checkout.com Payment Partially refunded from Admin - Action ID : %s" … … 363 359 364 360 #. translators: %s: Action ID. 365 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:13 1366 #: includes/class-wc-gateway-checkout-com-apple-pay.php:65 0361 #: includes/class-wc-gateway-checkout-com-alternative-payments.php:132 362 #: includes/class-wc-gateway-checkout-com-apple-pay.php:651 367 363 #: includes/class-wc-gateway-checkout-com-cards.php:943 368 364 msgid "Checkout.com Payment refunded from Admin - Action ID : %s" 369 365 msgstr "" 370 366 371 #: includes/class-wc-gateway-checkout-com-apple-pay.php:2 4367 #: includes/class-wc-gateway-checkout-com-apple-pay.php:25 372 368 #: includes/settings/admin/class-wc-checkoutcom-admin.php:66 373 369 msgid "Apple Pay" 374 370 msgstr "" 375 371 376 #: includes/class-wc-gateway-checkout-com-apple-pay.php:55 6377 #: includes/class-wc-gateway-checkout-com-cards.php:46 6378 #: includes/class-wc-gateway-checkout-com-google-pay.php:15 1372 #: includes/class-wc-gateway-checkout-com-apple-pay.php:557 373 #: includes/class-wc-gateway-checkout-com-cards.php:467 374 #: includes/class-wc-gateway-checkout-com-google-pay.php:152 379 375 msgid "There was an issue completing the payment." 380 376 msgstr "" 381 377 382 378 #. translators: %s: Action ID. 383 #: includes/class-wc-gateway-checkout-com-apple-pay.php:58 4384 #: includes/class-wc-gateway-checkout-com-cards.php:55 0385 #: includes/class-wc-gateway-checkout-com-cards.php:6 59386 #: includes/class-wc-gateway-checkout-com-google-pay.php:19 3379 #: includes/class-wc-gateway-checkout-com-apple-pay.php:585 380 #: includes/class-wc-gateway-checkout-com-cards.php:551 381 #: includes/class-wc-gateway-checkout-com-cards.php:660 382 #: includes/class-wc-gateway-checkout-com-google-pay.php:195 387 383 msgid "Checkout.com Payment Authorised - Action ID : %s" 388 384 msgstr "" 389 385 390 386 #. translators: %s: Action ID. 391 #: includes/class-wc-gateway-checkout-com-apple-pay.php:59 2392 #: includes/class-wc-gateway-checkout-com-cards.php:55 8393 #: includes/class-wc-gateway-checkout-com-cards.php:66 7394 #: includes/class-wc-gateway-checkout-com-google-pay.php:20 1387 #: includes/class-wc-gateway-checkout-com-apple-pay.php:593 388 #: includes/class-wc-gateway-checkout-com-cards.php:559 389 #: includes/class-wc-gateway-checkout-com-cards.php:668 390 #: includes/class-wc-gateway-checkout-com-google-pay.php:203 395 391 msgid "Checkout.com Payment Flagged - Action ID : %s" 396 392 msgstr "" 397 393 398 #: includes/class-wc-gateway-checkout-com-cards.php:3 7394 #: includes/class-wc-gateway-checkout-com-cards.php:38 399 395 msgid "Cards payment and general configuration" 400 396 msgstr "" 401 397 402 #: includes/class-wc-gateway-checkout-com-cards.php:5 5398 #: includes/class-wc-gateway-checkout-com-cards.php:56 403 399 msgid "Use a new card" 404 400 msgstr "" 405 401 406 #: includes/class-wc-gateway-checkout-com-cards.php:1 39402 #: includes/class-wc-gateway-checkout-com-cards.php:140 407 403 msgid "Please enter a valid card number" 408 404 msgstr "" 409 405 410 #: includes/class-wc-gateway-checkout-com-cards.php:14 0406 #: includes/class-wc-gateway-checkout-com-cards.php:141 411 407 msgid "Please enter a valid expiry date" 412 408 msgstr "" 413 409 414 #: includes/class-wc-gateway-checkout-com-cards.php:14 1410 #: includes/class-wc-gateway-checkout-com-cards.php:142 415 411 msgid "Please enter a valid cvv code" 416 412 msgstr "" 417 413 418 #: includes/class-wc-gateway-checkout-com-cards.php:20 7414 #: includes/class-wc-gateway-checkout-com-cards.php:208 419 415 #: woocommerce-gateway-checkout-com.php:123 420 416 msgid "Settings" 421 417 msgstr "" 422 418 423 #: includes/class-wc-gateway-checkout-com-cards.php:27 4419 #: includes/class-wc-gateway-checkout-com-cards.php:275 424 420 msgid "Please enter your card details." 425 421 msgstr "" 426 422 427 #: includes/class-wc-gateway-checkout-com-cards.php:3 49423 #: includes/class-wc-gateway-checkout-com-cards.php:350 428 424 msgid "PAN" 429 425 msgstr "" 430 426 431 #: includes/class-wc-gateway-checkout-com-cards.php:35 6427 #: includes/class-wc-gateway-checkout-com-cards.php:357 432 428 msgid "PAN error" 433 429 msgstr "" 434 430 435 #: includes/class-wc-gateway-checkout-com-cards.php:36 4431 #: includes/class-wc-gateway-checkout-com-cards.php:365 436 432 msgid "Expiry date" 437 433 msgstr "" 438 434 439 #: includes/class-wc-gateway-checkout-com-cards.php:36 8435 #: includes/class-wc-gateway-checkout-com-cards.php:369 440 436 msgid "Expiry error" 441 437 msgstr "" 442 438 443 #: includes/class-wc-gateway-checkout-com-cards.php:376 439 #: includes/class-wc-gateway-checkout-com-cards.php:377 440 #: includes/class-wc-gateway-checkout-com-cards.php:405 441 msgid "CVV" 442 msgstr "" 443 444 #: includes/class-wc-gateway-checkout-com-cards.php:381 445 msgid "CVV error" 446 msgstr "" 447 448 #: includes/class-wc-gateway-checkout-com-cards.php:388 449 msgid "Select your preferred card brand" 450 msgstr "" 451 452 #: includes/class-wc-gateway-checkout-com-cards.php:389 453 msgid "Your card has two brands and you can choose your preferred brand for this payment, if you don't the merchant preferred brand will be selected." 454 msgstr "" 455 444 456 #: includes/class-wc-gateway-checkout-com-cards.php:404 445 msgid "CVV"446 msgstr ""447 448 #: includes/class-wc-gateway-checkout-com-cards.php:380449 msgid "CVV error"450 msgstr ""451 452 #: includes/class-wc-gateway-checkout-com-cards.php:387453 msgid "Select your preferred card brand"454 msgstr ""455 456 #: includes/class-wc-gateway-checkout-com-cards.php:388457 msgid "Your card has two brands and you can choose your preferred brand for this payment, if you don't the merchant preferred brand will be selected."458 msgstr ""459 460 #: includes/class-wc-gateway-checkout-com-cards.php:403461 457 msgid "Card Code" 462 458 msgstr "" 463 459 464 #: includes/class-wc-gateway-checkout-com-cards.php:512 465 #: includes/class-wc-gateway-checkout-com-google-pay.php:163 460 #. translators: %s: URL 461 #: includes/class-wc-gateway-checkout-com-cards.php:513 462 #: includes/class-wc-gateway-checkout-com-google-pay.php:165 466 463 msgid "Checkout.com 3d Redirect waiting. URL : %s" 467 464 msgstr "" 468 465 469 #: includes/class-wc-gateway-checkout-com-cards.php:6 29466 #: includes/class-wc-gateway-checkout-com-cards.php:630 470 467 msgid "Unable to add payment method to your account." 471 468 msgstr "" 472 469 473 #: includes/class-wc-gateway-checkout-com-cards.php:64 0470 #: includes/class-wc-gateway-checkout-com-cards.php:641 474 471 msgid "Payment method successfully added." 475 472 msgstr "" 476 473 477 474 #. translators: %s: Action ID. 478 #: includes/class-wc-gateway-checkout-com-cards.php:67 4475 #: includes/class-wc-gateway-checkout-com-cards.php:675 479 476 msgid "Checkout.com Payment Canceled - Action ID : %s" 480 477 msgstr "" 481 478 482 #: includes/class-wc-gateway-checkout-com-cards.php:81 4479 #: includes/class-wc-gateway-checkout-com-cards.php:815 483 480 msgid "An error has occurred while processing your cancel request. " 484 481 msgstr "" … … 489 486 msgstr "" 490 487 491 #: includes/class-wc-gateway-checkout-com-google-pay.php:2 2488 #: includes/class-wc-gateway-checkout-com-google-pay.php:23 492 489 #: includes/settings/admin/class-wc-checkoutcom-admin.php:63 493 490 #: includes/settings/class-wc-checkoutcom-cards-settings.php:613 … … 496 493 497 494 #. translators: %s: Action ID. 498 #: includes/class-wc-gateway-checkout-com-google-pay.php:2 48499 #: includes/class-wc-gateway-checkout-com-paypal.php:6 19495 #: includes/class-wc-gateway-checkout-com-google-pay.php:250 496 #: includes/class-wc-gateway-checkout-com-paypal.php:600 500 497 msgid "Checkout.com Payment refunded - Action ID : %s" 501 498 msgstr "" 502 499 503 500 #. translators: %s: Action ID. 504 #: includes/class-wc-gateway-checkout-com-google-pay.php:25 3505 #: includes/class-wc-gateway-checkout-com-paypal.php:6 24501 #: includes/class-wc-gateway-checkout-com-google-pay.php:255 502 #: includes/class-wc-gateway-checkout-com-paypal.php:605 506 503 msgid "Checkout.com Payment Partially refunded - Action ID : %s" 507 504 msgstr "" 508 505 509 #: includes/class-wc-gateway-checkout-com-paypal.php:2 7506 #: includes/class-wc-gateway-checkout-com-paypal.php:28 510 507 #: includes/settings/admin/class-wc-checkoutcom-admin.php:69 511 508 #: includes/settings/class-wc-checkoutcom-cards-settings.php:685 … … 513 510 msgstr "" 514 511 515 #: includes/class-wc-gateway-checkout-com-paypal.php: 407516 #: includes/class-wc-gateway-checkout-com-paypal.php:4 51512 #: includes/class-wc-gateway-checkout-com-paypal.php:390 513 #: includes/class-wc-gateway-checkout-com-paypal.php:432 517 514 msgid "An error has occurred while PayPal payment request. " 515 msgstr "" 516 517 #. translators: %3$ is funding source like "PayPal" or "Venmo", other placeholders are html tags for a link. 518 #: includes/express/paypal/class-paypal-express.php:180 519 msgid "You are currently paying with PayPal. %1$s%2$sChoose another payment method%3$s." 518 520 msgstr "" 519 521 … … 1301 1303 msgstr[1] "" 1302 1304 1303 #: woocommerce-gateway-checkout-com.php:18 31305 #: woocommerce-gateway-checkout-com.php:185 1304 1306 msgid "Please enter a valid cvv." 1305 1307 msgstr "" 1306 1308 1307 #: woocommerce-gateway-checkout-com.php:20 41309 #: woocommerce-gateway-checkout-com.php:206 1308 1310 msgid "An error occurred while fetching the webhooks. Please try again." 1309 1311 msgstr "" 1310 1312 1311 #: woocommerce-gateway-checkout-com.php:20 51313 #: woocommerce-gateway-checkout-com.php:207 1312 1314 msgid "An error occurred while registering the webhook. Please try again." 1313 1315 msgstr "" 1314 1316 1315 1317 #. translators: %s: Action id. 1316 #: woocommerce-gateway-checkout-com.php:33 21318 #: woocommerce-gateway-checkout-com.php:333 1317 1319 msgid "Checkout.com Payment Captured from Admin - Action ID : %s" 1318 1320 msgstr "" 1319 1321 1320 1322 #. translators: %s: Action id. 1321 #: woocommerce-gateway-checkout-com.php:3 591323 #: woocommerce-gateway-checkout-com.php:360 1322 1324 msgid "Checkout.com Payment Voided from Admin - Action ID : %s" 1323 1325 msgstr "" 1324 1326 1325 #: woocommerce-gateway-checkout-com.php:37 11327 #: woocommerce-gateway-checkout-com.php:372 1326 1328 msgid "An error has occurred." 1327 1329 msgstr "" 1328 1330 1329 #: woocommerce-gateway-checkout-com.php:39 11331 #: woocommerce-gateway-checkout-com.php:392 1330 1332 msgid "Fawry reference number: " 1331 1333 msgstr "" -
checkout-com-unified-payments-api/trunk/readme.txt
r3182844 r3192018 172 172 173 173 == Changelog == 174 v4.9.0 19th Novemeber 2024 175 - **[fix]** 422 error on Paypal Payment Gateway 176 174 177 v4.8.0 30th October 2024 175 178 - **[remove]** Giropay Payment Support -
checkout-com-unified-payments-api/trunk/vendor/composer/installed.php
r3182844 r3192018 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' ece446e1281619809f272f5652d50e04a99a7f07',6 'reference' => 'c03ef0c0f8fff65ffc0ea1e0c9038248d900f49a', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-master', 15 15 'version' => 'dev-master', 16 'reference' => ' ece446e1281619809f272f5652d50e04a99a7f07',16 'reference' => 'c03ef0c0f8fff65ffc0ea1e0c9038248d900f49a', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
checkout-com-unified-payments-api/trunk/woocommerce-gateway-checkout-com.php
r3182844 r3192018 6 6 * Author: Checkout.com 7 7 * Author URI: https://www.checkout.com/ 8 * Version: 4. 8.08 * Version: 4.9.0 9 9 * Requires Plugins: woocommerce 10 10 * Requires at least: 5.0 11 * Stable tag: 4. 8.011 * Stable tag: 4.9.0 12 12 * Tested up to: 6.4.1 13 13 * WC tested up to: 8.3.1 … … 26 26 * Constants. 27 27 */ 28 define( 'WC_CHECKOUTCOM_PLUGIN_VERSION', '4. 8.0' );28 define( 'WC_CHECKOUTCOM_PLUGIN_VERSION', '4.9.0' ); 29 29 define( 'WC_CHECKOUTCOM_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) ); 30 30 define( 'WC_CHECKOUTCOM_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
Note: See TracChangeset
for help on using the changeset viewer.