Changeset 3465172
- Timestamp:
- 02/19/2026 03:05:30 PM (5 weeks ago)
- Location:
- getpaid-stripe-payments
- Files:
-
- 16 edited
- 1 copied
-
tags/2.3.23 (copied) (copied from getpaid-stripe-payments/trunk)
-
tags/2.3.23/assets/js/wpinv-stripe.js (modified) (3 diffs)
-
tags/2.3.23/getpaid-stripe-payments.php (modified) (2 diffs)
-
tags/2.3.23/includes/class-getpaid-stripe-admin.php (modified) (1 diff)
-
tags/2.3.23/includes/class-getpaid-stripe-gateway.php (modified) (6 diffs)
-
tags/2.3.23/languages/wpinv-stripe-en_US.mo (modified) (previous)
-
tags/2.3.23/languages/wpinv-stripe-en_US.po (modified) (15 diffs)
-
tags/2.3.23/languages/wpinv-stripe.pot (modified) (15 diffs)
-
tags/2.3.23/readme.txt (modified) (2 diffs)
-
trunk/assets/js/wpinv-stripe.js (modified) (3 diffs)
-
trunk/getpaid-stripe-payments.php (modified) (2 diffs)
-
trunk/includes/class-getpaid-stripe-admin.php (modified) (1 diff)
-
trunk/includes/class-getpaid-stripe-gateway.php (modified) (6 diffs)
-
trunk/languages/wpinv-stripe-en_US.mo (modified) (previous)
-
trunk/languages/wpinv-stripe-en_US.po (modified) (15 diffs)
-
trunk/languages/wpinv-stripe.pot (modified) (15 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
getpaid-stripe-payments/tags/2.3.23/assets/js/wpinv-stripe.js
r2925724 r3465172 9 9 // Create a Stripe client. 10 10 var stripe = Stripe( GetPaid_Stripe.stripePublishableKey ); 11 12 /** 13 * Hook system for customizing Stripe Elements options. 14 * 15 * Use jQuery events to filter options: 16 * - 'getpaid_stripe_filter_elements_options': Filter stripe.elements() options 17 * - 'getpaid_stripe_filter_payment_element_options': Filter elements.create('payment') options 18 * 19 * Example: Restrict countries to Australia only 20 * jQuery( document ).on( 'getpaid_stripe_filter_payment_element_options', function( e, options, form ) { 21 * options.fields = options.fields || {}; 22 * options.fields.billingDetails = options.fields.billingDetails || {}; 23 * options.fields.billingDetails.address = options.fields.billingDetails.address || {}; 24 * options.fields.billingDetails.address.country = 'never'; 25 * options.defaultValues = options.defaultValues || {}; 26 * options.defaultValues.billingDetails = options.defaultValues.billingDetails || {}; 27 * options.defaultValues.billingDetails.address = options.defaultValues.billingDetails.address || {}; 28 * options.defaultValues.billingDetails.address.country = 'AU'; 29 * }); 30 */ 11 31 12 32 // Set-up forms. … … 41 61 42 62 // Create an instance of Elements. 43 var elements = stripe.elements({ clientSecret: form_state ? form_state.stripe_payment_intent_secret : '' }); 63 var elementsOptions = { clientSecret: (form_state ? form_state.stripe_payment_intent_secret : ''), locale: GetPaid_Stripe.locale }; 64 $( 'body' ).trigger( 'getpaid_stripe_filter_elements_options', [ elementsOptions, form ] ); 65 var elements = stripe.elements( elementsOptions ); 44 66 45 67 // Create a payment element. 46 var element = elements.create( 'payment' ); 68 var paymentElementOptions = {}; 69 $( 'body' ).trigger( 'getpaid_stripe_filter_payment_element_options', [ paymentElementOptions, form ] ); 70 var element = elements.create( 'payment', paymentElementOptions ); 47 71 48 72 // Mount the element. … … 178 202 179 203 // Create an instance of Elements. 180 updateModalElements = stripe.elements({ clientSecret: $( this ).data( 'intent' ) }); 204 var updateElementsOptions = { clientSecret: $( this ).data( 'intent' ), locale: GetPaid_Stripe.locale }; 205 $( 'body' ).trigger( 'getpaid_stripe_filter_elements_options', [ updateElementsOptions, $( '#getpaid-stripe-update-payment-modal' ) ] ); 206 updateModalElements = stripe.elements( updateElementsOptions ); 181 207 182 208 // Create a payment element. 183 updateModalElement = updateModalElements.create( 'payment' ); 209 var updatePaymentElementOptions = {}; 210 $( 'body' ).trigger( 'getpaid_stripe_filter_payment_element_options', [ updatePaymentElementOptions, $( '#getpaid-stripe-update-payment-modal' ) ] ); 211 updateModalElement = updateModalElements.create( 'payment', updatePaymentElementOptions ); 184 212 185 213 // Mount the element. -
getpaid-stripe-payments/tags/2.3.23/getpaid-stripe-payments.php
r3423102 r3465172 13 13 * Plugin URI: https://wpgetpaid.com/downloads/stripe-payment-gateway/ 14 14 * Description: Stripe payment gateway for Invoicing/GetPaid plugin. 15 * Version: 2.3.2 215 * Version: 2.3.23 16 16 * Author: AyeCode Ltd 17 17 * Author URI: https://wpgetpaid.com/ … … 29 29 30 30 if ( ! defined( 'WPINV_STRIPE_VERSION' ) ) { 31 define( 'WPINV_STRIPE_VERSION', '2.3.2 2' );31 define( 'WPINV_STRIPE_VERSION', '2.3.23' ); 32 32 } 33 33 -
getpaid-stripe-payments/tags/2.3.23/includes/class-getpaid-stripe-admin.php
r3359983 r3465172 329 329 ), 330 330 331 'stripe_locale' => array( 332 'id' => 'stripe_locale', 333 'type' => 'select', 334 'name' => __( 'Stripe Checkout Language', 'wpinv-stripe' ), 335 'desc' => __( 'Select language to display Stripe checkout popup. "Auto": Display Checkout in the user\'s preferred language, if available. English will be used by default. "Site Language": Display Checkout in site language.', 'wpinv-stripe' ), 336 'options' => array_merge( 337 array( 338 'auto' => __( 'Auto', 'wpinv-stripe' ), 339 'site' => __( 'Site Language', 'wpinv-stripe' ) 340 ), 341 wpinv_stripe_allowed_locales() 342 ), 343 'placeholder' => __( 'Select a locale', 'wpinv-stripe' ), 344 'std' => 'auto' 345 ), 346 331 347 'stripe_ipn_url' => array( 332 348 'type' => 'text', -
getpaid-stripe-payments/tags/2.3.23/includes/class-getpaid-stripe-gateway.php
r3404181 r3465172 57 57 58 58 if ( $this->enabled ) { 59 add_filter( 'wpinv_errors', array( $this, 'register_notices' ) ); 59 60 add_filter( 'getpaid_stripe_sandbox_notice', array( $this, 'sandbox_notice' ) ); 60 61 add_action( 'getpaid_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); … … 80 81 81 82 /** 83 * Registers custom notices. 84 * 85 * @param array $notices The notices. 86 * @return array 87 */ 88 public function register_notices( $notices ) { 89 if ( isset( $_GET['wpinv-notice'] ) && 'wpinv_stripe_card_updated' === $_GET['wpinv-notice'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended 90 $notices['wpinv_stripe_card_updated'] = array( 91 'type' => 'success', 92 'text' => __( 'Payment method updated successfully.', 'wpinv-stripe' ), 93 ); 94 } 95 return $notices; 96 } 97 98 /** 82 99 * Checks if we should load Stripe.js globally. 83 100 * … … 461 478 if ( isset( $_GET['setup_intent'] ) && isset( $_GET['subscription'] ) ) { 462 479 $subscription = getpaid_get_subscription( absint( $_GET['subscription'] ) ); 463 $this->process_payment_method_update( $_GET['setup_intent'], $subscription ); 464 wp_safe_redirect( remove_query_arg( array( 'setup_intent', 'setup_intent_client_secret', 'redirect_status' ) ) ); 480 $result = $this->process_payment_method_update( $_GET['setup_intent'], $subscription ); 481 $redirect_url = remove_query_arg( array( 'setup_intent', 'setup_intent_client_secret', 'redirect_status' ) ); 482 483 if ( true === $result ) { 484 $redirect_url = add_query_arg( 'wpinv-notice', 'wpinv_stripe_card_updated', $redirect_url ); 485 } 486 487 wp_safe_redirect( $redirect_url ); 465 488 exit; 466 489 } … … 476 499 * @param string $setup_intent_id Payment intent ID. 477 500 * @param WPInv_Subscription|false $subscription The subscription. 501 * @return bool|WP_Error True on success, WP_Error on failure. 478 502 */ 479 503 public function process_payment_method_update( $setup_intent_id, $subscription ) { … … 481 505 // Abort if no subscription. 482 506 if ( empty( $subscription ) ) { 483 return ;507 return new WP_Error( 'invalid_subscription', __( 'Invalid subscription.', 'wpinv-stripe' ) ); 484 508 } 485 509 … … 491 515 if ( is_wp_error( $result ) ) { 492 516 wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); 493 } else {494 wpinv_set_error( 'wpinv_payment_success', __( 'Payment method update successful.', 'wpinv-stripe' ), 'success' );495 } 496 517 return $result; 518 } 519 520 return true; 497 521 } 498 522 -
getpaid-stripe-payments/tags/2.3.23/languages/wpinv-stripe-en_US.po
r3423102 r3465172 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: GetPaid Stripe Payments 2.3.2 2\n"3 "Project-Id-Version: GetPaid Stripe Payments 2.3.23\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 202 5-12-18 21:30+0530\n"6 "PO-Revision-Date: 202 5-12-18 21:30+0530\n"5 "POT-Creation-Date: 2026-02-19 19:44+0530\n" 6 "PO-Revision-Date: 2026-02-19 19:44+0530\n" 7 7 "Last-Translator: AyeCode Ltd <[email protected]>\n" 8 8 "Language-Team: AyeCode Ltd <[email protected]>\n" … … 239 239 240 240 #: includes/class-getpaid-stripe-admin.php:334 241 msgid "Stripe Checkout Language" 242 msgstr "" 243 244 #: includes/class-getpaid-stripe-admin.php:335 245 msgid "" 246 "Select language to display Stripe checkout popup. \"Auto\": Display Checkout " 247 "in the user's preferred language, if available. English will be used by " 248 "default. \"Site Language\": Display Checkout in site language." 249 msgstr "" 250 251 #: includes/class-getpaid-stripe-admin.php:338 includes/stripe-functions.php:50 252 msgid "Auto" 253 msgstr "" 254 255 #: includes/class-getpaid-stripe-admin.php:339 256 msgid "Site Language" 257 msgstr "" 258 259 #: includes/class-getpaid-stripe-admin.php:343 260 msgid "Select a locale" 261 msgstr "" 262 263 #: includes/class-getpaid-stripe-admin.php:350 241 264 msgid "Stripe Webhook URL" 242 265 msgstr "" 243 266 244 #: includes/class-getpaid-stripe-admin.php:3 36267 #: includes/class-getpaid-stripe-admin.php:352 245 268 #, php-format 246 269 msgid "" … … 250 273 msgstr "" 251 274 252 #: includes/class-getpaid-stripe-admin.php:3 36275 #: includes/class-getpaid-stripe-admin.php:352 253 276 msgid "" 254 277 "Events to send are charge.refunded, checkout.session.completed, customer." … … 260 283 msgstr "" 261 284 262 #: includes/class-getpaid-stripe-admin.php:3 46285 #: includes/class-getpaid-stripe-admin.php:362 263 286 msgid "Disable Update Card Details" 264 287 msgstr "" 265 288 266 #: includes/class-getpaid-stripe-admin.php:3 47289 #: includes/class-getpaid-stripe-admin.php:363 267 290 msgid "" 268 291 "Tick to prevent customers from updating their payment card details on the " … … 289 312 msgstr "" 290 313 291 #: includes/class-getpaid-stripe-gateway.php:129 314 #: includes/class-getpaid-stripe-gateway.php:92 315 msgid "Payment method updated successfully." 316 msgstr "" 317 318 #: includes/class-getpaid-stripe-gateway.php:146 292 319 msgid "An unknown error occurred. Please try again." 293 320 msgstr "" 294 321 295 #: includes/class-getpaid-stripe-gateway.php:1 48322 #: includes/class-getpaid-stripe-gateway.php:165 296 323 msgid "Stripe not set-up" 297 324 msgstr "" 298 325 299 #: includes/class-getpaid-stripe-gateway.php:1 49326 #: includes/class-getpaid-stripe-gateway.php:166 300 327 msgid "" 301 328 "Please ensure that you have setup your Stripe publishable and secret keys in " … … 304 331 msgstr "" 305 332 306 #: includes/class-getpaid-stripe-gateway.php:1 76333 #: includes/class-getpaid-stripe-gateway.php:193 307 334 #: includes/update-card-modal.php:38 308 335 msgid "Stripe gateway requires HTTPS connection for live transactions." 309 336 msgstr "" 310 337 311 #: includes/class-getpaid-stripe-gateway.php:2 08338 #: includes/class-getpaid-stripe-gateway.php:225 312 339 #, php-format 313 340 msgid "" … … 315 342 msgstr "" 316 343 317 #: includes/class-getpaid-stripe-gateway.php:2 20344 #: includes/class-getpaid-stripe-gateway.php:237 318 345 #, php-format 319 346 msgid "" … … 321 348 msgstr "" 322 349 323 #: includes/class-getpaid-stripe-gateway.php:2 44324 #: includes/class-getpaid-stripe-gateway.php: 394350 #: includes/class-getpaid-stripe-gateway.php:261 351 #: includes/class-getpaid-stripe-gateway.php:411 325 352 #, php-format 326 353 msgid "Stripe Payment Intent ID: %s" 327 354 msgstr "" 328 355 329 #: includes/class-getpaid-stripe-gateway.php: 390356 #: includes/class-getpaid-stripe-gateway.php:407 330 357 #: includes/class-getpaid-stripe-ipn-handler.php:244 331 358 #: includes/class-getpaid-stripe-subscription.php:309 … … 334 361 msgstr "" 335 362 336 #: includes/class-getpaid-stripe-gateway.php: 494337 msgid " Payment method update successful."338 msgstr "" 339 340 #: includes/class-getpaid-stripe-gateway.php: 690363 #: includes/class-getpaid-stripe-gateway.php:507 364 msgid "Invalid subscription." 365 msgstr "" 366 367 #: includes/class-getpaid-stripe-gateway.php:714 341 368 msgid "We are sorry. There was an error processing your payment." 342 369 msgstr "" 343 370 344 #: includes/class-getpaid-stripe-gateway.php:7 26345 #: includes/class-getpaid-stripe-gateway.php:7 27371 #: includes/class-getpaid-stripe-gateway.php:750 372 #: includes/class-getpaid-stripe-gateway.php:751 346 373 msgid "You have not set-up your stripe secret key." 347 374 msgstr "" 348 375 349 #: includes/class-getpaid-stripe-gateway.php:7 73376 #: includes/class-getpaid-stripe-gateway.php:797 350 377 msgid "" 351 378 "( See: <a href=\"https://stripe.com/docs/currencies\" " … … 353 380 msgstr "" 354 381 355 #: includes/class-getpaid-stripe-gateway.php: 785382 #: includes/class-getpaid-stripe-gateway.php:809 356 383 #, php-format 357 384 msgid "" … … 360 387 msgstr "" 361 388 362 #: includes/class-getpaid-stripe-gateway.php:8 25389 #: includes/class-getpaid-stripe-gateway.php:849 363 390 msgid "Update Payment Card" 364 391 msgstr "" 365 392 366 #: includes/class-getpaid-stripe-gateway.php:9 08393 #: includes/class-getpaid-stripe-gateway.php:932 367 394 #, php-format 368 395 msgid "An error occurred while trying to cancel subscription #%s in Stripe." 369 396 msgstr "" 370 397 371 #: includes/class-getpaid-stripe-gateway.php:9 25398 #: includes/class-getpaid-stripe-gateway.php:949 372 399 #, php-format 373 400 msgid "Successfully cancelled subscription #%s in Stripe." 374 401 msgstr "" 375 402 376 #: includes/class-getpaid-stripe-gateway.php:9 53403 #: includes/class-getpaid-stripe-gateway.php:977 377 404 #, php-format 378 405 msgid "An error occurred while trying to refund invoice #%1$s in Stripe: %2$s" 379 406 msgstr "" 380 407 381 #: includes/class-getpaid-stripe-gateway.php:9 62408 #: includes/class-getpaid-stripe-gateway.php:986 382 409 #, php-format 383 410 msgid "Successfully refunded invoice #%1$s in Stripe. Refund ID: %2$s" 384 411 msgstr "" 385 412 386 #: includes/class-getpaid-stripe-gateway.php: 991413 #: includes/class-getpaid-stripe-gateway.php:1015 387 414 msgid "Stripe requires HTTPS connection for live transactions." 388 415 msgstr "" 389 416 390 #: includes/class-getpaid-stripe-gateway.php:1 091417 #: includes/class-getpaid-stripe-gateway.php:1115 391 418 msgid "Successfully connected your test Stripe account" 392 419 msgstr "" 393 420 394 #: includes/class-getpaid-stripe-gateway.php:1 097421 #: includes/class-getpaid-stripe-gateway.php:1121 395 422 msgid "Successfully connected your live Stripe account" 396 423 msgstr "" 397 424 398 #: includes/class-getpaid-stripe-gateway.php:11 23425 #: includes/class-getpaid-stripe-gateway.php:1147 399 426 msgid "Successfully disconnected your live Stripe account" 400 427 msgstr "" 401 428 402 #: includes/class-getpaid-stripe-gateway.php:11 31429 #: includes/class-getpaid-stripe-gateway.php:1155 403 430 msgid "Successfully disconnected your test Stripe account" 404 431 msgstr "" 405 432 406 #: includes/class-getpaid-stripe-gateway.php:11 59433 #: includes/class-getpaid-stripe-gateway.php:1183 407 434 msgid "Renewal Payment Failed (Stripe)" 408 435 msgstr "" 409 436 410 #: includes/class-getpaid-stripe-gateway.php:11 60437 #: includes/class-getpaid-stripe-gateway.php:1184 411 438 msgid "These emails are sent to the customer when a renewal payment fails." 412 439 msgstr "" 413 440 414 #: includes/class-getpaid-stripe-gateway.php:11 66441 #: includes/class-getpaid-stripe-gateway.php:1190 415 442 msgid "Enable/Disable" 416 443 msgstr "" 417 444 418 #: includes/class-getpaid-stripe-gateway.php:11 67445 #: includes/class-getpaid-stripe-gateway.php:1191 419 446 msgid "Enable this email notification" 420 447 msgstr "" 421 448 422 #: includes/class-getpaid-stripe-gateway.php:11 74449 #: includes/class-getpaid-stripe-gateway.php:1198 423 450 msgid "Enable Admin BCC" 424 451 msgstr "" 425 452 426 #: includes/class-getpaid-stripe-gateway.php:11 75453 #: includes/class-getpaid-stripe-gateway.php:1199 427 454 msgid "" 428 455 "Check if you want to send a copy of this notification email to to the site " … … 430 457 msgstr "" 431 458 432 #: includes/class-getpaid-stripe-gateway.php:1 182459 #: includes/class-getpaid-stripe-gateway.php:1206 433 460 msgid "Subject" 434 461 msgstr "" 435 462 436 #: includes/class-getpaid-stripe-gateway.php:1 183463 #: includes/class-getpaid-stripe-gateway.php:1207 437 464 msgid "Enter the subject line for this email." 438 465 msgstr "" 439 466 440 #: includes/class-getpaid-stripe-gateway.php:1 186467 #: includes/class-getpaid-stripe-gateway.php:1210 441 468 msgid "[{site_title}] Payment Failed" 442 469 msgstr "" 443 470 444 #: includes/class-getpaid-stripe-gateway.php:1 192471 #: includes/class-getpaid-stripe-gateway.php:1216 445 472 msgid "Email Heading" 446 473 msgstr "" 447 474 448 #: includes/class-getpaid-stripe-gateway.php:1 193475 #: includes/class-getpaid-stripe-gateway.php:1217 449 476 msgid "Enter the main heading contained within the email notification." 450 477 msgstr "" 451 478 452 #: includes/class-getpaid-stripe-gateway.php:1 196479 #: includes/class-getpaid-stripe-gateway.php:1220 453 480 msgid "Payment Failed" 454 481 msgstr "" 455 482 456 #: includes/class-getpaid-stripe-gateway.php:12 02483 #: includes/class-getpaid-stripe-gateway.php:1226 457 484 msgid "Email Content" 458 485 msgstr "" 459 486 460 #: includes/class-getpaid-stripe-gateway.php:12 05487 #: includes/class-getpaid-stripe-gateway.php:1229 461 488 msgid "" 462 489 "<p>Hi {name},</p><p>We are having trouble processing your payment. <a " … … 465 492 msgstr "" 466 493 467 #: includes/class-getpaid-stripe-gateway.php:1 289494 #: includes/class-getpaid-stripe-gateway.php:1313 468 495 msgid "Check Expired Subscriptions (Stripe)" 469 496 msgstr "" 470 497 471 #: includes/class-getpaid-stripe-gateway.php:1 291498 #: includes/class-getpaid-stripe-gateway.php:1315 472 499 msgid "Checks if expired subscriptions are actually expired in Stripe." 473 500 msgstr "" 474 501 475 #: includes/class-getpaid-stripe-gateway.php:13 04476 #: includes/class-getpaid-stripe-gateway.php:13 15502 #: includes/class-getpaid-stripe-gateway.php:1328 503 #: includes/class-getpaid-stripe-gateway.php:1339 477 504 msgid "Run" 478 505 msgstr "" 479 506 480 #: includes/class-getpaid-stripe-gateway.php:13 09481 #: includes/class-getpaid-stripe-gateway.php:13 37507 #: includes/class-getpaid-stripe-gateway.php:1333 508 #: includes/class-getpaid-stripe-gateway.php:1361 482 509 msgid "Process past event (Stripe)" 483 510 msgstr "" 484 511 485 #: includes/class-getpaid-stripe-gateway.php:13 11512 #: includes/class-getpaid-stripe-gateway.php:1335 486 513 msgid "Manually process any Stripe event that occurred in the last 30 days." 487 514 msgstr "" 488 515 489 #: includes/class-getpaid-stripe-gateway.php:13 38516 #: includes/class-getpaid-stripe-gateway.php:1362 490 517 #: includes/update-card-modal.php:18 491 518 msgid "Close" 492 519 msgstr "" 493 520 494 #: includes/class-getpaid-stripe-gateway.php:13 55521 #: includes/class-getpaid-stripe-gateway.php:1379 495 522 msgid "Event ID" 496 523 msgstr "" 497 524 498 #: includes/class-getpaid-stripe-gateway.php:13 56525 #: includes/class-getpaid-stripe-gateway.php:1380 499 526 msgid "For example, evt_3OPLyuIbYxW2G9BD07LRNDds" 500 527 msgstr "" 501 528 502 #: includes/class-getpaid-stripe-gateway.php:13 58529 #: includes/class-getpaid-stripe-gateway.php:1382 503 530 msgid "" 504 531 "Open your Stripe dashboard and then click on Developers > Events. Click on " … … 507 534 msgstr "" 508 535 509 #: includes/class-getpaid-stripe-gateway.php:13 60536 #: includes/class-getpaid-stripe-gateway.php:1384 510 537 msgid "The event ID must start with evt_." 511 538 msgstr "" 512 539 513 #: includes/class-getpaid-stripe-gateway.php:1 378540 #: includes/class-getpaid-stripe-gateway.php:1402 514 541 #: includes/update-card-modal.php:49 515 542 msgid "Cancel" 516 543 msgstr "" 517 544 518 #: includes/class-getpaid-stripe-gateway.php:1 379545 #: includes/class-getpaid-stripe-gateway.php:1403 519 546 msgid "Process" 520 547 msgstr "" 521 548 522 #: includes/class-getpaid-stripe-gateway.php:14 23549 #: includes/class-getpaid-stripe-gateway.php:1447 523 550 msgid "Your subscriptions have been checked." 524 551 msgstr "" … … 597 624 msgstr "" 598 625 599 #: includes/stripe-functions.php:50600 msgid "Auto"601 msgstr ""602 603 626 #: includes/stripe-functions.php:51 604 627 msgid "Arabic" -
getpaid-stripe-payments/tags/2.3.23/languages/wpinv-stripe.pot
r3423102 r3465172 2 2 msgid "" 3 3 msgstr "" 4 "Project-Id-Version: GetPaid Stripe Payments 2.3.2 2\n"4 "Project-Id-Version: GetPaid Stripe Payments 2.3.23\n" 5 5 "Report-Msgid-Bugs-To: \n" 6 "POT-Creation-Date: 202 5-12-18 21:30+0530\n"6 "POT-Creation-Date: 2026-02-19 19:44+0530\n" 7 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 238 238 239 239 #: includes/class-getpaid-stripe-admin.php:334 240 msgid "Stripe Checkout Language" 241 msgstr "" 242 243 #: includes/class-getpaid-stripe-admin.php:335 244 msgid "" 245 "Select language to display Stripe checkout popup. \"Auto\": Display Checkout " 246 "in the user's preferred language, if available. English will be used by " 247 "default. \"Site Language\": Display Checkout in site language." 248 msgstr "" 249 250 #: includes/class-getpaid-stripe-admin.php:338 includes/stripe-functions.php:50 251 msgid "Auto" 252 msgstr "" 253 254 #: includes/class-getpaid-stripe-admin.php:339 255 msgid "Site Language" 256 msgstr "" 257 258 #: includes/class-getpaid-stripe-admin.php:343 259 msgid "Select a locale" 260 msgstr "" 261 262 #: includes/class-getpaid-stripe-admin.php:350 240 263 msgid "Stripe Webhook URL" 241 264 msgstr "" 242 265 243 #: includes/class-getpaid-stripe-admin.php:3 36266 #: includes/class-getpaid-stripe-admin.php:352 244 267 #, php-format 245 268 msgid "" … … 249 272 msgstr "" 250 273 251 #: includes/class-getpaid-stripe-admin.php:3 36274 #: includes/class-getpaid-stripe-admin.php:352 252 275 msgid "" 253 276 "Events to send are charge.refunded, checkout.session.completed, customer." … … 259 282 msgstr "" 260 283 261 #: includes/class-getpaid-stripe-admin.php:3 46284 #: includes/class-getpaid-stripe-admin.php:362 262 285 msgid "Disable Update Card Details" 263 286 msgstr "" 264 287 265 #: includes/class-getpaid-stripe-admin.php:3 47288 #: includes/class-getpaid-stripe-admin.php:363 266 289 msgid "" 267 290 "Tick to prevent customers from updating their payment card details on the " … … 288 311 msgstr "" 289 312 290 #: includes/class-getpaid-stripe-gateway.php:129 313 #: includes/class-getpaid-stripe-gateway.php:92 314 msgid "Payment method updated successfully." 315 msgstr "" 316 317 #: includes/class-getpaid-stripe-gateway.php:146 291 318 msgid "An unknown error occurred. Please try again." 292 319 msgstr "" 293 320 294 #: includes/class-getpaid-stripe-gateway.php:1 48321 #: includes/class-getpaid-stripe-gateway.php:165 295 322 msgid "Stripe not set-up" 296 323 msgstr "" 297 324 298 #: includes/class-getpaid-stripe-gateway.php:1 49325 #: includes/class-getpaid-stripe-gateway.php:166 299 326 msgid "" 300 327 "Please ensure that you have setup your Stripe publishable and secret keys in " … … 303 330 msgstr "" 304 331 305 #: includes/class-getpaid-stripe-gateway.php:1 76332 #: includes/class-getpaid-stripe-gateway.php:193 306 333 #: includes/update-card-modal.php:38 307 334 msgid "Stripe gateway requires HTTPS connection for live transactions." 308 335 msgstr "" 309 336 310 #: includes/class-getpaid-stripe-gateway.php:2 08337 #: includes/class-getpaid-stripe-gateway.php:225 311 338 #, php-format 312 339 msgid "" … … 314 341 msgstr "" 315 342 316 #: includes/class-getpaid-stripe-gateway.php:2 20343 #: includes/class-getpaid-stripe-gateway.php:237 317 344 #, php-format 318 345 msgid "" … … 320 347 msgstr "" 321 348 322 #: includes/class-getpaid-stripe-gateway.php:2 44323 #: includes/class-getpaid-stripe-gateway.php: 394349 #: includes/class-getpaid-stripe-gateway.php:261 350 #: includes/class-getpaid-stripe-gateway.php:411 324 351 #, php-format 325 352 msgid "Stripe Payment Intent ID: %s" 326 353 msgstr "" 327 354 328 #: includes/class-getpaid-stripe-gateway.php: 390355 #: includes/class-getpaid-stripe-gateway.php:407 329 356 #: includes/class-getpaid-stripe-ipn-handler.php:244 330 357 #: includes/class-getpaid-stripe-subscription.php:309 … … 333 360 msgstr "" 334 361 335 #: includes/class-getpaid-stripe-gateway.php: 494336 msgid " Payment method update successful."337 msgstr "" 338 339 #: includes/class-getpaid-stripe-gateway.php: 690362 #: includes/class-getpaid-stripe-gateway.php:507 363 msgid "Invalid subscription." 364 msgstr "" 365 366 #: includes/class-getpaid-stripe-gateway.php:714 340 367 msgid "We are sorry. There was an error processing your payment." 341 368 msgstr "" 342 369 343 #: includes/class-getpaid-stripe-gateway.php:7 26344 #: includes/class-getpaid-stripe-gateway.php:7 27370 #: includes/class-getpaid-stripe-gateway.php:750 371 #: includes/class-getpaid-stripe-gateway.php:751 345 372 msgid "You have not set-up your stripe secret key." 346 373 msgstr "" 347 374 348 #: includes/class-getpaid-stripe-gateway.php:7 73375 #: includes/class-getpaid-stripe-gateway.php:797 349 376 msgid "" 350 377 "( See: <a href=\"https://stripe.com/docs/currencies\" " … … 352 379 msgstr "" 353 380 354 #: includes/class-getpaid-stripe-gateway.php: 785381 #: includes/class-getpaid-stripe-gateway.php:809 355 382 #, php-format 356 383 msgid "" … … 359 386 msgstr "" 360 387 361 #: includes/class-getpaid-stripe-gateway.php:8 25388 #: includes/class-getpaid-stripe-gateway.php:849 362 389 msgid "Update Payment Card" 363 390 msgstr "" 364 391 365 #: includes/class-getpaid-stripe-gateway.php:9 08392 #: includes/class-getpaid-stripe-gateway.php:932 366 393 #, php-format 367 394 msgid "An error occurred while trying to cancel subscription #%s in Stripe." 368 395 msgstr "" 369 396 370 #: includes/class-getpaid-stripe-gateway.php:9 25397 #: includes/class-getpaid-stripe-gateway.php:949 371 398 #, php-format 372 399 msgid "Successfully cancelled subscription #%s in Stripe." 373 400 msgstr "" 374 401 375 #: includes/class-getpaid-stripe-gateway.php:9 53402 #: includes/class-getpaid-stripe-gateway.php:977 376 403 #, php-format 377 404 msgid "An error occurred while trying to refund invoice #%1$s in Stripe: %2$s" 378 405 msgstr "" 379 406 380 #: includes/class-getpaid-stripe-gateway.php:9 62407 #: includes/class-getpaid-stripe-gateway.php:986 381 408 #, php-format 382 409 msgid "Successfully refunded invoice #%1$s in Stripe. Refund ID: %2$s" 383 410 msgstr "" 384 411 385 #: includes/class-getpaid-stripe-gateway.php: 991412 #: includes/class-getpaid-stripe-gateway.php:1015 386 413 msgid "Stripe requires HTTPS connection for live transactions." 387 414 msgstr "" 388 415 389 #: includes/class-getpaid-stripe-gateway.php:1 091416 #: includes/class-getpaid-stripe-gateway.php:1115 390 417 msgid "Successfully connected your test Stripe account" 391 418 msgstr "" 392 419 393 #: includes/class-getpaid-stripe-gateway.php:1 097420 #: includes/class-getpaid-stripe-gateway.php:1121 394 421 msgid "Successfully connected your live Stripe account" 395 422 msgstr "" 396 423 397 #: includes/class-getpaid-stripe-gateway.php:11 23424 #: includes/class-getpaid-stripe-gateway.php:1147 398 425 msgid "Successfully disconnected your live Stripe account" 399 426 msgstr "" 400 427 401 #: includes/class-getpaid-stripe-gateway.php:11 31428 #: includes/class-getpaid-stripe-gateway.php:1155 402 429 msgid "Successfully disconnected your test Stripe account" 403 430 msgstr "" 404 431 405 #: includes/class-getpaid-stripe-gateway.php:11 59432 #: includes/class-getpaid-stripe-gateway.php:1183 406 433 msgid "Renewal Payment Failed (Stripe)" 407 434 msgstr "" 408 435 409 #: includes/class-getpaid-stripe-gateway.php:11 60436 #: includes/class-getpaid-stripe-gateway.php:1184 410 437 msgid "These emails are sent to the customer when a renewal payment fails." 411 438 msgstr "" 412 439 413 #: includes/class-getpaid-stripe-gateway.php:11 66440 #: includes/class-getpaid-stripe-gateway.php:1190 414 441 msgid "Enable/Disable" 415 442 msgstr "" 416 443 417 #: includes/class-getpaid-stripe-gateway.php:11 67444 #: includes/class-getpaid-stripe-gateway.php:1191 418 445 msgid "Enable this email notification" 419 446 msgstr "" 420 447 421 #: includes/class-getpaid-stripe-gateway.php:11 74448 #: includes/class-getpaid-stripe-gateway.php:1198 422 449 msgid "Enable Admin BCC" 423 450 msgstr "" 424 451 425 #: includes/class-getpaid-stripe-gateway.php:11 75452 #: includes/class-getpaid-stripe-gateway.php:1199 426 453 msgid "" 427 454 "Check if you want to send a copy of this notification email to to the site " … … 429 456 msgstr "" 430 457 431 #: includes/class-getpaid-stripe-gateway.php:1 182458 #: includes/class-getpaid-stripe-gateway.php:1206 432 459 msgid "Subject" 433 460 msgstr "" 434 461 435 #: includes/class-getpaid-stripe-gateway.php:1 183462 #: includes/class-getpaid-stripe-gateway.php:1207 436 463 msgid "Enter the subject line for this email." 437 464 msgstr "" 438 465 439 #: includes/class-getpaid-stripe-gateway.php:1 186466 #: includes/class-getpaid-stripe-gateway.php:1210 440 467 msgid "[{site_title}] Payment Failed" 441 468 msgstr "" 442 469 443 #: includes/class-getpaid-stripe-gateway.php:1 192470 #: includes/class-getpaid-stripe-gateway.php:1216 444 471 msgid "Email Heading" 445 472 msgstr "" 446 473 447 #: includes/class-getpaid-stripe-gateway.php:1 193474 #: includes/class-getpaid-stripe-gateway.php:1217 448 475 msgid "Enter the main heading contained within the email notification." 449 476 msgstr "" 450 477 451 #: includes/class-getpaid-stripe-gateway.php:1 196478 #: includes/class-getpaid-stripe-gateway.php:1220 452 479 msgid "Payment Failed" 453 480 msgstr "" 454 481 455 #: includes/class-getpaid-stripe-gateway.php:12 02482 #: includes/class-getpaid-stripe-gateway.php:1226 456 483 msgid "Email Content" 457 484 msgstr "" 458 485 459 #: includes/class-getpaid-stripe-gateway.php:12 05486 #: includes/class-getpaid-stripe-gateway.php:1229 460 487 msgid "" 461 488 "<p>Hi {name},</p><p>We are having trouble processing your payment. <a " … … 464 491 msgstr "" 465 492 466 #: includes/class-getpaid-stripe-gateway.php:1 289493 #: includes/class-getpaid-stripe-gateway.php:1313 467 494 msgid "Check Expired Subscriptions (Stripe)" 468 495 msgstr "" 469 496 470 #: includes/class-getpaid-stripe-gateway.php:1 291497 #: includes/class-getpaid-stripe-gateway.php:1315 471 498 msgid "Checks if expired subscriptions are actually expired in Stripe." 472 499 msgstr "" 473 500 474 #: includes/class-getpaid-stripe-gateway.php:13 04475 #: includes/class-getpaid-stripe-gateway.php:13 15501 #: includes/class-getpaid-stripe-gateway.php:1328 502 #: includes/class-getpaid-stripe-gateway.php:1339 476 503 msgid "Run" 477 504 msgstr "" 478 505 479 #: includes/class-getpaid-stripe-gateway.php:13 09480 #: includes/class-getpaid-stripe-gateway.php:13 37506 #: includes/class-getpaid-stripe-gateway.php:1333 507 #: includes/class-getpaid-stripe-gateway.php:1361 481 508 msgid "Process past event (Stripe)" 482 509 msgstr "" 483 510 484 #: includes/class-getpaid-stripe-gateway.php:13 11511 #: includes/class-getpaid-stripe-gateway.php:1335 485 512 msgid "Manually process any Stripe event that occurred in the last 30 days." 486 513 msgstr "" 487 514 488 #: includes/class-getpaid-stripe-gateway.php:13 38515 #: includes/class-getpaid-stripe-gateway.php:1362 489 516 #: includes/update-card-modal.php:18 490 517 msgid "Close" 491 518 msgstr "" 492 519 493 #: includes/class-getpaid-stripe-gateway.php:13 55520 #: includes/class-getpaid-stripe-gateway.php:1379 494 521 msgid "Event ID" 495 522 msgstr "" 496 523 497 #: includes/class-getpaid-stripe-gateway.php:13 56524 #: includes/class-getpaid-stripe-gateway.php:1380 498 525 msgid "For example, evt_3OPLyuIbYxW2G9BD07LRNDds" 499 526 msgstr "" 500 527 501 #: includes/class-getpaid-stripe-gateway.php:13 58528 #: includes/class-getpaid-stripe-gateway.php:1382 502 529 msgid "" 503 530 "Open your Stripe dashboard and then click on Developers > Events. Click on " … … 506 533 msgstr "" 507 534 508 #: includes/class-getpaid-stripe-gateway.php:13 60535 #: includes/class-getpaid-stripe-gateway.php:1384 509 536 msgid "The event ID must start with evt_." 510 537 msgstr "" 511 538 512 #: includes/class-getpaid-stripe-gateway.php:1 378539 #: includes/class-getpaid-stripe-gateway.php:1402 513 540 #: includes/update-card-modal.php:49 514 541 msgid "Cancel" 515 542 msgstr "" 516 543 517 #: includes/class-getpaid-stripe-gateway.php:1 379544 #: includes/class-getpaid-stripe-gateway.php:1403 518 545 msgid "Process" 519 546 msgstr "" 520 547 521 #: includes/class-getpaid-stripe-gateway.php:14 23548 #: includes/class-getpaid-stripe-gateway.php:1447 522 549 msgid "Your subscriptions have been checked." 523 550 msgstr "" … … 596 623 msgstr "" 597 624 598 #: includes/stripe-functions.php:50599 msgid "Auto"600 msgstr ""601 602 625 #: includes/stripe-functions.php:51 603 626 msgid "Arabic" -
getpaid-stripe-payments/tags/2.3.23/readme.txt
r3423102 r3465172 5 5 Requires at least: 5.0 6 6 Tested up to: 6.9 7 Stable tag: 2.3.2 27 Stable tag: 2.3.23 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 67 67 68 68 == Changelog == 69 70 = 2.3.23 - 2026-02-19 = 71 * Display success message after updating card details - FIXED 72 * Added jQuery hooks for customizing Stripe Elements options - ADDED 73 * Allow option to set custom locale for checkout - ADDED 69 74 70 75 = 2.3.22 - 2025-12-18 = -
getpaid-stripe-payments/trunk/assets/js/wpinv-stripe.js
r2925724 r3465172 9 9 // Create a Stripe client. 10 10 var stripe = Stripe( GetPaid_Stripe.stripePublishableKey ); 11 12 /** 13 * Hook system for customizing Stripe Elements options. 14 * 15 * Use jQuery events to filter options: 16 * - 'getpaid_stripe_filter_elements_options': Filter stripe.elements() options 17 * - 'getpaid_stripe_filter_payment_element_options': Filter elements.create('payment') options 18 * 19 * Example: Restrict countries to Australia only 20 * jQuery( document ).on( 'getpaid_stripe_filter_payment_element_options', function( e, options, form ) { 21 * options.fields = options.fields || {}; 22 * options.fields.billingDetails = options.fields.billingDetails || {}; 23 * options.fields.billingDetails.address = options.fields.billingDetails.address || {}; 24 * options.fields.billingDetails.address.country = 'never'; 25 * options.defaultValues = options.defaultValues || {}; 26 * options.defaultValues.billingDetails = options.defaultValues.billingDetails || {}; 27 * options.defaultValues.billingDetails.address = options.defaultValues.billingDetails.address || {}; 28 * options.defaultValues.billingDetails.address.country = 'AU'; 29 * }); 30 */ 11 31 12 32 // Set-up forms. … … 41 61 42 62 // Create an instance of Elements. 43 var elements = stripe.elements({ clientSecret: form_state ? form_state.stripe_payment_intent_secret : '' }); 63 var elementsOptions = { clientSecret: (form_state ? form_state.stripe_payment_intent_secret : ''), locale: GetPaid_Stripe.locale }; 64 $( 'body' ).trigger( 'getpaid_stripe_filter_elements_options', [ elementsOptions, form ] ); 65 var elements = stripe.elements( elementsOptions ); 44 66 45 67 // Create a payment element. 46 var element = elements.create( 'payment' ); 68 var paymentElementOptions = {}; 69 $( 'body' ).trigger( 'getpaid_stripe_filter_payment_element_options', [ paymentElementOptions, form ] ); 70 var element = elements.create( 'payment', paymentElementOptions ); 47 71 48 72 // Mount the element. … … 178 202 179 203 // Create an instance of Elements. 180 updateModalElements = stripe.elements({ clientSecret: $( this ).data( 'intent' ) }); 204 var updateElementsOptions = { clientSecret: $( this ).data( 'intent' ), locale: GetPaid_Stripe.locale }; 205 $( 'body' ).trigger( 'getpaid_stripe_filter_elements_options', [ updateElementsOptions, $( '#getpaid-stripe-update-payment-modal' ) ] ); 206 updateModalElements = stripe.elements( updateElementsOptions ); 181 207 182 208 // Create a payment element. 183 updateModalElement = updateModalElements.create( 'payment' ); 209 var updatePaymentElementOptions = {}; 210 $( 'body' ).trigger( 'getpaid_stripe_filter_payment_element_options', [ updatePaymentElementOptions, $( '#getpaid-stripe-update-payment-modal' ) ] ); 211 updateModalElement = updateModalElements.create( 'payment', updatePaymentElementOptions ); 184 212 185 213 // Mount the element. -
getpaid-stripe-payments/trunk/getpaid-stripe-payments.php
r3423102 r3465172 13 13 * Plugin URI: https://wpgetpaid.com/downloads/stripe-payment-gateway/ 14 14 * Description: Stripe payment gateway for Invoicing/GetPaid plugin. 15 * Version: 2.3.2 215 * Version: 2.3.23 16 16 * Author: AyeCode Ltd 17 17 * Author URI: https://wpgetpaid.com/ … … 29 29 30 30 if ( ! defined( 'WPINV_STRIPE_VERSION' ) ) { 31 define( 'WPINV_STRIPE_VERSION', '2.3.2 2' );31 define( 'WPINV_STRIPE_VERSION', '2.3.23' ); 32 32 } 33 33 -
getpaid-stripe-payments/trunk/includes/class-getpaid-stripe-admin.php
r3359983 r3465172 329 329 ), 330 330 331 'stripe_locale' => array( 332 'id' => 'stripe_locale', 333 'type' => 'select', 334 'name' => __( 'Stripe Checkout Language', 'wpinv-stripe' ), 335 'desc' => __( 'Select language to display Stripe checkout popup. "Auto": Display Checkout in the user\'s preferred language, if available. English will be used by default. "Site Language": Display Checkout in site language.', 'wpinv-stripe' ), 336 'options' => array_merge( 337 array( 338 'auto' => __( 'Auto', 'wpinv-stripe' ), 339 'site' => __( 'Site Language', 'wpinv-stripe' ) 340 ), 341 wpinv_stripe_allowed_locales() 342 ), 343 'placeholder' => __( 'Select a locale', 'wpinv-stripe' ), 344 'std' => 'auto' 345 ), 346 331 347 'stripe_ipn_url' => array( 332 348 'type' => 'text', -
getpaid-stripe-payments/trunk/includes/class-getpaid-stripe-gateway.php
r3404181 r3465172 57 57 58 58 if ( $this->enabled ) { 59 add_filter( 'wpinv_errors', array( $this, 'register_notices' ) ); 59 60 add_filter( 'getpaid_stripe_sandbox_notice', array( $this, 'sandbox_notice' ) ); 60 61 add_action( 'getpaid_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); … … 80 81 81 82 /** 83 * Registers custom notices. 84 * 85 * @param array $notices The notices. 86 * @return array 87 */ 88 public function register_notices( $notices ) { 89 if ( isset( $_GET['wpinv-notice'] ) && 'wpinv_stripe_card_updated' === $_GET['wpinv-notice'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended 90 $notices['wpinv_stripe_card_updated'] = array( 91 'type' => 'success', 92 'text' => __( 'Payment method updated successfully.', 'wpinv-stripe' ), 93 ); 94 } 95 return $notices; 96 } 97 98 /** 82 99 * Checks if we should load Stripe.js globally. 83 100 * … … 461 478 if ( isset( $_GET['setup_intent'] ) && isset( $_GET['subscription'] ) ) { 462 479 $subscription = getpaid_get_subscription( absint( $_GET['subscription'] ) ); 463 $this->process_payment_method_update( $_GET['setup_intent'], $subscription ); 464 wp_safe_redirect( remove_query_arg( array( 'setup_intent', 'setup_intent_client_secret', 'redirect_status' ) ) ); 480 $result = $this->process_payment_method_update( $_GET['setup_intent'], $subscription ); 481 $redirect_url = remove_query_arg( array( 'setup_intent', 'setup_intent_client_secret', 'redirect_status' ) ); 482 483 if ( true === $result ) { 484 $redirect_url = add_query_arg( 'wpinv-notice', 'wpinv_stripe_card_updated', $redirect_url ); 485 } 486 487 wp_safe_redirect( $redirect_url ); 465 488 exit; 466 489 } … … 476 499 * @param string $setup_intent_id Payment intent ID. 477 500 * @param WPInv_Subscription|false $subscription The subscription. 501 * @return bool|WP_Error True on success, WP_Error on failure. 478 502 */ 479 503 public function process_payment_method_update( $setup_intent_id, $subscription ) { … … 481 505 // Abort if no subscription. 482 506 if ( empty( $subscription ) ) { 483 return ;507 return new WP_Error( 'invalid_subscription', __( 'Invalid subscription.', 'wpinv-stripe' ) ); 484 508 } 485 509 … … 491 515 if ( is_wp_error( $result ) ) { 492 516 wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); 493 } else {494 wpinv_set_error( 'wpinv_payment_success', __( 'Payment method update successful.', 'wpinv-stripe' ), 'success' );495 } 496 517 return $result; 518 } 519 520 return true; 497 521 } 498 522 -
getpaid-stripe-payments/trunk/languages/wpinv-stripe-en_US.po
r3423102 r3465172 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: GetPaid Stripe Payments 2.3.2 2\n"3 "Project-Id-Version: GetPaid Stripe Payments 2.3.23\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 202 5-12-18 21:30+0530\n"6 "PO-Revision-Date: 202 5-12-18 21:30+0530\n"5 "POT-Creation-Date: 2026-02-19 19:44+0530\n" 6 "PO-Revision-Date: 2026-02-19 19:44+0530\n" 7 7 "Last-Translator: AyeCode Ltd <[email protected]>\n" 8 8 "Language-Team: AyeCode Ltd <[email protected]>\n" … … 239 239 240 240 #: includes/class-getpaid-stripe-admin.php:334 241 msgid "Stripe Checkout Language" 242 msgstr "" 243 244 #: includes/class-getpaid-stripe-admin.php:335 245 msgid "" 246 "Select language to display Stripe checkout popup. \"Auto\": Display Checkout " 247 "in the user's preferred language, if available. English will be used by " 248 "default. \"Site Language\": Display Checkout in site language." 249 msgstr "" 250 251 #: includes/class-getpaid-stripe-admin.php:338 includes/stripe-functions.php:50 252 msgid "Auto" 253 msgstr "" 254 255 #: includes/class-getpaid-stripe-admin.php:339 256 msgid "Site Language" 257 msgstr "" 258 259 #: includes/class-getpaid-stripe-admin.php:343 260 msgid "Select a locale" 261 msgstr "" 262 263 #: includes/class-getpaid-stripe-admin.php:350 241 264 msgid "Stripe Webhook URL" 242 265 msgstr "" 243 266 244 #: includes/class-getpaid-stripe-admin.php:3 36267 #: includes/class-getpaid-stripe-admin.php:352 245 268 #, php-format 246 269 msgid "" … … 250 273 msgstr "" 251 274 252 #: includes/class-getpaid-stripe-admin.php:3 36275 #: includes/class-getpaid-stripe-admin.php:352 253 276 msgid "" 254 277 "Events to send are charge.refunded, checkout.session.completed, customer." … … 260 283 msgstr "" 261 284 262 #: includes/class-getpaid-stripe-admin.php:3 46285 #: includes/class-getpaid-stripe-admin.php:362 263 286 msgid "Disable Update Card Details" 264 287 msgstr "" 265 288 266 #: includes/class-getpaid-stripe-admin.php:3 47289 #: includes/class-getpaid-stripe-admin.php:363 267 290 msgid "" 268 291 "Tick to prevent customers from updating their payment card details on the " … … 289 312 msgstr "" 290 313 291 #: includes/class-getpaid-stripe-gateway.php:129 314 #: includes/class-getpaid-stripe-gateway.php:92 315 msgid "Payment method updated successfully." 316 msgstr "" 317 318 #: includes/class-getpaid-stripe-gateway.php:146 292 319 msgid "An unknown error occurred. Please try again." 293 320 msgstr "" 294 321 295 #: includes/class-getpaid-stripe-gateway.php:1 48322 #: includes/class-getpaid-stripe-gateway.php:165 296 323 msgid "Stripe not set-up" 297 324 msgstr "" 298 325 299 #: includes/class-getpaid-stripe-gateway.php:1 49326 #: includes/class-getpaid-stripe-gateway.php:166 300 327 msgid "" 301 328 "Please ensure that you have setup your Stripe publishable and secret keys in " … … 304 331 msgstr "" 305 332 306 #: includes/class-getpaid-stripe-gateway.php:1 76333 #: includes/class-getpaid-stripe-gateway.php:193 307 334 #: includes/update-card-modal.php:38 308 335 msgid "Stripe gateway requires HTTPS connection for live transactions." 309 336 msgstr "" 310 337 311 #: includes/class-getpaid-stripe-gateway.php:2 08338 #: includes/class-getpaid-stripe-gateway.php:225 312 339 #, php-format 313 340 msgid "" … … 315 342 msgstr "" 316 343 317 #: includes/class-getpaid-stripe-gateway.php:2 20344 #: includes/class-getpaid-stripe-gateway.php:237 318 345 #, php-format 319 346 msgid "" … … 321 348 msgstr "" 322 349 323 #: includes/class-getpaid-stripe-gateway.php:2 44324 #: includes/class-getpaid-stripe-gateway.php: 394350 #: includes/class-getpaid-stripe-gateway.php:261 351 #: includes/class-getpaid-stripe-gateway.php:411 325 352 #, php-format 326 353 msgid "Stripe Payment Intent ID: %s" 327 354 msgstr "" 328 355 329 #: includes/class-getpaid-stripe-gateway.php: 390356 #: includes/class-getpaid-stripe-gateway.php:407 330 357 #: includes/class-getpaid-stripe-ipn-handler.php:244 331 358 #: includes/class-getpaid-stripe-subscription.php:309 … … 334 361 msgstr "" 335 362 336 #: includes/class-getpaid-stripe-gateway.php: 494337 msgid " Payment method update successful."338 msgstr "" 339 340 #: includes/class-getpaid-stripe-gateway.php: 690363 #: includes/class-getpaid-stripe-gateway.php:507 364 msgid "Invalid subscription." 365 msgstr "" 366 367 #: includes/class-getpaid-stripe-gateway.php:714 341 368 msgid "We are sorry. There was an error processing your payment." 342 369 msgstr "" 343 370 344 #: includes/class-getpaid-stripe-gateway.php:7 26345 #: includes/class-getpaid-stripe-gateway.php:7 27371 #: includes/class-getpaid-stripe-gateway.php:750 372 #: includes/class-getpaid-stripe-gateway.php:751 346 373 msgid "You have not set-up your stripe secret key." 347 374 msgstr "" 348 375 349 #: includes/class-getpaid-stripe-gateway.php:7 73376 #: includes/class-getpaid-stripe-gateway.php:797 350 377 msgid "" 351 378 "( See: <a href=\"https://stripe.com/docs/currencies\" " … … 353 380 msgstr "" 354 381 355 #: includes/class-getpaid-stripe-gateway.php: 785382 #: includes/class-getpaid-stripe-gateway.php:809 356 383 #, php-format 357 384 msgid "" … … 360 387 msgstr "" 361 388 362 #: includes/class-getpaid-stripe-gateway.php:8 25389 #: includes/class-getpaid-stripe-gateway.php:849 363 390 msgid "Update Payment Card" 364 391 msgstr "" 365 392 366 #: includes/class-getpaid-stripe-gateway.php:9 08393 #: includes/class-getpaid-stripe-gateway.php:932 367 394 #, php-format 368 395 msgid "An error occurred while trying to cancel subscription #%s in Stripe." 369 396 msgstr "" 370 397 371 #: includes/class-getpaid-stripe-gateway.php:9 25398 #: includes/class-getpaid-stripe-gateway.php:949 372 399 #, php-format 373 400 msgid "Successfully cancelled subscription #%s in Stripe." 374 401 msgstr "" 375 402 376 #: includes/class-getpaid-stripe-gateway.php:9 53403 #: includes/class-getpaid-stripe-gateway.php:977 377 404 #, php-format 378 405 msgid "An error occurred while trying to refund invoice #%1$s in Stripe: %2$s" 379 406 msgstr "" 380 407 381 #: includes/class-getpaid-stripe-gateway.php:9 62408 #: includes/class-getpaid-stripe-gateway.php:986 382 409 #, php-format 383 410 msgid "Successfully refunded invoice #%1$s in Stripe. Refund ID: %2$s" 384 411 msgstr "" 385 412 386 #: includes/class-getpaid-stripe-gateway.php: 991413 #: includes/class-getpaid-stripe-gateway.php:1015 387 414 msgid "Stripe requires HTTPS connection for live transactions." 388 415 msgstr "" 389 416 390 #: includes/class-getpaid-stripe-gateway.php:1 091417 #: includes/class-getpaid-stripe-gateway.php:1115 391 418 msgid "Successfully connected your test Stripe account" 392 419 msgstr "" 393 420 394 #: includes/class-getpaid-stripe-gateway.php:1 097421 #: includes/class-getpaid-stripe-gateway.php:1121 395 422 msgid "Successfully connected your live Stripe account" 396 423 msgstr "" 397 424 398 #: includes/class-getpaid-stripe-gateway.php:11 23425 #: includes/class-getpaid-stripe-gateway.php:1147 399 426 msgid "Successfully disconnected your live Stripe account" 400 427 msgstr "" 401 428 402 #: includes/class-getpaid-stripe-gateway.php:11 31429 #: includes/class-getpaid-stripe-gateway.php:1155 403 430 msgid "Successfully disconnected your test Stripe account" 404 431 msgstr "" 405 432 406 #: includes/class-getpaid-stripe-gateway.php:11 59433 #: includes/class-getpaid-stripe-gateway.php:1183 407 434 msgid "Renewal Payment Failed (Stripe)" 408 435 msgstr "" 409 436 410 #: includes/class-getpaid-stripe-gateway.php:11 60437 #: includes/class-getpaid-stripe-gateway.php:1184 411 438 msgid "These emails are sent to the customer when a renewal payment fails." 412 439 msgstr "" 413 440 414 #: includes/class-getpaid-stripe-gateway.php:11 66441 #: includes/class-getpaid-stripe-gateway.php:1190 415 442 msgid "Enable/Disable" 416 443 msgstr "" 417 444 418 #: includes/class-getpaid-stripe-gateway.php:11 67445 #: includes/class-getpaid-stripe-gateway.php:1191 419 446 msgid "Enable this email notification" 420 447 msgstr "" 421 448 422 #: includes/class-getpaid-stripe-gateway.php:11 74449 #: includes/class-getpaid-stripe-gateway.php:1198 423 450 msgid "Enable Admin BCC" 424 451 msgstr "" 425 452 426 #: includes/class-getpaid-stripe-gateway.php:11 75453 #: includes/class-getpaid-stripe-gateway.php:1199 427 454 msgid "" 428 455 "Check if you want to send a copy of this notification email to to the site " … … 430 457 msgstr "" 431 458 432 #: includes/class-getpaid-stripe-gateway.php:1 182459 #: includes/class-getpaid-stripe-gateway.php:1206 433 460 msgid "Subject" 434 461 msgstr "" 435 462 436 #: includes/class-getpaid-stripe-gateway.php:1 183463 #: includes/class-getpaid-stripe-gateway.php:1207 437 464 msgid "Enter the subject line for this email." 438 465 msgstr "" 439 466 440 #: includes/class-getpaid-stripe-gateway.php:1 186467 #: includes/class-getpaid-stripe-gateway.php:1210 441 468 msgid "[{site_title}] Payment Failed" 442 469 msgstr "" 443 470 444 #: includes/class-getpaid-stripe-gateway.php:1 192471 #: includes/class-getpaid-stripe-gateway.php:1216 445 472 msgid "Email Heading" 446 473 msgstr "" 447 474 448 #: includes/class-getpaid-stripe-gateway.php:1 193475 #: includes/class-getpaid-stripe-gateway.php:1217 449 476 msgid "Enter the main heading contained within the email notification." 450 477 msgstr "" 451 478 452 #: includes/class-getpaid-stripe-gateway.php:1 196479 #: includes/class-getpaid-stripe-gateway.php:1220 453 480 msgid "Payment Failed" 454 481 msgstr "" 455 482 456 #: includes/class-getpaid-stripe-gateway.php:12 02483 #: includes/class-getpaid-stripe-gateway.php:1226 457 484 msgid "Email Content" 458 485 msgstr "" 459 486 460 #: includes/class-getpaid-stripe-gateway.php:12 05487 #: includes/class-getpaid-stripe-gateway.php:1229 461 488 msgid "" 462 489 "<p>Hi {name},</p><p>We are having trouble processing your payment. <a " … … 465 492 msgstr "" 466 493 467 #: includes/class-getpaid-stripe-gateway.php:1 289494 #: includes/class-getpaid-stripe-gateway.php:1313 468 495 msgid "Check Expired Subscriptions (Stripe)" 469 496 msgstr "" 470 497 471 #: includes/class-getpaid-stripe-gateway.php:1 291498 #: includes/class-getpaid-stripe-gateway.php:1315 472 499 msgid "Checks if expired subscriptions are actually expired in Stripe." 473 500 msgstr "" 474 501 475 #: includes/class-getpaid-stripe-gateway.php:13 04476 #: includes/class-getpaid-stripe-gateway.php:13 15502 #: includes/class-getpaid-stripe-gateway.php:1328 503 #: includes/class-getpaid-stripe-gateway.php:1339 477 504 msgid "Run" 478 505 msgstr "" 479 506 480 #: includes/class-getpaid-stripe-gateway.php:13 09481 #: includes/class-getpaid-stripe-gateway.php:13 37507 #: includes/class-getpaid-stripe-gateway.php:1333 508 #: includes/class-getpaid-stripe-gateway.php:1361 482 509 msgid "Process past event (Stripe)" 483 510 msgstr "" 484 511 485 #: includes/class-getpaid-stripe-gateway.php:13 11512 #: includes/class-getpaid-stripe-gateway.php:1335 486 513 msgid "Manually process any Stripe event that occurred in the last 30 days." 487 514 msgstr "" 488 515 489 #: includes/class-getpaid-stripe-gateway.php:13 38516 #: includes/class-getpaid-stripe-gateway.php:1362 490 517 #: includes/update-card-modal.php:18 491 518 msgid "Close" 492 519 msgstr "" 493 520 494 #: includes/class-getpaid-stripe-gateway.php:13 55521 #: includes/class-getpaid-stripe-gateway.php:1379 495 522 msgid "Event ID" 496 523 msgstr "" 497 524 498 #: includes/class-getpaid-stripe-gateway.php:13 56525 #: includes/class-getpaid-stripe-gateway.php:1380 499 526 msgid "For example, evt_3OPLyuIbYxW2G9BD07LRNDds" 500 527 msgstr "" 501 528 502 #: includes/class-getpaid-stripe-gateway.php:13 58529 #: includes/class-getpaid-stripe-gateway.php:1382 503 530 msgid "" 504 531 "Open your Stripe dashboard and then click on Developers > Events. Click on " … … 507 534 msgstr "" 508 535 509 #: includes/class-getpaid-stripe-gateway.php:13 60536 #: includes/class-getpaid-stripe-gateway.php:1384 510 537 msgid "The event ID must start with evt_." 511 538 msgstr "" 512 539 513 #: includes/class-getpaid-stripe-gateway.php:1 378540 #: includes/class-getpaid-stripe-gateway.php:1402 514 541 #: includes/update-card-modal.php:49 515 542 msgid "Cancel" 516 543 msgstr "" 517 544 518 #: includes/class-getpaid-stripe-gateway.php:1 379545 #: includes/class-getpaid-stripe-gateway.php:1403 519 546 msgid "Process" 520 547 msgstr "" 521 548 522 #: includes/class-getpaid-stripe-gateway.php:14 23549 #: includes/class-getpaid-stripe-gateway.php:1447 523 550 msgid "Your subscriptions have been checked." 524 551 msgstr "" … … 597 624 msgstr "" 598 625 599 #: includes/stripe-functions.php:50600 msgid "Auto"601 msgstr ""602 603 626 #: includes/stripe-functions.php:51 604 627 msgid "Arabic" -
getpaid-stripe-payments/trunk/languages/wpinv-stripe.pot
r3423102 r3465172 2 2 msgid "" 3 3 msgstr "" 4 "Project-Id-Version: GetPaid Stripe Payments 2.3.2 2\n"4 "Project-Id-Version: GetPaid Stripe Payments 2.3.23\n" 5 5 "Report-Msgid-Bugs-To: \n" 6 "POT-Creation-Date: 202 5-12-18 21:30+0530\n"6 "POT-Creation-Date: 2026-02-19 19:44+0530\n" 7 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 238 238 239 239 #: includes/class-getpaid-stripe-admin.php:334 240 msgid "Stripe Checkout Language" 241 msgstr "" 242 243 #: includes/class-getpaid-stripe-admin.php:335 244 msgid "" 245 "Select language to display Stripe checkout popup. \"Auto\": Display Checkout " 246 "in the user's preferred language, if available. English will be used by " 247 "default. \"Site Language\": Display Checkout in site language." 248 msgstr "" 249 250 #: includes/class-getpaid-stripe-admin.php:338 includes/stripe-functions.php:50 251 msgid "Auto" 252 msgstr "" 253 254 #: includes/class-getpaid-stripe-admin.php:339 255 msgid "Site Language" 256 msgstr "" 257 258 #: includes/class-getpaid-stripe-admin.php:343 259 msgid "Select a locale" 260 msgstr "" 261 262 #: includes/class-getpaid-stripe-admin.php:350 240 263 msgid "Stripe Webhook URL" 241 264 msgstr "" 242 265 243 #: includes/class-getpaid-stripe-admin.php:3 36266 #: includes/class-getpaid-stripe-admin.php:352 244 267 #, php-format 245 268 msgid "" … … 249 272 msgstr "" 250 273 251 #: includes/class-getpaid-stripe-admin.php:3 36274 #: includes/class-getpaid-stripe-admin.php:352 252 275 msgid "" 253 276 "Events to send are charge.refunded, checkout.session.completed, customer." … … 259 282 msgstr "" 260 283 261 #: includes/class-getpaid-stripe-admin.php:3 46284 #: includes/class-getpaid-stripe-admin.php:362 262 285 msgid "Disable Update Card Details" 263 286 msgstr "" 264 287 265 #: includes/class-getpaid-stripe-admin.php:3 47288 #: includes/class-getpaid-stripe-admin.php:363 266 289 msgid "" 267 290 "Tick to prevent customers from updating their payment card details on the " … … 288 311 msgstr "" 289 312 290 #: includes/class-getpaid-stripe-gateway.php:129 313 #: includes/class-getpaid-stripe-gateway.php:92 314 msgid "Payment method updated successfully." 315 msgstr "" 316 317 #: includes/class-getpaid-stripe-gateway.php:146 291 318 msgid "An unknown error occurred. Please try again." 292 319 msgstr "" 293 320 294 #: includes/class-getpaid-stripe-gateway.php:1 48321 #: includes/class-getpaid-stripe-gateway.php:165 295 322 msgid "Stripe not set-up" 296 323 msgstr "" 297 324 298 #: includes/class-getpaid-stripe-gateway.php:1 49325 #: includes/class-getpaid-stripe-gateway.php:166 299 326 msgid "" 300 327 "Please ensure that you have setup your Stripe publishable and secret keys in " … … 303 330 msgstr "" 304 331 305 #: includes/class-getpaid-stripe-gateway.php:1 76332 #: includes/class-getpaid-stripe-gateway.php:193 306 333 #: includes/update-card-modal.php:38 307 334 msgid "Stripe gateway requires HTTPS connection for live transactions." 308 335 msgstr "" 309 336 310 #: includes/class-getpaid-stripe-gateway.php:2 08337 #: includes/class-getpaid-stripe-gateway.php:225 311 338 #, php-format 312 339 msgid "" … … 314 341 msgstr "" 315 342 316 #: includes/class-getpaid-stripe-gateway.php:2 20343 #: includes/class-getpaid-stripe-gateway.php:237 317 344 #, php-format 318 345 msgid "" … … 320 347 msgstr "" 321 348 322 #: includes/class-getpaid-stripe-gateway.php:2 44323 #: includes/class-getpaid-stripe-gateway.php: 394349 #: includes/class-getpaid-stripe-gateway.php:261 350 #: includes/class-getpaid-stripe-gateway.php:411 324 351 #, php-format 325 352 msgid "Stripe Payment Intent ID: %s" 326 353 msgstr "" 327 354 328 #: includes/class-getpaid-stripe-gateway.php: 390355 #: includes/class-getpaid-stripe-gateway.php:407 329 356 #: includes/class-getpaid-stripe-ipn-handler.php:244 330 357 #: includes/class-getpaid-stripe-subscription.php:309 … … 333 360 msgstr "" 334 361 335 #: includes/class-getpaid-stripe-gateway.php: 494336 msgid " Payment method update successful."337 msgstr "" 338 339 #: includes/class-getpaid-stripe-gateway.php: 690362 #: includes/class-getpaid-stripe-gateway.php:507 363 msgid "Invalid subscription." 364 msgstr "" 365 366 #: includes/class-getpaid-stripe-gateway.php:714 340 367 msgid "We are sorry. There was an error processing your payment." 341 368 msgstr "" 342 369 343 #: includes/class-getpaid-stripe-gateway.php:7 26344 #: includes/class-getpaid-stripe-gateway.php:7 27370 #: includes/class-getpaid-stripe-gateway.php:750 371 #: includes/class-getpaid-stripe-gateway.php:751 345 372 msgid "You have not set-up your stripe secret key." 346 373 msgstr "" 347 374 348 #: includes/class-getpaid-stripe-gateway.php:7 73375 #: includes/class-getpaid-stripe-gateway.php:797 349 376 msgid "" 350 377 "( See: <a href=\"https://stripe.com/docs/currencies\" " … … 352 379 msgstr "" 353 380 354 #: includes/class-getpaid-stripe-gateway.php: 785381 #: includes/class-getpaid-stripe-gateway.php:809 355 382 #, php-format 356 383 msgid "" … … 359 386 msgstr "" 360 387 361 #: includes/class-getpaid-stripe-gateway.php:8 25388 #: includes/class-getpaid-stripe-gateway.php:849 362 389 msgid "Update Payment Card" 363 390 msgstr "" 364 391 365 #: includes/class-getpaid-stripe-gateway.php:9 08392 #: includes/class-getpaid-stripe-gateway.php:932 366 393 #, php-format 367 394 msgid "An error occurred while trying to cancel subscription #%s in Stripe." 368 395 msgstr "" 369 396 370 #: includes/class-getpaid-stripe-gateway.php:9 25397 #: includes/class-getpaid-stripe-gateway.php:949 371 398 #, php-format 372 399 msgid "Successfully cancelled subscription #%s in Stripe." 373 400 msgstr "" 374 401 375 #: includes/class-getpaid-stripe-gateway.php:9 53402 #: includes/class-getpaid-stripe-gateway.php:977 376 403 #, php-format 377 404 msgid "An error occurred while trying to refund invoice #%1$s in Stripe: %2$s" 378 405 msgstr "" 379 406 380 #: includes/class-getpaid-stripe-gateway.php:9 62407 #: includes/class-getpaid-stripe-gateway.php:986 381 408 #, php-format 382 409 msgid "Successfully refunded invoice #%1$s in Stripe. Refund ID: %2$s" 383 410 msgstr "" 384 411 385 #: includes/class-getpaid-stripe-gateway.php: 991412 #: includes/class-getpaid-stripe-gateway.php:1015 386 413 msgid "Stripe requires HTTPS connection for live transactions." 387 414 msgstr "" 388 415 389 #: includes/class-getpaid-stripe-gateway.php:1 091416 #: includes/class-getpaid-stripe-gateway.php:1115 390 417 msgid "Successfully connected your test Stripe account" 391 418 msgstr "" 392 419 393 #: includes/class-getpaid-stripe-gateway.php:1 097420 #: includes/class-getpaid-stripe-gateway.php:1121 394 421 msgid "Successfully connected your live Stripe account" 395 422 msgstr "" 396 423 397 #: includes/class-getpaid-stripe-gateway.php:11 23424 #: includes/class-getpaid-stripe-gateway.php:1147 398 425 msgid "Successfully disconnected your live Stripe account" 399 426 msgstr "" 400 427 401 #: includes/class-getpaid-stripe-gateway.php:11 31428 #: includes/class-getpaid-stripe-gateway.php:1155 402 429 msgid "Successfully disconnected your test Stripe account" 403 430 msgstr "" 404 431 405 #: includes/class-getpaid-stripe-gateway.php:11 59432 #: includes/class-getpaid-stripe-gateway.php:1183 406 433 msgid "Renewal Payment Failed (Stripe)" 407 434 msgstr "" 408 435 409 #: includes/class-getpaid-stripe-gateway.php:11 60436 #: includes/class-getpaid-stripe-gateway.php:1184 410 437 msgid "These emails are sent to the customer when a renewal payment fails." 411 438 msgstr "" 412 439 413 #: includes/class-getpaid-stripe-gateway.php:11 66440 #: includes/class-getpaid-stripe-gateway.php:1190 414 441 msgid "Enable/Disable" 415 442 msgstr "" 416 443 417 #: includes/class-getpaid-stripe-gateway.php:11 67444 #: includes/class-getpaid-stripe-gateway.php:1191 418 445 msgid "Enable this email notification" 419 446 msgstr "" 420 447 421 #: includes/class-getpaid-stripe-gateway.php:11 74448 #: includes/class-getpaid-stripe-gateway.php:1198 422 449 msgid "Enable Admin BCC" 423 450 msgstr "" 424 451 425 #: includes/class-getpaid-stripe-gateway.php:11 75452 #: includes/class-getpaid-stripe-gateway.php:1199 426 453 msgid "" 427 454 "Check if you want to send a copy of this notification email to to the site " … … 429 456 msgstr "" 430 457 431 #: includes/class-getpaid-stripe-gateway.php:1 182458 #: includes/class-getpaid-stripe-gateway.php:1206 432 459 msgid "Subject" 433 460 msgstr "" 434 461 435 #: includes/class-getpaid-stripe-gateway.php:1 183462 #: includes/class-getpaid-stripe-gateway.php:1207 436 463 msgid "Enter the subject line for this email." 437 464 msgstr "" 438 465 439 #: includes/class-getpaid-stripe-gateway.php:1 186466 #: includes/class-getpaid-stripe-gateway.php:1210 440 467 msgid "[{site_title}] Payment Failed" 441 468 msgstr "" 442 469 443 #: includes/class-getpaid-stripe-gateway.php:1 192470 #: includes/class-getpaid-stripe-gateway.php:1216 444 471 msgid "Email Heading" 445 472 msgstr "" 446 473 447 #: includes/class-getpaid-stripe-gateway.php:1 193474 #: includes/class-getpaid-stripe-gateway.php:1217 448 475 msgid "Enter the main heading contained within the email notification." 449 476 msgstr "" 450 477 451 #: includes/class-getpaid-stripe-gateway.php:1 196478 #: includes/class-getpaid-stripe-gateway.php:1220 452 479 msgid "Payment Failed" 453 480 msgstr "" 454 481 455 #: includes/class-getpaid-stripe-gateway.php:12 02482 #: includes/class-getpaid-stripe-gateway.php:1226 456 483 msgid "Email Content" 457 484 msgstr "" 458 485 459 #: includes/class-getpaid-stripe-gateway.php:12 05486 #: includes/class-getpaid-stripe-gateway.php:1229 460 487 msgid "" 461 488 "<p>Hi {name},</p><p>We are having trouble processing your payment. <a " … … 464 491 msgstr "" 465 492 466 #: includes/class-getpaid-stripe-gateway.php:1 289493 #: includes/class-getpaid-stripe-gateway.php:1313 467 494 msgid "Check Expired Subscriptions (Stripe)" 468 495 msgstr "" 469 496 470 #: includes/class-getpaid-stripe-gateway.php:1 291497 #: includes/class-getpaid-stripe-gateway.php:1315 471 498 msgid "Checks if expired subscriptions are actually expired in Stripe." 472 499 msgstr "" 473 500 474 #: includes/class-getpaid-stripe-gateway.php:13 04475 #: includes/class-getpaid-stripe-gateway.php:13 15501 #: includes/class-getpaid-stripe-gateway.php:1328 502 #: includes/class-getpaid-stripe-gateway.php:1339 476 503 msgid "Run" 477 504 msgstr "" 478 505 479 #: includes/class-getpaid-stripe-gateway.php:13 09480 #: includes/class-getpaid-stripe-gateway.php:13 37506 #: includes/class-getpaid-stripe-gateway.php:1333 507 #: includes/class-getpaid-stripe-gateway.php:1361 481 508 msgid "Process past event (Stripe)" 482 509 msgstr "" 483 510 484 #: includes/class-getpaid-stripe-gateway.php:13 11511 #: includes/class-getpaid-stripe-gateway.php:1335 485 512 msgid "Manually process any Stripe event that occurred in the last 30 days." 486 513 msgstr "" 487 514 488 #: includes/class-getpaid-stripe-gateway.php:13 38515 #: includes/class-getpaid-stripe-gateway.php:1362 489 516 #: includes/update-card-modal.php:18 490 517 msgid "Close" 491 518 msgstr "" 492 519 493 #: includes/class-getpaid-stripe-gateway.php:13 55520 #: includes/class-getpaid-stripe-gateway.php:1379 494 521 msgid "Event ID" 495 522 msgstr "" 496 523 497 #: includes/class-getpaid-stripe-gateway.php:13 56524 #: includes/class-getpaid-stripe-gateway.php:1380 498 525 msgid "For example, evt_3OPLyuIbYxW2G9BD07LRNDds" 499 526 msgstr "" 500 527 501 #: includes/class-getpaid-stripe-gateway.php:13 58528 #: includes/class-getpaid-stripe-gateway.php:1382 502 529 msgid "" 503 530 "Open your Stripe dashboard and then click on Developers > Events. Click on " … … 506 533 msgstr "" 507 534 508 #: includes/class-getpaid-stripe-gateway.php:13 60535 #: includes/class-getpaid-stripe-gateway.php:1384 509 536 msgid "The event ID must start with evt_." 510 537 msgstr "" 511 538 512 #: includes/class-getpaid-stripe-gateway.php:1 378539 #: includes/class-getpaid-stripe-gateway.php:1402 513 540 #: includes/update-card-modal.php:49 514 541 msgid "Cancel" 515 542 msgstr "" 516 543 517 #: includes/class-getpaid-stripe-gateway.php:1 379544 #: includes/class-getpaid-stripe-gateway.php:1403 518 545 msgid "Process" 519 546 msgstr "" 520 547 521 #: includes/class-getpaid-stripe-gateway.php:14 23548 #: includes/class-getpaid-stripe-gateway.php:1447 522 549 msgid "Your subscriptions have been checked." 523 550 msgstr "" … … 596 623 msgstr "" 597 624 598 #: includes/stripe-functions.php:50599 msgid "Auto"600 msgstr ""601 602 625 #: includes/stripe-functions.php:51 603 626 msgid "Arabic" -
getpaid-stripe-payments/trunk/readme.txt
r3423102 r3465172 5 5 Requires at least: 5.0 6 6 Tested up to: 6.9 7 Stable tag: 2.3.2 27 Stable tag: 2.3.23 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 67 67 68 68 == Changelog == 69 70 = 2.3.23 - 2026-02-19 = 71 * Display success message after updating card details - FIXED 72 * Added jQuery hooks for customizing Stripe Elements options - ADDED 73 * Allow option to set custom locale for checkout - ADDED 69 74 70 75 = 2.3.22 - 2025-12-18 =
Note: See TracChangeset
for help on using the changeset viewer.