Plugin Directory

Changeset 2534770


Ignore:
Timestamp:
05/20/2021 11:11:05 AM (5 years ago)
Author:
polyres
Message:

Improvement: Added string text-domain (translation)

Location:
change-payment-description-for-woocommerce
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • change-payment-description-for-woocommerce/trunk/README.txt

    r2530724 r2534770  
    33Tags: WooCommerce, Payment Description, Stripe, Stripe Backend
    44Requires at least: 4.8
    5 Tested up to: 5.7.1
    6 Stable tag: 1.0.0
     5Tested up to: 5.7.2
     6Stable tag: 1.0.1
    77License: GPLv2
    88
     
    4848Yes, it is available for free.
    4949
    50 = Does Change Stripe Payment Description for Woocommerce share any of my data? (GDPR) =
     50= Does Change Payment Description for WooCommerce share any of my data? (GDPR) =
    5151
    5252No, it keeps all your data inside your own WordPress & WooCommerce install. There is no data transmitted to us or a third party service.
     
    6161= 1.0.0 =
    6262* First release.
     63
     64= 1.0.1
     65* Improvement: Added string text-domain (translation)
  • change-payment-description-for-woocommerce/trunk/change-payment-description.php

    r2530724 r2534770  
    55 * Plugin URI: https://poly-res.com/plugins/change-payment-desciption-for-woocommerce/
    66 * Description: Change Payment Description
    7  * Version: 1.0.0
     7 * Version: 1.0.1
    88 * Author: polyres
    99 * Author URI: https://poly-res.com/
     
    1414 * Requires WP:       4.8
    1515 * Requires PHP:      5.3
    16  * Tested up to: 5.7.1
     16 * Tested up to: 5.7.2
    1717 * WC requires at least: 3.4.0
    18  * WC tested up to: 5.2.2
     18 * WC tested up to: 5.3.0
    1919 *
    2020 * @link      https://poly-res.com
     
    181181        $payment_description = get_option( 'cpd_payment_description' );
    182182        if ( !empty( $payment_description ) ) {
    183             $post_data['description'] = sprintf( __( '%1$s - Order %2$s' ), $payment_description, $order->get_order_number() );
     183            $post_data['description'] = sprintf( __( '%1$s - Order %2$s', 'change-payment-description-for-woocommerce' ), $payment_description, $order->get_order_number() );
    184184    }
    185185        return $post_data;
Note: See TracChangeset for help on using the changeset viewer.