Skip to content

Commit 32ee264

Browse files
committed
Fix "Pinterest For WooCommerce" to "Pinterest for WooCommerce".
1 parent 28948f9 commit 32ee264

9 files changed

Lines changed: 12 additions & 12 deletions

class-pinterest-for-woocommerce.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -271,21 +271,21 @@ public function check_plugin_requirements() {
271271

272272
if ( ! version_compare( PHP_VERSION, self::PLUGIN_REQUIREMENTS['php_version'], '>=' ) ) {
273273
/* Translators: The minimum PHP version */
274-
$errors[] = sprintf( esc_html__( 'Pinterest For WooCommerce requires a minimum PHP version of %s.', 'pinterest-for-woocommerce' ), self::PLUGIN_REQUIREMENTS['php_version'] );
274+
$errors[] = sprintf( esc_html__( 'Pinterest for WooCommerce requires a minimum PHP version of %s.', 'pinterest-for-woocommerce' ), self::PLUGIN_REQUIREMENTS['php_version'] );
275275
}
276276

277277
if ( ! version_compare( $wp_version, self::PLUGIN_REQUIREMENTS['wp_version'], '>=' ) ) {
278278
/* Translators: The minimum WP version */
279-
$errors[] = sprintf( esc_html__( 'Pinterest For WooCommerce requires a minimum WordPress version of %s.', 'pinterest-for-woocommerce' ), self::PLUGIN_REQUIREMENTS['wp_version'] );
279+
$errors[] = sprintf( esc_html__( 'Pinterest for WooCommerce requires a minimum WordPress version of %s.', 'pinterest-for-woocommerce' ), self::PLUGIN_REQUIREMENTS['wp_version'] );
280280
}
281281

282282
if ( ! defined( 'WC_VERSION' ) || ! version_compare( WC_VERSION, self::PLUGIN_REQUIREMENTS['wc_version'], '>=' ) ) {
283283
/* Translators: The minimum WC version */
284-
$errors[] = sprintf( esc_html__( 'Pinterest For WooCommerce requires a minimum WooCommerce version of %s.', 'pinterest-for-woocommerce' ), self::PLUGIN_REQUIREMENTS['wc_version'] );
284+
$errors[] = sprintf( esc_html__( 'Pinterest for WooCommerce requires a minimum WooCommerce version of %s.', 'pinterest-for-woocommerce' ), self::PLUGIN_REQUIREMENTS['wc_version'] );
285285
}
286286

287287
if ( apply_filters( 'woocommerce_admin_disabled', false ) ) {
288-
$errors[] = esc_html__( 'Pinterest For WooCommerce requires WooCommerce Admin to be enabled.', 'pinterest-for-woocommerce' );
288+
$errors[] = esc_html__( 'Pinterest for WooCommerce requires WooCommerce Admin to be enabled.', 'pinterest-for-woocommerce' );
289289
}
290290

291291
if ( empty( $errors ) ) {

src/API/Base.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ public static function get_merchant( $merchant_id ) {
399399
*/
400400
public static function maybe_create_merchant( $args ) {
401401

402-
$merchant_name = apply_filters( 'pinterest_for_woocommerce_default_merchant_name', esc_html__( 'Auto-created by Pinterest For WooCommerce', 'pinterest-for-woocommerce' ) );
402+
$merchant_name = apply_filters( 'pinterest_for_woocommerce_default_merchant_name', esc_html__( 'Auto-created by Pinterest for WooCommerce', 'pinterest-for-woocommerce' ) );
403403

404404
$args = wp_parse_args(
405405
$args,

src/Crypto.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Pinterest For WooCommerce Crypto Wrapper
3+
* Pinterest for WooCommerce Crypto Wrapper
44
*
55
* @class WP_Salesforce_Crypto
66
* @version 1.0.0

src/Logger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Pinterest For WooCommerce Logger
3+
* Pinterest for WooCommerce Logger
44
*
55
* @version 1.0.0
66
* @package Pinterest_For_WooCommerce/API

src/ProductSync.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php //phpcs:disable WordPress.WP.AlternativeFunctions --- Uses FS read/write in order to reliable append to an existing file.
22
/**
3-
* Pinterest For WooCommerce Catalog Syncing
3+
* Pinterest for WooCommerce Catalog Syncing
44
*
55
* @package Pinterest_For_WooCommerce/Classes/
66
* @version 1.0.0

src/ProductsXmlFeed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Pinterest For WooCommerce Catalog Syncing
3+
* Pinterest for WooCommerce Catalog Syncing
44
*
55
* @package Pinterest_For_WooCommerce/Classes/
66
* @version 1.0.0

src/RichPins.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Pinterest For WooCommerce Rich Pins
3+
* Pinterest for WooCommerce Rich Pins
44
*
55
* @package Pinterest_For_WooCommerce/Classes/
66
* @version 1.0.0

src/SaveToPinterest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Pinterest For WooCommerce Pins
3+
* Pinterest for WooCommerce Pins
44
*
55
* @package Pinterest_For_WooCommerce/Classes/
66
* @version 1.0.0

src/Tracking.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Pinterest For WooCommerce Tracking
3+
* Pinterest for WooCommerce Tracking
44
*
55
* @package Pinterest_For_WooCommerce/Classes/
66
* @version 1.0.0

0 commit comments

Comments
 (0)